/* =================================================================
   脇町製茶工場 公式サイト 共通スタイルシート
   -----------------------------------------------------------------
   ・色や文字の設定は下の「カラー設定」「文字サイズ設定」でまとめて管理しています
   ・色を変えたいときは、:root の中の数値（カラーコード）だけ書き換えればOKです
   ================================================================= */

/* ------------------------------------------------------------------
   カラー設定（ここを変えるとサイト全体の色が変わります）
   ------------------------------------------------------------------ */
:root {
  --color-main:   #5C8A3C; /* メイン：抹茶グリーン */
  --color-deep:   #2D5016; /* サブ：深緑 */
  --color-accent: #8B6914; /* アクセント：茶色 */
  --color-bg:     #F7F3EA; /* 背景：生成り白 */
  --color-text:   #2C2C2C; /* 文字：墨色 */
  --color-white:  #FFFFFF;
  --color-soft:   #EFE7D5; /* 少し濃い背景（セクション区切り用） */

  /* 余白・幅の基本設定 */
  --container-width: 1100px;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(45, 80, 22, 0.10);
  --shadow-hover: 0 14px 30px rgba(45, 80, 22, 0.18);

  /* フォント */
  --font-body: "Noto Serif JP", serif;             /* 本文 */
  --font-heading: "Zen Maru Gothic", sans-serif;   /* 見出し */
}

/* ------------------------------------------------------------------
   基本リセット
   ------------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* スムーススクロール */
  scroll-padding-top: 90px; /* ヘッダー分の余白 */
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 中央寄せの共通コンテナ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------------------------
   見出しの共通スタイル
   ------------------------------------------------------------------ */
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-deep);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.section-title .en {
  display: block;
  font-size: 0.85rem;
  color: var(--color-main);
  letter-spacing: 0.25em;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.section-lead {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
  font-size: 1rem;
}

/* セクションの上下余白（ゆったりめ） */
.section {
  padding: 90px 0;
}

.section--soft {
  background-color: var(--color-soft);
}

/* ------------------------------------------------------------------
   ボタン
   ------------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--color-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  box-shadow: none;
}

.btn--outline:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}

/* ------------------------------------------------------------------
   ヘッダー（全ページ共通）
   ------------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(247, 243, 234, 0.95);
  backdrop-filter: blur(6px);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo .leaf {
  color: var(--color-main);
  font-size: 1.2rem;
}

/* ナビゲーション */
.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav__list a {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav__list a:hover,
.nav__list a.is-current {
  color: var(--color-main);
}

/* メニュー下線アニメーション */
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-main);
  transition: width 0.3s ease;
}

.nav__list a:hover::after,
.nav__list a.is-current::after {
  width: 100%;
}

.nav__contact-btn {
  background-color: var(--color-main);
  color: var(--color-white) !important;
  padding: 8px 20px;
  border-radius: 50px;
}

.nav__contact-btn::after {
  display: none !important;
}

.nav__contact-btn:hover {
  background-color: var(--color-deep);
}

/* ハンバーガーボタン（スマホ用・初期は非表示） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ハンバーガーを開いたとき×印に */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ------------------------------------------------------------------
   ヒーロー（トップページの一番上）
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  /* ▼ ヒーローの背景写真（茶畑）。差し替える場合は下の url を変更 ▼ */
  background-image: linear-gradient(rgba(45, 80, 22, 0.45), rgba(45, 80, 22, 0.45)),
                    url("images/hero-main.jpg");
  background-size: cover;
  background-position: center;
}

.hero__content {
  padding: 0 24px;
}

.hero__catch {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.hero__sub {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 36px;
}

/* 下スクロールを促す矢印 */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 10px); }
}

/* ------------------------------------------------------------------
   汎用：ページ上部の見出し帯（トップ以外のページ用）
   ------------------------------------------------------------------ */
.page-hero {
  margin-top: 72px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(45, 80, 22, 0.45);
}

.page-hero__title {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-hero__title .en {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  margin-top: 8px;
  font-family: var(--font-body);
  opacity: 0.9;
}

/* ------------------------------------------------------------------
   工場紹介の導入文（トップ）
   ------------------------------------------------------------------ */
.intro {
  text-align: center;
}

.intro__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
}

.intro__text p + p {
  margin-top: 1.2em;
}

/* ------------------------------------------------------------------
   商品カード（トップ・商品ページ共通）
   ------------------------------------------------------------------ */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* ホバーでカードが浮き上がる */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.product-card__body {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__badge {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-deep);
  margin-bottom: 12px;
}

.product-card__desc {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 18px;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.product-card__price small {
  font-size: 0.75rem;
  color: #888;
}

/* ------------------------------------------------------------------
   新茶 予約受付中の細いお知らせバー（トップページ）
   ------------------------------------------------------------------ */
.news-bar {
  display: block;
  text-align: center;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  padding: 14px 20px;
  transition: background-color 0.3s ease;
}

.news-bar:hover {
  background-color: #6f540f;
}

/* ------------------------------------------------------------------
   新茶 予約受付中のお知らせ（商品ページ）
   ------------------------------------------------------------------ */
.shincha-notice {
  margin-top: 72px; /* ページ上部バナーがない場合の余白調整 */
  padding: 56px 0;
  text-align: center;
  background:
    linear-gradient(rgba(45, 80, 22, 0.78), rgba(45, 80, 22, 0.78)),
    url("images/hero-main.jpg") center/cover;
  color: var(--color-white);
}

/* 商品ページではページ上部バナー（page-hero）の直後に来るので余白を打ち消す */
.page-hero + .shincha-notice {
  margin-top: 0;
}

.shincha-notice__lead {
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 10px;
}

.shincha-notice__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.shincha-notice__text {
  margin-bottom: 28px;
  font-size: 1rem;
}

/* ------------------------------------------------------------------
   価格表
   ------------------------------------------------------------------ */
.price-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid #e7dfcc;
}

.price-table thead th {
  font-family: var(--font-heading);
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
  border-bottom: none;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

/* 1行おきにうっすら色をつけて見やすく */
.price-table tbody tr:nth-child(even) {
  background-color: #faf7f0;
}

.price-table td:first-child {
  font-family: var(--font-heading);
  color: var(--color-deep);
}

/* 価格の列は右寄せ・茶色で強調 */
.price-table__price {
  text-align: right !important;
  font-family: var(--font-heading);
  color: var(--color-accent);
  white-space: nowrap;
}

.price-table__note {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  color: #777;
  font-size: 0.88rem;
}

/* ------------------------------------------------------------------
   こだわり誘導セクション（トップ）
   ------------------------------------------------------------------ */
.feature-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background-color: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-cta__img {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.feature-cta__body {
  padding: 50px 46px;
}

.feature-cta__body h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-deep);
  margin-bottom: 18px;
  line-height: 1.5;
}

.feature-cta__body p {
  color: #555;
  margin-bottom: 28px;
}

/* ------------------------------------------------------------------
   アクセス簡易表示（トップ）
   ------------------------------------------------------------------ */
.access-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.access-brief__map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px dashed #cfc7b3;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list .label {
  flex: 0 0 120px;
  font-family: var(--font-heading);
  color: var(--color-main);
}

.info-list .value {
  flex: 1;
}

/* ------------------------------------------------------------------
   ストーリーページ（こだわり・歴史）
   ------------------------------------------------------------------ */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.story-block:last-child {
  margin-bottom: 0;
}

/* 偶数番目は画像を右に（交互レイアウト） */
.story-block.is-reverse .story-block__img {
  order: 2;
}

.story-block__img {
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-block__body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-deep);
  margin-bottom: 18px;
}

.story-block__body h3 .num {
  color: var(--color-main);
  font-size: 1.1rem;
  display: block;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.story-block__body p {
  color: #555;
}

/* 製造ステップ（アイコン＋テキスト） */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 34px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.step__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-color: var(--color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.step__num {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--color-main);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-deep);
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.88rem;
  color: #666;
}

/* 職人の想い（引用風） */
.thought {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 56px 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.thought::before {
  content: "“";
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-soft);
  position: absolute;
  top: 10px;
  left: 26px;
  line-height: 1;
}

.thought p {
  font-size: 1.1rem;
  color: #444;
  position: relative;
}

.thought p + p {
  margin-top: 1.2em;
}

/* ------------------------------------------------------------------
   1枚画像セクション（コラージュ・カタログ画像用）
   ------------------------------------------------------------------ */
.feature-image {
  max-width: 900px;
  margin: 0 auto;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ------------------------------------------------------------------
   会社概要・アクセスページ
   ------------------------------------------------------------------ */
.info-table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid #e7dfcc;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  font-family: var(--font-heading);
  color: var(--color-deep);
  background-color: var(--color-soft);
  width: 180px;
  font-weight: 500;
}

/* メールアドレスのリンク */
.link-mail {
  color: var(--color-main);
  text-decoration: underline;
  word-break: break-all;
}
.link-mail:hover {
  color: var(--color-deep);
}

/* 表の中の注意書き（時間外対応など） */
.note-strong {
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* 販売店カード */
.shop-info {
  max-width: 760px;
  margin: 40px auto 0;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--color-main);
}

.shop-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-deep);
  margin-bottom: 14px;
}

.shop-info p {
  color: #555;
  margin-bottom: 6px;
}

/* 取扱店舗一覧 */
.store-list {
  max-width: 760px;
  margin: 30px auto 0;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 40px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--color-accent);
  text-align: left; /* 中央寄せセクション内でも左揃えにする */
}

.store-list h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-deep);
  margin-bottom: 16px;
}

.store-list__items {
  list-style: none;
  margin-bottom: 8px;
}

.store-list__items li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: #444;
  border-bottom: 1px dashed #ddd4bf;
}

.store-list__items li:last-child {
  border-bottom: none;
}

/* 行頭の茶葉マーク */
.store-list__items li::before {
  content: "🍃";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.9rem;
}

.store-list__sub {
  margin-top: 18px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  color: var(--color-main);
  font-size: 0.95rem;
}

/* 写真付きの販売店カード（写真＋テキストを横並び） */
.shop-info--with-photo {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
}

.shop-info__photo {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

@media (max-width: 640px) {
  .shop-info--with-photo {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .shop-info__photo {
    height: 200px;
  }
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ------------------------------------------------------------------
   お問い合わせフォーム
   ------------------------------------------------------------------ */
.form {
  max-width: 680px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 46px 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form__group {
  margin-bottom: 26px;
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-deep);
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.form__label .required {
  color: #c0392b;
  font-size: 0.78rem;
  margin-left: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d8cfb8;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: #fdfbf6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(92, 138, 60, 0.15);
}

.form__textarea {
  min-height: 160px;
  resize: vertical;
}

/* 迷惑メール対策の隠し項目（画面には表示しない） */
.is-hidden-field {
  display: none;
}

/* エラーメッセージ */
.form__error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 6px;
  display: none;
}

.form__input.is-error,
.form__textarea.is-error {
  border-color: #c0392b;
  background-color: #fdf3f2;
}

.form__submit {
  text-align: center;
  margin-top: 10px;
}

/* 送信完了メッセージ */
.form-thanks {
  display: none;
  text-align: center;
  background-color: var(--color-white);
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-thanks .icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
}

.form-thanks h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-deep);
  margin-bottom: 14px;
}

.form-thanks p {
  color: #555;
}

/* 送信内容の確認（控え）欄 */
.thanks-recap {
  text-align: left;
  max-width: 520px;
  margin: 30px auto 0;
  background-color: #fbf9f3;
  border: 1px solid #e3dcc8;
  border-radius: 12px;
  padding: 24px 26px;
}

.thanks-recap__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-deep);
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #d8cfb8;
}

.thanks-recap__list {
  margin: 0;
}

.thanks-recap__list dt {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-main);
  margin-bottom: 3px;
}

.thanks-recap__list dd {
  margin: 0 0 14px 0;
  color: var(--color-text);
  white-space: pre-wrap;
  word-break: break-word;
}

.thanks-recap__list dd:last-of-type {
  margin-bottom: 0;
}

.thanks-recap__note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: #888 !important;
  line-height: 1.7;
}

/* 問い合わせ先の補足 */
.contact-note {
  max-width: 680px;
  margin: 30px auto 0;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

/* ------------------------------------------------------------------
   フッター（全ページ共通）
   ------------------------------------------------------------------ */
.footer {
  background-color: var(--color-deep);
  color: #e9e4d6;
  padding: 56px 0 26px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__about {
  font-size: 0.9rem;
  color: #c7c0ad;
  line-height: 1.9;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__list {
  list-style: none;
  font-size: 0.9rem;
}

.footer__list li {
  margin-bottom: 10px;
  color: #c7c0ad;
}

.footer__list a:hover {
  color: var(--color-white);
}

.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: #9aa183;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ------------------------------------------------------------------
   汎用：中央ボタン配置
   ------------------------------------------------------------------ */
.text-center {
  text-align: center;
}

.mt-50 {
  margin-top: 50px;
}

/* ==================================================================
   レスポンシブ（スマホ・タブレット対応）
   ================================================================== */

/* タブレット以下 */
@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-cta,
  .access-brief,
  .story-block {
    grid-template-columns: 1fr;
  }
  .story-block.is-reverse .story-block__img {
    order: 0; /* スマホでは画像を上に統一 */
  }
  .feature-cta__img,
  .story-block__img {
    min-height: 260px;
    height: 260px;
  }
}

/* スマホ */
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* ハンバーガーメニュー表示 */
  .hamburger {
    display: flex;
  }

  /* ナビをスライドメニューに */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-bg);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    padding-top: 90px;
  }

  .nav.is-open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0 30px;
  }

  .nav__list li {
    border-bottom: 1px solid #e0d8c4;
  }

  .nav__list a {
    display: block;
    padding: 18px 0;
    font-size: 1.05rem;
  }

  .nav__list a::after {
    display: none;
  }

  .nav__contact-btn {
    text-align: center;
    margin-top: 20px;
  }

  /* メニューを開いたとき背景を暗くする */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: 999;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .form,
  .form-thanks {
    padding: 32px 22px;
  }

  .info-table th {
    width: 110px;
    padding: 14px 14px;
    font-size: 0.9rem;
  }

  .info-table td {
    padding: 14px 14px;
  }

  /* 価格表：スマホでは余白を詰めて見やすく */
  .price-table th,
  .price-table td {
    padding: 12px 12px;
    font-size: 0.92rem;
  }
}
