@charset "UTF-8";
/*======================================
	Common
======================================*/
html {
  font-size: 100%;
}

body {
  background-color: #df8661;
  font-family: "Sorts Mill Goudy", "Zen Kaku Gothic New", serif;
  font-size: 0.8125rem;
  color: #222222;
  letter-spacing: 0.01em;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (max-width: 576px) {
  body {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.5;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

ol, ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th, table tr td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

/*		Accessibility
--------------------------------------*/
:focus-visible {
  outline: auto !important;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/*		display
--------------------------------------*/
.xl_disp-b {
  display: none;
}
@media screen and (max-width: 1200px) {
  .xl_disp-b {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .xl_disp-n {
    display: none;
  }
}
.lg_disp-b {
  display: none;
}
@media screen and (max-width: 992px) {
  .lg_disp-b {
    display: block;
  }
}

@media screen and (max-width: 992px) {
  .lg_disp-n {
    display: none;
  }
}
.md_disp-b {
  display: none;
}
@media screen and (max-width: 768px) {
  .md_disp-b {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .md_disp-n {
    display: none;
  }
}
.sm_disp-b {
  display: none;
}
@media screen and (max-width: 576px) {
  .sm_disp-b {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .sm_disp-n {
    display: none;
  }
}
.xs_disp-b {
  display: none;
}
@media screen and (max-width: 424px) {
  .xs_disp-b {
    display: block;
  }
}

@media screen and (max-width: 424px) {
  .xs_disp-n {
    display: none;
  }
}
/*======================================
	Animation
======================================*/
/*		display
(※.js-viewも一緒に指定)
--------------------------------------*/
/*
// fade in
.view-fadeIn {
	opacity: 0;
	animation: view-fadeIn 1s ease(in-out-cubic) both;
}
@keyframes view-fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
*/
/*
// slide up
.view-slideUp {
	opacity: 0;
	animation: view-slideUp 1s ease(in-out-cubic) both;
}
@keyframes view-slideUp {
	0% {
		opacity: 0;
		transform: translate(0, 35px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
*/
/*
// slide ro right
.view-slideIn-l {
	opacity: 0;
	animation: view-slideIn-l .6s ease(in-out-cubic) both;
}
@keyframes view-slideIn-l {
	0% {
		opacity: 0;
		transform: translate(35px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
*/
/*
// slide left
.view-slideIn-r {
	opacity: 0;
	animation: view-slideIn-r .6s ease(in-out-cubic) both;
}
@keyframes view-slideIn-r {
	0% {
		opacity: 0;
		transform: translate(-35px, 0);
	}
	100% {
		opacity: 0;
		transform: translate(0, 0);
	}
}
*/
/*======================================
	Program
======================================*/
/* Button
--------------------------------------*/
.js-hideEl {
  display: none !important;
}

.js-hideEl.on {
  display: inline-block !important;
}

/* Header
--------------------------------------*/
.js-siteLogo.on {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

.js-burgerToggle.active {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .js-burgerToggle.active {
    width: auto;
  }
}
.js-burgerToggle.active .burger-toggle__title {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 576px) {
  .js-burgerToggle.active .burger-toggle__title {
    opacity: 1;
    visibility: visible;
  }
}

.js-burgerNav,
.js-burgerNavSp {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.js-burgerNav.active,
.js-burgerNavSp.active {
  opacity: 1;
  visibility: visible;
}

.js-focus-trap {
  visibility: hidden;
}

/* accordion
--------------------------------------*/
.js-acoLabel.open .b_aco-main__toggle {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* animation display
--------------------------------------*/
.js-fadeIn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 2s ease, visibility 2s ease;
  transition: opacity 2s ease, visibility 2s ease;
}

.js-fadeIn.on {
  opacity: 1;
  visibility: visible;
}

.js-scrollFade {
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}

.js-scrollFade.show {
  opacity: 1;
}

.js-blurIn {
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(35px);
          filter: blur(35px);
  -webkit-transition: opacity 1.5s ease, visibility 1.5s ease, -webkit-filter 1.5s ease;
  transition: opacity 1.5s ease, visibility 1.5s ease, -webkit-filter 1.5s ease;
  transition: opacity 1.5s ease, visibility 1.5s ease, filter 1.5s ease;
  transition: opacity 1.5s ease, visibility 1.5s ease, filter 1.5s ease, -webkit-filter 1.5s ease;
}

.js-blurIn.on {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0);
          filter: blur(0);
}

/* slider cursor
--------------------------------------*/
.js-cursor {
  position: relative;
  cursor: none !important;
}
.js-cursor img {
  width: 22px;
  height: 22px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 29px;
  height: auto;
  pointer-events: none;
  z-index: 10000;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  visibility: hidden;
  opacity: 0;
}

.js-cursor.on img {
  visibility: visible;
  opacity: 1;
}

/*======================================
	Header
======================================*/
.l_header {
  width: 100%;
  height: 100svh;
  mix-blend-mode: difference;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
.l_header .l_header__top-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 25px 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 576px) {
  .l_header .l_header__top-container {
    padding: 16px 16px 0;
  }
}
.l_header .site-title {
  width: 69px;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .l_header .site-title {
    width: 53px;
  }
}
@media screen and (max-width: 576px) {
  .l_header .site-title {
    width: 73px;
  }
}
.l_header .site-title a {
  display: block;
}
@media screen and (max-width: 576px) {
  .l_header .site-title__logo {
    width: 35px;
    -webkit-transform: translateX(19px);
            transform: translateX(19px);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
}
.l_header .site-title__text {
  display: none;
}
@media screen and (max-width: 576px) {
  .l_header .site-title__text {
    display: block;
    margin-top: 13px;
  }
}
.l_header .l_header__top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 38px;
}
@media screen and (max-width: 768px) {
  .l_header .c_btn-more__wrap {
    display: none;
  }
}
.l_header .c_btn-more {
  color: #BD643F;
  margin-bottom: 20px;
  position: absolute;
  top: 25px;
  right: 25px;
  pointer-events: all;
}
.l_header .c_btn-more::before {
  background-color: #BD643F;
}
.l_header .c_btn-reservation {
  margin-bottom: 2px;
  pointer-events: all;
}
.l_header .c_btn-reservation::after {
  background-color: #BD643F;
}
.l_header .l_header__scroll-amount {
  color: #BD643F;
  font-size: 1.0625rem;
}
.l_header .l_header__bottom-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 25px 25px;
  position: fixed;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 576px) {
  .l_header .l_header__bottom-container {
    padding: 0 16px 16px;
  }
}
.l_header .l_header__map-link {
  display: block;
  line-height: 1;
  pointer-events: all;
}
.l_header .l_header__map-link img {
  width: 159px;
}
.l_header .l_header__map-icon {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url("../svg/icon-map_difference.svg") no-repeat center center/contain;
  line-height: 0;
  vertical-align: bottom;
}
.l_header .l_header__bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l_header .l_header__bottom-right .c_btn-arrow {
  color: #BD643F;
  margin-bottom: 33px;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .l_header .l_header__bottom-right .c_btn-arrow {
    display: none;
  }
}
.l_header .l_header__bottom-right .c_btn-arrow::before {
  background: url("../svg/icon-arrow_link_difference.svg") no-repeat center center/contain;
}
.l_header .l_header__bottom-right .copyright {
  color: #BD643F;
  margin-top: 28px;
}

.copyright {
  display: inline-block;
  font-size: 0.875rem;
  font-family: "Instrument Sans", sans-serif;
  line-height: 1;
}

/* Main Menu
--------------------------------------*/
@media screen and (max-width: 768px) {
  .main-nav__wrap {
    display: none;
  }
}

.main-nav {
  color: #BD643F;
  margin-bottom: 42px;
}
.main-nav .main-nav__title {
  margin-bottom: 30px;
}
.main-nav .item {
  font-size: 1.125rem;
  margin-bottom: 0.1666666667em;
}
.main-nav .item:last-child {
  margin-bottom: 0;
}
.main-nav .item a {
  display: inline-block;
  pointer-events: all;
}

/* Burger Toggle
--------------------------------------*/
.burger-toggle {
  display: none;
  color: #222222;
  line-height: 1;
  cursor: pointer;
  padding-right: 18px;
  mix-blend-mode: difference;
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 200;
  pointer-events: all;
}
@media screen and (max-width: 576px) {
  .burger-toggle {
    right: 16px;
  }
}
.burger-toggle::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50vh;
  background-color: #BD643F;
  position: absolute;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.burger-toggle .burger-toggle__title {
  color: #BD643F;
  display: block;
  font-size: 0.875rem;
  font-family: "Instrument Sans", sans-serif;
  padding-bottom: 0.1428571429em;
}

/* Burger Menu
--------------------------------------*/
.burger-nav {
  padding-right: 18px;
  position: absolute;
  top: 25px;
  right: 25px;
}
.burger-nav .burger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.burger-nav .burger-menu .item {
  color: #BD643F;
  font-size: 0.875rem;
  line-height: 1;
  vertical-align: bottom;
  padding: 0 0.7142857143em;
}
.burger-nav .burger-menu a {
  display: block;
  pointer-events: all;
}

.burger-nav__sp {
  display: none;
  pointer-events: all;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  background-color: #df8661;
  padding: 80px 16px 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
}
@media screen and (max-width: 576px) {
  .burger-nav__sp {
    display: block;
  }
}
.burger-nav__sp .burger-nav__sp-main {
  margin-bottom: 30px;
}
.burger-nav__sp .burger-nav__sp-main .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.burger-nav__sp .burger-nav__sp-main .sub-menu__item {
  font-size: 23px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1;
}
.burger-nav__sp .burger-nav__sp-main .c_btn-reservation {
  width: 100px;
}
.burger-nav__sp .burger-menu {
  margin-bottom: 38px;
}
.burger-nav__sp .burger-menu > * + * {
  margin-top: 28px;
}
.burger-nav__sp .burger-menu .item:nth-of-type(1) img {
  height: 32px;
}
.burger-nav__sp .burger-menu .item:nth-of-type(2) img {
  height: 34px;
}
.burger-nav__sp .burger-menu .item:nth-of-type(3) img {
  height: 45px;
}
.burger-nav__sp .burger-menu .item:nth-of-type(4) img, .burger-nav__sp .burger-menu .item:nth-of-type(6) img {
  height: 40px;
}
.burger-nav__sp .burger-menu .item:nth-of-type(5) img {
  height: 36px;
}
.burger-nav__sp .meta-content .c_btn-reservation {
  margin-bottom: 30px;
}
.burger-nav__sp .burger-nav__sp-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 18px;
  gap: 20px 16px;
}
.burger-nav__sp .burger-nav__sp-links .links-item__title {
  display: block;
  font-size: 0.6875rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  letter-spacing: -0.025em;
  -webkit-transform: scaleY(1.2);
          transform: scaleY(1.2);
}
.burger-nav__sp .burger-nav__sp-links .links-item__link {
  font-size: 0.8125rem;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
}

.burger-nav__sp-inner {
  height: 100%;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow-y: auto;
}

.burger-menu__sp-text {
  font-size: 0.875rem;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 18px;
}

/*======================================
	Contents
======================================*/
.l_container {
  max-width: 952px;
  width: 100%;
  padding: 0 26px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .l_container {
    padding: 0 16px;
  }
}
.l_container--lg {
  max-width: 100%;
}
.l_container--sm {
  max-width: 656px;
}

.l_sec-inner {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .l_sec-inner {
    padding: 45px 0;
  }
}

.l_page-inner {
  padding-top: 25.8418740849vw;
}
@media screen and (max-width: 576px) {
  .l_page-inner {
    padding-top: 24.6153846154vh;
  }
}

/*		404
--------------------------------------*/
.l_notfound {
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l_notfound .c_text-main {
  margin: 14px 0 30px;
}

/*======================================
	Footer
======================================*/
.l_footer {
  margin-top: 50px;
}
@media screen and (max-width: 576px) {
  .l_footer {
    margin-top: 76px;
  }
}

.l_footer__inner {
  padding: 0 25px 40px;
}
@media screen and (max-width: 768px) {
  .l_footer__inner {
    padding: 0 25px 60px;
  }
}
@media screen and (max-width: 576px) {
  .l_footer__inner {
    padding: 0 16px 50px;
  }
}

.l_footer__top-container,
.l_footer__bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l_footer__top-container .l_footer__left,
.l_footer__bottom-container .l_footer__left {
  width: 232px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__left,
  .l_footer__bottom-container .l_footer__left {
    width: 162px;
  }
}
@media screen and (max-width: 576px) {
  .l_footer__top-container .l_footer__left,
  .l_footer__bottom-container .l_footer__left {
    width: 102px;
  }
}
.l_footer__top-container .l_footer__center,
.l_footer__bottom-container .l_footer__center {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 670px;
}
.l_footer__top-container .l_footer__center-inner,
.l_footer__bottom-container .l_footer__center-inner {
  max-width: 570px;
}
.l_footer__top-container .l_footer__right,
.l_footer__bottom-container .l_footer__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 146px;
  margin-left: 40px;
}
.l_footer__top-container .l_footer__btn-top,
.l_footer__bottom-container .l_footer__btn-top {
  display: block;
  width: 15px;
  height: 15px;
  background: url("../svg/icon-arrow_top.svg") no-repeat center center/contain;
}

.l_footer__top-container {
  margin-bottom: 213px;
}
@media screen and (max-width: 992px) {
  .l_footer__top-container {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .l_footer__top-container {
    margin-bottom: 0;
  }
}
.l_footer__top-container .l_footer__center,
.l_footer__top-container .l_footer__right {
  padding-top: 56px;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__center,
  .l_footer__top-container .l_footer__right {
    padding-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .l_footer__top-container .l_footer__right {
    display: none;
  }
}
.l_footer__top-container .l_footer__right--sp {
  display: none;
}
@media screen and (max-width: 992px) {
  .l_footer__top-container .l_footer__right--sp {
    display: block;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__right--sp {
    max-width: 242px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
}
.l_footer__top-container .l_footer__right .c_btn-arrow {
  margin-bottom: 18px;
}
.l_footer__top-container .l_footer__logo-wrap {
  width: 69px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__logo-wrap {
    width: 100px;
  }
}
@media screen and (max-width: 576px) {
  .l_footer__top-container .l_footer__logo-wrap {
    width: 70px;
  }
}
.l_footer__top-container .l_footer__title,
.l_footer__top-container .l_footer__address-en {
  font-family: "Instrument Sans", sans-serif;
  line-height: 1.2;
}
.l_footer__top-container .l_footer__title {
  font-size: 1.125rem;
  line-height: 0.5;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__title {
    display: none;
  }
}
.l_footer__top-container .l_footer__address-en {
  font-size: 0.875rem;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__address-en {
    display: none;
  }
}
.l_footer__top-container .l_footer__nav {
  margin-bottom: 76px;
}
@media screen and (max-width: 576px) {
  .l_footer__top-container .l_footer__nav {
    margin-bottom: 40px;
  }
}
.l_footer__top-container .l_footer__nav-title {
  margin-bottom: 31px;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__nav-title {
    margin-bottom: 12px;
  }
}
.l_footer__top-container .l_footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.l_footer__top-container .l_footer__menu .item {
  font-size: 1.125rem;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__menu .item {
    padding-right: 32px;
  }
}
@media screen and (max-width: 576px) {
  .l_footer__top-container .l_footer__menu .item {
    font-size: 0.9375rem;
    padding-right: 22px;
  }
}
.l_footer__top-container .l_footer__menu .item:last-child {
  padding-right: 0;
}
.l_footer__top-container .l_footer__links {
  max-width: 305px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l_footer__top-container .l_footer__access-title {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__access-title {
    margin-bottom: 12px;
  }
}
.l_footer__top-container .l_footer__access-link {
  display: inline-block;
  font-size: 0.875rem;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: underline;
  margin-bottom: 1.1428571429em;
}
@media screen and (max-width: 576px) {
  .l_footer__top-container .l_footer__access-link {
    font-size: 0.75rem;
  }
}
.l_footer__top-container .l_footer__address-ja {
  font-size: 0.6875rem;
  font-style: normal;
  line-height: 1.4;
  margin-bottom: 3.6363636364em;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__address-ja {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .c_btn-arrow {
    display: none;
  }
}
.l_footer__top-container .l_footer__btn-top {
  display: none;
}
@media screen and (max-width: 768px) {
  .l_footer__top-container .l_footer__btn-top {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .l_footer__bottom-container {
    display: none;
  }
}
.l_footer__bottom-container .l_footer__left,
.l_footer__bottom-container .l_footer__center {
  padding-top: 60px;
}
.l_footer__bottom-container .l_footer__center-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l_footer__bottom-container .l_footer__text {
  font-size: 0.6875rem;
  line-height: 1.2;
}
.l_footer__bottom-container .l_footer__text:first-child {
  max-width: 440px;
  margin-right: 20px;
}
.l_footer__bottom-container .l_footer__text:last-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l_footer__bottom-container .l_footer__btn-top {
  margin-bottom: 37px;
}

/*======================================
	Utility
======================================*/
/*		Font Family
--------------------------------------*/
.u_ff-en-sans {
  font-family: "Instrument Sans", sans-serif;
}

/*		Font Style
--------------------------------------*/
.u_fsy-italic {
  font-style: italic;
}

.u_text-underline {
  text-decoration: underline;
}

/*		text wide
--------------------------------------*/
.u_text-wide120 {
  letter-spacing: -0.025em;
  -webkit-transform: scaleY(0.9);
          transform: scaleY(0.9);
}

.u_text-wide130 {
  letter-spacing: -0.025em;
  -webkit-transform: scaleY(0.8);
          transform: scaleY(0.8);
}

/*======================================
	Component
======================================*/
/*		Button
--------------------------------------*/
.c_btn-arrow {
  display: inline-block;
  font-family: "Instrument Sans", sans-serif;
  line-height: 1.1;
  padding-left: 14px;
  position: relative;
}
.c_btn-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: url("../svg/icon-arrow_link.svg") no-repeat center center/contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.c_btn-reservation {
  display: block;
  width: 140px;
  padding-bottom: 6px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .c_btn-reservation {
    width: 90px;
  }
}
.c_btn-reservation::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222222;
  position: absolute;
  left: 0;
  bottom: 0;
}

.c_btn-more {
  color: #222222;
  text-align: left;
  line-height: 1.2;
  padding-left: 9px;
  position: relative;
}
.c_btn-more::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50vh;
  background-color: #222222;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.c_btn-more .item {
  display: inline-block;
}

.c_btn-main {
  display: inline-block;
  font-size: 21px;
  font-family: "Instrument Sans", sans-serif;
  letter-spacing: -0.055em;
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 576px) {
  .c_btn-main {
    font-size: 18px;
    font-weight: 400;
    padding-left: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c_btn-main:hover {
    opacity: 0.8;
  }
}
.c_btn-main::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50vh;
  background-color: #222222;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) scale(0.5);
          transform: translateY(50%) scale(0.5);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.c_btn-main .item {
  display: inline-block;
  position: relative;
}
.c_btn-main .item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222222;
  position: absolute;
  left: 0;
  bottom: 4px;
}

/*		heading
--------------------------------------*/
.c_heading-lv1 {
  margin-bottom: 16px;
}
@media screen and (max-width: 576px) {
  .c_heading-lv1 {
    margin-bottom: 8px;
  }
}
.c_heading-lv1 img {
  height: 59px;
}
@media screen and (max-width: 768px) {
  .c_heading-lv1 img {
    height: 50px;
  }
}
@media screen and (max-width: 576px) {
  .c_heading-lv1 img {
    height: 33px;
  }
}

.c_heading-lv2 {
  font-size: 54px;
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.c_heading-lv2::before, .c_heading-lv2::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c_heading-lv2::before {
  margin-top: calc((1 - 1.2) * 0.5em);
}
.c_heading-lv2::after {
  margin-bottom: calc((1 - 1.2) * 0.5em);
}
@media screen and (max-width: 768px) {
  .c_heading-lv2 {
    line-height: 1;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 576px) {
  .c_heading-lv2 {
    font-size: 31px;
  }
}

.c_heading-lv3 {
  font-size: 32px;
  -webkit-transform: scaleY(1.2);
          transform: scaleY(1.2);
  letter-spacing: -0.06em;
  line-height: 1;
  padding-top: 8px;
}
@media screen and (max-width: 576px) {
  .c_heading-lv3 {
    font-size: 1.375rem;
  }
}
.c_heading-lv3--img {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  padding-top: 0;
}

.c_heading-lv5 {
  font-size: 0.6875rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/*		text
--------------------------------------*/
.c_text-main {
  text-align: justify;
}

.c_text-sans--en {
  font-size: 1.25rem;
  font-family: "Instrument Sans", sans-serif;
  letter-spacing: -0.055em;
}
@media screen and (max-width: 768px) {
  .c_text-sans--en {
    font-size: 0.9375rem;
  }
}
.c_text-sans--sm {
  font-size: 0.8125rem;
  line-height: 1.2;
}

/*		icon
--------------------------------------*/
.c_icon-arrow {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../svg/icon-arrow_top.svg") no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*		cursor
--------------------------------------*/
@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea {
    cursor: none !important;
  }
  .c_cursor {
    width: 6px;
    height: 6px;
    background: #222222;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: width 0.2s ease, height 0.2s ease;
    transition: width 0.2s ease, height 0.2s ease;
    z-index: 9999;
  }
  .c_cursor.hover {
    width: 28px;
    height: 28px;
  }
  .c_cursor.slider-hover {
    width: 112px;
    height: 112px;
  }
  .c_cursor__img {
    position: absolute; /* 円の中で絶対位置 */
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8); /* 中央配置 */
    width: 29px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 10000;
  }
  .c_cursor__img.slider-hover,
  .c_cursor__img.c_cursor__img {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@media (hover: none) and (pointer: coarse) {
  .c_cursor {
    display: none;
  }
}
/*======================================
	Block
======================================*/
/*		List
--------------------------------------*/
.b_aco-main .b_aco-main__list-item {
  padding: 21px 0 20px;
}
@media screen and (max-width: 576px) {
  .b_aco-main .b_aco-main__list-item {
    padding: 13px 0 12px;
  }
}
.b_aco-main .b_aco-main__label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #222222;
  cursor: pointer;
}
.b_aco-main .b_aco-main__toggle {
  display: block;
  width: 22px;
  height: 22px;
  position: relative;
  margin-right: 18px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 576px) {
  .b_aco-main .b_aco-main__toggle {
    width: 15px;
    height: 15px;
    margin-right: 12px;
  }
}
.b_aco-main .b_aco-main__toggle::before, .b_aco-main .b_aco-main__toggle::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222222;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.b_aco-main .b_aco-main__toggle::after {
  -webkit-transform: translateY(50%) rotate(90deg);
          transform: translateY(50%) rotate(90deg);
}
.b_aco-main .b_aco-main__label-text {
  text-align: left;
  letter-spacing: 0.05em;
}
.b_aco-main .b_aco-main__panel {
  display: none;
  padding-top: 25px;
}
@media screen and (max-width: 576px) {
  .b_aco-main .b_aco-main__panel {
    padding-top: 20px;
  }
}

.b_flex-col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .b_flex-col3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.b_flex-col3 .item {
  width: calc(33.3333333333% - 40px);
  margin: 13px 20px;
}
@media screen and (max-width: 768px) {
  .b_flex-col3 .item {
    width: calc(50% - 20px);
    margin: 13px 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .b_flex-col3 .item {
    margin: 7px 0;
  }
}
@media screen and (max-width: 768px) {
  .b_flex-col3 .item:nth-of-type(even) {
    margin-left: 20px !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .b_flex-col3 .item:nth-of-type(even) {
    margin-left: 18px !important;
  }
}
@media screen and (max-width: 768px) {
  .b_flex-col3 .item:nth-of-type(odd) {
    margin-right: 20px !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .b_flex-col3 .item:nth-of-type(odd) {
    margin-right: 18px !important;
  }
}
.b_flex-col3 .item:nth-of-type(3n + 1) {
  margin-left: 0;
}
.b_flex-col3 .item:nth-of-type(3n) {
  margin-right: 0;
}

.b_list-dl > * + * {
  margin-top: 2px;
}
.b_list-dl .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.b_list-dl .item-head {
  min-width: 133px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .b_list-dl .item-head {
    min-width: 100px;
  }
}

/*		Slider
--------------------------------------*/
.b_slider-fade .swiper-slide {
  width: 100%;
  height: 100%;
}

/*		Slider navigation
--------------------------------------*/
.mask-slider-prev,
.mask-slider-next {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .mask-slider-prev,
  .mask-slider-next {
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
  }
}

.mask-slider-prev {
  left: 0;
}

.mask-slider-next {
  right: 0;
}

/*		Flex
--------------------------------------*/
.l_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1200px) {
  .xl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 992px) {
  .lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 576px) {
  .sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 424px) {
  .xs_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
._ai-b {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

._ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._ai-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

._ai-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

._ai-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 1200px) {
  .xl_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .xl_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .xl_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .xl_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .xl_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 992px) {
  .lg_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .lg_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lg_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .lg_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lg_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .md_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .md_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .md_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .md_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .md_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 576px) {
  .sm_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .sm_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sm_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .sm_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sm_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 424px) {
  .xs_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .xs_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .xs_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .xs_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .xs_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
._jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

._jc-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

._jc-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

._jc-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

._jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .xl_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .xl_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .xl_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .xl_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .xl_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 992px) {
  .lg_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lg_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .lg_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .lg_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .lg_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .md_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .md_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .md_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .md_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .md_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 576px) {
  .sm_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sm_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sm_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sm_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .sm_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 424px) {
  .xs_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .xs_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .xs_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .xs_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .xs_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
._fxw-n {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

._fxw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

._fxw-wr {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

@media screen and (max-width: 1200px) {
  .xl_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xl_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .xl_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 992px) {
  .lg_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .lg_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lg_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 768px) {
  .md_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .md_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .md_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 576px) {
  .sm_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .sm_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sm_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 424px) {
  .xs_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xs_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .xs_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
._fxd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._fxd-cr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

._fxd-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

._fxd-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1200px) {
  .xl_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xl_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .xl_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xl_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 992px) {
  .lg_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lg_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .lg_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .lg_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .md_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .md_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .md_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .md_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 576px) {
  .sm_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sm_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sm_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sm_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 424px) {
  .xs_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xs_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .xs_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xs_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
._ac-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

._ac-fe {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

._ac-fs {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

._ac-s {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

._ac-sa {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

._ac-sb {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

@media screen and (max-width: 1200px) {
  .xl_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .xl_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .xl_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .xl_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .xl_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .xl_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 992px) {
  .lg_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .lg_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .lg_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .lg_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .lg_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .lg_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .md_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .md_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .md_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .md_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .md_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .md_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 576px) {
  .sm_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .sm_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .sm_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .sm_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .sm_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .sm_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 424px) {
  .xs_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .xs_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .xs_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .xs_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .xs_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .xs_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
._ord1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

._ord2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

._ord3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

._ord4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

._ord5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

._ord6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

._ord7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

._ord8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

._ord9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

._ord10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

@media screen and (max-width: 1200px) {
  .xl_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xl_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xl_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xl_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xl_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xl_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .xl_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .xl_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .xl_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .xl_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 992px) {
  .lg_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .lg_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .lg_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .lg_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .lg_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .lg_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .lg_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .lg_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .lg_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .lg_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 768px) {
  .md_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .md_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .md_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .md_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .md_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .md_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .md_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .md_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .md_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .md_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 576px) {
  .sm_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .sm_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sm_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .sm_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .sm_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .sm_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .sm_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .sm_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .sm_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .sm_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 424px) {
  .xs_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xs_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xs_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xs_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xs_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xs_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .xs_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .xs_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .xs_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .xs_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
/*		grid
--------------------------------------*/
.b_grid {
  display: grid;
}
.b_grid.--col1 {
  grid-template-columns: repeat(1, 1fr);
}
.b_grid.--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.b_grid.--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.b_grid.--col4 {
  grid-template-columns: repeat(4, 1fr);
}
.b_grid.--col5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1200px) {
  .b_grid.xl--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.xl--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.xl--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.xl--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.xl--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .b_grid.lg--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.lg--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.lg--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.lg--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.lg--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .b_grid.md--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.md--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.md--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.md--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.md--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .b_grid.sm--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.sm--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.sm--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.sm--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.sm--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 424px) {
  .b_grid.xs--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .b_grid.xs--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_grid.xs--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .b_grid.xs--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .b_grid.xs--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/*		List
--------------------------------------*/
/*======================================
	Top
======================================*/
/* loading
--------------------------------------*/
.loading {
  width: 100%;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #df8661;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

.loading__img {
  width: 126px;
}
@media screen and (max-width: 576px) {
  .loading__img {
    width: 107px;
  }
}

/* fv
--------------------------------------*/
.fv {
  width: 100%;
  height: 100svh;
  min-height: 725px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .fv {
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }
}

.fv__inner {
  max-width: 745px;
  text-align: center;
  padding: 110px 25px 25px;
}
@media screen and (max-width: 576px) {
  .fv__inner {
    padding: 16px;
  }
}

.fv__img-wrap {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .fv__img-wrap {
    height: 433px;
    margin-top: 58px;
    margin-bottom: 10px;
  }
  .fv__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.fv__main-text {
  display: block;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1;
}
@media screen and (max-width: 576px) {
  .fv__main-text {
    font-size: 0.875rem;
  }
}

.fv__text-scroll {
  display: inline-block;
  font-size: 0.9375rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  padding-top: 28px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .fv__text-scroll {
    font-size: 0.8125rem;
  }
}
.fv__text-scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #222222;
  margin: 0 auto;
  position: absolute;
  top: 3px;
  right: 0;
  left: 0;
}

/* intro
--------------------------------------*/
.intro {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .intro {
    padding: 60px 0;
  }
}
@media screen and (max-width: 576px) {
  .intro {
    margin-top: 40px;
  }
}
.intro .c_btn-main {
  margin-top: 54px;
}
@media screen and (max-width: 576px) {
  .intro .c_btn-main {
    margin-top: 28px;
  }
}

.intro__inner {
  text-align: center;
}

.intro__title-sub {
  max-width: 275px;
  line-height: 1;
  margin: 0 auto 55px;
}
@media screen and (max-width: 576px) {
  .intro__title-sub {
    max-width: 175px;
    margin: 0 auto 28px;
  }
}

.intro__content {
  font-family: "Sawarabi Gothic", sans-serif;
}

.intro__title-main {
  font-size: 1.75rem;
  margin-bottom: 0.1071428571em;
}
@media screen and (max-width: 576px) {
  .intro__title-main {
    font-size: 1.125rem;
  }
}

.intro__body {
  font-size: 1.1875rem;
  line-height: 2.65;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .intro__body {
    font-size: 0.75rem;
  }
}
.intro__body:last-of-type {
  letter-spacing: -0.01em;
  margin-top: 0.9473684211em;
}

/* rooms
--------------------------------------*/
.rooms__slider {
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .rooms__slider {
    padding: 0 16px;
    margin-bottom: 6px;
  }
}
.rooms__slider .swiper {
  width: 100%;
}
.rooms__slider .swiper-slide {
  aspect-ratio: 442/604;
}
@media screen and (max-width: 768px) {
  .rooms__slider .swiper-slide {
    aspect-ratio: 694/867;
  }
}

.rooms__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .rooms__head {
    margin-right: 0;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 576px) {
  .rooms__head {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .rooms__head .c_btn-main__wrap {
    display: none;
  }
}

.rooms__body {
  max-width: 510px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .rooms__body {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .rooms__body {
    margin-bottom: 23px;
  }
}

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

/* sauna & garden
--------------------------------------*/
.sauna-garden .l_container > *:last-child {
  margin-bottom: 0;
}

.sauna-garden__content {
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .sauna-garden__content {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 576px) {
  .sauna-garden__content {
    margin-bottom: 63px;
  }
}
.sauna-garden__content .b_slider-fade {
  max-width: 442px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sauna-garden__content .b_slider-fade {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 576px) {
  .sauna-garden__content .b_slider-fade {
    margin: 0 auto 7px;
  }
}
.sauna-garden__content .b_slider-fade .swiper-slide {
  aspect-ratio: 694/867;
}
@media screen and (max-width: 768px) {
  .sauna-garden__content--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.sauna-garden__content--reverse .sauna-garden__text-box {
  margin-left: 0;
  margin-right: 42px;
}
@media screen and (max-width: 768px) {
  .sauna-garden__content--reverse .sauna-garden__text-box {
    margin-right: 0;
  }
}

.sauna-garden__text-box {
  width: 50%;
  margin-left: 42px;
}
@media screen and (max-width: 768px) {
  .sauna-garden__text-box {
    width: 100%;
    margin-left: 0;
  }
}
.sauna-garden__text-box .c_heading-lv3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .sauna-garden__text-box .c_heading-lv3 {
    margin-bottom: 10px;
  }
}

.sauna-garden__body {
  margin-bottom: 47px;
}
@media screen and (max-width: 768px) {
  .sauna-garden__body {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 576px) {
  .sauna-garden__body {
    margin-bottom: 22px;
  }
}

/* dinning
--------------------------------------*/
.dinning .c_heading-lv1 {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .dinning .c_heading-lv1 {
    text-align: left;
  }
}
.dinning .c_heading-lv1 img {
  height: 85px;
}
@media screen and (max-width: 576px) {
  .dinning .c_heading-lv1 img {
    height: 48px;
  }
}
.dinning .b_slider-fade {
  margin-bottom: 14px;
}

@media screen and (max-width: 576px) {
  .dinning__img-wrap {
    aspect-ratio: 1/1;
  }
  .dinning__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* goto island
--------------------------------------*/
.goto-island {
  width: 100%;
  position: relative;
  height: 350vh;
}

.goto-island__head {
  padding-top: 80px;
  padding-bottom: 0;
}
.goto-island__head .c_heading-lv1 img {
  height: 77px;
}
@media screen and (max-width: 576px) {
  .goto-island__head .c_heading-lv1 img {
    height: 43px;
  }
}

.goto-island__body {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: sticky;
  top: 0;
}
.goto-island__body .bg-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  -webkit-clip-path: inset(26px 26px 26px 26px);
          clip-path: inset(26px 26px 26px 26px);
}
.goto-island__body .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  inset: 0;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}
.goto-island__body .bg.bg1 {
  background-image: url("../img/top-fixedbg01.webp");
}
@media screen and (max-width: 768px) {
  .goto-island__body .bg.bg1 {
    background-image: url("../img/top-fixedbg01_sp.webp");
  }
}
.goto-island__body .bg.bg2 {
  background-image: url("../img/top-fixedbg02.webp");
}
@media screen and (max-width: 768px) {
  .goto-island__body .bg.bg2 {
    background-image: url("../img/top-fixedbg02_sp.webp");
  }
}
.goto-island__body .bg.bg3 {
  background-image: url("../img/top-fixedbg03.webp");
}
@media screen and (max-width: 768px) {
  .goto-island__body .bg.bg3 {
    background-image: url("../img/top-fixedbg03_sp.webp");
  }
}
.goto-island__body .bg.bg4 {
  background-image: url("../img/top-fixedbg04.webp");
}
@media screen and (max-width: 768px) {
  .goto-island__body .bg.bg4 {
    background-image: url("../img/top-fixedbg04_sp.webp");
  }
}

.goto-island__scroll-area {
  max-width: calc(100% - 52px);
  width: 100%;
  padding: 25vh 0 100vh;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.goto-island__scroll-area .inner {
  max-width: 1004px;
  width: 100%;
  min-height: 0;
  margin: 0 auto;
}
.goto-island__scroll-area .text {
  color: #df8661;
  font-size: 17px;
  -webkit-transform: scaleY(0.9);
          transform: scaleY(0.9);
  letter-spacing: -0.015em;
}
@media screen and (max-width: 576px) {
  .goto-island__scroll-area .text {
    font-size: 12px;
  }
}
.goto-island__scroll-area .text:nth-of-type(1) {
  margin-bottom: 43.75vh;
}
.goto-island__scroll-area .text:nth-of-type(2) {
  text-align: right;
  margin-bottom: 26.25vh;
}
.goto-island__scroll-area .text:nth-of-type(3) {
  padding-left: 14.6412884334vw;
  margin-bottom: 50px;
}
.goto-island__scroll-area .text:nth-of-type(4) {
  text-align: center;
  margin-bottom: 80px;
}
.goto-island__scroll-area .text:nth-of-type(5) {
  padding-left: 13.17715959vw;
  margin-bottom: 33.75vh;
}
.goto-island__scroll-area .text:nth-of-type(6) {
  text-align: right;
  padding-right: 14.6412884334vw;
}
@media screen and (max-width: 576px) {
  .goto-island__scroll-area .text:nth-of-type(6) {
    padding-right: 0;
  }
}

/* location
--------------------------------------*/
.location .c_heading-lv1 {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .location .c_heading-lv1 {
    text-align: left;
  }
}
.location .c_heading-lv1 img {
  height: 69px;
}
@media screen and (max-width: 576px) {
  .location .c_heading-lv1 img {
    height: 39px;
  }
}

.location__img-wrap {
  aspect-ratio: 690/570;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .location__img-wrap {
    aspect-ratio: 1/1;
  }
}
.location__img-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e7aa90;
  mix-blend-mode: color-burn;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.location__img-wrap iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -webkit-filter: grayscale(1) contrast(0.5) brightness(1.35);
          filter: grayscale(1) contrast(0.5) brightness(1.35);
}

.location__address-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.location__address {
  font-style: normal;
}

.location__map-link {
  font-size: 1.0625rem;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: underline;
}
@media screen and (max-width: 576px) {
  .location__map-link {
    font-size: 0.8125rem;
    padding-left: 16px;
  }
}

.location__body a {
  text-decoration: underline;
}

/* faq
--------------------------------------*/
.faq .c_heading-lv1 {
  margin-bottom: 41px;
}
@media screen and (max-width: 576px) {
  .faq .c_heading-lv1 {
    margin-bottom: 18px;
  }
}
.faq .c_heading-lv1 img {
  height: 75px;
}
@media screen and (max-width: 576px) {
  .faq .c_heading-lv1 img {
    height: 41px;
  }
}
.faq .b_aco-main {
  margin-bottom: 34px;
}
@media screen and (max-width: 576px) {
  .faq .b_aco-main {
    margin-bottom: 21px;
  }
}

.faq__cat {
  font-size: 1.5rem;
  font-family: "Instrument Sans", sans-serif;
}
@media screen and (max-width: 576px) {
  .faq__cat {
    font-size: 1rem;
  }
}

/*======================================
	About
======================================*/
/* fv
--------------------------------------*/
.about-fv {
  width: 100%;
  padding-top: 18.3016105417vw;
}
@media screen and (max-width: 768px) {
  .about-fv {
    padding-top: 200px;
  }
}
@media screen and (max-width: 576px) {
  .about-fv {
    padding-top: 154px;
  }
}

.about-fv__content {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 65px;
}
@media screen and (max-width: 768px) {
  .about-fv__content {
    max-width: 230px;
  }
}
@media screen and (max-width: 576px) {
  .about-fv__content {
    max-width: 174px;
  }
}

.about-fv__title-sub {
  max-width: 200px;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .about-fv__title-sub {
    max-width: 110px;
  }
}
@media screen and (max-width: 576px) {
  .about-fv__title-sub {
    max-width: 93px;
    margin: 7px auto 0;
  }
}

.about-fv__img {
  mix-blend-mode: multiply;
}

/* concept
--------------------------------------*/
.about-concept {
  padding-top: 40px;
}
.about-concept .c_heading-lv3 {
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 576px) {
  .about-concept .c_heading-lv3 {
    text-align: left;
    margin-bottom: 10px;
  }
}

.about-concept__body {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .about-concept__body {
    width: 100%;
  }
}
.about-concept__body:nth-of-type(1) {
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .about-concept__body:nth-of-type(1) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.about-concept__body:nth-of-type(2) {
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .about-concept__body:nth-of-type(2) {
    margin-left: 0;
  }
}

/* photos
--------------------------------------*/
.about-photos__inner > *:last-child {
  margin-bottom: 0;
}

.about-photos__item {
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .about-photos__item {
    aspect-ratio: 1/1;
    margin-bottom: 25px;
  }
  .about-photos__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* content
--------------------------------------*/
.about-content {
  text-align: center;
  padding-top: 50px;
}
@media screen and (max-width: 576px) {
  .about-content {
    text-align: left;
    padding: 30px 0;
  }
}
.about-content .c_heading-lv3 {
  margin-bottom: 28px;
}
@media screen and (max-width: 576px) {
  .about-content .c_heading-lv3 {
    margin-bottom: 10px;
  }
}

.about-content__body {
  max-width: 422px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .about-content__body {
    text-align: left;
  }
}

/* member
--------------------------------------*/
.about-member .c_heading-lv5 {
  margin-bottom: 14px;
}
@media screen and (max-width: 576px) {
  .about-member .c_heading-lv5 {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 576px) {
  .about-member .b_flex-col3 {
    font-size: 0.625rem;
  }
}

/*======================================
	Rooms
======================================*/
/* fv
--------------------------------------*/
.rooms-fv__left-content {
  width: 29.2825768668%;
}

.rooms-fv__right-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 12px;
}
@media screen and (max-width: 576px) {
  .rooms-fv__right-content {
    padding-left: 8px;
  }
}

.rooms-fv__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 14px;
}
@media screen and (max-width: 576px) {
  .rooms-fv__title-box {
    margin-bottom: 7px;
  }
}
.rooms-fv__title-box .rooms-fv__left-content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .rooms-fv__title-box .rooms-fv__left-content {
    max-width: 173px;
    width: 100%;
  }
}
.rooms-fv__title-box .rooms-fv__left-content .c_heading-lv1 {
  padding-left: 22px;
  margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
  .rooms-fv__title-box .rooms-fv__left-content .c_heading-lv1 {
    max-width: 124px;
    padding-left: 16px;
    margin-bottom: 2px;
  }
}
.rooms-fv__title-box .rooms-fv__left-content .c_text-sans--en {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .rooms-fv__title-box .rooms-fv__left-content .c_text-sans--en {
    padding-left: 36px;
  }
}
@media screen and (max-width: 576px) {
  .rooms-fv__title-box .rooms-fv__left-content .c_text-sans--en {
    font-size: 0.6875rem;
    padding-left: 16px;
  }
}
.rooms-fv__title-box .rooms-fv__right-content {
  padding-right: 26px;
}
.rooms-fv__title-box .rooms-fv__right-content .c_heading-lv3 {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .rooms-fv__title-box .rooms-fv__right-content .c_heading-lv3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 576px) {
  .rooms-fv__title-box .rooms-fv__right-content .c_heading-lv3 {
    font-size: 0.9375rem;
    margin-bottom: 0.2666666667em;
  }
}
@media screen and (max-width: 576px) {
  .rooms-fv__title-box .rooms-fv__right-content .rooms-fv__text {
    font-size: 0.6875rem;
    line-height: 1.2;
  }
}

.rooms-fv__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 1366/540;
  margin-bottom: 12px;
}
@media screen and (max-width: 576px) {
  .rooms-fv__img-box {
    aspect-ratio: 375/332;
    margin-bottom: 5px;
  }
  .rooms-fv__img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.rooms-fv__img-wrap:first-of-type img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rooms-fv__img-wrap:last-of-type {
  padding-right: 26px;
}
@media screen and (max-width: 576px) {
  .rooms-fv__img-wrap:last-of-type {
    padding-right: 16px;
  }
}
.rooms-fv__img-wrap:last-of-type img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rooms-fv__body {
  max-width: 900px;
  font-family: "Sawarabi Gothic", sans-serif;
  -webkit-transform: scaleY(0.9);
          transform: scaleY(0.9);
  padding: 0 26px 0 calc(29.2825768668% + 10px);
}
@media screen and (max-width: 576px) {
  .rooms-fv__body {
    max-width: 100%;
    padding: 0 16px;
  }
}

/* rooms type
--------------------------------------*/
.rooms-type {
  margin-top: 131px;
}
@media screen and (max-width: 576px) {
  .rooms-type {
    margin-top: 43px;
  }
}
.rooms-type__reverse .l_flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .rooms-type__reverse .l_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .rooms-type__reverse .c_heading-lv2 {
    margin-right: 0;
    margin-left: auto;
  }
}
.rooms-type__reverse .rooms-type__text-box {
  max-width: 454px;
  padding-right: 28px;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .rooms-type__reverse .rooms-type__text-box {
    max-width: 100%;
    padding-right: 0;
  }
}

.rooms-type__slider {
  width: 50%;
  max-height: 484px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .rooms-type__slider {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .rooms-type__slider {
    margin-bottom: 12px;
  }
}

.rooms-type__img-box {
  aspect-ratio: 658/484;
}
@media screen and (max-width: 576px) {
  .rooms-type__img-box {
    aspect-ratio: 1/1;
  }
}

.rooms-type__text-box {
  width: 50%;
  max-width: 629px;
  padding-left: 28px;
}
@media screen and (max-width: 768px) {
  .rooms-type__text-box {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.rooms-type__text-box > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  .rooms-type__text-box .b_list-dl {
    font-size: 0.6875rem;
  }
}

.rooms-type__body {
  max-width: 275px;
  margin-bottom: 3.5384615385em;
}
@media screen and (max-width: 768px) {
  .rooms-type__body {
    max-width: 100%;
    margin-bottom: 2.4615384615em;
  }
}

/* deco photo
--------------------------------------*/
.l_container:has(.rooms-deco) {
  padding-right: 0;
}

.rooms-deco {
  max-width: 560px;
  margin: 14px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .rooms-deco {
    max-width: 100%;
    width: 74.4680851064vw;
    margin: 54px 0 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .rooms-deco {
    margin: 27px 0 0 auto;
  }
}

/* home amenity
--------------------------------------*/
.rooms-amenity {
  padding-top: 38px;
}
@media screen and (max-width: 576px) {
  .rooms-amenity .c_heading-lv2 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .rooms-amenity .b_flex-col3 .item {
    margin: 7px 0 20px;
  }
}

.rooms-amenity__list-title {
  font-size: 1.4375rem;
  font-family: "Instrument Sans", sans-serif;
  margin-bottom: 0.347826087em;
}
@media screen and (max-width: 576px) {
  .rooms-amenity__list-title {
    font-size: 0.9375rem;
  }
}

.rooms-amenity__list {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.rooms-amenity__list > * + * {
  margin-top: 13px;
}
@media screen and (max-width: 576px) {
  .rooms-amenity__list > * + * {
    margin-top: 10px;
  }
}
.rooms-amenity__list .list-item {
  line-height: 1.28;
}
@media screen and (max-width: 576px) {
  .rooms-amenity__list .list-item {
    font-size: 0.6875rem;
  }
}

/*======================================
	Sauna Garden
======================================*/
.page-sauna-garden {
  /* fv
  --------------------------------------*/
  /* deco
  --------------------------------------*/
  /* sauna
  --------------------------------------*/
  /* garden
  --------------------------------------*/
  /* sauna-garden
  --------------------------------------*/
}
.page-sauna-garden .sauna-garden-fv {
  padding-right: 26px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-fv {
    padding: 30.7692307692vh 26px 0;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-fv {
    padding: 24.6153846154vh 16px 0;
  }
}
.page-sauna-garden .sauna-garden-fv .c_heading-lv1 {
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-fv .c_heading-lv1 {
    margin-bottom: 2px;
  }
}
.page-sauna-garden .sauna-garden-fv .c_heading-lv1 img {
  height: 68px;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-fv .c_heading-lv1 img {
    height: 35px;
  }
}
.page-sauna-garden .sauna-garden-fv .c_heading-lv3 {
  font-size: 1.5rem;
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-fv .c_heading-lv3 {
    font-size: 0.9375rem;
    margin-top: 31px;
    margin-bottom: 0.4em;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-fv__concept-desc {
    font-size: 0.8125rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-fv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-sauna-garden .sauna-garden-fv__slider {
  width: 35.1390922401vw;
  height: 768px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-fv__slider {
    width: calc(100% + 26px);
    height: 100%;
    aspect-ratio: 720/768;
    margin-left: -26px;
  }
}
.page-sauna-garden .sauna-garden-fv__img-box {
  height: 100%;
}
.page-sauna-garden .sauna-garden-fv__text-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 10px;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-fv__text-box {
    text-align: center;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-fv__text-box .c_icon-arrow {
    display: none;
  }
}
.page-sauna-garden .sauna-garden-fv__title-sub {
  font-size: 1rem;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-fv__title-sub {
    font-size: 0.8125rem;
  }
}
.page-sauna-garden .sauna-garden-fv__body {
  max-width: 358px;
  margin: 1.0769230769em 0 3.9230769231em;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-fv__body {
    margin: 1.0769230769em 0 0;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-fv__body {
    margin: 2em 0 0;
  }
}
.page-sauna-garden .sauna-garden-deco {
  padding-top: 195px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-deco {
    padding-top: 125px;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-deco {
    padding-top: 80px;
  }
}
.page-sauna-garden .sauna-garden-deco .l_container {
  max-width: 1226px;
}
.page-sauna-garden .sauna-garden-deco__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-deco__inner {
    width: calc(100% + 26px);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: -26px;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-deco__inner {
    width: calc(100% + 16px);
    margin-right: -16px;
    margin-bottom: 16px;
  }
}
.page-sauna-garden .sauna-garden-deco__slider-wrap {
  width: calc(62.6% - 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 26px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-deco__slider-wrap {
    width: 100%;
    margin-right: 0;
  }
}
.page-sauna-garden .sauna-garden-deco__img-wrap {
  width: 50%;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-deco__img-wrap {
    width: 66%;
    margin-right: 12px;
  }
}
.page-sauna-garden .sauna-garden-deco__img-wrap:nth-of-type(2) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-deco__img-wrap:nth-of-type(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: calc(33% - 12px);
  }
  .page-sauna-garden .sauna-garden-deco__img-wrap:nth-of-type(2) .swiper {
    height: 100%;
  }
}
.page-sauna-garden .sauna-garden-deco__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 280px;
}
.page-sauna-garden .sauna-garden-deco__body::before, .page-sauna-garden .sauna-garden-deco__body::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.page-sauna-garden .sauna-garden-deco__body::before {
  margin-top: calc((1 - 1.7) * 0.5em);
}
.page-sauna-garden .sauna-garden-deco__body::after {
  margin-bottom: calc((1 - 1.7) * 0.5em);
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden-deco__body {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden-deco__body {
    max-width: 210px;
  }
}
.page-sauna-garden .sauna {
  margin-top: 118px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna {
    margin-top: 50px;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna {
    margin-top: 0;
  }
}
.page-sauna-garden .sauna__img-box {
  width: 73.5159817352%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 18px auto;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna__img-box {
    width: 80.5333333333%;
    margin: 0 -16px 30px auto;
  }
}
.page-sauna-garden .sauna__img-wrap {
  margin-left: 2.9282576867vw;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna__img-wrap {
    margin-left: 12px;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna__img-wrap {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna__img-wrap:nth-of-type(2) {
    width: 25%;
    aspect-ratio: 60/420;
  }
  .page-sauna-garden .sauna__img-wrap:nth-of-type(2) img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna__img-wrap:nth-of-type(2) {
    width: 40%;
    margin-left: 12px;
  }
}
.page-sauna-garden .sauna__title-box {
  width: 29.5281582953%;
  padding-left: 105px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna__title-box {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.page-sauna-garden .sauna__title-box .c_heading-lv3 {
  max-width: 186px;
  margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna__title-box .c_heading-lv3 {
    max-width: 134px;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna__desc {
    font-size: 0.6875rem;
  }
}
.page-sauna-garden .sauna__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 36.7579908676%;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna__body {
    max-width: 260px;
  }
}
.page-sauna-garden .garden {
  text-align: center;
  margin-top: clamp(0px, 16.8374816984vw, 230px);
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .garden {
    margin-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .garden {
    padding-top: 0;
  }
}
.page-sauna-garden .garden__title-wrap {
  color: #BD643F;
  -webkit-transform: translateY(34px);
          transform: translateY(34px);
  mix-blend-mode: difference;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .garden__title-wrap {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.page-sauna-garden .garden__title-wrap .c_heading-lv3 {
  max-width: 283px;
  margin: 0 auto 12px;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .garden__title-wrap .c_heading-lv3 {
    max-width: 210px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .garden__title-wrap .c_text-sans--en {
    font-size: 0.6875rem;
  }
}
.page-sauna-garden .garden__img-wrap {
  margin-bottom: 26px;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .garden__img-wrap {
    aspect-ratio: 1/1;
    margin: 0 20px 26px;
  }
  .page-sauna-garden .garden__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page-sauna-garden .garden__body {
  max-width: 283px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .garden__body {
    max-width: 194px;
  }
}
.page-sauna-garden .sauna-garden {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden {
    margin-top: 0;
  }
}
.page-sauna-garden .sauna-garden .c_heading-lv3 {
  font-size: 48px;
  font-style: italic;
  margin: 85px 0 20px;
}
@media screen and (max-width: 768px) {
  .page-sauna-garden .sauna-garden .c_heading-lv3 {
    margin: 65px 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden .c_heading-lv3 {
    font-size: 29px;
  }
}
.page-sauna-garden .sauna-garden__img-wrap {
  margin-bottom: 6px;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden__img-wrap {
    aspect-ratio: 1/1;
    margin-bottom: 16px;
  }
  .page-sauna-garden .sauna-garden__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page-sauna-garden .sauna-garden__body {
  margin-top: 32px;
}
@media screen and (max-width: 576px) {
  .page-sauna-garden .sauna-garden__body {
    margin-top: 12px;
  }
}

/*======================================
	FAQ
======================================*/
.page-faq {
  padding-top: 305px;
}
@media screen and (max-width: 768px) {
  .page-faq {
    padding-top: 30.7692307692vh;
  }
}
@media screen and (max-width: 576px) {
  .page-faq {
    padding-top: 24.6153846154vh;
  }
}
@media screen and (max-width: 576px) {
  .page-faq .c_heading-lv1 {
    text-align: center;
    margin-bottom: 42px;
  }
}
.page-faq .b_aco-main {
  margin-bottom: 76px;
}
@media screen and (max-width: 576px) {
  .page-faq .b_aco-main {
    margin-bottom: 28px;
  }
}

.faq__body {
  border-bottom: 1px solid #b27966;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-top: 80px;
}
@media screen and (max-width: 576px) {
  .faq__body {
    padding-top: 34px;
  }
}
.faq__body:first-of-type {
  padding-top: 0;
}
.faq__body:last-of-type {
  border-bottom: none;
}

/*======================================
	Transaction
======================================*/
.transaction {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .transaction {
    padding-bottom: 45px;
  }
}
.transaction .c_heading-lv1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .transaction .c_heading-lv1 {
    text-align: center;
    margin-bottom: 30px;
  }
}
.transaction .c_heading-lv1 img {
  height: 75px;
}
@media screen and (max-width: 768px) {
  .transaction .c_heading-lv1 img {
    height: 38px;
  }
}
.transaction table {
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .transaction table {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .transaction tr {
    border-bottom: 1px solid #b27966;
  }
}
.transaction td {
  border: none;
  border-bottom: 1px solid #b27966;
  vertical-align: middle;
  padding: 2.8em 0;
}
@media screen and (max-width: 768px) {
  .transaction td {
    border-bottom: none;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .transaction td {
    width: 100%;
    display: block;
  }
}
.transaction td:first-child {
  min-width: 216px;
}
@media screen and (max-width: 768px) {
  .transaction td:first-child {
    min-width: auto;
    padding: 1.6em 0 0.8em;
  }
}
.transaction td:last-child {
  padding-left: 2.1428571429em;
}
@media screen and (max-width: 768px) {
  .transaction td:last-child {
    padding-bottom: 1.5em;
    padding-left: 0;
  }
}

/*======================================
	Helper
======================================*/
.hp_fsz11rem {
  font-size: 0.6875rem;
}

.hp_fsz12rem {
  font-size: 0.75rem;
}/*# sourceMappingURL=main.css.map */