/* 洋菓子店 くれない ── 編集/ブランド分割型
   繊細で華やかなパティスリー。ベリーの赤紫・淡いピンク・生クリーム白・金の細い線。
   ヒーローは左右非対称の分割。写真は面として使い、雑誌的な余白で組む。
   差し替え箇所は index.html 側のコメントを参照。 */

:root {
  --cream:    #FBF6F3;   /* 生クリームの白。地 */
  --cream-2:  #F5ECE8;
  --blush:    #F7E4E8;   /* 淡いピンク。面 */
  --blush-2:  #F0D3DA;
  --ink:      #38182A;   /* 深い葡萄色。文字 */
  --ink-sub:  #8B6A76;
  --berry:    #B21E48;   /* ラズベリー。差し色 */
  --berry-d:  #8A1338;
  --berry-lt: #E8A6B7;   /* 濃い地の上用 */
  --plum:     #45142F;   /* 濃い面（分割の暗い側） */
  --plum-2:   #340D24;
  --gold:     #BB9758;   /* 金の細い線 */
  --gold-lt:  #DAC08A;
  --line:     #EBD8DA;

  --on-plum:     rgba(250,240,240,.9);
  --on-plum-sub: rgba(250,240,240,.66);
  --on-plum-line:rgba(250,240,240,.16);

  --serif:  "Zen Old Mincho", "Noto Serif JP", serif;
  --latin:  "Cormorant Garamond", serif;
  --sans:   "Noto Sans JP", "Hiragino Sans", sans-serif;

  --pad: clamp(22px, 5vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 var(--pad); }
.wrap.narrow { max-width: 720px; }

/* ---------- 見出し・共通パーツ ---------- */
h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 3.5vw, 33px); line-height: 1.85; letter-spacing: .07em;
  text-wrap: balance;
}
strong { font-weight: 500; color: var(--berry-d); }
.mute { color: var(--ink-sub); }

.snum {
  font-family: var(--latin); font-weight: 600; font-size: 13px;
  letter-spacing: .34em; color: var(--berry); text-transform: uppercase;
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.snum span {
  font-size: 22px; letter-spacing: .05em; color: var(--gold);
}
.snum.light { color: var(--berry-lt); }
.snum.light span { color: var(--gold-lt); }

.sec-head { max-width: 720px; margin-bottom: clamp(38px, 6vw, 60px); }
.sec-head h2 { margin-bottom: 22px; }
.sec-lede { color: var(--ink-sub); font-size: 14.5px; }
.sec-lede strong { color: var(--berry-d); }

.menu-note { margin-top: 20px; font-size: 12px; color: var(--ink-sub); letter-spacing: .03em; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block; padding: 16px 40px;
  background: var(--berry); color: #fff; text-decoration: none;
  font-size: 13.5px; letter-spacing: .12em; border: 1px solid var(--berry);
  transition: background .3s, color .3s, transform .3s, border-color .3s;
}
.btn:hover { background: var(--berry-d); border-color: var(--berry-d); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--berry); }
.btn.ghost:hover { background: var(--berry); color: #fff; }
.btn.light { background: var(--gold); border-color: var(--gold); color: #2c0f1e; }
.btn.light:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: #2c0f1e; }
.btn.ghost-light { background: transparent; border-color: var(--on-plum-line); color: var(--cream); }
.btn.ghost-light:hover { background: var(--cream); color: var(--plum); border-color: var(--cream); }

/* ---------- ヘッダー ---------- */
.bar {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 16px var(--pad);
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.bar .logo {
  font-family: var(--serif); font-size: 18px; letter-spacing: .18em;
  text-decoration: none; color: var(--ink); justify-self: start;
}
.bar .logo span {
  display: block; font-family: var(--latin); font-weight: 500; font-size: 9.5px;
  letter-spacing: .3em; color: var(--berry); margin-top: 3px;
}
.bar nav { display: none; gap: 26px; font-size: 12.5px; letter-spacing: .1em; justify-self: center; }
.bar nav a { text-decoration: none; color: var(--ink-sub); transition: color .3s; }
.bar nav a:hover { color: var(--berry); }
.bar-cta {
  justify-self: end; font-family: var(--latin); font-weight: 600; font-size: 14px;
  letter-spacing: .1em; color: var(--berry); text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 3px; display: none;
}
.bar.on {
  background: rgba(251,246,243,.94); backdrop-filter: blur(10px);
  border-bottom-color: var(--line); box-shadow: 0 6px 30px rgba(56,24,42,.05);
}
@media (min-width: 940px) {
  .bar nav { display: flex; }
  .bar-cta { display: inline-block; }
}

/* ---------- ヒーロー：左右非対称の分割 ---------- */
.hero {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 20px);
  align-items: center;
  padding: clamp(120px, 16vw, 168px) var(--pad) clamp(56px, 8vw, 92px);
  max-width: 1280px; margin: 0 auto;
}
.hero-copy { max-width: 560px; }
.kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .18em; color: var(--ink-sub); margin-bottom: 26px;
}
.kicker-line { width: 40px; height: 1px; background: var(--gold); flex: none; }
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 6.6vw, 58px); line-height: 1.5; letter-spacing: .06em;
  margin-bottom: 30px; text-wrap: balance;
}
.hero-lede { font-size: 14.5px; line-height: 2.2; color: var(--ink-sub); max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 44px);
  margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line);
}
.hero-stats dt { font-size: 11px; letter-spacing: .12em; color: var(--ink-sub); margin-bottom: 8px; }
.hero-stats dd {
  font-family: var(--serif); font-size: clamp(19px, 2.6vw, 24px); letter-spacing: .05em; color: var(--berry-d);
}
.hero-stats dd span { font-family: var(--sans); font-size: 12px; color: var(--ink-sub); margin-left: 4px; letter-spacing: .06em; }

.hero-photo figure { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 32%;
}
.hero-photo figure::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(250,240,240,.4);
  pointer-events: none;
}
.hero-photo figcaption {
  position: absolute; left: 0; bottom: 0; margin: 22px;
  background: rgba(69,20,47,.82); color: var(--cream);
  font-size: 11.5px; letter-spacing: .06em; padding: 10px 16px;
  border-left: 2px solid var(--gold);
}
@media (min-width: 860px) {
  .hero { grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5vw, 76px); }
  .hero-photo img { aspect-ratio: 3 / 4; }
}

/* ---------- セクション枠 ---------- */
.story, .showcase, .flow, .gift, .voice, .faq-sec { padding: clamp(70px, 11vw, 128px) 0; }

/* ---------- 01 ブランドストーリー ---------- */
.story-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 68px); align-items: center; }
.story-text h2 { margin: 26px 0 24px; }
.story-text p + p { margin-top: 1.4em; }
.scene {
  font-family: var(--serif); font-size: clamp(17px, 2.3vw, 21px);
  line-height: 2.35; letter-spacing: .06em; color: var(--ink);
  padding-left: 22px; border-left: 2px solid var(--gold); margin-bottom: 8px;
}
.story-photo { position: relative; }
.story-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 40%; }
.story-photo figcaption {
  margin-top: 14px; font-size: 12px; color: var(--ink-sub); letter-spacing: .04em; line-height: 1.9;
  padding-left: 16px; border-left: 1px solid var(--gold);
}
@media (min-width: 860px) {
  .story-grid { grid-template-columns: 1.1fr .9fr; }
  .story-photo { transform: translateY(24px); }
}

/* ---------- 全幅の帯 ---------- */
.band { position: relative; }
.band img { width: 100%; height: clamp(260px, 42vw, 480px); object-fit: cover; object-position: 50% 46%; }
.band figcaption {
  position: absolute; inset: auto 0 0 0; padding: 80px var(--pad) 26px;
  background: linear-gradient(180deg, transparent, rgba(52,13,36,.62) 55%, rgba(52,13,36,.86));
}
.band figcaption span {
  display: block; max-width: 1120px; margin: 0 auto;
  font-family: var(--serif); font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .06em; color: var(--cream); text-shadow: 0 1px 14px rgba(0,0,0,.5);
}

/* ---------- 02 ショーケース ---------- */
.showcase { background: var(--cream-2); }
.cakes { display: grid; gap: clamp(46px, 7vw, 84px); }
.cake { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 44px); align-items: center; }
.cake-photo { position: relative; }
.cake-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 52%; }
.cake-photo::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(187,151,88,.5); pointer-events: none;
}
.cake-index {
  font-family: var(--latin); font-weight: 600; font-size: 14px; letter-spacing: .22em;
  color: var(--gold); margin-bottom: 14px;
}
.cake-index::after { content: ""; display: inline-block; width: 34px; height: 1px; background: var(--gold); vertical-align: middle; margin-left: 14px; }
.cake h3 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: .06em; margin-bottom: 18px;
}
.cake h3 .en {
  display: block; font-family: var(--latin); font-weight: 500; font-size: 12px;
  letter-spacing: .3em; color: var(--berry); margin-top: 8px;
}
.cake-body p { font-size: 14px; color: var(--ink-sub); line-height: 2.1; max-width: 460px; }
.cake .price {
  margin-top: 20px; font-size: 14px; color: var(--ink); letter-spacing: .04em; display: flex;
  align-items: baseline; flex-wrap: wrap; gap: 8px;
}
.cake .price b { font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--berry-d); }
.cake .price .sep { width: 1px; height: 16px; background: var(--line); margin: 0 6px; align-self: center; }
.cake .price .note { color: var(--ink-sub); font-size: 12.5px; }
@media (min-width: 760px) {
  .cake { grid-template-columns: 1fr 1fr; }
  .cake:nth-child(even) .cake-photo { order: 2; }
}

/* ご予約の前に：淡いピンクの面 */
.spec-panel {
  margin-top: clamp(56px, 8vw, 88px); background: var(--blush);
  padding: clamp(34px, 5vw, 56px) clamp(26px, 4vw, 52px);
}
.spec-title {
  font-family: var(--serif); font-weight: 500; font-size: 17px; letter-spacing: .1em;
  color: var(--berry-d); margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--blush-2);
}
.spec div {
  display: grid; grid-template-columns: 1fr; gap: 3px;
  padding: 16px 0; border-bottom: 1px solid var(--blush-2);
}
.spec div:last-child { border-bottom: 0; }
.spec dt { font-size: 12px; letter-spacing: .1em; color: var(--berry-d); }
.spec dd { font-size: 14px; color: var(--ink); line-height: 1.95; }
@media (min-width: 640px) { .spec div { grid-template-columns: 180px 1fr; gap: 24px; align-items: baseline; } }

/* ---------- 本文中のCTA ---------- */
.cta-inline { margin-top: clamp(48px, 7vw, 72px); text-align: center; }
.cta-inline.left { text-align: left; margin-top: 40px; }
.cta-inline p { font-size: 13.5px; color: var(--ink-sub); margin-bottom: 18px; }

/* ---------- 03 ご予約の流れ ---------- */
.steps { list-style: none; display: grid; gap: 0; max-width: 820px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 32px) 0; border-bottom: 1px solid var(--line); align-items: start;
}
.step:first-child { border-top: 1px solid var(--line); }
.step-no { font-family: var(--latin); font-weight: 600; font-size: 30px; color: var(--gold); letter-spacing: .04em; line-height: 1; }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 17px; letter-spacing: .06em; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--ink-sub); line-height: 2.05; max-width: 560px; }

/* ---------- CTA2：分割の帯 ---------- */
.band-split { display: grid; grid-template-columns: 1fr; }
.band-split-body {
  background: var(--plum); color: var(--cream);
  padding: clamp(56px, 9vw, 104px) var(--pad);
  display: flex; align-items: center;
}
.band-split-body .inner { max-width: 460px; margin: 0 auto; }
.band-split-body h2 { color: var(--cream); margin: 18px 0 18px; }
.band-split-body p { color: var(--on-plum-sub); font-size: 14px; }
.band-split-body .btn { margin-top: 30px; }
.band-split-photo img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; object-position: 50% 46%; }
@media (min-width: 860px) {
  .band-split { grid-template-columns: 1fr 1fr; }
  .band-split-body .inner { margin: 0 0 0 auto; }
}

/* ---------- 04 焼き菓子：淡いピンクの面 ---------- */
.gift { background: var(--blush); }
.gift-grid { display: grid; grid-template-columns: 1fr; gap: clamp(38px, 5vw, 64px); }
.gift-intro h2 { margin: 22px 0 22px; }
.gift-intro p { font-size: 14px; color: var(--ink-sub); }
.gift-photo { margin-top: 32px; }
.gift-photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 50% 44%; }
.gift-menu { padding-top: 6px; }
.menu-row {
  display: flex; align-items: baseline; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--blush-2);
}
.menu-row .nm { font-family: var(--serif); font-size: 16px; letter-spacing: .05em; white-space: nowrap; }
.menu-row .ds { flex: 1; font-size: 12.5px; color: var(--ink-sub); }
.menu-row .pr { font-family: var(--latin); font-weight: 600; font-size: 17px; letter-spacing: .04em; color: var(--berry-d); white-space: nowrap; }
.gift .menu-note { color: var(--ink-sub); }
@media (min-width: 860px) {
  .gift-grid { grid-template-columns: .95fr 1.05fr; align-items: start; }
  .gift-intro { position: sticky; top: 96px; }
}

/* ---------- 05 お客様の声 ---------- */
.voice { background: var(--cream-2); }
.voices { display: grid; grid-template-columns: 1fr; gap: 20px; }
.voices figure { background: var(--cream); padding: clamp(28px, 3.5vw, 44px); position: relative; }
.voices figure::before {
  content: "“"; position: absolute; top: 12px; left: 18px;
  font-family: var(--latin); font-size: 60px; color: var(--blush-2); line-height: 1;
}
.voices blockquote { position: relative; font-size: 14px; line-height: 2.15; letter-spacing: .04em; }
.v-lead blockquote { font-family: var(--serif); font-size: clamp(16px, 2vw, 20px); line-height: 2.1; color: var(--ink); }
.voices figcaption {
  margin-top: 22px; font-size: 11.5px; letter-spacing: .1em; color: var(--ink-sub);
  padding-top: 16px; border-top: 1px solid var(--line);
}
@media (min-width: 820px) {
  .voices { grid-template-columns: 1fr 1fr; }
  .v-lead { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,3vw,48px); align-items: center; }
  .v-lead blockquote { grid-column: 1; }
  .v-lead figcaption { grid-column: 1; border-top: 0; padding-top: 0; margin-top: 16px; }
  .v-lead::after {
    content: ""; grid-column: 2; grid-row: 1 / span 2; align-self: stretch;
    background: linear-gradient(135deg, var(--blush), var(--blush-2));
  }
}

/* ---------- 06 FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0;
  font-size: 14.5px; letter-spacing: .04em; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 17px;
  font-family: var(--latin); font-size: 22px; color: var(--berry); transition: transform .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 40px 24px 0; font-size: 13.5px; color: var(--ink-sub); line-height: 2.1; }
.note-sample { display: inline-block; margin-top: 10px; font-size: 12px; color: var(--berry-d); }

/* ---------- 07 お店：写真と情報の2分割 ---------- */
.shop { display: grid; grid-template-columns: 1fr; }
.shop-photo img { width: 100%; height: clamp(320px, 66vw, 560px); object-fit: cover; object-position: 50% 40%; }
.shop-body { background: var(--plum); color: var(--cream); padding: clamp(56px, 9vw, 104px) var(--pad); }
.shop-body .inner { max-width: 440px; margin: 0 auto; }
.shop-body h2 { color: var(--cream); margin: 18px 0 30px; }
.shop-body dl div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--on-plum-line); }
.shop-body dt { font-size: 11.5px; letter-spacing: .12em; color: var(--on-plum-sub); padding-top: 3px; }
.shop-body dd { font-size: 14.5px; color: var(--on-plum); }
@media (min-width: 860px) {
  .shop { grid-template-columns: 1fr 1fr; }
  .shop-photo img { height: 100%; }
  .shop-body { display: flex; flex-direction: column; justify-content: center; }
  .shop-body .inner { margin: 0 auto 0 clamp(20px, 4vw, 64px); }
}

/* ---------- 最終CTA ---------- */
.cta-final {
  background: var(--plum-2); color: var(--cream); text-align: center;
  padding: clamp(64px, 10vw, 108px) var(--pad);
}
.cta-final .snum { justify-content: center; }
.cta-final h2 { color: var(--cream); margin: 14px 0 16px; }
.cta-final p { color: var(--berry-lt); font-size: 14px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }

/* ---------- フッター ---------- */
footer { background: var(--plum-2); color: var(--on-plum-sub); padding: 8px var(--pad) 100px; text-align: center; }
footer .wrap { padding: 0; }
.foot-logo {
  font-family: var(--serif); color: var(--cream); font-size: 16px; letter-spacing: .16em; margin-bottom: 16px;
  padding-top: 48px; border-top: 1px solid var(--on-plum-line);
}
.foot-logo span { display: block; font-family: var(--latin); font-weight: 500; font-size: 9.5px; letter-spacing: .3em; color: var(--berry-lt); margin-top: 5px; }
footer p { font-size: 11.5px; line-height: 2.1; }
footer .credit { margin-top: 24px; font-size: 11px; color: rgba(250,240,240,.5); }
footer .credit strong { color: var(--berry-lt); }
footer a { color: var(--gold-lt); }
@media (min-width: 940px) { footer { padding-bottom: 56px; } }

/* ---------- スマホ追従バー ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(69,20,47,.96); backdrop-filter: blur(8px);
  transform: translateY(110%); transition: transform .4s;
}
.sticky.on { transform: none; }
.sticky a { flex: 1; text-align: center; padding: 13px 6px; text-decoration: none; font-size: 13px; letter-spacing: .06em; }
.sticky .s1 { background: var(--berry); color: #fff; }
.sticky .s2 { background: transparent; color: var(--cream); border: 1px solid rgba(250,240,240,.28); }
@media (min-width: 940px) { .sticky { display: none; } }

/* ---------- スクロールで浮かび上がる ---------- */
.rise { opacity: 0; transform: translateY(22px); transition: opacity .9s ease, transform .9s ease; }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
