/* 花屋 つきくさ ── カタログ主役型LP（花屋）
   ヒーローそのものを商品グリッドにし、用途カテゴリ・価格・お渡し目安を
   一覧性高く見せる。情緒的な全画面写真ヒーローにはしない。

   配色：生成りクリームを地に、セージグリーンとブラッシュピンクを
   まとまった面で使い、くすみラベンダーを一点（お見舞い・お供え）に。
   差し色を小面積で散らす画一配色は避け、複数の色に実面積を持たせる。

   ライト固定。店頭のカードや包装紙と色を揃える必要があるため、
   prefers-color-scheme には意図的に対応していない。 */

:root {
  --cream:   #F4EEE1;   /* 地。生成りクリーム */
  --cream-2: #EAE1CF;   /* 交互の地 */
  --paper:   #FCFAF3;   /* カード。純白は使わない */
  --white:   #FFFFFF;

  --sage:    #8B9A78;   /* セージ。輪郭・お祝い */
  --sage-d:  #4E5A38;   /* 濃セージ。文字 */
  --sage-lt: #E1E6D4;   /* 淡セージ面 */

  --blush:   #DCA7AD;   /* ブラッシュピンク。誕生日 */
  --blush-d: #93525E;   /* 濃ブラッシュ。文字 */
  --blush-lt:#F4E3E4;   /* 淡ブラッシュ面 */

  --lav:     #9A88A6;   /* くすみラベンダー。一点（お見舞い・お供え） */
  --lav-d:   #62526F;
  --lav-lt:  #E7E0ED;

  --ink:     #403A31;   /* 本文 */
  --ink-sub: #7B7264;   /* 従属テキスト */
  --line:    #DBD1BE;   /* クリーム上の罫 */
  --line-2:  #E6DDCB;

  --mincho: "Shippori Mincho", "Yu Mincho", "Noto Serif JP", serif;
  --sans:   "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --num:    "Jost", "Zen Kaku Gothic New", sans-serif;

  --pad: clamp(18px, 5vw, 40px);
  --maxw: 1180px;
}

* { 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: 300;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
strong { font-weight: 500; color: var(--blush-d); }

.price-tag, .info, .map-addr, .cta-fine, .spec dd, .flow-no { font-variant-numeric: tabular-nums; }

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

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

/* ---------- 見出しの型 ---------- */
h2 { font-family: var(--mincho); font-weight: 500; letter-spacing: .05em;
     line-height: 1.6; text-wrap: balance; }
h3 { font-family: var(--mincho); font-weight: 500; letter-spacing: .04em; }
.mute { color: var(--ink-sub); font-size: 13.5px; }

.sec-kicker { font-family: var(--num); font-weight: 400; font-size: 11px;
              letter-spacing: .34em; color: var(--sage); margin-bottom: 12px; }
.sec-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); }
.sec-head h2 { font-size: clamp(24px, 4vw, 34px); margin-bottom: 16px; }
.sec-lede { font-size: 14px; line-height: 2.05; color: var(--ink-sub); }

/* ---------- ヘッダー ---------- */
.bar {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 12px var(--pad);
  background: rgba(244,238,225,.82); backdrop-filter: blur(10px);
  color: var(--ink); transition: box-shadow .35s, background .35s;
}
.bar.on { box-shadow: 0 1px 0 var(--line-2), 0 6px 24px rgba(64,58,49,.06);
          background: rgba(247,242,231,.94); }
.bar .logo { font-family: var(--mincho); font-size: 16px; letter-spacing: .12em;
             text-decoration: none; line-height: 1.4; white-space: nowrap; }
.bar .logo small { display: block; font-family: var(--num); font-size: 8.5px;
                   letter-spacing: .34em; color: var(--sage); margin-top: 2px; }
.bar nav { display: none; gap: 24px; font-size: 12.5px; letter-spacing: .06em; }
.bar nav a { text-decoration: none; color: var(--ink); opacity: .85;
             padding: 4px 0; border-bottom: 1px solid transparent; transition: .25s; }
.bar nav a:hover { opacity: 1; border-color: var(--blush); }
.bar-tel { text-decoration: none; font-size: 12.5px; letter-spacing: .08em;
           padding: 8px 18px; border-radius: 999px; border: 1px solid var(--sage);
           color: var(--sage-d); transition: .25s; white-space: nowrap; }
.bar-tel:hover { background: var(--sage); color: var(--paper); }
@media (min-width: 940px) { .bar nav { display: flex; } }
@media (max-width: 480px) { .bar-tel { display: none; } }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px;
  background: var(--sage); color: var(--paper); border: 1px solid var(--sage);
  text-decoration: none; font-size: 14px; letter-spacing: .06em;
  transition: background .3s, color .3s, transform .3s, border-color .3s;
}
.btn:hover { background: var(--sage-d); border-color: var(--sage-d); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: transparent; color: var(--sage-d); border-color: var(--sage); transform: translateY(-2px); }
.btn.sm { padding: 11px 22px; font-size: 13px; }

/* ---------- バッジ（用途カテゴリ） ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: 11.5px; letter-spacing: .06em; line-height: 1;
  padding: 6px 13px 6px 10px; border-radius: 999px; border: 1px solid;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.b-blush { background: var(--blush-lt); border-color: var(--blush); color: var(--blush-d); }
.b-blush .dot { background: var(--blush); }
.b-sage  { background: var(--sage-lt); border-color: var(--sage); color: var(--sage-d); }
.b-sage  .dot { background: var(--sage); }
.b-lav   { background: var(--lav-lt); border-color: var(--lav); color: var(--lav-d); }
.b-lav   .dot { background: var(--lav); }
.b-cream { background: var(--cream-2); border-color: var(--line); color: var(--ink-sub); }
.b-cream .dot { background: var(--sage); }

/* 価格表記 */
.price-tag { font-family: var(--num); font-weight: 500; font-size: 22px;
             letter-spacing: .01em; color: var(--ink); line-height: 1; }
.price-tag .cur { font-size: 14px; margin-right: 1px; }
.price-tag .from { font-size: 12px; color: var(--ink-sub); margin-left: 2px; letter-spacing: .04em; }

/* ═══════════ ヒーロー：商品グリッド ═══════════ */
.hero { padding: clamp(84px, 12vw, 118px) 0 clamp(20px, 4vw, 40px); }
.hero-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
             display: grid; gap: 14px; }

.lead { padding: 6px 2px 16px; align-self: center; }
.lead-kicker { font-family: var(--num); font-size: 11.5px; letter-spacing: .18em;
               color: var(--sage-d); margin-bottom: 18px; }
.lead-title { font-family: var(--mincho); font-weight: 500;
              font-size: clamp(26px, 5.4vw, 42px); line-height: 1.55;
              letter-spacing: .04em; margin-bottom: 20px; text-wrap: balance; }
.lead-desc { font-size: 14px; line-height: 2.05; color: var(--ink-sub);
             max-width: 40ch; margin-bottom: 24px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip { text-decoration: none; font-size: 12.5px; letter-spacing: .04em;
        padding: 8px 15px; border-radius: 999px; background: var(--paper);
        border: 1px solid var(--line); color: var(--ink); transition: .25s; }
.chip:hover { border-color: var(--blush); background: var(--blush-lt); color: var(--blush-d); }
.lead-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* 商品タイル */
.ptile { display: flex; flex-direction: column; background: var(--paper);
         border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden;
         transition: transform .3s, box-shadow .3s; }
.ptile:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(78,90,56,.12); }
.ptile-ph { position: relative; aspect-ratio: 5 / 4; flex: 0 0 auto; overflow: hidden; }
.ptile-ph img { position: absolute; inset: 0; width: 100%; height: 100%;
                object-fit: cover; object-position: 50% 55%; }
.ptile-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.ptile-body .badge { align-self: flex-start; }
.ptile-body h3 { font-size: 18px; }
.ptile-note { font-size: 12.5px; line-height: 1.85; color: var(--ink-sub); }
.ptile-body .price-tag { margin-top: 2px; }
.pick { position: absolute; z-index: 2; top: 12px; left: 12px;
        font-family: var(--num); font-size: 11px; letter-spacing: .1em;
        color: var(--paper); background: var(--blush-d);
        padding: 6px 12px; border-radius: 999px; }
.feat .ptile-ph { aspect-ratio: 4 / 5; }
.feat .ptile-ph img { object-position: 50% 60%; }

.side { display: grid; gap: 14px; }

@media (min-width: 720px) {
  .side { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr .92fr .82fr; align-items: stretch;
               gap: 16px; min-height: min(74vh, 660px); }
  .lead { padding: 0 8px 0 0; }
  .side { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .ptile { height: 100%; }
  .hero .ptile-ph, .hero .feat .ptile-ph { aspect-ratio: auto; flex: 1 1 auto; min-height: 0; }
}

/* ═══════════ カタログ本編 ═══════════ */
.catalog { padding: clamp(56px, 8vw, 96px) 0; background: var(--paper); }
.cat-group { padding-top: clamp(30px, 4vw, 44px); margin-top: clamp(30px, 4vw, 44px);
             border-top: 1px solid var(--line-2); }
.cat-group:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.cat-label { margin-bottom: 20px; }
.cat-items { display: grid; gap: 16px;
             grid-template-columns: repeat(auto-fit, minmax(250px, 320px));
             justify-content: start; }

.pcard { display: flex; flex-direction: column; background: var(--cream);
         border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden;
         transition: transform .3s, box-shadow .3s; }
.pcard:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(78,90,56,.12); }
.pcard-ph { aspect-ratio: 4 / 3; overflow: hidden; }
.pcard-ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;
                transition: transform .6s ease; }
.pcard:hover .pcard-ph img { transform: scale(1.04); }
.pcard-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard-body h3 { font-size: 19px; margin-bottom: 10px; }
.pcard-body p { font-size: 13px; line-height: 1.95; color: var(--ink-sub); flex: 1; }
.pcard-foot { display: flex; align-items: baseline; justify-content: space-between;
              gap: 12px; margin-top: 16px; padding-top: 14px;
              border-top: 1px solid var(--line-2); }
.pcard-meta { font-size: 11.5px; letter-spacing: .04em; color: var(--ink-sub);
              text-align: right; }
.catalog-note { margin-top: clamp(34px, 5vw, 52px); font-size: 12.5px; line-height: 1.95;
                color: var(--ink-sub); max-width: 720px; }

/* ═══════════ この店のこと ═══════════ */
.story { padding: clamp(56px, 8vw, 100px) 0; background: var(--cream); }
.story-grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
.story-body h2 { font-size: clamp(24px, 4.4vw, 36px); margin: 4px 0 20px; }
.story-body p + p { margin-top: 1.3em; }
.story-body p { font-size: 14px; line-height: 2.05; }
.story-fig { border-radius: 6px; overflow: hidden; }
.story-fig img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 55% 42%; }
@media (min-width: 860px) { .story-grid { grid-template-columns: 1fr 1fr; } }

.spec { margin-top: clamp(34px, 5vw, 52px); border-top: 1px solid var(--line); }
.spec div { display: grid; grid-template-columns: 1fr; gap: 2px;
            padding: 15px 2px; border-bottom: 1px solid var(--line); }
@media (min-width: 640px) { .spec div { grid-template-columns: 150px 1fr; gap: 20px; align-items: baseline; } }
.spec dt { font-size: 11.5px; letter-spacing: .12em; color: var(--sage-d); }
.spec dd { font-size: 14px; color: var(--ink); }

/* ═══════════ 贈りもの ═══════════ */
.gift { padding: clamp(56px, 8vw, 100px) 0; background: var(--sage-lt); }
.gift-grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
.gift-fig { border-radius: 6px; overflow: hidden; }
.gift-fig img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gift-body h2 { font-size: clamp(23px, 4vw, 33px); margin: 4px 0 18px; color: var(--sage-d); }
.gift-body p { font-size: 14px; line-height: 2.05; }
.gift-body strong { color: var(--sage-d); }
.ticks { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }
.ticks li { font-size: 12.5px; letter-spacing: .02em; padding: 8px 14px;
            background: var(--paper); border: 1px solid var(--sage);
            border-radius: 999px; color: var(--sage-d); }
@media (min-width: 860px) { .gift-grid { grid-template-columns: .95fr 1.05fr; } }

/* ═══════════ 料金 ═══════════ */
.price-sec { padding: clamp(56px, 8vw, 100px) 0; background: var(--paper); }
.scroll-hint { font-size: 11.5px; letter-spacing: .06em; color: var(--ink-sub); margin-bottom: 10px; }
@media (min-width: 640px) { .scroll-hint { display: none; } }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch;
                border: 1px solid var(--line-2); border-radius: 6px; }
.price { width: 100%; min-width: 460px; border-collapse: collapse; background: var(--cream); }
.price th, .price td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line-2); }
.price thead th { font-size: 11.5px; letter-spacing: .1em; font-weight: 400;
                  color: var(--sage-d); background: var(--sage-lt); }
.price tbody tr:last-child td { border-bottom: 0; }
.price .nm { display: block; font-size: 15px; }
.price .ds { display: block; font-size: 11.5px; line-height: 1.8; color: var(--ink-sub); }
.price td:nth-child(2) { font-family: var(--num); font-size: 16px; white-space: nowrap; color: var(--ink); }
.price td:nth-child(3), .price th:nth-child(3) { text-align: right; white-space: nowrap;
                                                 font-size: 13px; color: var(--ink-sub); }
.price-note { list-style: none; margin-top: 18px; font-size: 12px; line-height: 1.95; color: var(--ink-sub); }
.price-note li { padding-left: 15px; position: relative; }
.price-note li::before { content: "※"; position: absolute; left: 0; }

/* ═══════════ ご注文の流れ ═══════════ */
.flow-sec { padding: clamp(56px, 8vw, 100px) 0; background: var(--cream-2); }
.flow { list-style: none; display: grid; gap: 14px; counter-reset: none; }
.flow-step { position: relative; background: var(--paper); border: 1px solid var(--line-2);
             border-radius: 6px; padding: 26px 24px; }
.flow-no { display: block; font-family: var(--num); font-weight: 400; font-size: 26px;
           color: var(--blush); letter-spacing: .04em; margin-bottom: 12px; }
.flow-step h3 { font-size: 18px; margin-bottom: 8px; }
.flow-step p { font-size: 12.5px; line-height: 1.9; color: var(--ink-sub); }
@media (min-width: 760px) {
  .flow { grid-template-columns: repeat(4, 1fr); }
  .flow-step:not(:last-child)::after {
    content: ""; position: absolute; top: 40px; right: -8px; width: 16px; height: 1px;
    background: var(--line); z-index: 1;
  }
}

/* ═══════════ お客様の声 ═══════════ */
.voice-sec { padding: clamp(56px, 8vw, 100px) 0; background: var(--paper); }
.voices { display: grid; gap: 16px; }
@media (min-width: 780px) { .voices { grid-template-columns: repeat(3, 1fr); } }
.voice { background: var(--cream); border: 1px solid var(--line-2); border-radius: 6px;
         padding: 28px 26px 24px; }
.voice blockquote { font-size: 13.5px; line-height: 2.05; color: var(--ink); }
.voice blockquote::before { content: "\201C"; display: block; font-family: var(--mincho);
                            font-size: 34px; line-height: .6; color: var(--blush);
                            margin-bottom: 10px; }
.voice figcaption { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
                    font-size: 11.5px; letter-spacing: .08em; color: var(--ink-sub); }

/* ═══════════ 店主・お店 ═══════════ */
.shop-sec { padding: clamp(56px, 8vw, 100px) 0; background: var(--cream); }
.shop-grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: start; }
.shop-fig { border-radius: 6px; overflow: hidden; }
.shop-fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.shop-body h2 { font-size: clamp(23px, 4vw, 33px); margin: 4px 0 20px; }
.shop-body p { font-size: 14px; line-height: 2.05; }
.shop-body p + p { margin-top: 1.2em; }
.owner-name { font-family: var(--mincho); font-size: 20px; letter-spacing: .06em; }
.owner-name span { display: block; font-family: var(--sans); font-size: 11.5px;
                   letter-spacing: .1em; color: var(--ink-sub); margin-top: 6px; }
.info { margin-top: 30px; }
.info div { display: grid; grid-template-columns: 84px 1fr; gap: 14px;
            padding: 12px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.info div:first-child { border-top: 1px solid var(--line); }
.info dt { font-size: 11.5px; letter-spacing: .1em; color: var(--sage-d); }
.info dd { font-size: 14px; line-height: 1.9; }
.info dd a { color: var(--blush-d); text-decoration: none; }
.map-card { margin-top: 28px; background: var(--lav-lt); border: 1px solid var(--lav);
            border-radius: 6px; padding: 24px 24px 22px; }
.map-addr { font-size: 13px; line-height: 2; color: var(--lav-d); }
.map-card .btn { margin-top: 16px; }
.map-note { margin-top: 16px; font-size: 12px; line-height: 1.9; color: var(--ink-sub); }
@media (min-width: 860px) { .shop-grid { grid-template-columns: .8fr 1.2fr; } }

/* ═══════════ 最終CTA ═══════════ */
.cta-band { padding: clamp(60px, 9vw, 104px) 0; background: var(--blush-lt);
            text-align: center; border-top: 1px solid var(--line-2); }
.cta-band .sec-kicker { color: var(--blush-d); }
.cta-band h2 { font-size: clamp(24px, 4.4vw, 36px); margin-bottom: 16px; }
.cta-band > .wrap > p { font-size: 14px; line-height: 2.05; color: var(--ink-sub); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.cta-band .btn.ghost { border-color: var(--blush); color: var(--blush-d); }
.cta-band .btn.ghost:hover { border-color: var(--blush-d); color: var(--blush-d); }
.cta-fine { margin-top: 24px; font-size: 11.5px; color: var(--ink-sub); }

/* ═══════════ フッター ═══════════ */
footer { background: var(--sage-d); color: rgba(244,238,225,.72); text-align: center;
         padding: 52px var(--pad) 104px; }
.f-logo { font-family: var(--mincho); color: var(--cream); font-size: 17px;
          letter-spacing: .14em; margin-bottom: 16px; }
footer p { font-size: 11.5px; line-height: 2.05; }
.f-note { max-width: 620px; margin: 20px auto 0; color: rgba(244,238,225,.56); }
.credit { margin-top: 26px; font-size: 10.5px; color: rgba(244,238,225,.5); }
footer strong { color: var(--cream); }
footer a { color: rgba(244,238,225,.85); }
@media (min-width: 940px) { footer { padding-bottom: 52px; } }

/* ═══════════ スマホ追従バー ═══════════ */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(247,242,231,.96); backdrop-filter: blur(8px);
  box-shadow: 0 -1px 0 var(--line-2);
  transform: translateY(120%); transition: transform .4s;
}
.sticky.on { transform: none; }
.sticky a { flex: 1; text-align: center; padding: 13px 6px; text-decoration: none;
            font-size: 13.5px; letter-spacing: .06em; border-radius: 999px; }
.sticky .s1 { background: var(--sage); color: var(--paper); }
.sticky .s2 { background: transparent; color: var(--sage-d); border: 1px solid var(--sage); }
@media (min-width: 940px) { .sticky { display: none; } }

/* ═══════════ 動き ═══════════ */
.rise { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  .btn:hover, .ptile:hover, .pcard:hover { transform: none; }
  .pcard:hover .pcard-ph img { transform: none; }
  html { scroll-behavior: auto; }
}
