@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Serif JP", serif;
  background: #0D0D0D;
  color: #b3af9b;
  font-feature-settings: "palt"; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s; }
  a:hover {
    opacity: 0.6; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1240px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 20px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

.footer {
  padding: 54px 60px 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding: 27px 20px 60px;
      flex-direction: column; } }
  .footer__left {
    width: 290px; }
    @media only screen and (max-width: 767px) {
      .footer__left {
        width: 100%; } }
    .footer__left address {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.6; }
      @media only screen and (max-width: 767px) {
        .footer__left address {
          font-size: 14px;
          font-size: 1.4rem; } }
      .footer__left address p {
        margin-bottom: 18px; }
  .footer__logo {
    display: block;
    width: 250px;
    margin-bottom: 44px; }
    @media only screen and (max-width: 767px) {
      .footer__logo {
        width: 200px; } }
  .footer__right {
    width: calc(100% - 290px); }
    @media only screen and (max-width: 767px) {
      .footer__right {
        width: 100%; } }
    .footer__right .gnav__list ul:last-of-type {
      width: auto; }
    .footer__right .btn-contact {
      width: 110px;
      height: 30px;
      border-radius: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #b3af9b;
      font-size: 18px;
      font-size: 1.8rem;
      transform: scale(0.95, 1);
      transform-origin: left;
      font-family: "ivymode", sans-serif;
      font-weight: 200;
      margin-left: auto;
      transition: color .3s, background-color .3s;
      margin-top: 80px;
      margin-bottom: 64px; }
      @media only screen and (max-width: 767px) {
        .footer__right .btn-contact {
          margin-top: 40px;
          margin-left: 0; } }
      .footer__right .btn-contact:hover {
        background: #b3af9b;
        color: #1a1815;
        opacity: 1; }
    .footer__right .other {
      width: 350px;
      margin-left: auto;
      display: block; }
      @media only screen and (max-width: 767px) {
        .footer__right .other {
          width: 70%;
          margin-right: auto;
          margin-left: 0; } }
      .footer__right .other strong {
        display: block;
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          .footer__right .other strong {
            font-size: 16px;
            font-size: 1.6rem; } }
      .footer__right .other .c-view-more {
        margin: 16px 0 0 auto; }
        @media only screen and (max-width: 767px) {
          .footer__right .other .c-view-more {
            margin-top: 12px; } }
        @media only screen and (max-width: 767px) {
          .footer__right .other .c-view-more span {
            font-size: 16px;
            font-size: 1.6rem; } }
  .footer__bottom {
    width: 100%;
    padding-top: 44px;
    font-size: 14px;
    font-size: 1.4rem;
    transform: scale(0.95, 1);
    transform-origin: left;
    font-family: "ivymode", sans-serif;
    font-weight: 200; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        font-size: 12px;
        font-size: 1.2rem;
        text-align: left;
        transform-origin: center;
        padding-top: 60px; } }

.header {
  position: fixed;
  width: 100%;
  padding: 38px 64px 38px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 99; }
  @media only screen and (max-width: 767px) {
    .header {
      padding: 27px 20px; } }
  .header.show {
    opacity: 1;
    visibility: visible; }
  .header.is-active {
    opacity: 1;
    visibility: visible; }
  .header__logo {
    display: block;
    width: 38px;
    position: relative;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 30px; } }
  .header .gnav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    padding: 50px;
    padding-top: 110px;
    background: rgba(26, 24, 21, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s; }
    @media only screen and (max-width: 767px) {
      .header .gnav {
        height: 100vh;
        right: 0;
        bottom: 0; } }
    .header .gnav.is-active {
      opacity: 1;
      visibility: visible; }
  .header .hamburger {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    position: relative;
    margin-right: -15px; }
    .header .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
      transform: rotate(15deg);
      top: 4px; }
      @media only screen and (max-width: 767px) {
        .header .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
          top: 3px; } }
    .header .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
      width: 59px;
      transform: rotate(-15deg);
      bottom: 4px; }
      @media only screen and (max-width: 767px) {
        .header .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
          width: 40px;
          top: 3px; } }
    .header .hamburger__title {
      font-size: 16px;
      font-size: 1.6rem;
      font-family: "nimbus-sans", sans-serif;
      display: inline-block;
      margin-right: 9px; }
    .header .hamburger__inner {
      width: 59px;
      height: 10px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .header .hamburger__inner {
          width: 40px;
          height: 8px; } }
      .header .hamburger__inner span {
        height: 2px;
        display: block;
        background: #b3af9b;
        position: absolute;
        left: 0;
        transition: width .3s, transform .3s, top .3s, bottom .3s; }
        @media only screen and (max-width: 767px) {
          .header .hamburger__inner span {
            height: 1px; } }
        .header .hamburger__inner span:nth-of-type(1) {
          top: 0;
          width: 59px; }
          @media only screen and (max-width: 767px) {
            .header .hamburger__inner span:nth-of-type(1) {
              width: 40px; } }
        .header .hamburger__inner span:nth-of-type(2) {
          bottom: 0;
          width: 36px; }
          @media only screen and (max-width: 767px) {
            .header .hamburger__inner span:nth-of-type(2) {
              width: 25px; } }

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 54px 50px 50px 64px;
  display: flex;
  justify-content: space-between;
  z-index: 99; }
  @media only screen and (max-width: 767px) {
    .header-top {
      padding: 27px 20px; } }
  .header-top__logo {
    display: block;
    width: 200px; }
    @media only screen and (max-width: 767px) {
      .header-top__logo {
        width: 160px; } }
  @media only screen and (max-width: 767px) {
    .header-top .gnav {
      display: none; } }

.gnav {
  display: flex;
  justify-content: flex-end; }
  @media only screen and (max-width: 767px) {
    .gnav {
      flex-direction: column;
      justify-content: center; } }
  .gnav__title {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "nimbus-sans", sans-serif;
    margin-right: 120px; }
    @media only screen and (max-width: 767px) {
      .gnav__title {
        margin: 0 0 40px; } }
  .gnav__list {
    display: flex;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .gnav__list {
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-bottom: 40px; } }
    .gnav__list ul {
      width: 146px; }
      @media only screen and (max-width: 767px) {
        .gnav__list ul {
          width: 50%; } }
      .gnav__list ul li {
        font-size: 16px;
        font-size: 1.6rem;
        font-family: "nimbus-sans", sans-serif;
        margin-bottom: 13px; }
        @media only screen and (max-width: 767px) {
          .gnav__list ul li {
            font-size: 22px;
            font-size: 2.2rem;
            margin-bottom: 18px; } }
        .gnav__list ul li:last-of-type {
          margin-bottom: 0; }
          @media only screen and (max-width: 767px) {
            .gnav__list ul li:last-of-type {
              margin-bottom: 18px; } }
        .gnav__list ul li a {
          padding-left: 13px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            .gnav__list ul li a {
              padding-left: 0; } }
          .gnav__list ul li a:hover {
            opacity: 1; }
            .gnav__list ul li a:hover:before {
              opacity: 1; }
          .gnav__list ul li a:before {
            content: "";
            width: 5px;
            height: 5px;
            display: block;
            border-radius: 50%;
            background: #b3af9b;
            position: absolute;
            position: absolute;
            top: 50%;
            left: 0%;
            transform: translate(0%, -50%);
            transition: opacity .3s;
            opacity: 0; }
  .gnav__link__reservation {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 200;
    font-family: "ivymode", sans-serif;
    display: inline-block;
    margin-bottom: 24px;
    font-feature-settings: "palt"; }
  .gnav__link__language {
    width: 128px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #b3af9b;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "nimbus-sans", sans-serif;
    margin-left: auto;
    transition: color .3s, background-color .3s; }
    @media only screen and (max-width: 767px) {
      .gnav__link__language {
        width: 200px;
        height: 42px;
        font-size: 18px;
        font-size: 1.8rem;
        margin: 0 auto; } }
    .gnav__link__language:hover {
      background: #b3af9b;
      color: #1a1815;
      opacity: 1; }

.c-sub-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  transform: scale(0.95, 1);
  display: block;
  transform-origin: left;
  font-family: "nimbus-sans", sans-serif;
  width: 105.26315789%; }

.c-title01 .jp {
  font-size: 63px;
  font-size: 6.3rem;
  letter-spacing: 0.01em;
  line-height: 1.24;
  transform: scale(0.85, 1);
  display: block;
  transform-origin: left;
  width: 117.647059%; }
  @media only screen and (max-width: 767px) {
    .c-title01 .jp {
      font-size: 40px;
      font-size: 4rem; } }

.c-title01 .en {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.15254237;
  transform: scale(0.95, 1);
  font-weight: 200;
  font-family: "ivymode", sans-serif;
  display: block;
  transform-origin: left;
  margin-top: 15px;
  width: 105.26315789%; }
  @media only screen and (max-width: 767px) {
    .c-title01 .en {
      font-size: 20px;
      font-size: 2rem; } }

.c-title02 {
  font-size: 52px;
  font-size: 5.2rem;
  line-height: 1.2;
  font-weight: 200;
  font-family: "ivymode", sans-serif;
  display: block; }
  @media only screen and (max-width: 767px) {
    .c-title02 {
      font-size: 40px;
      font-size: 4rem; } }

.c-title03 {
  font-size: 68px;
  font-size: 6.8rem;
  line-height: 1.15254237;
  transform: scale(0.95, 1);
  font-weight: 200;
  font-family: "ivymode", sans-serif;
  display: block;
  transform-origin: left; }
  @media only screen and (max-width: 767px) {
    .c-title03 {
      font-size: 44px;
      font-size: 4.4rem; } }

.c-text01 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75; }
  @media only screen and (max-width: 767px) {
    .c-text01 {
      font-size: 14px;
      font-size: 1.4rem; } }

.c-text-jp {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77777778; }
  @media only screen and (max-width: 767px) {
    .c-text-jp {
      font-size: 16px;
      font-size: 1.6rem; } }

.c-text-en {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71428571; }
  @media only screen and (max-width: 767px) {
    .c-text-en {
      font-size: 13px;
      font-size: 1.3rem; } }

.c-view-more {
  display: flex;
  align-items: center;
  width: max-content;
  cursor: pointer; }
  .c-view-more:after {
    content: "";
    width: 40px;
    height: 15px;
    display: inline-block;
    background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
    position: relative;
    top: 1px; }
  .c-view-more span {
    font-size: 22px;
    font-size: 2.2rem;
    transform: scale(0.95, 1);
    font-family: "ivymode", sans-serif;
    font-weight: 200;
    margin-right: 12px;
    transform-origin: left; }

.c-reservation {
  width: 282px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #b3af9b;
  color: #b3af9b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 200;
  font-family: "ivymode", sans-serif;
  transition: color .3s, background-color .3s; }
  .c-reservation:hover {
    opacity: 1;
    background: #b3af9b;
    color: #1a1815; }

.c-text-text {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .c-text-text {
      flex-direction: column; } }
  .c-text-text .text.left {
    width: 50%; }
    @media only screen and (max-width: 767px) {
      .c-text-text .text.left {
        width: 100%; } }
    .c-text-text .text.left .c-sub-title {
      margin-bottom: 62px; }
      @media only screen and (max-width: 767px) {
        .c-text-text .text.left .c-sub-title {
          margin-bottom: 30px; } }
    .c-text-text .text.left .c-view-more {
      margin-top: 108px; }
      @media only screen and (max-width: 767px) {
        .c-text-text .text.left .c-view-more {
          margin-top: 60px; } }
  .c-text-text .text.right {
    width: 50%;
    padding-top: 84px; }
    @media only screen and (max-width: 767px) {
      .c-text-text .text.right {
        width: 100%;
        padding-top: 60px; } }
    .c-text-text .text.right .c-text-jp {
      margin-bottom: 36px; }
      @media only screen and (max-width: 767px) {
        .c-text-text .text.right .c-text-jp {
          margin-bottom: 28px; } }
    @media only screen and (max-width: 767px) {
      .c-text-text .text.right .c-view-more {
        margin-top: 60px; } }

.c-text-image {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .c-text-image {
      flex-direction: column; } }
  .c-text-image .text {
    width: 50%; }
    @media only screen and (max-width: 767px) {
      .c-text-image .text {
        width: 100%; } }
    .c-text-image .text .c-sub-title {
      margin-bottom: 30px; }
    .c-text-image .text .c-title02 {
      margin-bottom: 24px; }
    .c-text-image .text .c-view-more {
      margin-top: 80px; }
      @media only screen and (max-width: 767px) {
        .c-text-image .text .c-view-more {
          margin-top: 60px; } }
    .c-text-image .text .c-reservation {
      margin-top: 102px; }
      @media only screen and (max-width: 767px) {
        .c-text-image .text .c-reservation {
          margin: 50px auto 0; } }
    @media only screen and (max-width: 767px) {
      .c-text-image .text .image {
        margin-bottom: 30px; } }
  .c-text-image .image {
    width: 55.51724138%;
    margin-right: -140px;
    padding-top: 58px; }
    @media only screen and (max-width: 1440px) {
      .c-text-image .image {
        margin-right: calc(-50vw + 580px);
        width: 44.72222222vw; } }
    @media only screen and (max-width: 1240px) {
      .c-text-image .image {
        margin-right: -40px; } }
    @media only screen and (max-width: 767px) {
      .c-text-image .image {
        width: 100%;
        margin-right: 0;
        padding-top: 0; } }

.c-main-visual {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .c-main-visual {
      height: 60vh; } }
  .c-main-visual__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    .c-main-visual__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  .c-main-visual__text {
    font-size: 46px;
    font-size: 4.6rem;
    transform: scale(0.95, 1);
    font-weight: 200;
    font-family: "ivymode", sans-serif; }
    @media only screen and (max-width: 767px) {
      .c-main-visual__text {
        font-size: 32px;
        font-size: 3.2rem; } }

.c-information-list li {
  margin-bottom: 30px; }
  @media only screen and (max-width: 767px) {
    .c-information-list li {
      margin-bottom: 24px; } }
  .c-information-list li:nth-of-type(n + 6) {
    display: none; }
  .c-information-list li:last-of-type {
    margin-bottom: 0; }
  .c-information-list li a {
    display: flex;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5; }
    @media only screen and (max-width: 767px) {
      .c-information-list li a {
        font-size: 14px;
        font-size: 1.4rem;
        flex-direction: column; } }
    .c-information-list li a .date {
      width: 128px; }
    .c-information-list li a .title {
      width: calc(100% - 128px); }
      @media only screen and (max-width: 767px) {
        .c-information-list li a .title {
          width: 100%;
          margin-top: 5px; } }

.c-detail tr th {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5px 0;
  padding-right: 16px; }

.c-detail tr td {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5px 0; }

.c-vacant-link {
  display: flex;
  align-items: center; }
  .c-vacant-link:before {
    content: "";
    width: 30px;
    height: 26px;
    display: inline-block;
    background: url(../images/common/icon_vacant.svg) center center/cover no-repeat; }
  .c-vacant-link span {
    font-size: 20px;
    font-size: 2rem;
    display: inline-block;
    margin-left: 10px; }

.c-imageSlider .swiper-slide img {
  width: 100%;
  display: block; }

.c-imageSlider__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 18px;
  margin-right: 45px; }
  @media only screen and (max-width: 767px) {
    .c-imageSlider__nav {
      margin-right: 0;
      margin-top: 18px; } }
  .c-imageSlider__nav .swiper-button-next.swiper-button-disabled, .c-imageSlider__nav .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    transition: opacity .3s; }
  .c-imageSlider__nav .swiper-button-prev, .c-imageSlider__nav .swiper-button-next {
    position: static;
    width: 20px;
    height: 15px;
    padding: 0;
    margin: 0; }
    .c-imageSlider__nav .swiper-button-prev:after, .c-imageSlider__nav .swiper-button-next:after {
      content: "";
      width: 20px;
      height: 15px;
      display: inline-block;
      background: url(../images/common/arrow_right_01.svg) center center/cover no-repeat; }
  .c-imageSlider__nav .swiper-button-prev:after {
    transform: rotate(180deg); }
  .c-imageSlider__nav .swiper-pagination-fraction {
    width: 40px;
    margin: 0 18px; }
  .c-imageSlider__nav .swiper-pagination {
    font-size: 18px;
    font-size: 1.8rem;
    transform: scale(0.95, 1);
    font-weight: 200;
    font-family: "ivymode", sans-serif;
    display: block;
    transform-origin: left;
    position: static; }

.lg-toolbar {
  display: none; }

.lg-backdrop {
  background: rgba(0, 0, 0, 0.5); }

.lg-object.lg-image {
  max-height: 90%;
  max-width: 80%; }

.lg-prev, .lg-next {
  padding: 0;
  width: 50px;
  height: 50px;
  background: none;
  margin-top: -25px; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

body.concept .whole {
  padding: 110px 0; }
  @media only screen and (max-width: 767px) {
    body.concept .whole {
      padding: 70px 0; } }
  body.concept .whole .c-sub-title {
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      body.concept .whole .c-sub-title {
        margin-bottom: 30px; } }
  body.concept .whole .c-title01 {
    margin-bottom: 48px; }
  body.concept .whole .box {
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.concept .whole .box {
        margin-bottom: 68px; } }
    body.concept .whole .box .image {
      margin-bottom: 34px; }
      @media only screen and (max-width: 767px) {
        body.concept .whole .box .image {
          margin-bottom: 30px; } }

body.faq .c-main-visual {
  height: 300px;
  align-items: flex-end; }
  @media only screen and (max-width: 767px) {
    body.faq .c-main-visual {
      height: 170px; } }

body.faq .whole {
  padding: 110px 0; }
  @media only screen and (max-width: 767px) {
    body.faq .whole {
      padding: 70px 0; } }
  body.faq .whole .faq__list dl dt {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 34px 40px;
    position: relative;
    cursor: pointer; }
    @media only screen and (max-width: 767px) {
      body.faq .whole .faq__list dl dt {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 20px 30px;
        padding-right: 0; } }
    body.faq .whole .faq__list dl dt.active:before {
      transform: translate(0%, -50%) rotate(45deg); }
    body.faq .whole .faq__list dl dt.active:after {
      transform: translate(0%, -50%) rotate(45deg); }
    body.faq .whole .faq__list dl dt:before {
      content: "";
      width: 22px;
      height: 1px;
      display: block;
      background: #b3af9b;
      position: absolute;
      top: 50%;
      left: 0%;
      transform: translate(0%, -50%);
      transition: transform .3s; }
      @media only screen and (max-width: 767px) {
        body.faq .whole .faq__list dl dt:before {
          width: 16px; } }
    body.faq .whole .faq__list dl dt:after {
      content: "";
      width: 1px;
      height: 22px;
      display: block;
      background: #b3af9b;
      position: absolute;
      top: 50%;
      left: 11px;
      transform: translate(0%, -50%);
      transition: transform .3s; }
      @media only screen and (max-width: 767px) {
        body.faq .whole .faq__list dl dt:after {
          height: 16px;
          left: 8px; } }
  body.faq .whole .faq__list dl dd {
    background: #b3af9b;
    color: #232323;
    padding: 32px 56px;
    display: none; }
    @media only screen and (max-width: 767px) {
      body.faq .whole .faq__list dl dd {
        padding: 20px 24px; } }
    body.faq .whole .faq__list dl dd p {
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.5;
      letter-spacing: 0.05em;
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        body.faq .whole .faq__list dl dd p {
          font-size: 16px;
          font-size: 1.6rem;
          margin-bottom: 14px; } }
      body.faq .whole .faq__list dl dd p:last-of-type {
        margin-bottom: 0; }

body.information_detail .c-main-visual {
  height: 300px;
  align-items: flex-end; }
  @media only screen and (max-width: 767px) {
    body.information_detail .c-main-visual {
      height: 170px; } }

body.information_detail .whole {
  padding: 110px 0; }
  @media only screen and (max-width: 767px) {
    body.information_detail .whole {
      padding: 70px 0; } }
  body.information_detail .whole .c-sub-title {
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      body.information_detail .whole .c-sub-title {
        margin-bottom: 30px; } }
  body.information_detail .whole .date {
    font-size: 20px;
    font-size: 2rem;
    display: block;
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      body.information_detail .whole .date {
        font-size: 18px;
        font-size: 1.8rem; } }
  body.information_detail .whole .c-title01 {
    margin-bottom: 48px; }
  body.information_detail .whole .box {
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.information_detail .whole .box {
        margin-bottom: 68px; } }
    body.information_detail .whole .box img {
      display: block;
      width: 100%;
      margin-bottom: 34px; }
      @media only screen and (max-width: 767px) {
        body.information_detail .whole .box img {
          margin-bottom: 30px; } }
    body.information_detail .whole .box p {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.77777778;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.information_detail .whole .box p {
          font-size: 16px;
          font-size: 1.6rem; } }

body.rooms .rooms {
  padding: 184px 0 108px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.rooms .rooms {
      padding: 70px 0 40px; } }

body.rooms .info {
  padding: 132px 0 146px; }
  @media only screen and (max-width: 767px) {
    body.rooms .info {
      padding: 60px 0; } }
  body.rooms .info .col3 {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.rooms .info .col3 {
        flex-direction: column; } }
  body.rooms .info__box {
    max-width: 30%; }
    @media only screen and (max-width: 767px) {
      body.rooms .info__box {
        max-width: 100%;
        margin-bottom: 60px; } }
    body.rooms .info__box h3 {
      margin-bottom: 22px; }
      @media only screen and (max-width: 767px) {
        body.rooms .info__box h3 {
          margin-bottom: 18px; } }
      body.rooms .info__box h3 .en {
        display: block;
        font-size: 44px;
        font-size: 4.4rem;
        line-height: 1.2;
        font-weight: 200;
        font-family: "ivymode", sans-serif; }
        @media only screen and (max-width: 767px) {
          body.rooms .info__box h3 .en {
            font-size: 30px;
            font-size: 3rem; } }
      body.rooms .info__box h3 .jp {
        display: block;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.4; }
        @media only screen and (max-width: 767px) {
          body.rooms .info__box h3 .jp {
            font-size: 14px;
            font-size: 1.4rem; } }
    body.rooms .info__box ul li {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.77777778;
      margin-bottom: 5px; }
      @media only screen and (max-width: 767px) {
        body.rooms .info__box ul li {
          font-size: 14px;
          font-size: 1.4rem; } }
      body.rooms .info__box ul li small {
        font-size: 12px;
        font-size: 1.2rem;
        display: block;
        position: relative;
        margin-top: -2px; }
        @media only screen and (max-width: 767px) {
          body.rooms .info__box ul li small {
            font-size: 10px;
            font-size: 1rem; } }

body.rooms .c-text-image .text {
  width: 47.24137931%; }
  @media only screen and (max-width: 767px) {
    body.rooms .c-text-image .text {
      width: 100%; } }
  body.rooms .c-text-image .text .c-detail {
    margin: 50px 0 148px; }
    @media only screen and (max-width: 767px) {
      body.rooms .c-text-image .text .c-detail {
        margin: 40px 0; } }

body.rooms .c-text-image .image {
  width: 63.44827586%;
  margin-right: -12.5862069%; }
  @media only screen and (max-width: 767px) {
    body.rooms .c-text-image .image {
      width: 100%;
      margin-right: 0; } }

body.sauna .whole {
  padding: 110px 0 190px; }
  @media only screen and (max-width: 767px) {
    body.sauna .whole {
      padding: 70px 0 80px; } }
  body.sauna .whole .c-sub-title {
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      body.sauna .whole .c-sub-title {
        margin-bottom: 30px; } }
  body.sauna .whole .c-title01 {
    margin-bottom: 48px; }
    body.sauna .whole .c-title01 .jp.small {
      font-size: 36px;
      font-size: 3.6rem;
      letter-spacing: 0.01em;
      line-height: 1.5; }
      @media only screen and (max-width: 767px) {
        body.sauna .whole .c-title01 .jp.small {
          font-size: 28px;
          font-size: 2.8rem; } }
  body.sauna .whole .box {
    margin-bottom: 120px; }
    @media only screen and (max-width: 767px) {
      body.sauna .whole .box {
        margin-bottom: 80px; } }
    body.sauna .whole .box .c-imageSlider__nav {
      margin-top: 20px; }
    body.sauna .whole .box figure {
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        body.sauna .whole .box figure {
          margin-bottom: 44px; } }
      body.sauna .whole .box figure img {
        width: 100%; }
      body.sauna .whole .box figure figcaption {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.5;
        display: block;
        margin-top: 10px; }
        @media only screen and (max-width: 767px) {
          body.sauna .whole .box figure figcaption {
            font-size: 12px;
            font-size: 1.2rem; } }
    body.sauna .whole .box h3 {
      font-size: 36px;
      font-size: 3.6rem;
      letter-spacing: 0.01em;
      line-height: 1.5;
      margin-bottom: 30px;
      transform: scale(0.85, 1);
      display: block;
      transform-origin: left;
      width: 117.647059%; }
      @media only screen and (max-width: 767px) {
        body.sauna .whole .box h3 {
          font-size: 28px;
          font-size: 2.8rem;
          margin-bottom: 30px; } }
  body.sauna .whole .produce__list dl {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.sauna .whole .produce__list dl {
        flex-direction: column;
        margin-bottom: 48px; } }
    body.sauna .whole .produce__list dl:last-of-type {
      margin-bottom: 0; }
    body.sauna .whole .produce__list dl dt {
      width: 104px; }
      @media only screen and (max-width: 767px) {
        body.sauna .whole .produce__list dl dt {
          margin: 0 auto 24px;
          width: 160px; } }
    body.sauna .whole .produce__list dl dd {
      width: calc(100% - 144px); }
      @media only screen and (max-width: 767px) {
        body.sauna .whole .produce__list dl dd {
          width: 100%; } }
      body.sauna .whole .produce__list dl dd strong {
        transform: scale(0.85, 1);
        display: block;
        transform-origin: left;
        font-size: 32px;
        font-size: 3.2rem;
        letter-spacing: 0.01em;
        margin-bottom: 28px;
        width: 117.647059%; }
        @media only screen and (max-width: 767px) {
          body.sauna .whole .produce__list dl dd strong {
            font-size: 24px;
            font-size: 2.4rem;
            margin-bottom: 20px; } }
        body.sauna .whole .produce__list dl dd strong small {
          font-size: 24px;
          font-size: 2.4rem; }
          @media only screen and (max-width: 767px) {
            body.sauna .whole .produce__list dl dd strong small {
              font-size: 16px;
              font-size: 1.6rem; } }

body.top .intro {
  width: 100vw;
  height: 100vh;
  display: block;
  background: #000;
  color: #b3af9b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0; }
  body.top .intro__text {
    text-align: center;
    opacity: 0; }
    body.top .intro__text .jp {
      display: block;
      font-size: 30px;
      font-size: 3rem;
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        body.top .intro__text .jp {
          font-size: 24px;
          font-size: 2.4rem;
          margin-bottom: 12px; } }
    body.top .intro__text .en {
      display: block;
      font-size: 17px;
      font-size: 1.7rem;
      font-family: "ivymode", sans-serif;
      font-weight: 200;
      line-height: 1.5; }
      @media only screen and (max-width: 767px) {
        body.top .intro__text .en {
          font-size: 14px;
          font-size: 1.4rem; } }
      body.top .intro__text .en small {
        display: block;
        font-size: 16px;
        font-size: 1.6rem; }
        @media only screen and (max-width: 767px) {
          body.top .intro__text .en small {
            font-size: 13px;
            font-size: 1.3rem; } }

body.top .main-visual {
  min-height: 100vh;
  position: relative;
  padding-top: 180px;
  display: flex;
  align-items: center;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .main-visual {
      padding-top: 85px; } }
  body.top .main-visual__image {
    width: 100%;
    height: 43.63636364vw;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__image {
        height: calc(100vh - 85px); } }
    body.top .main-visual__image .slide-wrap {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide-wrap {
          padding-bottom: 85px; } }
    body.top .main-visual__image .slide {
      opacity: 0;
      overflow: hidden;
      transform: translate(100px, 0);
      transition: transform 1s cubic-bezier(0, 0.55, 0.45, 1); }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide {
          transform: translate(50px, 0); } }
      body.top .main-visual__image .slide.is-active {
        transform: translate(0%, 0); }
        body.top .main-visual__image .slide.is-active img {
          filter: blur(0);
          transform: scale(1.03); }
      body.top .main-visual__image .slide.center {
        transform: translate(0, 0); }
      body.top .main-visual__image .slide img {
        transform: scale(1.1);
        filter: blur(10px);
        display: block;
        transition: transform 0.8s, filter 0.8s;
        transform-origin: left; }
    body.top .main-visual__image .slide-01 {
      display: flex;
      justify-content: space-between;
      padding-top: 4.8951049%; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide-01 {
          flex-direction: column;
          justify-content: flex-start;
          padding-top: 6%; } }
      body.top .main-visual__image .slide-01 .slide-01-1 {
        width: 60.83916084%; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image .slide-01 .slide-01-1 {
            width: 80%; } }
      body.top .main-visual__image .slide-01 .slide-01-2 {
        width: 25.45454545%;
        margin-right: 3.07692308%; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image .slide-01 .slide-01-2 {
            width: 50%;
            margin-top: 10%;
            margin-right: 8%;
            margin-left: auto; } }
    body.top .main-visual__image .slide-02 {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide-02 {
          flex-direction: column;
          justify-content: center; } }
      body.top .main-visual__image .slide-02 .slide-02-1 {
        width: 26.28571429%;
        margin-left: 6.57142857%;
        margin-top: 22%; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image .slide-02 .slide-02-1 {
            order: 2;
            width: 50%;
            margin-top: 16%; } }
      body.top .main-visual__image .slide-02 .slide-02-2 {
        width: 45.71428571%;
        margin-right: 2.85714286%; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image .slide-02 .slide-02-2 {
            order: 1;
            width: 70%;
            margin-left: auto; } }
    body.top .main-visual__image .slide-03 {
      display: flex;
      justify-content: space-between;
      padding: 0 4.28571429%; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide-03 {
          flex-wrap: wrap;
          justify-content: center;
          align-items: flex-start; } }
      body.top .main-visual__image .slide-03 .slide-03-1 {
        width: 32%; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image .slide-03 .slide-03-1 {
            width: 50%;
            margin: 0 20%; } }
      body.top .main-visual__image .slide-03 .slide-03-2 {
        width: 32%; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image .slide-03 .slide-03-2 {
            width: 40%;
            margin: -16% 1% 0; } }
      body.top .main-visual__image .slide-03 .slide-03-3 {
        width: 32%; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image .slide-03 .slide-03-3 {
            width: 40%;
            margin: -16% 1% 0; } }
    body.top .main-visual__image .slide-04 > div {
      position: absolute; }
    body.top .main-visual__image .slide-04 .slide-04-1 {
      width: 33.14285714%;
      top: 12.65060241%;
      left: 0; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide-04 .slide-04-1 {
          width: 60%;
          top: 6%; } }
    body.top .main-visual__image .slide-04 .slide-04-2 {
      width: 33.14285714%;
      top: 27.71084337%;
      left: 41.14285714%; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide-04 .slide-04-2 {
          width: 60%;
          top: 40%; } }
    body.top .main-visual__image .slide-04 .slide-04-3 {
      width: 7.71428571%;
      top: 4.81927711%;
      right: 0; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide-04 .slide-04-3 {
          width: 20%;
          top: auto;
          bottom: 10%;
          right: auto;
          left: 0; } }
    body.top .main-visual__image .slide-05 {
      display: flex;
      justify-content: center; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image .slide-05 {
          align-items: center; } }
      body.top .main-visual__image .slide-05 .slide-05-1 {
        width: 30.28571429%; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image .slide-05 .slide-05-1 {
            width: 60%; } }
  body.top .main-visual__scroll {
    position: absolute;
    right: 30px;
    bottom: 22px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center; }
    body.top .main-visual__scroll i {
      width: 12px;
      display: inline-block;
      margin-right: 8px;
      position: relative;
      top: -2px; }
    body.top .main-visual__scroll span {
      font-size: 14px;
      font-size: 1.4rem;
      font-family: "nimbus-sans", sans-serif; }

body.top .concept {
  padding: 172px 0 140px; }
  @media only screen and (max-width: 767px) {
    body.top .concept {
      padding: 86px 0 50px; } }

body.top .rooms {
  padding: 172px 0 178px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .rooms {
      padding: 86px 0 40px; } }
  body.top .rooms .c-text-image .text {
    display: flex; }
    @media only screen and (max-width: 767px) {
      body.top .rooms .c-text-image .text {
        display: block; } }
    body.top .rooms .c-text-image .text .room-list {
      width: 242px;
      margin-left: 52px;
      margin-top: 54px; }
      @media only screen and (max-width: 767px) {
        body.top .rooms .c-text-image .text .room-list {
          width: 100%;
          margin: 60px 0 0;
          display: flex;
          justify-content: space-between; } }
      body.top .rooms .c-text-image .text .room-list li {
        border-bottom: 1px solid #b3af9b;
        margin-bottom: 30px; }
        @media only screen and (max-width: 767px) {
          body.top .rooms .c-text-image .text .room-list li {
            width: 48%; } }
        body.top .rooms .c-text-image .text .room-list li a {
          padding: 8px 2px 34px;
          display: flex;
          font-family: "ivymode", sans-serif;
          font-weight: 200; }
          @media only screen and (max-width: 767px) {
            body.top .rooms .c-text-image .text .room-list li a {
              padding-bottom: 28px; } }
          body.top .rooms .c-text-image .text .room-list li a small {
            font-size: 16px;
            font-size: 1.6rem;
            transform: scale(0.95, 1);
            display: block;
            transform-origin: left;
            position: relative; }
            body.top .rooms .c-text-image .text .room-list li a small:after {
              content: "";
              width: 1px;
              height: 40px;
              background: #b3af9b;
              display: inline-block;
              transform: rotate(45deg);
              position: absolute;
              top: -5px;
              left: 20px; }
          body.top .rooms .c-text-image .text .room-list li a span {
            font-size: 24px;
            font-size: 2.4rem;
            display: inline-block;
            margin-left: 16px;
            text-decoration: underline; }

body.top .cuisine {
  padding: 172px 0 132px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .cuisine {
      padding: 86px 0 66px; } }

body.top .sauna {
  padding: 166px 0 250px;
  overflow: hidden;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .sauna {
      padding: 83px 0 100px; } }
  body.top .sauna__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .sauna__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .sauna .inner {
    position: relative; }
  body.top .sauna .c-view-more {
    margin: 36px 0 48px; }
    @media only screen and (max-width: 767px) {
      body.top .sauna .c-view-more {
        margin-top: 56px; } }
  @media only screen and (max-width: 767px) {
    body.top .sauna .c-reservation {
      margin: 0 auto; } }
  body.top .sauna .c-sub-title {
    margin-bottom: 60px; }
    @media only screen and (max-width: 767px) {
      body.top .sauna .c-sub-title {
        margin-bottom: 30px; } }
  body.top .sauna .c-title03 {
    font-family: "Noto Serif JP", serif;
    transform: scale(0.85, 1);
    transform-origin: left; }
  body.top .sauna .col-01 {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.top .sauna .col-01 {
        flex-direction: column; } }
    body.top .sauna .col-01 .text.left {
      width: 55%; }
      @media only screen and (max-width: 767px) {
        body.top .sauna .col-01 .text.left {
          width: 100%;
          margin-bottom: 50px; } }
      body.top .sauna .col-01 .text.left .c-title02 {
        font-size: 72px;
        font-size: 7.2rem;
        line-height: 1.13342298; }
        @media only screen and (max-width: 767px) {
          body.top .sauna .col-01 .text.left .c-title02 {
            font-size: 48px;
            font-size: 4.8rem; } }
    body.top .sauna .col-01 .text.right {
      width: 38.26086957%;
      padding-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.top .sauna .col-01 .text.right {
          width: 100%; } }
      body.top .sauna .col-01 .text.right strong {
        font-size: 34px;
        font-size: 3.4rem;
        transform: scale(0.85, 1);
        display: block;
        transform-origin: left;
        margin-bottom: 24px; }
        @media only screen and (max-width: 767px) {
          body.top .sauna .col-01 .text.right strong {
            font-size: 28px;
            font-size: 2.8rem; } }
      body.top .sauna .col-01 .text.right .c-text-jp {
        margin-bottom: 34px; }
        @media only screen and (max-width: 767px) {
          body.top .sauna .col-01 .text.right .c-text-jp {
            margin-bottom: 20px; } }
  body.top .sauna .col-02 {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.top .sauna .col-02 {
        flex-direction: column; } }
    body.top .sauna .col-02 .text {
      width: 39.30434783%;
      padding-top: 8%;
      padding-bottom: 20%; }
      @media only screen and (max-width: 767px) {
        body.top .sauna .col-02 .text {
          width: 100%;
          order: 2; } }
      body.top .sauna .col-02 .text .c-text-jp {
        margin-bottom: 24px; }
    body.top .sauna .col-02 .keyword1 {
      width: 63.47826087%;
      margin-right: -12.17391304%;
      margin-top: 10px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .sauna .col-02 .keyword1 {
          width: 100%;
          margin: 0;
          order: 1;
          margin-top: 60px; } }
      body.top .sauna .col-02 .keyword1 .c-title03 {
        position: absolute;
        top: -40px;
        left: 32px; }
        @media only screen and (max-width: 767px) {
          body.top .sauna .col-02 .keyword1 .c-title03 {
            white-space: nowrap;
            top: -70px;
            left: 0; } }
      body.top .sauna .col-02 .keyword1 .image {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        @media only screen and (max-width: 767px) {
          body.top .sauna .col-02 .keyword1 .image {
            align-items: flex-start; } }
        body.top .sauna .col-02 .keyword1 .image > div:nth-of-type(1) {
          width: 48.76712329%; }
        body.top .sauna .col-02 .keyword1 .image > div:nth-of-type(2) {
          width: 45.20547945%; }
  body.top .sauna .keyword2 {
    width: 42.7826087%;
    margin-left: -5.2173913%;
    margin-top: -9%;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .sauna .keyword2 {
        width: 100%;
        margin: 0; } }
    body.top .sauna .keyword2 .c-title03 {
      position: absolute;
      top: -44px;
      right: 0;
      white-space: nowrap; }
      @media only screen and (max-width: 767px) {
        body.top .sauna .keyword2 .c-title03 {
          top: -34px;
          right: auto;
          left: 0; } }
    body.top .sauna .keyword2 .image {
      max-width: 370px; }
      @media only screen and (max-width: 767px) {
        body.top .sauna .keyword2 .image {
          max-width: 240px; } }
  body.top .sauna .keyword3 {
    width: 46.95652174%;
    margin-left: auto;
    margin-top: -7%; }
    @media only screen and (max-width: 767px) {
      body.top .sauna .keyword3 {
        width: 100%;
        margin-top: 30px; } }
    body.top .sauna .keyword3 .c-title03 {
      text-align: right; }
      @media only screen and (max-width: 767px) {
        body.top .sauna .keyword3 .c-title03 {
          text-align: left;
          margin-bottom: 16px; } }
    body.top .sauna .keyword3 .text {
      max-width: 436px; }

body.top .gallery {
  padding: 92px 0 152px; }
  @media only screen and (max-width: 767px) {
    body.top .gallery {
      padding: 46px 0 76px; } }
  body.top .gallery__image {
    margin-top: 16px;
    display: flex; }
    @media only screen and (max-width: 767px) {
      body.top .gallery__image {
        display: block; } }
    body.top .gallery__image .image {
      cursor: pointer;
      overflow: hidden; }
      body.top .gallery__image .image:hover img {
        transform: scale(1.1); }
      body.top .gallery__image .image img {
        transition: transform .3s; }
    body.top .gallery__image .left {
      width: 50%; }
      @media only screen and (max-width: 767px) {
        body.top .gallery__image .left {
          width: 100%; } }
      body.top .gallery__image .left .image {
        position: relative;
        padding-top: 105.61403509%; }
        body.top .gallery__image .left .image img {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          object-fit: cover;
          object-position: center; }
    body.top .gallery__image .right {
      width: 50%; }
      @media only screen and (max-width: 767px) {
        body.top .gallery__image .right {
          width: 100%; } }
    body.top .gallery__image .col1 .image {
      position: relative;
      padding-top: 48.42105263%; }
      body.top .gallery__image .col1 .image img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center; }
    body.top .gallery__image .col2 {
      display: flex; }
      body.top .gallery__image .col2 .image {
        width: 50%;
        position: relative;
        padding-top: 57.04225352%; }
        body.top .gallery__image .col2 .image img {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          object-fit: cover;
          object-position: center; }

body.top .overall-view {
  padding: 92px 0 168px; }
  @media only screen and (max-width: 767px) {
    body.top .overall-view {
      padding: 46px 0 84px; } }
  body.top .overall-view .col {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.top .overall-view .col {
        flex-direction: column; } }
    body.top .overall-view .col .image {
      width: 36.49122807%; }
      @media only screen and (max-width: 767px) {
        body.top .overall-view .col .image {
          width: 100%;
          margin-bottom: 30px; } }
    body.top .overall-view .col .text {
      width: 50%; }
      @media only screen and (max-width: 767px) {
        body.top .overall-view .col .text {
          width: 100%; } }
      body.top .overall-view .col .text .c-sub-title {
        margin-bottom: 50px; }
        @media only screen and (max-width: 767px) {
          body.top .overall-view .col .text .c-sub-title {
            margin-bottom: 30px; } }
      body.top .overall-view .col .text .c-text-jp {
        margin-bottom: 54px; }
        @media only screen and (max-width: 767px) {
          body.top .overall-view .col .text .c-text-jp {
            margin-bottom: 30px; } }

body.top .faq {
  padding: 92px 0 240px; }
  @media only screen and (max-width: 767px) {
    body.top .faq {
      padding: 46px 0 80px; } }
  body.top .faq__list {
    margin: 0 0 96px; }
    @media only screen and (max-width: 767px) {
      body.top .faq__list {
        margin: 0 0 60px; } }
    body.top .faq__list dl dt {
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.5;
      letter-spacing: 0.05em;
      padding: 34px 40px;
      position: relative;
      cursor: pointer; }
      @media only screen and (max-width: 767px) {
        body.top .faq__list dl dt {
          font-size: 16px;
          font-size: 1.6rem;
          padding: 20px 30px;
          padding-right: 0; } }
      body.top .faq__list dl dt.active:before {
        transform: translate(0%, -50%) rotate(45deg); }
      body.top .faq__list dl dt.active:after {
        transform: translate(0%, -50%) rotate(45deg); }
      body.top .faq__list dl dt:before {
        content: "";
        width: 22px;
        height: 1px;
        display: block;
        background: #b3af9b;
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translate(0%, -50%);
        transition: transform .3s; }
        @media only screen and (max-width: 767px) {
          body.top .faq__list dl dt:before {
            width: 16px; } }
      body.top .faq__list dl dt:after {
        content: "";
        width: 1px;
        height: 22px;
        display: block;
        background: #b3af9b;
        position: absolute;
        top: 50%;
        left: 11px;
        transform: translate(0%, -50%);
        transition: transform .3s; }
        @media only screen and (max-width: 767px) {
          body.top .faq__list dl dt:after {
            height: 16px;
            left: 8px; } }
    body.top .faq__list dl dd {
      background: #b3af9b;
      color: #232323;
      padding: 32px 56px;
      display: none; }
      @media only screen and (max-width: 767px) {
        body.top .faq__list dl dd {
          padding: 20px 24px; } }
      body.top .faq__list dl dd p {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.5;
        letter-spacing: 0.05em;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.top .faq__list dl dd p {
            font-size: 16px;
            font-size: 1.6rem;
            margin-bottom: 14px; } }
        body.top .faq__list dl dd p:last-of-type {
          margin-bottom: 0; }

body.top .information {
  padding: 92px 0 240px; }
  @media only screen and (max-width: 767px) {
    body.top .information {
      padding: 46px 0 80px; } }
  body.top .information .c-information-list {
    margin: 90px 0 96px; }
    @media only screen and (max-width: 767px) {
      body.top .information .c-information-list {
        margin: 30px 0 60px; } }

body.top .access {
  padding: 92px 0 220px; }
  @media only screen and (max-width: 767px) {
    body.top .access {
      padding: 46px 0 80px; } }
  body.top .access .c-sub-title {
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      body.top .access .c-sub-title {
        margin-bottom: 30px; } }
  body.top .access .col {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.top .access .col {
        flex-direction: column; } }
    body.top .access .col .text {
      padding-top: 16px;
      width: 40%; }
      @media only screen and (max-width: 767px) {
        body.top .access .col .text {
          width: 100%; } }
      body.top .access .col .text address {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        margin-top: 90px; }
        @media only screen and (max-width: 767px) {
          body.top .access .col .text address {
            margin-top: 50px;
            margin-bottom: 30px; } }
    body.top .access .col .image {
      width: 55.65217391%; }
      @media only screen and (max-width: 767px) {
        body.top .access .col .image {
          width: 100%; } }
      body.top .access .col .image .map {
        padding-top: 63.125%;
        position: relative; }
        body.top .access .col .image .map iframe {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          -webkit-filter: grayscale(100%);
          -moz-filter: grayscale(100%);
          -o-filter: grayscale(100%);
          -ms-filter: grayscale(100%);
          filter: grayscale(100%); }
      body.top .access .col .image a {
        text-decoration: underline;
        font-size: 22px;
        font-size: 2.2rem;
        transform: scale(0.95, 1);
        font-family: "ivymode", sans-serif;
        display: block;
        transform-origin: left;
        width: max-content;
        margin: 16px 0 0 auto; }
        @media only screen and (max-width: 767px) {
          body.top .access .col .image a {
            font-size: 18px;
            font-size: 1.8rem; } }
