@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #352a22;
  background: #fdf9f0;
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure {
  margin: 0;
}

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

img {
  height: auto;
}

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

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

body.is-locked {
  overflow: hidden;
}

/* ==============================================
   Helpers
   ============================================== */
.is-sp {
  display: none !important;
}

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

@media (max-width: 768px) {
  .is-sp {
    display: revert !important;
  }
  .is-pc {
    display: none !important;
  }
}
.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.heading__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.heading__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 6.12px;
  color: #c79a5f;
  line-height: 1.7;
}
.heading__jp {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 4px;
  color: #4a3b2e;
  line-height: 1.6;
}
.heading__divider {
  width: 120px;
  height: 1px;
  margin-top: 16px;
  background: url(../img/svg/heading_divider.svg) no-repeat;
}
.heading--light .heading__jp {
  color: #fbf6ec;
}
.heading--light .heading__en {
  color: #D8C189;
}
.heading--light .heading__en--member {
  color: #D8C189;
  letter-spacing: 1px;
}
.heading--light .heading__divider {
  color: rgba(255, 252, 245, 0.6);
  opacity: 1;
}
@media (max-width: 768px) {
  .heading__icon {
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
  }
  .heading__en {
    font-size: 13px;
    letter-spacing: 2px;
  }
  .heading__jp {
    font-size: 22px;
    letter-spacing: 0.88px;
  }
  .heading__divider {
    width: 60px;
    margin-top: 6px;
    background: #c79a5f;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 360px;
  padding: 22px 40px 22px 64px;
  border-radius: 999px;
  background: #4a3b2e;
  color: #fbf6ec;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.8px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, box-shadow 0.3s;
}
.cta::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta:hover {
  background: #c79a5f;
  box-shadow: 0 8px 24px rgba(53, 42, 34, 0.28);
  transform: translateY(-2px);
}
.cta:hover::after {
  transform: rotate(-45deg) translate(2px, 2px);
}
@media (max-width: 768px) {
  .cta {
    min-width: 0;
    width: auto;
    padding: 13px 24px 13px 28px;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.52px;
  }
  .cta::after {
    width: 9px;
    height: 9px;
  }
}

.info-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}
.info-row__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #4a3b2e;
  color: #fffcf5;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12px;
  line-height: 1.8;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .info-row__label {
    width: 58px;
    padding: 5px 8px;
    font-size: 11px;
    letter-spacing: 0;
  }
}
.info-row__label {
  margin-top: 1px;
}
.info-row__label--unset {
  background: transparent;
  border: none;
}
.info-row__value {
  flex: 1;
  min-width: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 1.7;
  color: #4a3b2e;
}
@media (max-width: 768px) {
  .info-row {
    gap: 10px;
    align-items: center;
  }
  .info-row--large {
    align-items: flex-start;
  }
  .info-row__value {
    font-size: 12px;
    letter-spacing: 0.24px;
  }
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fffcf5;
  border: 2px solid #352a22;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #352a22;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 0;
  z-index: 5;
  transition: background 0.25s, color 0.25s, transform 0.25s;
  user-select: none;
}
.arrow--prev {
  left: -30px;
}
.arrow--next {
  right: -30px;
}
.arrow--prev::before {
  content: "‹";
  margin-right: 5px;
  margin-top: -5px;
}
.arrow--next::before {
  content: "›";
  margin-left: 5px;
  margin-top: -5px;
}
.arrow:hover {
  background: #352a22;
  color: #fffcf5;
}
.arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 768px) {
  .arrow {
    width: 28px;
    height: 28px;
    border-width: 0.5px;
    padding-bottom: 3px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 16px;
    color: #4a3b2e;
  }
  .arrow--prev {
    left: -14px;
  }
  .arrow--next {
    right: -14px;
  }
  .arrow--prev::before {
    margin: 0;
  }
  .arrow--next::before {
    margin: 0;
  }
}

.dots {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .dots {
    gap: 8px;
  }
}
.dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 252, 245, 0.4);
  opacity: 1;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.dots .swiper-pagination-bullet-active {
  background: #fffcf5;
  transform: scale(1.25);
}

.color-red {
  color: #8E2F33;
}

.confetti {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  overflow: hidden;
}
.confetti__piece {
  position: absolute;
  top: 0;
  left: var(--x, 50vw);
  width: var(--size, 24px);
  will-change: transform;
  animation: confetti-fall var(--dur, 5s) linear var(--delay, 0s) infinite;
}
.confetti__piece--once {
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.confetti__sway {
  display: block;
  will-change: transform;
  animation: confetti-sway var(--sway-dur, 2s) ease-in-out var(--delay, 0s) infinite alternate;
}
.confetti__piece img {
  display: block;
  width: 100%;
  transform-origin: center;
  animation: confetti-spin var(--spin-dur, 1.6s) linear var(--delay, 0s) infinite;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-15vh);
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    transform: translateY(115vh);
    opacity: 0;
  }
}
@keyframes confetti-spin {
  to {
    transform: rotate(var(--spin, 360deg));
  }
}
@keyframes confetti-sway {
  from {
    transform: translateX(calc(var(--sway, 40px) * -1));
  }
  to {
    transform: translateX(var(--sway, 40px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .confetti {
    display: none;
  }
}
.s-hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  max-height: 1105px;
  overflow: hidden;
  color: #ffffff;
}
.s-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.s-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 7s linear;
}
.s-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.s-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(126, 93, 69, 0.25) 0%, rgba(164, 70, 74, 0.25) 100%);
  mix-blend-mode: color;
}
.s-hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 24px;
}
.s-hero__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1368px, 92vw);
  aspect-ratio: 1368/374;
  background: radial-gradient(50% 50% at 50% 50%, rgba(52, 24, 4, 0.4) 0%, rgba(52, 24, 4, 0) 77.4%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .s-hero__inner::before {
    height: 60vw;
    max-height: 250px;
  }
}
@media (max-width: 768px) {
  .s-hero__inner {
    margin-top: 40px;
    padding: 0;
  }
}
.s-hero__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 6px;
  color: #ffffff;
  line-height: 1.7;
  text-shadow: 0 2px 24px rgba(53, 42, 34, 0.5);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .s-hero__en {
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 1.5;
  }
}
.s-hero__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 52px);
  letter-spacing: 5px;
  line-height: 1.5;
  text-shadow: 0 2px 24px rgba(53, 42, 34, 0.5);
}
.s-hero__sub {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.32px;
  text-shadow: 0 1px 12px rgba(53, 42, 34, 0.5);
}
.s-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #ffffff;
}
.s-hero__scroll::after {
  content: "";
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: top;
  animation: scroll-line 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@media (max-width: 768px) {
  .s-hero {
    max-height: 600px;
    min-height: unset;
  }
  .s-hero__title {
    letter-spacing: 3px;
  }
  .s-hero__scroll {
    font-size: 10px;
  }
  .s-hero__scroll::after {
    height: 54px;
  }
}
.s-hero__logo {
  position: absolute;
  left: 80px;
  top: 100px;
  z-index: 2;
  transform-origin: center center;
  will-change: transform;
}
@media (max-width: 768px) {
  .s-hero__logo {
    top: 70px;
    max-width: 185px;
    min-width: 120px;
    left: 50%;
    transform: translateX(-50%);
  }
}

html.hero-ready .s-hero__slide.is-active {
  transform: scale(1);
}

html.intro {
  overflow: hidden;
}
html.intro .s-hero__logo {
  opacity: 0;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  color: #fffcf5;
}
html:not(.intro) .preloader {
  display: none;
}
.preloader__bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 245, 0.88);
  backdrop-filter: blur(4px);
  clip-path: circle(150vmax at 50% 50%);
  will-change: clip-path;
  transform: translateZ(0);
  transition: opacity 0.3s ease;
}
.preloader__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 40px;
  width: min(88vw, 460px);
  text-align: center;
  padding: 24px;
}
.preloader__eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 4px;
  color: #c79a5f;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  animation: preloader-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.preloader__logo {
  width: min(64vw, 320px);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: preloader-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.preloader__logo img {
  width: 100%;
  display: block;
}
.preloader__meter {
  position: relative;
  width: min(72vw, 260px);
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 252, 245, 0.22);
  opacity: 0;
  animation: preloader-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}
.preloader__meter-bar {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #c79a5f;
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes preloader-in {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .preloader {
    transition: none;
  }
  .preloader__eyebrow, .preloader__logo, .preloader__meter {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
.s-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fbf6ec;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
}
.s-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 24px 20px;
}
.s-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  transition: color 0.25s;
}
.s-nav__link .en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 1px;
  color: #c2a45c;
  white-space: nowrap;
}
.s-nav__link .jp {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #4a3b2e;
  white-space: nowrap;
}
.s-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #c79a5f;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.s-nav__link:hover::after, .s-nav__link.is-active::after {
  transform: scaleX(1);
}
.s-nav__link.is-active .jp {
  color: #c79a5f;
}
@media (max-width: 1024px) {
  .s-nav__list {
    row-gap: 10px;
    column-gap: 10px;
  }
}
@media (max-width: 768px) {
  .s-nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    padding: 16px 20px;
  }
  .s-nav__link {
    gap: 2px;
  }
  .s-nav__link .en {
    font-size: 8px;
    font-style: normal;
    letter-spacing: 0.64px;
  }
  .s-nav__link .jp {
    font-size: 11px;
    letter-spacing: 0.22px;
  }
}

.section {
  position: relative;
  padding: 120px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 56px 20px;
  }
}
.section__head {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .section__head {
    margin-bottom: 20px;
  }
}
.section__inner {
  width: 100%;
  max-width: calc(1080px + 20px * 2);
  margin-inline: auto;
  padding-inline: 20px;
}

.s-concept {
  background: linear-gradient(180deg, #FBF6EC 0%, #F6EEDF 100%);
  text-align: center;
  overflow: hidden;
}
.s-concept__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 40px);
  letter-spacing: 2.8px;
  line-height: 1.7;
  color: #4a3b2e;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .s-concept__title {
    font-size: 22px;
    letter-spacing: 1.1px;
  }
}
.s-concept__text {
  margin-inline: auto;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a3b2e;
  font-weight: 600;
}
@media (max-width: 768px) {
  .s-concept__text {
    font-size: 13px;
    letter-spacing: 0.39px;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .s-concept .section__inner {
    padding: 0;
  }
}

.s-message {
  position: relative;
  background: linear-gradient(180deg, #75262A 0%, #8E2F33 100%);
  color: #ffffff;
  overflow: hidden;
}
.s-message__watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 41vw;
  line-height: 1;
  color: rgba(216, 193, 137, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .s-message__watermark {
    font-size: 280px;
    right: -10%;
  }
}
.s-message__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 76px;
  align-items: center;
}
@media (max-width: 768px) {
  .s-message__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }
}
.s-message__photo {
  width: 100%;
  aspect-ratio: 368/437;
  border-radius: 184px 184px 0 0;
  overflow: hidden;
}
.s-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}
@media (max-width: 768px) {
  .s-message__photo {
    max-width: 200px;
    aspect-ratio: 200/240;
    border-radius: 100px 100px 2px 2px;
  }
}
.s-message__body {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #D8C189;
  font-weight: 200;
}
@media (max-width: 768px) {
  .s-message__body {
    font-size: 13px;
    letter-spacing: 0.39px;
    line-height: 2;
  }
}
.s-message__sign {
  font-weight: 200;
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.32px;
}
@media (max-width: 768px) {
  .s-message__sign {
    font-size: 13px;
    letter-spacing: 0.26px;
    text-align: right;
  }
}
.s-message__sign--name {
  font-size: 20px;
  letter-spacing: 0.8px;
}
@media (max-width: 768px) {
  .s-message .section__inner {
    padding: 0;
  }
}

.s-symbol {
  background: #352a22;
  z-index: 1;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .s-symbol {
    padding: 40px 20px;
  }
}
.s-symbol__card {
  position: relative;
  width: 100%;
  max-width: calc(1680px + 20px * 2);
  margin-inline: auto;
  padding-inline: 20px;
  background: #ffffff;
  border-radius: 24px;
  padding: 80px;
  z-index: 2;
}
@media (max-width: 1440px) {
  .s-symbol__card {
    max-width: 1250px;
  }
}
@media (max-width: 768px) {
  .s-symbol__card {
    padding: 32px 22px;
    border-radius: 8px;
  }
}
.s-symbol__head .heading__jp {
  color: #4a3b2e;
}
.s-symbol__block {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 403px 1fr;
  gap: 76px;
  align-items: center;
  margin: 48px auto 0;
}
@media (max-width: 768px) {
  .s-symbol__block {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
    justify-items: center;
  }
}
.s-symbol__block--reverse {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .s-symbol__block--reverse {
    margin-top: 18px;
  }
}
.s-symbol__logo {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.s-symbol__logo img {
  width: 100%;
}
@media (max-width: 768px) {
  .s-symbol__logo {
    max-width: 190px;
    margin-inline: auto;
  }
}
.s-symbol__portrait figure {
  margin: 0;
}
.s-symbol__portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}
.s-symbol__portrait figcaption {
  margin-top: 16px;
  font-size: 13px;
  color: #4a3b2e;
  text-align: center;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .s-symbol__portrait {
    max-width: 150px;
    margin-inline: auto;
  }
  .s-symbol__portrait figcaption {
    font-size: 10px;
    margin-top: 12px;
  }
}
.s-symbol__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 2px;
  color: #352a22;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .s-symbol__name {
    font-size: 20px;
    letter-spacing: 0.4px;
    text-align: center;
    margin-bottom: 14px;
  }
}
.s-symbol__text {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a3b2e;
  max-width: 600px;
}
@media (max-width: 768px) {
  .s-symbol__text {
    font-size: 13px;
    letter-spacing: 0.39px;
    line-height: 2;
  }
}
.s-symbol__decor {
  position: absolute;
  z-index: 0;
  max-width: 20%;
}
.s-symbol__decor--decor-1 {
  top: -33px;
  right: -51px;
}
@media (max-width: 768px) {
  .s-symbol__decor--decor-1 {
    max-width: 40%;
    right: -20px;
    top: -20px;
  }
}
.s-symbol__decor--decor-2 {
  top: 20px;
  left: 46px;
}
@media (max-width: 768px) {
  .s-symbol__decor--decor-2 {
    display: none;
  }
}
.s-symbol__decor--decor-3 {
  bottom: -14px;
  left: -46px;
}
@media (max-width: 768px) {
  .s-symbol__decor--decor-3 {
    max-width: 30%;
    bottom: 350px;
    left: -20px;
  }
}
.s-symbol__decor--decor-4 {
  bottom: 8px;
  right: 22px;
}
@media (max-width: 768px) {
  .s-symbol__decor--decor-4 {
    max-width: 35%;
    bottom: 0;
  }
}
.s-symbol__decor--decor-5 {
  top: 50%;
  transform: translateY(-50%);
  right: -49px;
  max-width: 15%;
}
@media (max-width: 768px) {
  .s-symbol__decor--decor-5 {
    display: none;
  }
}

.s-package {
  background: #fbf6ec;
  color: #fffcf5;
}
.s-package__head .heading__jp {
  color: #fffcf5;
}

.pkg {
  width: 100%;
  max-width: calc(1480px + 20px * 2);
  margin-inline: auto;
  padding-inline: 20px;
  margin-top: 96px;
}
@media (max-width: 1440px) {
  .pkg {
    max-width: 1250px;
  }
}
.pkg:first-of-type {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .pkg {
    margin-top: 44px;
    padding: 0;
  }
}
.pkg__label {
  text-align: center;
  padding: 24px 0;
  border-bottom: 10px solid #fbf6ec;
  background: #4a3b2e;
  border-radius: 16px 16px 0 0;
}
.pkg__label .jp {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 4px;
  color: #c79a5f;
  margin-bottom: 6px;
}
.pkg__label .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(32px, 5.2vw, 48px);
  letter-spacing: 2.4px;
  line-height: 1;
  color: #fffcf5;
}
@media (max-width: 768px) {
  .pkg__label {
    padding: 8px 0;
    border-bottom-width: 4px;
    border-radius: 8px 8px 0 0;
  }
  .pkg__label .jp {
    font-size: 12px;
    letter-spacing: 0.48px;
    margin-bottom: 0;
  }
  .pkg__label .en {
    font-size: 30px;
    letter-spacing: 2px;
  }
}
.pkg__card {
  background: #c79a5f;
  border-radius: 0 0 16px 16px;
  padding: 40px;
}
@media (max-width: 768px) {
  .pkg__card {
    padding: 0;
    border-radius: 0 0 8px 8px;
  }
}
.pkg__inner {
  background: #c79a5f;
  border: 2px solid #352a22;
  border-radius: 16px;
  padding: 64px 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .pkg__inner {
    border: none;
    border-radius: 0 0 8px 8px;
    padding: 20px 20px 24px;
    gap: 14px;
  }
}
.pkg__viewport {
  position: relative;
  width: 100%;
  max-width: 1080px;
}
.pkg__slider {
  border-radius: 4px;
  overflow: hidden;
  background: #e7ded5;
}
.pkg__slide {
  aspect-ratio: 1080/675;
}
.pkg__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pkg__textbox {
  position: relative;
  width: 100%;
  max-width: 1080px;
}
.pkg__panel {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pkg__panel.is-active {
  display: flex;
}
@media (max-width: 768px) {
  .pkg__panel {
    gap: 14px;
  }
}
.pkg__box {
  width: 100%;
  background: #fffcf5;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .pkg__box {
    padding: 16px;
    gap: 10px;
  }
}
.pkg__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: 1.28px;
  line-height: 1.7;
  color: #4a3b2e;
}
@media (max-width: 768px) {
  .pkg__title {
    font-size: 17px;
    letter-spacing: 0.51px;
    line-height: 1.6;
    text-align: center;
  }
}
.pkg .cta {
  width: fit-content;
}

.s-members {
  position: relative;
  background: linear-gradient(180deg, #75262A 0%, #8E2F33 100%);
  color: #fffcf5;
  overflow: hidden;
  padding-bottom: 0;
}
.s-members__intro {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.32px;
}
@media (max-width: 768px) {
  .s-members__intro {
    font-size: 14px;
    margin-bottom: 36px;
    text-align: left;
  }
}
.s-members__slider-wrap {
  position: relative;
  width: 100%;
  max-width: calc(1480px + 60px * 2);
  margin-inline: auto;
  padding-inline: 60px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .s-members__slider-wrap {
    padding-inline: 0;
  }
}
.s-members__slider {
  overflow: hidden;
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 1000px) {
  .s-members__slider {
    width: 1080px;
  }
}
@media (min-width: 1480px) {
  .s-members__slider {
    width: 1360px;
  }
}
.s-members__card {
  width: 400px;
  max-width: 100%;
  height: auto;
}
.s-members__card figure {
  margin: 0 auto;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  aspect-ratio: 400/492;
  max-height: 492px;
  max-width: 400px;
}
.s-members__card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
@media (max-width: 768px) {
  .s-members__card figure {
    border-radius: 156px 156px 0 0;
    aspect-ratio: 335/312;
  }
}
.s-members__card figure .scale {
  transform: scale(1.4);
  object-position: 50% 210%;
}
@media (max-width: 768px) {
  .s-members__card figure .scale {
    transform: none;
    object-position: bottom;
  }
}
.s-members__card figure .scale1x {
  transform: scale(1.3);
  object-position: 50% 160%;
}
@media (max-width: 768px) {
  .s-members__card figure .scale1x {
    transform: none;
    object-position: bottom;
  }
}
.s-members__card figure .scalex2 {
  transform: scale(1.6);
  object-position: 50% 250%;
}
@media (max-width: 768px) {
  .s-members__card figure .scalex2 {
    transform: none;
    object-position: bottom;
  }
}
@media (max-width: 768px) {
  .s-members__card figure .scalesp {
    object-position: 50% 70%;
  }
}
@media (max-width: 768px) {
  .s-members__card figure .scale-3-sp {
    transform: scale(1.2);
    object-position: 50% 115%;
  }
}
@media (max-width: 768px) {
  .s-members__card figure .scale-6-sp {
    transform: scale(1.2);
    object-position: 50% 100%;
  }
}
.s-members__caption {
  padding: 24px 12px;
  text-align: center;
  background: #fbf6ec;
  color: #352a22;
  min-height: 160px;
}
.s-members__caption .role {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
}
.s-members__caption .comment {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .s-members__caption {
    padding: 20px 12px 24px;
    min-height: 0;
  }
  .s-members__caption .role {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
  }
  .s-members__caption .comment {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.24px;
  }
}
.s-members__dots {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .s-members__dots {
    margin-top: 24px;
  }
}
.s-members__photos {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin-top: 96px;
  aspect-ratio: 1920/640;
  max-height: 640px;
  overflow: hidden;
}
.s-members__photos::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(53, 42, 34, 0) 38.46%, rgba(53, 42, 34, 0.3) 69.71%, #352a22 100%);
}
@media (max-width: 768px) {
  .s-members__photos {
    margin-top: 56px;
    aspect-ratio: 16/11;
  }
}
.s-members__photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.s-members__photo.is-active {
  opacity: 1;
}
.s-members__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-members__note {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #352a22;
  padding: 64px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .s-members__note {
    padding: 24px 20px;
  }
}
.s-members__note-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #fbf6ec;
}
@media (max-width: 768px) {
  .s-members__note-text {
    font-weight: 200;
    text-align: center;
    font-size: 16px;
  }
}
.s-members .arrow {
  background: #fbf6ec;
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
}
.s-members .arrow--prev {
  left: 80px;
}
@media (max-width: 768px) {
  .s-members .arrow--prev {
    top: unset;
    transform: none;
    bottom: -10px;
    left: 0;
  }
}
.s-members .arrow--next {
  right: 80px;
}
@media (max-width: 768px) {
  .s-members .arrow--next {
    top: unset;
    transform: none;
    bottom: -10px;
    right: 0;
  }
}
.s-members .arrow::before {
  content: "";
  width: 0;
  height: 0;
  margin: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.s-members .arrow--prev::before {
  border-right: 18px solid #75262a;
  border-left: 0;
}
.s-members .arrow--next::before {
  border-left: 18px solid #75262a;
  border-right: 0;
}
.s-members .arrow:hover {
  background: #fbf6ec;
  box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-50%) scale(1.06);
}
@media (max-width: 768px) {
  .s-members .arrow:hover {
    transform: none;
  }
}
@media (max-width: 768px) {
  .s-members .arrow {
    width: 33px;
    height: 33px;
  }
  .s-members .arrow::before {
    border-top-width: 9px;
    border-bottom-width: 9px;
  }
  .s-members .arrow--prev::before {
    border-right-width: 14px;
  }
  .s-members .arrow--next::before {
    border-left-width: 14px;
  }
}

.s-info {
  background: #fbf6ec;
  overflow: hidden;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .s-info {
    padding-top: 56px;
    padding-bottom: 40px;
  }
}
.s-info__box {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 40px;
  background: #fffcf5;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(53, 42, 34, 0.06);
}
@media (max-width: 768px) {
  .s-info__box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 22px;
    border-radius: 12px;
    background: #ffffff;
  }
}
.s-info__row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 10px 0;
}
.s-info__row + .s-info__row {
  border-top: 1px dashed rgba(74, 59, 46, 0.2);
}
.s-info__row .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #4a3b2e;
  color: #fffcf5;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12px;
  line-height: 1.8;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .s-info__row .label {
    width: 58px;
    padding: 5px 8px;
    font-size: 11px;
    letter-spacing: 0;
  }
}
.s-info__row .label {
  width: 160px;
  background: #4a3b2e;
}
.s-info__row .value {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #352a22;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .s-info__row {
    flex-direction: column;
    gap: 7px;
    padding: 0;
  }
  .s-info__row + .s-info__row {
    border-top: none;
  }
  .s-info__row .label {
    width: 102px;
  }
  .s-info__row .value {
    font-size: 13px;
    letter-spacing: 0.13px;
    font-weight: 700;
  }
}
.s-info__notes {
  max-width: 900px;
  margin: 80px auto 0;
  font-size: 12px;
  line-height: 1.7;
  color: #352a22;
  letter-spacing: 0.32px;
}
.s-info__notes p {
  margin: 0;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 768px) {
  .s-info__notes p {
    text-indent: 0;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .s-info__notes {
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0.1px;
    margin-top: 28px;
  }
}

.s-footer__main {
  background: #4a3b2e;
  color: #ffffff;
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .s-footer__main {
    padding: 36px 20px 32px;
    gap: 21px;
  }
}
.s-footer__logo {
  width: 341px;
  max-width: 80%;
}
.s-footer__logo img {
  width: 100%;
}
@media (max-width: 768px) {
  .s-footer__logo {
    width: 180px;
    max-width: 60%;
  }
}
.s-footer__map {
  width: 100%;
  max-width: 1246px;
  margin-inline: auto;
}
.s-footer__map #Map {
  width: 100%;
}
.s-footer__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}
.s-footer__social {
  display: flex;
  gap: 48px;
}
.s-footer__social a {
  transition: transform 0.25s, opacity 0.25s;
}
.s-footer__social a:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}
.s-footer__social img {
  width: 48px;
  height: 48px;
}
@media (max-width: 768px) {
  .s-footer__social {
    gap: 25px;
  }
  .s-footer__social img {
    width: 25px;
    height: 25px;
  }
}
.s-footer__links {
  display: flex;
  align-items: center;
  gap: 29px;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.8px;
}
.s-footer__links .sep {
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.6);
}
.s-footer__links a {
  transition: color 0.25s;
}
.s-footer__links a:hover {
  color: #c79a5f;
}
@media (max-width: 768px) {
  .s-footer__links {
    flex-direction: column;
    gap: 16px;
    font-size: 10.4px;
    letter-spacing: 0.42px;
    font-weight: 600;
  }
  .s-footer__links .sep {
    display: none;
  }
}
.s-footer__copy {
  background: #fdf9f0;
  padding: 16px 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #4a3b2e;
}
@media (max-width: 768px) {
  .s-footer__copy {
    font-size: 9px;
  }
}

.to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 90;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #8e2f33;
  border: 5px solid #b6864e;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s, box-shadow 0.25s, background 0.25s;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top__arrow {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 24px solid #ffffff;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.to-top__label {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #ffffff;
  white-space: nowrap;
}
.to-top:hover {
  background: #7c2930;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.18);
}
.to-top:hover .to-top__arrow {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .to-top {
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
    border-width: 3px;
  }
  .to-top__arrow {
    border-left-width: 10px;
    border-right-width: 10px;
    border-bottom-width: 16px;
  }
  .to-top__label {
    font-size: 8px;
  }
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.draw-in {
  -webkit-mask-image: linear-gradient(90deg, #000 44%, transparent 60%);
  mask-image: linear-gradient(90deg, #000 44%, transparent 60%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 210% 100%;
  mask-size: 210% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  will-change: mask-position;
  transition: -webkit-mask-position 1.15s cubic-bezier(0.62, 0, 0.24, 1), mask-position 1.15s cubic-bezier(0.62, 0, 0.24, 1);
}
.draw-in.is-drawn {
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}
.draw-in--rl {
  -webkit-mask-image: linear-gradient(270deg, #000 44%, transparent 60%);
  mask-image: linear-gradient(270deg, #000 44%, transparent 60%);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}
.draw-in--rl.is-drawn {
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}
.draw-in--up {
  -webkit-mask-image: linear-gradient(0deg, #000 44%, transparent 60%);
  mask-image: linear-gradient(0deg, #000 44%, transparent 60%);
  -webkit-mask-size: 100% 210%;
  mask-size: 100% 210%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}
.draw-in--up.is-drawn {
  -webkit-mask-position: 0 100%;
  mask-position: 0 100%;
}

@media (prefers-reduced-motion: reduce) {
  .draw-in {
    -webkit-mask-image: none;
    mask-image: none;
  }
}