/* Casa Pivote — スタジオサイト（ホーム日英で共用）
   アートコンセプト: 「紙と明朝」。生成りの紙に墨、見出しは明朝体、細い罫線と大きな余白。
   LINZO LP (/linzo/lp.css) はダーク×ゴシック×ミント。器と製品で意図的に分岐させている。

   設計の芯: 器は「紙」、製品は紙の上に置かれた「板」。
   プロダクトのショーケースだけ各製品の世界観（LINZO＝ダーク＋ミント）を持ち込み、
   額装されたように見せる。器は黒子に徹し、製品色と競合しない。

   webfont は読み込まない（見出し＝システム明朝／本文＝システムサンセリフ）。
   LINZO 用の Zen Kaku / Barlow は lp.css 側だけで完結させる。 */

:root {
  --paper: #f7f4ee;      /* 生成りの紙 */
  --paper-2: #fffdf9;    /* 少し明るい面 */
  --ink: #1f1c18;        /* 墨 */
  --ink-soft: #6b6259;   /* 淡い墨 */
  --rule: #ddd6c8;       /* 罫線 */
  --accent: #8a6a4b;     /* 枯茶（差し色・控えめに） */

  /* 製品の板（LINZO の世界観をそのまま持ち込む） */
  --plate: #0e1319;
  --plate-ink: #eaf0f5;
  --plate-muted: #93a1ae;
  --plate-line: #26303c;
  --linzo-green: #36d399;

  --font-display: Georgia, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-mincho: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", Georgia, serif;
  --font-body: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
               system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
}

/* 紙の気配: ごく淡い横罫と、上方向の柔らかい光 */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 460px at 50% -10%, rgba(138, 106, 75, .07), transparent 72%),
    repeating-linear-gradient(180deg, rgba(31, 28, 24, .035) 0 1px, transparent 1px 30px);
  mask-image: linear-gradient(180deg, #000 0%, #000 38%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 38%, transparent 88%);
}

.page { position: relative; z-index: 1; }
.container { max-width: 940px; margin: 0 auto; padding: 0 26px; }

a { color: var(--accent); text-underline-offset: 3px; }

.pc { display: none; }
@media (min-width: 760px) { .pc { display: inline; } .sp { display: none; } }

/* ── nav ─────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 15px 26px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 17px; letter-spacing: .05em; color: var(--ink);
  text-decoration: none; font-weight: 400;
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-lang {
  color: var(--ink-soft); text-decoration: none; font-size: 12.5px;
  font-weight: 600; letter-spacing: .08em;
}
.nav-lang:hover { color: var(--ink); }
.nav-cta {
  color: var(--accent); text-decoration: none; font-size: 13px; font-weight: 600;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  padding-bottom: 2px;
}
.nav-cta:hover { border-color: var(--accent); }

/* ── hero ────────────────────────────── */
.hero { padding: 112px 0 84px; }
.brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 9vw, 4.7rem);
  letter-spacing: .04em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.brand-sub {
  font-size: .82rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 44px; font-weight: 500;
}
.lede {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  line-height: 1.85;
  letter-spacing: .04em;
  margin: 0;
  max-width: 21em;
}
.hero-note {
  color: var(--ink-soft); margin: 26px 0 0; max-width: 33em;
  font-size: .95rem; line-height: 2;
}

/* ── セクション ───────────────────────── */
section { padding: 64px 0; }
.kicker {
  font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin: 0 0 14px;
}
.h-jp {
  font-family: var(--font-mincho);
  font-weight: 600; font-size: clamp(1.45rem, 4vw, 2.05rem);
  line-height: 1.6; letter-spacing: .05em; margin: 0 0 26px;
}
p { margin: 0 0 16px; max-width: 35em; }
p:last-child { margin-bottom: 0; }

/* ── 製品の板（紙の上に額装する） ──────────── */
.showcase {
  position: relative;
  background: var(--plate);
  color: var(--plate-ink);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 36px 26px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(31, 28, 24, .13);
}
.showcase::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(560px 300px at 84% 6%, rgba(54, 211, 153, .15), transparent 70%);
  pointer-events: none;
}
@media (min-width: 800px) { .showcase { padding: 52px 48px; } }

.showcase-grid { position: relative; display: grid; gap: 36px; align-items: center; }
@media (min-width: 800px) { .showcase-grid { grid-template-columns: 1.05fr .95fr; } }

.showcase .logo svg { height: 25px; width: auto; display: block; margin-bottom: 20px; }

.showcase-title {
  /* 板の中だけ「製品側の書体感」＝ゴシック。器の明朝と対比させる。
     LINZOのwebfont(Zen Kaku)はここでは読み込まない（器を軽く保つ）。
     システムゴシックで十分に用が足りるため、環境差が出ない指定にしておく。 */
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.9rem, 5.4vw, 2.9rem);
  line-height: 1.34; letter-spacing: .045em;
  margin: 0 0 16px;
}
.showcase-desc { color: var(--plate-muted); margin-bottom: 24px; line-height: 1.85; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; padding: 0; list-style: none; }
.chips li {
  font-size: .79rem; color: var(--plate-muted); line-height: 1.7;
  border: 1px solid var(--plate-line); border-radius: 999px; padding: 3px 13px;
}

.btn-action {
  display: inline-block; background: var(--linzo-green); color: #08251a;
  font-weight: 800; font-size: 15.5px; text-decoration: none;
  padding: 13px 27px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-action:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(54, 211, 153, .26); }
.status-note { display: block; color: var(--plate-muted); font-size: .84rem; margin-top: 13px; }

.showcase figure { margin: 0; }
.showcase figure img {
  display: block; width: 100%; max-width: 282px; height: auto;
  margin: 0 auto;
  border-radius: 18px; border: 1px solid var(--plate-line);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .48);
}

/* ── 準備中（紙の側・罫線だけの静かなカード） ──── */
.cards { display: grid; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 700px) {
  .card { padding: 28px 26px 30px; border-right: 1px solid var(--rule); }
  .card:first-child { padding-left: 0; }
  .card:last-child { border-right: 0; padding-right: 0; }
}
.card h3 {
  font-family: var(--font-mincho);
  font-size: 1.08rem; font-weight: 600; letter-spacing: .03em;
  margin: 12px 0 10px;
}
.card p { font-size: .9rem; color: var(--ink-soft); margin: 0; line-height: 1.9; }

.tag {
  display: inline-block;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
}
.section-note { color: var(--ink-soft); font-size: .88rem; margin-top: 24px; }

/* ── 事業者情報 ───────────────────────── */
dl { margin: 0; display: grid; gap: 0; }
dt {
  color: var(--ink-soft); font-size: .84rem; margin: 0;
  letter-spacing: .06em; padding-top: 18px;
}
dd { margin: 0; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
dl > dt:first-of-type { padding-top: 0; }
@media (min-width: 700px) {
  dl { grid-template-columns: 11em 1fr; }
  dt { padding-top: 18px; border-bottom: 1px solid var(--rule); padding-bottom: 18px; }
  dl > dd:first-of-type, dl > dt:first-of-type { padding-top: 0; }
}
.romaji { color: var(--ink-soft); font-size: .84rem; display: block; margin-top: 3px; }

.divider { display: none; }

footer {
  padding: 52px 0 72px; color: var(--ink-soft); font-size: .84rem;
  border-top: 1px solid var(--rule);
}
footer p { margin: 0 0 6px; }

/* ── モーション層（控えめ）───────────────── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes cpRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  .hero .brand { animation: cpRise .8s .05s both; }
  .hero .brand-sub { animation: cpRise .8s .2s both; }
  .hero .lede { animation: cpRise .8s .36s both; }
  .hero .hero-note { animation: cpRise .8s .5s both; }

  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}
