@charset "UTF-8";
/* asatsuyu — 商品購入 LP
   方向: 写真を大きく使い、上品に。動きは遅く静かに（霧が晴れるように現れる）。
   設計: FLOCSS 風（l- レイアウト / c- 部品 / p- セクション / u- ユーティリティ / is- 状態）+ BEM。モバイルファースト */

/* ==========================================================================
   Foundation
   ========================================================================== */
:root {
  /* 色: 生成りの地に、墨に緑を少し含んだ文字色。朝の色（青灰・淡い桃）はごく控えめに */
  --c-paper: #f6f3ee;
  --c-dawn: #e8ebea;       /* 夜明け前の青灰（ページ上部の地） */
  --c-morning: #f7f1e8;    /* 朝の生成り（ページ下部の地） */
  --c-blush: #f1e7e1;      /* 淡い桃（トライアル） */
  --c-card: #fbf9f5;
  --c-ink: #2d3430;
  --c-ink-soft: #59625c;
  --c-ink-faint: #9aa19b;  /* 装飾専用（本文には使わない） */
  --c-line: #dcd8cf;
  --c-sage: #7f9486;
  --c-on-ink: #f6f3ee;

  --ff-mincho: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --ff-gothic: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --ff-en: "Cormorant Garamond", "Times New Roman", serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 60px;
  --section-space: clamp(80px, 9vw, 136px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-inout: cubic-bezier(.65, 0, .35, 1);

  color-scheme: light;
  interpolate-size: allow-keywords;
}

*,
*::before,
*::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
html.is-locked { overflow: hidden; }

body {
  margin: 0;
  background-color: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--ff-gothic);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
}

/* シグネチャー: スクロールに合わせて地の色が「夜明け前の青灰 → 朝の生成り」へ移る */
@supports (animation-timeline: scroll()) {
  body {
    animation: dawn-to-morning linear both;
    animation-timeline: scroll(root block);
  }
}
@keyframes dawn-to-morning {
  0% { background-color: var(--c-dawn); }
  40% { background-color: var(--c-paper); }
  100% { background-color: var(--c-morning); }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; letter-spacing: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
small { font-size: .8em; }
:focus-visible { outline: 2px solid var(--c-ink); outline-offset: 3px; }
::selection { background: #dfe6e1; }

/* ==========================================================================
   Layout
   ========================================================================== */
.l-container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.l-container--narrow { max-width: calc(800px + var(--gutter) * 2); }
.l-section { padding-block: var(--section-space); }

/* ---------- header ---------- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background-color .6s var(--ease), box-shadow .6s var(--ease);
}
.l-header.is-scrolled {
  background-color: color-mix(in srgb, var(--c-paper) 90%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--c-line) 80%, transparent);
}
.l-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  padding-inline: var(--gutter);
}
.l-header__logo { margin-right: auto; }
.l-header__nav { display: none; }
.l-header__list { display: flex; gap: clamp(18px, 2vw, 32px); font-size: 13px; letter-spacing: .12em; }
.l-header__list a {
  position: relative;
  padding-block: 6px;
  text-decoration: none;
}
.l-header__list a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .6s var(--ease);
}
.l-header__list a:hover::after { transform: scaleX(1); transform-origin: left; }
.l-header__actions { display: flex; align-items: center; gap: 6px; }
.l-header .l-header__trial { display: none; }
.l-header__cart,
.l-header__menu {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
}
.l-header__cart svg { width: 24px; height: 24px; }
.l-header__cart.is-bump svg { animation: cart-bump .6s var(--ease); }
@keyframes cart-bump {
  30% { transform: translateY(-3px); }
  60% { transform: translateY(1px); }
}
.l-header__menu span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: currentColor;
}
.l-header__menu span:first-child { top: 18px; }
.l-header__menu span:last-child { top: 25px; }

/* ---------- footer ---------- */
.l-footer {
  background: var(--c-ink);
  color: var(--c-on-ink);
  padding-block: 72px 40px;
  font-size: 13px;
}
.l-footer a { text-decoration: none; }
.l-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.l-footer :focus-visible { outline-color: var(--c-on-ink); }
.l-footer__inner { display: grid; gap: 48px; }
.l-footer__tagline { margin-top: 12px; font-family: var(--ff-mincho); letter-spacing: .12em; }
.l-footer__nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 32px 24px; }
.l-footer__nav a { white-space: nowrap; }
.l-footer__head {
  margin-bottom: 10px;
  font-family: var(--ff-en);
  font-size: 15px;
  font-style: italic;
  letter-spacing: .06em;
  color: color-mix(in srgb, var(--c-on-ink) 70%, transparent);
}
.l-footer__nav li + li { margin-top: 6px; }
.l-footer__info small { margin-left: .25em; white-space: nowrap; }
.l-footer__notes {
  display: grid;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--c-on-ink) 22%, transparent);
  font-size: 12px;
  line-height: 1.9;
  color: color-mix(in srgb, var(--c-on-ink) 78%, transparent);
}
.l-footer__notes a { text-decoration: underline; text-underline-offset: 3px; }
.l-footer__copy {
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .1em;
  color: color-mix(in srgb, var(--c-on-ink) 70%, transparent);
}

/* ==========================================================================
   Component
   ========================================================================== */
.c-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-ink);
  text-decoration: none;
}
.c-logo__mark { width: 14px; height: 20px; }
.c-logo__text {
  font-family: var(--ff-en);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1;
}
.c-logo--footer { color: var(--c-on-ink); }
.c-logo--footer .c-logo__text { font-size: 28px; }

.c-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-en);
  font-size: 16px;
  font-style: italic;
  letter-spacing: .08em;
  color: var(--c-ink-soft);
}
.c-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.c-heading {
  font-family: var(--ff-mincho);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .14em;
  word-break: auto-phrase;
  text-wrap: balance;
}
.c-heading--vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.6;
  letter-spacing: .32em;
}

.c-section-head { display: grid; justify-items: center; gap: 16px; text-align: center; }
.c-section-head--left { justify-items: start; text-align: left; }
.c-section-head__lead { max-width: 34em; color: var(--c-ink-soft); text-wrap: pretty; }

.c-num { font-family: var(--ff-en); font-weight: 500; letter-spacing: .02em; }
.c-price {
  font-family: var(--ff-en);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
}
.c-price--large { font-size: clamp(48px, 5vw, 64px); }

.c-button {
  --btn-bg: transparent;
  --btn-fg: var(--c-ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 32px;
  border: 1px solid var(--c-ink);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease), background-color .5s var(--ease);
}
.c-button::before {
  /* ホバーで、下からゆっくり色が満ちる */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--btn-hover, #3e4842);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .6s var(--ease);
}
.c-button:hover::before { transform: scaleY(1); }
.c-button--primary { --btn-bg: var(--c-ink); --btn-fg: var(--c-on-ink); }
.c-button--ghost:hover { --btn-fg: var(--c-on-ink); --btn-hover: var(--c-ink); }
.c-button--small { min-height: 40px; padding: 8px 18px; font-size: 13px; letter-spacing: .1em; }
.c-button--block { width: 100%; }
.c-button.is-added { --btn-bg: var(--c-sage); border-color: var(--c-sage); }
.c-button:focus-visible { outline-offset: 4px; }

.c-link {
  font-size: 13px;
  letter-spacing: .08em;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 45%, transparent);
  text-underline-offset: 5px;
}
.c-link:hover { text-decoration-color: currentColor; }

.c-badge {
  position: absolute;
  top: 6px;
  right: 4px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  border-radius: 9px;
  background: var(--c-ink);
  color: var(--c-on-ink);
  font-family: var(--ff-en);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.c-stars {
  --rate: 5;
  display: inline-block;
  width: 90px;
  height: 16px;
  background: linear-gradient(90deg, var(--c-sage) calc(var(--rate) / 5 * 100%), var(--c-line) 0);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 16'%3E%3Cpath d='M8 .8l2.1 4.6 5 .5-3.8 3.4 1.1 4.9L8 11.7l-4.4 2.5 1.1-4.9L.9 5.9l5-.5z'/%3E%3C/svg%3E") 0 0 / 18px 16px repeat-x;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 16'%3E%3Cpath d='M8 .8l2.1 4.6 5 .5-3.8 3.4 1.1 4.9L8 11.7l-4.4 2.5 1.1-4.9L.9 5.9l5-.5z'/%3E%3C/svg%3E") 0 0 / 18px 16px repeat-x;
}

/* ダイアログ共通（メニュー・カート・モーダル） */
dialog { color: var(--c-ink); }
dialog::backdrop { background: rgb(38 44 40 / 0); }
.p-menu__close,
.p-cart__close {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
}
.p-menu__close span,
.p-cart__close span {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 22px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}
.p-menu__close span:last-child,
.p-cart__close span:last-child { transform: rotate(-45deg); }

.c-modal {
  width: min(520px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  background: var(--c-paper);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), overlay .5s allow-discrete, display .5s allow-discrete;
}
.c-modal[open] { opacity: 1; transform: none; }
.c-modal::backdrop { transition: background-color .5s var(--ease), overlay .5s allow-discrete, display .5s allow-discrete; }
.c-modal[open]::backdrop { background: rgb(38 44 40 / .42); }
@starting-style {
  .c-modal[open] { opacity: 0; transform: translateY(12px); }
  .c-modal[open]::backdrop { background: rgb(38 44 40 / 0); }
}
.c-modal__inner { display: grid; gap: 18px; justify-items: start; padding: clamp(28px, 6vw, 48px); }
.c-modal__title { font-family: var(--ff-mincho); font-size: 21px; font-weight: 400; line-height: 1.7; letter-spacing: .08em; }
.c-modal__summary {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-ink-soft);
}
.c-modal__summary:empty { display: none; }
.c-modal__summary { white-space: pre-line; }

.c-toast {
  position: fixed;
  left: 50%;
  bottom: calc(88px + env(safe-area-inset-bottom));
  z-index: 120;
  max-width: calc(100vw - 32px);
  padding: 12px 20px;
  background: var(--c-ink);
  color: var(--c-on-ink);
  font-size: 13px;
  letter-spacing: .06em;
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.c-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.c-toast:empty { display: none; }

/* ==========================================================================
   Project
   ========================================================================== */

/* ---------- hero ---------- */
.p-hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  height: calc(100svh - var(--demo-bar-h, 0px));
  min-height: 600px;
  overflow: hidden;
}
.p-hero__visual,
.p-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-hero__image { object-fit: cover; object-position: 50% 50%; }
.p-hero::after {
  /* 朝もや: 読み込み直後だけ白くかかり、ゆっくり晴れる */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-paper);
  opacity: 0;
  pointer-events: none;
}
.p-hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  padding: calc(var(--header-h) + 24px) var(--gutter) 20px;
}
.p-hero__main {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.p-hero__title { font-family: var(--ff-mincho); font-weight: 400; }
.p-hero__copy {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(22px, 6.2vw, 28px);
  line-height: 1.9;
  letter-spacing: .22em;
  white-space: nowrap;
}
.p-hero__char { display: inline-block; }
.p-hero__en {
  font-family: var(--ff-en);
  font-size: 15px;
  font-style: italic;
  letter-spacing: .06em;
  line-height: 1.4;
  color: var(--c-ink-soft);
}
.p-hero__foot { display: grid; gap: 16px; }
.p-hero__lead { display: none; }
.p-hero__offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  background: color-mix(in srgb, var(--c-paper) 84%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.p-hero__offer-text { font-family: var(--ff-mincho); font-size: 15px; letter-spacing: .06em; line-height: 1.5; }
.p-hero__offer-label { display: block; font-family: var(--ff-gothic); font-size: 11px; letter-spacing: .1em; color: var(--c-ink-soft); }
.p-hero__offer-label span { display: block; }
.p-hero__offer-price { font-family: var(--ff-en); font-size: 22px; font-weight: 500; letter-spacing: .02em; }
.p-hero__offer .c-button { flex: none; min-height: 44px; padding: 8px 18px; font-size: 13px; letter-spacing: .1em; }
.p-hero__offer-text small { font-family: var(--ff-gothic); font-size: 11px; letter-spacing: .04em; color: var(--c-ink-soft); white-space: nowrap; }
.p-hero__scroll { display: none; }

/* ---------- concept ---------- */
.p-concept__inner { display: grid; gap: 40px; }
.p-concept__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-concept__title { max-height: 11em; }
.p-concept__visual { width: 82%; }
.p-concept__visual img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.p-concept__body { display: grid; gap: 1.6em; max-width: 34em; }
.p-concept__body p { text-wrap: pretty; }
.p-concept__lead { font-family: var(--ff-mincho); font-size: 17px; line-height: 2; letter-spacing: .08em; word-break: auto-phrase; text-wrap: balance; }
.p-concept__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1em;
  border-top: 1px solid var(--c-line);
}
.p-concept__facts > div { padding: 18px 12px 0 0; }
.p-concept__facts > div + div { padding-left: 14px; border-left: 1px solid var(--c-line); }
.p-concept__facts dt { font-size: 11px; letter-spacing: .12em; color: var(--c-ink-soft); }
.p-concept__facts dd { font-size: 12px; line-height: 1.5; }
.p-concept__facts .c-num { font-size: 26px; margin-right: 2px; }
.p-concept__facts small { display: block; margin-top: 2px; font-size: 10px; color: var(--c-ink-soft); }

/* ---------- products ---------- */
.p-products__list {
  display: flex;
  margin-top: clamp(48px, 6vw, 88px);
  gap: 16px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.p-products__list::-webkit-scrollbar { display: none; }
.p-product { flex: 0 0 min(78%, 340px); scroll-snap-align: start; display: grid; align-content: start; gap: 22px; }
.p-product__visual { overflow: hidden; background: var(--c-card); }
.p-product__visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.6s var(--ease); }
.p-product:hover .p-product__visual img { transform: scale(1.03); }
.p-product__body { display: grid; gap: 10px; }
.p-product__en { font-family: var(--ff-en); font-size: 16px; font-style: italic; letter-spacing: .06em; color: var(--c-ink-soft); }
.p-product__name { font-family: var(--ff-mincho); font-size: 21px; font-weight: 400; letter-spacing: .14em; line-height: 1.5; }
.p-product__name span { margin-left: .8em; font-family: var(--ff-en); font-size: 17px; letter-spacing: .04em; color: var(--c-ink-soft); }
.p-product__desc { font-size: 14px; line-height: 1.95; color: var(--c-ink-soft); text-wrap: pretty; }
.p-product__price { display: flex; align-items: baseline; gap: 10px; margin-block: 6px 8px; }
.p-product__price small { font-size: 11px; color: var(--c-ink-soft); letter-spacing: .06em; }
.p-product__note { font-size: 12px; color: var(--c-ink-soft); text-align: center; letter-spacing: .06em; }
.p-products__hint {
  margin-top: 20px;
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .1em;
  text-align: center;
  color: var(--c-ink-soft);
}

/* ---------- ingredients ---------- */
.p-ingredients__inner { display: grid; gap: 48px; }
.p-ingredients__visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.p-ingredients__body { display: grid; gap: 40px; align-content: start; }
.p-ingredients__list { counter-reset: ing; }
.p-ingredient {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 20px;
  padding-block: 28px;
  border-top: 1px solid var(--c-line);
}
.p-ingredient:last-child { border-bottom: 1px solid var(--c-line); }
.p-ingredient__kanji {
  font-family: var(--ff-mincho);
  font-size: 64px;
  line-height: 1;
  color: var(--c-ink-faint);
  opacity: .7;
}
.p-ingredient__text { display: grid; gap: 8px; }
.p-ingredient__text > p:last-child { font-size: 14px; color: var(--c-ink-soft); text-wrap: pretty; }
.p-ingredient__meta { display: flex; align-items: baseline; gap: 12px; font-size: 12px; letter-spacing: .1em; color: var(--c-ink-soft); }
.p-ingredient__meta .c-num { font-size: 18px; color: var(--c-ink); }
.p-ingredient__name { display: grid; gap: 2px; font-family: var(--ff-mincho); font-size: 19px; font-weight: 400; letter-spacing: .1em; line-height: 1.6; }
.p-ingredient__name small { font-family: var(--ff-gothic); font-size: 11px; letter-spacing: .04em; color: var(--c-ink-soft); }
.p-ingredients__free { font-size: 13px; color: var(--c-ink-soft); text-wrap: pretty; }
.p-ingredients__free small { display: block; margin-top: 4px; font-size: 11px; }

/* ---------- texture ---------- */
.p-texture { padding-bottom: var(--section-space); }
.p-texture__stage { position: relative; }
.p-texture__visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 12%; }
.p-texture__head { display: grid; justify-items: start; gap: 16px; margin-top: 40px; }
.p-texture__lead { color: var(--c-ink-soft); text-wrap: pretty; }
.p-texture__body { margin-top: 40px; }
.p-texture__list { display: grid; border-top: 1px solid var(--c-line); }
.p-texture__list li {
  display: grid;
  gap: 2px;
  padding-block: 16px;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--ff-mincho);
  font-size: 16px;
  letter-spacing: .08em;
  word-break: auto-phrase;
}
.p-texture__item { font-family: var(--ff-gothic); font-size: 12px; letter-spacing: .14em; color: var(--c-ink-soft); }

/* ---------- how to use ---------- */
.p-howto__list { display: grid; gap: 40px; margin-top: 64px; }
.p-step { display: grid; justify-items: center; gap: 8px; text-align: center; }
.p-step__image {
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--c-line), 0 0 0 7px var(--c-paper), 0 0 0 8px var(--c-line);
}
.p-step__num { font-family: var(--ff-en); font-size: 15px; font-style: italic; letter-spacing: .08em; color: var(--c-ink-soft); }
.p-step__num .c-num { font-style: normal; font-size: 19px; }
.p-step__title { font-family: var(--ff-mincho); font-size: 19px; font-weight: 400; letter-spacing: .16em; }
.p-step p:last-child { max-width: 20em; font-size: 14px; color: var(--c-ink-soft); text-wrap: pretty; }

/* ---------- voice ---------- */
.p-voice__summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}
.p-voice__score .c-num { font-size: 60px; line-height: 1; }
.p-voice__count { margin-top: 4px; font-size: 12px; letter-spacing: .1em; color: var(--c-ink-soft); }
.p-voice__list { display: grid; gap: 16px; margin-top: 48px; }
.p-review {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px 24px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
}
.p-review__quote { font-family: var(--ff-mincho); font-size: 15px; line-height: 2.05; letter-spacing: .06em; text-wrap: pretty; }
.p-review__meta { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 12px; letter-spacing: .08em; color: var(--c-ink-soft); }
.p-review__meta span::before { content: "使用："; }
.p-voice__note { margin-top: 20px; font-size: 12px; color: var(--c-ink-soft); text-align: center; }

/* ---------- trial ---------- */
.p-trial { background: var(--c-blush); }
.p-trial__offer { display: grid; gap: 40px; }
.p-trial__visual img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.p-trial__body { display: grid; gap: 18px; align-content: center; }
.p-trial__kicker { font-size: 13px; letter-spacing: .2em; color: var(--c-ink-soft); }
.p-trial__title { margin-top: -6px; }
.p-trial__body > p:not([class]) { color: var(--c-ink-soft); text-wrap: pretty; }
.p-trial__contents { display: flex; flex-wrap: wrap; border-block: 1px solid color-mix(in srgb, var(--c-ink) 18%, transparent); }
.p-trial__contents li {
  flex: 1 1 0;
  display: grid;
  padding-block: 14px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .1em;
}
.p-trial__contents li + li { border-left: 1px solid color-mix(in srgb, var(--c-ink) 18%, transparent); }
.p-trial__contents span { font-family: var(--ff-en); font-size: 20px; font-weight: 500; letter-spacing: .02em; }
.p-trial__price { display: flex; align-items: baseline; gap: 14px; }
.p-trial__price small { font-size: 13px; letter-spacing: .08em; }
.p-trial__note { font-size: 12px; color: var(--c-ink-soft); }

.p-subscription {
  display: grid;
  gap: 24px;
  margin-top: clamp(56px, 8vw, 96px);
  padding: clamp(28px, 5vw, 56px);
  background: var(--c-paper);
}
.p-subscription__title { font-family: var(--ff-mincho); font-size: 21px; font-weight: 400; letter-spacing: .12em; }
.p-subscription__points { display: grid; border-block: 1px solid var(--c-line); }
.p-subscription__points li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 4px;
}
.p-subscription__points li + li { border-top: 1px solid var(--c-line); }
.p-subscription__points b { font-family: var(--ff-mincho); font-size: 16px; font-weight: 400; letter-spacing: .06em; white-space: nowrap; }
.p-subscription__points .c-num { font-size: 26px; line-height: 1; }
.p-subscription__points small { font-size: 12px; color: var(--c-ink-soft); text-align: right; }
.p-subscription__terms { display: grid; gap: 6px; font-size: 13px; color: var(--c-ink-soft); }
.p-subscription__terms li { position: relative; padding-left: 1.2em; text-wrap: pretty; }
.p-subscription__terms li::before { content: "・"; position: absolute; left: 0; }

/* ---------- faq ---------- */
.p-faq__list { margin-top: 48px; border-top: 1px solid var(--c-line); }
.p-faq__item { border-bottom: 1px solid var(--c-line); }
.p-faq__item h3 { font: inherit; }
.p-faq__q {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  width: 100%;
  padding: 22px 44px 22px 0;
  border: 0;
  background: none;
  font-family: var(--ff-mincho);
  font-size: 16px;
  letter-spacing: .06em;
  line-height: 1.8;
  text-align: left;
}
.p-faq__q::before { content: "Q"; font-family: var(--ff-en); font-size: 20px; font-style: italic; line-height: 1.4; color: var(--c-sage); }
.p-faq__q::after {
  /* 開閉の印（＋ → −） */
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) center / 14px 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 14px no-repeat;
  transform: translateY(-50%);
  transition: transform .5s var(--ease), background-size .5s var(--ease);
}
.p-faq__q[aria-expanded="true"]::after { background-size: 14px 1px, 1px 0; transform: translateY(-50%) rotate(180deg); }
.p-faq__a {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .6s var(--ease);
}
.p-faq__a > p {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 24px 34px;
  font-size: 14px;
  color: var(--c-ink-soft);
  text-wrap: pretty;
}
.p-faq__a.is-collapsed { grid-template-rows: 0fr; }
.p-faq__a.is-collapsed > p { padding-bottom: 0; }

/* ---------- closing ---------- */
.p-closing { padding-top: var(--section-space); text-align: center; }
.p-closing__visual { margin-top: clamp(56px, 8vw, 104px); }
.p-closing__visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 40%; }
.p-closing__title { font-family: var(--ff-mincho); font-size: clamp(24px, 3.4vw, 42px); font-weight: 400; letter-spacing: .2em; word-break: auto-phrase; text-wrap: balance; }
.p-closing__text { margin-top: 16px; color: var(--c-ink-soft); }
.p-closing__actions { display: grid; gap: 12px; justify-content: center; margin-top: 40px; }

/* ---------- sticky cta (sp) ---------- */
.p-sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--c-paper) 94%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 -1px 0 var(--c-line);
  transform: translateY(110%);
  transition: transform .6s var(--ease);
}
.p-sticky-cta.is-visible { transform: none; }
.p-sticky-cta__text { display: grid; font-size: 12px; letter-spacing: .08em; line-height: 1.4; }
.p-sticky-cta__text span { font-family: var(--ff-en); font-size: 21px; font-weight: 500; letter-spacing: .02em; }
.p-sticky-cta__text small { font-size: 10px; color: var(--c-ink-soft); }

/* ---------- menu (sp) ---------- */
.p-menu {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--c-paper);
  opacity: 0;
  transition: opacity .5s var(--ease), overlay .5s allow-discrete, display .5s allow-discrete;
}
.p-menu[open] { opacity: 1; }
@starting-style { .p-menu[open] { opacity: 0; } }
.p-menu__inner { display: grid; align-content: start; gap: 32px; min-height: 100%; padding: 8px var(--gutter) 40px; }
.p-menu__close { justify-self: end; margin-right: -8px; }
.p-menu__list li { border-bottom: 1px solid var(--c-line); }
.p-menu__list a {
  display: grid;
  gap: 2px;
  padding-block: 14px;
  font-family: var(--ff-mincho);
  font-size: 18px;
  letter-spacing: .14em;
  text-decoration: none;
}
.p-menu__list span { font-family: var(--ff-en); font-size: 14px; font-style: italic; letter-spacing: .06em; color: var(--c-ink-soft); }

/* ---------- cart ---------- */
.p-cart {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(440px, 100vw);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--c-paper);
  transform: translateX(100%);
  transition: transform .6s var(--ease), overlay .6s allow-discrete, display .6s allow-discrete;
}
.p-cart[open] { transform: none; }
.p-cart::backdrop { transition: background-color .6s var(--ease), overlay .6s allow-discrete, display .6s allow-discrete; }
.p-cart[open]::backdrop { background: rgb(38 44 40 / .38); }
@starting-style {
  .p-cart[open] { transform: translateX(100%); }
  .p-cart[open]::backdrop { background: rgb(38 44 40 / 0); }
}
.p-cart__inner { display: flex; flex-direction: column; height: 100%; }
.p-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 24px;
  border-bottom: 1px solid var(--c-line);
}
.p-cart__title { font-family: var(--ff-mincho); font-size: 18px; font-weight: 400; letter-spacing: .16em; }
.p-cart__content { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 8px 24px 24px; }
.p-cart__empty { padding-block: 40px; color: var(--c-ink-soft); text-align: center; }
.p-cart__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px 16px;
  padding-block: 18px;
  border-bottom: 1px solid var(--c-line);
}
.p-cart__item img { width: 72px; height: 72px; object-fit: cover; background: var(--c-card); }
.p-cart__item-name { font-family: var(--ff-mincho); font-size: 15px; letter-spacing: .08em; line-height: 1.6; }
.p-cart__item-size { font-size: 11px; color: var(--c-ink-soft); line-height: 1.6; }
.p-cart__item-price { margin-top: 4px; font-family: var(--ff-en); font-size: 18px; font-weight: 500; letter-spacing: .02em; }
.p-cart__item-row { grid-column: 2; display: flex; align-items: center; justify-content: space-between; }
.p-cart__qty { display: inline-flex; align-items: center; border: 1px solid var(--c-line); }
.p-cart__qty button {
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  font-size: 16px;
  line-height: 1;
}
.p-cart__qty button:disabled { color: var(--c-ink-faint); cursor: not-allowed; }
.p-cart__qty output { min-width: 28px; font-family: var(--ff-en); font-size: 17px; text-align: center; }
.p-cart__remove {
  padding: 6px 0;
  border: 0;
  background: none;
  font-size: 12px;
  color: var(--c-ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-cart__mode { margin: 24px 0 0; padding: 0; border: 0; display: grid; gap: 8px; }
.p-cart__mode legend { margin-bottom: 8px; padding: 0; font-size: 12px; letter-spacing: .12em; color: var(--c-ink-soft); }
.p-cart__radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  cursor: pointer;
  transition: border-color .3s, background-color .3s;
}
.p-cart__radio:has(input:checked) { border-color: var(--c-ink); background: var(--c-card); }
.p-cart__radio input { margin: 5px 0 0; accent-color: var(--c-ink); }
.p-cart__radio span { display: grid; font-size: 14px; letter-spacing: .08em; line-height: 1.6; }
.p-cart__radio small { font-size: 11px; color: var(--c-ink-soft); letter-spacing: .04em; }
.p-cart__interval { display: grid; gap: 8px; padding: 4px 2px 0; font-size: 12px; color: var(--c-ink-soft); }
.p-cart__interval label { color: var(--c-ink); letter-spacing: .08em; }
.p-cart__interval select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  font-size: 14px;
}
.p-cart__foot { display: grid; gap: 14px; padding: 18px 24px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--c-line); background: var(--c-card); }
.p-cart__ship { font-size: 12px; color: var(--c-ink-soft); letter-spacing: .06em; }
.p-cart__ship:empty { display: none; }
.p-cart__ship-bar { display: block; height: 2px; margin-top: 8px; background: var(--c-line); }
.p-cart__ship-bar i { display: block; height: 100%; background: var(--c-sage); transition: width .6s var(--ease); }
.p-cart__sum { display: grid; gap: 4px; font-size: 13px; }
.p-cart__sum > div { display: flex; justify-content: space-between; }
.p-cart__sum dd { font-family: var(--ff-en); font-size: 16px; font-weight: 500; letter-spacing: .02em; }
.p-cart__sum dd small { font-family: var(--ff-gothic); font-size: 11px; font-weight: 400; color: var(--c-ink-soft); }
.p-cart__total { margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--c-line); }
.p-cart__total dt { font-size: 14px; }
.p-cart__total dt small { font-size: 11px; color: var(--c-ink-soft); }
.p-cart__total dd { font-size: 24px; }
.p-cart__legal { font-size: 11px; color: var(--c-ink-soft); }
.p-cart.is-empty .p-cart__mode,
.p-cart.is-empty .p-cart__foot { display: none; }

/* ==========================================================================
   Utility
   ========================================================================== */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.u-skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--c-ink);
  color: var(--c-on-ink);
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform .3s;
}
.u-skip-link:focus { transform: none; }
.u-pc-only { display: none; }

/* ==========================================================================
   Motion（JS があるときだけ初期状態を隠す）
   ========================================================================== */
.js .c-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.js .c-reveal.is-visible { opacity: 1; transform: none; }
/* 霧が晴れるように: ぼかしからピントが合って現れる */
.js .c-mist {
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.045);
  transition: opacity 1.8s var(--ease), filter 2.2s var(--ease), transform 2.8s var(--ease);
}
.js .c-mist.is-visible { opacity: 1; filter: blur(0); transform: none; }
.js .p-hero__image { animation: hero-focus 2.8s var(--ease) both; }
.js .p-hero::after { animation: hero-haze 2.6s var(--ease) both; }
.js .p-hero__char { opacity: 0; animation: char-in 1.6s var(--ease) both; animation-delay: calc(.9s + var(--i) * 80ms); }
.js .p-hero__en,
.js .p-hero__lead,
.js .p-hero__offer,
.js .p-hero__scroll { animation: fade-up 1.4s var(--ease) both; animation-delay: 2.2s; }
@keyframes hero-focus {
  from { filter: blur(14px); transform: scale(1.06); }
  to { filter: blur(0); transform: none; }
}
@keyframes hero-haze {
  from { opacity: .85; }
  to { opacity: 0; }
}
@keyframes char-in {
  from { opacity: 0; transform: translateY(-.35em); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .c-reveal,
  .js .c-mist { opacity: 1; filter: none; transform: none; transition: none; }
  .js .p-hero__image,
  .js .p-hero::after,
  .js .p-hero__char,
  .js .p-hero__en,
  .js .p-hero__lead,
  .js .p-hero__offer,
  .js .p-hero__scroll { animation: none; opacity: 1; }
  .js .p-hero::after { opacity: 0; }
  .c-button::before,
  .p-product__visual img { transition: none; }
  .p-cart, .p-menu, .c-modal, .c-toast, .p-sticky-cta { transition-duration: .01s; }
}

/* ==========================================================================
   Responsive（min-width で積み上げる）
   ========================================================================== */
@media (min-width: 600px) {
  .p-voice__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .p-closing__actions { grid-auto-flow: column; }
  .p-texture__list li { grid-template-columns: 6em 1fr; gap: 12px; }
  .p-texture__item { padding-top: 3px; }
}

@media (min-width: 768px) {
  :root { --header-h: 72px; }
  body { font-size: 16px; }
  .u-sp-only { display: none; }
  .u-pc-only { display: inline; }
  .l-header .l-header__trial { display: inline-flex; }

  .p-hero__image { object-position: 64% 50%; }
  .p-hero__body { padding: calc(var(--header-h) + clamp(28px, 6vh, 88px)) clamp(32px, 7vw, 120px) clamp(28px, 6vh, 64px); }
  .p-hero__main { flex-direction: row; justify-content: flex-start; align-items: flex-end; gap: 18px; }
  .p-hero__copy { font-size: clamp(28px, min(3vw, 4.8vh), 54px); line-height: 2; letter-spacing: .26em; }
  .p-hero__en { writing-mode: vertical-rl; margin-bottom: 6px; }
  .p-hero__foot { justify-items: start; gap: 22px; }
  .p-hero__lead { display: block; font-family: var(--ff-mincho); font-size: 15px; letter-spacing: .1em; line-height: 2; }
  .p-hero__offer { gap: 32px; padding: 16px 16px 16px 24px; }
  .p-hero__offer-label { font-size: 12px; letter-spacing: .14em; }
  .p-hero__offer-label span { display: inline; margin-left: .6em; font-family: var(--ff-mincho); font-size: 15px; letter-spacing: .08em; color: var(--c-ink); }
  .p-hero__offer-price { font-size: 26px; }
  .p-hero__offer .c-button { min-height: 52px; padding: 12px 28px; font-size: 14px; letter-spacing: .14em; }
  .p-hero__scroll {
    position: absolute;
    right: clamp(32px, 7vw, 120px);
    bottom: 0;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding-bottom: 0;
    font-family: var(--ff-en);
    font-size: 13px;
    font-style: italic;
    letter-spacing: .12em;
    color: var(--c-ink-soft);
    text-decoration: none;
  }
  .p-hero__scroll::after {
    content: "";
    width: 1px;
    height: 64px;
    background: linear-gradient(var(--c-ink-soft), var(--c-ink-soft)) 0 0 / 1px 100% no-repeat;
    animation: scroll-line 2.8s var(--ease-inout) infinite;
  }

  .p-concept__visual { width: 64%; }
  .p-products__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 48px); margin-inline: 0; padding: 0; overflow: visible; }
  .p-product:nth-child(2) { margin-top: 72px; }
  .p-product:nth-child(3) { margin-top: 36px; }
  .p-howto__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; position: relative; }
  .p-howto__list::before {
    /* 手順をつなぐ細い線 */
    content: "";
    position: absolute;
    top: 60px;
    left: 16.6%;
    right: 16.6%;
    height: 1px;
    background: var(--c-line);
    z-index: -1;
  }
  .p-sticky-cta { display: none; }
  .p-subscription__points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .p-subscription__points li { display: grid; justify-items: center; align-content: center; gap: 4px; padding: 18px 8px; text-align: center; }
  .p-subscription__points li + li { border-top: 0; border-left: 1px solid var(--c-line); }
  .p-subscription__points small { text-align: center; }
  .p-closing__visual img { aspect-ratio: 21 / 9; object-position: 50% 30%; }
  .c-toast { bottom: 32px; }
  .l-footer__inner { grid-template-columns: 1fr 2fr; }
  .l-footer__notes,
  .l-footer__copy { grid-column: 1 / -1; }
  .l-footer__info { grid-column: 2; }
}

/* 縦向きのタブレット: 縦長の写真に切り替わるので、商品に重なるリード文は出さない */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) {
  .p-hero__lead { display: none; }
}

@keyframes scroll-line {
  0% { background-size: 1px 0; background-position: 0 0; }
  45% { background-size: 1px 100%; background-position: 0 0; }
  55% { background-size: 1px 100%; background-position: 0 100%; }
  100% { background-size: 1px 0; background-position: 0 100%; }
}

@media (min-width: 1024px) {
  .l-header__nav { display: block; margin-right: 8px; }
  .l-header__menu { display: none; }

  .p-concept__inner {
    grid-template-columns: 5fr 1fr 5fr 1.4fr;
    grid-template-areas: "visual . body head";
    align-items: start;
    gap: 0;
  }
  .p-concept__visual { grid-area: visual; width: 100%; }
  .p-concept__body { grid-area: body; padding-top: 18%; }
  .p-concept__head { grid-area: head; flex-direction: column; align-items: flex-end; gap: 28px; justify-content: flex-start; }
  .p-concept__head .c-label { writing-mode: vertical-rl; }
  .p-concept__head .c-label::before { width: 1px; height: 28px; }

  .p-ingredients__inner { grid-template-columns: 5fr 1fr 6fr; gap: 0; align-items: start; }
  .p-ingredients__visual { grid-column: 1; position: sticky; top: calc(var(--header-h) + 40px); }
  .p-ingredients__visual img { max-height: calc(100vh - var(--header-h) - 80px); }
  .p-ingredients__body { grid-column: 3; padding-top: 8%; }
  .p-ingredient { grid-template-columns: 120px 1fr; padding-block: 36px; }
  .p-ingredient__kanji { font-size: 96px; }

  .p-texture__visual img { aspect-ratio: 16 / 9; max-height: calc(100vh - var(--header-h)); object-position: 52% 20%; }
  .p-texture__head {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
  }
  .p-texture__body { margin-top: 56px; }
  .p-texture__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; border-top: 0; }
  .p-texture__list li { gap: 8px; padding-block: 20px 0; border-top: 1px solid var(--c-line); border-bottom: 0; font-size: 17px; }

  .p-voice__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .p-review:nth-child(even) { margin-top: 40px; }

  .p-trial__offer { grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
  .p-subscription { grid-template-columns: 1fr 1.4fr; column-gap: 64px; }
  .p-subscription__title { grid-row: span 2; align-self: start; font-size: 24px; }
  .p-subscription__terms,
  .p-subscription .c-link { grid-column: 2; }
  .p-subscription .c-link { justify-self: start; }

  .l-footer__inner { grid-template-columns: 1.2fr 2fr 1fr; }
  .l-footer__nav { grid-template-columns: repeat(3, max-content); column-gap: clamp(32px, 4vw, 56px); }
  .l-footer__info { grid-column: 3; }
}

@media (min-width: 1440px) {
  .p-hero__copy { letter-spacing: .34em; }
}
