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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: #082627;
  background: #f9fcfd;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

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

:where(#pool, #stay, #buffet, #restaurant) {
  scroll-margin-top: 90px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  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;
  }
}
html.is-loading,
html.is-loading body {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #5cc4c2 0%, #2f9e9d 100%);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  animation: loader-bob 3s ease-in-out infinite;
}
.loader__logo {
  width: 300px;
  max-width: 72vw;
  filter: drop-shadow(0 6px 18px rgba(8, 38, 39, 0.25));
}
.loader__tagline {
  margin: 0;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 767px) {
  .loader__tagline {
    font-size: 16px;
    letter-spacing: 3px;
    text-align: center;
  }
}
.loader__count {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
}
.loader__ocean {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  background: linear-gradient(180deg, #1f8584 0%, #0c5b5a 100%);
  transition: height 0.12s linear;
}
.loader__wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 1440px 70px;
  transform: translateY(-80%);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2070'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%231f8584'%20d='M0,35%20C240,65%20480,5%20720,35%20C960,65%201200,5%201440,35%20L1440,70%20L0,70%20Z'/%3E%3C/svg%3E");
  animation: loader-wave 12s linear infinite;
}
.loader__wave--back {
  height: 92px;
  background-size: 1440px 92px;
  transform: translateY(-90%);
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2092'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%2333a8a7'%20d='M0,46%20C240,12%20480,80%20720,46%20C960,12%201200,80%201440,46%20L1440,92%20L0,92%20Z'/%3E%3C/svg%3E");
  animation: loader-wave 18s linear infinite reverse;
}
@media (prefers-reduced-motion: reduce) {
  .loader__ocean {
    height: 100%;
    transition: none;
  }
  .loader__wave {
    animation: none;
  }
  .loader__content {
    animation: none;
  }
}

.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.sec-head__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 5.04px;
  color: #28a6a5;
}
.sec-head__eyebrow::before, .sec-head__eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.sec-head__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 7.04px;
  color: #082627;
}
@media (max-width: 767px) {
  .sec-head__title {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
.sec-head__title {
  padding-top: 10px;
}
.sec-head__en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 6.12px;
  color: #4d6566;
  margin-top: -2px;
}
.sec-head--light .sec-head__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 5.04px;
  color: rgba(255, 255, 255, 0.6);
}
.sec-head--light .sec-head__eyebrow::before, .sec-head--light .sec-head__eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.sec-head--light .sec-head__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.sec-head--light .sec-head__title {
  color: #ffffff;
}
.sec-head--light .sec-head__en {
  color: rgba(255, 255, 255, 0.7);
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 38, 39, 0.12);
}
.card:hover .card__figure img {
  transform: scale(1.05);
}
.card__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 338/266;
  overflow: hidden;
}
.card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #28a6a5;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1.5px;
  padding: 3px 14px;
}
@media (max-width: 991px) {
  .card__badge {
    left: 0;
  }
}
.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 24px 32px;
}
.card__num {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.11;
  letter-spacing: 3.84px;
  color: #28a6a5;
  margin-bottom: 14px;
}
.card__title {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 1.9px;
  color: #082627;
}
.card__title--sm {
  font-size: 18px;
  line-height: 1.6;
}
.card__title--en {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 1.8px;
  font-weight: 500;
}
.card__desc {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.78px;
  color: #4d6566;
  margin-bottom: 20px;
}
.card__link {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2.64px;
  color: #1f8584;
  border-bottom: 1px solid #28a6a5;
  padding-bottom: 5px;
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card__link .arrow {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card__link:hover {
  opacity: 0.8;
}
.card__link:hover .arrow {
  transform: translateX(6px);
}
.card__link {
  margin-top: auto;
  align-self: flex-start;
}
.card--menu {
  background: transparent;
}
.card--menu:hover {
  box-shadow: none;
  transform: translateY(-4px);
}
.card--menu .card__figure {
  aspect-ratio: 345/270;
}
.card--menu .card__body {
  padding: 20px 4px;
  gap: 4px;
}
.card--menu .card__num {
  margin-bottom: 10px;
  font-size: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 350px;
  padding: 18px 40px;
  border: 1px solid #082627;
  border-radius: 999px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 2.8px;
  color: #082627;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pill .arrow {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pill:hover {
  background: #082627;
  color: #ffffff;
}
.pill:hover .arrow {
  transform: translateX(6px);
}

.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #28a6a5;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(8, 38, 39, 0.28);
  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: #1f8584;
  transform: translateY(-4px);
}
.to-top__arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(2px) rotate(-45deg);
}
.to-top__label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1.5px;
  line-height: 1;
}
@media (max-width: 767px) {
  .to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 1106px;
  overflow: hidden;
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero {
    height: 100vh;
    min-height: 600px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1);
  transform-origin: center bottom;
  animation: hero-zoom 20s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img {
    animation: none;
    transform: none;
  }
}
@media (max-width: 991px) {
  .hero__bg img {
    object-position: 80% 72%;
  }
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 38, 39, 0) 0.04%, rgba(8, 38, 39, 0.05) 36.37%, rgba(8, 38, 39, 0.5) 54.78%, rgba(8, 38, 39, 0.85) 98.61%);
  mix-blend-mode: hard-light;
}
.hero__deco {
  position: absolute;
  top: -60px;
  left: -100px;
  width: 296px;
  opacity: 0.6;
  transform: rotate(-30deg);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__deco {
    width: 180px;
    top: -40px;
    left: -70px;
  }
}
.hero__logo {
  position: absolute;
  top: 40px;
  left: 20%;
  transform: translateX(-20%);
  width: 266px;
  z-index: 2;
}
.hero__logo img {
  width: 100%;
}
@media (max-width: 767px) {
  .hero__logo {
    width: 200px;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero__inner {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 0 20px;
}
.hero__eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 5.46px;
}
.hero__year {
  font-family: "Noto Serif", serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 5.46px;
}
@media (max-width: 767px) {
  .hero__year {
    font-size: 36px;
  }
}
.hero__brand {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 5.46px;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 767px) {
  .hero__brand {
    font-size: 18px;
    letter-spacing: 3px;
  }
}
.hero__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 4.18px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 18px;
    letter-spacing: 2.5px;
  }
}
.hero__date {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 20px 56px;
  font-family: "Noto Serif", serif;
  font-size: 32px;
  letter-spacing: 8.85px;
  white-space: nowrap;
  font-weight: 400;
}
.hero__date span {
  letter-spacing: 6px;
}
@media (max-width: 767px) {
  .hero__date {
    font-size: 16px;
    letter-spacing: 4px;
    padding: 14px 24px;
  }
  .hero__date span {
    letter-spacing: 3px;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
}
.hero__scroll-label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 3.96px;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.7);
  animation: scroll-line 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.snav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(213, 240, 239, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(8, 38, 39, 0.07);
  border-bottom: 1px solid rgba(8, 38, 39, 0.07);
}
.snav__list {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .snav__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.snav__item + .snav__item .snav__link {
  border-left: 1px solid rgba(8, 38, 39, 0.07);
}
@media (max-width: 991px) {
  .snav__item + .snav__item .snav__link {
    border-top: 1px solid rgba(8, 38, 39, 0.07);
  }
}
.snav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 991px) {
  .snav__link--none {
    border-top: none !important;
  }
}
.snav__link:hover, .snav__link.is-active {
  background: rgba(255, 255, 255, 0.5);
}
.snav__link.is-active .snav__jp {
  color: #1f8584;
}
@media (max-width: 767px) {
  .snav__link {
    height: 70px;
    gap: 4px;
    padding: 0 4px;
  }
}
.snav.is-stuck .snav__link {
  padding: 6px 0;
}
.snav__icon {
  width: 30px;
  height: 30px;
}
.snav__icon img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .snav__icon {
    width: 24px;
    height: 24px;
  }
}
.snav__jp {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.82px;
  color: #082627;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 767px) {
  .snav__jp {
    font-size: 11px;
    letter-spacing: 0;
    text-align: center;
  }
}
.snav__en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 3px;
  color: #4d6566;
  line-height: 1;
}
@media (max-width: 767px) {
  .snav__en {
    font-size: 13px;
    letter-spacing: 1px;
  }
}

.concept {
  position: relative;
  background: #f9fcfd;
  padding-bottom: 60px;
  overflow: hidden;
}
.concept__wave {
  display: block;
  width: 100%;
  height: 80px;
  opacity: 0.5;
  margin-bottom: 64px;
}
.concept__wave img {
  width: 100%;
  height: 100%;
}
.concept__intro {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.concept__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 0 48px;
  border-bottom: 1px solid #28a6a5;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.7;
  letter-spacing: 6.72px;
  color: #082627;
  text-align: center;
}
.concept__title em {
  font-style: normal;
  color: #28a6a5;
}
@media (max-width: 767px) {
  .concept__title {
    font-size: 26px;
    letter-spacing: 4px;
  }
}
.concept__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.concept__lead p {
  margin: 0;
}
.concept__lead-a {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 2.04px;
  color: #082627;
}
.concept__lead-b {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 2.04px;
  color: #082627;
  margin-bottom: 46px !important;
}
.concept__lead-b mark {
  background: linear-gradient(to bottom, transparent 60%, #e6f4f4 60%);
  color: #28a6a5;
  font-weight: 600;
  padding: 0 2px;
}
.concept__lead-c {
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  line-height: 1.7;
  letter-spacing: 3.78px;
  color: #1f8584;
}
@media (max-width: 767px) {
  .concept__lead-c {
    font-size: 17px;
    letter-spacing: 2px;
  }
}
.concept__strip {
  margin-top: 64px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.concept__strip:hover .concept__track {
  animation-play-state: paused;
}
.concept__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.concept__shot {
  flex: 0 0 auto;
  width: 338px;
  height: 266px;
  overflow: hidden;
}
.concept__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .concept__shot {
    width: 240px;
    height: 190px;
  }
}

.pool {
  background: #f9fcfd;
  padding: 120px 20px 120px;
}
@media (max-width: 991px) {
  .pool {
    padding: 72px 20px;
  }
}
.pool__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media (max-width: 991px) {
  .pool__inner {
    gap: 40px;
  }
}
.pool__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 991px) {
  .pool__body {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
}
.pool__figure {
  margin: 0;
  aspect-ratio: 576/568;
  overflow: hidden;
}
.pool__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .pool__figure {
    flex: none;
    width: 100%;
    aspect-ratio: 16/11;
  }
}
.pool__text {
  flex: 0 0 470px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .pool__text {
    flex: none;
    width: 100%;
  }
}
.pool__lead {
  margin: 0 0 4px;
  padding: 8px 0 18px;
  border-bottom: 1px solid #28a6a5;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 3.6px;
  color: #1f8584;
}
.pool__lead strong {
  font-weight: 500;
  font-size: 48px;
}
@media (max-width: 767px) {
  .pool__lead {
    font-size: 28px;
  }
  .pool__lead strong {
    font-size: 38px;
  }
}
.pool__desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.8px;
  color: #082627;
  margin: 0;
}
.pool__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0 0;
  padding: 18px 0;
  border-top: 1px solid rgba(8, 38, 39, 0.14);
  border-bottom: 1px solid rgba(8, 38, 39, 0.14);
}
.pool__meta dt {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 3.6px;
  color: #1f8584;
  white-space: nowrap;
}
.pool__meta dd {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #082627;
}

.stay {
  background: #f7f1e7;
  padding: 120px 20px 126px;
}
@media (max-width: 991px) {
  .stay {
    padding: 72px 20px;
  }
}
.stay__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stay__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 991px) {
  .stay__list {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
}
.stay__item {
  display: flex;
}
.stay__item .card {
  width: 100%;
  border: 1px solid #efe2cf;
}
.stay__more {
  display: flex;
  justify-content: center;
  margin-top: 1px;
}
@media (max-width: 767px) {
  .stay__more .pill {
    min-width: 0;
    width: 100%;
    padding: 18px;
  }
}
.stay__notes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}
.stay__notes li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.66px;
  color: #4d6566;
}

.buffet {
  position: relative;
  background: #082627;
  padding: 140px 20px 140px;
}
@media (max-width: 991px) {
  .buffet {
    padding: 72px 20px;
  }
}
.buffet {
  overflow: hidden;
}
.buffet__deco {
  position: absolute;
  top: 60px;
  right: 0;
  width: 280px;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.buffet__deco img {
  width: 100%;
}
@media (max-width: 767px) {
  .buffet__deco {
    width: 180px;
    right: -50px;
    top: 30px;
  }
}
.buffet__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media (max-width: 991px) {
  .buffet__inner {
    gap: 48px;
  }
}
.buffet__card {
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 56px;
  padding-right: 28px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .buffet__card {
    padding: 28px 15px;
    gap: 28px;
  }
}
.buffet__card .letter-sp-container {
  letter-spacing: -0.08px;
}
.buffet__grid {
  display: flex;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) {
  .buffet__grid {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
}
.buffet__figure {
  flex: 0 0 451px;
  margin: 0;
  aspect-ratio: 451/338;
  overflow: hidden;
}
.buffet__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .buffet__figure {
    flex: none;
    width: 100%;
  }
}
.buffet__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.buffet__catch {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.7;
  letter-spacing: 2.24px;
  color: #ffffff;
}
.buffet__catch em {
  font-style: normal;
  font-weight: 400;
  color: #88fffe;
}
@media (max-width: 767px) {
  .buffet__catch {
    font-size: 21px;
  }
}
.buffet__desc {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.8);
}
.buffet__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.buffet__row {
  display: flex;
  gap: 16px;
}
.buffet__row dt {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 3.6px;
  color: #88fffe;
  line-height: 1.8;
}
.buffet__row dd {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.2px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .buffet__row {
    flex-direction: column;
  }
}
.buffet__price-label {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-top: 4px;
}
.buffet__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
  justify-content: center;
  padding: 16px 24px;
  background: #28a6a5;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-decoration: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.buffet__cta .arrow {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.buffet__cta:hover {
  opacity: 0.85;
}
.buffet__cta:hover .arrow {
  transform: translateX(6px);
}
@media (max-width: 991px) {
  .buffet__cta {
    margin: auto;
  }
}
.buffet__note {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.66px;
  color: #ffffff;
}
.buffet__note a {
  color: #ffffff;
  text-underline-offset: 3px;
}

.rest {
  background: #f9fcfd;
  padding: 120px 20px 120px;
}
@media (max-width: 991px) {
  .rest {
    padding: 72px 20px;
  }
}
.rest__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.rest__note {
  margin: 8px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.66px;
  color: #4d6566;
}
.rest__note a {
  color: #4d6566;
  text-underline-offset: 3px;
}

.rest-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.rest-art + .rest-art {
  margin-top: 56px;
}
.rest-art__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(8, 38, 39, 0.14);
  text-align: center;
}
.rest-art__place {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 3.74px;
  color: #28a6a5;
}
.rest-art__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 5.12px;
  color: #082627;
}
.rest-art__title em {
  font-style: normal;
  font-weight: 400;
  color: #1f8584;
}
.rest-art__title--en {
  color: #1f8584;
  font-weight: 400;
}
@media (max-width: 767px) {
  .rest-art__title {
    font-size: 23px;
    letter-spacing: 2px;
  }
}
.rest-art__en {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 4.16px;
  color: #4d6566;
}
.rest-art__period {
  margin: 6px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.82px;
  color: #4d6566;
}
.rest-art__period--multi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 2px;
}
@media (max-width: 767px) {
  .rest-art__period--multi {
    flex-direction: column;
  }
}
.rest-art__center {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 2.24px;
  color: #082627;
}
.rest-art__intro {
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) {
  .rest-art__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.rest-art__figure {
  margin: 0;
  aspect-ratio: 602/395;
  overflow: hidden;
}
.rest-art__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rest-art__lead {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.8px;
  color: #082627;
  letter-spacing: 1.8px;
  line-height: 1.7;
}

.menu-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
    margin-inline: auto;
  }
}

.sweets {
  width: 100%;
  background: #f7f1e7;
  padding: 64px 40px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .sweets {
    padding: 40px 16px;
  }
}
.sweets__en {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 4.32px;
  color: #28a6a5;
}
.sweets__title {
  margin: 6px 0 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 4.8px;
  color: #082627;
}
@media (max-width: 767px) {
  .sweets__title {
    font-size: 24px;
    letter-spacing: 3px;
  }
}
.sweets__slider {
  position: relative;
  width: 100%;
  margin-top: 25px;
  overflow: hidden;
}
.sweets__track {
  display: flex;
  gap: 12px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.sweets__slider.is-dragging .sweets__track {
  cursor: grabbing;
}
.sweets__slide {
  flex: 0 0 calc((100% - 24px) / 3);
}
@media (max-width: 991px) {
  .sweets__slide {
    flex-basis: calc((100% - 12px) / 2);
  }
}
@media (max-width: 767px) {
  .sweets__slide {
    flex-basis: 100%;
  }
}
.sweets__card {
  position: relative;
  display: block;
  height: 332px;
  overflow: hidden;
  text-decoration: none;
  -webkit-user-drag: none;
}
@media (max-width: 767px) {
  .sweets__card {
    height: 280px;
  }
}
.sweets__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweets__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 38, 39, 0.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweets__card:hover img {
  transform: scale(1.06);
}
.sweets__card:hover::after {
  opacity: 1;
}
.sweets__card:hover .sweets__label {
  opacity: 1;
  transform: translateY(0);
}
.sweets__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(8, 38, 39, 0.7);
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweets__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #082627;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(8, 38, 39, 0.18);
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweets__arrow:hover {
  background: #ffffff;
}
.sweets__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.sweets__arrow--prev {
  left: 8px;
}
.sweets__arrow--next {
  right: 8px;
}
@media (max-width: 767px) {
  .sweets__arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
.sweets__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.sweets__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(8, 38, 39, 0.2);
  cursor: pointer;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweets__dots button.is-active {
  background: #28a6a5;
  transform: scale(1.3);
}
.sweets__more {
  margin-top: 24px;
}
.sweets__link {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2.64px;
  color: #1f8584;
  border-bottom: 1px solid #28a6a5;
  padding-bottom: 5px;
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweets__link .arrow {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweets__link:hover {
  opacity: 0.8;
}
.sweets__link:hover .arrow {
  transform: translateX(6px);
}

.bar {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #082627;
}
@media (max-width: 991px) {
  .bar {
    grid-template-columns: 1fr;
  }
}
.bar__figure {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
}
.bar__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .bar__figure {
    min-height: 0;
    aspect-ratio: 3/2;
  }
}
.bar__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
}
@media (max-width: 767px) {
  .bar__text {
    padding: 36px 28px;
  }
}
.bar__catch {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: 2.6px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .bar__catch {
    font-size: 21px;
  }
}
.bar__desc {
  margin: 0 0 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 1.68px;
  color: rgba(255, 255, 255, 0.75);
}
.bar__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2.64px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 5px;
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar__link .arrow {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar__link:hover {
  opacity: 0.8;
}
.bar__link:hover .arrow {
  transform: translateX(6px);
}

.footer {
  background: #28a6a5;
  padding: 50px 20px 24px;
  color: #ffffff;
}
.footer__inner {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__logo {
  width: 291px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 230px;
  }
}
.footer__name {
  margin: 0 0 31px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}
.footer__address {
  margin: 0 0 50px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.footer__sns {
  display: flex;
  gap: 24px;
  margin-bottom: 31px;
}
@media (max-width: 767px) {
  .footer__sns {
    flex-direction: column;
    width: 100%;
    max-width: 366px;
  }
}
.footer__sns-box {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 366px;
  max-width: 100%;
  padding: 22px 24px;
  border: 2px solid #ffffff;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__sns-box:hover {
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 767px) {
  .footer__sns-box {
    width: 100%;
  }
}
.footer__sns-icon {
  width: 47px;
  height: auto;
  flex: 0 0 auto;
}
.footer__sns-icon--fb {
  width: 48px;
}
.footer__sns-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.footer__sns-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
}
.footer__sns-id {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 12px;
}
.footer__breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #ece6da;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__breadcrumb span {
  position: relative;
  padding-left: 12px;
}
.footer__breadcrumb span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #ece6da;
  opacity: 0.6;
}
.footer__breadcrumb span:last-child::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #ece6da;
  opacity: 0.6;
}
.footer__copy {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.7;
  color: #ffffff;
}
@media (max-width: 767px) {
  .footer__copy {
    font-size: 10px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes loader-wave {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1440px;
  }
}
@keyframes loader-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}