*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sawarabi Gothic", sans-serif;
  color: #282c28;
  background: #f4f2f0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:where(#contents, #stay, #food) {
  scroll-margin-top: 80px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 991px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec-head__en {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.7;
  color: #c8a060;
}
.sec-head__jp {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 4px;
  line-height: 1.7;
  color: #5a6e58;
}
@media (max-width: 767px) {
  .sec-head__jp {
    font-size: 24px;
    letter-spacing: 2px;
  }
}
.sec-head__jp {
  margin: 0;
}

.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1100;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #8b8047;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(40, 44, 40, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: #5a6e58;
  transform: translateY(-4px);
}
.to-top__arrow {
  display: block;
  width: 11px;
  height: 11px;
  margin: 0 auto;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(2px) rotate(-45deg);
}
@media (max-width: 767px) {
  .to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

.lp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 95px;
  z-index: 2;
  width: 234px;
}
.lp-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-nav__item {
  width: 100%;
  text-align: center;
  border-bottom: 1px dashed rgba(40, 44, 40, 0.45);
  opacity: 0;
  animation: nav-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.lp-nav__item:nth-child(1) {
  animation-delay: 0.15s;
}
.lp-nav__item:nth-child(2) {
  animation-delay: 0.27s;
}
.lp-nav__item:nth-child(3) {
  animation-delay: 0.39s;
}
.lp-nav__item:nth-child(4) {
  animation-delay: 0.51s;
}
.lp-nav__item:nth-child(5) {
  animation-delay: 0.63s;
}
.lp-nav__logo {
  display: block;
  padding: 20px 0 26px;
}
.lp-nav__logo img {
  width: 160px;
  margin-inline: auto;
}
.lp-nav__link {
  display: block;
  padding: 18px 4px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0;
  white-space: nowrap;
  color: #282c28;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-nav__link:hover, .lp-nav__link.is-active {
  color: #5a6e58;
}
@media (prefers-reduced-motion: reduce) {
  .lp-nav__item {
    opacity: 1;
    animation: none;
  }
}
@media (max-width: 991px) {
  .lp-nav {
    top: 0;
    transform: translateY(0);
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(244, 242, 240, 0) 65.13%, rgba(244, 242, 240, 0.9) 78.39%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .lp-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
    padding: 6px 12px;
  }
  .lp-nav__item {
    width: auto;
    border-bottom: none;
    opacity: 1;
    animation: none;
  }
  .lp-nav__item--logo {
    width: 100%;
  }
  .lp-nav__logo {
    padding: 6px 0;
  }
  .lp-nav__logo img {
    width: 104px;
  }
  .lp-nav__link {
    padding: 6px 4px;
    font-size: 13px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: clamp(600px, 52vw, 1080px);
  overflow: hidden;
  background: #f4f2f0;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--hero-ty, 0));
}
@media (max-width: 991px) {
  .hero__media img {
    object-position: 55% center;
  }
}
@media (max-width: 991px) {
  .hero__media img.hero__media--img-2 {
    object-position: 35% center;
  }
}
@media (max-width: 991px) {
  .hero__media img.hero__media--img-3 {
    object-position: 25% 70%;
    --hero-ty: 70px;
  }
}
@media (max-width: 991px) {
  .hero__media img.hero__media--img-4 {
    object-position: 77% center;
  }
}
.hero__media .swiper-slide-active img {
  animation: hero-zoom 12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero__media .swiper-slide-active img {
    animation: none;
  }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(244, 242, 240, 0) 65.13%, rgba(244, 242, 240, 0.9) 78.39%);
}
@media (max-width: 991px) {
  .hero__media::after {
    background: linear-gradient(0deg, rgba(244, 242, 240, 0) 65.13%, rgba(244, 242, 240, 0.9) 78.39%);
  }
}

.intro {
  position: relative;
  overflow: hidden;
  background: url("../img/intro_bg.webp") center/cover no-repeat;
}
@media (max-width: 991px) {
  .intro {
    background: url("../img/intro_bg-sp.webp") center/cover no-repeat;
  }
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(33, 42, 40, 0.4) 0%, rgba(40, 52, 58, 0.4) 42%, rgba(74, 90, 106, 0.48) 100%);
}
.intro__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 120px 20px 165px;
}
@media (max-width: 991px) {
  .intro__inner {
    min-height: 0;
    padding: 56px 20px 0;
    margin-bottom: 38px;
  }
}
.intro__text {
  max-width: 560px;
}
@media (max-width: 991px) {
  .intro__text {
    max-width: none;
  }
}
.intro__title {
  margin: 0 0 28px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 4px;
  line-height: 1.7;
  color: #5a6e58;
}
@media (max-width: 767px) {
  .intro__title {
    font-size: 24px;
    letter-spacing: 2px;
  }
}
.intro__title {
  color: #ffffff;
  letter-spacing: 1.28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
@media (max-width: 991px) {
  .intro__title {
    letter-spacing: normal;
    font-size: 23px;
  }
}
.intro__lead {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.7;
  color: #282c28;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
@media (max-width: 767px) {
  .intro__lead {
    font-size: 16px;
    letter-spacing: -0.05px;
  }
}
.intro__map {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -5%;
  height: 100%;
  pointer-events: none;
}
.intro__map img {
  height: 100%;
  width: auto;
  display: block;
}
@media (max-width: 991px) {
  .intro__map {
    position: relative;
    height: auto;
    left: 0;
    padding-bottom: 70px;
  }
  .intro__map img {
    width: 100%;
    height: auto;
  }
}

.contents__btn {
  width: fit-content;
  margin: 81px auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 40px 60px 0;
  background: #f4f2f0;
  border-bottom: 5px solid #a8c4a4;
}
@media (max-width: 991px) {
  .tabs {
    gap: 8px;
    justify-content: space-around;
    padding: 28px 12px 0;
  }
}
.tabs__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 0 18px;
  background: none;
  border: 0;
  cursor: pointer;
  width: 20vw;
}
.tabs__btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 10px;
  background: #a8c4a4;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.tabs__btn.is-active::after {
  transform: scaleX(1);
}
@media (max-width: 991px) {
  .tabs__btn {
    width: 100%;
    flex: 1;
  }
}
.tabs__en {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.7;
  color: #a8c4a4;
}
@media (max-width: 991px) {
  .tabs__en {
    letter-spacing: 0.32px;
    white-space: nowrap;
  }
}
.tabs__jp {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 4px;
  line-height: 1.7;
  color: #5a6e58;
}
@media (max-width: 767px) {
  .tabs__jp {
    font-size: 24px;
    letter-spacing: 2px;
  }
}
.tabs__jp {
  width: max-content;
}
@media (max-width: 991px) {
  .tabs__jp {
    font-size: 20px;
  }
}

.tabpanel {
  display: none;
  padding: 48px 60px 60px;
}
@media (max-width: 991px) {
  .tabpanel {
    padding: 64px 20px;
  }
}
.tabpanel {
  background: #ffffff;
  position: relative;
}
.tabpanel.is-active {
  display: block;
  animation: panel-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tabpanel .seasons {
  position: relative;
  z-index: 1;
}

.season-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.season-bg__layer {
  position: absolute;
  inset: 0;
  background: top center/cover no-repeat;
  background-size: auto;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.season-bg__layer[data-bg=spring] {
  background-image: url("../img/bg-spring.webp");
}
.season-bg__layer[data-bg=summer] {
  background-image: url("../img/bg-summer.webp");
}
.season-bg__layer[data-bg=autumn] {
  background-image: url("../img/bg-autumn.webp");
}
.season-bg__layer[data-bg=winter] {
  background-image: url("../img/bg-winter.webp");
}

[data-active-season=spring] .season-bg__layer[data-bg=spring],
[data-active-season=summer] .season-bg__layer[data-bg=summer],
[data-active-season=autumn] .season-bg__layer[data-bg=autumn],
[data-active-season=winter] .season-bg__layer[data-bg=winter] {
  opacity: 1;
}

.stayplan {
  position: relative;
  overflow: hidden;
  background: url("../img/stayplan-bg.webp") center/cover no-repeat;
}
.stayplan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(68, 68, 68, 0.55);
}
.stayplan__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 115px 20px 124px;
}
@media (max-width: 991px) {
  .stayplan__inner {
    padding: 60px 20px;
  }
}
.stayplan__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-align: center;
}
.stayplan__en {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.7;
}
.stayplan__jp {
  margin: 0;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 4px;
  line-height: 1.7;
  color: #5a6e58;
}
@media (max-width: 767px) {
  .stayplan__jp {
    font-size: 24px;
    letter-spacing: 2px;
  }
}
.stayplan__jp {
  color: #ffffff;
}
.stayplan__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 300px;
  max-width: 100%;
  padding: 11px 8px;
  background: #5a6e58;
  border-radius: 30px;
  color: #ffffff;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.8px;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stayplan__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.stayplan__btn--reverse {
  background: #ffffff;
  color: #5a6e58;
  border: 2px solid #5a6e58;
}
.stayplan__arrow {
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.seasons {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}
.seasons__tabs {
  padding: 0 32px;
}
@media (max-width: 991px) {
  .seasons__tabs {
    padding: 8px 12px 0;
  }
}

.season-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: none;
  border: 0;
  cursor: pointer;
}
.season-tab__img {
  position: relative;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.season-tab__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.season-tab__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 767px) {
  .season-tab__img {
    width: 145px;
    height: 145px;
  }
}
.season-tab__label {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.8px;
  color: var(--accent);
}
@media (max-width: 767px) {
  .season-tab__label {
    font-size: 14px;
  }
}
.season-tab:hover .season-tab__img::after {
  opacity: 0.7;
}
.season-tab.is-active .season-tab__img {
  box-shadow: 0 0 0 4px var(--accent);
}
.season-tab.is-active .season-tab__img::after {
  opacity: 0;
}

.season-panel {
  display: none;
}
.season-panel.is-active {
  display: block;
  animation: panel-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
  padding-top: 48px;
}
@media (max-width: 991px) {
  .spot-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.spot-grid--event {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}

.spot {
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .spot {
    gap: 12px;
  }
}
.spot__fig {
  margin: 0;
  border-radius: 8px;
  height: 341px;
}
@media (max-width: 991px) {
  .spot__fig {
    height: 270px;
  }
}
.spot__fig img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  max-height: 289px;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 991px) {
  .spot__fig img {
    height: 210px;
  }
}
.spot__cap {
  display: block;
  background: var(--accent);
  color: #ffffff;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-align: center;
  border-radius: 0 0 8px 8px;
  line-height: 1.8;
  height: 52px;
  align-content: center;
}
@media (max-width: 991px) {
  .spot__cap {
    font-size: 14px;
  }
}
.spot__cap--small {
  font-size: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .spot__cap--small {
    font-size: 14px;
    line-height: normal;
    padding: 0;
  }
}
.spot__desc {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.7;
  color: #282c28;
  margin: 0;
  letter-spacing: 0.32px;
}
.spot__info {
  display: flex;
  gap: 52px;
}
@media (max-width: 991px) {
  .spot__info {
    flex-direction: column;
    gap: 10px;
  }
}

.info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #282c28;
  line-height: 1.5;
  width: max-content;
}
.info__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info__icon .ic {
  width: 24px;
  height: 24px;
}

.food {
  padding: 80px 60px 90px;
}
@media (max-width: 991px) {
  .food {
    padding: 64px 20px;
  }
}
.food {
  background: #f4f2f0;
}
.food__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.food-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}
@media (max-width: 991px) {
  .food-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.food-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .food-card {
    gap: 12px;
  }
}
.food-card__fig {
  border-radius: 8px;
  overflow: hidden;
}
.food-card__fig img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .food-card__fig img {
    height: 240px;
  }
}
.food-card__fig--empty {
  height: 320px;
  background: #c4c4c4;
}
@media (max-width: 767px) {
  .food-card__fig--empty {
    height: 240px;
  }
}
.food-card__body {
  padding: 0 33px;
}
@media (max-width: 767px) {
  .food-card__body {
    padding: 0;
  }
}
.food-card__title {
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(40, 44, 40, 0.18);
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #5a6e58;
}
@media (max-width: 991px) {
  .food-card__title {
    margin: 0 0 8px;
    padding-bottom: 8px;
  }
}
.food-card__desc {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.7;
  color: #282c28;
  margin: 0;
  letter-spacing: 0.32px;
}

.hero__swiper {
  width: 100%;
  height: 100%;
}
.hero__swiper,
.hero__swiper .swiper-wrapper,
.hero__swiper .swiper-slide {
  height: 100%;
}
.hero__swiper .swiper-slide {
  overflow: hidden;
}
.hero__swiper .swiper-pagination {
  bottom: 24px;
}
.hero__swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__swiper .swiper-pagination-bullet-active {
  background: #ffffff;
}

.seasons__swiper {
  padding: 8px 6px 4px;
}
.seasons__swiper .swiper-slide {
  width: auto;
}
@media (max-width: 991px) {
  .seasons__swiper {
    padding: 0;
    overflow: visible;
  }
  .seasons__swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
    transform: none !important;
    justify-items: center;
  }
  .seasons__swiper .season-tab.swiper-slide {
    width: auto;
  }
}

.food-card__fig {
  height: 320px;
}
@media (max-width: 767px) {
  .food-card__fig {
    height: 240px;
  }
}

.food-card__swiper {
  width: 100%;
  height: 100%;
}
.food-card__swiper,
.food-card__swiper .swiper-wrapper,
.food-card__swiper .swiper-slide {
  height: 100%;
}
.food-card__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.food-card__swiper .swiper-pagination {
  bottom: 12px;
}
.food-card__swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.food-card__swiper .swiper-pagination-bullet-active {
  background: #c8a060;
}

.spot__swiper {
  width: 100%;
}
@media (max-width: 767px) {
  .spot__swiper {
    height: 210px;
  }
}
.spot__swiper .swiper-wrapper,
.spot__swiper .swiper-slide {
  height: 100%;
}
.spot__swiper .swiper-slide img {
  width: 100%;
  height: 289px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .spot__swiper .swiper-slide img {
    height: 100%;
  }
}
.spot__swiper .swiper-pagination {
  bottom: 10px;
}
.spot__swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.spot__swiper .swiper-pagination-bullet-active {
  background: var(--accent, #c8a060);
}

.footer__main {
  background: #8b8047;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 64px 24px;
}
.footer__logo {
  width: 330px;
  max-width: 80%;
}
@media (max-width: 991px) {
  .footer__logo {
    margin: auto;
  }
}
.footer__breadcrumb {
  display: flex;
  align-items: center;
  gap: 29px;
  justify-content: center;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 20px;
  letter-spacing: 0.8px;
}
@media (max-width: 991px) {
  .footer__breadcrumb {
    flex-direction: column;
    gap: 22px;
    font-size: 16px;
  }
}
.footer__breadcrumb a {
  position: relative;
  color: #ffffff;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__breadcrumb a:hover {
  opacity: 0.75;
}
.footer__breadcrumb a::before,
.footer__breadcrumb a:first-child::after,
.footer__breadcrumb a:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.6);
}
.footer__breadcrumb a::before {
  left: -15px;
}
@media (max-width: 991px) {
  .footer__breadcrumb a::before {
    content: none;
  }
}
.footer__breadcrumb a:first-child::after {
  content: none;
}
@media (max-width: 991px) {
  .footer__breadcrumb a:first-child::after {
    content: "";
    width: 21px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -11px;
  }
}
.footer__breadcrumb a:last-child::after {
  right: -15px;
}
@media (max-width: 991px) {
  .footer__breadcrumb a:last-child::after {
    content: none;
  }
}
.footer__copy {
  margin: 0;
  padding: 14px 16px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #282c28;
  background: #f4f2f0;
}
@media (max-width: 767px) {
  .footer__copy {
    font-size: 11px;
  }
}

@keyframes nav-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-zoom {
  from {
    transform: translateY(var(--hero-ty, 0)) scale(1.08);
  }
  to {
    transform: translateY(var(--hero-ty, 0)) scale(1);
  }
}