@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Shippori+Mincho+B1:wght@500;600;700&display=swap');

/* ==========================================================================
   伊藤農園 初回割引定期便 LP スタイルシート
   - デザイン方向性: ジュース定期便カテゴリ (juice-teiki-style.css) に完全準拠
   - ラッパークラス (.sub-lp-container) で完全にカプセル化
   - futureshop上の標準スタイルの干渉を防ぐ設計
   - 最大幅 1055px 制限
   ========================================================================== */

/* 1. リセット & ベースカプセル化 */
.sub-lp-container,
.sub-lp-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sub-lp-container {
  /* デザインガイドライン厳密準拠 + ジュース定期便カラー */
  --sub-lp-primary: #e65100;
  --sub-lp-primary-dark: #c24400;
  --sub-lp-amber: #ffb74d;
  --sub-lp-orange: #ff9800;
  --sub-lp-accent: #7A8D6E;
  --sub-lp-text: #333333;
  --sub-lp-border: #ffe0b2;
  --sub-lp-border-light: #DDD9CE;
  --sub-lp-bg-base: #ffffff;
  --sub-lp-bg-light: #fff8f0;
  --sub-lp-white: #FFFFFF;
  --sub-lp-subtext: #666666;
  --sub-lp-red: #d32f2f;
  --sub-lp-cart-btn: #333333;

  max-width: 1055px;
  margin: 0 auto;
  width: 100%;
  background-color: var(--sub-lp-bg-base);
  color: var(--sub-lp-text);
  line-height: 1.6;
  font-size: 16px;
  overflow: hidden;
}

/* 2. コーディング規約遵守設定 */
.sub-lp-container img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
  /* コーディング規約: 商品画像・すべての画像の角丸禁止 */
}

.sub-lp-container a {
  color: #fff;
  text-decoration: none;
}

.sub-lp-container ul,
.sub-lp-container ol {
  list-style: none;
}

/* タイポグラフィ */
.sub-lp-font-mincho {
  font-family: 'Shippori Mincho B1', serif;
}

.sub-lp-sec-title {
  font-size: 28px;
  color: var(--sub-lp-primary);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
}

.sub-lp-sec-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--sub-lp-primary);
  border-radius: 2px;
}

.sub-lp-sec-subtitle {
  font-size: 12px;
  /* 規約: 12pxは英語サブタイトルとカートボタンのみ */
  color: var(--sub-lp-subtext);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 700;
}

.sub-lp-sec-title-wrap {
  margin-bottom: 40px;
  text-align: center;
}

/* バッジ類 */
.sub-lp-badge-red {
  background-color: var(--sub-lp-red);
  color: var(--sub-lp-white);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  display: inline-block;
  border-radius: 4px;
}

.sub-lp-badge-accent {
  background-color: var(--sub-lp-orange);
  color: var(--sub-lp-white);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  display: inline-block;
  border-radius: 4px;
}

/* ==========================================================================
   各セクションスタイル
   ========================================================================== */

/* 1. ファーストビュー (FV: 動画背景設置 index-future.html 準拠) */
.sub-lp-fv--video {
  position: relative;
  background-color: #ffffff;
  padding: 60px 20px;
  border-bottom: 4px solid var(--sub-lp-amber);
  overflow: hidden;
  color: #fff;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-lp-fv-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background-color: #ffffff;
}

.sub-lp-fv-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 1) 100%);
  z-index: 1;
}

.sub-lp-fv-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.sub-lp-fv-catch-sub {
  font-size: 22px;
  color: #e65100;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.8);
}

.sub-lp-fv-catch-main {
  font-size: 34px;
  color: #222222;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9), 0 0 12px rgba(255, 255, 255, 0.9);
}

.sub-lp-fv-catch-main span {
  color: #e65100;
}

.sub-lp-fv-pill-tag {
  font-size: 18px;
  font-weight: bold;
  color: #f57c00;
  background: #fff;
  display: inline-block;
  padding: 8px 24px;
  box-shadow: 0 2px 8px rgba(230, 81, 0, 0.2);
  margin-bottom: 24px;
}

.sub-lp-fv-benefits-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.sub-lp-fv-benefit-item {
  background-color: var(--sub-lp-primary);
  border: 1px solid var(--sub-lp-primary);
  padding: 8px 18px;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(230, 81, 0, 0.3);
}

.sub-lp-fv-visual-wrap {
  margin: 40px 0;
  padding: 0 30px;
}

.sub-lp-fv-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin: 0;
  text-align: left;
}

.sub-lp-fv-visual-img {
  flex: 1;
  background-color: var(--sub-lp-white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sub-lp-fv-visual-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
  box-shadow: none;
}

.sub-lp-fv-visual-content {
  flex: 1;
  background-color: var(--sub-lp-white);
  padding: 24px;
  border-radius: 12px;
  color: var(--sub-lp-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sub-lp-fv-price-box {
  text-align: center;
}

.sub-lp-fv-price-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sub-lp-text);
  margin-bottom: 8px;
}

.sub-lp-fv-price-orig {
  font-size: 15px;
  text-decoration: line-through;
  color: var(--sub-lp-subtext);
}

.sub-lp-fv-price-special {
  font-size: 42px;
  font-weight: 900;
  color: var(--sub-lp-red);
  line-height: 1.1;
  margin: 8px 0;
}

.sub-lp-fv-price-special span {
  font-size: 22px;
}

.sub-lp-fv-price-note {
  font-size: 13px;
  color: var(--sub-lp-subtext);
  margin-top: 8px;
}

.sub-lp-fv-cta-btn {
  display: block;
  background: linear-gradient(135deg, #e65100 0%, #f57c00 100%);
  color: var(--sub-lp-white);
  text-align: center;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4);
}

.sub-lp-fv-cta-btn:hover {
  background: linear-gradient(135deg, #c24400 0%, #e65100 100%);
  transform: translateY(-2px);
}

/* 2. 目次 (Index) */
.sub-lp-index {
  background-color: var(--sub-lp-bg-light);
  padding: 30px 20px;
  border-bottom: 1px solid var(--sub-lp-border);
}

.sub-lp-index-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.sub-lp-index-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sub-lp-white);
  border: 1px solid var(--sub-lp-border);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sub-lp-primary);
  border-radius: 30px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.sub-lp-index-item a:hover {
  background-color: var(--sub-lp-primary);
  color: var(--sub-lp-white);
  border-color: var(--sub-lp-primary);
}

/* 3. E-E-A-T 権威性エリア */
.sub-lp-eeat {
  padding: 60px 20px;
  background-color: var(--sub-lp-white);
}

.sub-lp-eeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sub-lp-eeat-card {
  background-color: var(--sub-lp-bg-light);
  border: 1px solid var(--sub-lp-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.sub-lp-eeat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--sub-lp-primary);
  margin-bottom: 8px;
}

.sub-lp-eeat-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sub-lp-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--sub-lp-border);
}

.sub-lp-eeat-card-desc {
  font-size: 14px;
  color: var(--sub-lp-text);
  text-align: left;
  line-height: 1.7;
}

.sub-lp-awards-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub-lp-award-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffaf4;
  border: 1px solid #ffe0b2;
  border-radius: 8px;
  padding: 8px 12px;
}

.sub-lp-award-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.sub-lp-award-text {
  font-size: 13px;
  line-height: 1.35;
  color: var(--sub-lp-primary);
  text-align: left;
}

.sub-lp-award-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.sub-lp-award-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: var(--sub-lp-text);
  font-weight: 700;
}

.sub-lp-award-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--sub-lp-orange);
}

/* 4. ベネフィット */
.sub-lp-benefits {
  background-color: var(--sub-lp-bg-light);
  padding: 60px 20px;
  border-top: 1px solid var(--sub-lp-border);
  border-bottom: 1px solid var(--sub-lp-border);
}

.sub-lp-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.sub-lp-benefit-card {
  background-color: var(--sub-lp-white);
  border: 1px solid var(--sub-lp-border);
  border-left: 4px solid var(--sub-lp-orange);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* 特典バッジ & こだわりポイントナンバー（同一デザインに統一） */
.sub-lp-benefit-badge,
.sub-lp-commitment-point-num {
  background: var(--sub-lp-primary);
  color: var(--sub-lp-white);
  font-size: 20px;
  font-weight: 700;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.25);
  padding: 0;
}

.sub-lp-benefit-content {
  flex: 1;
}

.sub-lp-benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sub-lp-primary);
  margin-bottom: 8px;
}

.sub-lp-benefit-desc {
  font-size: 14px;
  color: var(--sub-lp-text);
  line-height: 1.6;
}

/* 5. 商品のこだわりポイント */
.sub-lp-commitment {
  background-color: var(--sub-lp-white);
  padding: 60px 20px;
}

.sub-lp-commitment-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  background-color: var(--sub-lp-white);
  border: 1px solid var(--sub-lp-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sub-lp-commitment-item:nth-child(even) {
  flex-direction: row-reverse;
}

.sub-lp-commitment-img {
  flex: 1;
  max-width: 450px;
}

.sub-lp-commitment-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sub-lp-commitment-text {
  flex: 1;
  position: relative;
}

.sub-lp-commitment-point-num {
  position: static;
  margin-bottom: 12px;
}

.sub-lp-commitment-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--sub-lp-primary);
  margin-top: 10px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.sub-lp-commitment-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--sub-lp-text);
}

/* 追加コンテンツ1: 作り手のストーリー & 搾汁率通常の約2倍 & 比較表 */
.sub-lp-story-section {
  background-color: var(--sub-lp-bg-light);
  padding: 60px 20px;
  border-top: 1px solid var(--sub-lp-border);
}

.sub-lp-story-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: var(--sub-lp-white);
  border: 1px solid var(--sub-lp-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.sub-lp-story-main-video {
  max-width: 800px;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.sub-lp-story-main-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.sub-lp-story-img {
  flex: 1;
  max-width: 400px;
  width: 100%;
}

.sub-lp-story-content {
  flex: 1;
}

.sub-lp-story-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--sub-lp-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.sub-lp-story-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sub-lp-text);
}

.sub-lp-compare-wrap {
  margin-top: 40px;
}

.sub-lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background-color: var(--sub-lp-white);
  border: 1px solid var(--sub-lp-border);
  border-radius: 8px;
  overflow: hidden;
}

.sub-lp-compare-table th,
.sub-lp-compare-table td {
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #ddd;
  text-align: center;
}

.sub-lp-compare-table th {
  background-color: #f5f5f5;
  font-weight: 700;
}

.sub-lp-compare-table th.sub-lp-highlight,
.sub-lp-compare-table td.sub-lp-highlight {
  background-color: #fff8e1 !important;
  border: 2px solid #ffca28 !important;
  font-weight: 700;
}

/* 7. 完全移植コンテンツ: flavor (味わい分布チャート & 柑橘リスト) */
.sub-lp-flavor-section {
  background-color: var(--sub-lp-white);
  padding: 60px 20px;
  border-top: 1px solid var(--sub-lp-border);
}

.sub-lp-flavor-intro {
  text-align: center;
  font-size: 16px;
  color: var(--sub-lp-text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.sub-lp-flavor-lead {
  text-align: center;
  font-size: 14px;
  color: var(--sub-lp-subtext);
  margin-bottom: 30px;
}

.sub-lp-juice-flavor-chart {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 1000px;
  margin: 0 auto 50px;
  background-color: #fffaf4;
  border: 2px solid #e95513;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sub-lp-jf-axis-x {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: #d94a00;
  opacity: 0.3;
}

.sub-lp-jf-axis-y {
  position: absolute;
  left: 50%;
  top: 5%;
  height: 90%;
  width: 2px;
  background-color: #d94a00;
  opacity: 0.3;
}

.sub-lp-jf-label {
  position: absolute;
  font-size: 14px;
  font-weight: 900;
  color: #d94a00;
  background-color: #fffaf4;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 5;
}

.sub-lp-jf-label.top {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.sub-lp-jf-label.bottom {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.sub-lp-jf-label.left {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.sub-lp-jf-label.right {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.sub-lp-jf-item {
  position: absolute;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.sub-lp-jf-item:hover,
.sub-lp-jf-item.active {
  z-index: 99999 !important;
}

/* ユーザー指定: jf-img ボトル画像サイズ感を微調整（縦横比保持・美しく表示） */
.sub-lp-jf-img {
  width: 36px;
  height: 68px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.2s ease;
}

.sub-lp-jf-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--sub-lp-text);
  background: rgba(255, 255, 255, 0.95);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.sub-lp-jf-tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background-color: var(--sub-lp-white);
  color: var(--sub-lp-text);
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 2px solid #d94a00;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 99999 !important;
  text-align: left;
  pointer-events: none;
}

.sub-lp-jf-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #d94a00 transparent transparent transparent;
}

.sub-lp-jf-item:hover .sub-lp-jf-tooltip,
.sub-lp-jf-item.active .sub-lp-jf-tooltip {
  display: block;
}

.sub-lp-flavor-list-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.sub-lp-flavor-item {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ffe0b2;
  border-left: 5px solid var(--sub-lp-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sub-lp-flavor-item.active,
.sub-lp-flavor-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.15);
  background-color: #fffaf4;
}

.sub-lp-flavor-item-img {
  width: 45px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
}

.sub-lp-flavor-item-content {
  flex: 1;
}

.sub-lp-flavor-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--sub-lp-primary);
  margin-bottom: 4px;
}

.sub-lp-flavor-item-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
  color: #555555;
}

/* 味わいチャート: ボトル配置ポジションクラス（元ファイル準拠） */
.sub-lp-jf-pos-mikan {
  top: 30%;
  left: 60%;
}

.sub-lp-jf-pos-shiranui {
  top: 15%;
  left: 85%;
}

.sub-lp-jf-pos-kara {
  top: 25%;
  left: 78%;
}

.sub-lp-jf-pos-ponkan {
  top: 10%;
  left: 65%;
}

.sub-lp-jf-pos-kiyomi {
  top: 35%;
  left: 50%;
}

.sub-lp-jf-pos-harumi {
  top: 20%;
  left: 45%;
}

.sub-lp-jf-pos-ner {
  top: 40%;
  left: 80%;
}

.sub-lp-jf-pos-semi {
  top: 50%;
  left: 65%;
}

.sub-lp-jf-pos-iyokan {
  top: 60%;
  left: 40%;
}

.sub-lp-jf-pos-setoka {
  top: 10%;
  left: 90%;
}

.sub-lp-jf-pos-bare {
  top: 55%;
  left: 75%;
}

.sub-lp-jf-pos-san {
  top: 70%;
  left: 30%;
}

.sub-lp-jf-pos-hassaku {
  top: 85%;
  left: 35%;
}

.sub-lp-jf-pos-amanatu {
  top: 75%;
  left: 20%;
}


.sub-lp-products {
  padding: 60px 20px;
  background-color: var(--sub-lp-bg-light);
  border-top: 2px solid var(--sub-lp-primary);
}

/* ワイドカード（カード4: 14種類から自由に選べるコース・添付画像準拠） */
@media screen and (min-width: 741px) {
  .sub-lp-product-card--wide {
    grid-column: 1 / -1;
  }

  .sub-lp-wide-card-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .sub-lp-wide-card-info {
    width: 280px;
    flex-shrink: 0;
  }

  .sub-lp-wide-form-wrap {
    flex: 1;
    margin-top: 0;
  }

  .sub-lp-form-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sub-lp-form-option-col {
    background-color: #fffaf4;
    border: 1px solid #ffe0b2;
    border-radius: 8px;
    padding: 14px;
  }

  .sub-lp-wide-form-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin: 20px 0;
  }

  .sub-lp-wide-form-bottom .sub-lp-form-qty-wrap {
    margin-bottom: 0;
    background: #fffaf4;
    border: 1px solid #ffe0b2;
    padding: 8px 16px;
    border-radius: 8px;
  }

  .sub-lp-wide-price-area {
    background: #fffaf4;
    border: 1px solid #ffe0b2;
    padding: 10px 24px;
    border-radius: 8px;
  }

  .sub-lp-wide-price-area .sub-lp-form-price-num {
    font-size: 26px;
  }
}

@media screen and (max-width: 740px) {
  .sub-lp-wide-card-body {
    display: flex;
    flex-direction: column;
  }

  .sub-lp-wide-card-info {
    width: 100%;
  }

  .sub-lp-form-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sub-lp-wide-form-bottom {
    margin-top: 12px;
  }
}

.sub-lp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sub-lp-product-card {
  background-color: var(--sub-lp-white);
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.sub-lp-product-card:hover {
  box-shadow: 0 8px 16px rgba(230, 81, 0, 0.15);
  border-color: var(--sub-lp-orange);
}

.sub-lp-product-header {
  margin-bottom: 16px;
  border-bottom: 1px dashed #ffccbc;
  padding-bottom: 12px;
}

.sub-lp-product-tag-wrap {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.sub-lp-product-tag {
  background-color: var(--sub-lp-bg-light);
  border: 1px solid var(--sub-lp-border);
  font-size: 13px;
  padding: 2px 8px;
  color: var(--sub-lp-primary);
  font-weight: 700;
  border-radius: 4px;
}

.sub-lp-product-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--sub-lp-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.sub-lp-product-img-wrap {
  width: 100%;
  background-color: var(--sub-lp-bg-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.sub-lp-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-lp-product-desc {
  font-size: 14px;
  color: var(--sub-lp-text);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* futureshop フォームカスタマイズ */
.sub-lp-form-wrap {
  background-color: #fff8f0;
  border: 1px solid var(--sub-lp-border);
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
}

.sub-lp-form-row {
  margin-bottom: 14px;
}

.sub-lp-form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--sub-lp-primary);
  margin-bottom: 6px;
  display: block;
}

.sub-lp-form-select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid var(--sub-lp-border);
  border-radius: 6px;
  background-color: var(--sub-lp-white);
  color: var(--sub-lp-text);
  outline: none;
  cursor: pointer;
}

.sub-lp-form-select:focus {
  border-color: var(--sub-lp-primary);
}

.sub-lp-form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--sub-lp-white);
  padding: 12px;
  border: 1px solid var(--sub-lp-border);
  border-radius: 6px;
}

.sub-lp-form-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.sub-lp-form-radio-item input[type="radio"] {
  accent-color: var(--sub-lp-primary);
  width: 16px;
  height: 16px;
}

.sub-lp-form-qty-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sub-lp-form-qty-wrap .sub-lp-form-label {
  margin-bottom: 0;
  display: inline-block;
}

.sub-lp-form-qty-input {
  width: 60px;
  padding: 8px;
  font-size: 14px;
  text-align: center;
  border: 1px solid var(--sub-lp-border);
  border-radius: 6px;
}

.sub-lp-form-price-display {
  font-size: 13px;
  color: var(--sub-lp-text);
  margin-left: 6px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.sub-lp-form-price-num {
  font-size: 18px;
  font-weight: 900;
  color: #e65100;
}

.sub-lp-form-price-orig {
  font-size: 12px;
  color: #888888;
  text-decoration: line-through;
  margin-left: 6px;
}

/* 購入ボタン (規約: 12px文字サイズ、背景#333333) */
.sub-lp-cart-submit-btn {
  width: 100%;
  background-color: var(--sub-lp-cart-btn);
  /* #333333 */
  color: var(--sub-lp-white);
  font-size: 12px;
  /* 規約厳守: カートボタンは12px */
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
}

.sub-lp-cart-submit-btn:hover {
  background-color: var(--sub-lp-primary);
}

.sub-lp-product-detail-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--sub-lp-subtext);
  margin-top: 12px;
  text-decoration: underline;
}

.sub-lp-product-detail-link:hover {
  color: var(--sub-lp-primary);
}

/* 9. お客様の声 (レビュー) */
.sub-lp-reviews {
  background-color: var(--sub-lp-white);
  padding: 60px 20px;
  border-top: 1px solid var(--sub-lp-border);
}

.sub-lp-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sub-lp-review-card {
  background-color: var(--sub-lp-bg-light);
  border: 2px solid #ffccbc;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.05);
}

.sub-lp-review-stars {
  color: #fbc02d;
  font-size: 20px;
  margin-bottom: 8px;
}

.sub-lp-review-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sub-lp-primary);
  margin-bottom: 10px;
}

.sub-lp-review-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sub-lp-text);
  margin-bottom: 16px;
}

.sub-lp-review-author {
  font-size: 13px;
  color: var(--sub-lp-subtext);
  text-align: right;
}

/* 10. よくあるご質問 (Q&A) */
.sub-lp-faq {
  background-color: var(--sub-lp-bg-light);
  padding: 60px 20px;
  border-top: 1px solid var(--sub-lp-border);
}

.sub-lp-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-lp-faq-item {
  border: 1px solid var(--sub-lp-border);
  border-radius: 8px;
  background-color: var(--sub-lp-white);
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.sub-lp-faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--sub-lp-text);
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sub-lp-faq-q:hover {
  background-color: #fff8f0;
}

.sub-lp-faq-q-icon {
  color: var(--sub-lp-primary);
  font-size: 20px;
  font-weight: 900;
}

.sub-lp-faq-a {
  font-size: 14px;
  color: var(--sub-lp-text);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.7;
  padding: 16px 20px;
  border-top: 1px dashed var(--sub-lp-border);
  background-color: #fafafa;
}

.sub-lp-faq-a-icon {
  color: var(--sub-lp-red);
  font-size: 20px;
  font-weight: 900;
}

/* フッター注記 */
.sub-lp-footer-notice {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--sub-lp-white);
  border-top: 1px solid var(--sub-lp-border);
  font-size: 14px;
  color: var(--sub-lp-subtext);
}

/* ==========================================================================
   レスポンシブ対応 (規約: PC 1040px以上 / SP 1039px以下 width:100%)
   ========================================================================== */
@media screen and (max-width: 1039px) {
  .sub-lp-container {
    width: 100%;
  }

  .sub-lp-fv-visual {
    flex-direction: column;
  }

  .sub-lp-eeat-grid {
    grid-template-columns: 1fr;
  }

  .sub-lp-benefits-list {
    grid-template-columns: 1fr;
  }

  .sub-lp-commitment-item,
  .sub-lp-commitment-item:nth-child(even) {
    flex-direction: column;
  }

  .sub-lp-commitment-img {
    width: 100%;
    max-width: 100%;
  }

  .sub-lp-story-box {
    flex-direction: column;
  }

  .sub-lp-review-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 800px) {
  .sub-lp-flavor-list-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
    margin-top: 30px;
  }

  .sub-lp-jf-img {
    width: 30px !important;
    height: auto !important;
  }
}

@media screen and (max-width: 740px) {
  .sub-lp-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 500px) {
  .sub-lp-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sub-lp-fv-catch-main {
    font-size: 24px;
  }

  .sub-lp-fv-catch-sub {
    font-size: 18px;
  }

  .sub-lp-sec-title {
    font-size: 22px;
  }

  .sub-lp-jf-img {
    width: 10px !important;
    height: auto !important;
  }

  .sub-lp-flavor-item-img {
    width: 20px !important;
    height: auto !important;
  }

  .sub-lp-juice-flavor-chart {
    max-width: 398px;
    height: 380px;
  }

  .sub-lp-index-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* 500px以下の際: sub-lp-flavor-list-container 内は上5つまでの表示（展開前） */
  .sub-lp-flavor-list-container:not(.is-expanded) .sub-lp-flavor-item:nth-child(n+6) {
    display: none !important;
  }

  .sub-lp-flavor-more-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0 auto;
    padding: 10px 32px;
    background-color: var(--sub-lp-white);
    border: 2px solid var(--sub-lp-orange);
    color: var(--sub-lp-orange);
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(230, 81, 0, 0.15);
    transition: all 0.2s ease;
  }
}

/* PC/タブレット表示時は「もっと見る」ボタン非表示 */
.sub-lp-flavor-more-btn {
  display: none;
}

/* ==========================================================================
   右固定ナビゲーションバナー (index-future.html 準拠)
   ========================================================================== */
.sub-lp-fixed-side-banner {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-lp-fixed-side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  color: #e65100 !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  border: 2px solid #e65100;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
}

.sub-lp-fixed-side-btn:hover {
  background: #e65100;
  color: #ffffff !important;
  transform: scale(1.08);
}

.sub-lp-fixed-side-btn.sub-lp-btn-cart {
  background: linear-gradient(135deg, #e65100 0%, #ff9800 100%);
  color: #ffffff !important;
  border-color: #ff9800;
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.35);
}

.sub-lp-fixed-side-btn.sub-lp-btn-cart:hover {
  background: linear-gradient(135deg, #c24400 0%, #e65100 100%);
  transform: scale(1.08);
}

@media screen and (max-width: 768px) {
  .sub-lp-fixed-side-banner {
    right: 8px;
    gap: 8px;
  }

  .sub-lp-fixed-side-btn {
    width: 56px;
    height: 56px;
    font-size: 11px;
  }
}