:root {
  --ink: #4b4036;
  --muted: #786d60;
  --paper: #f7f3eb;
  --cream: #eee7dc;
  --sage: #9aa486;
  --sage-dark: #5c6b55;
  --olive: #747b61;
  --accent: #c8b26b;
  --line: #d8d0c2;
  --white: #fffdf8;
  --shadow: 0 24px 80px rgba(77, 65, 48, 0.14);
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 178, 107, 0.13), transparent 24rem),
    linear-gradient(180deg, #faf7f0 0%, var(--paper) 45%, #f4eee5 100%);
  font-family: var(--serif);
  line-height: 1.95;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 16px clamp(22px, 7vw, 120px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  font-family: var(--sans);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  overflow: visible;
  background: transparent;
}
.brand-mark img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}
.brand strong { display: block; font-size: 15px; }
.brand small { display: block; color: var(--muted); font-size: 10px; }
.nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); font-size: 13px; font-weight: 700; }
.nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav a.active { border-color: var(--sage); }
.nav-cta {
  display: inline-flex;
  padding: 8px 16px !important;
  background: var(--sage-dark);
  border: 0 !important;
  border-radius: 999px;
  color: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.first-view {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(64px, 8vw, 118px) clamp(22px, 7vw, 120px) clamp(64px, 7vw, 98px);
  overflow: hidden;
}
.first-view::before {
  position: absolute;
  left: -8vw;
  top: 22%;
  width: 18vw;
  min-width: 160px;
  height: 48vh;
  background: linear-gradient(180deg, rgba(238, 231, 220, 0.7), rgba(247, 243, 235, 0.2));
  content: "";
  z-index: 0;
}
.first-view::after {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 44vw;
  height: 76%;
  background:
    linear-gradient(rgba(92, 107, 85, 0.86), rgba(92, 107, 85, 0.86)),
    radial-gradient(circle at 35% 30%, rgba(255, 253, 248, 0.26), transparent 14rem);
  content: "";
  z-index: 0;
}
.eyebrow, .section-label {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.script {
  margin: 0 0 4px;
  color: rgba(92, 107, 85, 0.72);
  font-family: "Snell Roundhand", "Zapfino", cursive;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  text-transform: none;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1.34;
}
h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 500; line-height: 1.5; }
h3 { font-size: 20px; font-weight: 500; }
.lead { max-width: 560px; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); }
.fv-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid rgba(92, 107, 85, 0.42);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}
.button.primary { color: var(--white); background: var(--sage-dark); box-shadow: 0 14px 34px rgba(92, 107, 85, 0.24); }
.button.secondary { color: var(--sage-dark); background: rgba(255,255,255,0.72); }
.button.large { min-width: min(100%, 300px); }
.button:hover,
.nav-cta:hover,
.text-link:hover {
  transform: translateY(-3px);
}
.button.primary:hover,
.nav-cta:hover {
  background: #475640;
  box-shadow: 0 20px 44px rgba(92, 107, 85, 0.32);
}
.button.secondary:hover {
  background: var(--white);
  border-color: var(--sage-dark);
  box-shadow: 0 16px 38px rgba(77, 65, 48, 0.12);
}
.fv-photo {
  position: relative;
  margin: 0;
  box-shadow: var(--shadow);
}
.fv-photo img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}
.fv-photo::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 34%;
  height: 42%;
  border: 1px solid var(--sage);
  content: "";
  z-index: -1;
}
.fv-note {
  position: absolute;
  right: clamp(22px, 8vw, 160px);
  bottom: clamp(22px, 4vw, 52px);
  display: grid;
  gap: 3px;
  width: 250px;
  padding: 22px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}
.fv-note span { color: var(--sage-dark); font-family: var(--sans); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.fv-note strong { font-size: 18px; font-weight: 500; }
.fv-note em { color: var(--muted); font-style: normal; }

.sumika-view .fv-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 640px;
  padding-top: 7vh;
}

.sumika-view .lead {
  color: var(--sage-dark);
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: 0;
}

.sumika-visual {
  position: relative;
  z-index: 1;
  min-height: 600px;
}

.hero-frame {
  position: absolute;
  margin: 0;
  background: var(--white);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-facial {
  right: clamp(8px, 3vw, 54px);
  top: 94px;
  width: min(82%, 560px);
  height: 390px;
  z-index: 2;
}

.hero-frame-facial::before {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 44%;
  height: 42%;
  background: rgba(200, 178, 107, 0.42);
  content: "";
  z-index: -1;
}

.message-block {
  padding: clamp(56px, 7vw, 88px) 22px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}
.message-block p { margin-bottom: 22px; }
.section { padding: clamp(70px, 10vw, 136px) clamp(22px, 8vw, 160px); }
.center { text-align: center; }
.section-heading { max-width: 720px; margin: 0 auto 44px; }
.section-heading p:not(.section-label) { color: var(--muted); }
.home-about, .about-profile, .about-natural {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}
.home-about img, .about-profile img, .stack-photo img {
  width: 100%;
  box-shadow: var(--shadow);
}

.decor-photo,
.natural-main-photo,
.natural-side-photos figure {
  margin: 0;
}

.decor-photo,
.stack-photo {
  position: relative;
  isolation: isolate;
}

.decor-photo::before,
.stack-photo::before {
  position: absolute;
  background: rgba(154, 164, 134, 0.76);
  content: "";
  z-index: -2;
}

.decor-photo::after,
.stack-photo::after {
  position: absolute;
  border: 8px solid rgba(255, 253, 248, 0.96);
  content: "";
  z-index: -1;
}

.decor-photo-home::before {
  left: -34px;
  top: -34px;
  width: 36%;
  height: 42%;
}

.decor-photo-home::after {
  display: none;
}

.decor-photo img,
.stack-photo img {
  position: relative;
  z-index: 1;
}

.decor-photo-home img {
  width: min(100%, 360px);
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.08) contrast(1.03) saturate(1.02);
}

.about-profile {
  grid-template-columns: minmax(220px, 420px) minmax(320px, 0.94fr);
}

.about-profile > img {
  justify-self: center;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}
.home-about p, .about-profile p, .about-natural p, .brand-block p { color: var(--muted); }
.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sage-dark);
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.text-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.reveal,
.mini-menu article,
.approach-grid article,
.detail-section,
.course-stack section,
.product-grid article,
.brand-intro,
.license-list article {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible,
.mini-menu article.is-visible,
.approach-grid article.is-visible,
.detail-section.is-visible,
.course-stack section.is-visible,
.product-grid article.is-visible,
.brand-intro.is-visible,
.license-list article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.approach-grid article:nth-child(2),
.mini-menu article:nth-child(2),
.product-grid article:nth-child(2) {
  --reveal-delay: 0.08s;
}

.approach-grid article:nth-child(3),
.mini-menu article:nth-child(3),
.product-grid article:nth-child(3) {
  --reveal-delay: 0.16s;
}

.approach-grid article:nth-child(4),
.product-grid article:nth-child(4) {
  --reveal-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal,
  .mini-menu article,
  .approach-grid article,
  .detail-section,
  .course-stack section,
  .product-grid article,
  .brand-intro,
  .license-list article {
    opacity: 1;
    transform: none;
  }
}

.approach { background: #fff; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 52px;
  text-align: center;
}
.approach-grid article { padding: 8px; }
.approach-grid p {
  max-width: 270px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.approach-icon {
  width: 106px;
  height: 106px;
  margin: 0 auto 18px;
  object-fit: contain;
}
.line-icon {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border: 2px solid #6f675c;
}
.line-icon.face { border-radius: 52% 48% 44% 56%; }
.line-icon.herb { border-radius: 50%; }
.line-icon.herb::before, .line-icon.herb::after {
  position: absolute;
  width: 18px;
  height: 28px;
  border: 2px solid #6f675c;
  border-radius: 100% 0;
  content: "";
}
.line-icon.herb::before { left: 12px; top: 14px; transform: rotate(-35deg); }
.line-icon.herb::after { right: 10px; top: 8px; transform: rotate(35deg); }
.line-icon.drop { border-radius: 50% 50% 52% 0; transform: rotate(-45deg); }
.line-icon.bottle { border-radius: 10px; }
.line-icon.bottle::before {
  position: absolute;
  left: 17px;
  top: -14px;
  width: 18px;
  height: 14px;
  border: 2px solid #6f675c;
  border-bottom: 0;
  content: "";
}

.home-menu { background: var(--cream); }
.home-trial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto 28px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(92, 111, 84, 0.92);
  color: var(--white);
}
.home-trial h3 {
  margin: 8px 0 14px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
}
.home-trial p {
  margin: 0;
  color: rgba(255, 253, 248, 0.86);
}
.home-trial-label {
  color: rgba(255, 253, 248, 0.74);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.home-trial-price {
  min-width: 190px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  text-align: center;
}
.home-trial-price span,
.home-trial-price small {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
}
.home-trial-price small {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.68);
  text-decoration: line-through;
}
.home-trial-price strong {
  display: block;
  color: var(--white);
  font-size: clamp(26px, 3vw, 34px);
}
.mini-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.mini-menu article {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
}
.mini-menu h3 {
  font-size: 20px;
}
.mini-menu p { color: var(--muted); }
.mini-menu strong { color: var(--sage-dark); font-size: 20px; font-weight: 600; }
.instagram {
  background: #fff;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  max-width: 1100px;
  margin: 0 auto 34px;
}

.instagram-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1 / 1;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.instagram-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 10px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}

.instagram-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.94);
}

.access {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--cream);
}

.access-copy p:not(.section-label),
.access-copy address {
  color: var(--muted);
}

.access-copy address,
.footer address {
  font-style: normal;
}

.map-frame {
  overflow: hidden;
  background: var(--white);
  border: 8px solid rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.reserve {
  padding: clamp(70px, 10vw, 120px) 22px;
  background:
    linear-gradient(rgba(189,196,162,0.78), rgba(189,196,162,0.78)),
    url("./assets/salon-room.png") center/cover;
}
.reserve-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  background: rgba(255,255,255,0.92);
  text-align: center;
}
.reserve-card p:not(.section-label) { color: var(--muted); }

.page-title {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 50vw, 470px);
  padding: 0 22px;
  overflow: hidden;
  background:
    url("./assets/page-hero/menu.png") center / cover no-repeat;
  text-align: center;
}
.page-title::before,
.page-title::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.page-title::before {
  display: none;
}
.page-title::after {
  display: none;
}
.page-title > * {
  position: relative;
  z-index: 1;
}
.page-title h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.35;
}
.page-title .script {
  color: rgba(92, 107, 85, 0.82);
}
.page-title .script,
.page-title h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.page-title-about {
  background-image: url("./assets/page-hero/about.png");
}
.page-title-menu {
  background-image: url("./assets/page-hero/menu.png");
}
.page-title-goods {
  background-image: url("./assets/page-hero/goods.png");
}
.about-natural { background: #fff; }
.stack-photo::before {
  left: -44px;
  top: -44px;
  width: 45%;
  height: 48%;
}
.stack-photo::after {
  right: -30px;
  bottom: -34px;
  width: 78%;
  height: 74%;
}

.natural-therapist {
  background: #fff;
}

.natural-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(300px, 1fr) minmax(220px, 0.74fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.natural-main-photo img,
.natural-side-photos img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.natural-main-photo img {
  aspect-ratio: 0.72;
}

.natural-copy p:not(.section-label) {
  color: var(--muted);
}

.natural-main-photo {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  align-self: center;
  justify-self: start;
  width: min(100%, 330px);
  margin: 0;
  z-index: 2;
}

.natural-main-photo::before,
.natural-main-photo::after {
  display: none;
}

.natural-side-photos {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  gap: clamp(26px, 4vw, 54px);
}

.natural-side-photos figure {
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.natural-side-photos figure:first-child {
  width: 100%;
}

.natural-side-photos figure:nth-child(2) {
  width: 100%;
}

.natural-side-photos img {
  aspect-ratio: 0.94 / 1;
  box-shadow: var(--shadow);
}

.natural-copy {
  text-align: center;
}

.natural-copy .section-label {
  display: none;
}

.natural-copy h2 {
  color: var(--sage-dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.7;
}

.natural-copy p:not(.section-label) {
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.85;
}

.license-heading {
  max-width: 980px;
  margin: 0 auto;
}

.license-list {
  display: grid;
  gap: 28px;
  max-width: 980px;
  margin: 44px auto 0;
}
.license-card {
  display: grid;
  grid-template-columns: 82px 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(120, 109, 96, 0.16);
}

.license-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.license-card h3 {
  margin: 0;
}

.license-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.pickup {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--sage-dark);
  color: var(--white);
}
.pickup p, .pickup .section-label { color: rgba(255,255,255,0.82); }
.price-box {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
}
.price-box strong { font-size: 34px; font-weight: 600; }
.price-box .button { margin-top: 10px; color: var(--sage-dark); background: var(--white); border: 0; box-shadow: none; }
.menu-panel {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
}
.menu-panel p { color: var(--muted); }
.menu-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.price-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.price-list strong { flex: 0 0 auto; }

.menu-layout,
.goods-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.menu-anchor {
  position: sticky;
  top: 118px;
  padding: 26px 20px;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(120, 109, 96, 0.18);
}

.menu-anchor .section-label {
  margin-bottom: 18px;
}

.menu-anchor a {
  display: block;
  padding: 15px 0;
  color: var(--sage-dark);
  border-top: 1px solid rgba(120, 109, 96, 0.18);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.menu-detail,
.goods-detail {
  display: grid;
  gap: clamp(42px, 7vw, 82px);
}

.detail-section {
  scroll-margin-top: 118px;
  padding: clamp(34px, 5vw, 62px);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(120, 109, 96, 0.16);
  box-shadow: 0 18px 54px rgba(77, 65, 48, 0.08);
}

.detail-section > p,
.detail-section section p,
.detail-section li {
  color: var(--muted);
}

.detail-section h2 {
  margin-bottom: 18px;
}

.trial-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  margin: 34px 0;
  padding: 28px;
  color: var(--white);
  background: var(--sage-dark);
}

.trial-card p {
  color: rgba(255, 253, 248, 0.84);
}

.trial-card h3 {
  margin-bottom: 10px;
}

.trial-price {
  display: grid;
  gap: 5px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  font-family: var(--sans);
}

.trial-price span,
.trial-price small {
  color: rgba(255, 253, 248, 0.82);
}

.trial-price strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.course-stack {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.course-stack section {
  padding: 26px 0 0;
  border-top: 1px solid rgba(120, 109, 96, 0.2);
}

.course-stack h3 {
  margin-bottom: 6px;
}

.course-meta {
  margin-bottom: 12px;
  color: var(--sage-dark) !important;
  font-family: var(--sans);
  font-weight: 700;
}

.course-stack ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.option-note {
  margin-top: 26px;
  padding: 16px 18px;
  background: rgba(200, 178, 107, 0.16);
  color: var(--ink) !important;
}

.product-anchor {
  max-width: none;
  margin: 0;
  text-align: left;
}

.product-anchor a {
  padding: 15px 0;
  border: 0;
  border-top: 1px solid rgba(120, 109, 96, 0.18);
  border-radius: 0;
}

.goods-section {
  scroll-margin-top: 118px;
}

.goods-section:nth-of-type(even) { background: var(--cream); }
.brand-block {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(120, 109, 96, 0.18);
}

.brand-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 260px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.brand-intro p:not(.section-label) {
  color: var(--muted);
}

.product-main-photo,
.product-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #f7f2e9;
}

.product-main-photo {
  justify-self: end;
  max-width: 260px;
  box-shadow: var(--shadow);
  background: #f7f2e9;
  padding: 10px;
}

.product-photo {
  max-width: 200px;
  margin: 0 auto;
  transform: scale(var(--product-zoom, 1));
  transform-origin: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: clamp(36px, 5vw, 62px);
}

.product-grid article h3 {
  margin: 14px 0 2px;
  font-size: 15px;
}

.product-grid article p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}

.product-card-trigger {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.product-card-trigger .product-photo {
  transition: filter 0.35s ease, box-shadow 0.35s ease;
}

.product-card-trigger:hover .product-photo {
  filter: brightness(1.04);
  box-shadow: 0 18px 36px rgba(77, 65, 48, 0.16);
}

.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(52, 48, 42, 0.46);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.product-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(86vh, 680px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(44, 37, 28, 0.28);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green);
  background: #f8f5ed;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.product-modal-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.product-modal-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f7f2e9;
}

.product-modal-label {
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-modal-copy h2 {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.35;
}

.product-modal-price {
  margin: 0 0 18px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
}

.product-modal-description {
  margin: 0;
  color: var(--text);
  line-height: 2;
}

body.modal-open {
  overflow: hidden;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 56px clamp(22px, 8vw, 160px);
  background: #eee9e1;
  color: var(--muted);
  font-family: var(--sans);
}
.footer p { margin: 0; font-weight: 700; }
.footer address {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 12px; }

.back-to-top {
  position: fixed;
  right: clamp(14px, 2.5vw, 26px);
  bottom: clamp(14px, 2.5vw, 26px);
  z-index: 20;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(92, 107, 85, 0.88);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(77, 65, 48, 0.18);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--sage-dark);
  box-shadow: 0 16px 32px rgba(77, 65, 48, 0.24);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
    padding-inline: clamp(18px, 4vw, 42px);
  }
  .first-view, .home-about, .about-profile, .about-natural, .access, .brand-block, .pickup, .menu-layout, .goods-layout, .trial-card, .home-trial { grid-template-columns: 1fr; }
  .brand-intro { grid-template-columns: minmax(0, 1fr) minmax(150px, 220px); }
  .first-view.sumika-view {
    grid-template-columns: minmax(260px, 0.78fr) minmax(330px, 1fr);
  }
  .fv-note { position: static; width: auto; margin: -24px 22px 0 auto; }
  .approach-grid, .product-grid, .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-two, .mini-menu { grid-template-columns: 1fr; }
  .sumika-visual { min-height: 520px; }
  .menu-anchor {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 16px;
    text-align: center;
  }
  .menu-anchor .section-label {
    width: 100%;
    margin-bottom: 0;
  }
  .menu-anchor a {
    padding: 9px 14px;
    border: 1px solid rgba(120, 109, 96, 0.18);
    border-radius: 999px;
  }
}

@media (max-width: 680px) {
  body {
    line-height: 1.82;
  }

  .site-header {
    position: sticky;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    min-height: auto;
    padding: 10px 16px 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 190px;
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 14px;
    line-height: 1.25;
  }

  .brand small {
    display: block;
    max-width: 180px;
    font-size: 9px;
    line-height: 1.5;
  }

  .nav {
    flex: 1 0 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-top: 4px;
    font-size: 11px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 6px 2px;
  }

  .nav-cta {
    padding: 6px 12px !important;
    white-space: nowrap;
  }

  .first-view {
    min-height: auto;
    padding: 42px 18px 70px;
  }

  .first-view.sumika-view {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .first-view::before { display: none; }
  .first-view::after {
    right: -22vw;
    bottom: 48px;
    width: 72vw;
    height: 300px;
    top: auto;
  }

  .sumika-view .fv-copy {
    max-width: 100%;
    padding-top: 0;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.42;
  }

  h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .lead {
    max-width: 100%;
    font-size: 16px;
  }

  .fv-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }

  .sumika-visual {
    min-height: 340px;
  }

  .hero-frame { border-width: 6px; }
  .hero-frame-facial {
    right: 6px;
    top: 22px;
    width: min(92%, 420px);
    height: 300px;
  }

  .hero-frame-facial::before {
    right: -18px;
    bottom: -18px;
  }

  .message-block,
  .section {
    padding-inline: 18px;
  }

  .home-about,
  .about-profile,
  .about-natural {
    gap: 28px;
  }

  .decor-photo-home::before {
    left: -18px;
    top: -18px;
  }

  .decor-photo-home::after {
    right: -14px;
    bottom: -16px;
    border-width: 6px;
  }

  .about-profile > img {
    max-width: 280px;
  }

  .stack-photo::before {
    left: -20px;
    top: -20px;
  }

  .stack-photo::after {
    right: -15px;
    bottom: -18px;
    border-width: 6px;
  }

  .natural-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .natural-main-photo,
  .natural-side-photos {
    grid-column: auto;
    grid-row: auto;
  }

  .natural-main-photo {
    justify-self: start;
    width: min(100%, 360px);
  }

  .natural-side-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .natural-side-photos figure:first-child {
    width: 100%;
  }

  .natural-side-photos figure:nth-child(2) {
    left: auto;
    width: 100%;
  }

  .license-list {
    grid-template-columns: 1fr;
  }

  .license-card {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px 16px;
    padding: 22px 18px;
  }

  .license-card img {
    max-height: 72px;
  }

  .license-card h3 {
    align-self: center;
  }

  .license-card ul {
    grid-column: 1 / -1;
  }

  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 14px;
  }

  .approach-grid article {
    padding: 0;
  }

  .approach-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 12px;
  }

  .approach-grid h3 {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.45;
  }

  .approach-grid p {
    font-size: 13px;
    line-height: 1.7;
  }

  .mini-menu article,
  .menu-panel,
  .detail-section,
  .brand-block {
    padding: 24px 18px;
  }

  .page-title {
    min-height: clamp(210px, 63vw, 310px);
    background-size: cover;
    background-position: center;
  }

  .menu-anchor,
  .product-anchor {
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
    padding: 14px;
  }

  .menu-anchor .section-label,
  .product-anchor .section-label {
    flex: 0 0 100%;
    text-align: center;
  }

  .menu-anchor a,
  .product-anchor a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .menu-detail,
  .goods-detail {
    gap: 28px;
  }

  .detail-section {
    scroll-margin-top: 116px;
  }

  .trial-card {
    padding: 22px 18px;
  }

  .trial-price strong,
  .price-box strong {
    font-size: 28px;
  }

  .brand-intro {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 34vw);
    gap: 18px;
    align-items: start;
  }

  .brand-intro h2 {
    margin-bottom: 16px;
  }

  .product-main-photo {
    justify-self: end;
    max-width: 150px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .product-grid article h3 {
    font-size: 13px;
    line-height: 1.5;
  }

  .product-grid article p {
    font-size: 12px;
  }

  .map-frame iframe {
    min-height: 300px;
  }

  .price-list li { flex-direction: column; gap: 2px; }
  .footer {
    display: block;
    padding: 38px 18px;
  }
  .footer nav { margin-top: 18px; }
}

@media (max-width: 430px) {
  .brand {
    min-width: 170px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand small {
    max-width: 150px;
  }

  .nav {
    font-size: 10px;
  }

  .nav-cta {
    padding-inline: 10px !important;
  }

  .first-view {
    padding-top: 34px;
  }

  .sumika-visual {
    min-height: 300px;
  }

  .hero-frame-facial {
    height: 260px;
  }

  .approach-grid,
  .product-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .brand-intro {
    grid-template-columns: 1fr;
  }

  .natural-side-photos,
  .license-card {
    grid-template-columns: 1fr;
  }

  .natural-main-photo {
    width: 100%;
  }

  .natural-side-photos {
    grid-template-columns: 1fr;
  }

  .natural-side-photos figure:first-child,
  .natural-side-photos figure:nth-child(2) {
    width: 100%;
    margin-top: 14px;
  }

  .license-card img {
    width: 96px;
  }

  .product-main-photo {
    justify-self: start;
    max-width: 170px;
  }

  .page-title {
    min-height: 230px;
  }
}

@media (max-width: 680px) {
  .menu-layout,
  .goods-layout {
    gap: 24px;
  }

  .menu-anchor,
  .product-anchor {
    position: sticky;
    top: 118px;
    z-index: 15;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -18px;
    padding: 18px 18px 14px;
    background: rgba(248, 245, 237, 0.96);
    border-width: 1px 0;
    backdrop-filter: blur(10px);
    scrollbar-width: none;
  }

  .menu-anchor::-webkit-scrollbar,
  .product-anchor::-webkit-scrollbar {
    display: none;
  }

  .menu-anchor .section-label,
  .product-anchor .section-label {
    flex: 0 0 auto;
    width: auto;
    margin: 0 8px 0 0;
    align-self: center;
    text-align: left;
  }

  .menu-anchor a,
  .product-anchor a {
    flex: 0 0 auto;
    padding: 8px 14px;
  }

  .detail-section,
  .goods-section {
    scroll-margin-top: 205px;
  }

  .page-title-goods.reveal,
  .goods-layout.reveal,
  .goods-layout .reveal,
  .goods-layout .brand-intro,
  .goods-layout .product-grid article {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .license-card {
    grid-template-columns: 64px minmax(0, max-content);
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .license-card img {
    width: 64px;
    height: 64px;
    max-height: 64px;
  }

  .license-card h3 {
    margin: 0;
    font-size: 20px;
  }

  .license-card ul {
    grid-column: 1 / -1;
    text-align: left;
  }

  .product-modal-overlay {
    padding: 16px;
  }

  .product-modal-dialog {
    max-height: 88vh;
    padding: 44px 20px 24px;
  }

  .product-modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-modal-image {
    max-width: 260px;
    margin: 0 auto;
  }

  .instagram-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    margin-inline: -18px;
    padding: 0 18px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .instagram-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-card {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: start;
  }
}
