@charset "UTF-8";
/* ==========================================================================
   function
========================================================================== */
/* ==========================================================================
  mixin
  ========================================================================== */
/* --------------------------------------------------------------------------
  media query (SP（小）→ PC（大）の順に適用)
  -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 90px;
  color: #313131;
}
@media screen and (max-width: 767px) {
  .header {
    display: none;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    max-width: initial;
    padding: 0px 4vw;
  }
}
.header__menu {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.header__menuitem a {
  display: block;
  font-size: 15px;
}

.spheader {
  display: none;
}
@media screen and (max-width: 767px) {
  .spheader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 24vw;
    background-color: white;
    z-index: 11;
  }
  .spheader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 24vw;
    background-color: white;
  }
}
.spheader__inner {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
}
@media screen and (max-width: 767px) {
  .spheader__inner {
    max-width: initial;
    padding: 0px 4vw;
  }
}
.spheader__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4vw;
  margin: auto;
  z-index: 12;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  cursor: pointer;
}
.spheader__menu {
  transition: all 0.3s;
  transform: translateX(100%);
}
.spheader__menu.active {
  transform: translateX(0%);
}
.spheader__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100svh;
  background-color: #0864AD;
  color: white;
  z-index: 10;
}
.spheader__menuitem:nth-of-type(1) {
  margin-top: 26.6666666667vw;
}
.spheader__menuitem a {
  margin-top: 8vw;
  padding-left: 4vw;
  display: block;
  font-size: 4vw;
  font-weight: 500;
}

/*ハンバーガーメニュー*/
.openbtn1 {
  display: inline-block;
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #0864AD;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 0.5333333333vw;
  background: #fff;
  width: 50%;
}

.openbtn1 span:nth-of-type(1) {
  top: 4vw;
}

.openbtn1 span:nth-of-type(2) {
  top: 6.6666666667vw;
}

.openbtn1 span:nth-of-type(3) {
  top: 9.3333333333vw;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 4.8vw;
  left: 0vw;
  transform: translateY(1.6vw) rotate(-45deg);
  width: 60%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
  top: 8vw;
  left: 0vw;
  transform: translateY(-1.6vw) rotate(45deg);
  width: 60%;
}

/*ハンバーガーメニューここまで*/
.footer {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 18.6666666667vw;
  }
}
.footer__menu {
  display: flex;
  justify-content: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding: 25px 0px;
  border-top: 1px solid #bcbcbc;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    row-gap: 6.6666666667vw;
    padding: 6.6666666667vw 0;
  }
}
.footer__menuitem {
  text-align: center;
}
.footer__menuitem a {
  display: block;
  font-size: 15px;
  transition: 0.3s;
}
.footer__menuitem a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .footer__menuitem a {
    font-size: 3.7333333333vw;
    margin: auto;
  }
}
.footer__copyarea {
  padding: 20px 0px;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .footer__copyarea {
    padding: 4vw 0;
  }
}
.footer__copy {
  text-align: center;
  font-size: 15px;
  color: white;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 3.7333333333vw;
  }
}

img {
  width: 100%;
}

body {
  color: #313131;
  font-feature-settings: "palt";
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.heading01 {
  font-size: 35px;
  font-weight: 500;
  color: #0864ad;
}
@media screen and (max-width: 767px) {
  .heading01 {
    font-size: 7.2vw;
  }
}

.mv {
	position:relative;
	width: 100%;
	height: calc(100svh - 0px);
}
.mv-swiper{
	overflow:hidden;
	position:absolute;
	left:0;
	top:0;
	width: 100%;
	height: calc(100svh - 0px);
	z-index:1;
}
.mv-bg{
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.mv-bg01{
	background-image: url(../img/mv.jpg);
}
.mv-bg02{
	background-image: url(../img/mv02.jpg);
	background-position: center right;
}
.mv-bg03{
	background-image: url(../img/mv03.jpg);
	background-position: center left;
}
@media screen and (max-width: 1020px) {
  .mv-bg01 {
    background-position: center right -300px;
  }
  .mv-bg03{
		background-position: center;
	}
}
@media screen and (max-width: 767px) {
  .mv-bg01 {
    background-image: url(../img/mv-sp.jpg);
    background-position: top right;
  }
  .mv-bg02{
	background-image: url(../img/mv02-sp.jpg);
	background-position: center;
	}
	.mv-bg03{
		background-image: url(../img/mv03-sp.jpg);
	}
}
.mv__inner {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
  height: calc(100svh - 0px);
  z-index:2;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    max-width: initial;
    padding: 0px 4vw;
  }
}
.mv__copy {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  max-width: 610px;
}
@media screen and (max-width: 767px) {
  .mv__copy {
    width: 90%;
    bottom: 16vw;
    max-width: initial;
  }
}

.lead {
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .lead {
    margin-top: 21.3333333333vw;
    padding: 0 4vw;
  }
}
.lead__heading {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lead__heading {
    text-align: left;
  }
}
.lead__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lead__text {
    margin-top: 5.3333333333vw;
    font-size: 4vw;
    text-align: left;
  }
}

.tour {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .tour {
    margin-top: 21.3333333333vw;
  }
}
.tour__inner {
  display: flex;
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
}
@media screen and (max-width: 767px) {
  .tour__inner {
    max-width: initial;
    padding: 0px 4vw;
  }
}
@media screen and (max-width: 767px) {
  .tour__inner {
    flex-direction: column;
    row-gap: 9.3333333333vw;
  }
}
.tour-box {
  width: 50%;
  padding: 30px;
  border: 1px solid #0864ad;
}
.tour-box:hover .tour-box__img img {
  transform: scale(1.2);
}
@media screen and (max-width: 767px) {
  .tour-box {
    width: 100%;
    padding: 4vw;
    background-color:#e7f1f8;
  }
  .tour-box:nth-of-type(1) {
    border: none;
  }
}
.tour-box__img {
  width: 100%;
  overflow: hidden;
}
.tour-box__img img {
  transition: all 0.8s;
}
.tour-box__title {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: #0864AD;
}
@media screen and (max-width: 767px) {
  .tour-box__title {
    margin-top: 5.3333333333vw;
    font-size: 4.8vw;
  }
}
.tour-box__text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .tour-box__text {
    margin-top: 2.6666666667vw;
    font-size: 4vw;
  }
}
.tour-box2 {
  border-left: none;
}
@media screen and (max-width: 767px) {
	.tour-box2 {
	  border: none;
	}
}
.news {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 21.3333333333vw;
  }
}
.news__inner {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
}
@media screen and (max-width: 767px) {
  .news__inner {
    max-width: initial;
    padding: 0px 4vw;
  }
}
.news__heading {
  text-align: center;
}
.news__container {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 1020px) {
  .news__container {
    flex-wrap: wrap;
    row-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news__container {
    flex-direction: column;
    row-gap: 5.3333333333vw;
    margin-top: 13.3333333333vw;
  }
}
.news-box {
  display: flex;
  width: calc((100% - 40px) / 3);
  transition: 0.3s;
}
.news-box:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1020px) {
  .news-box {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .news-box {
    flex-direction: column;
    width: 80%;
    margin: auto;
  }
}
.news-box__img {
  width: 138px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-box__img {
    width: 100%;
  }
}
.news-box__right {
  width: 100%;
  flex-shrink: 1;
  padding: 30px 25px;
  font-size: 14px;
  background-color: #e7f1f8;
}
@media screen and (max-width: 767px) {
  .news-box__right {
    padding: 4vw 5.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
.news-box__text {
  line-height: 1.71;
}
.news-box__day {
  display: block;
  margin-top: 20px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .news-box__day {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
.news__btn {
  display: block;
  width: 240px;
  height: 50px;
  line-height: 48px;
  margin: auto;
  margin-top: 50px;
  text-align: center;
  font-weight: 500;
  border: 1px solid #FFCA00;
  border-radius: 25px;
  color: white;
  background-color: #FFCA00;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .news__btn {
    width: 66.6666666667vw;
    height: 12vw;
    line-height: 12vw;
    margin-top: 9.3333333333vw;
    border-radius: 6vw;
    font-size: 4.2666666667vw;
  }
}
.news__btn:hover {
  color: #FFCA00;
  background-color: white;
}

.staff {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  height: 378px;
  background-image: url(../img/staff-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1020px) {
  .staff {
    padding: 0px 15px;
  }
}
@media screen and (max-width: 767px) {
  .staff {
    margin-top: 21.3333333333vw;
    height: 80vw;
  }
}
.staff__text {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.71;
  text-align: center;
  color: white;
}
@media screen and (max-width: 767px) {
  .staff__text {
    padding: 0 4vw;
    font-size: 5.8666666667vw;
  }
}
.staff__btn {
  display: block;
  width: 220px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  margin: auto;
  margin-top: 30px;
  background-color: white;
  transition: all 0.3s;
}
.staff__btn:hover {
  color: white;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .staff__btn {
    width: 53.3333333333vw;
    height: 13.3333333333vw;
    line-height: 13.3333333333vw;
    margin-top: 5.3333333333vw;
  }
}

.recommend {
  margin-top: 100px;
  background-color: #e7f1f8;
}
@media screen and (max-width: 767px) {
  .recommend {
    margin-top: 21.3333333333vw;
  }
}
.recommend__inner {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
  padding-top: 40px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .recommend__inner {
    max-width: initial;
    padding: 0px 4vw;
  }
}
@media screen and (max-width: 767px) {
  .recommend__inner {
    padding-top: 8vw;
    padding-bottom: 9.3333333333vw;
  }
}
.recommend__heading {
  text-align: center;
}
.recommend__container {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 1020px) {
  .recommend__container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .recommend__container {
    flex-direction: column;
    margin-top: 10.6666666667vw;
  }
}
.recommend__box {
  display: block;
  width: 25%;
  padding: 15px;
  padding-bottom: 30px;
  border: 1px solid #e7f1f8;
  background-color: white;
}
.recommend__box:hover .recommend__img img {
  transform: scale(1.2);
}
@media screen and (max-width: 1020px) {
  .recommend__box {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .recommend__box {
    width: 100%;
    padding: 4vw;
    padding-bottom: 8vw;
  }
}
.recommend__img {
  overflow: hidden;
}
.recommend__img img {
  transition: all 0.8s;
}
.recommend__title {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .recommend__title {
    font-size: 4vw;
  }
}
.recommend__day {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #0864AD;
}
@media screen and (max-width: 767px) {
  .recommend__day {
    margin-top: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
}

.map {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .map {
    margin-top: 13.3333333333vw;
  }
}
.map__heading {
  text-align: center;
}
.map__wrap {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .map__wrap {
    max-width: initial;
    padding: 0px 4vw;
  }
}
@media screen and (max-width: 767px) {
  .map__wrap {
    margin-top: 8vw;
  }
}

.info {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .info {
    margin-top: 13.3333333333vw;
  }
}
.info__inner {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .info__inner {
    max-width: initial;
    padding: 0px 4vw;
  }
}
@media screen and (max-width: 767px) {
  .info__inner {
    flex-direction: column;
    row-gap: 13.3333333333vw;
  }
}
.info-left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .info-left {
    width: 100%;
  }
}
.info-left__container {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .info-left__container {
    -moz-column-gap: 2.6666666667vw;
         column-gap: 2.6666666667vw;
    margin-top: 4vw;
  }
}
.info-left__container:nth-of-type(2) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .info-left__container:nth-of-type(2) {
    margin-top: 6.6666666667vw;
  }
}
.info-left__item {
  width: 100px;
  flex-shrink: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .info-left__item {
    font-size: 4vw;
  }
}
.info-left__property {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .info-left__property {
    font-size: 4vw;
  }
}
.info-right {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .info-right {
    width: 100%;
  }
}
.info-right__sub {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .info-right__sub {
    font-size: 4vw;
  }
}
.info-right__tel {
  margin-top: 20px;
  font-size: 35px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .info-right__tel {
    margin-top: 4vw;
    font-size: 8vw;
  }
}
.info-right__btn {
  display: block;
  width: 240px;
  height: 40px;
  line-height: 38px;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  border: 1px solid #FFCA00;
  border-radius: 20px;
  color: white;
  background-color: #FFCA00;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .info-right__btn {
    width: 66.6666666667vw;
    height: 10.6666666667vw;
    line-height: 10.1333333333vw;
    margin-top: 5.3333333333vw;
    border-radius: 5.3333333333vw;
  }
}
.info-right__btn:hover {
  color: #FFCA00;
  background-color: white;
}

.single {
  padding: 80px 0px;
}
@media screen and (max-width: 767px) {
	.single {
		padding:15vw 0;
	}
}
.single__inner {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
}
.single-mv {
  display: flex;
  align-items: center;
  width: 100%;
  height: 400px;
  background-image: url(../img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .single-mv {
    height: 106.6666666667vw;
  }
}
.single-mv__textarea {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 0px 15px;
  color: white;
}
@media screen and (max-width: 767px) {
  .single-mv__textarea {
    max-width: initial;
    padding: 0vw 4vw;
  }
}
.single-mv__title {
  font-size: 38px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single-mv__title {
    font-size: 10.1333333333vw;
  }
}
.single-mv__sub {
  font-size: 18px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .single-mv__sub {
    font-size: 4.8vw;
    margin-top: 2.6666666667vw;
  }
}

.page-domestic .domestic__container {
  display: flex;
  -moz-column-gap: 37px;
       column-gap: 37px;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic__container {
    flex-direction: column;
    row-gap: 16vw;
  }
}
.page-domestic .domestic-left {
  width: 100%;
  flex-shrink: 1;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 35px;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-left {
    flex-direction: column;
    row-gap: 15vw;
  }
}
.page-domestic .domestic-left__box {
  position: relative;
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-left__box {
    width: 100%;
  }
}
.page-domestic .domestic-left__day {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-left__day {
    left: 2.6666666667vw;
    top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.page-domestic .domestic-left__textarea {
  width: 230px;
  position: absolute;
  right: 20px;
  bottom: 30px;
  padding: 10px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-left__textarea {
    width: 61.3333333333vw;
    right: 4vw;
    bottom: -4vw;
    padding: 2.6666666667vw;
    border: 1px solid #0864AD;
  }
}
.page-domestic .domestic-left__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-left__title {
    font-size: 4vw;
  }
}
.page-domestic .domestic-left__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-left__text {
    font-size: 3.4666666667vw;
  }
}
.page-domestic .domestic-right {
  width: 261px;
  flex-shrink: 0;
  padding: 15px 15px 20px 15px;
  background-color: #e7f2fb;
}
@media screen and (max-width: 1020px) {
  .page-domestic .domestic-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-right {
    display: block;
    width: 100%;
    padding: 2.6666666667vw;
  }
}
.page-domestic .domestic-right__title {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-right__title {
    font-size: 4.2666666667vw;
  }
}
.page-domestic .domestic-right__box {
  position: relative;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-right__box {
    margin-top: 8vw;
  }
}
.page-domestic .domestic-right__img {
  width: 100%;
}
.page-domestic .domestic-right__textarea {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 160px;
  padding: 8px 10px;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-right__textarea {
    right: 2.6666666667vw;
    bottom: 2.6666666667vw;
    width: 42.6666666667vw;
    padding: 2.6666666667vw;
  }
}
.page-domestic .domestic-right__text {
  font-size: 13px;
  line-height: 1.38;
  color: white;
}
@media screen and (max-width: 767px) {
  .page-domestic .domestic-right__text {
    font-size: 3.4666666667vw;
  }
}

.page-foreign .foreign__container {
  display: flex;
  -moz-column-gap: 37px;
       column-gap: 37px;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign__container {
    flex-direction: column;
    row-gap: 16vw;
  }
}
.page-foreign .foreign-left {
  width: 100%;
  flex-shrink: 1;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign-left {
    flex-shrink: 0;
  }
}
.page-foreign .foreign__img {
  margin-top: 50px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign__img {
    width: 100%;
    margin: auto;
    margin-top: 6.6666666667vw;
  }
}
.page-foreign .foreign__heading {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign__heading {
    font-size: 6.6666666667vw;
  }
}
.page-foreign .foreign__text {
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign__text {
    margin-top: 4vw;
    font-size: 4vw;
  }
}
.page-foreign .foreign__item {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign__item {
    margin-top: 8vw;
    font-size: 4.2666666667vw;
  }
}
.page-foreign .foreign-right {
  width: 261px;
  height: 100%;
  flex-shrink: 0;
  padding: 15px 15px 20px 15px;
  background-color: #e7f2fb;
}
@media screen and (max-width: 1020px) {
  .page-foreign .foreign-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign-right {
    display: block;
    width: 100%;
    padding: 2.6666666667vw;
  }
}
.page-foreign .foreign-right__title {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign-right__title {
    font-size: 4.2666666667vw;
  }
}
.page-foreign .foreign-right__box {
  position: relative;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign-right__box {
    margin-top: 8vw;
  }
}
.page-foreign .foreign-right__img {
  width: 100%;
}
.page-foreign .foreign-right__textarea {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 160px;
  padding: 8px 10px;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign-right__textarea {
    right: 2.6666666667vw;
    bottom: 2.6666666667vw;
    width: 42.6666666667vw;
    padding: 2.6666666667vw;
  }
}
.page-foreign .foreign-right__text {
  font-size: 13px;
  line-height: 1.38;
  color: white;
}
@media screen and (max-width: 767px) {
  .page-foreign .foreign-right__text {
    font-size: 3.4666666667vw;
  }
}

.page-news {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 767px) {
  .page-news {
    flex-direction: column;
    row-gap: 13.3333333333vw;
  }
}
.page-news .news-left {
  flex-shrink: 1;
  width: 100%;
  max-width: 850px;
}
@media screen and (max-width: 767px) {
  .page-news .news-left {
    max-width: initial;
  }
}
.page-news .news-left__container {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 50px;
}
@media screen and (max-width: 767px) {
  .page-news .news-left__container {
    flex-direction: column;
    row-gap: 5.3333333333vw;
  }
}
.page-news .news-leftbox {
  display: block;
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 767px) {
  .page-news .news-leftbox {
    width: 100%;
  }
}
.page-news .news-leftbox__img {
  width: 100%;
}
.page-news .news-leftbox__day {
  padding: 10px 0px;
  text-align: center;
  font-size: 13px;
  color: white;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-news .news-leftbox__day {
    padding: px2vw(10) 0;
    font-size: px2vw(13);
  }
}
.page-news .news-leftbox__text {
  height: 65px;
  padding: 10px 9px;
  border: 1px solid #0864AD;
  line-height: 1.5;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .page-news .news-leftbox__text {
    height: 13.3333333333vw;
    padding: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.page-news .news-right {
  flex-shrink: 0;
  width: 250px;
  padding: 25px 20px;
  background-color: #e7f2fb;
}
@media screen and (max-width: 1020px) {
  .page-news .news-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-news .news-right {
    display: block;
    width: 100%;
    padding: 6.6666666667vw 5.3333333333vw;
  }
}
.page-news .news-right__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .page-news .news-right__text {
    font-size: 4vw;
  }
}
.page-news .news-rightbox {
  display: block;
  position: relative;
  margin-top: 20px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-news .news-rightbox {
    margin-top: 5.3333333333vw;
  }
}
.page-news .news-rightbox__day {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 3px;
  font-size: 12px;
  color: white;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-news .news-rightbox__day {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
    padding: 0.8vw;
    font-size: 3.2vw;
  }
}
.page-news .news-rightbox__text {
  padding: 5px 15px;
  border-top: 1px solid #FFCA00;
  font-size: 12px;
  line-height: 1.5;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-news .news-rightbox__text {
    padding: 2.6666666667vw 4vw;
    font-size: 3.2vw;
  }
}

.page-news-single {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 767px) {
  .page-news-single {
    flex-direction: column;
    row-gap: 13.3333333333vw;
  }
}
.page-news-single .news-left {
  width: 100%;
  flex-shrink: 1;
}
.page-news-single .news-right {
  flex-shrink: 0;
  width: 250px;
  padding: 25px 20px;
  background-color: #e7f2fb;
}
@media screen and (max-width: 1020px) {
  .page-news-single .news-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-news-single .news-right {
    display: block;
    width: 100%;
    padding: 6.6666666667vw 5.3333333333vw;
  }
}
.page-news-single .news-right__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .page-news-single .news-right__text {
    font-size: 4vw;
  }
}
.page-news-single .news-rightbox {
  display: block;
  position: relative;
  margin-top: 20px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-news-single .news-rightbox {
    margin-top: 5.3333333333vw;
  }
}
.page-news-single .news-rightbox__day {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 3px;
  font-size: 12px;
  color: white;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-news-single .news-rightbox__day {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
    padding: 0.8vw;
    font-size: 3.2vw;
  }
}
.page-news-single .news-rightbox__text {
  padding: 5px 15px;
  border-top: 1px solid #FFCA00;
  font-size: 12px;
  line-height: 1.5;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-news-single .news-rightbox__text {
    padding: 2.6666666667vw 4vw;
    font-size: 3.2vw;
  }
}

img {
  width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}/*# sourceMappingURL=style.css.map */
.page-staff {
  padding: 0px 15px;
}
@media screen and (max-width: 767px) {
  .page-staff {
    padding: 0 4vw;
  }
}
.page-staff .staff-box {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box {
    max-width: initial;
    margin-top: 69.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box:nth-of-type(1) {
    margin-top: 53.3333333333vw;
  }
}
.page-staff .staff-box__img {
  position: absolute;
  top: -60px;
  left: 0;
  width: 300px;
  height: 350px;
}
@media screen and (max-width: 1020px) {
  .page-staff .staff-box__img {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box__img {
    width: 53.3333333333vw;
    height: 66.6666666667vw;
    top: -57.3333333333vw;
    left: 5.3333333333vw;
  }
}
.page-staff .staff-box__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-staff .staff-box__textarea {
  width: 90%;
  max-width: 780px;
  margin-left: auto;
  padding: 30px 30px 20px 120px;
  border: 1px solid #0864AD;
  border-radius: 15px;
}
@media screen and (max-width: 1020px) {
  .page-staff .staff-box__textarea {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box__textarea {
    width: 100%;
    max-width: initial;
    margin: auto;
    padding: 6.6666666667vw;
    padding-top: 13.3333333333vw;
    border-radius: 4vw;
  }
}
.page-staff .staff-box__pos {
  font-weight: 700;
  color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box__pos {
    font-size: 4.2666666667vw;
  }
}
.page-staff .staff-box__namearea {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0864AD;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box__namearea {
    margin-top: 1.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
}
.page-staff .staff-box__name {
  font-size: 27px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box__name {
    font-size: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box__eng {
    font-size: 4.2666666667vw;
  }
}
.page-staff .staff-box__item {
  margin-top: 15px;
  color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box__item {
    margin-top: 2.6666666667vw;
    font-size: 4vw;
  }
}
.page-staff .staff-box__text {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box__text {
    font-size: 4vw;
  }
}
.page-staff .staff-box2 {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box2 {
    max-width: initial;
    margin-top: 69.3333333333vw;
  }
}
.page-staff .staff-box2__img {
  position: absolute;
  top: -60px;
  right: 0;
  width: 300px;
  height: 350px;
}
@media screen and (max-width: 1020px) {
  .page-staff .staff-box2__img {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box2__img {
    width: 53.3333333333vw;
    height: 66.6666666667vw;
    top: -57.3333333333vw;
    right: 5.3333333333vw;
  }
}
.page-staff .staff-box2__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-staff .staff-box2__textarea {
  width: 90%;
  max-width: 780px;
  padding: 30px 120px 20px 30px;
  border: 1px solid #0864AD;
  border-radius: 15px;
}
@media screen and (max-width: 1020px) {
  .page-staff .staff-box2__textarea {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box2__textarea {
    width: 100%;
    max-width: initial;
    margin: auto;
    padding: 6.6666666667vw;
    padding-top: 13.3333333333vw;
    border-radius: 4vw;
  }
}
.page-staff .staff-box2__pos {
  font-weight: 700;
  color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box2__pos {
    font-size: 4.2666666667vw;
  }
}
.page-staff .staff-box2__namearea {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0864AD;
}
.page-staff .staff-box2__name {
  font-size: 27px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box2__name {
    font-size: 6.6666666667vw;
  }
}
.page-staff .staff-box2__item {
  margin-top: 15px;
  color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box2__item {
    margin-top: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.page-staff .staff-box2__text {
  margin-top: 5px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-staff .staff-box2__text {
    margin-top: 1.3333333333vw;
    font-size: 4.2666666667vw;
  }
}


/*wordpress調整用*/
.single-mv.mv2{
	background-image:url(../img/single-bg02.jpg);
}
.page-news-single .news-leftbox__img{
	overflow:hidden;
}
.page-news-single .news-leftbox__img img{
	transition: all 0.3s;
}
.page-news-single .news-leftbox:hover .news-leftbox__img img{
		transform:scale(1.2);
}
.page-news-single .news-left__container{
	display:flex;
	width:200px;
}
.page-news-single .news-left__day{
	width:50%;
	padding:3px 0px;
	text-align:center;
	font-size:12px;
	background-color:#0864ad;
	color:white;
}
.page-news-single .news-left__cat{
	width:50%;
	padding:3px 0px;
	border:1px solid #0864ad;
	text-align:center;
	font-size:12px;
}
.page-news-single .news-left__heading{
	margin-top:15px;
	font-size:24px;
	font-weight:500;
	line-height:1.5;
	color:#0864ad;
}
.page-news-single .news-left p{
	margin-top:30px;
	font-size:16px;
	line-height:1.875;
}
.page-news-single .news-left h3{
	font-size:21px;
	font-weight:bold;
}
.page-news-single .news-left__img{
	margin-top:30px;
	width:100%;
	max-width:600px;
}
.page-news .news-leftbox__img{
	height:200px;
	overflow:hidden;
}
.page-news .news-leftbox__img img{
	height:100%;
	object-fit:cover;
	object-position:center;
	transition:all 0.6s;
}
.page-news .news-leftbox:hover .news-leftbox__img img{
	transform:scale(1.2);
}
@media screen and (max-width: 767px) {
	.page-news .news-leftbox__img{
		height:auto;
	}
}
.news-rightbox{
	transition:all 0.3s;
}
.news-rightbox:hover{
	opacity:0.6;
}
.news-rightbox__img{
	height:149px;
}
.news-rightbox__img img{
	height:100%;
	object-fit:cover;
	object-position:center;
}
@media screen and (max-width: 767px) {
	.news-rightbox__img{
		height:auto;
	}
}
.page-foreign .domestic-right {
  width: 261px;
  flex-shrink: 0;
  padding: 15px 15px 20px 15px;
  background-color: #e7f2fb;
}
@media screen and (max-width: 1020px) {
  .page-foreign .domestic-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-foreign .domestic-right {
    display: block;
    width: 100%;
    padding: 2.6666666667vw;
  }
}
.page-foreign .domestic-right__title {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-foreign .domestic-right__title {
    font-size: 4.2666666667vw;
  }
}
.page-foreign .domestic-right__box {
  position: relative;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .page-foreign .domestic-right__box {
    margin-top: 8vw;
  }
}
.page-foreign .domestic-right__img {
  width: 100%;
}
.page-foreign .domestic-right__textarea {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 160px;
  padding: 8px 10px;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-foreign .domestic-right__textarea {
    right: 2.6666666667vw;
    bottom: 2.6666666667vw;
    width: 42.6666666667vw;
    padding: 2.6666666667vw;
  }
}
.page-foreign .domestic-right__text {
  font-size: 13px;
  line-height: 1.38;
  color: white;
}
@media screen and (max-width: 767px) {
  .page-foreign .domestic-right__text {
    font-size: 3.4666666667vw;
  }
}
.page-domestic .foreign-right {
  width: 261px;
  height: 100%;
  flex-shrink: 0;
  padding: 15px 15px 20px 15px;
  background-color: #e7f2fb;
}
@media screen and (max-width: 1020px) {
  .page-domestic .foreign-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-domestic .foreign-right {
    display: block;
    width: 100%;
    padding: 2.6666666667vw;
  }
}
.page-domestic .foreign-right__title {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-domestic .foreign-right__title {
    font-size: 4.2666666667vw;
  }
}
.page-domestic .foreign-right__box {
  position: relative;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .page-domestic .foreign-right__box {
    margin-top: 8vw;
  }
}
.page-domestic .foreign-right__img {
  width: 100%;
}
.page-domestic .foreign-right__textarea {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 160px;
  padding: 8px 10px;
  background-color: #0864AD;
}
@media screen and (max-width: 767px) {
  .page-domestic .foreign-right__textarea {
    right: 2.6666666667vw;
    bottom: 2.6666666667vw;
    width: 42.6666666667vw;
    padding: 2.6666666667vw;
  }
}
.page-domestic .foreign-right__text {
  font-size: 13px;
  line-height: 1.38;
  color: white;
}
@media screen and (max-width: 767px) {
  .page-domestic .foreign-right__text {
    font-size: 3.4666666667vw;
  }
}
.header .menu{
	display:flex;
	justify-content:flex-end;
	column-gap:15px;
}
.header .menu-gloval-nav li a{
	display:block;
	font-size:15px;
}
.header .menu-item{
	position:relative;
}
.header .sub-menu{
	display:none;
	position:absolute;
	width:120%;
	top:35px;
	left:15px;
	background:rgba(255,255,255,0.8);
}
.header .sub-menu li{
	width:100%;
	border-bottom:1px solid #0864AD;
}
.header .sub-menu li:last-child{
	border-bottom:none;
}
.header .sub-menu li a{
	display:block;
	width:fit-content;
	line-height:1.5;
	padding:15px 10px;
	color:#0864AD;
	transition:all 0.3s;
}
.header .sub-menu li a:hover{
	opacity:0.6;
}
.spheader__menu {
  transition: all 0.3s;
  transform: translateX(100%);
}
.spheader__menu.active {
  transform: translateX(0%);
}
.spheader__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100svh;
  background-color: #0864AD;
  color: white;
  z-index: 10;
}
.spheader__menu .menu-item:nth-of-type(1) {
  margin-top: 26.6666666667vw;
}
.spheader__menu .menu-item a {
  padding-top: 4vw;
  padding-bottom:4vw;
  padding-left: 4vw;
  display: block;
  font-size: 4vw;
  font-weight: 500;
}
.spheader__menu .sub-menu .menu-item{
	margin-top:0px;
}
.spheader__menu .sub-menu{
	display:none;
	color:#0864AD;;
	background-color:white;
}
.spheader__menu .menu-item-has-children{
	position:relative;
}
.spheader__menu .menu-item-has-children:after{
	content:"▼";
	display:inline-block;
	position:absolute;
	font-size:3vw;
	right:4vw;
	top:5vw;
	margin:auto;
	color:white;
	height:3vw;
}
.bread_crumb{
	width: 100%;
    max-width: 1180px;
    margin: auto;
    margin-top:15px;
    padding: 0px 15px;
}
.bread_crumb span{
	font-size:15px;
	transition:all 0.3s;
}
.bread_crumb a:hover{
	opacity:0.6;
}
@media screen and (max-width: 767px) {
	.bread_crumb span{
		font-size:3.5vw;
	}
}
.page-domestic .domestic-left__day{
	color:white;
}
.footer .menu {
  display: flex;
  justify-content: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding: 25px 0px;
  border-top: 1px solid #bcbcbc;
}
@media screen and (max-width: 767px) {
  .footer .menu {
    flex-direction: column;
    row-gap: 6.6666666667vw;
    padding: 6.6666666667vw 0;
  }
}
.footer .menu-item {
  text-align: center;
}
.footer .menu-item a {
  display: block;
  font-size: 15px;
  transition: 0.3s;
}
.footer .menu-item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .footer .menu-item a {
    font-size: 3.7333333333vw;
    margin: auto;
  }
}
.page-domestic	.domestic-left__box{
	height:277px;
}
.page-domestic .domestic-left__img{
	height:100%;
}
.page-domestic .domestic-left__img img{
	height:100%;
	object-fit:cover;
}
@media screen and (max-width: 767px) {
	.page-domestic .domestic-left__box{
		height:65vw;
	}
}
/*ナビゲーション*/
.domestic-left{
	position:relative;
}
@media screen and (max-width: 767px) {
	.domestic-left{
		padding-bottom:10vw;
	}
}
.domestic-left .navigation{
	width:fit-content;
	position:absolute;
	right:0;
	left:0;
	bottom:-60px;
	margin:auto;
}
.domestic-left .nav-links{
	display:flex;
	column-gap:10px;
}
.domestic-left .page-numbers{
	display:block;
	width:30px;
	height:30px;
	line-height:30px;
	border-radius:50%;
	text-align:center;
	border:1px solid #0864AD;
	color:#0864AD;
	transition:all 0.3s;
}
.domestic-left span.page-numbers{
	color:white;
	background-color:#0864AD;
}
.domestic-left a.page-numbers:hover{
	color:white;
	background-color:#0864AD;
}
@media screen and (max-width: 767px) {
	.domestic-left .navigation{
		bottom:-5vw;
	}
}
/*パンくず長さ調整*/
.bread_crumb span[property="name"] {
    display: inline-block;
    padding: 0;
    margin-top: -6px;
    vertical-align: middle;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news__inner .news-box__img{
	height:100%;
}
.news__inner .news-box__img img{
	height:100%;
	object-fit:cover;
}
@media screen and (max-width: 767px) {
	.news__inner .news-box__img{
		height:50vw;
	}
}
.recommend .recommend__img{
	height:170px;
}
.recommend .recommend__img img{
	height:100%;
	object-fit:cover;
}
@media screen and (max-width: 1020px) {
	.recommend .recommend__img{
		height:280px;
	}
}
@media screen and (max-width: 767px) {
	.recommend .recommend__img{
		height:50vw;
	}
}
.top-header{
	transition:all 0.3s;
}
.top-header.active{
	background-color:rgba(255,255,255,0.7);
}
.header__logo{
	display:block;
	transition:all 0.3s;
}
.header__logo:hover{
	opacity:0.6;
}
.top__logo:hover{
	opacity:1;
}
.page-contact{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    margin-top: 100px;
	padding:0px 15px
}
.page-contact input[type="checkbox"]{
  -webkit-appearance: auto;
  appearance: auto;
  border-width: 1px;
  background-color: #fff;
  font-size: 0.9em;
  padding: 0.4em;
  cursor: pointer;
  vertical-align: initial;
}
.page-contact .wpcf7-list-item-label{
	padding-left:5px;
}
.page-contact .wpcf7-list-item label{
	margin-top:20px;
}
.wpcf7-list-item.first{
	margin-left:0px;
}
.page-contact input[type=text],input[type=email]{
	width:100%;
	margin-top:10px;
	padding:15px 10px;
	border:1px solid dimgray;
	border-radius:5px;
}
.page-contact input[type=submit]{
	display: block;
    width: 240px;
    height: 50px;
    line-height: 48px;
    margin: auto;
    margin-top: 50px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #FFCA00;
    border-radius: 25px;
    color: white;
    background-color: #FFCA00;
    transition: all 0.3s;
}
.page-contact input[type=submit]:hover{
    color: #FFCA00;
    background-color: white;
}
@media screen and (max-width: 767px) {
	.page-contact input[type=submit]{
		width: 66.6666666667vw;
        height: 12vw;
        line-height: 12vw;
        margin-top: 9.3333333333vw;
        border-radius: 6vw;
        font-size: 4.2666666667vw;
	}
}
.page-contact textarea{
	width:100%;
	margin-top:10px;
	padding:15px 10px;
	border:1px solid dimgray;
	border-radius:5px;
}
.page-contact label{
	display:block;
	margin-top:50px;
}

.header-bg3{
	background-image: url(../img/header_bg3.jpg);
}
.header-bg2{
	background-image: url(../img/header_bg2.jpg);
}
.domestic-left__box{
	transition:all 0.3s;
}
.domestic-left__box:hover{
	opacity:0.6;
}
.domestic-right__box{
	transition:all 0.3s;
}
.domestic-right__box:hover{
	opacity:0.6;
}
.menu-item{
	transition:all 0.3s;
}
.menu-item:hover{
	opacity:0.6;
}
/*==============================================================
# fadeIn
==============================================================*/
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 1s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_up_repeat {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 1s;
}
.fadeIn_up_repeat.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.page-searchform input{
  -webkit-appearance: auto;
  appearance: auto;
  border-width: 1px;
  background-color: #fff;
  font-size: 0.9em;
  padding: 0.4em;
}
.page-searchform input[type="checkbox"] {
  cursor: pointer;
  vertical-align: initial;
 }
 
/*検索ページ*/
.page-searchform .searchform__heading{
	font-size:25px;
	font-weight:bold;
	color:#0864AD;
}
.page-searchform .searchform__btn{
	display: block;
  width: 240px;
  height: 50px;
  line-height: 48px;
  margin-top: 50px;
  text-align: center;
  font-weight: 500;
  border: 1px solid #FFCA00;
  border-radius: 25px;
  color: white;
  background-color: #FFCA00;
  transition: all 0.3s;
}
.page-searchform .searchform__btn:hover{
	color: #FFCA00;
	background-color: white;
}
@media screen and (max-width: 767px) {
.page-searchform .searchform__btn{
    width: 66.6666666667vw;
    height: 12vw;
    line-height: 12vw;
    margin-top: 9.3333333333vw;
    border-radius: 6vw;
    font-size: 4.2666666667vw;
  }
}
.page-searchform .searchform__checkarea{
	margin-top:20px;
	margin-bottom:30px;
}
.page-searchform .searchform__check{
	display:inline-block;
	margin-right:10px;
	margin-top:5px;
}
.page-searchform .searchform-box{
	display:grid;
	grid-template-columns: 40% 1fr;
	place-items:center;
	column-gap:30px;
	width:90%;
	margin:auto;
	margin-top:30px;
	padding:20px;
	background-color:#f5f5f5;
}
.page-searchform .searchform-box__left{
	width:100%;
}
.page-searchform .searchform-box__left img{
	height:250px;
	object-fit:cover;
}
.page-searchform .searchform-box__right{
	width:100%;
}
.page-searchform .searchform-box__text{
	margin-top:10px;
	line-height:1.5;
}
.page-searchform .searchform-box__btn{
	display: block;
  width: 120px;
  height: 35px;
  line-height: 35px;
  margin-left:auto;
  margin-top: 30px;
  text-align: center;
  font-size:14px;
  font-weight: 500;
  border: 1px solid #0864AD;
  border-radius: 5px;
  color: white;
  background-color: #0864AD;
  transition: all 0.3s;
}
.page-searchform .searchform-box__btn:hover{
	color: #0864AD;
	background-color: white;
}
@media screen and (max-width: 767px) {
	.page-searchform .searchform-box{
		grid-template-columns:1fr;
	}
	.page-searchform .searchform-box__left img{
		height:200px;
	}
	.page-searchform .searchform-box__text{
		font-size:14px;
	}
}