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

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

body {
  background-color: #f5f0ea;
  color: #3a302a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.9;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

.loader {
  position: fixed;
  inset: 0;
  background: #f5f0ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__logo {
  font-family: "WindSong", cursive;
  font-size: clamp(3rem, 10vw, 5rem);
  color: #3a302a;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(12px);
  animation: loaderFadeIn 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}
.loader__bar {
  width: 60px;
  height: 1px;
  background: #d4c8bc;
  margin-top: 20px;
  overflow: hidden;
}
.loader__bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #8c7b6e;
  transform: translateX(-100%);
  animation: loaderBar 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes loaderFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loaderBar {
  to {
    transform: translateX(0);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header.is-scrolled {
  background: rgba(245, 240, 234, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(212, 200, 188, 0.6);
}
.header.is-scrolled .header__logo {
  color: #3a302a;
}
.header.is-scrolled .header__nav a {
  color: #3a302a;
}
.header.is-scrolled .header__hamburger span {
  background: #3a302a;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.header__logo {
  font-family: "WindSong", cursive;
  font-size: 1.9rem;
  color: #faf8f5;
  line-height: 1;
  transition: color 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.01em;
}
.header__nav {
  display: none;
  gap: 36px;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}
.header__nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #faf8f5;
  transition: color 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  z-index: 10;
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #faf8f5;
  transition: background 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.45, 0, 0.55, 1), opacity 0.35s;
}
.header__hamburger.is-active span {
  background: #3a302a !important;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  background: rgba(245, 240, 234, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.45, 0, 0.55, 1);
}
.header__mobile-nav.is-open {
  max-height: 420px;
}
@media (min-width: 768px) {
  .header__mobile-nav {
    display: none;
  }
}

.mobile-nav__link {
  display: block;
  padding: 16px 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: #3a302a;
  border-bottom: 1px solid rgba(212, 200, 188, 0.5);
}
.mobile-nav__link:last-child {
  border-bottom: none;
}

.hero {
  position: relative;
  height: var(--hero-height, 100svh);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    min-height: 620px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42, 31, 24, 0.2) 0%, rgba(42, 31, 24, 0.4) 64%, rgba(42, 31, 24, 0.1) 100%);
}
.hero__img {
  position: absolute;
  right: 0;
  bottom: -6%;
  left: 0;
  width: 100%;
  height: 116%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 72%;
     object-position: center 72%;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
}
@media (min-width: 768px) {
  .hero__img {
    position: static;
    height: 108%;
    -o-object-position: center top;
       object-position: center top;
  }
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #faf8f5;
  padding: 44px 28px 96px;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (min-width: 768px) {
  .hero__content {
    padding: 80px 28px 60px;
  }
}
.hero__section-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(250, 248, 245, 0.45);
  margin-bottom: 24px;
  display: none;
}
.hero__logo {
  font-family: "WindSong", cursive;
  font-size: clamp(4.2rem, 12vw, 5rem);
  color: #000;
  line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(42, 31, 24, 0.25);
  opacity: 0;
}
.hero__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  letter-spacing: 0.22em;
  margin-bottom: 4px;
  opacity: 0;
}
.hero__tag {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(250, 248, 245, 0.65);
  margin-bottom: 36px;
  opacity: 0;
}
.hero__copy {
  position: relative;
  isolation: isolate;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.84rem, 2.4vw, 0.72rem);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: rgba(250, 248, 245, 0.65);
  opacity: 0;
}
.hero__copy::before {
  content: "";
  display: none;
  position: absolute;
  inset: -16px -14px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(42, 31, 24, 0) 0%, rgba(42, 31, 24, 0) 40%, rgba(42, 31, 24, 0) 50%);
  filter: blur(8px);
  pointer-events: none;
}
.hero__scroll {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  isolation: isolate;
}
.hero__scroll::before {
  content: "";
  position: absolute;
  inset: -16px -14px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(58, 48, 42, 0.4) 0%, rgba(58, 48, 42, 0.2) 20%, rgba(58, 48, 42, 0.1) 80%);
  filter: blur(8px);
  pointer-events: none;
}
.hero__scroll--left {
  left: 18px;
  display: none;
}
@media (min-width: 768px) {
  .hero__scroll--left {
    left: 32px;
  }
}
.hero__scroll--right {
  right: 18px;
}
@media (min-width: 768px) {
  .hero__scroll--right {
    right: 32px;
  }
}
.hero__scroll--center {
  left: 50%;
  display: none;
  transform: translateX(-50%);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: rgba(250, 248, 245, 0.45);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 248, 245, 0.9);
  animation: scrollLine 2s cubic-bezier(0.45, 0, 0.55, 1) 2.5s infinite;
}
.hero__scroll-text {
  display: none;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: rgba(250, 248, 245, 0.8);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  50% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}
@keyframes btnTextGlow {
  0% {
    text-shadow: 0 0 8px rgba(250, 248, 245, 0.45), 0 0 18px rgba(250, 248, 245, 0.22);
  }
  100% {
    text-shadow: 0 0 14px rgba(250, 248, 245, 0.9), 0 0 30px rgba(250, 248, 245, 0.48);
  }
}
.concept {
  position: relative;
  min-height: var(--section-height, 88svh);
  overflow: hidden;
}
.concept__bg {
  position: absolute;
  inset: 0;
}
.concept__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.concept__overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 234, 0.52);
}
.concept__img {
  width: 100%;
  height: 112%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  backface-visibility: hidden;
  will-change: transform;
}
@media (min-width: 768px) {
  .concept__img {
    height: 120%;
  }
}
.concept__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: var(--section-height, 88svh);
  padding: 100px 36px;
  text-align: center;
}
.concept__section-num {
  display: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #7a6e66;
  margin-bottom: 28px;
}
.concept__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 9vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: #3a302a;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 24px;
}
.concept__divider {
  width: 40px;
  height: 1px;
  background: #8c7b6e;
  margin: 0 auto 36px;
}
.concept__text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.88rem, 3.5vw, 1.02rem);
  font-weight: 300;
  line-height: 2.4;
  letter-spacing: 0.1em;
  color: #3a302a;
}

.gallery {
  padding: 88px 0;
  background: #f5f0ea;
}
.gallery__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery__header {
  text-align: center;
  margin-bottom: 44px;
}
.gallery__section-num {
  display: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #d4c8bc;
  margin-bottom: 10px;
}
.gallery__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #3a302a;
  margin-bottom: 18px;
}
.gallery__divider {
  width: 40px;
  height: 1px;
  background: #8c7b6e;
  margin: 0 auto;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery__item:hover img {
  transform: scale(1.06);
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 48, 42, 0.12);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu {
  padding: 88px 0;
  background: #eee7dd;
}
.menu__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}
.menu__header {
  text-align: center;
  margin-bottom: 52px;
}
.menu__section-num {
  display: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #d4c8bc;
  margin-bottom: 10px;
}
.menu__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #3a302a;
}
.menu__category {
  margin-bottom: 44px;
}
.menu__category:last-child {
  margin-bottom: 0;
}
.menu__category-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #3a302a;
  padding-bottom: 12px;
  border-bottom: 1px solid #d4c8bc;
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.menu__category-note {
  font-size: 0.68rem;
  color: #7a6e66;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.menu__category-note::before {
  content: "（";
}
.menu__category-note::after {
  content: "）";
}
.menu__list {
  display: flex;
  flex-direction: column;
}
.menu__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 200, 188, 0.45);
}
.menu__item:last-child {
  border-bottom: none;
}
.menu__item-info {
  flex: 1;
}
.menu__item-name {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #3a302a;
  line-height: 1.5;
}
.menu__item-desc {
  display: block;
  font-size: 0.7rem;
  color: #7a6e66;
  line-height: 1.65;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.menu__item-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #3a302a;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 1px;
}

.about {
  padding: 88px 0;
  background: linear-gradient(rgba(245, 240, 234, 0.28), rgba(245, 240, 234, 0.28)), url("../images/bg_05.png") 72% center/cover no-repeat;
}
.about__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}
.about__header {
  text-align: center;
  margin-bottom: 44px;
}
.about__section-num {
  display: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #d4c8bc;
  margin-bottom: 10px;
}
.about__heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.1rem, 4.5vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #3a302a;
}
.about__photo {
  width: 180px;
  height: 220px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 16px 34px rgba(58, 48, 42, 0.14);
}
.about__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.about__name {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #3a302a;
  margin-bottom: 36px;
}
.about__card {
  background: rgba(237, 230, 220, 0.58);
  border-radius: 20px;
  padding: 28px 22px;
  margin-bottom: 24px;
  box-shadow: 0 14px 32px rgba(58, 48, 42, 0.1);
}
.about__card.js-reveal {
  transform: none;
}
.about__card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  text-align: center;
  color: #8c7b6e;
  margin-bottom: 20px;
}
.about__profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(212, 200, 188, 0.62);
  border: 1px solid rgba(212, 200, 188, 0.62);
  border-radius: 2px;
  overflow: hidden;
}
.about__profile-item {
  background: rgba(237, 230, 220, 0.58);
  padding: 12px 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 5px;
}
.about__profile-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: #7a6e66;
  text-align: center;
}
.about__profile-value {
  font-family: "Noto Serif JP", serif;
  font-size: 0.84rem;
  color: #3a302a;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: center;
  align-self: center;
}
.about__message {
  background: rgba(237, 230, 220, 0.58);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 14px 32px rgba(58, 48, 42, 0.1);
}
.about__message .about__card-title {
  margin-bottom: 16px;
}
.about__message p {
  font-family: "Noto Serif JP", serif;
  font-size: 0.86rem;
  line-height: 2.05;
  color: #3a302a;
  letter-spacing: 0.04em;
}

.access {
  padding: 88px 0;
  background: #eee7dd url("../images/bg_04.png") center center/cover no-repeat;
}
.access__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}
.access__header {
  text-align: center;
  margin-bottom: 44px;
}
.access__section-num {
  display: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #d4c8bc;
  margin-bottom: 10px;
}
.access__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #3a302a;
  margin-bottom: 18px;
}
.access__divider {
  width: 40px;
  height: 1px;
  background: #8c7b6e;
  margin: 0 auto;
}
.access__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.access__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(250, 248, 245, 0.55);
  border-radius: 3px;
  font-family: "Noto Serif JP", serif;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #3a302a;
  letter-spacing: 0.04em;
}
.access__icon-wrap {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access__icon-wrap svg {
  width: 18px;
  height: 18px;
  color: #8c7b6e;
}
.access__icon-wrap--p {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  font-weight: 400;
  background: #3a302a;
  color: #faf8f5;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.access__photos {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 44px;
}
.access__photo {
  overflow: hidden;
  border-radius: 3px;
}
.access__photo img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1) brightness(1.18);
  opacity: 0.75;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .access__photo img {
    height: 280px;
  }
}
.access__photo:hover img {
  transform: scale(1.03);
}
.access__reservation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
}
.access__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  padding: 20px 32px;
  background: #3a302a;
  color: #faf8f5;
  font-family: "Noto Serif JP", serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  text-shadow: 0 0 10px rgba(250, 248, 245, 0.7), 0 0 22px rgba(250, 248, 245, 0.35);
  box-shadow: 0 14px 30px rgba(58, 48, 42, 0.18), 0 4px 12px rgba(58, 48, 42, 0.12);
  animation: btnTextGlow 2.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s;
}
.access__btn:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}
.access__btn:active {
  transform: translateY(0);
}
.access__btn-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.access__btn:hover .access__btn-arrow {
  transform: translateX(3px);
}
.access__qr {
  display: block;
  width: 110px;
  min-height: 110px;
  padding: 8px;
  background: #faf8f5;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(58, 48, 42, 0.08);
  text-decoration: none;
}
.access__qr img {
  width: 100%;
  height: 94px;
  -o-object-fit: contain;
     object-fit: contain;
}
.access__qr-link {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #7a6e66;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
}
.access__special {
  background: linear-gradient(135deg, rgba(140, 123, 110, 0.4) 0%, rgba(140, 123, 110, 0.4) 100%);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(58, 48, 42, 0.18), 0 6px 16px rgba(58, 48, 42, 0.1);
}
.access__special-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0.18em;
  color: #faf8f5;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(250, 248, 245, 0.7), 0 0 22px rgba(250, 248, 245, 0.35);
  animation: btnTextGlow 2.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}
.access__special-sub {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #3a302a;
  margin-bottom: 14px;
}
.access__special-divider {
  width: 32px;
  height: 1px;
  background: rgba(140, 123, 110, 0.4);
  margin: 0 auto 14px;
}
.access__special-main {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #faf8f5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding: 10px 24px 12px;
  border: 1px solid rgba(250, 248, 245, 0.86);
  border-radius: 3px;
  -webkit-text-stroke: 0.6px rgba(250, 248, 245, 0.95);
  text-shadow: 0 0 10px rgba(250, 248, 245, 0.82), 0 0 24px rgba(250, 248, 245, 0.42), 0 0 38px rgba(250, 248, 245, 0.18), 0 2px 10px rgba(42, 31, 24, 0.18);
}
.access__special-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #7a6e66;
  margin-top: 10px;
}

.footer {
  padding: 80px 0 48px;
  background: #f5f0ea;
}
.footer__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer__follow {
  margin-bottom: 44px;
}
.footer__section-num {
  display: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #d4c8bc;
  margin-bottom: 10px;
}
.footer__follow-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #3a302a;
  margin-bottom: 18px;
}
.footer__divider {
  width: 40px;
  height: 1px;
  background: #8c7b6e;
  margin: 0 auto;
}
.footer__sns {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
}
.footer__sns-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: #3a302a;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__sns-item:hover {
  opacity: 0.65;
}
.footer__sns-icon {
  display: flex;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.footer__sns-icon svg {
  width: 100%;
  height: 100%;
}
.footer__sns-icon--threads svg {
  width: 22px;
  height: 22px;
  margin: auto;
}
.footer__brand {
  padding: 36px 0;
  border-top: 1px solid #d4c8bc;
  border-bottom: 1px solid #d4c8bc;
  margin-bottom: 48px;
}
.footer__brand-logo {
  font-family: "WindSong", cursive;
  font-size: 3.2rem;
  color: #3a302a;
  line-height: 1;
  margin-bottom: 10px;
}
.footer__brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: #3a302a;
  margin-bottom: 5px;
}
.footer__brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: #7a6e66;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 52px;
}
.footer__nav a {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: #7a6e66;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__nav a:hover {
  color: #3a302a;
  opacity: 1;
}
.footer__copy {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: #d4c8bc;
}

.page-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 240, 234, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(58, 48, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.page-top:hover {
  background: #3a302a;
}
.page-top:hover svg {
  stroke: #faf8f5;
}
.page-top svg {
  width: 16px;
  height: 16px;
  stroke: #3a302a;
  transition: stroke 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
}/*# sourceMappingURL=style.css.map */