@charset "UTF-8";
@media screen and (min-width:768px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (min-width:900px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (min-width:1280px) {
  .hidden-xl {
    display: none;
  }
}

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

html {
  scroll-behavior: smooth;
}

@media screen and (min-width:900px) {
  html {
    scroll-padding-top: 100px;
  }
}
@media screen and (min-width:1280px) {
  html {
    scroll-padding-top: 80px;
  }
}

.fadein-jquery {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadein-css {
  -webkit-animation: fadein 6s forwards;
          animation: fadein 6s forwards;
}

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

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadein-static {
  -webkit-animation: fadein-static 6s forwards;
          animation: fadein-static 6s forwards;
}

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

@keyframes fadein-static {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.inline-block {
  display: inline-block;
}

.opening {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  z-index: 10000;
  -webkit-transition: opacity 5s ease-in-out;
  transition: opacity 5s ease-in-out; /* フェードアウト用 */
  opacity: 1; /* 初期状態は完全に表示 */
}

/* フェードアウト時 */
.opening.fade-out {
  opacity: 0; /* 徐々に透明にする */
}

.steam-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.steam {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: min(2000px, 35vw);
  height: auto;
  opacity: 0.2;
  -webkit-animation: spread 7s ease-out forwards, fadeOut 8s 2s ease-out forwards;
          animation: spread 7s ease-out forwards, fadeOut 8s 2s ease-out forwards;
}

.steam-initial {
  width: 150vw;
  opacity: 0.85;
}

@-webkit-keyframes spread {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
            transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  }
}

@keyframes spread {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
            transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  }
}
@-webkit-keyframes fadeOut {
  0%, 50% {
    opacity: inherit;
  }
  90% {
    opacity: 0.05;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0%, 50% {
    opacity: inherit;
  }
  90% {
    opacity: 0.05;
  }
  100% {
    opacity: 0;
  }
}
.header-sp {
  position: fixed;
  top: 0;
  left: 0;
  background: #f8f5ed;
  width: 100%;
  z-index: 100000;
}
@media screen and (min-width:768px) {
  .header-sp {
    display: none;
  }
}

.reserve-button {
  width: 250px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  padding-block: 13px;
  border-radius: 20px;
  background: #015e12;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width:900px) {
  .reserve-button {
    width: clamp(9.375rem, -1.042rem + 18.52vw, 15.625rem);
    text-align: center;
    font-size: clamp(0.625rem, 1.11vw, 1rem);
  }
}
.reserve-button:hover {
  color: #333333;
  border: 2px solid #015e12;
  background: #fff;
}
.reserve-button:hover::after {
  background: url(../img/model/button-arrow-hover.svg) no-repeat center center/contain;
}
.reserve-button::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 15px;
  background: url(../img/model/button-arrow.svg) no-repeat center center/contain;
  right: 19.5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-sp__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 14vw;
  z-index: -1;
}

.header-sp__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 13px;
}
@media screen and (min-width:900px) {
  .header-sp__inner {
    max-width: 1380px;
    padding-inline: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header-sp__logo a img {
  width: 131px;
  display: block;
}
@media screen and (min-width:900px) {
  .header-sp__logo a img {
    width: 161px;
  }
}

.header-sp__nav {
  display: none;
}
@media screen and (min-width:900px) {
  .header-sp__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(0.625rem, -2.5rem + 5.56vw, 2.5rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width:900px) {
  .header-sp__link {
    font-family: "Hina Mincho";
    font-size: clamp(0.875rem, 0.458rem + 0.74vw, 1.125rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

@media screen and (min-width:900px) {
  .header-sp__link-en {
    color: #015e12;
    font-family: TA-koigokoro;
    font-size: 14px;
  }
}

.drawer-icon {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 5100;
}
.drawer-icon.is-checked {
  width: 33.941px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #333333;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 2px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 14px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 26px;
}

.drawer__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #f8f5ed;
  z-index: 5000;
  padding: 80px 25px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer__content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-block: 12px;
  gap: 24px;
  text-align: center;
  font-family: "Hina Mincho", serif;
}

.drawer-content__button {
  margin-top: 48px;
  text-align: center;
}
.drawer-content__button .reservation-button {
  width: 250px;
}

.reservation-button {
  display: inline-block;
  background-color: #015e12;
  color: #fff;
  height: 53px;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 160px;
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  font-size: 14px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.reservation-button svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(50% + 95px);
  scale: 0.8;
}
.reservation-button svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width:1280px) {
  .reservation-button {
    font-size: 16px;
    width: 250px;
  }
  .reservation-button svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    scale: 1;
  }
}
.reservation-button:hover {
  display: inline-block;
  color: #333333;
  background-color: #fff;
  height: 53px;
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  font-size: 14px;
  border: 2px solid #015e12;
}
.reservation-button:hover path {
  stroke: #333333;
}
@media screen and (min-width:1280px) {
  .reservation-button:hover {
    font-size: 16px;
    width: 250px;
  }
  .reservation-button:hover svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 27px;
    scale: 1;
  }
}
@media screen and (max-width: 1279px) {
  .reservation-button.is-option svg {
    display: none;
  }
}

.inner {
  max-width: 640px;
  padding-inline: 20px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .inner {
    max-width: 1240px;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #f8f5ed;
  min-width: 375px;
}
body.is-checked {
  overflow: hidden;
}
@media screen and (min-width:768px) {
  body {
    font-size: 16px;
  }
}

.section-title {
  text-align: center;
}
.section-title__main {
  font-family: "Hina Mincho", serif;
  font-size: 32px;
}
.section-title__sub {
  font-family: "ta-koigokoro", sans-serif;
  font-size: 18px;
  margin-top: 8px;
}

.fv {
  max-width: 1440px; /* 親要素に対する最大幅を指定 */
  margin: 0 auto; /* 要素を中央揃えにする場合 */
  position: relative;
  overflow: hidden;
}
.fv::before {
  content: "";
  position: absolute;
  z-index: 500;
  background: url(../img/sp/fv__title.png) no-repeat top center/contain;
  width: 93.3333333333%;
  height: 50.3076923077%;
  top: 161px;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
}
@media screen and (min-width: 768px) {
  .fv::before {
    background: url(../img/fv__title.png) no-repeat top center/contain;
    width: 43.8194444444%;
    height: 80%;
    top: 50%;
    left: 29.1666666667%;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
}

.fv-picture img {
  width: 100%; /* 画像が親要素の幅に合わせて拡大・縮小 */
  height: auto; /* アスペクト比を維持しながら高さを調整 */
}

@-webkit-keyframes steam01 {
  0% {
    bottom: -600px;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform: scale(0.6, 1);
            transform: scale(0.6, 1);
    opacity: 0;
  }
  11% {
    opacity: 0.1;
  }
  33% {
    -webkit-transform: rotateY(40deg);
            transform: rotateY(40deg);
    -webkit-transform: scale(1, 1.4);
            transform: scale(1, 1.4);
    opacity: 0.5;
  }
  66% {
    -webkit-transform: rotateY(10deg);
            transform: rotateY(10deg);
    -webkit-transform: scaleY(1.8, 1);
            transform: scaleY(1.8, 1);
    opacity: 0.4;
  }
  100% {
    bottom: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: rotateY(60deg);
            transform: rotateY(60deg);
    -webkit-transform: scaleY(2, 1.8);
            transform: scaleY(2, 1.8);
    opacity: 0;
  }
}

@keyframes steam01 {
  0% {
    bottom: -600px;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform: scale(0.6, 1);
            transform: scale(0.6, 1);
    opacity: 0;
  }
  11% {
    opacity: 0.1;
  }
  33% {
    -webkit-transform: rotateY(40deg);
            transform: rotateY(40deg);
    -webkit-transform: scale(1, 1.4);
            transform: scale(1, 1.4);
    opacity: 0.5;
  }
  66% {
    -webkit-transform: rotateY(10deg);
            transform: rotateY(10deg);
    -webkit-transform: scaleY(1.8, 1);
            transform: scaleY(1.8, 1);
    opacity: 0.4;
  }
  100% {
    bottom: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: rotateY(60deg);
            transform: rotateY(60deg);
    -webkit-transform: scaleY(2, 1.8);
            transform: scaleY(2, 1.8);
    opacity: 0;
  }
}
@-webkit-keyframes steam02 {
  0% {
    bottom: -400px;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
    opacity: 0;
  }
  11% {
    opacity: 0.1;
  }
  33% {
    -webkit-transform: rotateY(40deg);
            transform: rotateY(40deg);
    -webkit-transform: scale(0.8, 1);
            transform: scale(0.8, 1);
    opacity: 0.4;
  }
  66% {
    -webkit-transform: rotateY(2deg);
            transform: rotateY(2deg);
    -webkit-transform: scaleY(1, 1.2);
            transform: scaleY(1, 1.2);
  }
  100% {
    bottom: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: rotateY(50deg);
            transform: rotateY(50deg);
    -webkit-transform: scaleY(1.2, 1.4);
            transform: scaleY(1.2, 1.4);
    opacity: 0;
  }
}
@keyframes steam02 {
  0% {
    bottom: -400px;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
    opacity: 0;
  }
  11% {
    opacity: 0.1;
  }
  33% {
    -webkit-transform: rotateY(40deg);
            transform: rotateY(40deg);
    -webkit-transform: scale(0.8, 1);
            transform: scale(0.8, 1);
    opacity: 0.4;
  }
  66% {
    -webkit-transform: rotateY(2deg);
            transform: rotateY(2deg);
    -webkit-transform: scaleY(1, 1.2);
            transform: scaleY(1, 1.2);
  }
  100% {
    bottom: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: rotateY(50deg);
            transform: rotateY(50deg);
    -webkit-transform: scaleY(1.2, 1.4);
            transform: scaleY(1.2, 1.4);
    opacity: 0;
  }
}
.steamWrap {
  width: 740px;
  margin: 100px auto 0;
}

.steamBox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.steamBox > img {
  width: 100%;
  display: block;
}

.steam01 {
  position: absolute;
  right: 0;
  -webkit-animation: steam01 10s infinite ease;
          animation: steam01 10s infinite ease;
  opacity: 0;
}

.steam02 {
  position: absolute;
  left: 0;
  -webkit-animation: steam02 14s infinite ease;
          animation: steam02 14s infinite ease;
  opacity: 0;
}

.steam03 {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  -webkit-animation: steam02 12s infinite ease;
          animation: steam02 12s infinite ease;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  opacity: 0;
}

.steam01 img,
.steam03 img {
  width: 532px;
  height: 800px;
}

.steam02 img {
  width: 399px;
  height: 600px;
}

#header-pc,
#header-pc-top {
  display: none;
}

@media (min-width: 900px) {
  #header-pc,
  #header-pc-top {
    display: block;
  }
}
.header-pc {
  width: 100%;
}
@media screen and (min-width:900px) {
  .header-pc {
    background: #f8f5ed;
    height: 100px;
    padding-block: 27.5px;
    z-index: 6000;
  }
}

.header-pc__inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.header-pc__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-pc__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header-pc__item:nth-child(-n+4) {
  border-right: 2px dashed #015e12;
}

.header-pc__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header-pc__link-ja {
  font-family: "Hina Mincho", serif;
  font-size: 20px;
}
.header-pc__link-en {
  color: #015e12;
  font-family: "ta-koigokoro", sans-serif;
}
.header-pc__link:hover {
  opacity: 50%;
}

.header-pc.top {
  width: 100%;
}
.header-pc.top .header-pc__inner {
  max-width: 1361px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
}
@media screen and (min-width:1280px) {
  .header-pc.top .header-pc__inner {
    gap: 96px;
  }
}
.header-pc.top .header-pc__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.header-pc.top .header-pc__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header-pc.top .header-pc__link-ja {
  font-size: 15px;
}
@media screen and (min-width:1280px) {
  .header-pc.top .header-pc__link-ja {
    font-size: 16px;
  }
}
.header-pc.top .header-pc__link-en {
  font-size: 14px;
}
.header-pc.top .header-pc__link:hover {
  opacity: 50%;
}
.header-pc.top .header-pc__logo {
  width: 130px;
}
@media screen and (min-width:1280px) {
  .header-pc.top .header-pc__logo {
    width: 161px;
  }
}
.header-pc.top .header-pc__logo img {
  display: block;
  width: 100%;
}
.header-pc.top .header-pc__item:nth-child(-n+4) {
  border-right: none;
}

.campaign {
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width:1280px) {
  .campaign {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.campaign::before, .campaign::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: 0;
  height: 2px; /* 線の太さ */
  background-color: #c29115; /* 線の色 */
  z-index: -100;
  width: 100%;
}
@media screen and (min-width:768px) {
  .campaign::before, .campaign::after {
    width: 1200px;
    max-width: 100%;
  }
}
.campaign::before {
  top: 198px;
  -webkit-box-shadow: 0 4px 0 0 #c29115;
          box-shadow: 0 4px 0 0 #c29115;
}
@media screen and (min-width:768px) {
  .campaign::before {
    top: 230px;
  }
}
.campaign::after {
  top: 456px;
  -webkit-box-shadow: 0 -4px 0 0 #c29115;
          box-shadow: 0 -4px 0 0 #c29115;
}
@media screen and (min-width:768px) {
  .campaign::after {
    top: 382px;
  }
}

.campaign__content {
  margin-top: 48px;
}
@media screen and (min-width:768px) {
  .campaign__content {
    margin-top: 58px;
  }
}

.campaign__period-title {
  position: relative;
  height: 35px;
  width: 100%;
}
@media screen and (min-width:768px) {
  .campaign__period-title {
    height: 45px;
  }
}
.campaign__period-title-text {
  font-family: "Hina Mincho", serif;
  font-size: 24px;
  padding-inline: 20px;
  background: #f8f5ed;
  display: inline-block;
  position: absolute;
  top: 0;
  right: calc(50% - 30px);
  width: 184px;
}
@media screen and (min-width:768px) {
  .campaign__period-title-text {
    font-size: 32px;
    width: 272px;
    padding-inline: 40px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.campaign__period-title::before {
  content: "";
  width: 120px;
  height: 120px;
  background: url(../img/stamp.png) no-repeat top center/contain;
  position: absolute;
  top: -42px;
  left: calc(50% + 54px);
}
@media screen and (min-width:768px) {
  .campaign__period-title::before {
    left: calc(50% + 150px);
  }
}
@media screen and (min-width:1280px) {
  .campaign__period-title::before {
    width: 200px;
    height: 200px;
    left: calc(50% + 375px);
    top: -75px;
  }
}

.campaign__period-number {
  color: #015e12;
  font-family: "Hina Mincho", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  margin-top: 10px;
}
.campaign__period-number .dot {
  margin-inline: 4px;
}
@media screen and (min-width:768px) {
  .campaign__period-number .dot {
    margin-inline: 0;
    margin-right: 2px;
  }
}
@media screen and (min-width:768px) {
  .campaign__period-number {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 120px;
  }
}

.campaign__period-number-arrow {
  position: absolute;
  bottom: 78px;
  left: calc(50% + 10px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:768px) {
  .campaign__period-number-arrow {
    bottom: 18px;
    -webkit-transform: translateX(-50%) rotate(-90deg);
            transform: translateX(-50%) rotate(-90deg);
    width: 16px;
    height: 61px;
  }
}

.campaign__period-number-top,
.campaign__period-number-bottom {
  text-align: center;
}
.campaign__period-number-top-year,
.campaign__period-number-bottom-year {
  font-size: 32px;
}
.campaign__period-number-top-day,
.campaign__period-number-bottom-day {
  font-size: 64px;
  font-weight: bold;
  margin-left: 12px;
}
@media screen and (min-width:768px) {
  .campaign__period-number-top-day,
  .campaign__period-number-bottom-day {
    font-size: 70px;
    margin-left: 10px;
  }
}
.campaign__period-number-top-week,
.campaign__period-number-bottom-week {
  display: inline-block;
  font-size: 24px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #015e12;
  border-radius: 50%;
  text-align: center;
  margin-left: 16px;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width:768px) {
  .campaign__period-number-top-week,
  .campaign__period-number-bottom-week {
    font-size: 28px;
    width: 50px;
    height: 50px;
    line-height: 45px;
    margin-left: 20px;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.campaign__discount {
  margin-top: 51px;
}
@media screen and (min-width:768px) {
  .campaign__discount {
    margin-top: 57px;
  }
}

.campaign__discount-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width:768px) {
  .campaign__discount-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.5833333333%;
  }
}
@media screen and (min-width:1280px) {
  .campaign__discount-cards {
    gap: 7.3333333333%;
  }
}

.discount-card {
  margin: 0 auto;
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width:768px) {
  .discount-card {
    max-width: 100%;
  }
}

.discount-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.discount-card__head-number {
  display: inline-block;
  background: #015e12;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-family: "Hina Mincho", serif;
  font-size: 32px;
  letter-spacing: 1.28px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .discount-card__head-number {
    font-size: 40px;
    letter-spacing: 1.6px;
    width: 70px;
    height: 70px;
    line-height: 64px;
  }
}
.discount-card__head-text {
  color: #015e12;
  font-family: "Hina Mincho", serif;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width:768px) {
  .discount-card__head-text {
    font-size: 32px;
  }
}

.discount-card__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 0;
  width: 100%;
  margin: 0 auto;
  margin-top: 12px;
}
.discount-card__body img {
  display: block;
  line-height: 0;
  width: 100%;
}

.campaign__info {
  margin-top: 24px;
  position: relative;
}
@media screen and (min-width:768px) {
  .campaign__info {
    margin-top: 64px;
  }
  .campaign__info::before {
    content: "";
    position: absolute;
    width: 26.8333333333%;
    height: 127%;
    background: url(../img/campaign__bath.png) no-repeat center top/contain;
    top: 90%;
    right: calc(50% + 220px);
  }
  .campaign__info::after {
    content: "";
    position: absolute;
    width: 18.4166666667%;
    height: 100%;
    background: url(../img/campaign__bards.png) no-repeat center top/contain;
    top: 190px;
    left: calc(50% + 248px);
  }
}
@media screen and (min-width:900px) {
  .campaign__info::before {
    top: 82%;
    right: calc(50% + 198px);
  }
  .campaign__info::after {
    top: 155px;
    left: calc(50% + 250px);
  }
}
@media screen and (min-width:1280px) {
  .campaign__info::before {
    top: 68%;
    right: calc(50% + 279px);
  }
  .campaign__info::after {
    top: 106px;
    left: calc(50% + 369px);
  }
}

.campaign__info-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .campaign__info-blocks {
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.test {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width:768px) {
  .info-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width:1280px) {
  .info-block {
    gap: 108px;
  }
}
.info-block__title {
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  text-wrap: nowrap;
}
@media screen and (min-width:768px) {
  .info-block__title {
    font-size: 24px;
  }
}
.info-block__text {
  margin-top: 2px;
  font-size: 14px;
}
@media screen and (min-width:768px) {
  .info-block__text {
    font-size: 16px;
  }
}
.info-block__text li {
  padding-left: 1em;
  position: relative;
}
.info-block__text li:nth-child(n+2) {
  margin-top: 2px;
}
.info-block__text li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

ul.info-block__text {
  margin-top: 0;
}

.campaign__button {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .campaign__button {
    margin-top: 64px;
  }
}
.campaign__button .reservation-button {
  width: 250px;
}

.about {
  padding-bottom: 40px;
}
@media screen and (min-width:1280px) {
  .about {
    padding-bottom: 80px;
  }
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .about__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .about__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    margin-top: 48px;
  }
}
@media screen and (min-width:1280px) {
  .about__wrapper {
    gap: 52px;
  }
}

@media screen and (min-width:768px) {
  .about__title .section-title__sub {
    margin-top: 0;
  }
}

.about__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .about__boxes {
    gap: 32px;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    max-width: 755px;
  }
}
@media screen and (min-width:1280px) {
  .about__boxes {
    max-width: 545px;
  }
}

.about-box__title {
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  padding-left: 41px;
}
@media screen and (min-width:768px) {
  .about-box__title {
    font-size: 24px;
    padding-left: 64px;
  }
}
.about-box__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 170%; /* 23.8px */
  letter-spacing: 1.12px;
  position: relative;
}
@media screen and (min-width:768px) {
  .about-box__text {
    font-size: 16px;
  }
}
.about-box__1 {
  position: relative;
}
.about-box__1::after {
  position: absolute;
  content: "";
  background: url(../img/about__cherry.png) no-repeat top center/contain;
  width: 34px;
  height: 31px;
  left: -1px;
  top: -3px;
}
@media screen and (min-width:768px) {
  .about-box__1::after {
    width: 48px;
    height: 44px;
    left: 0;
    top: -6px;
  }
}
.about-box__2 {
  position: relative;
}
.about-box__2::after {
  position: absolute;
  content: "";
  background: url(../img/about__mountain.png) no-repeat top center/contain;
  width: 43px;
  height: 14px;
  left: 0;
  top: 7.38px;
}
@media screen and (min-width:768px) {
  .about-box__2::after {
    width: 73px;
    height: 29px;
    top: -1px;
    left: -3px;
  }
}
.about-box__3 {
  position: relative;
}
.about-box__3::after {
  position: absolute;
  content: "";
  background: url(../img/about__yu.png) no-repeat top center/contain;
  width: 33px;
  height: 19px;
  left: 3px;
  top: 6px;
}
@media screen and (min-width:768px) {
  .about-box__3::after {
    width: 53px;
    height: 31px;
    top: 0;
    left: 1px;
  }
}

.about__map {
  margin-top: 20px;
  position: relative;
  max-width: 335px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width:768px) {
  .about__map {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    max-width: 600px;
  }
}

.about__img {
  width: 239px;
  height: auto;
  max-width: 100%;
}
.about__img img {
  width: 100%;
  display: block;
}
@media screen and (min-width:768px) {
  .about__img {
    width: 423px;
    height: auto;
  }
}

.about__names {
  position: absolute;
  top: 85px;
  right: 3px;
  z-index: 5000;
}
@media screen and (min-width:768px) {
  .about__names {
    position: static;
    height: 304.5px;
    margin-top: 289px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.about__name {
  color: #fff;
  font-family: "Hina Mincho", serif;
  padding: 3px 6px 3px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  text-wrap: nowrap;
  height: 35px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width:768px) {
  .about__name {
    font-size: 20px;
  }
}
.about__name::before {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
}
.about__name:nth-child(1) {
  background: #cb7b39;
}
.about__name:nth-child(1)::before {
  border: 0.5px solid #cb7b39;
}
.about__name:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 7.01px;
  left: -40.35px;
  width: 47px;
  height: 72px;
  background: url(../img/sp/about__border-orange.png) no-repeat top center/contain;
  z-index: -500;
}
@media screen and (min-width:768px) {
  .about__name:nth-child(1)::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -103.5px;
    width: 123px;
    height: 6px;
    background: url(../img/about__border-orange.png) no-repeat top center/contain;
  }
}
.about__name:nth-child(1):hover {
  color: #cb7b39;
  background: #fff;
  border: 1px solid #cb7b39;
}
.about__name:nth-child(1):hover path {
  fill: #cb7b39;
}
.about__name:nth-child(2) {
  background: #015e12;
  margin-top: 73px;
}
@media screen and (min-width:768px) {
  .about__name:nth-child(2) {
    margin-top: 97.77px;
  }
}
.about__name:nth-child(2)::before {
  border: 0.5px solid #015e12;
}
.about__name:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 13.03px;
  left: -56.63px;
  width: 60px;
  height: 64px;
  background: url(../img/sp/about__border-green.png) no-repeat top center/contain;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .about__name:nth-child(2)::after {
    width: 143px;
    height: 71px;
    left: -143px;
    top: 17px;
    background: url(../img/about__border-green.png) no-repeat top center/contain;
  }
}
.about__name:nth-child(2):hover {
  color: #015e12;
  background: #fff;
  border: 1px solid green;
}
.about__name:nth-child(2):hover path {
  fill: #015e12;
}
.about__name:nth-child(3) {
  background: #2d5988;
  margin-top: 73px;
}
@media screen and (min-width:768px) {
  .about__name:nth-child(3) {
    margin-top: 98.29px;
  }
}
.about__name:nth-child(3)::before {
  border: 0.5px solid #2d5988;
}
.about__name:nth-child(3)::after {
  content: "";
  position: absolute;
  top: -23.61px;
  left: -31.34px;
  width: 36px;
  height: 42px;
  background: url(../img/sp/about__border-bulue.png) no-repeat top center/contain;
  z-index: -500;
}
@media screen and (min-width:768px) {
  .about__name:nth-child(3)::after {
    width: 134px;
    height: 58px;
    left: -125.5px;
    top: -38.79px;
    background: url(../img/about__border-bulue.png) no-repeat top center/contain;
  }
}
.about__name:nth-child(3):hover {
  color: #2d5988;
  background: #fff;
  border: 1px solid #2d5988;
}
.about__name:nth-child(3):hover path {
  fill: #2d5988;
}

.hot-springs {
  padding-top: 40px;
  padding-bottom: 66px;
}
@media screen and (min-width:1280px) {
  .hot-springs {
    padding-top: 80px;
    padding-bottom: 133px;
  }
}

.hot-springs__cards {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 62px;
}
@media screen and (min-width:768px) {
  .hot-springs__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
}
@media screen and (min-width: 1000px) {
  .hot-springs__cards {
    gap: 120px;
  }
}

@media screen and (min-width: 1000px) {
  .hot-springs__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 14px;
  }
  .hot-springs__card:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width:1280px) {
  .hot-springs__card {
    gap: 0;
  }
}

.hot-springs-card__head {
  text-align: center;
}
.hot-springs-card__head-subtitle {
  width: 160px;
  height: 53.56px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.hot-springs-card__head-subtitle img {
  display: block;
  width: 100%;
}
@media screen and (min-width:768px) {
  .hot-springs-card__head-subtitle {
    width: 279.54px;
    height: 100.41px;
  }
}
.hot-springs-card__head-main {
  color: #015e12;
  font-family: "Hina Mincho", serif;
  font-size: 24px;
  line-height: 40px; /* 166.667% */
  letter-spacing: 2.4px;
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width:768px) {
  .hot-springs-card__head-main {
    font-size: 56px;
    line-height: 80px; /* 142.857% */
    letter-spacing: 5.6px;
  }
}
.hot-springs-card__head-sub {
  font-family: "ta-koigokoro", sans-serif;
  font-size: 14px;
  padding-top: 8px;
  display: block;
  margin-top: 10px;
  position: relative;
  top: 0;
}
.hot-springs-card__head-sub::before {
  content: "";
  border: 1px solid #333333;
  width: 60px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
}
@media screen and (min-width:768px) {
  .hot-springs-card__head-sub {
    font-size: 20px;
    margin-top: 28px;
  }
}

.hot-springs-card__body {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .hot-springs-card__body {
    margin-top: 40px;
  }
}

@media screen and (min-width:768px) {
  .hot-springs-card__wrapper {
    max-width: 755px;
    -ms-flex-preferred-size: 487px;
        flex-basis: 487px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1000px) {
  .hot-springs-card__wrapper {
    margin: 0;
  }
}

.hot-springs-card__body-main {
  font-size: 14px;
  line-height: 170%; /* 23.8px */
  letter-spacing: 1.12px;
  padding-left: 7px;
  padding-right: 8px;
}
@media screen and (min-width:768px) {
  .hot-springs-card__body-main {
    font-size: 16px;
    line-height: 170%; /* 27.2px */
    letter-spacing: 1.28px;
    padding: 0;
  }
}

.hot-springs-card__body-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17.26px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .hot-springs-card__body-sub {
    gap: 15.454954955%;
    margin-top: 30px;
  }
}

.hot-springs-card__body-bards {
  width: 100.26px;
}
@media screen and (min-width:768px) {
  .hot-springs-card__body-bards {
    -ms-flex-preferred-size: 128.624px;
        flex-basis: 128.624px;
  }
}
.hot-springs-card__body-bards img {
  width: 100%;
  display: block;
}

.hot-springs-card__body-gate {
  width: 198px;
  padding-top: 41.57px;
  padding-left: 24.88px;
  padding-right: 16.12px;
  position: relative;
}
@media screen and (min-width:768px) {
  .hot-springs-card__body-gate {
    -ms-flex-preferred-size: 247px;
        flex-basis: 247px;
    padding-right: 24.12px;
    padding-left: 28.88px;
    padding-bottom: 15.43px;
    scale: 0.9;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
@media screen and (min-width:1280px) {
  .hot-springs-card__body-gate {
    scale: 1;
  }
}
.hot-springs-card__body-gate ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.hot-springs-card__body-gate ul li {
  font-size: 14px;
  text-wrap: nowrap;
}
@media screen and (min-width:768px) {
  .hot-springs-card__body-gate ul li {
    font-size: 16px;
  }
}
.hot-springs-card__body-gate ul li:nth-child(2) {
  font-size: 13px;
}
@media screen and (min-width:768px) {
  .hot-springs-card__body-gate ul li:nth-child(2) {
    font-size: 16px;
  }
}
.hot-springs-card__body-gate::after {
  content: "";
  width: 198px;
  height: 138px;
  background: url(../img/sp/hot-spring__gate-green.png) no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width:768px) {
  .hot-springs-card__body-gate::after {
    width: 247px;
    height: 156px;
    background: url(../img/hot-spring__gate-green.png) no-repeat top center/contain;
  }
}

.hot-springs-card:nth-child(2) .hot-springs-card__head-main {
  color: #cb7b39;
}
.hot-springs-card:nth-child(2) .hot-springs-card__body-sub {
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(2) .hot-springs-card__body-sub {
    gap: 11.0344827586%;
    margin-top: 30px;
  }
}
@media screen and (min-width:1280px) {
  .hot-springs-card:nth-child(2) .hot-springs-card__body-sub {
    margin-top: 56px;
  }
}
.hot-springs-card:nth-child(2) .hot-springs-card__body-bards {
  width: 122px;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(2) .hot-springs-card__body-bards {
    -ms-flex-preferred-size: 176px;
        flex-basis: 176px;
  }
}
.hot-springs-card:nth-child(2) .hot-springs-card__body-bards img {
  width: 100%;
  display: block;
}
.hot-springs-card:nth-child(2) .hot-springs-card__body-gate {
  width: 185px;
  padding-top: 41.57px;
  padding-left: 52.88px;
  padding-right: 56.12px;
  position: relative;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(2) .hot-springs-card__body-gate {
    -ms-flex-preferred-size: 211px;
        flex-basis: 211px;
    padding-right: 71.12px;
    padding-top: 41.57px;
    padding-left: 52.88px;
    padding-bottom: 15.43px;
  }
}
.hot-springs-card:nth-child(2) .hot-springs-card__body-gate ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.hot-springs-card:nth-child(2) .hot-springs-card__body-gate ul li {
  font-size: 14px;
  text-wrap: nowrap;
}
.hot-springs-card:nth-child(2) .hot-springs-card__body-gate ul li:nth-child(2) {
  font-size: 14px;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(2) .hot-springs-card__body-gate ul li:nth-child(2) {
    font-size: 16px;
  }
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(2) .hot-springs-card__body-gate ul li {
    font-size: 16px;
  }
}
.hot-springs-card:nth-child(2) .hot-springs-card__body-gate::after {
  content: "";
  width: 185px;
  height: 137px;
  background: url(../img/sp/hot-spring__gate-orange.png) no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(2) .hot-springs-card__body-gate::after {
    background: url(../img/hot-spring__gate-orange.png) no-repeat top center/contain;
    width: 211px;
    height: 156px;
  }
}
.hot-springs-card:nth-child(3) .hot-springs-card__head-main {
  color: #2d5988;
}
.hot-springs-card:nth-child(3) .hot-springs-card__body-main {
  margin-top: 40px;
}
.hot-springs-card:nth-child(3) .hot-springs-card__body-sub {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -5px;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(3) .hot-springs-card__body-sub {
    margin-top: 30px;
    gap: 8.0971659919%;
  }
}
@media screen and (min-width:1280px) {
  .hot-springs-card:nth-child(3) .hot-springs-card__body-sub {
    margin-top: 56px;
  }
}
.hot-springs-card:nth-child(3) .hot-springs-card__body-bards {
  width: 119px;
}
.hot-springs-card:nth-child(3) .hot-springs-card__body-bards img {
  width: 100%;
  display: block;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(3) .hot-springs-card__body-bards {
    -ms-flex-preferred-size: 207px;
        flex-basis: 207px;
  }
}
.hot-springs-card:nth-child(3) .hot-springs-card__body-gate {
  width: 193px;
  max-width: 100%;
  padding-top: 50px;
  padding-left: 19px;
  padding-right: 14px;
  padding-bottom: 21px;
  position: relative;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(3) .hot-springs-card__body-gate {
    -ms-flex-preferred-size: 247px;
        flex-basis: 247px;
    padding-top: 41.57px;
    padding-right: 35.12px;
    padding-left: 28.88px;
    padding-bottom: 15.43px;
    scale: 0.9;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
@media screen and (min-width:1280px) {
  .hot-springs-card:nth-child(3) .hot-springs-card__body-gate {
    scale: 1;
  }
}
.hot-springs-card:nth-child(3) .hot-springs-card__body-gate ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.hot-springs-card:nth-child(3) .hot-springs-card__body-gate ul li {
  font-size: 14px;
  text-wrap: nowrap;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(3) .hot-springs-card__body-gate ul li {
    font-size: 16px;
  }
}
.hot-springs-card:nth-child(3) .hot-springs-card__body-gate::after {
  content: "";
  width: 193px;
  height: 161px;
  background: url(../img/sp/hot-spring__gate-bulue.png) no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width:768px) {
  .hot-springs-card:nth-child(3) .hot-springs-card__body-gate::after {
    background: url(../img/hot-spring__gate-bulue.png) no-repeat top center/contain;
    width: 247px;
    height: 156px;
  }
}

.hot-springs__slide {
  padding-inline: 13.5px;
  margin-top: 20px;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width:768px) {
  .hot-springs__slide {
    display: none;
  }
}
.hot-springs__slide .swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.hot-springs__slide .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.hot-springs__slide .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
}
.hot-springs__slide .swiper-slide img {
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}
.hot-springs__slide .swiper-slide:hover img {
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
  cursor: pointer;
}
.hot-springs__slide .swiper-slide img {
  width: 100%;
  display: block;
}
.hot-springs__slide .swiper-slide button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
}

.swiper-button-next,
.swiper-button-prev {
  width: 6.5671641791% !important;
  height: 10.8374384236% !important;
  z-index: 500;
  top: 54% !important;
}

.swiper-button-next {
  right: 15px !important;
}
.swiper-button-next::after {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper-button-next.zao::after {
  background: url(../img/sp/next-zao.png) no-repeat top center/contain;
}
.swiper-button-next.ginzan::after {
  background: url(../img/sp/next-ginzan.png) no-repeat top center/contain;
}
.swiper-button-next.kaminoyama::after {
  background: url(../img/sp/next-kaminoyama.png) no-repeat top center/contain;
}

.swiper-button-prev {
  left: 15px !important;
}
.swiper-button-prev::after {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper-button-prev.zao::after {
  background: url(../img/sp/prev-zao.png) no-repeat top center/contain;
}
.swiper-button-prev.ginzan::after {
  background: url(../img/sp/prev-ginzan.png) no-repeat top center/contain;
}
.swiper-button-prev.kaminoyama::after {
  background: url(../img/sp/prev-kaminoyama.png) no-repeat top center/contain;
}

.hot-springs__images {
  display: none;
}
@media screen and (min-width:768px) {
  .hot-springs__images {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    gap: 5px; /* アイテム間の間隔 */
    -ms-flex-preferred-size: 640px;
        flex-basis: 640px;
    max-width: 655px;
    margin-right: auto;
    margin-left: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 50px;
  }
}
@media screen and (min-width:768px) and (min-width: 1000px) {
  .hot-springs__images {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media screen and (min-width:768px) and (min-width:1280px) {
  .hot-springs__images {
    margin-top: 0;
    margin-right: 0;
  }
}
@media screen and (min-width:768px) {
  .hot-springs__images .hot-springs__image-1,
  .hot-springs__images .hot-springs__image-2,
  .hot-springs__images .hot-springs__image-3 {
    position: relative;
  }
  .hot-springs__images .hot-springs__image-1 button,
  .hot-springs__images .hot-springs__image-2 button,
  .hot-springs__images .hot-springs__image-3 button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 500;
  }
  .hot-springs__images .hot-springs__image-1 img,
  .hot-springs__images .hot-springs__image-2 img,
  .hot-springs__images .hot-springs__image-3 img {
    -webkit-transition: -webkit-filter 0.5s ease;
    transition: -webkit-filter 0.5s ease;
    transition: filter 0.5s ease;
    transition: filter 0.5s ease, -webkit-filter 0.5s ease;
  }
  .hot-springs__images .hot-springs__image-1:hover img,
  .hot-springs__images .hot-springs__image-2:hover img,
  .hot-springs__images .hot-springs__image-3:hover img {
    -webkit-filter: brightness(70%);
            filter: brightness(70%);
    cursor: pointer;
  }
  .hot-springs__images .hot-springs__image-1 {
    grid-column: 1/-1; /* 上段で幅100% */
  }
  .hot-springs__images .hot-springs__image-1 img {
    width: 100%;
    display: block;
    height: 100%;
  }
  .hot-springs__images .hot-springs__image-2,
  .hot-springs__images .hot-springs__image-3 {
    width: 100%; /* 下段で幅50% */
  }
  .hot-springs__images .hot-springs__image-2 img,
  .hot-springs__images .hot-springs__image-3 img {
    width: 100%;
    display: block;
    height: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .hot-springs__images.is-second {
    margin-left: 0;
    margin-right: auto;
  }
}

.hot-springs__cta {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 69px;
  max-width: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width:768px) {
  .hot-springs__cta {
    width: 758.6px;
    height: 281.9px;
  }
  .hot-springs__cta:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.hot-springs__cta img {
  display: block;
  width: 100%;
}

.hot-springs-modal {
  background: #333333;
  padding-top: 50px;
  padding-bottom: 45px;
  padding-inline: 8%;
  border: none;
  text-align: right;
  max-height: 100vh;
}
@media screen and (min-width:768px) {
  .hot-springs-modal {
    background: #333333;
    padding-top: 80px;
    padding-bottom: 55px;
    padding-inline: 130px;
  }
  .hot-springs-modal::-ms-backdrop {
    opacity: 0.9;
    background: #333333;
  }
  .hot-springs-modal::backdrop {
    opacity: 0.9;
    background: #333333;
  }
}

.hot-springs-modal__img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.hot-springs-modal__img img {
  display: block;
  width: 100%;
}

.hot-springs-modal__text {
  text-align: center;
  color: #fff;
  margin-top: 15px;
  font-size: 16px;
}
@media screen and (min-width:768px) {
  .hot-springs-modal__text {
    font-size: 20px;
    margin-top: 30px;
  }
}

.hot-springs-modal__close {
  top: -10px;
  width: 23px;
  height: 23px;
  position: relative;
}
@media screen and (min-width:768px) {
  .hot-springs-modal__close {
    top: -30px;
    width: 30px;
    height: 30px;
  }
}
.hot-springs-modal__close::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hot-springs-modal__close::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.access {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media screen and (min-width:1280px) {
  .access {
    padding-top: 80px;
  }
}

.access__read {
  margin-top: 40px;
  text-align: center;
  color: #015e12;
  font-family: "Hina Mincho", serif;
  font-size: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #015e12;
  max-width: 328px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width:768px) {
  .access__read {
    margin-top: 58px;
    font-size: 32px;
    max-width: 424px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.access__boxes {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width:768px) {
  .access__boxes {
    margin-top: 60px;
    gap: 55px;
  }
}

.access-box.is-open .access-box__head-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
          transform: translateX(-50%) translateY(-50%) rotate(180deg);
  width: 22.167px;
  height: 3px;
  background: #fff;
}

.access-box__head {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background-color: #c6b483;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width:768px) {
  .access-box__head {
    padding-inline: 24px;
    padding-block: 42px;
    gap: 20px;
  }
}
.access-box__head-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width:768px) {
  .access-box__head-text {
    font-size: 24px;
  }
}
.access-box__head-toggle {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-block;
}
.access-box__head-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 22.167px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}
.access-box__head-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
          transform: translateX(-50%) translateY(-50%) rotate(90deg);
  width: 22.167px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 3px;
}

.access-box__body {
  background: #fff;
  padding-right: 20px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  display: none;
}
@media screen and (min-width:768px) {
  .access-box__body {
    font-size: 24px;
  }
}
.access-box__body .root-card-1 {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width:768px) {
  .access-box__body .root-card-1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.access-box__body .root-card-1 .root-card__read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .access-box__body .root-card-1 .root-card__read {
    gap: 14px;
  }
}
.access-box__body .root-card-1 .root-card__read-text-1 {
  color: #015e12;
}
@media screen and (min-width:768px) {
  .access-box__body .root-card-1 .root-card__read-text-1 {
    padding-inline: 10px;
  }
}
.access-box__body .root-card-1 .root-card__read-text-2 {
  color: #015e12;
}
@media screen and (min-width:768px) {
  .access-box__body .root-card-1 .root-card__read-text-2 {
    padding-inline: 10px;
  }
}
.access-box__body .root-card-1 .root-card__img {
  margin-top: 30px;
  width: 116px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
.access-box__body .root-card-1 .root-card__img img {
  width: 100%;
  display: block;
}
@media screen and (min-width:768px) {
  .access-box__body .root-card-1 .root-card__img {
    width: 100%;
    max-width: 100%;
    height: 90px;
    margin-top: 50px;
    padding-inline: 30px;
    margin-left: 0;
  }
}
@media screen and (min-width:768px) and (min-width:1280px) {
  .access-box__body .root-card-1 .root-card__img {
    padding-inline: 70px;
  }
}
@media screen and (min-width:768px) {
  .access-box__body .root-card-1 .root-card__img img {
    width: auto;
    display: block;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.root-card-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width:768px) {
  .root-card-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.root-card-2 .root-card__read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.root-card-2 .root-card__read-text-1 {
  color: #015e12;
}
.root-card-2 .root-card__read-text-2 {
  color: #015e12;
}
.root-card-2 .root-card__img {
  margin-top: 30px;
  width: 116px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
.root-card-2 .root-card__img img {
  width: 100%;
  display: block;
}
@media screen and (min-width:768px) {
  .root-card-2 .root-card__img {
    width: 100%;
    height: 90px;
    margin-top: 50px;
    padding-inline: 30px;
    margin-left: 0;
  }
}
@media screen and (min-width:768px) and (min-width:1280px) {
  .root-card-2 .root-card__img {
    padding-inline: 70px;
  }
}
@media screen and (min-width:768px) {
  .root-card-2 .root-card__img img {
    height: 100%;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.access-box:nth-child(3) .root-card__img {
  margin-top: 30px;
  width: 160px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.access-box:nth-child(3) .root-card__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width:768px) {
  .access-box:nth-child(3) .root-card__img {
    margin-top: 50px;
    height: 90px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .access-box:nth-child(3) .root-card__img img {
    width: auto;
    display: block;
    height: 100%;
  }
}

.footer {
  background-color: #015e12;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (min-width:900px) {
  .footer {
    margin-top: 20px;
  }
}

.footer__title {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width:900px) {
  .footer__title {
    border-bottom: none;
  }
}

.footer__lists {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width:900px) {
  .footer__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 48px;
    margin-top: 6px;
  }
}

.footer__list {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width:900px) {
  .footer__list {
    position: relative;
  }
  .footer__list:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -24px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
  }
}
.footer__list:hover {
  opacity: 50%;
}

.sns__buttons {
  margin-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns__button {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.sns__button img {
  width: 40px;
  height: 40px;
}
.sns__button:hover {
  opacity: 50%;
}

.footer__copyright {
  font-size: 12px;
  letter-spacing: 1.2px;
}

.page-top {
  position: absolute;
  right: 21px;
  bottom: 67px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.page-top img {
  width: 56px;
  height: 39px;
}
.page-top:hover {
  opacity: 50%;
}
@media screen and (min-width:768px) {
  .page-top {
    display: none;
  }
}

.footer__logo {
  padding-block: 20px;
  text-align: center;
}
.footer__logo img {
  width: 161px;
}