/* ・縁起柄特集 */
.more-button {
  width: 299px;
  margin: 40px auto 90px;
}

.more-button a {
  position: relative;
  display: block;
  padding: calc(15 / 225 * 100%) 0;
  font-size: 14px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  background: #a7945f;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration: none !important;
}

.more-button a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(20 / 299 * 100%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 8px;
  background-image: url(/img/usr/common/more_btn_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.label-soldout {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "游明朝", YuMincho,
    "MS P明朝", serif;
  text-transform: uppercase;
}

.more-button button {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "游ゴシック", YuGothic,
    "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  background: transparent;
  color: #fff;
  padding: 10px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #a7945f;
}

.more-button button {
  position: relative;
  display: inline-block;
  /* width: 70%; */
}

.more-button button::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 5px;
  height: 8px;
  background: url("/img/usr/common/more_btn_arrow.png") no-repeat center / contain;
}

.more-button button:hover {
  background: #a7945f;
  color: #fff;
}

.taya-lp .block-wide-top {
  margin-top: 0 !important;
}

.taya-lp .title-sub {
  margin: 120px auto 0;
}

.taya-lp .block-half2 {
  margin-top: 20px !important;
}

.taya-lp .block-text h3 {
  margin-top: 60px;
}

.title-top {
  margin-top: 0 !important;
}

.taya-lp .block-wide-bottom {
  margin-top: 130px;
}

.taya-lp h1 {
  margin: 50px auto 50px;
}

@media screen and (max-width: 768px) {
  .taya-lp .btn-wrap .taya-btn {
    width: 70%;
    padding: calc(11 / 225 * 100%) 0 !important;
    font-size: 15px;
  }

  .more-button button {
    padding: 10px 60px !important;
  }

  .taya-lp .block-half2{
    margin-top: 0 !important;
  }

  .taya-lp .title-sub{
    margin-top: 70px;
  }
}


/* =========================================
   縁起物css (アイコン左・テキスト右 ＆ 高さ削減版)
   ========================================= */

.taya-lp .category-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
}

.taya-lp .category-btn {
  /* 変更点 1: アイコンを左、文字を右へ（横並び） */
  display: flex;
  flex-direction: row;
  /* 縦並び (column) から 横並び (row) へ変更 */
  align-items: center;
  /* アイコンとテキストを垂直中央揃え */
  gap: 8px;
  /* アイコンと文字の間にスペースを追加 */

  /* 変更点 2: ボタンの高さを削減（垂直パディングを削減） */
  width: 25%;
  padding: 10px 15px;
  /* 垂直方向のパディングを 15px から 10px に削減 */

  border: 1px solid var(--taya-gold);
  border-radius: 1px;
  text-align: left;
  /* テキストブロック内の文字が左に揃うように */
  text-decoration: none;
  color: var(--taya-black);
  transition: background-color 0.3s, opacity 0.3s;
  background-color: #fcfcfc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.taya-lp .category-btn:hover {
  background-color: #dfc88c;
  opacity: 0.9;
}

/* NEW: テキストとサブテキストを縦に積むラッパー */
.taya-lp .category-btn .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
  /* 行間を詰めて高さをさらに削減 */
}

.taya-lp .category-btn .icon {
  font-size: 1.5rem;
  line-height: 1;
  /* margin-bottom: 5px; は横並びのため削除（gapで調整） */
  flex-shrink: 0;
  /* アイコンが縮まないように固定 */
}

.taya-lp .category-btn .text {
  font-size: 1.0rem;
  font-weight: bold;
  color: var(--taya-black);
  margin-bottom: 1px;
  /* サブテキストとの間隔を 2px から 1px に削減 */
  display: block;
}

.taya-lp .category-btn .sub-text {
  font-size: 0.8rem;
  color: #616060;
  display: block;
}

.block-2col {
  flex-direction: row-reverse;
}

/* 768px以下 (スマートフォン対応) */
@media screen and (max-width: 768px) {
  .taya-lp .category-grid {
    flex-wrap: wrap;
    gap: 10px;
  }

  .taya-lp .category-btn {
    width: calc(50% - 5px);
    padding: 8px 10px;
    /* SPでも垂直パディングをさらに削減 */
  }

  .taya-lp .block-2col {
    display: block !important;
  }

  .taya-lp .block {
    padding: 0 20px;
  }

  .taya-lp .taya-btn {
    padding: 10px 36px !important;
  }

  .engimono_tie {
    font-size: 14px;
  }

  .block-visual {
    margin-bottom: 20px;
  }

  .taya-lp h1 {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .taya-lp h1 span {
    font-size: 1.0rem;
  }

  .taya-lp .category-grid {
    display: flex;
    /* 念のため明示 */
    flex-direction: column;
    /* ← 横→縦に変更 */
    flex-wrap: nowrap;
    /* ← wrap解除 */
    align-items: center;
    /* ← 左右中央揃え */
    gap: 20px;
  }

  .taya-lp .category-btn {
    width: 70%;
    /* 50% をやめる */
    max-width: 360px;
    /* ← 余白感を作る */
    padding: 10px 14px;
  }
}

html {
  scroll-behavior: smooth;
}

/* nabe2.css */
/* =========================================
   NABE2.CSS - GINZA TAYA特集ページ
   （.taya-lp 内専用スコープ版）
   ========================================= */

/* ---- ゴールドトーン（グローバルでOK） ---- */
:root {
  --taya-gold: #a7945f;
  --taya-black: #2b2b2b;
}

/* ---- 特集ページ全体のベース設定 ---- */
.taya-lp {
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
  color: #444444;
  background-color: #fff;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* 改行PCでは非表示（特集ページ内のみ） */
.taya-lp .is-sp {
  display: none;
}

/* スマホ（768px以下）でだけ改行表示 */
@media screen and (max-width: 768px) {
  .taya-lp .is-sp {
    display: block;
  }
}

/* =========================================
   見出し・リード文スタイル
   ========================================= */

/* ---- h1見出し ---- */
.taya-lp h1 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin: 50px auto 10px;
  letter-spacing: 0.08em;
}

.taya-lp h1 span {
  display: block;
  font-size: 1.3rem;
  color: var(--taya-gold);
  font-family: "Crimson Text", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* スマホ：h1を80%サイズに */
@media screen and (max-width: 768px) {
  .taya-lp h1 {
    font-size: 1.3rem;
    margin: 40px auto 8px;
  }
  .taya-lp h1 span{
    margin-top: 0;
  }
}

/* リード文（h1下） */
.taya-lp .h1-lead {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 60px;
}

/* ---- h2見出し ---- */
.taya-lp h2 {
  font-size: 1.4rem;
  font-weight: 550;
  text-align: center;
  margin: 10px auto 10px;
  letter-spacing: 0.06em;
}

.taya-lp h2 span {
  display: block;
  color: var(--taya-gold);
  font-size: 1rem;
  font-family: "Crimson Text", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 590;
  margin-top: 5px;
}

.taya-lp .h2-lead {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 50px;
}

/* ---- h3見出し（左揃えタイプ）---- */
.taya-lp .nabe-h3 {
  font-size: 1.1rem;
  font-weight: 520;
  border-left: 4px solid var(--taya-gold);
  padding-left: 10px;
  margin: 50px 0 10px;
  letter-spacing: 0.05em;
  text-align: left;
}

/* リード（左揃えタイプ） */
.taya-lp .nabe-h3-lead-left {
  font-size: 0.9rem;
  margin-bottom: 30px;
  padding-left: 14px;
  text-align: left;
}

/* ---- h3-sub（センタータイプ）---- */
.taya-lp .nabe-h3-sub {
  font-size: 1.1rem;
  font-weight: 520;
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  letter-spacing: 0.08em;
  line-height: 1.9;
  margin: 0 auto 15px;
  border: none;
  padding: 0;
  width: 100%;
  display: block;
}

/* リード（センタータイプ） */
.taya-lp .nabe-h3-lead-center {
  text-align: center;
  padding-left: 0;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ---- スマホ調整 ---- */
@media screen and (max-width: 768px) {
  .taya-lp .nabe-h3 {
    font-size: 1.1rem;
  }

  .taya-lp .nabe-h3-sub {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .taya-lp .nabe-h3-lead-left,
  .taya-lp .nabe-h3-lead-center {
    font-size: 0.9rem;
  }
}

/* ---- センター見出し ---- */
.taya-lp .title-sub {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  letter-spacing: 0.08em;
  line-height: 1.9;
  margin: 80px auto 15px;
  border: none;
  padding: 0;
  width: 100%;
  display: block;
}

/* ---- センターリード ---- */
.taya-lp .lead-sub {
  text-align: center;
  padding-left: 0;
  font-size: 1rem;
  margin-top: 10px;
}

/* ---- スマホ調整 ---- */
@media screen and (max-width: 768px) {
  .taya-lp .title-sub {
    font-size: 1.3rem !important;
    line-height: 1.8;
    text-align: center !important;
  }

  .taya-lp .lead-sub {
    font-size: 0.95rem !important;
    text-align: center !important;
  }

  /* justify指定がセンターを潰さないように */
  .taya-lp .block-text p:not(.title-sub):not(.lead-sub) {
    font-size: 0.95em;
    text-align: justify;
  }
}

/* =========================================
   TAYA汎用ブロック構成スタイル
   ========================================= */

/* ---- 基本セクション ---- */
.taya-lp .block {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 1.9;
}

/* ---- セクション内リード文 ---- */
.taya-lp .block .lead {
  text-align: center;
  font-size: 1rem;
  margin: 20px 0 60px;
}

/* ---- 2カラム構成 ---- */
.taya-lp .block-2col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.taya-lp .block-text h3 {
  margin-top: 0;
  line-height: 1.6;
}

.taya-lp .block-visual,
.taya-lp .block-text {
  flex: 1;
}

.taya-lp .block-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* スマホ対応（縦並び） */
@media screen and (max-width: 768px) {
  .taya-lp .block {
    margin: 60px auto;
    /* NEW: 左右の余白を20pxから30pxに増やす */
    padding: 0 25px;
  }

  .taya-lp .block-2col {
    flex-direction: column;
    gap: 24px;
  }

  .taya-lp .block-visual img {
    height: auto;
  }

  .taya-lp .block-text p {
    font-size: 0.95em;
    text-align: justify;
  }

  .taya-lp .block .lead {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }
}

/* =========================================
   2カラム：写真＋文章カード
   ========================================= */

.taya-lp .grid-2up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* カード全体：高さ揃えのため縦flex */
.taya-lp .card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
}

/* 画像 */
.taya-lp .card-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.taya-lp .card-media a {
  display: block;
  position: relative;
  transition: transform 0.0s ease, opacity 0.0s ease;
}

.taya-lp .card-media a:hover {
  transform: none;
  opacity: 0.7;
}

/* テキスト部 */
.taya-lp .card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 0;
}

/* ボタンをカード下に揃えたい場合 */
.taya-lp .card-body .btn-wrap {
  margin-top: auto;
  text-align: center;
}

/* スマホ：1カラムに */
@media screen and (max-width: 768px) {
  .taya-lp .grid-2up {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =========================================
   3カラム：写真＋文章カード（grid-3up）
   ========================================= */

.taya-lp .grid-3up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* PC：3列 */
  gap: 15px;
}

/* PCのときだけ、3カラム全体の幅を狭める */
@media screen and (min-width: 1025px) {
  .taya-lp .grid-3up {
    max-width: 720px;
    /* ★ 好きな幅に調整：700〜820あたりが使いやすい */
    margin: 0 auto;
    /* ★ 真ん中寄せ */
  }
}

/* タブレット：2列にする（例：768〜1024pxくらい） */
@media screen and (max-width: 1024px) {
  .taya-lp .grid-3up {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* スマホ：1列にする（768px以下） */
@media screen and (max-width: 768px) {
  .taya-lp .grid-3up {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* =========================================
   単一ビジュアルブロック（1枚写真用）
   ========================================= */

.taya-lp .block-photo {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.taya-lp .block-photo img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* スマホ調整 */
@media screen and (max-width: 600px) {
  .taya-lp .block-photo {
    margin: 40px auto;
    padding: 0 10px;
  }

  .taya-lp .block-photo img {
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
}

/* まずはPC用の初期状態：PC画像だけ表示、SP画像は非表示 */
.taya-lp .block-photo img.pc {
  display: block;
}

.taya-lp .block-photo img.sp {
  display: none;
}

/* スマホのときは逆にする */
@media screen and (max-width: 700px) {
  .taya-lp .block-photo img.pc {
    display: none;
  }

  .taya-lp .block-photo img.sp {
    display: block;
  }
}

/* =========================================
   サブ画像（h3-lead下に表示）
   ========================================= */

.taya-lp .block-subimg {
  text-align: center;
  margin: 25px 0 20px;
}

.taya-lp .block-subimg img {
  width: 80%;
  max-width: 600px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .taya-lp .block-subimg img {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }
}

/* =========================================
   商品ページへボタンスタイル
   ========================================= */

.taya-lp .taya-btn {
  display: inline-block;
  background-color: var(--taya-gold);
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 8px 100px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.taya-lp .taya-btn:hover {
  background-color: #8e8052;
}

/* ボタン中央寄せラッパー */
.taya-lp .btn-wrap {
  text-align: center;
  margin-top: 20px;
}

/* =========================================
   メインビジュアル（PC・SP切り替え）
   ========================================= */

.taya-lp .main-visual {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* 画像共通設定 */
.taya-lp .main-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* PCではPC画像だけ表示 */
.taya-lp .main-visual img.pc {
  display: block;
}

.taya-lp .main-visual img.sp {
  display: none;
}

/* スマホでは逆にする */
@media screen and (max-width: 768px) {
  .taya-lp .main-visual img.pc {
    display: none;
  }

  .taya-lp .main-visual img.sp {
    display: block;
  }
}

/* キャプション */
.taya-lp .main-visual .caption {
  position: absolute;
  bottom: 8%;
  left: 6%;
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.5);
  max-width: 85%;
  padding: 12px 20px;
  border-radius: 4px;
}

/* サブタイトル */
.taya-lp .main-visual .caption span {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .taya-lp .main-visual .caption {
    font-size: 1.3rem;
    bottom: 6%;
    left: 5%;
    right: 5%;
    line-height: 1.5;
    padding: 10px 14px;
    text-align: left;
  }

  .taya-lp .main-visual .caption span {
    font-size: 0.9rem;
    margin-top: 4px;
  }
}

/* =========================================
   ブロック余白調整用補助クラス
   ========================================= */

.taya-lp .block-tight {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.taya-lp .block-tight-top {
  margin-top: 0 !important;
}

.taya-lp .block-tight-bottom {
  margin-bottom: 0 !important;
}

.taya-lp .block-half {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.taya-lp .block-half2 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.taya-lp .block-wide {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.taya-lp .block-extra {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.taya-lp .block-wide-top {
  margin-top: 160px !important;
}

.taya-lp .block-wide-bottom {
  margin-bottom: 120px !important;
}

.taya-lp .block-wide-bottom1 {
  margin-bottom: 50px !important;
}

/* =========================================
   罫線（line）
   ========================================= */

.taya-lp .taya-line {
  border: none;
  border-top: 1px solid #383838;
  margin: 40px auto;
  width: 65%;
}

/* =========================================
   h2 グレー背景リセット（特集ページ内のみ）
   ========================================= */

.taya-lp h2 {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* item_list.css */
/* 銀座田屋：商品リスト共通スタイル */

:root {
  --item-w: 180px;
  --gap: 24px;
}

/* 調整しやすいように変数化 */
:root {
  --item-w: 180px;
  /* アイテムの横幅（サイズ微調整はここだけでOK） */
  --gap: 24px;
  /* アイテム間の余白 */
}

/* コンテナ：中央に幅を固定して左右を大きく空ける */
.item-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* 中央寄せ */
  gap: var(--gap);
  max-width: calc((var(--item-w) * 4) + (var(--gap) * 3));
  /* 4個＋余白3つ分 */
  margin: 20px auto;
  /* 画面中央に配置（左右は余白） */
}

/* アイテム：固定幅で折り返し */
.item {
  flex: 0 0 var(--item-w);
  /* 1個の幅を固定（= 最大4個/行） */
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform .3s ease;
  padding-bottom: 20px;
  /* ← ここで下方向に余白 */
}

.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.item-info {
  margin-top: 14px;
  width: 100%;
}

/* 商品名 */
.item-name {
  font-size: 14px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  line-height: 1.5;
  text-align: left;
  color: #222;
  margin-bottom: 5px;
}

/* プライス */
.item-price {
  font-size: 12px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
  color: #444;
  font-weight: bold;
}

/* ラベル */
.img-wrap {
  position: relative;
  /* ← ラベルの基準位置を画像に固定！ */
  display: block;
}

.label-new {
  position: absolute;
  top: -30px;
  left: 0px;
  width: 38px;
  height: 38px;
  background: url("https://www.ginza-taya.co.jp/img/icon/new_01.png") no-repeat center / contain;
  pointer-events: none;
  opacity: 1;
  /* 常に表示（hover関係なし） */
  transition: opacity 0.3s;
  /* フェードで出すなら */
}

/* オンマウス時のエフェクトを加えたい場合はこうもできる */
.item:hover .label-new {
  opacity: 0.8;
  /* ほんの少し変化させて高級感UP */
}


/* ボタン */
.more-button {
  text-align: center;
  margin-top: 20px;
}

.more-button button {
  background: #a7945f;
  color: #fff;
  border: none;
  padding: 15px 80px;
  cursor: pointer;
  transition: background 0.3s;
}

.more-button button:hover {
  background: #8e8052;
}

/* SOLD OUT ボックス */
.soldout-box {
  text-align: center;
  margin: 40px 0;
  padding: 20px 0;
}

.soldout-box p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  letter-spacing: 0.05em;
}

/* SOLD OUT ボタン：もっと見るボタンと統一 */
.soldout-btn {
  display: inline-block;
  background: #a7945f;
  color: #fff;
  border: none;
  padding: 12px 80px;
  border-radius: 0;
  /* 四角い統一デザイン */
  cursor: pointer;
  text-decoration: none;
  font-weight: normal;
  font-size: 14px;
  transition: background 0.3s;
}

.soldout-btn:hover {
  background: #8e8052;
}


/* =========================================
   スマホ時（768px以下）：商品を2列表示に (修正版)
   ========================================= */
@media screen and (max-width: 768px) {
  :root {
    /* アイテム幅の計算 (var(--item-w)) はGridを使うため不要 */
    --gap: 16px;
    /* スマホでは少し間を詰める */
  }

  .item-list {
    /* 修正点 1: displayをgridに変更 */
    display: grid;
    /* 修正点 2: 2つの均等な列を強制的に作成 */
    grid-template-columns: repeat(2, 1fr);
    /* ギャップは var(--gap) を利用 */
    gap: var(--gap);

    /* Flexbox用の justify-content: center; はGridでは不要ですが、残していても問題なし */
    justify-content: center;
    max-width: 100%;
    /* 全幅でOK */
    padding: 0 10px;
    /* 画面端に余白を入れる */

    /* Flexboxの flex-wrap: wrap; はGridの grid-template-columns が代替 */
  }

  .item {
    /* 修正点 3: Flexboxの幅指定を削除し、Gridの子要素に任せる */
    flex: unset;
    /* flex: 0 0 var(--item-w); を削除 */
  }
}




/* ・次の特集CSSここから */