/* ===================================================================
   RESET（リセット系）
=================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================================================================
   BASE（全体の共通設定）
=================================================================== */
body {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
}

/* ===================================================================
   HEADER（ヘッダー）
=================================================================== */
/* ヘッダー全体 */
.site-header {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ヘッダー中身のレイアウト */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;            /* 基本は中央揃え */
}

/* ロゴ切り替え */
.logo-pc {
  height: 60px;
  width: auto;
  display: block;
}
.logo-sp {
  height: 50px;
  width: auto;
  display: none;
}

/* 右上バナー（PC用） */
.shipping-pc {
  height: 50px;
  width: auto;
  display: block;                 /* PCでは表示 */
  align-self: center;
  position: relative;
  top: 4px;                       /* 微調整 */
}

/* 右上バナー（スマホ用） */
.shipping-sp {
  height: 40px;
  width: auto;
  display: none;                  /* デフォは非表示 */
  align-self: center;
  position: relative;
  top: 2px;                       /* 微調整（好みに応じて変更可） */
}

/* ▼ モバイル時（768px以下） */
@media (max-width: 768px) {
  .logo-pc { display: none; }
  .logo-sp { display: block; }

  .shipping-pc { display: none; } /* PC用バナーを消す */
  .shipping-sp { display: block; }/* スマホ用バナーを出す */
}

/* ヘッダーとファーストビューの境目ライン（現状維持） */
.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(to right, #b8860b, #ffd700);
  margin-top: 10px;
}

/* ===================================================================
   HERO（ファーストビュー）
=================================================================== */
/* 背景設定 */
.hero {
  background-image: url("../images/mv.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px 40px;
  position: relative;
  text-align: center;
  color: #fff;
}

/* オーバーレイレイヤー */
.hero-overlay {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
}

/* キャッチコピー（縦書き） */
.hero-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2.25rem;
  line-height: 3.3rem;
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'YuMincho', serif;
  color: #000;
  font-weight: bold;
  position: relative;
  z-index: 0;
  -webkit-text-stroke: 3px rgba(255,255,255,0.98);
  paint-order: stroke fill;
  text-shadow:
    0 0 8px   rgba(255,255,255,1),
    0 0 16px  rgba(255,255,255,0.98),
    0 0 28px  rgba(255,255,255,0.96),
    0 0 42px  rgba(255,255,255,0.92),
    0 0 64px  rgba(255,255,255,0.88),
    0 0 90px  rgba(255,255,255,0.82),
    2px 0 0   rgba(255,255,255,0.98),
   -2px 0 0   rgba(255,255,255,0.98),
    0 2px 0   rgba(255,255,255,0.98),
    0 -2px 0  rgba(255,255,255,0.98);
}

/* キャッチコピー背景（白ぼかし） */
.hero-text::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  background: rgba(255,255,255,0.85);
  filter: blur(18px);
  border-radius: 24px;
  z-index: -1;
  pointer-events: none;
}

/* ▼ モバイル時（768px以下） */
@media (max-width: 768px) {
  .logo-pc { display: none; }
  .logo-sp { display: block; }
  .shipping { display: none !important; }
  .hero-text { display: none !important; }
}

/* タイトル画像 */
.hero-title {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-top: -20px;
}

/* モバイル調整 */
@media (max-width: 768px) {
  .hero-text {
    -webkit-text-stroke: 2px rgba(255,255,255,0.98);
    text-shadow:
      0 0 6px  rgba(255,255,255,1),
      0 0 12px rgba(255,255,255,0.98),
      0 0 22px rgba(255,255,255,0.95),
      0 0 34px rgba(255,255,255,0.9),
      1.5px 0 0 rgba(255,255,255,0.98),
     -1.5px 0 0 rgba(255,255,255,0.98),
      0 1.5px 0 rgba(255,255,255,0.98),
      0 -1.5px 0 rgba(255,255,255,0.98);
  }
  .hero-text::before {
    inset: -8px -14px;
    filter: blur(14px);
  }
}

/* ===================================================================
   CAPTION（キャプションセクション）
=================================================================== */
.caption-section {
  background-color: #000;
  padding: 30px 0;
  text-align: center;
}

.hero-caption {
  display: inline-block;
  max-width: 600px;
  width: 100%;
  height: auto;
}

/* =========================================================
   CONNECT × KENJITSUYA コラボ企画（画像版）
========================================================= */
.top-collab {
  background: #000;       /* 背景黒で画像を引き立てる */
  text-align: center;
  padding: 60px 20px;
}

.top-collab__img {
  max-width: 1000px;      /* PCでは最大1000pxまで */
  width: 100%;            /* 横幅100%で親にフィット */
  height: auto;           /* 縦横比を保持 */
  display: inline-block;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .top-collab {
    padding: 40px 16px;   /* 余白を少し小さく */
  }
  .top-collab__img {
    max-width: 100%;      /* スマホは画面幅いっぱい */
  }
}

/* ===================================================================
   ITEM LIST（商品一覧セクション）
=================================================================== */
.item-section {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
}

.item-container {
  display: flex;
  justify-content: center;
  gap: 24px;                 /* 少し広めに */
  flex-wrap: wrap;
  max-width: 1200px;         /* ← コンテナ幅を拡大（3列が大きく取れる） */
  margin: 0 auto;
}

/* ▼ 商品ボックス（上：商品画像／下：会員画像） */
.item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(300px, 32vw, 380px);  /* ← ここでカード幅を拡大＆可変 */
}

.item-container a {
  display: block;
  transition: filter 0.3s ease;
}
.item-container a:hover {
  filter: brightness(1.3) saturate(1.6);
}

/* 上段商品画像（正方形で拡大） */
.item-img {
  width: 100%;               /* ← 親幅いっぱい */
  aspect-ratio: 1 / 1;       /* ← 正方形を維持 */
  height: auto;              /* ← 高さは自動（aspect-ratioに任せる） */
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  display: block;
}

/* 下段会員画像（上と同じ幅にフィット） */
.item-subimg {
  display: block;
  margin-top: 6px;
  width: 100%;
  height: auto;
}

/* --- レスポンシブ微調整（任意） --- */
@media (max-width: 1024px) {
  .item-container { gap: 20px; }
  .item-box { width: clamp(280px, 45vw, 340px); }
}

@media (max-width: 768px) {
  .item-box {
    width: min(92vw, 520px);  /* スマホは1列でドンと */
    margin-bottom: 40px;      /* ← 商品ごとに余白を追加して区切りを明確に */
  }
  .item-box:last-child {
    margin-bottom: 0;         /* 最後の商品は余白なし */
  }
}

/* ===================================================================
   縦並び画像セクション（top-stack）
=================================================================== */
.top-stack {
  background: #000;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* ← 必要なら48pxに調整OK */
}

.top-stack__item {
  display: block;
  width: min(1200px, 96vw);
  margin: 0 auto;
  text-decoration: none;
  text-align: center;
}

.top-stack__img {
  display: block;
  width: 80%;  /* PCは80%で中央寄せ */
  height: auto;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .55);
  transition: filter .28s ease, transform .28s ease, box-shadow .28s ease;
  will-change: transform, filter;
}

.top-stack__item:hover .top-stack__img,
.top-stack__item:focus-visible .top-stack__img {
  filter: brightness(1.06) contrast(1.04) saturate(1.18);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .6);
  outline: 0;
}

.top-stack__item:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 6px;
  box-shadow: 0 0 0 6px #ffd70066;
}

.top-stack__item:active .top-stack__img {
  transform: translateY(0) scale(.995);
  filter: brightness(1.02) saturate(1.1);
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
  .top-stack {
    padding: 20px 10px;
    gap: 20px;
  }

  .top-stack__img {
    width: 100%;   /* タブレットは全幅に広げる */
    border-width: 1px;
  }
}

/* ===== スマホ専用（600px以下は非表示） ===== */
@media (max-width: 600px) {
  .top-stack {
    display: none;
  }
}

/* ===== 低モーション環境 ===== */
@media (prefers-reduced-motion: reduce) {
  .top-stack__img { transition: none; }
  .top-stack__item:hover .top-stack__img,
  .top-stack__item:focus-visible .top-stack__img,
  .top-stack__item:active .top-stack__img {
    transform: none;
  }
}

/* ================================================================
   商品詳細画像セクション（フル幅）— ホバー無効版（レスポンシブ対応）
================================================================ */
.product-hero__container > .vertical-item-section {
  /* ヒーローの左右カラムをぶち抜いて全幅表示 */
  grid-column: 1 / -1;

  /* デフォルト: 100vw でフルブリード */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* モバイルでの微妙な1pxはみ出し対策 */
  overflow-x: clip;  /* 対応外ブラウザは下の hidden が効く */
  overflow-x: hidden;

  padding: 0;
}

/* 新しいビューポート単位が使える環境ではそっちを優先（アドレスバー縮み対策） */
@supports (width: 100svw) {
  .product-hero__container > .vertical-item-section {
    width: 100svw;
    margin-left: calc(50% - 50svw);
    margin-right: calc(50% - 50svw);
  }
}
@supports (width: 100dvw) {
  .product-hero__container > .vertical-item-section {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
  }
}

/* セクション内の並びと画像の見た目 */
.vertical-item-section {
  display: block;   /* 単純な縦積みでOK */
  gap: 0;           /* 念のためゼロに固定（block なので効かなくても害なし） */
}

.vertical-item-section .vertical-item {
  width: 100%;
  max-width: none;  /* 完全フル幅 */
}

/* ホバー効果を完全オフ（統一） */
.vertical-item-section .vertical-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border: 0;
  box-shadow: none;

  /* 既存のtransition/フィルタ/拡大を無効化 */
  transition: none !important;
  filter: none !important;
  transform: none !important;
}

/* 念のため :hover 側も強制的に無効化 */
.vertical-item-section .vertical-img:hover {
  transition: none !important;
  filter: none !important;
  transform: none !important;
}

/* ===== スマホ微調整 ===== */
@media (max-width: 768px) {
  .product-hero__container > .vertical-item-section {
    /* 端末によってはスクロールバー幅起因のズレが出るので再度クリップ */
    overflow-x: clip;
  }
}

/* ===================================================================
   CLOSING（最後のテキストセクション）
=================================================================== */
.closing-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-size: 2.8rem;
  line-height: 4.4rem;
  font-weight: 500;
  border-top: 2px solid #b8860b;
}
@media (max-width: 768px) {
  .closing-section {
    font-size: 1rem;
    line-height: 1.6rem;
    padding: 30px 15px;
  }
}

/* ===================================================================
   FOOTER（フッター）
=================================================================== */
.site-footer {
  background-color: #000;
  padding: 40px 0 28px;      /* 下に少し余白足し（リンク分） */
  text-align: center;
}

.footer-logo {
  width: 100%;
  height: auto;
  display: inline-block;
}

/* PC表示 */
@media screen and (min-width: 769px) {
  .footer-logo {
    max-width: 750px;
  }
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
  .footer-logo {
    max-width: 300px;
  }
}

/* ---------------- フッター内リンク（特商法 / プライバシー） ---------------- */
.footer-links {
  margin-top: 14px;
  display: inline-flex;          /* 中央寄せ＋横並び */
  align-items: center;
  justify-content: center;
  gap: .6em;                     /* リンク間の余白 */
  flex-wrap: wrap;               /* 狭い幅で折り返し可 */
  font-size: .95rem;
  line-height: 1.6;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 4px 6px;              /* タップしやすく */
  border-radius: 4px;
  transition: filter .2s ease, text-decoration-color .2s ease;
}

.footer-links a:hover {
  text-decoration: underline;
  filter: brightness(1.1);
}

.footer-links a:focus-visible {
  outline: 2px solid #ffd700;    /* アクセシビリティ */
  outline-offset: 2px;
}

.footer-links .divider {
  color: #888;
  margin: 0 .2em;
  user-select: none;
}

/* ===================================================================
   PRODUCT PAGE — HERO（ギャラリー＋右テキスト＋価格＆赤ボタン）
   レスポンシブ対応版
=================================================================== */
.product-hero {
  background: #000;
  padding: 40px 20px;
}

.product-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 600px) 1fr; /* 左：ギャラリー / 右：テキスト */
  gap: 32px;
  align-items: start;
}

/* タブレット以下は1カラム */
@media (max-width: 980px) {
  .product-hero__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---------- ギャラリー ---------- */
.gallery { width: 100%; }

.gallery__main {
  width: 100%;
  aspect-ratio: 1 / 1;       /* 正方形に見せる */
  object-fit: cover;         /* 余白なしでトリミング */
  display: block;
  border: 2px solid #fff;
  background: #111;
}

.gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.gallery__thumb {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery__thumb img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border: 2px solid #fff;
  opacity: .75;
  transition: transform .15s ease, opacity .15s ease, filter .15s ease;
}

.gallery__thumb:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery__thumb.is-active img {
  opacity: 1;
  filter: saturate(1.15) brightness(1.05);
  outline: 2px solid #ffd700;   /* アクティブ枠 */
  outline-offset: 2px;
}

/* サムネイルはスマホで小さめに */
@media (max-width: 600px) {
  .gallery__thumb img {
    width: 64px;
    height: 64px;
  }
}

/* ---------- 右テキスト ---------- */
.product-hero__right { color: #fff; }

.product-hero__brand {
  font-size: .95rem;
  color: #ccc;
  margin: 0 0 8px;
}

.product-hero__title {
  font-size: 2.2rem;
  line-height: 1.4;
  margin: 0 0 10px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .product-hero__title { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .product-hero__title { font-size: 1.4rem; }
}

/* ---------- 価格表示 ---------- */
.product-hero__price {
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: .6em;
  white-space: nowrap;        /* 改行させない（1行固定） */
  flex-wrap: wrap;            /* 狭い画面では折り返し許可 */
}

.product-hero__price .price-amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
}

.product-hero__price .price-sub {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ddd;
}

.product-hero__price .price-sub .price-discount {
  color: #e60012;
  font-weight: 800;
}

/* スマホではフォントを少し小さめに */
@media (max-width: 600px) {
  .product-hero__price .price-amount { font-size: 1.6rem; }
  .product-hero__price .price-sub { font-size: 1.1rem; }
}

/* 税込などをひと固まりで折り返さない */
.nowrap { white-space: nowrap; }

/* ---------- 赤いバナー（カートに入れる） ---------- */
.product-hero__cta { margin: 0; }

.cta-red {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  background: #c40000;
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(196,0,0,.35);
  transition: filter .2s ease, transform .02s ease;
}

.cta-red:hover  { filter: brightness(1.06); }
.cta-red:active { transform: translateY(1px); }
.cta-red:focus  { outline: 3px solid #ffd700; outline-offset: 2px; }

.product-hero__cta { margin: 0 0 3em; }

@supports (margin-bottom: 1lh) {
  .product-hero__cta { margin-bottom: 3lh; }
}

/* ====== 追従カート（中段固定・右寄せ） ====== */
.floating-cta{
  position: fixed;
  right: clamp(12px, 2.2vw, 24px);  /* 画面幅で少しだけ可変 */
  top: 50%;                         /* ← 中段 */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;            /* 右寄せで縦積み */
  gap: 10px;
  z-index: 1000;
  /* 初期は非表示（IntersectionObserverで .is-visible を付ける） */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.floating-cta.is-visible{
  opacity: 1;
  pointer-events: auto;
}
.floating-cta.is-hidden{
  opacity: 0;
  pointer-events: none;
}

/* 白い案内ラベル「ご注文はこちら」 */
.floating-cta__note{
  position: relative;
  background: #fff;
  color: #111;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.floating-cta__note::after{
  content: "";
  position: absolute;
  right: 18px;
  bottom: -7px;                    /* 吹き出しの三角（下向き） */
  border: 7px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.07));
}

/* 赤い丸角ボタン本体 */
.floating-cta__button{
  display: inline-block;
  background: #c40000;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(196,0,0,.35);
  transition: filter .2s ease, transform .02s ease;
}
.floating-cta__button:hover{  filter: brightness(1.06); }
.floating-cta__button:active{ transform: translateY(1px); }
.floating-cta__button:focus { outline: 3px solid #ffd700; outline-offset: 3px; }

/* === モバイル調整（任意：下部バー風） === */
@media (max-width: 980px){
  .floating-cta{
    top: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    transform: none;
    left: 12px;
    right: 12px;
    align-items: stretch;          /* 横幅いっぱい */
  }
  .floating-cta__note{ display: none; }     /* モバイルはラベル非表示でスッキリ */
  .floating-cta__button{
    text-align: center;
    padding: 16px 20px;
  }
}

/* ===================================================================
   FOOTER（フッター）— ロゴ中央＋リンク中央
=================================================================== */
.site-footer {
  background: #000;
  padding: 48px 20px 32px;
  text-align: center;                 /* 中央寄せ */
}

.footer-logo {
  display: block;                     /* インライン要素からブロックに */
  margin: 0 auto 12px;                /* ど真ん中配置＋下に少し余白 */
  width: 100%;
  max-width: 740px;                   /* PC時の最大幅 */
  height: auto;
}

/* フッターのテキストリンク */
.footer-links {
  display: inline-flex;               /* 中央で横並び */
  gap: 12px;                          /* 区切りとの間隔 */
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links .divider {
  color: #666;                        /* 仕切り線の色 */
  user-select: none;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .site-footer { padding: 36px 16px 28px; }
  .footer-logo { max-width: 320px; }  /* スマホ時の最大幅 */
  .footer-links { font-size: 0.9rem; gap: 10px; }
}

/* ===================================================================
   LEGAL：特定商取引法ページ（tokusyo.html）
=================================================================== */
.legal {
  background: #000;
  color: #fff;
  padding: 48px 20px 72px;
}
.legal__container {
  max-width: 1000px;
  margin: 0 auto;
}
.legal__title {
  margin: 0 0 20px;
  font-size: 1.9rem;
  line-height: 1.3;
  font-weight: 700;
  border-left: 6px solid #ffd700; /* 金色ラインで見出し感 */
  padding-left: 12px;
}

/* 表（2カラム） */
.legal__table {
  width: 100%;
  border-collapse: collapse;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;                 /* 角丸を効かせる */
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}
.legal__table th,
.legal__table td {
  padding: 14px 18px;
  border-bottom: 1px solid #2a2a2a;
  vertical-align: top;
}
.legal__table tr:last-child th,
.legal__table tr:last-child td {
  border-bottom: none;
}
.legal__table th {
  width: 260px;
  text-align: left;
  font-weight: 700;
  color: #ddd;
  letter-spacing: .02em;
  background: linear-gradient(90deg, rgba(255,215,0,.08), transparent 40%);
}
.legal__table td {
  color: #fff;
  line-height: 1.8;
}
.legal__table a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 注釈 */
.legal__notes {
  margin-top: 16px;
  color: #aaa;
  font-size: .95rem;
}

/* --- スマホ最適化（1行を縦積みカード風） --- */
@media (max-width: 640px) {
  .legal { padding: 28px 14px 52px; }
  .legal__title {
    font-size: 1.4rem;
    border-left-width: 4px;
    padding-left: 10px;
  }
  .legal__table tr { display: block; }
  .legal__table th {
    display: block;
    width: auto;
    border-bottom: 1px dashed #2a2a2a;
    background: rgba(255,215,0,.08);
  }
  .legal__table td {
    display: block;
    padding-top: 10px;
  }
  .legal__table {
    border-radius: 10px;
  }
}

/* --- 印刷用（白背景で省インク） --- */
@media print {
  body { background: #fff !important; color: #000 !important; }
  .site-header, .site-footer { display: none !important; }
  .legal { padding: 0; }
  .legal__title { color: #000; border-left-color: #000; }
  .legal__table {
    background: #fff;
    border: 1px solid #999;
    box-shadow: none;
  }
  .legal__table th {
    background: #f5f5f5;
    color: #000;
  }
  .legal__table td { color: #000; }
  .legal__table a { color: #000; text-decoration: underline; }
}

/* =========================================================
   POLICY：プライバシーポリシー（privacy.html）
========================================================= */
.policy {
  background: #000;
  color: #fff;
  padding: 48px 20px 72px;
}
.policy__container {
  max-width: 1000px;
  margin: 0 auto;
}
.policy__title {
  margin: 0 0 24px;
  font-size: 1.9rem;
  line-height: 1.3;
  font-weight: 700;
  border-left: 6px solid #ffd700;   /* 金ラインで見出し */
  padding-left: 12px;
}

/* セクション */
.policy__section {
  margin: 26px 0;
}
.policy__section h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
  background: linear-gradient(90deg, rgba(255,215,0,.1), transparent 45%);
}
.policy__section p {
  margin: 0;
  line-height: 1.9;
  color: #fff;
}

/* リスト */
.policy__list {
  margin: 6px 0 0;
  padding-left: 1.3em;
}
.policy__list li {
  margin: .25em 0;
  line-height: 1.9;
}
.policy__list li::marker {
  color: #ffd700;                   /* 箇条書きの点を金色に */
}

/* 住所表記 */
.policy__address {
  margin: 4px 0 0;
  font-style: normal;               /* address既定の斜体を解除 */
  line-height: 1.9;
}

/* リンク */
.policy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy a:hover { opacity: .9; }

/* --- スマホ最適化 --- */
@media (max-width: 640px) {
  .policy { padding: 28px 14px 52px; }
  .policy__title {
    font-size: 1.5rem;
    border-left-width: 4px;
    padding-left: 10px;
  }
  .policy__section h2 {
    font-size: 1.15rem;
    padding-bottom: 6px;
  }
}

/* --- 印刷用（白背景・省インク） --- */
@media print {
  body { background: #fff !important; color: #000 !important; }
  .site-header, .site-footer { display: none !important; }
  .policy { padding: 0; }
  .policy__title { color: #000; border-left-color: #000; }
  .policy__section h2 {
    background: none;
    border-bottom: 1px solid #999;
    color: #000;
  }
  .policy__section p,
  .policy__list li,
  .policy__address { color: #000; }
  .policy a { color: #000; text-decoration: underline; }
}

/* =========================================================
   TOP：受賞実績（top-award）— フル幅＆ホバー無効
========================================================= */
.top-award {
  padding: 40px 0 24px; /* ほどよい上下マージン */
  text-align: center;
}

/* ラッパーを画面幅いっぱいにしてフルブリード */
.top-award__media {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* 画像は100%表示、枠・角丸・影も外す */
.top-award__img {
  display: block;
  width: 100% !important;       /* 親幅にフィット */
  height: auto;                 /* 縦横比キープ */
  margin: 0 auto;               /* 中央寄せ */
  transition: none !important;  /* アニメ無効 */
  filter: none !important;      /* 彩度/明るさなど無効 */
  transform: none !important;   /* ふわっと無効 */
  border: 0;                    /* フルブリードなので枠や角丸は外す */
  border-radius: 0;
  box-shadow: none;
}

/* hover / focus / active でも見た目は変えない */
.top-award__media:hover .top-award__img,
.top-award__media:focus-visible .top-award__img,
.top-award__media:active .top-award__img {
  filter: none !important;
  transform: none !important;
  box-shadow: none !important;
}

/* キーボードフォーカス枠もオフ（必要なら削除） */
.top-award__media:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
  .top-award {
    padding: 20px 0 12px; /* スマホは余白を少し小さめに */
  }

  .top-award__img {
    max-width: 90%; /* スマホでは少し余白を残して表示 */
  }
}

/* =========================================================
   TOP：価格ダウン告知（top-pricedown）
========================================================= */
.top-pricedown {
  background: #000;              /* サイト背景に合わせる */
  padding: 28px 0 24px;          /* 上下の余白 */
  text-align: center;            /* 中央寄せを保証（追加） */
}

/* 画像ラッパー */
.top-pricedown__media {
  width: 100%;                   /* PC/SPとも100%に修正 */
  max-width: 1100px;             /* 上限を設定（必要なら残す） */
  margin: 0 auto;                /* 中央寄せ */
}

/* 画像：装飾は最小限・アニメ無し */
.top-pricedown__img {
  display: block;
  width: 100%;                   /* 親幅いっぱいに修正 */
  height: auto;
  margin: 0 auto;                /* 念のため中央寄せ */
  border: 0;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
  transition: none;              /* アニメ無効 */
  filter: none;
  transform: none;
}

/* スマホは横幅いっぱいに */
@media (max-width: 768px) {
  .top-pricedown__media {
    width: 96vw;                 /* ほぼ全幅に変更 */
    max-width: none;
  }
  .top-pricedown__img {
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
  }
}

/* 低モーション環境 */
@media (prefers-reduced-motion: reduce) {
  .top-pricedown__img { transition: none; }
}

/* hover / focus / active でも見た目固定 */
.top-pricedown__media:hover .top-pricedown__img,
.top-pricedown__media:focus-visible .top-pricedown__img,
.top-pricedown__media:active .top-pricedown__img {
  filter: none;
  transform: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}
