@charset "UTF-8";
/* =================================================================
   株式会社ベル  ギフトブランディングサイト
   コンセプト:温かみ × 高級感(贈り物の専門店)
   ベース=生成り(アイボリー) / アクセント=ブラス(金) + 深いブラウン
   見出し=明朝(Shippori Mincho) + 英字=Cormorant Garamond
   ================================================================= */

:root {
  --bg: #fbf8f2;          /* 生成りアイボリー */
  --bg-soft: #f4ece0;     /* 淡いベージュ */
  --bg-warm: #f7f1e7;
  --bg-deep: #2b2521;     /* 深いブラウン(濃色セクション) */
  --bg-deep2: #1f1b18;

  --ink: #3a322b;         /* 文字(温かいダークブラウン) */
  --ink-soft: #6e6458;
  --ink-mute: #9a9085;

  --gold: #b08d57;        /* ブラス/ゴールド(主アクセント) */
  --gold-dark: #927339;
  --gold-soft: #e7d9c1;
  --line: #e6dccd;        /* 罫線(ベージュ) */
  --line-soft: #efe7da;
  --cream-line: rgba(255,255,255,.18);

  --sh-sm: 0 4px 18px rgba(80,60,30,.07);
  --sh-md: 0 16px 40px rgba(80,60,30,.12);
  --sh-lg: 0 30px 64px rgba(60,45,25,.18);

  --wrap: 1180px;
  --wrap-narrow: 900px;
  --r: 4px;              /* 高級感のため角丸は控えめ */
  --r-lg: 8px;
  --pill: 999px;
  --header-h: 92px;

  --f-jp: "Noto Sans JP", system-ui, sans-serif;
  --f-min: "Shippori Mincho", "Noto Serif JP", serif;   /* 明朝見出し */
  --f-en: "Cormorant Garamond", serif;                    /* 英字アクセント */
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  margin: 0; padding-top: var(--header-h);
  font-family: var(--f-jp); color: var(--ink); background: var(--bg);
  line-height: 1.95; font-size: 16px; letter-spacing: .04em;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; }

.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 48px, var(--wrap-narrow)); margin-inline: auto; }
.sp-only { display: none; }
.sp-hide { display: inline; }
.section { padding: clamp(70px, 9vw, 130px) 0; }
.bg-soft { background: var(--bg-soft); }
.bg-warm { background: var(--bg-warm); }
.bg-deep { background: var(--bg-deep); color: #efe7da; }

/* ---------- セクション見出し ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-en); font-weight: 600;
  font-size: 18px; letter-spacing: .26em; color: var(--gold); text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .65; }
.eyebrow.is-light { color: var(--gold-soft); }

/* 数字はライニング数字に統一(Cormorant の旧スタイル数字が崩れて見える対策) */
.header-tel .num, .news-date, .split-photo .badge .y, .side-card .tel-num,
.footer-contact .tel, .faq-q .q, .hero-num {
  font-feature-settings: "lnum" 1, "tnum" 1; font-variant-numeric: lining-nums;
}

.head { margin-bottom: clamp(40px, 5vw, 60px); }
.head.center { text-align: center; }
.head .eyebrow { margin-bottom: 16px; }
.title {
  font-family: var(--f-min); font-weight: 600;
  font-size: clamp(26px, 3.8vw, 40px); line-height: 1.55; letter-spacing: .06em; color: var(--ink);
}
.bg-deep .title { color: #fff; }
.title .gold { color: var(--gold-dark); }
.bg-deep .title .gold { color: var(--gold); }
.lead { margin-top: 22px; color: var(--ink-soft); font-size: clamp(14.5px, 1.9vw, 16px); line-height: 2.1; }
.head.center .lead { max-width: 680px; margin-inline: auto; }
.bg-deep .lead { color: #d8cdbb; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 60px; padding: 0 36px;
  font-family: var(--f-min); font-weight: 500; font-size: 15.5px; letter-spacing: .12em;
  transition: background .3s, color .3s, border-color .3s, transform .3s; white-space: nowrap;
}
.btn .ico { width: 17px; height: 17px; flex: none; }
.btn .ico-arrow { transition: transform .3s; }
.btn:hover .ico-arrow { transform: translateX(5px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #241e19; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { background: var(--bg-soft); }
.btn-ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row .btn { flex: 1 1 0; min-width: 220px; }
.btn-row.center { justify-content: center; }

/* =================================================================
   ヘッダー
   ================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251,248,242,.94); border-bottom: 1px solid var(--line-soft);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--f-en); font-weight: 600; font-size: 30px; letter-spacing: .14em; color: var(--ink); }
.brand-name .dot { color: var(--gold); }
.brand-sub { font-family: var(--f-min); font-size: 11px; letter-spacing: .3em; color: var(--ink-soft); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 0; }
.nav > a { position: relative; padding: 10px 13px; font-family: var(--f-min); font-size: 14.5px; letter-spacing: .04em; color: var(--ink); white-space: nowrap; transition: color .25s; }
.nav > a::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .3s; }
.nav > a:hover { color: var(--gold-dark); }
.nav > a:hover::after, .nav > a.is-current::after { transform: scaleX(1); }
.nav > a.is-current { color: var(--gold-dark); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-tel { text-align: right; line-height: 1.2; }
.header-tel .lbl { font-size: 10px; color: var(--ink-soft); letter-spacing: .14em; }
.header-tel .num { font-family: var(--f-en); font-weight: 600; font-size: 22px; color: var(--ink); letter-spacing: .04em; }
.header-cta .btn { height: 46px; padding: 0 24px; font-size: 13.5px; }

.nav-toggle { display: none; width: 46px; height: 46px; position: relative; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 30px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-cta { display: none; }

/* =================================================================
   ヒーロー
   ================================================================= */
.hero { position: relative; overflow: hidden; height: clamp(560px, 84vh, 780px); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide-img { position: absolute; inset: 0; }
.hero-slide-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s ease; }
.hero-slide.is-active .hero-slide-img img { transform: scale(1); }
.hero-slide-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(33,27,24,.66) 0%, rgba(33,27,24,.34) 46%, rgba(33,27,24,.1) 100%); }
.hero-inner { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }
.hero-copy { max-width: 640px; color: #fff; }
.hero-copy .eyebrow { color: var(--gold-soft); }
.hero h1 { font-family: var(--f-min); font-weight: 600; font-size: clamp(29px, 4.6vw, 54px); line-height: 1.55; letter-spacing: .08em; margin-top: 18px; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-lead { margin-top: 24px; font-size: clamp(14.5px, 2vw, 16.5px); line-height: 2.1; color: #f0e8db; text-shadow: 0 1px 12px rgba(0,0,0,.45); max-width: 520px; }
/* スライド切替時のコピーのふわっと表示 */
.hero-slide .hero-copy > * { opacity: 0; transform: translateY(16px); }
.hero-slide.is-active .hero-copy > * { opacity: 1; transform: none; transition: opacity .9s ease .4s, transform .9s ease .4s; }
/* ボタン:2つ同サイズ */
.hero-actions { margin-top: 36px; display: flex; gap: 16px; max-width: 500px; }
.hero-actions .btn { flex: 1 1 0; min-width: 0; padding: 0 18px; }
/* ドット */
.hero-dots { position: absolute; left: 0; right: 0; bottom: 30px; z-index: 3; display: flex; justify-content: center; gap: 14px; }
.hero-dots button { width: 36px; height: 2px; background: rgba(255,255,255,.4); transition: background .3s; }
.hero-dots button.is-active { background: var(--gold-soft); }

/* =================================================================
   ブランドメッセージ(GREETING)
   ================================================================= */
.message { text-align: center; }
.message .eyebrow { margin-bottom: 22px; }
.message h2 { font-family: var(--f-min); font-weight: 500; font-size: clamp(22px, 3.4vw, 34px); line-height: 2; letter-spacing: .1em; color: var(--ink); }
.message h2 .gold { color: var(--gold-dark); }
.message p { margin: 30px auto 0; max-width: 720px; color: var(--ink-soft); font-size: 15.5px; line-height: 2.3; }
.message .sign { margin-top: 30px; font-family: var(--f-min); color: var(--ink); letter-spacing: .1em; }

/* =================================================================
   シーン別ギフト(カード)
   ================================================================= */
.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.scene-card { position: relative; display: block; overflow: hidden; border-radius: var(--r); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .4s, box-shadow .4s; }
.scene-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.scene-img { aspect-ratio: 4/3.2; overflow: hidden; }
.scene-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.scene-card:hover .scene-img img { transform: scale(1.06); }
.scene-body { padding: 24px 26px 28px; text-align: center; }
.scene-body .en { font-family: var(--f-en); font-size: 14px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; }
.scene-body h3 { font-family: var(--f-min); font-weight: 600; font-size: 20px; letter-spacing: .08em; margin: 6px 0 0; }
.scene-body .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12.5px; letter-spacing: .12em; color: var(--ink-soft); }
.scene-body .more svg { width: 16px; height: 16px; color: var(--gold); transition: transform .3s; }
.scene-card:hover .scene-body .more svg { transform: translateX(4px); }

/* =================================================================
   取扱商品ジャンル
   ================================================================= */
.genre-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.genre-card { text-align: center; }
.genre-img { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--r); background: var(--bg-soft); box-shadow: var(--sh-sm); }
.genre-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.genre-card:hover .genre-img img { transform: scale(1.05); }
.genre-card .nm { font-family: var(--f-min); font-weight: 600; font-size: 16px; letter-spacing: .08em; margin-top: 16px; }
.genre-card .en { font-family: var(--f-en); font-size: 12.5px; letter-spacing: .18em; color: var(--gold); }

/* =================================================================
   画像＋テキスト(交互/ブランドストーリー・こだわり)
   ================================================================= */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split.reverse .split-text { order: 2; }
.split-photo { position: relative; }
.split-photo .main { overflow: hidden; border-radius: var(--r); aspect-ratio: 4/3.2; box-shadow: var(--sh-md); background: var(--bg-soft); }
.split-photo .main img { width: 100%; height: 100%; object-fit: cover; }
.split-photo .badge { position: absolute; right: -22px; bottom: -22px; width: 128px; height: 128px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; text-align: center; font-family: var(--f-min); line-height: 1.5; box-shadow: var(--sh-md); }
.split-photo .badge .y { font-family: var(--f-min); font-size: 28px; font-weight: 600; letter-spacing: .04em; display: block; }
.split-text .num { font-family: var(--f-en); font-size: 16px; letter-spacing: .2em; color: var(--gold); }
.split-text h2 { font-family: var(--f-min); font-weight: 600; font-size: clamp(22px, 3vw, 30px); letter-spacing: .08em; line-height: 1.7; margin: 12px 0 0; }
.split-text .lead { margin-top: 18px; }

/* こだわり(3点・番号で上品に) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 5vw, 64px); }
.feature { text-align: center; }
.feature .no { display: block; font-family: var(--f-en); font-weight: 600; font-size: 48px; line-height: 1; color: var(--gold); font-variant-numeric: lining-nums; }
.feature .no::after { content: ""; display: block; width: 34px; height: 1px; background: var(--gold); opacity: .6; margin: 18px auto 22px; }
.feature .en { font-family: var(--f-en); font-size: 13px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.feature h3 { font-family: var(--f-min); font-weight: 600; font-size: 20px; letter-spacing: .06em; margin: 4px 0 16px; }
.feature p { font-size: 14px; color: var(--ink-soft); line-height: 2.1; }

/* ベルポイントカード/特典 */
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.perk { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 40px 32px; text-align: center; box-shadow: var(--sh-sm); }
.perk-no { display: block; font-family: var(--f-en); font-weight: 600; font-size: 32px; color: var(--gold); font-variant-numeric: lining-nums; }
.perk-no::after { content: ""; display: block; width: 30px; height: 1px; background: var(--gold); opacity: .6; margin: 14px auto 18px; }
.perk h3 { font-family: var(--f-min); font-weight: 600; font-size: 19px; letter-spacing: .05em; margin-bottom: 14px; }
.perk p { font-size: 13.5px; color: var(--ink-soft); line-height: 2.05; text-align: left; }

/* =================================================================
   ポイントカード/帯バナー
   ================================================================= */
.band { position: relative; overflow: hidden; }
.band-bg { position: absolute; inset: 0; z-index: 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(31,27,24,.9), rgba(43,37,33,.78)); }
.band-inner { position: relative; z-index: 1; text-align: center; color: #fff; }

/* =================================================================
   お知らせ
   ================================================================= */
.news { display: flex; flex-direction: column; }
.news-item { display: flex; align-items: center; gap: 26px; padding: 24px 6px; border-bottom: 1px solid var(--line); transition: color .25s; }
.news-item:first-child { border-top: 1px solid var(--line); }
.news-item:hover { color: var(--gold-dark); }
.news-meta { display: flex; align-items: center; gap: 18px; flex: none; }
.news-date { font-family: var(--f-en); font-size: 16px; letter-spacing: .04em; color: var(--ink-soft); width: 96px; }
.news-cat { font-size: 11.5px; letter-spacing: .08em; color: var(--gold-dark); border: 1px solid var(--gold-soft); padding: 4px 14px; width: 86px; text-align: center; }
.news-cat.is-important { color: #fff; background: var(--gold); border-color: var(--gold); }
.news-ttl { font-size: 15px; flex: 1; letter-spacing: .04em; }
.news-item .chev { width: 18px; height: 18px; flex: none; color: var(--gold); transition: transform .25s; }
.news-item:hover .chev { transform: translateX(4px); }

/* お知らせ詳細 */
.article { max-width: var(--wrap-narrow); margin-inline: auto; }
.article-head { padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 34px; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.article-title { font-family: var(--f-min); font-weight: 600; font-size: clamp(22px, 3.4vw, 30px); line-height: 1.7; letter-spacing: .06em; }
.article-body p { margin-bottom: 24px; line-height: 2.2; }
.article-body h2 { font-family: var(--f-min); font-size: 21px; margin: 38px 0 16px; letter-spacing: .06em; }
.article-body ul { margin: 0 0 24px; }
.article-body ul li { padding-left: 24px; position: relative; margin-bottom: 10px; }
.article-body ul li::before { content: ""; position: absolute; left: 4px; top: 14px; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

/* =================================================================
   FAQ
   ================================================================= */
.faq-list { max-width: var(--wrap-narrow); margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 18px; padding: 26px 6px; text-align: left; font-family: var(--f-min); font-weight: 600; font-size: 16.5px; letter-spacing: .05em; }
.faq-q .q { font-family: var(--f-en); font-size: 22px; color: var(--gold); flex: none; }
.faq-q .tx { flex: 1; }
.faq-q .tog { width: 26px; height: 26px; flex: none; position: relative; }
.faq-q .tog::before, .faq-q .tog::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold-dark); transition: transform .3s, opacity .3s; }
.faq-q .tog::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .tog::after { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.faq-item.is-open .tog::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 6px 28px 50px; color: var(--ink-soft); font-size: 14.5px; line-height: 2.1; }

/* =================================================================
   会社情報/店舗テーブル
   ================================================================= */
.dl-table { width: 100%; }
.dl-table th, .dl-table td { text-align: left; padding: 20px 8px; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; letter-spacing: .04em; }
.dl-table tr:last-child th, .dl-table tr:last-child td { border-bottom: none; }
.dl-table th { width: 200px; font-family: var(--f-min); font-weight: 600; color: var(--ink); }
.dl-table td { color: var(--ink-soft); line-height: 2; }

.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.store-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.store-photo { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.store-photo img { width: 100%; height: 100%; object-fit: cover; }
.store-body { padding: 30px 30px 34px; }
.store-body h3 { font-family: var(--f-min); font-weight: 600; font-size: 22px; letter-spacing: .08em; }
.store-body .en { font-family: var(--f-en); font-size: 13px; letter-spacing: .18em; color: var(--gold); }
.store-info { margin-top: 18px; }
.store-info div { display: flex; gap: 12px; padding: 8px 0; font-size: 14px; border-top: 1px solid var(--line-soft); }
.store-info dt { color: var(--gold-dark); font-family: var(--f-min); width: 64px; flex: none; }
.store-info dd { margin: 0; color: var(--ink-soft); }
.map-frame { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,44px); }
.map-title { font-family: var(--f-min); font-weight: 600; font-size: 19px; letter-spacing: .08em; margin-bottom: 16px; padding-left: 14px; border-left: 2px solid var(--gold); }
.map-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; letter-spacing: .03em; }
@media (max-width: 820px) { .map-grid { grid-template-columns: 1fr; gap: 36px; } }

/* =================================================================
   フォーム
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(34px,4vw,52px); align-items: start; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px,4vw,48px); box-shadow: var(--sh-sm); }
.field { margin-bottom: 24px; }
.field label { display: block; font-family: var(--f-min); font-weight: 600; font-size: 14.5px; margin-bottom: 9px; letter-spacing: .05em; }
.field .req { font-size: 11px; color: #fff; background: var(--gold); padding: 2px 10px; margin-left: 8px; letter-spacing: .08em; }
.field .opt { font-size: 11px; color: var(--ink-mute); background: var(--bg-soft); padding: 2px 10px; margin-left: 8px; }
.field input, .field select, .field textarea { width: 100%; font-family: inherit; font-size: 15px; color: var(--ink); padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-warm); transition: border-color .2s, background .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { min-height: 150px; resize: vertical; }
.field-hint { font-size: 12.5px; color: var(--ink-mute); margin-top: 7px; }
.form-agree { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 24px; }
.form-agree input { width: 18px; height: 18px; margin-top: 4px; flex: none; accent-color: var(--gold); }
.form-msg { margin-top: 16px; padding: 16px 18px; border-radius: var(--r); font-size: 14px; display: none; }
.form-msg.ok { display: block; background: var(--bg-soft); color: var(--gold-dark); border: 1px solid var(--gold-soft); }
.side-card { background: var(--bg-soft); border-radius: var(--r-lg); padding: 32px; }
.side-card.is-dark { background: var(--bg-deep); color: #efe7da; }
.side-card h3 { font-family: var(--f-min); font-weight: 600; font-size: 18px; letter-spacing: .06em; margin-bottom: 10px; }
.side-card .tel-num { font-family: var(--f-en); font-weight: 600; font-size: 32px; letter-spacing: .04em; }
.side-card .small { font-size: 13.5px; line-height: 2; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }

/* =================================================================
   下層ページヘッダー
   ================================================================= */
.page-hero { position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(31,27,24,.74), rgba(43,37,33,.5)); }
.page-hero .inner { position: relative; z-index: 1; text-align: center; color: #fff; padding: clamp(64px,9vw,120px) 0; }
.page-hero .eyebrow { color: var(--gold-soft); margin-bottom: 14px; }
.page-hero h1 { font-family: var(--f-min); font-weight: 600; font-size: clamp(28px,4.4vw,44px); letter-spacing: .1em; }
.page-hero p { margin-top: 16px; color: #e6dccb; font-size: 14.5px; letter-spacing: .06em; }
/* パンくず:ヘッダー見出しの下・本文の一番上に独立して配置 */
.crumb-bar { border-bottom: 1px solid var(--line); background: var(--bg); }
.crumb { display: flex; gap: 10px; padding: 16px 0; font-size: 12px; letter-spacing: .06em; color: var(--ink-mute); }
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--gold-dark); }
.crumb .sep { opacity: .5; }

/* =================================================================
   フッター
   ================================================================= */
.site-footer { background: var(--bg-deep2); color: #c4b8a6; padding: clamp(56px,7vw,88px) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 46px; border-bottom: 1px solid var(--cream-line); }
.footer-brand .brand-name { font-family: var(--f-en); font-weight: 600; font-size: 32px; letter-spacing: .14em; color: #fff; }
.footer-brand .brand-name .dot { color: var(--gold); }
.footer-brand p { margin-top: 18px; font-size: 13px; line-height: 2; color: #a99c89; }
.footer-col h4 { font-family: var(--f-min); font-weight: 600; color: #fff; font-size: 14px; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 13px; color: #b9ac99; transition: color .2s; letter-spacing: .04em; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact .tel { font-family: var(--f-en); font-weight: 600; font-size: 26px; color: #fff; letter-spacing: .04em; }
.footer-contact .open { font-size: 12.5px; color: #a99c89; margin: 6px 0 18px; }
.footer-sns { display: flex; gap: 12px; }
.footer-sns a { width: 42px; height: 42px; border: 1px solid var(--cream-line); display: grid; place-items: center; color: #c4b8a6; transition: background .25s, color .25s, border-color .25s; }
.footer-sns a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.footer-sns svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; font-size: 12px; color: #8a7e6e; flex-wrap: wrap; letter-spacing: .04em; }
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-note { margin-top: 14px; font-size: 11px; color: #6e6456; }

/* =================================================================
   スマホ固定CTA
   ================================================================= */
.sp-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; grid-template-columns: 1fr 1fr; background: #fff; box-shadow: 0 -4px 20px rgba(80,60,30,.14); transform: translateY(110%); transition: transform .4s; }
.sp-bar.is-visible { transform: translateY(0); }
.sp-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px 6px; font-family: var(--f-min); font-weight: 600; font-size: 14px; color: #fff; letter-spacing: .06em; }
.sp-bar a svg { width: 18px; height: 18px; }
.sp-bar .b-tel { background: var(--ink); }
.sp-bar .b-form { background: var(--gold); }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* =================================================================
   レスポンシブ
   ================================================================= */
@media (max-width: 1040px) {
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-text { order: 0; }
  .split-photo { max-width: 540px; }
  .feature-grid { grid-template-columns: 1fr; gap: 30px; max-width: 460px; margin-inline: auto; }
  .perk-grid { grid-template-columns: 1fr; }
  .store-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* 中間幅:電話番号ブロックを隠してナビの詰まりを防ぐ */
@media (max-width: 1180px) and (min-width: 981px) {
  .header-tel { display: none; }
}

/* ナビをドロワー化 */
@media (max-width: 980px) {
  .header-tel { display: none; }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); padding: 20px 28px 44px; transform: translateX(100%); transition: transform .4s; overflow-y: auto; overscroll-behavior: contain; }
  body.nav-open .nav { transform: translateX(0); }
  /* ドロワー内のメニューリンクのみ対象（CTAボタンには適用しない） */
  .nav > a { display: flex; align-items: baseline; gap: 12px; padding: 18px 4px; font-size: 17px; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
  .nav > a::after { display: none; }
  .nav > a.is-current { color: var(--ink); }
  .nav > a[href]::before { font-family: var(--f-en); font-size: 12px; letter-spacing: .14em; color: var(--gold); order: 2; margin-left: auto; }
  .nav > a[href="index.html"]::before { content: "HOME"; }
  .nav > a[href="about.html"]::before { content: "ABOUT"; }
  .nav > a[href="gift.html"]::before { content: "GIFT"; }
  .nav > a[href="products.html"]::before { content: "ITEMS"; }
  .nav > a[href="original.html"]::before { content: "ORIGINAL"; }
  .nav > a[href="store.html"]::before { content: "STORE"; }
  .nav > a[href="news.html"]::before { content: "NEWS"; }
  .nav-cta { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .nav-cta .btn { width: 100%; height: 58px; font-size: 14.5px; letter-spacing: .06em; }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; }
  .sp-only { display: inline; }
  .sp-hide { display: none; }
  .header-cta .btn { display: none; }

  .head.center .lead, .message p, .page-hero p { text-align: left; }
  .sp-left { text-align: left !important; }
  .message h2 { font-size: 20px; line-height: 1.95; }

  .hero-media { height: 78vh; }
  .hero-media::after { background: linear-gradient(180deg, rgba(33,27,24,.45), rgba(33,27,24,.6)); }
  .hero-actions .btn { flex: 1 1 100%; }

  .scene-grid, .genre-grid { grid-template-columns: 1fr; }
  .scene-grid { gap: 22px; }
  .genre-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .split-photo .badge { width: 96px; height: 96px; right: 0; }

  .news-item { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 4px; }
  .news-item .chev { display: none; }
  .news-date, .news-cat { width: auto; }

  .dl-table, .dl-table tbody, .dl-table tr, .dl-table th, .dl-table td { display: block; width: 100%; }
  .dl-table tr { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .dl-table th { padding: 0 0 6px; border: none; }
  .dl-table td { padding: 0; border: none; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sp-bar { display: grid; }
  .btn-row .btn { flex: 1 1 100%; }
}

/* =================================================================
   電話番号・年号などの数字は専用の読みやすいフォントに(旧スタイル数字対策)
   ================================================================= */
.header-tel .num, .footer-contact .tel, .side-card .tel-num,
.nav-cta .btn-outline, .news-date, .map-note,
.dl-table td, .store-info dd {
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1;
}
.header-tel .num { letter-spacing: .02em; }

/* =================================================================
   ポイントカード:お持ち帰り/発送などの還元例テーブル
   ================================================================= */
.point-detail { max-width: 900px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.point-col { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.point-col h4 { font-family: var(--f-min); font-weight: 600; font-size: 15px; letter-spacing: .06em; color: #fff; background: var(--gold); padding: 14px; text-align: center; }
.point-col ul { padding: 18px 22px; }
.point-col li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: 13.5px; border-bottom: 1px dotted var(--line); }
.point-col li:last-child { border-bottom: none; }
.point-col li span:first-child { color: var(--ink-soft); }
.point-col li span:last-child { font-family: "Helvetica Neue", Arial, sans-serif; color: var(--gold-dark); font-weight: 600; white-space: nowrap; }
.point-note { max-width: 900px; margin: 16px auto 0; font-size: 12px; color: var(--ink-mute); text-align: center; }
@media (max-width: 820px) { .point-detail { grid-template-columns: 1fr; max-width: 460px; } }

/* =================================================================
   モーダル(オリジナルギフト詳細)
   ================================================================= */
.scene-card[data-modal] { cursor: pointer; }
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.is-open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(31,27,24,.6); backdrop-filter: blur(2px); }
.modal-box { position: relative; z-index: 1; background: var(--bg); max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.modal-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-soft); }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: clamp(26px,4vw,44px); }
.modal-body .en { font-family: var(--f-en); font-size: 13px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; }
.modal-body h3 { font-family: var(--f-min); font-weight: 600; font-size: clamp(20px,3vw,26px); letter-spacing: .06em; margin: 6px 0 16px; }
.modal-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 2; margin-bottom: 16px; }
.modal-body h4 { font-family: var(--f-min); font-weight: 600; font-size: 15px; margin: 22px 0 10px; padding-left: 12px; border-left: 2px solid var(--gold); }
.modal-body ul { margin: 0 0 8px; }
.modal-body ul li { padding-left: 20px; position: relative; font-size: 13.5px; color: var(--ink); margin-bottom: 7px; line-height: 1.8; }
.modal-body ul li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.modal-table { width: 100%; border-collapse: collapse; margin: 6px 0 8px; font-size: 13px; }
.modal-table th, .modal-table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.modal-table th { font-family: var(--f-min); font-weight: 600; color: var(--ink); width: 96px; white-space: nowrap; }
.modal-table td { color: var(--ink-soft); }
.modal-table .pr { text-align: right; font-family: "Helvetica Neue", Arial, sans-serif; color: var(--gold-dark); white-space: nowrap; }
.modal-price { font-family: "Helvetica Neue", Arial, sans-serif; color: var(--gold-dark); font-weight: 600; font-size: 15px; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.9); box-shadow: var(--sh-sm); display: grid; place-items: center; }
.modal-close::before, .modal-close::after { content: ""; position: absolute; width: 16px; height: 1.5px; background: var(--ink); }
.modal-close::before { transform: rotate(45deg); }
.modal-close::after { transform: rotate(-45deg); }
.modal-note { display: inline-block; margin-top: 14px; font-size: 12.5px; color: var(--gold-dark); letter-spacing: .04em; }
/* 背景スクロールのロック：position:fixed方式でモバイルでも背景が動かない（モーダル・ドロワー共通） */
body.is-locked { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }

/* ===== ベルポイントカード タブ ===== */
.point-tabs { max-width: 620px; margin: 42px auto 0; }
.point-tablist { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 24px; }
.point-tab { font-family: var(--f-min); font-weight: 600; font-size: 14.5px; letter-spacing: .04em; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 26px; cursor: pointer; transition: color .25s, background .25s, border-color .25s, box-shadow .25s; }
.point-tab:hover { color: var(--gold-dark); border-color: var(--gold); }
.point-tab.is-active { color: #fff; background: var(--gold); border-color: var(--gold); box-shadow: 0 8px 20px rgba(176,141,87,.28); }
.point-panel { display: none; }
.point-panel.is-active { display: flex; flex-direction: column; gap: 10px; animation: pointFade .4s ease both; }
@keyframes pointFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
/* コンパクトな横並びの1行カード */
.point-step { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px 22px; box-shadow: var(--sh-sm); }
.point-step .amt { font-family: var(--f-min); font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: .02em; }
.point-step .amt small { font-size: 12px; color: var(--ink-soft); font-weight: 400; margin-left: 1px; }
.point-step .pt { margin-left: auto; font-family: "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: 26px; line-height: 1; color: var(--gold); font-variant-numeric: lining-nums; }
.point-step .pt small { font-family: var(--f-jp); font-size: 13px; font-weight: 700; color: var(--gold-dark); margin-left: 3px; }
.point-step .yen { flex: none; min-width: 92px; text-align: center; font-size: 12px; color: var(--ink-soft); background: var(--bg-soft); border-radius: 999px; padding: 5px 12px; }
@media (max-width: 480px) { .point-step { gap: 10px; padding: 13px 16px; } .point-step .pt { font-size: 22px; } .point-step .yen { min-width: 78px; } }

/* ===== 2列ラインナップ ===== */
.scene-grid.is-two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto; }
@media (max-width: 600px) { .scene-grid.is-two { grid-template-columns: 1fr; } }

/* ===== SPバー：お問い合わせボタン ===== */
.sp-bar .b-form.alt { background: var(--ink); }

/* ===== カタログ・お問い合わせページ ===== */
.contact-block { max-width: 760px; margin: 0 auto; }
.contact-block + .contact-block { margin-top: clamp(44px,6vw,72px); }
.contact-block-head { text-align: center; margin-bottom: 30px; }
.contact-block-head .step { display: inline-block; font-family: var(--f-en); font-weight: 600; font-size: 12px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.contact-block-head h2 { font-family: var(--f-min); font-weight: 600; font-size: clamp(21px,3vw,27px); letter-spacing: .06em; margin: 8px 0 12px; }
.contact-block-head p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.9; text-align: left; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; }
.check-grid label { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink); background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 12px 16px; cursor: pointer; transition: border-color .2s, background .2s; }
.check-grid label:hover { border-color: var(--gold); }
.check-grid input { accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.field-row .field.full { grid-column: 1 / -1; }
@media (max-width: 560px) { .check-grid, .field-row { grid-template-columns: 1fr; } }
/* WEBカタログ */
.webcat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.webcat { display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 22px; box-shadow: var(--sh-sm); transition: transform .25s, box-shadow .25s; }
.webcat:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.webcat .en { font-family: var(--f-en); font-size: 12px; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; }
.webcat h4 { font-family: var(--f-min); font-weight: 600; font-size: 16px; letter-spacing: .04em; margin-top: 2px; }
.webcat .desc { font-size: 12.5px; color: var(--ink-soft); line-height: 1.85; margin: 6px 0 12px; }
.webcat .more { margin-top: auto; font-size: 12.5px; font-weight: 600; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 6px; }
.webcat .more svg { width: 15px; height: 15px; }
@media (max-width: 720px) { .webcat-grid { grid-template-columns: 1fr; } }
/* PDF注文用紙 */
.pdf-box { display: flex; align-items: center; gap: 20px; background: var(--bg-soft); border: 1px dashed var(--gold); border-radius: var(--r); padding: 24px 28px; margin-top: 26px; }
.pdf-ico { flex: none; width: 52px; height: 52px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-dark); }
.pdf-ico svg { width: 26px; height: 26px; }
.pdf-box .txt { flex: 1; }
.pdf-box .txt b { font-family: var(--f-min); font-weight: 600; font-size: 15px; }
.pdf-box .txt p { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }
.pdf-box .btn { flex: none; }
@media (max-width: 560px) { .pdf-box { flex-direction: column; align-items: flex-start; text-align: left; } }
/* お問い合わせページの見出しサイズ（長い見出しの折れ対策） */
.page-hero.is-compact h1 { font-size: clamp(22px, 4.4vw, 28px); letter-spacing: .05em; }
/* カタログ請求／お問い合わせ タブ切替 */
.form-tabs-wrap { max-width: 760px; margin: 0 auto; }
.form-tabs { display: flex; gap: 12px; margin-bottom: 26px; }
.form-tab { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--f-min); font-weight: 600; font-size: 15.5px; letter-spacing: .04em; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 17px 14px; cursor: pointer; transition: color .25s, background .25s, border-color .25s, box-shadow .25s; }
.form-tab svg { width: 19px; height: 19px; flex: none; }
.form-tab:hover { color: var(--gold-dark); border-color: var(--gold); }
.form-tab.is-active { color: #fff; background: var(--gold); border-color: var(--gold); box-shadow: 0 10px 24px rgba(176,141,87,.26); }
.form-panel { display: none; }
.form-panel.is-active { display: block; animation: pointFade .4s ease both; }
@media (max-width: 480px) { .form-tab { font-size: 14px; padding: 15px 8px; gap: 7px; } }
