@charset "UTF-8";
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  color ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  font ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  mixin ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  a-fadein10 ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.a-fadein10 {
  opacity: 0;
}

.a-fadein10.show {
  opacity: 0;
  -webkit-animation: fadein10 1s forwards;
          animation: fadein10 1s forwards;
}

@-webkit-keyframes fadein10 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadein10 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.a-fadein10.-delay02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

/*↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  a-fadein20 ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.a-fadein20 {
  opacity: 0;
}

.a-fadein20.show {
  opacity: 0;
  -webkit-animation: fadein20 2s forwards;
          animation: fadein20 2s forwards;
}

@-webkit-keyframes fadein20 {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadein20 {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  a-underline ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.a-underline {
  position: relative;
}

.a-underline--show::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation: underline 1s forwards;
          animation: underline 1s forwards;
}

@-webkit-keyframes underline {
  0% {
    opacity: 0;
    transform: scale(0, 1);
    transform-origin: left top;
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

@keyframes underline {
  0% {
    opacity: 0;
    transform: scale(0, 1);
    transform-origin: left top;
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/*↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
body {
  width: 100%;
  font-size: 16px;
  font-family: serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  入浴の際の注意事項 ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.attention__container {
  width: 90%;
  max-width: 800px;
  height: 100%;
  border: 3px solid #040434;
}

.attention__subtitle .-red {
  color: #a60b0b;
}

.attention__container--list {
  width: 90%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  margin: 20px auto;
}

.attention__container--item {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1rem 0;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  詳しく見るボタン ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-more-button {
  width: 80%;
  text-align: left;
  margin: 5% auto;
}
.c-more-button a {
  height: 50px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  background-color: rgba(4, 4, 52, 0.5);
  border-radius: 10px;
  padding: 16px 24px;
  filter: drop-shadow(2px 2px 2px #333);
}
.c-more-button:hover {
  opacity: 0.8;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .c-more-button {
    text-align: center;
  }
}

/*↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  戻るボタン ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-back-button {
  width: 250px;
  height: 50px;
  background-color: rgba(71, 50, 50, 0.5);
  filter: drop-shadow(5px 5px 5px #473232);
  border: none;
  border-radius: 40px;
  margin: 1rem;
}
.c-back-button a {
  color: #fff;
  padding: 4px 16px;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  content ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.content__container {
  width: 95%;
  height: 200px;
  text-align: center;
  padding-top: 20%;
  margin: 10px auto;
  position: relative;
}
.content__container.-ticket {
  background-image: url(../image/spa02.jpg);
  background-size: cover;
}
.content__container.-food {
  background-image: url(../image/food20.jpg);
  background-size: 200%;
  background-position-y: 70%;
}

.content__container--main {
  width: 70%;
  height: 200px;
  text-align: center;
  padding-top: 6%;
  margin: 80px auto;
  position: relative;
}
.content__container--main:hover {
  opacity: 0.9;
}
.content__container--main.-food {
  background-image: url(../image/food20.jpg);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .content__container--main.-food {
    width: 80%;
    height: 200px;
    margin: 40px auto;
  }
}
@media screen and (max-width: 768px) {
  .content__container--main.-food {
    width: 70%;
    height: 140px;
    margin: 40px auto;
  }
}

.content__title {
  display: block;
  color: #fff;
  background-color: rgba(4, 4, 52, 0.3);
  filter: drop-shadow(3px 3px 3px #333);
  padding: 4px 0;
}
.content__title.-sub {
  font-size: 1.2rem;
}
.content__title.-main {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .content__title.-main {
    font-size: 1.5rem;
  }
}
.content__title.-sub-y {
  font-size: 1.2rem;
}
.content__title.-main-y {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .content__title.-main-y {
    font-size: 1.5rem;
  }
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  ハンバーガーボタン ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.hamburger-btn {
  display: none;
}

.nav__list {
  padding: 8px;
}
.nav__list a {
  color: #111;
}

@media screen and (max-width: 768px) {
  #nav {
    width: 100%;
    height: 100vh;
    background-image: url(../../../image/bg05.jpg);
    background-size: cover;
    background-position: 70%;
    position: fixed;
    top: -120%;
    left: 0;
    transition: all 0.6s;
    z-index: 999;
  }
  .nav__list {
    display: block;
    background-color: rgba(4, 4, 52, 0.3);
  }
  #nav.panelactive {
    top: 0;
  }
  .nav__list {
    width: 60%;
    height: 70vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
  }
  .nav__item {
    height: 2rem;
    list-style: none;
    text-align: center;
    padding: 2rem;
  }
  .nav__item a {
    font-weight: bold;
    color: #333;
    display: block;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .hamburger-btn {
    width: 50px;
    height: 50px;
    background: #040434;
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 9999;
  }
  .hamburger-btn span {
    width: 45%;
    height: 3px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    left: 14px;
    border-radius: 2px;
    transition: all 0.4s;
  }
  .hamburger-btn span:nth-of-type(1) {
    top: 15px;
  }
  .hamburger-btn span:nth-of-type(2) {
    top: 23px;
  }
  .hamburger-btn span:nth-of-type(3) {
    top: 31px;
  }
  .hamburger-btn.active span:nth-of-type(1) {
    width: 30%;
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
  }
  .hamburger-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-btn.active span:nth-of-type(3) {
    width: 30%;
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
  }
}
/* ↑↑↑↑↑  ハンバーガーボタン ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  info ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-info {
  background-color: rgba(4, 4, 52, 0.3);
}
.c-info.-bg-a {
  background-color: rgba(4, 4, 52, 0.5);
}

.c-info__working {
  width: 100%;
  height: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-info__working {
    height: 250px;
  }
}

.info__working--text {
  width: 90%;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 40px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .info__working--text {
    width: 60%;
    max-width: 240px;
    height: 150px;
    font-size: 1rem;
    padding: 20px;
    margin: 0 auto;
  }
}

.info__working--time {
  font-size: 1.5rem;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .info__working--time {
    font-size: 1.2rem;
  }
}

.info__access {
  width: 90%;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
}

.info__access {
  width: 90%;
  filter: drop-shadow(2pax 2px 2px #333);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .info__access {
    width: 98%;
  }
}
@media screen and (max-width: 768px) {
  .info__access {
    width: 250px;
  }
}
.info__access.-tel {
  padding-top: 8px;
}
.info__access.-map {
  width: 100%;
  max-width: 300px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .info__access.-map {
    width: 200px;
    margin: 20px auto;
  }
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  施設ご案内 ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.menu {
  width: 95%;
  position: relative;
  z-index: 99;
}

.menu__list {
  width: 100%;
  margin: 0 auto;
}

.menu__item {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  filter: drop-shadow(10px 10px 10px #333);
  border-radius: 40px;
  padding: 2rem;
}
.menu__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .menu__item {
    flex-direction: column;
  }
}

.menu__item--image {
  width: 30%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .menu__item--image {
    width: 80%;
    aspect-ratio: 2/1;
    overflow: hidden;
  }
}
.menu__item--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
  border-radius: 50%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .menu__item--image img {
    border-radius: 10px;
  }
}

.menu__item--text {
  width: 67%;
}
@media screen and (max-width: 768px) {
  .menu__item--text {
    width: 95%;
    min-width: 200px;
  }
}

.menu__item--title {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: serif;
  color: #040434;
  text-align: center;
  border-radius: 10px;
  padding: 8px 16px;
}
@media screen and (max-width: 1024px) {
  .menu__item--title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .menu__item--title {
    display: block;
  }
}
.menu__item--title .-subtitle {
  font-size: 2rem;
  padding: 0 1rem;
}
@media screen and (max-width: 1024px) {
  .menu__item--title .-subtitle {
    font-size: 1.5rem;
  }
}

.menu__item--desc {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .menu__item--desc {
    font-size: 1.1rem;
  }
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  背景動画 ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.video-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: contrast(50%);
  z-index: -99;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  nav ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-nav {
  background-color: rgba(4, 4, 52, 0.7);
}

.nav__list {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem;
}

.nav__item a {
  display: inline-block;
  font-size: 1.2rem;
  font-family: serif;
  color: #fff;
  line-height: 50px;
  filter: drop-shadow(2px 2px 2px #333);
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  news ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-news {
  height: auto;
  background-color: rgba(4, 4, 52, 0.3);
}

.news__list {
  width: 90%;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .news__list {
    width: 70%;
    height: 93%;
    min-width: 250px;
  }
}

.news__text {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 35px;
  transition: all 0.5s ease;
}

.news__text::before,
.news__text::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}

.news__text::before {
  top: 48%;
  left: 10px;
  transform: rotate(0deg);
}

.news__text::after {
  top: 48%;
  left: 10px;
  transform: rotate(90deg);
}

.news__text.close::before {
  transform: rotate(45deg);
}

.news__text.close::after {
  transform: rotate(-45deg);
}

.news__text--date {
  font-size: 1rem;
  font-weight: bold;
  color: #040434;
  filter: drop-shadow(1px 1px 1px #fff);
  padding: 8px 0;
}

.news__text--message {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  filter: drop-shadow(1px 1px 1px #000);
}

.news__message {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  font-weight: bold;
  line-height: 1.5rem;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  side title ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-side__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  filter: drop-shadow(2px 2px 2px #333);
}
@media screen and (max-width: 768px) {
  .c-side__title {
    font-size: 1.5rem;
  }
} /* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  title ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-title {
  width: 95%;
  max-width: 800px;
  font-size: clamp(1rem, 0.455rem + 2vw, 2rem);
  font-weight: bold;
  font-family: serif;
  color: #040434;
  filter: drop-shadow(2px 2px 2px #fff);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .c-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.2rem;
  }
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  l-content ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-content {
  width: 100%;
  position: relative;
  z-index: 99;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  l-footer ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-footer {
  height: 100%;
  position: relative;
  z-index: 99;
}

.copy-right {
  width: 100%;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  font-style: italic;
  color: #fff;
  text-align: center;
  filter: drop-shadow(1px 1px 1px #040434);
  padding-top: 80px;
}
.copy-right.-bg-a {
  color: #040434;
  filter: drop-shadow(1px 1px 1px #fff);
}

/* ↑↑↑↑↑  ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  ::::: grid ::::: l-container ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-container {
  width: 100%;
  display: grid;
  grid-template-rows: 100vh auto 444px 440px auto 200px;
  grid-template-columns: 300px auto;
  gap: 10px 10px;
  grid-template-areas: "header header" "news main" "nav main" "content main" "info main" "footer footer";
}
@media screen and (max-width: 1024px) {
  .l-container {
    grid-template-columns: 250px auto;
  }
}
@media screen and (max-width: 768px) {
  .l-container {
    width: 100%;
    display: grid;
    grid-template-rows: 100vh 840px auto auto 200px;
    grid-template-columns: auto;
    gap: 10px 10px;
    grid-template-areas: "header" "news" "main" "info" "footer";
  }
}
.l-container.noheader {
  width: 100%;
  display: grid;
  grid-template-rows: 444px 440px auto 200px;
  grid-template-columns: 300px auto;
  gap: 10px 10px;
  grid-template-areas: "nav main" "content main" "info main" "footer footer";
}
@media screen and (max-width: 1024px) {
  .l-container.noheader {
    grid-template-columns: 250px auto;
  }
}
@media screen and (max-width: 768px) {
  .l-container.noheader {
    grid-template-rows: auto auto 200px;
    grid-template-columns: 100%;
    gap: 10px 10px;
    grid-template-areas: "main" "info" "footer";
  }
}

.l-header {
  grid-area: header;
}

.l-news {
  width: 100%;
  grid-area: news;
}

.l-nav {
  grid-area: nav;
}

.l-content {
  grid-area: content;
}
@media screen and (max-width: 768px) {
  .l-content {
    display: none;
  }
}

.l-info {
  width: 90%;
  height: 100%;
  grid-area: info;
}
@media screen and (max-width: 768px) {
  .l-info {
    width: 70%;
    margin: 0 auto;
  }
}

.l-main {
  grid-area: main;
}

.l-footer {
  grid-area: footer;
}

/*::: ↓↓↓↓↓  おしながき ここから  ↓↓↓↓↓ ::::::::::::::::::::::::::::::::::::::::*/
.l-container--foodmenu {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 70px auto auto 70px 200px;
  grid-template-columns: 40% 27% 27% 5%;
  grid-template-areas: "button button button button" "menu03 menu02 menu01 title" "covid19 covid19 covid19 covid19" "button02 button02 button02 button02" "footer footer footer footer";
}
@media screen and (max-width: 1024px) {
  .l-container--foodmenu {
    grid-template-rows: 70px auto 500px auto 70px 200px;
    grid-template-columns: 45% 45% 5%;
    grid-template-areas: "button button button" "menu02 menu01 title" "menu03 menu03 title" "covid19 covid19 covid19" "button02 button02 button02" "footer footer footer";
  }
}
@media screen and (max-width: 768px) {
  .l-container--foodmenu {
    grid-template-rows: auto auto 500px auto 200px;
    grid-template-columns: 90% 5%;
    grid-template-areas: "menu01 title" "menu02 title" "menu03 title" "covid19 covid19" "footer footer";
  }
}

.l-back-button {
  grid-area: button;
}

.l-back-button02 {
  grid-area: button02;
}

.l-foodtitle {
  grid-area: title;
}

.l-foodmenu01 {
  grid-area: menu01;
}

.l-foodmenu02 {
  grid-area: menu02;
}

.l-foodmenu03 {
  grid-area: menu03;
}

.l-covid19 {
  grid-area: covid19;
}

/*::: ↑↑↑↑↑  おしながき ここまで  ↑↑↑↑↑ ::::::::::::::::::::::::::::::::::::::::::*/
/* ↑↑↑↑↑  ::::: grid ::::: l-container ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  l-info ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-info {
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 40px 10px;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  l-main ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-main {
  width: 95%;
  position: relative;
  z-index: 99;
  margin: 0 auto;
}
.l-main.-bg-a {
  background-color: rgba(4, 4, 52, 0.3);
}
.l-main.-bg-b {
  background-color: rgba(255, 255, 255, 0.3);
}
.l-main.-bg-c {
  background-color: rgba(71, 50, 50, 0.3);
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  l-nav ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-nav {
  position: relative;
  z-index: 99;
  padding: 4px;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  l-news ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-news {
  width: 100%;
  position: relative;
  z-index: 99;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  l-section ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-section {
  width: 95%;
  margin: 0 auto 100px;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  u-flex ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.u-flex-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.u-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.u-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  responsive ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.tb-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tb-only {
    display: block;
  }
}

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

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  u-space ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.u-space-l {
  padding: 3rem 0;
  margin: 5rem auto 0;
}
@media screen and (max-width: 1024px) {
  .u-space-l {
    padding: 1rem 0;
    margin: 4rem auto 0;
  }
}

.u-space-m {
  margin: 4rem auto 2rem;
}

.u-space-s {
  margin: 0 auto 1rem;
}

.u-space-top {
  margin: 3rem auto 0;
}
@media screen and (max-width: 1024px) {
  .u-space-top {
    margin-top: 2rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  .u-space-top {
    margin-top: 1rem auto 0;
  }
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  u-subtitle ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.u-subtitle {
  width: 80%;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.7));
  filter: drop-shadow(1px 1px 1px #fff);
  padding: 8px;
  margin: 3rem auto 2rem;
}
.u-subtitle.-bg-a {
  background: linear-gradient(transparent, rgba(4, 4, 52, 0.7));
  color: #fff;
  filter: drop-shadow(1px 1px 1px #040434);
}
.u-subtitle.-bg-c {
  background: linear-gradient(transparent, rgba(71, 50, 50, 0.5));
  color: #fff;
  filter: drop-shadow(1px 1px 1px #040434);
}
@media screen and (max-width: 768px) {
  .u-subtitle {
    width: 95%;
    font-size: 1.5rem;
    margin: 2rem auto 1rem;
  }
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  u-title ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.bg-slide {
  -webkit-animation: bgSlideBase 3s forwards;
          animation: bgSlideBase 3s forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@-webkit-keyframes bgSlideBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgSlideBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bg-appear {
  width: 100%;
  height: 100%;
  -webkit-animation: bgSlideText 1.5s 0.5s forwards;
          animation: bgSlideText 1.5s 0.5s forwards;
  opacity: 0;
  padding: 2% 10%;
}

@-webkit-keyframes bgSlideText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgSlideText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bg-LRslide::before {
  -webkit-animation: bgSlideLR 5s forwards;
          animation: bgSlideLR 5s forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 220px;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.3));
  margin: 0 auto;
}

@-webkit-keyframes bgSlideLR {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  20% {
    transform-origin: left;
    transform: scaleX(1);
  }
  20.001% {
    transform-origin: right;
  }
  60% {
    transform-origin: right;
    transform: scaleX(0);
  }
  60.001% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}

@keyframes bgSlideLR {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  20% {
    transform-origin: left;
    transform: scaleX(1);
  }
  20.001% {
    transform-origin: right;
  }
  60% {
    transform-origin: right;
    transform: scaleX(0);
  }
  60.001% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
.bg-appear-trigger,
.bg-LRslide-trigger {
  display: block;
  text-align: center;
  opacity: 0;
}

/* ↑↑↑↑↑   ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  access ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.access {
  background-image: url(../image/bg10.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.access {
  width: 90%;
  z-index: 99;
  margin: 0 auto;
}

.access__container {
  width: 100%;
  height: 100%;
}

.access__container--text {
  width: 75%;
  max-width: 500px;
  background-color: rgba(4, 4, 52, 0.3);
  display: grid;
  place-content: center;
  place-items: center;
  border: 2px solid #fff;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 1rem;
  margin: 0 auto;
}

.access__container--address,
.access__container--tel {
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

.access__container--map {
  width: 60%;
  max-width: 350px;
  aspect-ratio: 1/1;
  background-color: rgba(255, 255, 255, 0.5);
}

.access__container--means {
  width: 85%;
  max-width: 500px;
  background-color: rgba(4, 4, 52, 0.3);
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 1rem 1.5rem;
  margin: 0 auto;
}

.access__working {
  width: 50%;
  max-width: 300px;
  height: 100%;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 1rem;
  margin: 3rem auto 5rem;
}

.access__working--text {
  font-size: 1.2rem;
}

/* ↑↑↑↑↑  access ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  contact ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.contact {
  background-image: url(../image/bg09.jpg);
  background-attachment: fixed;
}

.contact {
  width: 90%;
  margin: 0 auto;
}

.contact__title {
  color: #fff;
  filter: drop-shadow(2px 2px 2px #040434);
}

.contact__message {
  width: 90%;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

form {
  width: 90%;
  max-width: 400px;
  padding: 3%;
  margin: 0 auto;
}

label {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  padding: 1rem;
}

input,
textarea {
  display: block;
  opacity: 0.7;
  padding: 8px;
  margin-top: 8px;
}

button {
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(4, 4, 52, 0.7);
  padding: 0.5rem 1rem;
}

/* ↑↑↑↑↑  contact ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  foodmenu ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container--foodmenu {
  width: 100%;
  height: auto;
  background-image: url(../image/bg16.jpg);
  background-size: cover;
  background-attachment: fixed;
  padding: 4% 4% 0;
}

.foodtitle {
  position: relative;
  top: -40px;
  left: -30px;
  z-index: 99;
}

.foodmenu__title {
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
  font-weight: bold;
  color: #fff;
  background-color: #040434;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  padding: 3rem 1.2rem;
  filter: drop-shadow(3px 3px 3px #fff);
}

.foodmenu__contaner {
  background-color: rgba(255, 255, 255, 0.5);
}

.foodmenu__list {
  width: 100%;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  padding: 3rem 0;
}

.foodmenu__list {
  width: 90%;
  height: 90%;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}

.foodmenu__item {
  width: 25%;
}
.foodmenu__item .-text {
  height: 70%;
  align-items: center;
  line-height: 0;
}
.foodmenu__item .-name {
  height: 50%;
  font-size: 1.3rem;
  font-weight: bold;
}
.foodmenu__item .-price {
  height: 40%;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: right;
}

.foodmenu__item--image {
  width: 90%;
  aspect-ratio: 1/1;
}
.foodmenu__item--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-foodmenu03 {
  width: 100%;
}

.foodmenu__item--drinktitle {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.3);
  border: 5px double #040434;
  padding: 3rem 0;
  margin-left: 1rem;
}

.foodmenu__item.-drink {
  width: 9%;
}

/*↑↑↑↑↑  foodmenu ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  covid19 ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.covid19 {
  width: 80%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3rem 3rem 0 3rem;
  margin: 10px auto;
}

.covid19__text--title {
  width: 90%;
  text-align: center;
  line-height: 1.5;
  border: 2px solid #040434;
  filter: drop-shadow(3px 3px 3px #fff);
  padding: 8px 20px;
  margin: 40px auto;
}

.covid19__text--message {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  margin: 40px auto;
}

.covid19__image--list {
  width: 80%;
  height: auto;
  padding: 2rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .covid19__image--list {
    width: 100%;
  }
}

.covid19__image--item {
  width: 45%;
  max-width: 200px;
}

/* ↑↑↑↑↑  covid19 ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  information ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.information {
  background-image: url(../image/bg01.jpg);
  background-size: cover;
  background-attachment: fixed;
}

/* ↑↑↑↑↑  information ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  massage ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.massage {
  background-image: url(../image/bg14.jpg);
  background-attachment: fixed;
}

.massage {
  width: 95%;
  margin: 0 auto;
}

.massage__title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #040434;
  filter: drop-shadow(2px 2px 2px #fff);
}
@media screen and (max-width: 1024px) {
  .massage__title {
    font-size: 1.2rem;
  }
}

.massage__container {
  width: 100%;
}

.massage__container--image {
  width: 100%;
  aspect-ratio: 5/2.5;
  overflow: hidden;
  margin: 0 auto;
}
.massage__container--image img {
  width: 100%;
  height: 100%;
}

.massage__container--message {
  width: 90%;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  filter: drop-shadow(1px 1px 1px #040434);
}
.massage__container--message::first-letter {
  font-size: 3rem;
  color: #fff;
  background-color: rgba(4, 4, 52, 0.3);
  padding: 8px 16px;
}

.massage__wrapper {
  width: 100%;
}

.massage__menu {
  width: 48%;
  min-width: 300px;
  position: relative;
  z-index: -1;
  background-size: cover;
  background-position: center;
  color: #fff;
  filter: drop-shadow(5px 5px 5px #040434);
  margin: 10px auto;
}
.massage__menu.-body {
  height: 500px;
  background-image: url(../image/massage01.jpg);
}
.massage__menu.-foot {
  height: 400px;
  background-image: url(../image/massage03.jpg);
}
.massage__menu.-oil {
  height: 500px;
  background-image: url(../image/massage04.jpg);
}
.massage__menu.-scrub {
  height: 400px;
  background-image: url(../image/massage05.jpg);
}
@media screen and (max-width: 768px) {
  .massage__menu {
    width: 80%;
  }
}

.massage__menu--inner {
  width: 95%;
  height: 95%;
  background-color: rgba(4, 4, 52, 0.5);
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  padding: 1rem;
}

.massage__menu--title {
  font-size: 1.7rem;
  text-align: center;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 1rem 0;
}

.massage__menu--desc {
  font-size: 1rem;
  font-weight: bold;
  filter: drop-shadow(1px 1px 1px #040434);
}

.massage__menu--name,
.massage__menu--price {
  font-size: 1rem;
  font-weight: bold;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 1rem 0;
}

/* ↑↑↑↑↑  massage ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  rest ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.rest {
  background-image: url(../image/bg02.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.rest {
  width: 90%;
  z-index: 99;
  margin: 0 auto;
}

.rest__title {
  color: #040434;
  filter: drop-shadow(2px 2px 2px #fff);
}

.rest__container--image {
  width: 100%;
  aspect-ratio: 5/2.5;
  overflow: hidden;
  margin: 0 auto;
}
.rest__container--image img {
  width: 100%;
  height: 100%;
}

.rest__container--item {
  margin-bottom: 40px;
}
.rest__container--item img {
  width: 35%;
  aspect-ratio: 1/1.2;
  -o-object-fit: cover;
     object-fit: cover;
}

.rest__container--desc {
  width: 60%;
  height: 100%;
  font-size: 1.1rem;
  color: #fff;
  background-color: rgba(4, 4, 52, 0.5);
  line-height: 1.8rem;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 5%;
}

.rest__container--message {
  width: 90%;
  height: auto;
  font-size: 1.1rem;
  font-weight: bold;
  color: #040434;
  background-color: rgba(255, 255, 255, 0.3);
  text-align: center;
  text-decoration: underline;
  border: 2px solid #040434;
  padding: 8%;
}

/* ↑↑↑↑↑  rest ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  sauna ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.sauna {
  background-image: url(../image/bg06.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.sauna {
  width: 90%;
  z-index: 99;
  margin: 0 auto;
}

.sauna__title {
  color: #fff;
  filter: drop-shadow(2px 2px 2px #040434);
}

.sauna__container {
  width: 100%;
}

.sauna__container--top-image {
  width: 90%;
  aspect-ratio: 5/2.5;
  overflow: hidden;
  margin: 0 auto;
}

.sauna__container--list {
  width: 100%;
  padding: 40px 0;
}

.sauna__container--item {
  width: 100%;
  align-items: flex-start;
  margin-bottom: 80px;
}

.sauna__container--image {
  width: 30%;
  height: auto;
}
.sauna__container--image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .sauna__container--image img {
    min-width: 30px;
    aspect-ratio: 1/1.8;
    -o-object-position: 75%;
       object-position: 75%;
  }
}

.sauna__container--text {
  width: 63%;
  background-color: rgba(4, 4, 52, 0.5);
}

.sauna__container--subtitle {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  padding: 1.5rem 3rem 0;
}

.sauna__container--desc {
  font-size: 1.1rem;
  color: #fff;
  padding: 5%;
  gap: 0;
}

/* ↑↑↑↑↑  sauna ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  spa ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.spa {
  background-image: url(../image/bg13.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.spa {
  width: 90%;
  z-index: 99;
  margin: 0 auto;
}

.spa__title {
  color: #fff;
  filter: drop-shadow(2px 2px 2px #040434);
}

.spa__list {
  width: 90%;
  margin: 80px auto;
}

.spa__item {
  position: relative;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .spa__item {
    padding-bottom: 0px 0 120px;
  }
}

.spa__item--image {
  width: 60%;
  min-width: 300px;
  aspect-ratio: 5/4;
}
.spa__item--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.spa__item--image.-reverse {
  position: relative;
  left: 30%;
}

.spa__item--text {
  width: 35%;
  min-width: 200px;
  aspect-ratio: 4/3;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 40%;
  left: 55%;
  padding: 1rem;
}
.spa__item--text.-reverse {
  left: 1%;
  z-index: 1;
}

.spa__item--title {
  font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
}

.spa__item--desc {
  font-size: clamp(1rem, 0.282rem + 1.09vw, 1.1rem);
  font-family: serif;
  font-weight: bold;
  padding: 8px 0;
}

/* ↑↑↑↑↑  spa ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  system ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.system {
  background-image: url(../image/bg04.png);
  background-attachment: fixed;
}

.system {
  width: 95%;
  margin: 0 auto;
}

.system__title {
  color: #040434;
  filter: drop-shadow(2px 2px 2px #fff);
}

.system__title--message {
  width: 90%;
  background-color: rgba(4, 4, 52, 0.7);
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .system__title--message {
    width: 90%;
    font-size: 1.1rem;
  }
}

.system__container {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 2% 0;
  margin: 2% auto;
}

.system__image--list {
  width: 90%;
  max-width: 1000px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5%;
}

.system__image--item {
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .system__image--item {
    width: 100%;
  }
}

.system__image--icon {
  width: 12rem;
  height: 12rem;
  background-color: #fff;
  border: 3px solid #040434;
  border-radius: 10px;
  padding: 4% 1%;
}
.system__image--icon i {
  width: 7rem;
  height: 7rem;
  display: block;
  font-size: 5rem;
  text-align: center;
  margin: 0 auto;
}

.system__image--subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

.system__image--desc {
  width: 70%;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .system__image--desc {
    width: 90%;
    font-size: 1rem;
  }
}

.system__image--arrow {
  width: 100%;
  display: block;
  font-size: 2rem;
  text-align: center;
  transform: rotate(90deg);
}

/* ↑↑↑↑↑  system ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  therapy ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.therapy {
  background-image: url(../image/bg12.png);
  background-attachment: fixed;
}

.therapy {
  width: 95%;
  margin: 0 auto;
}

.therapy__title {
  color: #040434;
  filter: drop-shadow(2px 2px 2px #fff);
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  温泉療法とは ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.therapy__container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 2% 0;
}

.therapy__about--message {
  width: 90%;
  background-color: rgba(4, 4, 52, 0.7);
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
}

.therapy__about--list {
  width: 98%;
  max-width: 1000px;
  height: 100%;
  padding: 5% 1% 0;
  margin: 0 auto;
}

.therapy__about--item {
  height: 400px;
  background-size: cover;
  padding: 2% 1%;
  margin: 1rem auto;
}
@media screen and (max-width: 1024px) {
  .therapy__about--item {
    width: 100%;
    margin: 4px auto;
  }
}
@media screen and (max-width: 768px) {
  .therapy__about--item {
    width: 100%;
  }
}
.therapy__about--item.-medicinal {
  width: 30%;
  background-image: url(../image/therapy01.jpg);
}
@media screen and (max-width: 1024px) {
  .therapy__about--item.-medicinal {
    width: 90%;
    height: 100%;
  }
}
.therapy__about--item.-physical {
  width: 37%;
  background-image: url(../image/therapy02.jpg);
}
@media screen and (max-width: 1024px) {
  .therapy__about--item.-physical {
    width: 90%;
    height: 100%;
  }
}
.therapy__about--item.-environment {
  width: 30%;
  background-image: url(../image/therapy03.jpg);
}
@media screen and (max-width: 1024px) {
  .therapy__about--item.-environment {
    width: 90%;
    height: 100%;
  }
}

.therapy__about--subtitle {
  background-color: rgba(4, 4, 52, 0.5);
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 3% 0 2%;
}
@media screen and (max-width: 1024px) {
  .therapy__about--subtitle {
    font-size: 1.3rem;
  }
}

.therapy__about--text {
  width: 100%;
  height: 87%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 3%;
}

.therapy__about--desc {
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
}
.therapy__about--desc .-border {
  background-color: #fff;
  border-radius: 4px;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 1px 8px;
}
@media screen and (max-width: 768px) {
  .therapy__about--desc {
    width: 90%;
    font-size: 1rem;
    margin: 0 auto;
  }
}

.therapy__about--arrow-s {
  width: 100%;
  font-size: 2.5rem;
  text-align: center;
  line-height: 20px;
  transform: rotate(90deg);
}

.therapy__about--arrow {
  display: block;
  font-size: 2rem;
  text-align: center;
  transform: rotate(90deg);
}

.therapy__about--after {
  width: 90%;
  height: 150px;
  background-image: url(../image/therapy04.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.therapy__about--after-desc {
  width: 90%;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 3%;
}

/*::: ↓↓↓↓↓  温泉療法の進め方 ここから  ↓↓↓↓↓ ::::::::::::::::::::::::::::::::::::::::*/
.therapy__howto {
  width: 90%;
  height: 100%;
  background-color: rgba(71, 50, 50, 0.5);
  padding: 2% 0;
}

.therapy__howto--list {
  width: 90%;
  max-width: 800px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: bold;
  padding: 5%;
}
.therapy__howto--list.-spa {
  background-color: rgba(4, 4, 52, 0.5);
  color: #fff;
}

.therapy__howto--item {
  padding: 1rem 0;
}

.therapy__howto--spa {
  width: 85%;
  height: 100%;
}

/*::: ↑↑↑↑↑  温泉療法の進め方 ここまで  ↑↑↑↑↑ ::::::::::::::::::::::::::::::::::::::::::*/
/* ↑↑↑↑↑  therapy ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  ticket ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.ticket {
  background-image: url(../image/bg11.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.ticket__title {
  font-size: clamp(1.2rem, 1.218rem + 0.91vw, 2rem);
  color: #fff;
  filter: drop-shadow(1px 1px 1px #040434);
}
@media screen and (max-width: 1024px) {
  .ticket__title {
    font-size: 1.2rem;
  }
}

.ticket__title--message {
  width: 90%;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  filter: drop-shadow(1px 1px 1px #040434);
}
.ticket__title--message::first-letter {
  font-size: 3rem;
  color: #fff;
  background-color: rgba(4, 4, 52, 0.3);
  padding: 8px 16px;
}

.ticket__container--desc {
  width: 90%;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: rgba(4, 4, 52, 0.3);
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 8px 0;
}

.ticket__container--image {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

.ticket__image--list {
  width: 100%;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 5% 3%;
}

.ticket__image--item {
  width: 33%;
  display: grid;
  place-content: center;
}
.ticket__image--item.-arrow {
  width: 5%;
}
.ticket__image--item.-price {
  width: 18%;
}

.ticket__image--item-ticket {
  width: 100%;
  max-width: 250px;
  display: inline-block;
  background-color: #fff;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  border: 4px solid #040434;
  border-radius: 10px;
  padding: 1rem;
}

.ticket__image--item-text {
  font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  font-weight: bold;
  text-align: center;
  padding: 1rem 0;
}

.ticket__image--item-desc {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}

.ticket__image--item-arrow {
  font-size: clamp(1rem, 2.273rem + 3.64vw, 5rem);
}

.ticket__useguide {
  width: 90%;
  max-width: 800px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.2);
  padding-top: 2%;
  margin: 80px auto;
}

.ticket__useguide--title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.ticket__useguide--list {
  width: 100%;
  height: 100%;
  padding: 0 5% 5%;
}

.ticket__useguide--item {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  filter: drop-shadow(1px 1px 1px #040434);
  padding: 1rem;
}

/* ↑↑↑↑↑  ticket ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  header ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.header__title {
  width: 400px;
  height: 700px;
  font-family: "Yuji Syuku", serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__title--sub {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  filter: drop-shadow(2px 2px 2px #333);
  border: 4px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 270px;
  padding: 30px;
}

.header__title--main {
  font-size: clamp(2rem, 0.727rem + 6.36vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  background-color: rgba(5, 5, 69, 0.2);
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  letter-spacing: 1rem;
  border: 2px solid #fff;
  filter: drop-shadow(10px 10px 2px #333);
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
}

.header__title--tel {
  font-size: 1.3rem;
  background-color: rgba(255, 255, 255, 0.3);
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  position: relative;
  top: -250px;
  left: 10px;
  z-index: -1;
  padding: 60px 60px 60px 40px;
}

/*↑↑↑↑↑  header ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  price ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.price {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .price {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .price {
    width: 85%;
  }
}

.price__table {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__table {
    font-size: 1.2rem;
  }
}
.price__table th, .price__table td {
  border-radius: 10px;
  border: 2px solid #473232;
  padding: 8px;
}
.price__table th {
  font-size: 1.2rem;
  background-color: rgba(4, 4, 52, 0.3);
  color: #fff;
  filter: drop-shadow(1px 1px 1px #333);
}
@media screen and (max-width: 1024px) {
  .price__table th {
    font-size: 1rem;
  }
}
.price__table td {
  background-color: rgba(255, 255, 255, 0.5);
  color: #040434;
  filter: drop-shadow(1px 1px 1px #333);
}

/* ↑↑↑↑↑  price ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  yuragian ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container.yuragian {
  background-image: url(../image/bg06.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.yuragian {
  width: 90%;
  z-index: 99;
  margin: 0 auto;
}

.yuragian__title {
  font-size: clamp(1.2rem, 1.218rem + 0.71vw, 1.8rem);
  color: #fff;
  filter: drop-shadow(1px 1px 1px #040434);
}
@media screen and (max-width: 1024px) {
  .yuragian__title {
    font-size: 1.1rem;
  }
}

.yuragian__container--image {
  width: 100%;
  aspect-ratio: 5/2.5;
  overflow: hidden;
  margin: 0 auto;
}
.yuragian__container--image img {
  width: 100%;
  height: 100%;
}

.yuragian__container--item {
  width: 100%;
  gap: 40px;
}
.yuragian__container--item img {
  width: 30%;
  aspect-ratio: 1/1.2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .yuragian__container--item img {
    width: 70%;
    aspect-ratio: 2/1;
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: 50%;
       object-position: 50%;
  }
}

.yuragian__container--desc {
  width: 60%;
  height: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background-color: rgba(4, 4, 52, 0.5);
  line-height: 1.8rem;
  padding: 5%;
}
@media screen and (max-width: 768px) {
  .yuragian__container--desc {
    width: 90%;
  }
}

.rest__container--message.-yuragian {
  background-color: rgba(255, 255, 255, 0.7);
}

/* ↑↑↑↑↑  yuragian ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*//*# sourceMappingURL=style.css.map */