/* =====================================================================
   テンペチップス サイト 共通スタイル
   ---------------------------------------------------------------------
   ・プレーンな CSS のみ（フレームワーク不使用）
   ・色 / 余白 / 角丸などは下の :root 変数でまとめて調整できます
   ・購入は外部モール（Amazon / 楽天 / Square 等）へリンクする構成です
   ===================================================================== */

/*検索時使用　　　　.hero-slide__content h1　　　　　　　　　　　　　　　　　　　　　　　　　*/
/* ============ 1. デザイントークン（ここを変えれば全体が変わる） ============ */
:root {
  /* --- ブランドカラー --------------------------------------------------
     白とアイボリーを主役に。緑・オレンジは「パステルの差し色」として
     タグ・ボタン・小さなポイントだけに最小限で使用します。
     ------------------------------------------------------------------- */
  /* メインカラー（約30%）= 少し薄めの緑（ブランドのキーカラー） */
  --color-primary:        #2d5016;   /* ボタン・見出し・タグなどに使う緑 */
  --color-primary-dark:   #14703f;   /* テキスト・ホバー用の濃いめ緑 */
  --color-primary-light:  #e6f0ea;   /* タグ等のごく薄い緑背景 */
  /* アクセントカラー（約5〜10%）= ほんの少し薄めのオレンジ（重要ボタンのみ） */
  --color-accent:         #e8872a;   /* 「カゴに入れる」「購入手続き」など */
  --color-accent-dark:    #f19346;
  --color-accent-light:   #fbeada;   /* 注目バッジ等のごく薄いオレンジ背景 */
  /* ベースカラー（約60%）= 白とアイボリー */
  --color-bg:             #faf8f5;   /* アイボリー（ページの地色） */
  --color-bg-alt:         #f3efe8;   /* 表ヘッダー等の小さな面 */
  --color-surface:        #ffffff;   /* カード・面（白） */
  --color-text:           #2b2926;   /* 基本テキスト（ウォームな黒） */
  --color-text-muted:     #7a746c;   /* 補足テキスト */
  --color-border:         #eae3d9;   /* アイボリーになじむ境界線 */
  --color-danger:         #c0492f;

  /* --- 透明感（ガラス）・パステルの差し色（ごく淡く） --- */
  --glass-bg:        rgba(255, 255, 255, 0.55);  /* 半透明の白 */
  --glass-border:    rgba(255, 255, 255, 0.9);
  --green-glass:     rgba(87, 163, 124, 0.08);   /* ごく淡い緑 */
  --green-glass-2:   rgba(87, 163, 124, 0.15);
  --orange-glass:    rgba(227, 151, 79, 0.08);   /* ごく淡いオレンジ */
  --orange-glass-2:  rgba(227, 151, 79, 0.16);

  /* --- タイポグラフィ --- */
  --font-base: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
               "Yu Gothic", Meiryo, sans-serif;
  --fs-xs:   0.78rem;
  --fs-sm:   0.88rem;
  --fs-base: 1rem;
  --fs-md:   1.15rem;
  --fs-lg:   1.4rem;
  --fs-xl:   1.9rem;
  --fs-2xl:  2.6rem;

  /* --- 余白・サイズ --- */
  --space-xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.4rem;
  --space-lg: 2.4rem;
  --space-xl: 4rem;
  --container: 1200px;      /* コンテンツ最大幅 */
  --container-wide: 1480px; /* ヘッダー・フッターの幅（大きめにとる） */
  --radius:    16px;
  --radius-sm: 9px;
  --radius-pill: 999px;
  --shadow:    0 8px 28px rgba(90, 80, 65, 0.07);
  --shadow-lg: 0 16px 44px rgba(90, 80, 65, 0.12);
  --header-h:  72px;
}

/* ============ 2. リセット & ベース ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text);
  /* 白基調 + 透明感のある緑・オレンジのやわらかな光（固定背景） */
  background-color: var(--color-bg);
  background-image:
    radial-gradient(60vw 60vw at 100% -10%, var(--orange-glass), transparent 60%),
    radial-gradient(55vw 55vw at -10% 110%, var(--green-glass), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.35; margin: 0 0 var(--space-sm); font-weight: 700; }
p { margin: 0 0 var(--space-sm); }
ul { margin: 0; padding-left: 1.2em; }

/* ============ 3. レイアウト用ユーティリティ ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
/* フッターは幅を大きめにとる */
.site-footer .container { max-width: var(--container-wide); }
/* ヘッダーはPCで左右の余白をほぼなくす（ほぼ全幅） */
.site-header .container { max-width: none; padding-inline: var(--space-md); }
.section { padding-block: var(--space-xl); }
.section--alt { background: var(--color-surface); }  /* 白（交互セクション） */
.section--tight { padding-block: var(--space-lg); }
.text-center { text-align: center; }
.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* セクション見出し */
.section-head { text-align: center; margin-bottom: var(--space-lg); }
.section-head .eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}
.section-head h2 { font-size: var(--fs-xl); margin: 0; }
.section-head p { color: var(--color-text-muted); margin-top: var(--space-xs); }

/* ============ 4. ボタン ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.8em 1.6em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-base);
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: var(--shadow); }
.btn--accent:hover { background: var(--color-accent-dark); }
.btn--outline { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary-light); }
.btn--ghost { background: var(--color-surface); border-color: var(--color-border); color: var(--color-text); }
.btn--block { width: 100%; }
.btn--lg { padding: 1em 2.2em; font-size: var(--fs-md); }
.btn--sm { padding: 0.5em 1em; font-size: var(--fs-sm); }

/* ============ 5. 仮画像 / プレースホルダー ============ */
/* 画像が用意できるまでの仮枠。差し替え時は <img> に置き換えてください */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4em;
  background:
    repeating-linear-gradient(45deg,
      rgba(120,110,95,0.05) 0 14px,
      rgba(120,110,95,0.09) 14px 28px),
    #f3efe8;
  color: #9a8f7f;
  font-size: var(--fs-sm);
  font-weight: 700;
  border-radius: var(--radius);
  padding: var(--space-md);
  min-height: 160px;
  border: 1px dashed rgba(120,110,95,0.35);
}
.placeholder::before { content: "🖼"; font-size: 1.3em; }
.placeholder--video { background:
    repeating-linear-gradient(45deg,
      rgba(60,50,40,0.10) 0 14px,
      rgba(60,50,40,0.18) 14px 28px),
    #2c2722;
  color: #fff; border-color: rgba(255,255,255,0.3); }
.placeholder--video::before { content: "▶"; }
.placeholder--ratio { aspect-ratio: 16 / 9; min-height: 0; }
.placeholder--square { aspect-ratio: 1 / 1; min-height: 0; }
.placeholder--tall { min-height: 320px; }
.placeholder span { opacity: 0.85; font-weight: 600; }

/* SNS埋め込み（YouTube / X）の枠 */
.embed-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.embed-box__bar {
  display: flex; align-items: center; gap: 0.5em;
  padding: 0.6em 1em;
  background: var(--color-bg-alt);
  font-size: var(--fs-sm);
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
}
.embed-box__bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-accent); } /* #e8872a */

/* ============ 6. ヘッダー ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.7);     /* 透明感のある白 */
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--glass-border);
}
/* 左（ブランド）／中央（5つのメニュー）／右（SNS・ユーザー・カート）の3分割 */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
}
.header-inner .brand { justify-self: start; }
.header-inner .nav { justify-self: center; }
.header-inner .header-actions { justify-self: end; }

/* ヘッダー右側のSNSモノクロアイコン */
.header-sns { display: flex; align-items: center; gap: 0.15em; margin-right: 0.2em; }
.header-sns a { display: inline-flex; color: #000; padding: 0.25em; }
.header-sns a:hover { color: var(--color-primary); }
.header-sns svg { width: 20px; height: 20px; }

.brand { display: flex; align-items: center; gap: 0.55em; font-weight: 800; font-size: var(--fs-md); line-height: 1.15; }
.brand__mark {
  /* アイコン画像用。背景色なし */
  width: 48px; height: 48px;
  display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* TEMPE CHIPS は「テンペチップス」の下に改行して表示 */
.brand__sub { display: block; font-size: var(--fs-xs); color: var(--color-text-muted); font-weight: 600; line-height: 1.1; }

/* 画像をコンテナ幅にフィットさせる汎用クラス（レスポンシブ） */
.fit-picture { display: block; width: 100%; height: auto; }

.nav { display: flex; align-items: center; gap: var(--space-md); }
.nav__links { display: flex; align-items: center; gap: var(--space-md); list-style: none; margin: 0; padding: 0; }
.nav__links a { font-weight: 600; font-size: var(--fs-sm); padding: 0.3em 0; position: relative; }
.nav__links a:hover { color: var(--color-primary); }
.nav__links a.is-active { color: var(--color-primary); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--color-primary); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: var(--space-sm); }
.icon-btn {
  position: relative;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #000;                 /* シンプルな黒白アイコン */
  transition: background 0.15s ease;
}
.icon-btn:hover { background: var(--green-glass); }
.icon-btn svg { width: 23px; height: 23px; display: block; }
.icon-btn .badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--color-accent); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
}
.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--color-border); border-radius: 10px;
  background: var(--color-surface);
  flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.hamburger span { width: 20px; height: 2px; background: var(--color-text); border-radius: 2px; transition: 0.2s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ 7. フッター ============ */
.site-footer {
  background: #3c6b54;          /* 深めのブランドグリーン（メインカラー） */
  color: #eef3ef;
  margin-top: var(--space-xl);
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-lg); padding-block: var(--space-xl); }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); max-width: 32ch; }
.footer-col h4 { font-size: var(--fs-sm); letter-spacing: 0.08em; color: rgba(255,255,255,0.65); margin-bottom: var(--space-sm); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55em; }
.footer-col a { color: rgba(255,255,255,0.9); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--color-accent); }
.footer-sns { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.footer-sns a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center; font-size: 1.1rem;
}
.footer-sns a:hover { background: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-block: var(--space-md);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm);
  font-size: var(--fs-xs); color: rgba(255,255,255,0.6);
}

/* ============ 8. ヒーロー / メインビジュアル ============ */
.hero { position: relative; overflow: hidden; }
/* 開いた瞬間に画面いっぱいになる高さ（ヘッダー分を差し引く） */
.hero-slider { position: relative; display: grid; min-height: calc(100vh - var(--header-h)); }
.hero-slide {
  /* 全スライドを同じグリッドセルに重ねて配置し、切り替え時はフェードで演出
     （グリッド重ねなのでスマホでは高さが中身に合わせて伸びる） */
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  padding-block: var(--space-xl);
  opacity: 0; visibility: hidden;
  transition: opacity 0.7s ease, visibility 0s linear 0.7s;
}
.hero-slide.is-active {
  opacity: 1; visibility: visible;
  transition: opacity 0.7s ease;
  z-index: 1;
}
.hero-slide__bg {
  position: absolute; inset: 0; z-index: 0;
}
/* タイトルが意図しない位置で折り返さないよう横幅を広めにとる */
.hero-slide__content { position: relative; z-index: 2; max-width: 780px; }
.hero-slide__content .eyebrow {
  /* 白背景なし・緑文字のみ（メインビジュアルのラベル）。少し大きめ */
  display: inline-block; background: none;
  color: var(--color-primary); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 0; border-radius: 0; margin-bottom: var(--space-sm);
}
.hero-slide__content h1 { font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }
.hero-slide__content p { font-size: var(--fs-md); color: var(--color-text); max-width: 40ch; }
.hero-cta { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-md); }
/* メインビジュアルの「商品を見る」ボタンは少し小さく・高さを細く */
.hero-cta .btn { padding-block: 0.55em; font-size: var(--fs-base); }
/* メインビジュアル各スライドの背景画像（4枚を別々に指定）
   ▼ 下の url() の中にそれぞれの画像パスを入れてください（4スライド別画像）。
     例: .bg-grad-1 { background-image: url("/assets/images-top/hero1.jpg"); }
   ※共通の表示設定（cover/中央/繰り返しなし）は下のまとめて指定しています。 */
.bg-grad-1,
.bg-grad-2,
.bg-grad-3,
.bg-grad-4 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 各スライドの画像は --hero-img に定義（PC＝スライド背景／スマホ＝上部画像で共用） */
/* --hero-img=PC用（横長）／--hero-img-sp=スマホ用（縦長・/assets/responsive/） */
.bg-grad-1 { --hero-img: url("/assets/images-top/top-main1.webp"); --hero-img-sp: url("/assets/responsive/top-main1.webp"); background-image: var(--hero-img); }
.bg-grad-2 { --hero-img: url("/assets/images-top/top-main2.webp"); --hero-img-sp: url("/assets/responsive/top-main2.webp"); background-image: var(--hero-img); }
.bg-grad-3 { --hero-img: url("/assets/images-top/top-main3.webp"); --hero-img-sp: url("/assets/responsive/top-main3.webp"); background-image: var(--hero-img); }
.bg-grad-4 { --hero-img: url("/assets/images-top/top-main4.webp"); --hero-img-sp: url("/assets/responsive/top-main4.webp"); background-image: var(--hero-img); }

.hero-dots { display: flex; gap: 0.5em; justify-content: center; position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3; }
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: none;
  background: rgba(52,48,42,0.3);
}
.hero-dots button.is-active { background: var(--color-primary); width: 26px; border-radius: var(--radius-pill); }

/* ページ用のシンプルなページヘッダー（無機質な背景＋中央テキスト） */
.page-hero {
  min-height: 240px;
  display: grid; place-items: center; text-align: center;
  /* 各下層ページ（products / news / faq / contents）共通の背景画像。
     先頭の白いグラデーションは文字を読みやすくする薄いオーバーレイ（不要なら削除可）。 */
  background:
    linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
    url("/assets/image-common/top.webp") center / cover no-repeat,
    var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.page-hero h1 { font-size: var(--fs-2xl); letter-spacing: 0.05em; text-transform: lowercase; margin: 0; color: var(--color-primary-dark); }
.page-hero p { color: var(--color-text-muted); }

/* ============ 9. カード（汎用） ============ */
.card {
  background: var(--glass-bg);              /* 半透明の白（透明感） */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__body { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.5em; flex: 1; }
.card__title { font-size: var(--fs-md); margin: 0; }
.card__text { color: var(--color-text-muted); font-size: var(--fs-sm); margin: 0; }
.card__meta { font-size: var(--fs-xs); color: var(--color-text-muted); display: flex; gap: 0.6em; align-items: center; }
/* カード上部の画像枠（ニュース等）：16:9の枠に画像全体を収める（切り取らない）。
   縦横比が合わず余った部分はアイボリーで埋める（object-fit: contain） */
.card__media { width: 100%; aspect-ratio: 16 / 9; min-height: 0; overflow: hidden; background: var(--color-bg); display: block; }
.card__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.tag {
  display: inline-block; font-size: var(--fs-xs); font-weight: 700;
  padding: 0.2em 0.8em; border-radius: var(--radius-pill);
  color: var(--color-primary-dark);
}
/* タグはメインカラーの緑で統一（オレンジはCTAに集約） */
.tag--accent { color: var(--color-primary-dark); }

/* ============ 10. 魅力ポイント / アイコン特長 ============ */
.feature { text-align: center; padding: var(--space-md); }
.feature__icon {
  width: 68px; height: 68px; margin: 0 auto var(--space-sm);
  border-radius: 20px; display: grid; place-items: center;
  background: var(--color-primary-light); font-size: 1.9rem;
}
.feature h3 { font-size: var(--fs-md); }
.feature p { color: var(--color-text-muted); font-size: var(--fs-sm); }

/* ストーリー／魅力（画像＋テキスト交互） */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.split--reverse .split__media { order: 2; }
/* Features: 項目ごとに全幅の帯で背景色を交互にする */
.feature-band { padding-block: var(--space-lg); }
.feature-band--alt { background: var(--color-surface); }  /* 白（交互の帯） */
.feature-band .split__text .tag { margin-bottom: var(--space-xs); }

/* ============ 11. 商品カード（一覧） ============ */
.product-card .product-card__media { position: relative; }
.product-card .ribbon {
  position: absolute; top: 6px; left: 6px; z-index: 2;
  background: var(--color-accent); color: #fff;
  font-size: var(--fs-xs); font-weight: 700;
  padding: 0.3em 0.6em; border-radius: var(--radius-pill);
}
.product-card__price { font-size: var(--fs-lg); font-weight: 800; color: #000; }
.product-card__price small { font-size: var(--fs-xs); color: var(--color-text-muted); font-weight: 600; }
.product-card .card__body { gap: 0.4em; }

/* おすすめ比較表 */
.compare-table { width: 100%; border-collapse: collapse; background: var(--color-surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-table th, .compare-table td { padding: var(--space-sm) var(--space-md); text-align: left; border-bottom: 1px solid var(--color-border); font-size: var(--fs-sm); }
.compare-table thead th { background: var(--color-primary); color: #fff; font-size: var(--fs-sm); }
.compare-table tbody tr:hover { background: var(--color-bg-alt); }
.compare-table .reco { color: var(--color-accent-dark); font-weight: 700; }

/* おすすめ診断風の導線 */
.helper-box {
  background: var(--color-surface);     /* 薄い緑＝メインカラー */
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

/* ============ 12. FAQ アコーディオン ============ */
.faq-cat { margin-bottom: var(--space-lg); }
.faq-cat > h3 { font-size: var(--fs-md); color: var(--color-primary-dark); padding-bottom: var(--space-xs); border-bottom: 2px solid var(--color-primary-light); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: var(--space-md) 2.5em var(--space-md) 0;
  font-weight: 700; font-size: var(--fs-base); color: var(--color-text);
  position: relative; display: flex; gap: 0.6em; align-items: flex-start;
}
.faq-q::before { content: "Q"; color: var(--color-primary); font-weight: 800; }
.faq-q::after {
  content: "＋"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--color-primary); font-size: 1.2rem; transition: 0.2s;
}
.faq-q.is-open::after { content: "－"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a__inner { padding: 0 0 var(--space-md) 1.6em; color: var(--color-text-muted); font-size: var(--fs-sm); }

/* ============ 13. 仮データ注意バナー ============ */
.demo-banner {
  background: repeating-linear-gradient(45deg, #fff5e6 0 12px, #ffedcc 12px 24px);
  color: #8a5a13; text-align: center; font-size: var(--fs-xs); font-weight: 700;
  padding: 0.45em var(--space-md); border-bottom: 1px solid #f0d9a8;
}

/* パンくず */
.breadcrumb { font-size: var(--fs-xs); color: var(--color-text-muted); padding-block: var(--space-sm); }
.breadcrumb a:hover { color: var(--color-primary); }

/* CTAバンド */
.cta-band { background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark)); color: #fff; text-align: center; }
.cta-band h2 { font-size: var(--fs-xl); }
.cta-band p { color: rgba(255,255,255,0.85); }

/* ============ 14. レスポンシブ（スマホ重視・モバイルファースト調整） ============ */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --fs-2xl: 2rem; --fs-xl: 1.55rem; --space-xl: 2.8rem; }

  /* ヘッダーは「ブランド左／操作ボタン右」のシンプルな並びに */
  .header-inner { display: flex; justify-content: space-between; gap: var(--space-sm); }
  .brand { font-size: var(--fs-base); }            /* テンペチップスを少し小さく */
  .brand__mark { width: 44px; height: 44px; }

  /* ナビをドロワー化。閉じている間は完全に隠す */
  .hamburger { display: flex; }
  .nav {
    /* 画面の右側に寄せたパネルとして表示（ハンバーガーの下） */
    position: fixed; top: var(--header-h); right: 0; left: auto;
    width: min(74vw, 280px);
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0 0 0 14px;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--space-sm) var(--space-md) var(--space-md);
    /* 自身の高さ＋ヘッダー分だけ上に逃がし、わずかな見切れも防ぐ */
    transform: translateY(calc(-100% - var(--header-h)));
    opacity: 0; visibility: hidden;
    transition: transform 0.25s ease, opacity 0.2s ease, visibility 0s linear 0.25s;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1; visibility: visible;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  /* 各項目を全幅ブロックにして下線を揃える（テキストは左寄せ） */
  .nav__links a { display: block; padding: 0.9em 0; border-bottom: 1px solid var(--color-border); }
  .nav__links a.is-active::after { display: none; }

  /* メインビジュアル：縦長画像の上に文字を重ねる。
     英語＋タイトル＝上／商品を見る＝右下／切替ドット＝下中央（小さめ） */
  .hero-slider { min-height: 0; }
  .hero-slide {
    display: block;                            /* 疑似要素で高さを確保するためブロックに */
    position: relative;
    padding: 0;
    text-align: left;
    background-image: var(--hero-img-sp);      /* スマホ用の縦長画像（/assets/responsive/） */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-slide::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;                       /* 縦長の高さを確保（画像はスライド背景で表示） */
  }
  .hero-slide__bg { display: none; }
  .hero-slide .container {
    position: absolute; inset: 0;
    max-width: none;
    padding: var(--space-sm);
    /* 上部を少し白くして、重ねた文字を読みやすく */
    background: linear-gradient(to bottom, rgba(255,255,255,0.72), rgba(255,255,255,0.12) 30%, transparent 48%);
  }
  /* position:static にして、ボタンの基準を画像全体の .container に戻す */
  .hero-slide__content { max-width: none; margin: 0; position: static; }
  .hero-slide__content .eyebrow { display: block; margin-bottom: 0.35em; font-size: 0.95rem; }
  .hero-slide__content h1 { margin: 0; font-size: clamp(1.8rem, 5.2vw, 1.8rem); line-height: 1.25; }
  .hero-slide__content p { display: none; }              /* 説明文はスマホでは非表示 */
  .hero-slide__content .hero-cta {
    position: absolute; right: var(--space-md); bottom: var(--space-lg); margin: 0;   /* 画像内・右下 */
  }
  .hero-slide__content .hero-cta .btn { padding: 0.45em 0.9em; font-size: var(--fs-sm); }  /* ボタンは小さめ */
  /* 切替ドットは小さめ・画像下の中央 */
  .hero-dots { bottom: 12px; gap: 0.4em; }
  .hero-dots button { width: 8px; height: 8px; }
  .hero-dots button.is-active { width: 18px; }

  /* スマホではヘッダーのSNSは非表示（フッターにあり） */
  .header-sns { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { justify-content: center; text-align: center; }

  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* よりコンパクトな画面 */
@media (max-width: 420px) {
  .container { padding-inline: var(--space-sm); }
  .brand__sub { display: none; }
}

/* 補助: フェードイン（スクロール演出。JSで .is-visible を付与） */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   17. トップページ向けの追加調整（ラベル色・ボタン・レイアウト等）
   ===================================================================== */
/* Topics（ニュース＋コンテンツの文字リスト） */
.topics { list-style: none; margin: 0 auto; padding: 0; max-width: 920px; }
.topics__row {
  display: grid;
  grid-template-columns: 6.5em 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) var(--space-sm);
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
  transition: background 0.15s ease;
}
.topics li:last-child .topics__row { border-bottom: 1px solid var(--color-border); }
.topics__row:hover { background: var(--color-bg-alt); }
.topics__cat {
  font-size: var(--fs-xs); font-weight: 700; text-align: center; white-space: nowrap;
}
.topics__cat--news { color: #2d5016; }      /* 緑 */
.topics__cat--contents { color: #e8872a; }  /* オレンジ */
.topics__title { font-weight: 700; font-size: var(--fs-base); }
.topics__src { font-weight: 500; font-size: var(--fs-xs); color: var(--color-text-muted); margin-left: 0.4em; }
.topics__row:hover .topics__title { text-decoration: underline; }
.topics__date { font-size: var(--fs-sm); color: var(--color-text-muted); white-space: nowrap; }
.topics__actions { display: flex; gap: var(--space-sm); justify-content: center; margin-top: var(--space-lg); flex-wrap: wrap; }
/* スマホ：カテゴリと日付を上段、タイトルを下段に */
@media (max-width: 560px) {
  .topics__row {
    grid-template-columns: auto 1fr;
    grid-template-areas: "cat date" "title title";
    gap: 0.5em var(--space-sm);
  }
  .topics__cat { grid-area: cat; justify-self: start; }
  .topics__date { grid-area: date; justify-self: end; }
  .topics__title { grid-area: title; }
}
/* 濃い緑(#2d5016)の英字ラベル＋黒のサブ見出し（news / ABOUT / MESSAGE など） */
/* セクション見出しの統一スタイル
   （英字タイトル=濃い緑#2d5016／日本語サブ=黒。全セクション共通の大きさ・色） */
.section-head .label-deep {
  color: var(--color-primary);          /* = #2d5016 */
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
}
.section-head .label-sub {
  color: #000;
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-top: 0.35em;
}

/* ABOUT / Features / MESSAGE の画像は角丸なし */
.split__media .placeholder,
.message-media .placeholder { border-radius: 0; }

/* 左右の空白をほぼなくす（幅を広めにとる）コンテナ */
.container--wide { max-width: 1600px; }
/* メインビジュアルも幅を広げて左右の空白をほぼなくす */
.hero .container { max-width: 1600px; }

/* 背景なしのラベル（ニュースのカテゴリ・商品の個数表記など）→ 文字#2d5016 */
.tag-plain {
  display: inline-block; background: none; padding: 0;
  color: var(--color-primary); font-weight: 700; font-size: var(--fs-xs);
}

/* Featuresの番号（背景なし・#2d5016・大きめ） */
.feature-num {
  display: block; background: none; color: var(--color-primary);
  font-size: var(--fs-xl); font-weight: 800; line-height: 1; margin-bottom: var(--space-xs);
}

/* 白背景カード / 角を四角にするカード */
.card--white { background: var(--color-surface); -webkit-backdrop-filter: none; backdrop-filter: none; }
.card--square { border-radius: 0; }
.card--square .placeholder { border-radius: 0; }
.card--square .ribbon { border-radius: 0; }

/* ボタン: 黒背景 / 黒アウトライン / 四角（ホバー時の変化も指定） */
.btn--dark { background: #1a1a1a; color: #fff; }
.btn--dark:hover { background: #000; }
.btn--outline-dark { background: transparent; border-color: #1a1a1a; color: #1a1a1a; }
.btn--outline-dark:hover { background: #1a1a1a; color: #fff; }
.btn--square { border-radius: 0; }

/* メインビジュアルのタイトルを大きく目立たせる（PC・タブレットのみ。
   スマホは @media (max-width:720px) 側の縮小指定を優先させる） */
@media (min-width: 721px) {
  .hero-slide__content h1 { font-size: clamp(2.0rem, 6vw, 4rem); line-height: 1.18; }
}

/* MESSAGE: 左（上=タイトル / 下=画像）＋ 右（メッセージ詳細） */
.message-layout { display: grid; grid-template-columns: 0.7fr 1fr; gap: var(--space-lg); align-items: center; }
.message-left { display: flex; flex-direction: column; gap: var(--space-md); }
.message-title { font-size: 1.7rem; margin: 0; }
.message-media { max-width: 360px; }                       /* 画像を少し小さく */
.message-media .placeholder { min-height: 230px; }
.message-right > p { font-size: var(--fs-md); line-height: 1.95; }  /* 行間を少し広く */
@media (max-width: 720px) { .message-layout { grid-template-columns: 1fr; } }

/* ヘッダー／フッターのSNSモノクロアイコン */
.nav__sns { display: flex; align-items: center; gap: 0.8em; }
.nav__sns a { display: inline-flex; color: var(--color-text); padding: 0.3em; border: none; }
.nav__sns a:hover { color: var(--color-primary); }
.nav__sns svg { width: 20px; height: 20px; }
.footer-sns svg { width: 18px; height: 18px; }

/* SNS投稿の埋め込み（X / Instagram）をカード化して表示
   ・PC：3カラム。各カードは上端（スタート位置）を揃え、内容は下まで全て表示
   ・角丸＋overflow:hidden で X・Instagram の角の形状を統一（Instagram も角丸に）
   ・スマホ：1カラム。角丸を維持し画面幅に収める */
.sns-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); align-items: start; justify-items: center; }
.sns-card {
  width: 100%;
  max-width: 480px;
  overflow: hidden;       /* 角丸を反映（高さは内容なり／下まで全て表示） */
  border-radius: 14px;
}
/* 埋め込み本体（X公式widget＝<twitter-widget> ／ Instagram＝.instagram-media）の
   固定幅を打ち消し、カード幅にフィットさせる */
.sns-card .twitter-tweet,
.sns-card twitter-widget,
.sns-card .instagram-media { width: 100% !important; max-width: 100% !important; min-width: 0 !important; margin: 0 auto !important; }
@media (max-width: 980px) {
  .sns-posts { grid-template-columns: 1fr; }
}
/* スマホ（iPhone SE等）：1カラム。角丸を維持し画面幅に収める */
@media (max-width: 560px) {
  .sns-posts { gap: var(--space-lg); }
  .sns-card { max-width: calc(100vw - 2rem); }
}
