/* =====================================================
   RESET & VARIABLES
===================================================== */
:root {
  --color-MD2026-navy:      #1E1E7A;
  --color-MD2026-pinkhover: #e37090;
  --color-MD2026-pink:      #FA92B0;
  --color-MD2026-blue:      #CCDDEE;
  --color-MD2026-bg-pale:   #FFE7E7;
  --color-MD2026-bg:        #FFF2F2;
  --mincho: 'Shippori Mincho', serif;
  --gothic: 'Zen Kaku Gothic New', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--gothic); background: #fff; color: #333; font-size: 14px; line-height: 1.7; }
html { scroll-behavior: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =====================================================
   FADE IN
===================================================== */
.fi { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fi.on { opacity: 1; transform: translateY(0); }

/* =====================================================
   NOTICE BANNER
===================================================== */
.notice {
  background: #CCDDEE;
  color: #1e1e7a;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: .05em;
  line-height: 1.6;
}
.notice a { color: var(--color-MD2026-navy); text-decoration: underline; font-weight: 700; }

/* =====================================================
   HERO
   PC : 上段=2カラム（ロゴ左 / 花右） / 下段=1カラム（タグライン＋バナー）
   SP : 縦並び（eyebrow → ロゴ → 花 → タグライン → バナー）
===================================================== */
.hero {
  background-image: url('images/01_main/main_bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 660px;
  margin: 0 auto;
  padding: 52px 40px;
}

/* ── 上段：2カラム（ロゴ ／ 花） ── */
.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 16px;
  margin-bottom: 32px;
}

.hero-logo-col {
  display: flex;
  flex-direction: column;
}
/* MACOCCA WITH RAKUTEN：白背景・中央揃え */
.hero-eyebrow {
  font-size: 11px; letter-spacing: .22em;
  color: var(--color-MD2026-navy);
  margin-bottom: 14px;
  display: inline-block;
  background: #fff;
  padding: 4px 12px;
  align-self: center;
}
.hero-logo-img img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-flower-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-flower-col img {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
}

/* ── 下段：縦並び（タグライン → バナー）中央揃え ── */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero-tagline {
  font-family: var(--mincho);
  font-size: clamp(13px, 1.4vw, 16px);
  color: #555;
  line-height: 1.8;
  white-space: nowrap;
  text-align: center;
}

/* バナー：画像サムネイル＋テキスト */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
.hero-banner {
  display: inline-flex;
  align-items: center;
  background: var(--color-MD2026-pink);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 380px;
  cursor: pointer;
  animation: heroFloat 3s ease-in-out infinite;
}
.hero-banner-img {
  width: 72px; height: 72px;
  background: #ddd;
  flex-shrink: 0;
}
.hero-banner-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-banner-text {
  padding: 10px 24px;
  color: #fff;
  font-size: 13px; line-height: 1.8;
  letter-spacing: .04em;
  text-align: center;
  flex: 1;
}

/* ── SP ── */
@media (max-width: 768px) {
  .hero {
    background-image: url('images/01_main/mainSP_bg.png');
    background-size: cover;
    background-position: center top;
  }
  .hero-inner {
    padding: 36px 20px 40px;
    text-align: center;
  }
  .hero-top {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
  .hero-eyebrow { align-self: center; }
  .hero-logo-col { align-items: center; }
  .hero-logo-img img { max-width: 220px; }
  .hero-flower-col img { max-width: 160px; }
  .hero-bottom {
    align-items: center;
    gap: 16px;
  }
  .hero-tagline { white-space: normal; }
  .hero-banner { min-width: unset; width: 100%; max-width: 300px; }
  .hero-banner-text { font-size: 12px; padding: 10px 16px; }
}

/* =====================================================
   ANCHOR NAV
===================================================== */
.anav {
  background: #f0f6fd;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid #CCDDEE;
  border-bottom: 1px solid #CCDDEE;
}
.anav a {
  font-size: 12px;
  padding: 12px 18px;
  color: #555;
  border-right: 1px solid #CCDDEE;
  text-align: center;
  line-height: 1.5;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anav a:first-child { border-left: 1px solid #CCDDEE; }
.anav a:hover { background: #CCDDEE; color: var(--color-MD2026-navy); font-weight: 500; }

/* SP: アンカーナビ 2列 */
@media (max-width: 768px) {
  .anav { display: grid; grid-template-columns: 1fr 1fr; }
  .anav a {
    border: none;
    border-bottom: 1px solid #CCDDEE;
    border-right: 1px solid #CCDDEE;
    padding: 12px 10px;
  }
  .anav a:nth-child(odd)  { border-left: none; }
  .anav a:nth-child(even) { border-right: none; }
}

/* =====================================================
   COMMON PARTS
===================================================== */
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head .lbl {
  display: inline-block;
  font-size: 10px; letter-spacing: .25em;
  color: var(--color-MD2026-pink);
  border-top: 1px solid var(--color-MD2026-pink);
  border-bottom: 1px solid var(--color-MD2026-pink);
  padding: 4px 16px; margin-bottom: 14px;
}
.sec-head h2 {
  font-family: var(--mincho);
  font-size: clamp(19px, 3vw, 26px);
  color: var(--color-MD2026-navy); line-height: 1.5; margin-bottom: 10px;
}
.sec-head p { font-size: 13px; line-height: 1.9; }

.btn {
  display: inline-block;
  font-size: 13px; letter-spacing: .08em;
  padding: 10px 32px;
  border: 1.5px solid var(--color-MD2026-pink);
  color: var(--color-MD2026-pink); background: #fff;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn:hover { background: var(--color-MD2026-pink); color: #fff; }
.btn-fill  { background: var(--color-MD2026-pink); color: #fff; }
.btn-fill:hover { background: var(--color-MD2026-pinkhover); border-color: var(--color-MD2026-pinkhover); }
.btn-navy  { border-color: var(--color-MD2026-navy); color: var(--color-MD2026-navy); }
.btn-navy:hover { background: var(--color-MD2026-navy); color: #fff; }

/* =====================================================
   INTRO TEXT SECTION
===================================================== */
.intro {
  background: linear-gradient(155deg, #fff4f4 0%, #ffffff 100%);
  padding: 72px 20px;
}
.intro-inner { max-width: 780px; margin: 0 auto; }

.intro-quotes {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-bottom: 36px;
}
.iq {
  font-family: var(--mincho);
  font-size: clamp(13px, 1.6vw, 15px);
  color: var(--color-MD2026-navy);
  background: var(--color-MD2026-bg);
  border-left: 3px solid var(--color-MD2026-pink);
  padding: 8px 16px;
}

@media (max-width: 768px) {
  .intro-quotes { flex-direction: column; align-items: stretch; gap: 8px; }
  .iq { text-align: left; }
}

.intro-rule { width: 44px; height: 2px; background: var(--color-MD2026-pink); margin: 0 auto 28px; }

.intro-body {
  font-family: var(--mincho);
  font-size: 13px;
  color: #444; line-height: 2.6;
  text-align: center;
}
.intro-body strong { color: var(--color-MD2026-navy); }
.intro-body em {
  font-style: normal;
  color: var(--color-MD2026-pinkhover);
  border-bottom: 1px solid var(--color-MD2026-pink);
  padding-bottom: 1px;
}
/* 最終文：強調・ピンク */
.intro-highlight {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 19px;
  color: #e37090;
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .intro { padding: 48px 20px; }
  .intro-body { text-align: left; font-size: 13px; line-height: 2.2; }
}

/* =====================================================
   ORIGINAL GIFT
===================================================== */
.gift-sec { background: var(--color-MD2026-bg); padding: 64px 20px; }
.gift-inner { max-width: 960px; margin: 0 auto; }

/* 全カード共通：PC=1カラム全幅（画像左・テキスト右） / SP=縦積み */
.gift-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #f5c0cf;
  background: #fff;
  transition: box-shadow .25s;
  margin-bottom: 20px;
}
.gift-single:last-child { margin-bottom: 0; }
.gift-single:hover { box-shadow: 0 8px 28px rgba(250,146,176,.18); }

.gift-single-img {
  background: linear-gradient(155deg, var(--color-MD2026-bg-pale) 0%, var(--color-MD2026-blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 12px;
  min-height: 300px;
  overflow: hidden;
}
.gift-single-body {
  padding: 40px 40px;
  display: flex; flex-direction: column; justify-content: center;
}

@media (max-width: 768px) {
  .gift-single { grid-template-columns: 1fr; }
  .gift-single-img { min-height: 220px; order: 1; }
  .gift-single-body { order: 2; padding: 22px 18px 26px; }
}

/* =====================================================
   GIFT SERIES（3枚目：シリーズ3柄レイアウト）
===================================================== */
.gift-series {
  border: 1px solid #f5c0cf;
  background: #fff;
  transition: box-shadow .25s;
}
.gift-series:hover { box-shadow: 0 8px 28px rgba(250,146,176,.18); }

/* 上部：メイン画像（全幅） */
.gift-series-img {
  background: linear-gradient(155deg, var(--color-MD2026-bg-pale) 0%, var(--color-MD2026-blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 12px;
  min-height: 280px;
  width: 100%;
  position: relative; overflow: hidden;
}
.gift-series-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* 中部：商品情報テキスト */
.gift-series-body {
  padding: 28px 36px 24px;
  border-bottom: 1px solid #f5c0cf;
}
.gift-series-rec {
  font-family: var(--mincho);
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
  margin-top: 8px;
}

/* 下部：3柄バリアント */
.gift-series-variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.gift-variant {
  padding: 20px 16px 24px;
  border-right: 1px solid #f5c0cf;
  display: flex;
  flex-direction: column;
}
.gift-variant:last-child { border-right: none; }

.gift-variant-img {
  background: linear-gradient(135deg, var(--color-MD2026-bg-pale) 0%, var(--color-MD2026-blue) 100%);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 11px;
  margin-bottom: 12px;
  position: relative; overflow: hidden;
}
.gift-variant-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.gift-variant-name {
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--color-MD2026-navy);
  text-align: center;
  margin-bottom: 14px;
  flex: 1;
}

/* PC：メイン画像非表示 */
@media (min-width: 769px) {
  .gift-series-img { display: block; min-height: 0; }
  .gift-series-img img { height: auto; }
}
/* SP */
@media (max-width: 768px) {
  .gift-series-body { padding: 20px 18px 18px; }

  /* バリアント：1列縦積み → 各カードを横並び（画像左・テキスト+ボタン右） */
  .gift-series-variants { grid-template-columns: 1fr; }
  .gift-variant {
    display: grid;
    grid-template-columns: min(150px, 38vw) 1fr;
    grid-template-rows: auto auto;
    gap: 0 14px;
    align-items: center;
    padding: 14px 16px;
    border-right: none;
    border-bottom: 1px solid #f5c0cf;
  }
  .gift-variant:last-child { border-bottom: none; }
  .gift-variant-img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: min(150px, 38vw);
    height: min(150px, 38vw);
    aspect-ratio: 1/1;
    margin-bottom: 0;
  }
  .gift-variant-name {
    grid-column: 2;
    grid-row: 1;
    font-size: 13px;
    align-self: flex-end;
    padding-bottom: 4px;
  }
  .gift-variant .gc-btn-wrap {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px;
    text-align: center;
    align-self: flex-start;
  }
  .gift-variant .btn { font-size: 12px; }
}

/* カード共通テキスト */
/* PC限定改行 / SP限定改行 */
.pc-br { display: inline; }
.sp-br { display: none; }
@media (max-width: 768px) {
  .pc-br { display: none; }
  .sp-br { display: inline; }
}

/* バッジ横並びラッパー */
.gc-badges {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.gc-badge {
  display: inline-block;
  background: var(--color-MD2026-pink); color: #fff;
  font-size: 10px; letter-spacing: .08em;
  padding: 3px 12px;
  white-space: nowrap;
}
/* 単体バッジ（ラッパーなし・カード1） */
.gift-single-body > .gc-badge,
.gift-series-body > .gc-badge {
  margin-bottom: 10px;
  align-self: flex-start;
}
/* ソーシャルギフトバッジ */
.gc-badge--social {
  background: #CCDDEE;
  color: var(--color-MD2026-navy);
}
.gc-no { font-size: 10px; letter-spacing: .2em; color: var(--color-MD2026-pink); margin-bottom: 6px; }
.gc-name {
  font-family: var(--mincho);
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--color-MD2026-navy); line-height: 1.5; margin-bottom: 12px;
}
.gc-desc { font-size: 13px; color: #777; line-height: 1.9; margin-bottom: 18px; flex: 1; }
.gc-price {
  font-family: var(--mincho);
  font-size: clamp(19px, 2.2vw, 23px);
  color: var(--color-MD2026-navy); font-weight: 700; margin-bottom: 16px;
}
.gc-price small { font-size: 12px; font-weight: 400; color: #888; }

/* 早割価格バナー（sec-head 内） */
.gift-sale-banner {
  display: inline-block;
  background: #fff;
  border: 1px solid #f5c0cf;
  border-radius: 3px;
  padding: 6px 16px;
  margin-top: 18px;
}
.gift-sale-main {
  font-size: 12px;
  font-weight: 700;
  color: #C1253B;
  letter-spacing: .04em;
}
.gift-sale-date { display: none; }

/* 価格2段表示 */
.gc-price-wrap { margin-bottom: 16px; }
.gc-price-before {
  font-family: var(--mincho);
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 2px;
}
.gc-price-wrap .gc-price { margin-bottom: 4px; }
.gc-sale-note {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #C1253B;
  letter-spacing: .04em;
  background: #fff0f3;
  border: 1px solid #f5c0cf;
  border-radius: 3px;
  padding: 3px 8px;
  margin-top: 4px;
}

/* 詳細を見るボタン：中央揃え */
.gc-btn-wrap { text-align: center; margin-top: 4px; }

/* =====================================================
   RECOMMEND — おすすめラインナップ 大見出し
===================================================== */
.recommend-head {
  text-align: center;
  padding: 56px 20px 0;
  background: #fff;
}
.recommend-head .lbl {
  display: inline-block;
  font-size: 10px; letter-spacing: .25em;
  color: var(--color-MD2026-pink);
  border-top: 1px solid var(--color-MD2026-pink);
  border-bottom: 1px solid var(--color-MD2026-pink);
  padding: 4px 16px; margin-bottom: 14px;
}
.recommend-head h2 {
  font-family: var(--mincho);
  font-size: clamp(19px, 3vw, 26px);
  color: var(--color-MD2026-navy); line-height: 1.5; margin-bottom: 0;
}

/* =====================================================
   RECOMMEND — サブセクション共通
===================================================== */
.sub-sec { padding: 56px 20px; }
.sub-sec:nth-child(odd)  { background: #fff; }
.sub-sec:nth-child(even) { background: var(--color-MD2026-bg); }

/* 折り畳み傘セクションのみグラデーション背景 */
#parasol { background: linear-gradient(155deg, var(--color-MD2026-bg-pale) 0%, var(--color-MD2026-blue) 100%); }
.sub-inner { max-width: 960px; margin: 0 auto; }

/* カテゴリヘッダ */
.cat-hd {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 2px solid var(--color-MD2026-bg-pale);
}
.cat-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-MD2026-pink); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cat-en { font-size: 10px; letter-spacing: .2em; color: var(--color-MD2026-pink); display: block; margin-bottom: 2px; }
.cat-ja { font-family: var(--mincho); font-size: 19px; color: var(--color-MD2026-navy); }

/* 商品グリッド */
.p-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .p-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .p-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ストール・折り畳み：PC 2列 */
@media (min-width: 769px) {
  .p-grid--2col { grid-template-columns: repeat(2, 1fr); }
}

.p-card {
  background: #fff; border: 1px solid #eee;
  transition: box-shadow .2s;
  display: flex; flex-direction: column;
}
.p-card:hover { box-shadow: 0 4px 16px rgba(250,146,176,.14); }

.p-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--color-MD2026-bg-pale) 0%, var(--color-MD2026-blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 11px;
  position: relative; overflow: hidden;
}
.p-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.p-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--color-MD2026-navy); color: #fff;
  font-size: 9px; padding: 2px 7px;
  letter-spacing: .06em;
}
.p-body { padding: 11px 13px 15px; flex: 1; display: flex; flex-direction: column; }
.p-name { font-family: var(--mincho); font-size: 13px; color: var(--color-MD2026-navy); line-height: 1.5; margin-bottom: 4px; }
.p-sub  { font-size: 11px; color: #999; margin-bottom: 9px; flex: 1; }
.p-price { font-size: 15px; font-weight: 700; color: var(--color-MD2026-navy); margin-bottom: 9px; }
.p-price small { font-size: 10px; font-weight: 400; color: #888; }

.more-wrap { text-align: center; margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* 詳細を見るボタン：中央揃え */
.p-body .btn { align-self: center; }

@media (max-width: 768px) {
  .sub-sec { padding: 40px 16px; }
  .p-name { font-size: 12px; }
  .p-price { font-size: 13px; }
  .btn { padding: 8px 16px; font-size: 12px; }
}

/* =====================================================
   GIFT WRAPPING
===================================================== */
.wrap-sec { background: var(--color-MD2026-bg-pale); padding: 64px 20px; }
.wrap-inner { max-width: 960px; margin: 0 auto; }
.wrap-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 38px;
}
@media (max-width: 768px) { .wrap-grid { grid-template-columns: 1fr; } }

.wrap-card {
  background: #fff; border: 1px solid #f5c0cf;
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: box-shadow .25s;
}
/* wrap-icon は使用停止 → wrap-img に切り替え */
.wrap-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-MD2026-bg-pale) 0%, var(--color-MD2026-blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 11px;
  margin-bottom: 18px;
  position: relative; overflow: hidden;
}
.wrap-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* 詳細を見るボタン：中央揃え */
.wrap-card .btn { align-self: center; margin-top: auto; }
.wrap-ttl {
  font-family: var(--mincho); font-size: 17px; color: var(--color-MD2026-navy);
  margin-bottom: 12px; padding-bottom: 11px;
  border-bottom: 1px solid #f5c0cf;
}
.wrap-desc { font-size: 13px; color: #555; line-height: 1.9; margin-bottom: 14px; }

.opt-list { list-style: none; margin-bottom: 18px; }
.opt-list li {
  display: flex; justify-content: space-between;
  font-size: 12px; color: #555;
  padding: 6px 0; border-bottom: 1px dashed #eee;
}
.opt-list li:last-child { border-bottom: none; }
.opt-price { color: var(--color-MD2026-navy); font-weight: 500; }

.wrap-price-lbl { font-size: 11px; color: #999; margin-bottom: 3px; }
.wrap-price {
  font-family: var(--mincho); font-size: 24px;
  color: var(--color-MD2026-navy); font-weight: 700; margin-bottom: 18px;
}
.wrap-price small { font-size: 12px; font-weight: 400; }

/* =====================================================
   DEADLINE（注文締切）
===================================================== */
.deadline {
  margin-top: 40px;
  border: 2px solid var(--color-MD2026-pink);
  background: #fff;
}

.deadline-head {
  background: var(--color-MD2026-pink);
  padding: 18px 24px;
  text-align: center;
}
.deadline-head h3 {
  font-family: var(--mincho);
  font-size: clamp(16px, 2vw, 22px);
  color: #fff;
  line-height: 1.6;
  letter-spacing: .06em;
}

.deadline-body {
  padding: 0 28px 24px;
}
.deadline-intro {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  padding: 16px 0 8px;
  text-align: center;
}
.deadline-alert {
  background: #fffb8a;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-align: center;
  padding: 8px;
  margin-bottom: 4px;
  letter-spacing: .03em;
}

.deadline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed #ddd;
  flex-wrap: wrap;
}
.deadline-area {
  font-family: var(--mincho);
  font-size: clamp(13px, 1.5vw, 16px);
  color: #333;
  letter-spacing: .04em;
}
.deadline-date {
  font-family: var(--mincho);
  font-size: clamp(14px, 1.6vw, 17px);
  color: #C1253B;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.deadline-notes {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deadline-notes li {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  padding-left: 1em;
  text-indent: -1em;
}

@media (max-width: 768px) {
  .deadline-body { padding: 0 16px 20px; }
  .deadline-row { gap: 8px; justify-content: flex-start; }
  .deadline-area {
    width: 100%;}
}

/* =====================================================
   CUSTOMER VOICE
===================================================== */
.voice-sec { background: #fff; padding: 64px 20px; }
.voice-inner { max-width: 960px; margin: 0 auto; }
.voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 38px;
}
@media (max-width: 768px) { .voice-grid { grid-template-columns: 1fr; } }

.v-card {
  background: var(--color-MD2026-bg); border: 1px solid #f5c0cf;
  padding: 22px 20px 26px; position: relative;
}
.v-card::before {
  content: '\201C';
  font-family: Georgia, serif; font-size: 60px;
  color: var(--color-MD2026-pink); opacity: .22;
  position: absolute; top: 4px; left: 12px; line-height: 1;
}
.v-stars { color: var(--color-MD2026-pink); font-size: 12px; margin-bottom: 9px; letter-spacing: 2px; }
.v-text  { font-family: var(--mincho); font-size: 13px; color: #444; line-height: 2; margin-bottom: 14px; position: relative; z-index: 1; }
.v-meta  { font-size: 11px; color: #aaa; }
.v-meta strong { color: var(--color-MD2026-navy); font-size: 12px; }

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--color-MD2026-bg-pale);
}

/* MV縮小版 */
.footer-mv {
  background-image: url('images/01_main/main_bg.png');
  background-size: cover;
  background-position: center;
  padding: 32px 40px;
}
.footer-mv-inner {
  max-width: 400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}
.footer-mv-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-eyebrow {
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--color-MD2026-navy);
  margin-bottom: 10px;
  display: inline-block;
  background: #fff;
  padding: 4px 12px;
  align-self: center;
}
.footer-mv-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}
.footer-mv-flower {
  display: flex;
  justify-content: center;
}
.footer-mv-flower img {
  max-width: 140px;
  width: 100%;
  height: auto;
  display: block;
}

/* ページ内リンクナビ */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid #f5c0cf;
  border-bottom: 1px solid #f5c0cf;
  background: #fff;
}
.footer-nav a {
  font-size: 12px;
  padding: 13px 20px;
  color: #555;
  border-right: 1px solid #f5c0cf;
  transition: background .2s, color .2s;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav a:first-child { border-left: 1px solid #f5c0cf; }
.footer-nav a:hover { background: var(--color-MD2026-pink); color: #fff; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  padding: 16px 20px 8px;
}
.wrap-price-free {
  color: #C1253B;
  font-weight: 700;
}

/* ムーミンカード 無料バッジ */
.wrap-card { position: relative; }
.wrap-card:hover { box-shadow: 0 8px 28px rgba(250,146,176,.25); }
.wrap-free-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-MD2026-pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: .02em;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(250,146,176,.5);
}

.footer-links a {
  font-size: 11px;
  color: #888;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-links a:hover { color: var(--color-MD2026-navy); }

.f-copy {
  text-align: center;
  font-size: 11px;
  color: #888;
  padding: 18px 20px;
}

/* SP */
@media (max-width: 768px) {
  .footer-mv { padding: 24px 20px; }
  .footer-mv-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .footer-mv-logo { align-items: center; }
  .footer-mv-logo img { max-width: 160px; }
  .footer-mv-flower img { max-width: 120px; }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-nav a {
    border: none;
    border-bottom: 1px solid #f5c0cf;
    border-right: 1px solid #f5c0cf;
    padding: 12px 10px;
    text-align: center;
  }
  .footer-nav a:nth-child(odd)  { border-left: none; }
  .footer-nav a:nth-child(even) { border-right: none; }
}

/* =====================================================
   カード全体リンク化（Stretched Link パターン）
   ・カードに position: relative
   ・ボタンの ::after を position: absolute; inset: 0 で全面に展開
   ・他の要素は z-index: 1 で ::after の上に保つ
===================================================== */

/* =====================================================
   カード全体リンク化（Stretched Link パターン）
   ::after を z-index: 1 で最前面に出し、画像含め全体をカバー
===================================================== */

/* ── 共通ミックスイン的スタイル ── */
.p-card,
.gift-single,
.gift-variant,
.wrap-card {
  position: relative;
}

/* ── 商品カード（おすすめラインナップ） ── */
.p-card .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

/* ── オリジナルギフト カード1・2 ── */
.gift-single .gc-btn-wrap .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

/* ── オリジナルギフト カード3（シリーズバリアント） ── */
.gift-variant .gc-btn-wrap .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

/* ── ギフトサービスカード ── */
.wrap-card .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

/* =====================================================
   カードhover：画像ズーム
===================================================== */
.p-img img,
.gift-single-img img,
.gift-variant-img img,
.wrap-img img {
  transition: transform 0.4s ease;
}
.p-card:hover .p-img img,
.gift-single:hover .gift-single-img img,
.gift-variant:hover .gift-variant-img img,
.wrap-card:hover .wrap-img img {
  transform: scale(1.06);
}
