@charset "UTF-8";
@import url("reset.css");
@import url("modaal.css");
@import url("variables.css");

body {
  background-color: var(--color_base__060);
  color: var(--color_base__040);
}

.splash {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 100010;
  background-color: var(--color_base__020);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: all 1s;
  .image {
    width: 24rem;
  }
  &.hide {
    opacity: 0;
    transition: all 1s;
    /* top: 1rem; */
  }
}
/* ---------------------------------
header-common
--------------------------------- */
.header-common {
  width: 100%;
  position: fixed;
  z-index: 1100;
  background-image: linear-gradient(#1a1a1a, transparent);
  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 2.4rem;
    .col-common {
      &.c__010 {
        width: 10rem;
        .col-spnav {
          display: none;
        }
      }
      &.c__020 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }
    }
    .nav-global {
      display: flex;
      align-items: center;
    }
    .list-nav {
      display: flex;
      /* margin-right: 4rem; */
      .list-item {
        margin-right: 4rem;
      }
    }
    .list-sns {
      display: flex;
      margin-right: 4rem;
      .list-item {
        width: 2.4rem;
      }
    }
  }
}

@media screen and (max-width: 1025px) {
  .header-common {
    width: 100%;
    min-height: 11rem;
    position: fixed;
    background-color: transparent;
    &.fix {
      .header-inner {
        .col-common {
          &.c__010 {
            .title {
              width: 6rem;
              transition: all 0.5s;
            }
          }
        }
      }
    }
    .header-inner {
      padding: 0;
      /* padding-top: 14rem; */
      .col-common {
        &.c__010 {
          width: 100%;
          margin: 0 auto;
          position: fixed;
          top: 0;
          left: 0;
          z-index: 1100;
          padding-top: 1.6rem;
          background-image: linear-gradient(#1a1a1a, transparent);
          .title {
            width: 8rem;
            margin: 0 auto;
            transition: all 0.5s;
          }
          .col-spnav {
            display: block;
          }
        }
        &.c__020 {
          display: block;
          pointer-events: none;
          padding: 2.4rem;
          position: fixed;
          width: 100vw;
          height: 100vh;
          z-index: 1000;
          background-color: var(--color_base__060);
          top: 0;
          left: 0;
          opacity: 0;
          transition: all 0.5s;
          &.nav_active {
            display: block;
            pointer-events: all;
            left: 0;
            opacity: 1;
            transition: all 0.5s;
          }
        }
      }
      .nav-global {
        display: flex;
        flex-wrap: wrap;
        align-items: left;
      }
      .list-nav {
        display: block;
        margin-right: 0;
        text-align: left;
        padding-top: 12rem;
        border-top: 1px solid var(--color_base__030);
        width: 100%;
        .list-item {
          margin-right: 0;
          border-bottom: 1px solid var(--color_base__030);
          a {
            display: block;
            padding: 1.6rem 0;
          }
        }
      }
      .list-lang {
        width: 40%;
        padding: 1.6rem 0;
        margin-right: 0;
      }
      .list-sns {
        display: block;
        margin-right: 0;
        width: 40%;
        padding: 1.6rem 0;
      }
      .btn-reserve {
        margin-top: 1.6rem;
        display: flex;
        justify-content: center;
        width: 100%;
      }
    }
  }
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 50px;
  right: 30px;
  width: 30px;
  height: 30px;
  transform: translate(0, 0);
  transition: all 0.5s;
  cursor: pointer;
  z-index: 11000;
}
.open .toggle_btn {
  /* left: 330px; */
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color_base__040);
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 5px;
  width: 30px;
  /* animation: equalizer01 7000ms infinite; */
}
.toggle_btn span:nth-child(2) {
  top: 15px;
  width: 30px;
  /* animation: equalizer02 5000ms infinite;
  animation-delay: 0.33s; */
}
.toggle_btn span:nth-child(3) {
  top: 25px;
  width: 20px;
  /* animation: equalizer02 5000ms infinite; */
}
.open .toggle_btn span {
  background-color: #fff;
  width: 30px;
}
.open .toggle_btn span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
  animation: unset;
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
  animation: unset;
}
.open .toggle_btn span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg);
  animation: unset;
}
@media screen and (max-width: 767px) {
  .open .toggle_btn {
    /* left: 260px; */
  }
}

/*============
@keyframes
=============*/
@keyframes equalizer01 {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}
@keyframes equalizer02 {
  0% {
    width: 30%;
  }
  10% {
    width: 20%;
  }
  20% {
    width: 40%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 20%;
  }
  50% {
    width: 30%;
  }
  60% {
    width: 20%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 40%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 30%;
  }
}

/*============
#mask
=============*/
#mask {
  display: none;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
  transition: all 0.5s;
}

/* ---------------------------------
footer-common
--------------------------------- */
.footer-common {
  .footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 8.8rem 2.4rem;
    .col-footer__010 {
      .logo {
        width: 16rem;
        margin-bottom: 2.4rem;
        position: relative;
        left: -4rem;
      }
      .lang {
        margin-bottom: 6.4rem;
      }
    }
    .col-footer__020 {
      display: flex;
      .col-item {
        &.c__010 {
          padding-right: 6.4rem;
        }
        &.c__020 {
          .title {
            margin-bottom: 2.4rem;
          }
          .address {
            margin-bottom: 2.4rem;
          }
          .information {
            margin-bottom: 2.4rem;
            padding-top: 4.8rem;
          }
        }
      }
    }
    .copyright_sp {
      display: none;
    }
  }
}

@media screen and (max-width: 1025px) {
  .footer-common {
    .footer-inner {
      display: block;
      padding: 8.8rem 2.4rem;
      .col-footer__010 {
        .logo {
          width: 16rem;
          margin: 0 auto;
          position: relative;
          left: 0;
        }
        .lang {
          margin-bottom: 6.4rem;
          text-align: center;
          display: flex;
          justify-content: center;
          padding-top: 2.4rem;
          .list-lang {
            margin-right: 0;
          }
        }
        .copyright {
          display: none;
        }
      }
      .col-footer__020 {
        display: flex;
        flex-wrap: wrap;
        .col-item {
          &.c__010 {
            width: 100%;
            padding-right: 0;
            margin-bottom: 2.4rem;
            .list-footernav {
              border-top: 1px solid var(--color_base__030);
              padding-top: 0;
              .list-item {
                margin-right: 0;
                border-bottom: 1px solid var(--color_base__030);
                padding: 1.6rem 0;
                margin-bottom: 0;
              }
            }
          }
          &.c__020 {
            .title {
              margin-bottom: 2.4rem;
            }
            .address {
              margin-bottom: 2.4rem;
            }
            .information {
              margin-bottom: 2.4rem;
              padding-top: 4.8rem;
            }
          }
        }
      }
      .copyright_sp {
        display: block;
        padding-top: 4.8rem;
        text-align: center;
      }
    }
  }
}

/* ---------------------------------
SECTION
--------------------------------- */
.section-hero {
  /* padding-top: 18rem; */
}
.section-common {
  width: 100%;
  &.section-comitment {
    /* padding: 2.4rem; */
    padding: 16rem 2.4rem 8.8rem 2.4rem;
    .section-inner {
    }
  }
  &.section-interior {
    padding: 2.4rem;
    .section-inner {
      background: url(../images/img_bg_0001.png) no-repeat 50% 0;
      background-size: cover;
      background-color: var(--color_base__030);
      min-height: 90vh;
      display: flex;
      align-items: center;
    }
  }
  &.section-owner {
    padding: 2.4rem;
    .section-inner {
      min-height: 90vh;
      display: flex;
      align-items: center;
    }
  }
  &.section-schedule {
    padding: 8.8rem 2.4rem;
    background-color: var(--color_base__010);
    color: var(--color_base__030);
    .section-inner {
      max-width: 108rem;
      margin: 0 auto;
    }
  }
  &.section-image {
    padding: 2.4rem;
  }
  &.section-access {
    padding: 8.8rem 2.4rem;
    .section-inner {
      max-width: 108rem;
      margin: 0 auto;
    }
  }
  &.section-reserve {
    background-color: var(--color_base__030);
    padding: 8.8rem;
  }
}

@media screen and (max-width: 1025px) {
  .section-hero {
    padding-top: 0;
  }
  .section-common {
    &.section-comitment {
      .section-inner {
      }
    }
    &.section-interior {
      .section-inner {
        padding: 8rem 2.4rem;
        /* padding: 2.4rem; */
        min-height: 80vh;
      }
    }
    &.section-owner {
      .section-inner {
        padding: 12rem 2.4rem;
        min-height: 0;
      }
    }
    &.section-schedule {
      .section-inner {
        padding: 12rem 2.4rem;
      }
    }
    &.section-access {
      .section-inner {
      }
    }
    &.section-reserve {
      padding: 2.4rem;
    }
  }
}

/* ---------------------------------
TITLE   
--------------------------------- */
.title-common {
  &.c__010 {
    margin-bottom: 3.6rem;
    .t1 {
      display: inline-block;
      font-size: var(--font_base__48);
      margin-right: 1.6rem;
    }
    .t2 {
      display: inline-block;
      font-size: var(--font_base__24);
    }
    .t3 {
      display: inline-block;
      font-size: var(--font_base__48);
      margin-right: 2.4rem;
      .e1 {
        font-size: var(--font_base__24);
        display: block;
      }
    }
    .t4 {
      display: inline-block;
      font-size: var(--font_base__48);
      .e1 {
        font-size: var(--font_base__24);
        display: block;
      }
    }
  }
  &.c__020 {
    font-size: var(--font_base__48);
    text-align: center;
    margin-bottom: 4.8rem;
  }
}

@media screen and (max-width: 1025px) {
  .title-common {
    &.c__010 {
      margin-bottom: 2.4rem;
      .t1 {
        font-size: var(--font_base__32);
        margin-right: 1.6rem;
      }
      .t2 {
        font-size: var(--font_base__12);
      }
      .t3 {
        font-size: var(--font_base__32);
        margin-right: 1.6rem;
      }
      .t4 {
        font-size: var(--font_base__32);
        margin-right: 1.6rem;
      }
    }
    &.c__020 {
      font-size: var(--font_base__32);
      text-align: center;
      margin-bottom: 4.8rem;
    }
  }
}

/* ---------------------------------
COL
--------------------------------- */
.col-1col {
  &.white {
    color: var(--color_base__010);
  }
  &.c__010 {
    display: flex;
    padding-left: 10vw;
    position: relative;
    padding-top: 3.2rem;
    min-height: 30.5vw;
    /* min-height: 4.16rem; */
    .img__010 {
      width: 14vw;
      align-self: flex-end;
    }
    .img__020 {
      width: 14vw;
    }
    .img__030 {
      max-width: 31vw;
      align-self: flex-end;
      /* min-height: 38rem; */
      padding-left: 4.2vw;
    }
    .img__040 {
      width: 18vw;
      padding-left: 2vw;
      align-self: flex-end;
    }
  }
  &.c__020 {
    max-width: 68rem;
    margin: 0 auto;
  }
}
.col-2col {
  display: flex;
  flex-wrap: wrap;

  &.c__010 {
    flex-wrap: nowrap;
    align-items: center;
    .col-item {
      width: 50%;
      padding-right: 6.4rem;
      &.image {
        position: relative;
        left: 2.4rem;
        padding-right: 0;
      }
    }
  }
  &.c__020 {
    flex-wrap: nowrap;
    .col-item {
      width: 68rem;
      .address {
        margin-bottom: 2.4rem;
      }
      .btn-map {
        margin-bottom: 2.4rem;
      }
      &.c__010 {
        padding-right: 6.4rem;
        width: 40rem;
      }
    }
  }
  &.c__030 {
    flex-wrap: nowrap;
    .col-item {
      padding-left: 6.4rem;
      &.image {
        width: 38vw;
        padding-left: 0;
      }
    }
  }
}

@media screen and (max-width: 1025px) {
  .col-1col {
    &.c__010 {
      padding-left: 0;
      flex-wrap: wrap;
      position: relative;
      min-height: 50rem;
      .img__010 {
        width: 30%;
        align-self: flex-end;
        order: 400;
        position: absolute;
        top: 3.2rem;
        right: 0;
      }
      .img__020 {
        width: 30%;
        order: 400;
        padding-top: 1.6rem;
        margin-left: 20%;
      }
      .img__030 {
        max-width: 100%;
        width: 50%;
        padding-left: 0;
        order: 100;
        align-self: flex-start;
      }
      .img__040 {
        width: 40%;
        padding-left: 5%;
        align-self: flex-end;
        order: 200;
      }
    }
    &.c__020 {
      max-width: 68rem;
      margin: 0 auto;
    }
  }
}

@media screen and (max-width: 1025px) {
  .col-2col {
    display: flex;
    flex-wrap: wrap;
    &.c__010 {
      flex-wrap: wrap;
      align-items: center;
      .col-item {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2.4rem;
        &.image {
          position: static;
          left: 0;
          padding-right: 0;
          margin-bottom: 0;
        }
      }
    }
    &.c__020 {
      flex-wrap: wrap;
      .col-item {
        flex-wrap: wrap;
        width: 100%;
        &.c__010 {
          width: 100%;
          padding-right: 0;
        }
      }
    }
    &.c__030 {
      flex-wrap: wrap;
      .col-item {
        width: 100%;
        padding-left: 0;
        order: 100;
        margin-bottom: 2.4rem;
        &.image {
          width: 100%;
          padding-left: 0;
          margin-bottom: 0;
          order: 200;
        }
      }
    }
  }
}

/* ---------------------------------
LIST
--------------------------------- */
.list-lang {
  display: flex;
  margin-right: 4rem;
  .list-item {
    &.ja {
      &::after {
        content: "";
        display: inline-block;
        background: url(../images/icon_slash.svg) no-repeat 0 0;
        width: 1rem;
        height: 2rem;
        margin: 0 0.4rem;
        position: relative;
        top: 2px;
      }
    }
    &.en {
    }
    &.current {
      text-decoration: underline;
    }
  }
}

.list-footernav {
  padding-top: 6.7rem;
  .list-item {
    margin-bottom: 3.2rem;
  }
}
/* ---------------------------------
LIST
--------------------------------- */
.text-common {
  &.c__010 {
    line-height: 2.2;
  }
  &.c__020 {
    max-width: 60rem;
    line-height: 2.2;
  }
}

/* ---------------------------------
BTN
--------------------------------- */
.btn-reserve {
  display: flex;
  a {
    text-decoration: none;
    color: var(--color_base__030);
    background-color: var(--color_base__040);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20rem;
    text-align: center;
    padding: 1.6rem;
    border-radius: 0.4rem;
    &::before {
      content: "";
      background: url(../images/icon_sns_calender.svg) no-repeat 0 0;
      width: 2.4rem;
      height: 2.4rem;
      display: inline-block;
      margin-right: 1.6rem;
    }
  }
}

.btn-reserve_foot {
  display: flex;
  justify-content: center;
  a {
    text-decoration: none;
    background-color: var(--color_base__040);
    color: var(--color_base__030);
    border: 1px solid var(--color_base__030);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32rem;
    text-align: center;
    padding: 1.6rem;
    border-radius: 0.4rem;
    &::before {
      content: "";
      background: url(../images/icon_sns_calender.svg) no-repeat 0 0;
      width: 2.4rem;
      height: 2.4rem;
      display: inline-block;
      margin-right: 1.6rem;
    }
  }
}

.btn-map {
  display: flex;
  a {
    text-decoration: none;
    color: var(--color_base__040);
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: underline;
    &::before {
      content: "";
      background: url(../images/icon_sns_map.svg) no-repeat 0 0;
      width: 2.4rem;
      height: 2.4rem;
      display: inline-block;
      margin-right: 0.8rem;
    }
  }
}

.btn-instagram {
  display: flex;
  a {
    text-decoration: none;
    color: var(--color_base__040);
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: underline;
    &::before {
      content: "";
      background: url(../images/logo_sns_instagram.svg) no-repeat 0 0;
      width: 2.4rem;
      height: 2.4rem;
      display: inline-block;
      margin-right: 0.8rem;
    }
  }
}

/* ---------------------------------
MAP
--------------------------------- */
.col-map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  margin-bottom: 2.4rem;
}

.col-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------------------------------
swiper
--------------------------------- */
.swiper-col {
  position: relative;
  overflow: visible;
}

.swiper {
  overflow: hidden;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -4.8rem;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--color_base__040);
}

.swiper-pagination-bullet-active {
  border: 1px solid var(--color_base__040);
  padding: 12px;
  background-color: var(--color_base__030);
  position: relative;
}

.swiper-pagination-bullet-active::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 16px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ---------------------------------
CALENDAR
--------------------------------- */

#calendar {
  margin: 50px auto;
  max-width: 80rem;
  padding: 10px;
  box-sizing: border-box;
}
#calendar a {
  pointer-events: none;
}

.fc a {
  color: var(--color_base__030);
}

.fc .fc-daygrid-day.fc-day-today {
  /* background-color: #fff; */
}

.fc-theme-standard td,
.fc-theme-standard th {
  border: 1px solid #ddd;
  border: 1px solid var(--fc-border-color, #fff);
}

.fc-theme-standard .fc-scrollgrid {
  border: 1px solid #ddd;
  border: 1px solid var(--fc-border-color, #fff);
}

.fc-event-title {
  /* color: #000; */
  background-color: var(--color_base__030);
  border-radius: 4px;
  padding: 4px;
}
.fc-h-event {
  border: 0;
  /* border: 1px solid var(--color_base__040); */
  /* background-color: #3788d8; */
  background-color: var(--color_base__030);
}

.fc .fc-daygrid-day-top {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}

#calendar .fc-daygrid-event-harness a {
  color: #fff;
}

.fc .fc-bg-event .fc-event-title {
  /* margin-top: 2.5em;
  font-style: normal; */
}

.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
  padding: 2px 8px;
}

@media screen and (max-width: 1025px) {
  .fc-daygrid-block-event .fc-event-time,
  .fc-daygrid-block-event .fc-event-title {
    padding: 4px 4px;
  }
}

@media screen and (max-width: 1025px) {
  .fc-daygrid-block-event .fc-event-title {
    font-size: 10px;
  }
}

.fc .fc-bg-event {
  background: var(--fc-bg-event-color, #000);
  opacity: var(--fc-bg-event-opacity, 1);
}

.fc-daygrid-event {
  pointer-events: none;
}

.fc .fc-button-primary {
  border-color: var(--color_base__030);
  background-color: var(--color_base__030);
}

.fc-icon-chevron-left,
.fc-icon-chevron-right {
  position: relative;
  top: -6px;
}

.fc .fc-today-button {
  display: none;
}

/* .js-am_1001 {
  filter: blur(100px);
  opacity: 0;
  transition: all 1s;
  &.show {
    filter: blur(0);
    opacity: 1;
    transition: all 1s;
  }
}

.js-am_1003 {
  filter: blur(100px);
  opacity: 0;
  transition: all 1s;
  &.show {
    filter: blur(0);
    opacity: 1;
    transition: all 1s;
  }
} */

.fc-event-title {
  /* opacity: 0; */
  transition: all 1s;
  &.active {
    opacity: 1;
    transition: all 1s;
  }
}
