@charset "UTF-8";

:root {
  --baseColor: #fffdf7;
  --mainColor: #a04940;
  --accentColor: #cdad61;
  --taxtColor: #594c46;
  --whiteColor: #fff;
  --fvtextColor: #a04940;
  --onsenColor: #a04940;
  --mealColor: #6d897b;
  --othersColor: #cdad61;
  --font40: clamp(2.8rem, 2.4rem + 1vw, 4rem);
  --font26: clamp(2rem, 1.8rem + 1vw, 2.6rem);
  --font22: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  --font20: clamp(1.6rem, 1.4rem + 0.6vw, 2rem);
  --font18: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem);
  --font16: clamp(1.4rem, 1.3rem + 0.23vw, 1.6rem);
}

/*--------------------------------
    共通
--------------------------------*/

@font-face {
  font-family: "HonokaShinMincho";
  src: url("../fonts/Honoka_Shin_Mincho_L.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  font-size: var(--font16);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  background-color: var(--baseColor);
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: content-box;
}

a {
  color: var(--taxtColor);
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: thin;
}

li {
  list-style: none;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title:before,
.section-title:after {
  position: absolute;
  content: "";
  display: block;
  height: 6px;
  bottom: -10px;
}

.section-title:before {
  background-color: var(--mainColor);
  width: 140%;
  left: -21%;
}

.section-title:after {
  background-color: var(--accentColor);
  width: 70%;
  right: -19%;
}

@media only screen and (max-width: 767px) {
  .section-title:before,
  .section-title:after {
    height: 4px;
    bottom: -5px;
  }

  .section-title:before {
    width: 100%;
    left: 0;
  }

  .section-title:after {
    width: 50%;
    right: 0;
  }
}

/* ボタン */

.main__button {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.16em;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: none;
  padding: 1.2rem 4.1rem;
  border-radius: 4rem;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.main__button:hover {
  background-color: var(--whiteColor);
  color: var(--mainColor);
  transition: background-color 0.3s, color 0.3s;
}

/*--------------------------------
    ヘッダー
--------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 8rem;
  z-index: 100;
  background-color: var(--baseColor);
  transition: background-color 0.4s ease-out, backdrop-filter 0.4s ease-out;
}

.header.change-color {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header__inner {
  height: 8rem;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  max-width: 13rem;
}

.header__time {
  margin-right: 1rem;
}

.header__button::before {
  content: "";
  display: inline-block;
  width: 4.2rem;
  height: 4.2rem;
  background-image: url(../img/open-hours-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.header__phone::before {
  background-image: url(../img/tell-icon.png);
  width: 2rem;
  height: 2rem;
  left: 2rem;
}

.header__phone a {
  color: var(--whiteColor);
  letter-spacing: 0.04em;
}

.header__menu-contents {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__button {
  font-size: var(--font18);
  font-family: "Lato", serif;
  font-weight: bold;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  padding: 1.5rem 2rem;
  padding-left: 5rem;
  outline: 1px solid var(--whiteColor);
  outline-offset: -5px;
  border-radius: 2px;
  position: relative;
  cursor: default;
}

.header__button.header__time {
  padding-left: 6.5rem;
}

/* ヘッダーメニュー */
.header__menu-list {
  display: flex;
  align-items: center;
  border-inline: 1.5px solid var(--accentColor);
}

.header__menu-item {
  padding: 6px 12px;
  font-weight: 700;
}
.header__menu-item + .header__menu-item {
  border-left: 1px solid var(--accentColor);
}

.header__menu-item a {
  padding: 2px 4px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.header__menu-item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--mainColor);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.header__menu-item a:hover {
  color: var(--mainColor);
}
.header__menu-item a:hover::after {
  transform: scale(1, 1);
}

.header__menu-item__triangle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #cdad61 #cdad61 transparent transparent;
  transform: rotate(135deg);
  margin-left: 0.2rem;
  margin-bottom: 0.4rem;
}

.header__submenu {
  display: none;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--baseColor);
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: opacity 0.3s;
}

.header__submenu.change-color {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.header__menu-item {
  position: relative;
}

.header__menu-item:hover .header__submenu {
  display: block;
  opacity: 1;
}

/* サブメニューのスタイル調整 */
.header__submenu li {
  padding: 8px 32px;
  position: relative;
}
.header__submenu li::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background-color: #cdad61;
}

.header__submenu li a {
  text-decoration: none;
  color: var(--taxtColor);
  display: block;
}

/* ハンバーガーメニュー */
.header__menu-toggle {
  width: 8rem;
  height: 8rem;
  background-color: var(--accentColor);
  position: fixed;
  top: 0;
  right: 4rem;
  z-index: 50;
  cursor: pointer;
  transition: 0.3s;
  z-index: 99;
}

.header__menu-box {
  width: 8rem;
  height: 8rem;
  background-color: #9d8752;
  position: absolute;
  top: 0;
  right: 4rem;
  transform: rotate(-16.22deg);
  z-index: 30;
}

.header__menu-toggle span {
  width: 1.9rem;
  height: 2.25px;
  background: var(--whiteColor);
  border-radius: 1.5px;
  position: absolute;
  top: 63px;
  left: 3rem;
  transition: 0.3s ease-in-out;
}

.header__menu-text {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: bold;
  color: var(--whiteColor);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header__menu-text.hide {
  opacity: 0;
  transform: translateY(-10px);
}

.header__menu-toggle span:nth-child(1) {
  top: 45px;
}

.header__menu-toggle span:nth-child(2) {
  top: 51px;
}

.header__menu-toggle span:nth-child(3) {
  top: 57px;
}

.header__menu-toggle.active span:nth-child(1) {
  display: none;
}

.header__menu-toggle.active span:nth-child(3) {
  top: 57px;
  transform: rotate(-45deg);
}

.header__menu-toggle.active span,
.header__menu-toggle.active span:nth-child(2) {
  top: 57px;
  transform: rotate(45deg);
}

#menu-header {
  background-color: #fffdf7;
  padding: 15rem;
  padding-bottom: 30rem;
  border-radius: 0 0 0 4rem;
  width: 48rem;
  position: fixed;
  top: 0;
  right: -100rem;
  z-index: 20;
  transition: right 0.5s ease-in-out;
}

#menu-header.active {
  right: 0;
}

.menu-header__icon-image {
  width: 3.3rem;
  height: 3.3rem;
}

.menu-header__icon-image img {
  margin-right: 1.6rem;
}

.menu-header__content {
  margin-top: 1rem;
}

.menu-list__item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: var(--font18);
  color: var(--taxtColor);
  margin-top: 2.5rem;
}

.menu-list__button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font18);
  color: var(--taxtColor);
  display: flex;
  align-items: center;
  margin-left: 1.6rem;
  white-space: nowrap;
}

.menu-list__item-text {
  margin-left: 1.6rem;
  white-space: nowrap;
}

.menu-list__triangle {
  margin-left: 0.5rem;
}

.menu-list__triangle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #cdad61 #cdad61 transparent transparent;
  transform: rotate(135deg);
  margin-left: 1rem;
  margin-bottom: 0.4rem;
}

.sub-menu {
  font-size: var(--font16);
  font-family: "Zen Kaku Gothic New", serif;
  color: var(--taxtColor);
  display: flex;
  flex-direction: column;
  align-items: self-start;
  margin-left: 3em;
  white-space: nowrap;
}

.sub-menu__item {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.sub-menu__item:last-child {
  margin-bottom: 0;
}

.sub-menu__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background-color: #cdad61;
}

#mask {
  display: none;
  transition: 0.5s;
}

#mask.active {
  width: 100%;
  height: 100%;
  background-color: #484848;
  cursor: pointer;
  display: block;
  opacity: 0.69;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header__menu-toggle-sp {
  display: none;
}

.header__menu-toggle,
.header__menu-box {
  display: none;
}

@media (max-width: 1200px) {
  .header__menu-pc {
    display: none;
  }
  .header__menu-toggle,
  .header__menu-box {
    display: block;
  }
  .header__buttons {
    margin-right: 12rem;
  }
  .header__time {
    margin-right: 3rem;
  }
}

/*--------------------------------
    メインビジュアル
--------------------------------*/
#mainvisual {
  margin-top: 8rem;
  position: relative;
}

#mainvisual img {
  width: 100%;
}

#mainvisual::after {
  background: rgba(66, 66, 66, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

#mv {
  position: relative;
}

#mv::before {
  position: absolute;
  content: "";
  background: url(../img/mainvisual-bg1.png) no-repeat center center/contain;
  width: 5.83%;
  height: 6.4%;
  right: 36.7%;
  top: 86%;
  z-index: 2;
}

#mv::after {
  position: absolute;
  content: "";
  background: url(../img/mainvisual-bg2.png) no-repeat center center/contain;
  width: 8.5%;
  height: 7.8%;
  right: 4.16%;
  top: 22.5%;
  z-index: 2;
}

.mv-catch {
  position: absolute;
  top: 56px;
  right: 18%;
  width: 184px;
  height: auto;
}

.mv-catch img {
  width: 100%;
  height: 100%;
}

.mv-catch_pc-img {
  display: block;
}

.mv-catch_sp-img {
  display: none;
}

.mv-text-bottom {
  position: absolute;
  top: 72.5%;
  right: 12.5%;
  letter-spacing: 8px;
  color: var(--baseColor);
  font-family: "HonokaShinMincho", "serif";
  z-index: 5;
}

.text-bottom_bg {
  position: absolute;
  width: 480px;
  height: 190px;
  top: 67%;
  right: 9%;
  z-index: 2;
  filter: blur(50px);
}

.text-bottom_bg img {
  width: 100%;
  height: 100%;
}

.mv-text-bottom .text-top {
  font-size: var(--font20);
  font-weight: 300;
}

.mv-text-bottom .text-bottom {
  font-size: 40px;
  margin-top: 1rem;
  font-weight: 300;
}

/* 最新のお知らせ */

.info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  position: relative;
  border-bottom: 1.5px dotted #baa393;
  transition: all 0.3s;
}

.info-bar:hover {
  opacity: 0.7;
}

.info-button {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  background-color: var(--mainColor);
  color: var(--baseColor);
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  margin-right: 3rem;
  font-size: 1.6rem;
  cursor: pointer;
}

.info-date {
  font-family: "Lato", serif;
  font-weight: 500;
  margin-right: 2rem;
  font-size: 1.8rem;
  color: var(--taxtColor);
}

.info-text {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--taxtColor);
  margin: 0;
  margin-right: 2rem;
  margin-bottom: 0.2rem;
  position: relative;
}

.info-text::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url(../img/arrow-rignt.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

/* @media (min-width: 1499px) {
  .info-button,
  .info-date {
    font-size: 1.4rem;
  }

  .info-text {
    font-size: 1.6rem;
  }
} */

/*--------------------------------
    トップ／効能
--------------------------------*/

#efficacy-section {
  font-family: "Zen Old Mincho", serif;
  margin: 11.5rem auto 0;
  padding: 0 2.5rem;
  box-sizing: content-box;
  text-align: center;
  position: relative;
}

.efficacy-section__title {
  font-size: var(--font22);
  color: var(--mainColor);
  letter-spacing: 0.16em;
  margin-bottom: 3.2rem;
}

.efficacy-section__description {
  font-size: var(--font16);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.16em;
  color: var(--taxtColor);
  margin-bottom: 4rem;
}

.efficacy-bg {
  position: absolute;
}

.efficacy-bg-left {
  width: 38.5rem;
  top: 5rem;
  left: -8rem;
  bottom: 1.5rem;
}

.sp-efficacy-bg-left {
  display: none;
}

.efficacy-section-image {
  margin-top: 64px;
  padding-inline: 25px;
  text-align: center;
}

.efficacy-section-image img {
  max-width: 650px;
  margin-inline: auto;
}

.efficacy-section-flex {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.efficacy-section-text {
  width: 50%;
}

@media (max-width: 1200px) {
  .efficacy-bg-left {
    width: 30rem;
    left: 0;
  }

  .efficacy-bg-right {
    width: 25rem;
    right: 0;
  }
}

@media (max-width: 1000px) {
  .efficacy-bg-left {
    display: none;
  }

  .efficacy-section-flex {
    flex-direction: column;
    align-items: center;
    gap: 7rem;
  }

  .efficacy-section-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #efficacy-section {
    margin-top: 8rem;
  }
}

@media (max-width: 599px) {
  .sp-efficacy-bg-left {
    display: block;
    max-width: 13rem;
    bottom: -5rem;
  }

  .efficacy-section-flex {
    gap: 6rem;
  }
}

@media (max-width: 499px) {
  #efficacy-section {
    margin-top: 5.5rem;
  }

  .efficacy-section__description {
    text-align: left;
  }

  .pc-only {
    display: none;
  }

  .sp-efficacy-bg-left {
    display: block;
    max-width: 11rem;
    left: 0;
    bottom: -5rem;
  }
}

/*--------------------------------
    トップ／楽しみ方
--------------------------------*/
.enjoy-onsen__title {
  display: inline-block;
  text-align: center;
  font-family: "Zen Old Mincho";
  color: var(--taxtColor);
  font-size: var(--font22);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 6.6px;
  margin-bottom: 6rem;
}

#enjoy-onsen {
  position: relative;
  margin-top: 17rem;
  text-align: center;
}

.enjoy-onsen__container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2.5rem;
  box-sizing: content-box;
}

.enjoy-onsen__item-wrap {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.enjoy-onsen__item-wrap:nth-of-type(2) {
  margin-top: 2.5rem;
}

.enjoy-onsen__item {
  position: relative;
  width: 80%;
  border-radius: 1rem;
  overflow: hidden;
}

.enjoy-onsen__image {
  width: 100%;
  height: auto;
  opacity: 1;
  mix-blend-mode: multiply;
}

.enjoy-onsen__image-label {
  position: absolute;
  top: 0;
  left: 3.6rem;
  background-color: #ad6060;
  color: var(--whiteColor);
  padding: 2.2rem 1.7rem;
  font-size: var(--font20);
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  z-index: 99;
}

.enjoy-onsen__image {
  width: 100%;
  height: auto;
}

.enjoy-onsen__subtitle {
  font-size: 20px;
  letter-spacing: 0.16em;
  color: var(--taxtColor);
  position: relative;
  margin-left: 2rem;
}

.enjoy-onsen__subtitle::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 33px;
  background: #ad6060;
  left: -1.9rem;
}

.enjoy-onsen__details {
  text-align: left;
}

.enjoy-onsen__text {
  margin-top: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.16em;
  color: var(--taxtColor);
}

.enjoy-onsen__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 44px;
  border-radius: 100px;
  border: 2px solid var(--taxtColor);
  color: var(--taxtColor);
  background: var(--whiteColor);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2.24px;
  margin-top: 4.8rem;
  transition: background-color 0.3s, color 0.3s;
}

.enjoy-onsen__link:hover {
  background: var(--mainColor);
  color: var(--whiteColor);
  border: 2px solid var(--mainColor);
}

.onsen-box__color {
  width: 100%;
  height: 2.2rem;
  background-color: #ad6060;
}

.meal-color {
  background-color: var(--mealColor);
}

.others-color {
  background-color: var(--othersColor);
}

.sp-enjoy-onsen__link {
  display: none;
}

.item-wrap-sp {
  display: none;
}

/*--------------------------------
    トップ／取り組み
--------------------------------*/

#attempt-section {
  margin-top: 12rem;
  text-align: center;
}

/*--------------------------------
    トップ／インスタ
--------------------------------*/

#insta-section {
  margin-top: 18.5rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url(../img/insta-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

#insta-section::before {
  content: "";
  display: block;
  background-image: url(../img/insta-bg-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 5rem;
  position: absolute;
  top: -5rem;
  left: 0;
}

#insta-section::after {
  content: "";
  display: block;
  background-image: url(../img/insta-bg-bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 10rem;
  position: absolute;
  bottom: -5rem;
  left: 0;
}

.insta-inner {
  max-width: 722px;
  margin: 0 auto;
  padding: 0 2.5rem;
  box-sizing: content-box;
  text-align: center;
}

.insta-section__title {
  text-align: center;
  margin-bottom: 7rem;
  padding-bottom: 0.5rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.insta-button {
  margin-top: 6rem;
  position: relative;
  display: flex;
  align-items: center;
  margin-inline: auto;
  gap: 1.5rem;
  padding: 1rem 3rem;
}

.insta-button svg {
  fill: var(--baseColor);
  transition: fill 0.3s;
}

.insta-button:hover svg {
  fill: var(--mainColor);
}

.insta-bg-right img {
  width: 34.4rem;
  position: absolute;
  top: 10rem;
  right: 7rem;
}

.insta-bg-left img {
  width: 34.4rem;
  position: absolute;
  left: 10rem;
  bottom: 10rem;
}

/*--------------------------------
    トップ／アクセス
--------------------------------*/

#access-section {
  margin-top: 19rem;
  text-align: center;
}

.access-section__title {
  margin-bottom: 0;
}

.access-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2.5rem;
  padding-bottom: 10rem;
  box-sizing: content-box;
  color: var(--taxtColor);
}

.about-map-box {
  margin-top: 6rem;
  width: 100%;
  height: 35rem;
}

.access-contact-info {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Zen Kaku Gothic New", serif;
  padding-top: 4rem;
}

.access-address {
  display: flex;
  align-items: center;
  text-align: left;
}

.access-label__text {
  font-size: var(--font20);
  color: var(--taxtColor);
  letter-spacing: 0.16em;
}

.access-details__text,
.access-tel__text {
  font-size: var(--font16);
  font-weight: 500;
  color: var(--mainColor);
  letter-spacing: 0.16em;
}

.access-details__text span,
.access-tel__text span {
  font-family: "Lato", serif;
}

.access-label {
  margin-right: 3.2rem;
}

.access-separator {
  width: 2px;
  height: 57px;
  background-color: var(--accentColor);
}

.access-map-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  margin-top: 11rem;
}

.access-map {
  position: relative;
  width: 45%;
}

.access-map-image {
  width: 100%;
  height: auto;
}

.access-info {
  width: 46%;
}

.access-transport {
  margin-bottom: 48px;
}

.access-transport-heading {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3.2px;
}
.access-text {
  margin-top: 14px;
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-align: left;
}

.access-icon_car {
  width: 28px;
  height: 25px;
}
.access-icon_train {
  width: 26px;
  height: 30px;
}

.access-text a {
  color: var(--mainColor);
  transition: all 0.3s;
}
.access-text p a:hover {
  opacity: 0.7;
}

/*--------------------------------
    利用料金バナー
--------------------------------*/
#onsen-banner {
  margin-top: 2rem;
  margin-bottom: 20rem;
}

.onsen-banner__content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
  transition: opacity 0.3s ease;
}

.onsen-banner__content:hover {
  opacity: 0.8;
}

/* .customer_harassment-content {
  margin-top: 6.5rem;
} */

/*--------------------------------
    フッター
--------------------------------*/

#footer {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  padding-top: 1rem;
  padding-bottom: 9rem;
  position: relative;
}

#footer::before {
  content: "";
  display: block;
  background-image: url(../img/footer-bg-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 6rem;
  position: absolute;
  top: -5rem;
  left: 0;
}

.footer__content {
  font-family: "Zen Kaku Gothic New", serif;
  max-width: 770px;
  margin: 0 auto;
  margin-top: 3rem;
  padding: 0 2rem;
  box-sizing: content-box;
}

.footer__logo-title {
  font-size: 3.2rem;
  font-family: "HonokaShinMincho", "serif";
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-top: 1.5rem;
  border-bottom: 3px solid #fff;
}

.footer__logo-image {
  width: 106px;
  height: 106px;
}

.footer__logo_list dt {
  width: 30%;
  padding: 7.5px 0;
  letter-spacing: 0.1em;
}

.footer__logo_list dd {
  width: 70%;
  padding: 7.5px 0;
  letter-spacing: 0.1em;
}

.footer__logo_list {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--whiteColor);
  margin-top: 7.5px;
}

.footer__info-list {
  display: flex;
  justify-content: space-between;
}

.footer__info-item {
  width: 42%;
  text-align: center;
}

.footer__company {
  margin-top: 6.5rem;
  display: flex;
  justify-content: center;
}

.footer__company-text {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.1;
  text-align: left;
}

.info-num {
  font-size: 1.7rem;
  font-family: "Lato", serif;
  font-weight: bold;
}

.access-tel__text .info-font {
  font-family: "Zen Kaku Gothic New", serif;
}

.footer__tel-link {
  color: #fff;
}

.font-b {
  font-weight: bold;
}

.customer_harassment {
  margin-top: 32px;
  text-align: center;
}
.customer_harassment a {
  text-decoration: underline;
  color: #fff;
  font-size: 1.4rem;
  transition: opacity 0.3s;
}
.customer_harassment a:hover {
  opacity: 0.7;
}

/* フローティングバナー */
.floating-banner {
  position: fixed;
  bottom: 80px;
  left: 40px;
  z-index: 9999;
}

.floating-banner__pc {
  transition: opacity 0.5s ease;
  opacity: 1;
}
.floating-banner__pc.hidden {
  opacity: 0;
  pointer-events: none;
}

.floating-banner__pc img {
  max-width: 15.4rem;
  height: auto;
}

.floating-banner__sp {
  display: none;
}

.floating-banner__pc img {
  transition: transform 0.3s ease-in-out;
}

.floating-banner__pc img:hover {
  transform: scale(1.1);
}

/*----------------------------------------
    SP版 ヘッダー
-----------------------------------------*/

@media (max-width: 1300px) {
  #menu-header {
    padding: 10rem;
    padding-bottom: 20rem;
    width: 36rem;
  }

  .text-bottom_bg {
    display: none;
  }
}

@media (max-width: 1100px) {
  #menu-header {
    padding: 8rem;
    padding-bottom: 15rem;
    width: 33rem;
  }
}

@media (max-width: 900px) {
  #menu-header {
    padding: 8rem;
    padding-bottom: 10rem;
    width: 33rem;
  }

  .header__buttons {
    margin-right: 12rem;
  }
}

@media (max-width: 768px) {
  .header__menu-text {
    display: none;
  }

  .header__button {
    background-color: unset;
    padding: 0;
    padding-left: 4rem;
    outline: none;
    outline-offset: 0;
    color: var(--mainColor);
    margin-bottom: 0.5rem;
  }

  .header__phone a {
    color: var(--mainColor);
  }

  .header__button::before {
    width: 2.8rem;
    height: 2.8rem;
    left: 2.2rem;
    background-image: url(../img/sp-open-hours-icon.svg);
  }

  .header__phone::before {
    background-image: url(../img/sp-tell-icon.svg);
    width: 1.8rem;
    height: 1.8rem;
    left: 2rem;
  }

  .header__buttons {
    margin-right: 4rem;
  }

  .header__time {
    margin-right: 0;
    margin-bottom: 0;
  }

  .header,
  .header__inner {
    height: 5.5rem;
  }

  .header__menu-toggle {
    width: 5.5rem;
    height: 5.5rem;
    right: 0;
  }

  .header__menu-toggle span {
    top: 27px;
    left: 2rem;
  }

  .header__menu-toggle span:nth-child(1) {
    top: 36px;
  }

  .header__menu-toggle span:nth-child(2) {
    top: 19px;
  }

  .header__menu-toggle span:nth-child(3) {
    top: 35px;
  }

  .header__menu-toggle.active span,
  .header__menu-toggle.active span:nth-child(2) {
    top: 27px;
    transform: rotate(45deg);
  }

  .header__menu-toggle.active span:nth-child(3) {
    top: 27px;
    transform: rotate(-45deg);
  }

  .header__menu-box {
    width: 5.5rem;
    height: 5.5rem;
    right: 0;
  }

  #menu-header {
    padding-bottom: 5rem;
  }

  #menu-header {
    width: 100%;
    height: 570px;
    border-radius: 0 0 4rem 4rem;
    padding: 10rem 4rem;
  }

  .menu-header__content {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .header__logo {
    max-width: 10rem;
  }

  .header__buttons {
    margin-right: 5.5rem;
  }

  .header__buttons {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .header__inner {
    padding: 0 2rem;
  }
}

/*----------------------------------------
    SP メインビジュアル
-----------------------------------------*/

@media (min-width: 1699px) {
  .mv-catch {
    width: 220px;
    right: 15%;
  }
}

@media (min-width: 1899px) {
  .mv-catch {
    width: 240px;
    right: 14%;
  }
}

@media (min-width: 2199px) {
  .mv-catch {
    width: 260px;
    right: 13%;
  }
}

@media (max-width: 1300px) {
  .mv-catch {
    top: 15px;
    width: 170px;
  }

  .mv-text-bottom .text-bottom {
    margin-top: 0rem;
  }

  .text-bottom_bg {
    width: 390px;
    height: 125px;
    top: 73%;
  }

  .floating-banner__pc img {
    max-width: 12rem;
  }
}

@media (max-width: 1100px) {
  .mv-catch {
    width: 160px;
  }

  .text-bottom_bg {
    height: 105px;
    top: 75%;
  }

  .mv-text-bottom {
    right: 11%;
    top: 75%;
  }

  .mv-text-bottom .text-top {
    font-size: var(--font18);
  }

  .mv-text-bottom .text-bottom {
    font-size: 32px;
  }

  .floating-banner__pc img {
    max-width: 11rem;
  }
}

@media (max-width: 1000px) {
  .mv-catch {
    width: 150px;
  }

  .text-bottom_bg {
    height: 100px;
    top: 73%;
  }

  .mv-text-bottom {
    top: 75%;
    right: 10%;
  }
}

@media (max-width: 900px) {
  .mv-catch {
    top: 5px;
    width: 135px;
  }

  .text-bottom_bg {
    height: 90px;
    right: 0;
    top: 72%;
  }

  .mv-text-bottom .text-top {
    font-size: var(--font16);
  }

  .mv-text-bottom .text-bottom {
    font-size: 28px;
  }

  .info-date,
  .info-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  #mainvisual {
    margin-top: 5.5rem;
  }

  #mainvisual img {
    width: 100%;
    height: 576px;
  }

  #mv::before {
    display: none;
  }

  #mv::after {
    display: none;
  }

  .mv-catch {
    top: 50px;
    right: 8.5%;
    width: 131px;
    height: auto;
  }

  .mv-catch img {
    width: 100%;
  }
  .mv-catch_pc-img {
    display: none;
  }

  .mv-catch_sp-img {
    display: block;
  }

  .mv-text-bottom {
    top: 62%;
    right: 3.84%;
    letter-spacing: 5.6px;
  }

  .mv-text-bottom .text-top {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .info-bar {
    /* max-width: 500px; */
    width: 100%;
    height: 120px;
    box-shadow: 0 2px 8px 0;
    position: absolute;
    background: var(--baseColor);
    right: 0;
    bottom: 0;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    flex-direction: column;
    align-items: self-start;
    padding-inline: 2rem;
    padding-block: 1rem;
  }

  .info-button {
    font-family: "Zen Kaku Gothic New";
    margin-right: 0;
    margin-left: 1.5rem;
    padding: 0.2rem 2.5rem;
    margin-bottom: 0.8rem;
  }

  .info-date,
  .info-text {
    margin-top: 0.2rem;
    padding-left: 2rem;
  }

  .info-date {
    font-size: 1.4rem;
  }

  .info-text {
    font-size: 1.6rem;
  }

  .info-text::after {
    right: -3rem;
  }

  .efficacy-section__description {
    text-align: left;
    letter-spacing: 0.14rem;
    font-size: 1.4rem;
    line-height: 24px;
    /* 171.429% */
    margin-bottom: 3.5rem;
  }

  .efficacy-section__title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2.56px;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 599px) {
  .info-date {
    font-size: 1.2rem;
  }

  .info-text {
    font-size: 1.4rem;
  }
}

/*----------------------------------------
    SP 楽しみ方
-----------------------------------------*/
@media (max-width: 768px) {
  .enjoy-onsen__item {
    width: 70%;
  }
}

@media (max-width: 767px) {
  #enjoy-onsen {
    margin-top: 10rem;
  }

  .enjoy-onsen__link {
    display: none;
  }

  .enjoy-onsen__title {
    font-size: 1.6rem;
    letter-spacing: 4.8px;
    margin-bottom: 7rem;
  }

  .enjoy-onsen__item-wrap {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .sp-enjoy-onsen__link {
    font-family: "Zen Kaku Gothic New", serif;
    color: var(--taxtColor);
    letter-spacing: 0.16em;
    display: block;
    position: absolute;
    bottom: -3rem;
    right: 0;
    text-decoration: underline;
  }

  .enjoy-onsen__item {
    width: 100%;
    margin-top: 2rem;
  }

  .enjoy-onsen__item-wrap:nth-of-type(2) {
    display: none;
  }

  .sp-enjoy-onsen__item-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }

  .item-wrap-sp {
    display: flex;
    align-items: start;
    margin-top: 8rem;
  }

  .meal-label,
  .meal-sub::before {
    background-color: var(--mealColor);
  }

  .others-label,
  .others-sub::before {
    background-color: var(--othersColor);
  }
}

@media (max-width: 499px) {
  #enjoy-onsen {
    margin-top: 6rem;
  }

  .enjoy-onsen__title {
    margin-bottom: 5.5rem;
  }

  .enjoy-onsen__image-label {
    padding: 1.4rem 1.7rem;
    left: 3rem;
  }

  .item-wrap-sp {
    margin-top: 6rem;
  }
}

/*--------------------------------
    SP 取り組み
--------------------------------*/

@media only screen and (max-width: 767px) {
  #attempt-section {
    margin-top: 9rem;
  }

  .attempt-title {
    display: none;
  }
}

@media only screen and (max-width: 499px) {
  #attempt-section {
    margin-top: 6rem;
  }
}

/*----------------------------------------
    SP インスタ
-----------------------------------------*/

@media (max-width: 1300px) {
  .insta-bg-right img {
    width: 25rem;
    right: 5rem;
  }

  .insta-bg-left img {
    width: 25rem;
    left: 5rem;
  }
}

@media (max-width: 950px) {
  .insta-bg-right img {
    width: 18rem;
  }

  .insta-bg-left img {
    width: 18rem;
  }
}

@media (max-width: 768px) {
  .insta-bg-right img,
  .insta-bg-left img {
    display: none;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #insta-section::before {
    background-image: url(../img/sp-instaBg-top.png);
  }
}

@media (max-width: 499px) {
  #insta-section {
    margin-top: 12rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .insta-section__title {
    margin-bottom: 5rem;
  }

  .insta-grid {
    gap: 8px;
  }

  .insta-button {
    margin-top: 4rem;
  }

  #insta-section::after {
    background-image: url(../img/sp-instaBg-bottom.png);
    height: 5rem;
  }
}

/*----------------------------------------
    SP アクセス
-----------------------------------------*/
@media screen and (max-width: 768px) {
  .access-separator {
    display: none;
  }

  .access-contact-info {
    flex-direction: column;
  }

  .access-address:last-of-type {
    margin-top: 2.4rem;
  }

  .access-map-container {
    flex-direction: column;
    margin-top: 5rem;
    padding: 0;
  }

  .access-map {
    width: 50%;
  }

  .access-info {
    width: 50%;
    padding-left: 0;
    margin-top: 4rem;
  }

  .access-transport {
    margin-bottom: 24px;
  }

  .access-transport-heading {
    display: flex;
    align-items: center;
    gap: 17px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3.2px;
  }
  .access-text {
    margin-top: 14px;
    font-family: "Zen Kaku Gothic New";
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.6px;
    text-align: left;
  }

  .access-icon_car {
    width: 28px;
    height: 25px;
  }
  .access-icon_train {
    width: 26px;
    height: 30px;
  }

  .access-text a {
    color: var(--mainColor);
    transition: all 0.3s;
  }
  .access-text p a:hover {
    opacity: 0.7;
  }

  /* banner */
  #onsen-banner {
    margin-bottom: 10.5rem;
  }

  .onsen-banner__content {
    padding-inline: 2.5rem;
  }

  /* .customer_harassment-content {
    margin-top: 2.5rem;
  } */
}

@media screen and (max-width: 640px) {
  .about-map-box {
    width: 100%;
    height: 210px;
    margin-top: 0;
  }

  .enjoy-onsen__title.access-section__title {
    margin-bottom: 3.5rem;
  }

  .access-map {
    width: 70%;
  }

  .access-info {
    width: 70%;
  }
  .access-transport:nth-child(2) {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 499px) {
  .about-map-box {
    height: 130px;
  }

  .access-icon_car {
    width: 24px;
    height: 20px;
  }
  .access-icon_train {
    width: 24px;
    height: 26px;
  }

  .access-label__text,
  .access-details__text,
  .access-tel__text {
    font-size: 1.2rem;
    letter-spacing: 1.92px;
  }

  .access-address {
    margin-top: 1rem;
  }

  #access-section {
    margin-top: 11rem;
  }

  .access-map {
    width: 90%;
  }

  .access-info {
    width: 90%;
  }

  #price-banner {
    margin-bottom: 8.8rem;
  }
  .price-banner-img {
    max-width: 340px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 399px) {
  .access-map {
    width: 100%;
  }

  .access-text p {
    margin-left: -3rem;
  }
}

/*----------------------------------------
    SP版 利用料金バナー
-----------------------------------------*/

@media screen and (max-width: 499px) {
  #onsen-banner {
    margin-top: -3rem;
    margin-bottom: 16rem;
  }
}

/*----------------------------------------
    SP版 フッター
-----------------------------------------*/

@media screen and (max-width: 767px) {
  #footer {
    display: flex;
    justify-content: center;
    padding-bottom: 12rem;
  }

  .footer__content {
    padding: 0 2.5rem;
  }

  .footer__logo {
    text-align: center;
    margin-bottom: 2.4rem;
  }

  .footer__logo-title {
    display: none;
  }

  .footer__info-list {
    flex-direction: column-reverse;
    gap: 6rem;
    align-items: center;
    padding: 0 2rem;
  }

  .footer__info-item {
    width: 100%;
  }

  #footer::before {
    background-image: url(../img/sp-footer-bg.png);
  }

  .footer__logo_list {
    font-size: 1.3rem;
    font-weight: bold;
  }

  .footer__logo_list dt {
    width: 27%;
    letter-spacing: 0.2em;
  }

  .footer__company {
    padding: 0 2rem;
  }

  .footer__logo_list dd {
    letter-spacing: 0.2em;
  }

  /* フローティングバナー */
  .floating-banner__pc img {
    display: none;
  }

  .floating-banner {
    width: 100%;
    bottom: 0;
    left: 0;
  }

  .floating-banner__sp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7rem;
    background-color: #cbb584;
  }

  .floating-sp__text {
    font-family: "Zen Kaku Gothic New", serif;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    color: var(--whiteColor);
  }

  .floating-sp__image {
    margin-right: 1.5rem;
  }

  .floating-sp__image img {
    width: 4.7rem;
    height: 3.8rem;
  }
}

@media (max-width: 449px) {
  .floating-sp__text {
    font-size: 1.2rem;
  }

  .floating-banner__sp {
    height: 5rem;
  }

  .floating-sp_image {
    margin-right: 1.2rem;
  }

  .floating-sp_image img {
    width: 3.7rem;
    height: 2.8rem;
  }

  .footer__company-text {
    line-height: 1.7;
  }
}

@media screen and (max-width: 399px) {
  .footer__info-list {
    padding: 0 1rem;
  }
}
