.product-title {
  font-size: 34px;           /* 一回り大きく */
  font-weight: bold;
  color: #fff;               /* 白文字 */
  margin: 0 0 20px;
  margin-bottom: 5px; /* ← 下に5pxの余白追加 */
  text-shadow: 0 2px 4px rgba(0,0,0,0.6); /* 背景と重なっても視認性確保 */
}

/* 2カラムレイアウトのサイズ調整 */
.pd-twoCol {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0 24px;
  border-top: 1px solid #e6e6e6;
  max-width: 900px;       /* 枠幅を少し狭くして中央に */
  margin: 0 auto;
}

.pd-twoCol__img {
  flex: 0 0 380px;        /* 左の画像枠を小さく */
  max-width: 380px;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 10px;
}

.pd-twoCol__img img {
  width: 100%;
  height: auto;
  display: block;
}

.pd-twoCol__body {
  flex: 1;
  min-width: 0;           /* はみ出し防止 */
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.pd-twoCol__body p {
  margin: 0 0 1em;
  word-break: break-word;
}
.pd-catch {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px;
  line-height: 1.4;
}
.pd-catch span {
  font-size: 18px;
  font-weight: normal;
  color: #555;
}

.nav ul li.current > a > img {
  box-shadow: 0 0 0 3px #d94d3f inset !important; /* 画像内赤枠 */
  filter: saturate(120%) contrast(110%) !important;
  display:block; /* 余白防止 */
}
.nav ul li.current {
  background: rgba(217,77,63,.12) !important; /* 背景もうっすら */
  border-radius: 6px;
}


/* 商品ラインナップ見出し */
.pd-lineup-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 5px;
}

/* 1商品ごとの横並び */
.pd-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.pd-item__img {
  flex: 0 0 200px;  /* 正方形にするため幅と高さを揃える */
  height: 200px;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  border-radius: 50%; /* 丸抜き */
  padding: 0;         /* 丸抜きなので枠内余白はなし */
  overflow: hidden;   /* 枠からはみ出す部分を非表示 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠いっぱいに収めて中央トリミング */
  display: block;
}
.pd-item__body {
  flex: 1;
}

.pd-item__name {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 8px;
  padding-bottom: 4px; /* 下線との余白 */
  border-bottom: 2px solid #d94d3f; /* 赤系の下線で強調 */
}

.pd-item__desc {
  font-size: 14px;
  margin: 0 0 12px;
  color: #444;
}

.pd-btn-primary {
  display: inline-block;
  background: #d94d3f;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
}
.pd-btn-primary:hover {
  opacity: 0.9;
}
/* 原材料表 */
.pd-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.6;
}
.pd-table th,
.pd-table td {
  border: 1px solid #e6e6e6;
  padding: 6px 8px;
  vertical-align: top;
}
.pd-table th {
  width: 30%;
  background: #fafafa;
  font-weight: bold;
  white-space: nowrap; /* ← 折り返し防止 */
}
.pd-table td {
  background: #fcfcfc; /* 右側もごく薄いグレーで馴染ませる */
}
/* 商品ラインナップ後の横幅いっぱい購入ボタン */
.pd-lineup-cta {
  margin-top: 30px;
  margin-bottom: 20px; /* ← バナーとの間隔 */
  text-align: center;
}

.pd-lineup-cta a {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  background: #b22222;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 16px 20px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.1);
  position: relative;
}

.pd-lineup-cta a::after {
  content: "➔"; /* 矢印アイコン */
  font-size: 20px;
  position: absolute;
  right: 20px; /* 右端からの距離 */
  top: 50%;
  transform: translateY(-50%);
}

.pd-lineup-cta a:hover {
  opacity: 0.92;
}

.pd-lineup-cta {
  margin-top: 30px;
  margin-bottom: 30px; /* ← 購入ボタンの下に余白を追加 */
  text-align: center;
}


#lineup {
  border-top: 2px solid #ccc; /* 上境界線 */
  border-bottom: 2px solid #ccc; /* 下境界線 */
  padding-top: 20px;
  padding-bottom: 20px;
}

.product-title,
.pd-lineup-title,
.pd-item__name,
.pd-catch {
  font-family: 'Noto Serif JP', serif;
}

.pd-catch {
  font-size: 22px; /* 元20px → 少し大きく */
}

/* add */
/* ===== 仕上げパッチ v3 ===== */

/* 1) 見出しの最終サイズ＆明朝（もう少しだけ存在感） */
.product-title{font-size:32px}
.pd-lineup-title{font-size:22px}
.pd-item__name{font-size:20px;border-bottom:2px solid #b22222;padding-bottom:4px}
.pd-catch{font-size:22px}
.pd-catch span{font-size:18px}

/* 2) 商品ラインナップ：区切り線と丸抜きの整え */
.pd-item{display:flex;gap:20px;align-items:flex-start;margin-bottom:30px;padding-bottom:30px;border-bottom:1px solid #e6e6e6}
.pd-item:last-child{border-bottom:none}
.pd-item__img{flex:0 0 200px;height:200px;background:#f7f7f7;border:1px solid #e6e6e6;border-radius:50%;overflow:hidden;display:flex;align-items:center;justify-content:center}
.pd-item__img img{width:100%;height:100%;object-fit:cover;display:block}

/* 3) 原材料テーブル：右列の背景＆見出し折り返し禁止（馴染ませ） */
.pd-table{width:100%;border-collapse:collapse;margin-bottom:12px;font-size:12px;line-height:1.6}
.pd-table th,.pd-table td{border:1px solid #e6e6e6;padding:6px 8px;vertical-align:top}
.pd-table th{width:30%;background:#fafafa;font-weight:700;white-space:nowrap}
.pd-table td{background:#fcfcfc}

/* 4) 購入ボタン：色＆矢印＆余白（楽天行き） */
.pd-lineup-cta{margin-top:30px;margin-bottom:30px;text-align:center}
.pd-lineup-cta a{
  display:block;max-width:1080px;margin:0 auto;
  background:#b22222;color:#fff;font-weight:700;font-size:20px;
  padding:16px 56px 16px 20px;text-decoration:none;border-radius:8px;
  box-shadow:0 3px 0 rgba(0,0,0,.1);position:relative
}
.pd-lineup-cta a::after{
  content:"➔";font-size:20px;position:absolute;right:20px;top:50%;transform:translateY(-50%)
}
.pd-lineup-cta a:hover{opacity:.92}

/* 5) ナビのカレント（効いてない時の強制表示） */
.nav li.current a img{box-shadow:0 0 0 3px #d94d3f inset;display:block}

/* 6) 2カラム本文：はみ出し防止＆画像サイズ安定 */
.pd-twoCol{max-width:900px;margin:0 auto;display:flex;gap:20px;align-items:flex-start;padding:16px 0 24px;border-top:1px solid #e6e6e6}
.pd-twoCol__img{flex:0 0 380px;max-width:380px;background:#f7f7f7;border:1px solid #e6e6e6;border-radius:10px;padding:10px;overflow:hidden}
.pd-twoCol__img img{width:100%;height:auto;display:block}
.pd-twoCol__body{flex:1;min-width:0}
.pd-twoCol__body p{margin:0 0 1em;word-break:break-word;overflow-wrap:break-word}

.small-text {
  font-size: 80%; /* 元より少し小さくする */
}