/* # =================================================================
# header
# ================================================================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  z-index: 998; /* ナビより下だが他要素より上に */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.overlay.is-show {
  opacity: 1;
  visibility: visible;
}
/* ナビゲーション本体 */
.navigation.js-popup-contents {
  position: fixed; /* 必要に応じて */
  z-index: 999; /* オーバーレイより上にする */
}

.header {
  background-color: #e2e2e2;
  border-bottom: 1px solid #251e1c;
}
.header__inner {
  position: relative;
  display: block;
  width: 100%;
  padding: 25px 25px 0;
  margin: 0 auto;
}
.header__upper {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  width: 350px;
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  margin-left: auto;
}
.header__link-wrap {
  position: relative;
}
.header__link {
  font-size: 14px;
  background-color: #f7f7f7;
  border-radius: 6px;
  padding: 10px 12px;
}
.header__link.js-popup-open {
  position: relative;
  padding-right: 34px;
}
.header__link.js-popup-open::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 14px;
  display: block;
  width: 9px;
  height: 5px;
  background-image: url("../img/icon/icon_under-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.header__popup-contents {
  width: 170px;
  position: absolute;
  bottom: -90px;
  left: 0;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 6px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 3px 6px 5px rgba(0, 0, 0, 0.03);
  padding: 16px 18px;
  opacity: 0.96;
  z-index: 1000;
}
.header__tel .c-pill-button {
  padding: 0 0 0 0;
  margin-left: 20px;
}
.header__tel .c-pill-button::before {
  background-color: #251e1c;
  left: 0;
}
.header__tel .c-pill-button__text {
  padding-left: 35px;
}
.header__tel .c-pill-button__text:nth-child(1) {
  font-size: 28px;
}
.header__tel .c-pill-button__text:nth-child(2) {
  font-size: 13px;
  letter-spacing: 0;
	font-weight: 400;
	padding-left: 38px;
}
.sp-header-button {
   display: none; 
}

.header__lower {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 10px;
  padding: 0 50px;
}
.header__lower .nav-button {
  width: 25%;
  border-radius: 20px 20px 0 0;
  padding: 20px 0 25px;
}
.header__lower .nav-button span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: 20px;
  font-weight: 500;
	color: #251e1c;
  line-height: 1.5;
  padding-right: 25px;
  margin: 0 auto;
}
.header__lower .nav-button span::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  display: block;
  width: 12px;
  height: 7px;
  background-image: url("../img/icon/icon_under-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.header__lower .nav-button.is-selected {
  background-color: #ffffff;
}

@media (hover: hover) {
  .header__link:hover {
    opacity: 0.6;
    -webkit-transition: opacty, 0.3s;
    transition: opacty, 0.3s;
  }
  .header .nav-button:not(.is-selected):hover {
    opacity: 0.6;
    -webkit-transition: opacty, 0.3s;
    transition: opacty, 0.3s;
  }
  .header .nav-button.is-selected {
    pointer-events: none;
  }
}
@media screen and (min-width: 1024px) {
  .header__inner {
    max-width: 1290px;
  }
}
.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.header-list__item {
  font-size: 16px;
  opacity: 1;
}
.header-list__item::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #251e1c;
  border-width: 5px 0px 5px 6px;
  margin-right: 5px;
  margin-bottom: 1px;
}
.header-list__item--blue::before {
  border-color: transparent transparent transparent #3a638e;
}
.header-list__item--orange::before {
  border-color: transparent transparent transparent #e08d2a;
}

.navigation {
  position: absolute;
  top: 191px;
  left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 50px);
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.03);
  padding: 90px 78px 100px;
  z-index: 10;
}
.navigation__column:nth-child(1) {
  width: 220px;
}
.navigation__column:nth-child(2) {
  width: calc(100% - 547px);
}
.navigation__column:nth-child(3) {
  width: 327px;
}
.navigation__heading {
  position: relative;
  font-size: 22px;
  font-weight: 600;
}
.navigation__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -45px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #251e1c;
  border-radius: 50%;
    background: #e2e2e2;
}
.navigation__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 8px;
  -webkit-mask-image: url("../img/icon/icon_arrow.svg");
          mask-image: url("../img/icon/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #251e1c;
}
.navigation__image-wrap {
  width: 100%;
  aspect-ratio: 200/148;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 35px;
}
.navigation__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.navigation__arrow-link {
  width: 100%;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #251e1c;
  padding-right: 60px;
  padding-bottom: 10px;
  margin-top: 15px;
}
.navigation__arrow-link::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  display: block;
  width: 18px;
  height: 10px;
  -webkit-mask-image: url("../img/icon/icon_arrow.svg");
          mask-image: url("../img/icon/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #251e1c;
}
.navigation__links-wrap {
  max-width: 442px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 30px;
  margin: 0 auto;
}
.navigation__links {
  width: 180px;
}
.navigation__links:nth-child(2n+1) {
	width: 220px;
}
.navigation__links-heading a {
  font-size: 16px;
  font-weight: 500;
}
.navigation__links-heading.js-accordion-trigger {
  display: none;
}
.navigation__link {
  margin-top: 20px;
}

.js-accordion-contents.header-list__item:first-child {
  display: none;
}
.header-list__item a {
  font-size: 16px;
  line-height: 1.5;
}

.navigation__sub-links {
  display: none;
}

.navigation-contact {
  display: block;
  border-radius: 20px;
  padding: 20px 30px;
}
.navigation-contact__text-wrap {
    border-bottom: 1px solid #999;
    padding-bottom: 15px;
}
.navigation-contact:nth-child(1) {
  background-color: #e2e2e2;
}
.navigation-contact:nth-child(1) .navigation-contact__tel {
  margin: 0 auto;
}
.navigation-contact:nth-child(1) .navigation-contact__tel-text {
  color: #251e1c;
}
.navigation-contact:nth-child(1) .navigation-contact__tel-text:nth-child(1) {
  font-size: 28px;
}
.navigation-contact:nth-child(1) .navigation-contact__tel-text:nth-child(2) {
    font-size: 13px;
    letter-spacing: 0.5px;
}
.navigation-contact:nth-child(1) .navigation-contact__tel::before {
  background-color: #251e1c;
}
.navigation-contact:nth-child(2) {
  background-color: #e1e8ee;
  margin-top: 10px;
	padding: 30px 30px;
}
.navigation-contact:nth-child(2) .navigation-contact__heading {
  font-weight: 500;
}
.navigation-contact:nth-child(2) .navigation-contact__heading,
.navigation-contact:nth-child(2) .navigation-contact__tel-text {
  color: #3a638e;
}
.navigation-contact:nth-child(2) .navigation-contact__tel {
  margin-top: 15px;
}
.navigation-contact:nth-child(2) .navigation-contact__tel-text:nth-child(1) {
  font-size: 23px;
}
.navigation-contact:nth-child(2) .navigation-contact__tel-text:nth-child(2) {
    font-size: 13px;
    letter-spacing: 0.5px;
}
.navigation-contact:nth-child(2) .navigation-contact__tel::before {
  background-color: #3a638e;
}
.navigation-contact:nth-child(3) {
  background-color: #f8e6d1;
  margin-top: 10px;
	padding: 30px 30px;
}
.navigation-contact:nth-child(3) .navigation-contact__heading {
  font-weight: 500;
  color: #e08d2a;
}
.navigation-contact__heading {
  font-size: 20px;
}
.navigation-contact__text {
	font-size: 14px;
    line-height: 1.3;
    margin-top: 10px;
}
.navigation-contact__tel {
  position: relative;
  width: 240px;
  display: block;
  margin-top: 4px;
}
.navigation-contact__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 27px;
  height: 30px;
  -webkit-mask-image: url("../img/icon/icon_tel.svg");
          mask-image: url("../img/icon/icon_tel.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.navigation-contact__tel .navigation-contact__tel-text {
  text-align: left;
  padding-left: 36px;
}
.navigation-contact__tel .navigation-contact__tel-text:nth-child(1) {
  font-weight: 600;
}
.navigation-contact__tel .navigation-contact__tel-text:nth-child(2) {
  margin-top: 5px;
}
.navigation-contact__web {
  position: relative;
  display: block;
  padding-right: 25px;
  margin-top: 20px;
}
.navigation-contact__web::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 17px;
  height: 10px;
  -webkit-mask-image: url("../img/icon/icon_arrow.svg");
          mask-image: url("../img/icon/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #e08d2a;
}
.navigation-contact__web-text {
  font-size: 22px;
  font-weight: 600;
  color: #e08d2a;
}

.navigation-link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 15px;
}
.navigation-link-item a {
  display: inline-block;
  font-size: 13px;
}
.navigation-link-item a::before {
  content: "-";
  margin-right: 5px;
}

.js-popup-contents {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.js-popup-contents.is-show {
  opacity: 1;
  visibility: visible;
}
.js-popup-contents.is-show.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* # =================================================================
# fixed-reservation-link
# ================================================================= */
.fixed-reservation-links {
  position: fixed;
  top: 210px;
  right: 0;
  z-index: 50;
}

.fixed-reservation-link {
  position: relative;
  display: block;
  border-radius: 30px 0 0 30px;
  -webkit-box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.12);
  padding: 15px 8px 15px 40px;
}
.fixed-reservation-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
.fixed-reservation-link--tel {
  background-color: #3a638e;
}
.fixed-reservation-link--tel::before {
  left: 14px;
  width: 20px;
  height: 23px;
  background-color: #ffffff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("../img/icon/icon_tel.svg");
          mask-image: url("../img/icon/icon_tel.svg");
}
.fixed-reservation-link--web {
  background-color: #e08d2a;
  margin-top: 5px;
}
.fixed-reservation-link--web::before {
  left: 12px;
  background-image: url("../img/icon/icon_web.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.fixed-reservation-link__heading {
  display: block;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
}
.fixed-reservation-link__tel {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  margin-top: 5px;
	letter-spacing: 0;
}
.fixed-reservation-link__web {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  margin-top: 5px;
}
.fixed-reservation-link__web span {
  font-size: 20px;
}


/* # =================================================================
# fixed-under-nav
# ================================================================= */
.fixed-under-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: #443c37;
  z-index: 500;
}
.fixed-under-nav__inner {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  padding: 8px;
}
.fixed-under-nav__link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 3px;
  font-size: 17px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 15px 10px 34px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
  background-repeat: no-repeat;
}
.fixed-under-nav__link--access {
  background-color: #df8674;
  background-image: url("../img/icon/icon_glass.png");
  background-size: 9px 16px;
  background-position: center left 15px;
}
.fixed-under-nav__link--tel {
  background-color: #3a638e;
  background-image: url("../img/icon/icon_tel-white.svg");
  background-size: 15px;
  background-position: center left 12px;
}
.fixed-under-nav__link--web {
  background-color: #e08d2a;
  background-image: url("../img/icon/icon_world.svg");
  background-size: 15px;
  background-position: center left 12px;
  padding: 10px 10px 10px 34px;
}
.fixed-under-nav__link span {
  display: block;
}
.fixed-under-nav__link span:nth-child(2) {
  font-size: 12px;
	letter-spacing: 0;
}


/* # =================================================================
# SP
# ================================================================= */


@media screen and (min-width: 1024px) and (max-width: 1200px) and (orientation: landscape) {
	.navigation__links {
		width: 220px;
	}
	.navigation__links-wrap {
		padding-bottom: 60px;
	}
}

@media screen and (max-width: 1023px) {
  .is-sp .header:has(.js-modal.is-show) {
    position: relative;
    z-index: 1001;
  }
  .header__inner {
    padding: 15px 25px;
  }
  
  .header__upper {
    justify-content: space-between;  
  }
  .header__logo {
    width: 260px;
  }
	.header__logo img {
		width: 100%;
	}
  
  .header__tel,
  .header__links,
  .header__lower {
    display: none;
  }
  
  .sp-header-button {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(37,30,28,0.2);
  }
  .sp-header-button span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 23px;
    height: 2px;
    background-color: #251e1c;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .sp-header-button span:nth-child(1) {
    top: calc(50% + 7px);
  }
  .sp-header-button span:nth-child(2) {
    top: 50%;
  }
  .sp-header-button span:nth-child(3) {
    top: calc(50% - 7px);
  }
  .sp-header-button.is-selected span:nth-child(1) {
    top: 50%;
    transform: translate(-50%) rotateZ(45deg);
  }
  .sp-header-button.is-selected span:nth-child(2) {
    opacity: 0;
  }
  .sp-header-button.is-selected span:nth-child(3) {
    top: 50%;
    transform: translate(-50%) rotateZ(-45deg);
  }

  .navigation {
    width: 100vw;
    top: 79px;
    left: 0;
    flex-direction: column;
    background-color: #e2e2e2;
    border-radius: 0;
    padding: 40px 25px 135px;
  }
  .navigation__column:nth-child(1) {
    display: none;
  }
  .navigation__column:nth-child(2),
  .navigation__column:nth-child(3){
    width: 100%;
  }
  
  .navigation__links,
	.navigation__links:nth-child(2n+1) {
    width: 100%;
  }
  .navigation__links-wrap {
    flex-direction: column;
    gap: 0;
  }
  
  .navigation__links-heading {
    display: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px dashed #251e1c;
    padding: 20px 0;
  }
  .navigation__links-heading.js-accordion-trigger {
    display: block;
    cursor: pointer;
  }
  .navigation__links-heading.is-open {
    border: none;
  }
  
  .navigation__link {
    margin-top: 0;
  }

  .header-list {
    display: none;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 32px;
    margin-bottom: 15px;
  }
  .header-list__item {
    line-height: 2;
  }
  .header-list__item:first-child {
    display: list-item;
  }
	.header-list__item a {
		font-size: 16px;
		font-weight: 500;
		line-height: 2.0;
	}
  .navigation__sub-content .header-list {
    display: block;
  }
  
  .navigation__sub-links {
    width: 100%;
    max-width: 442px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    justify-content: center;
    margin: 40px auto 0;
  }

  .navigation__sub-links > *:nth-child(1) {
    width: 28%;
  }
  .navigation__sub-links >  *:nth-child(2) {
    width: calc(44% - 12px);
  }
  .navigation__sub-links >  *:nth-child(3) {
    width: 28%;
  }
  .navigation__sub-link {
    height: fit-content;
    font-size: 14px;
    text-align: center;
    background-color: #f2f2f2;
    border-radius: 6px;
    padding: 10px 12px;
  }
.navigation__sub-link.js-accordion-trigger {
  position: relative;
  width: 100%;
  padding-right: 34px;
}
.navigation__sub-link.js-accordion-trigger::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 14px;
  display: block;
  width: 9px;
  height: 5px;
  background-image: url("../img/icon/icon_under-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
  
  .navigation__sub-content {
    width: calc(100% + 50px);
    margin-top: 10px;
    margin-left: -30px;
  }
  .navigation__sub-content .header-list {
    padding: 20px;
    margin-bottom: 0;
  }

  .navigation__column {
    margin-top: 20px;
  }
  .navigation-contact {
    width: 100%;
    max-width: 442px;
    margin: 0 auto;
  }
  .navigation-contact:nth-child(1) {
    background-color: #ffffff;
	  box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.06);
  }
  .navigation-contact:nth-child(2),
  .navigation-contact:nth-child(3) {
    background-color: #ffffff;
    box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.06);
  }
  
  .navigation-link-item {
    width: 100%;
    max-width: 400px;
    margin: 15px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .fixed-reservation-link {
    display: none;
  }

  .fixed-under-nav {
    display: block;
  }
}
@media screen and (max-width: 442px) {
  .navigation-contact,
  .navigation__sub-links {
    max-width: 400px;
  }
}
@media screen and (max-width: 425px) {
  .header__logo {
    width: 250px;
  }
}


















