/* ==========================================================================
   はちみつ柑橘ドリンクLP スタイルシート (style.css)
   コーディング規約完全準拠 / みかんジュースLPデザイン統合版
   ========================================================================== */

/* 1. ボックスサイジングの設定（ラッパー配下のみ適用） */
.lp2026,
.lp2026 * {
  box-sizing: border-box;
}

/* 2. プロジェクト共通定義（ベース背景・PC/SPレイアウト） */
.lp2026 {
  /* PC表示（1040px以上）の規定サイズ */
  max-width: 740px;
  margin: 0 auto;
  background-color: #FAF9F6;
  color: #4A4636;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* 画像のレスポンシブ対応 */
.lp2026 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* レスポンシブ仕様（1039px以下） */
@media screen and (max-width: 1039px) {
  .lp2026 {
    width: 100%;
    max-width: 100%;
  }
}

/* 3. タイポグラフィ定義 */
/* セクションタイトル */
.lp2026 .lp2026-section-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  color: #E2962D; /* メインカラー */
  line-height: 1.5;
  text-align: center;
  margin: 0 0 12px 0;
  position: relative;
}

.lp2026 .lp2026-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #E2962D;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* 英文サブタイトル */
.lp2026 .lp2026-section-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #8C846F;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 32px 0;
}

/* 本文テキスト */
.lp2026 .lp2026-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #4A4636;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.lp2026 .lp2026-text-center {
  text-align: center;
}

.lp2026 .lp2026-text-light {
  color: #8C846F;
}

/* ==========================================================================
   各セクションデザイン
   ========================================================================== */

/* 4. 右固定ナビゲーションバナー */
.lp2026 .lp2026-fixed-side-banner {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
}

.lp2026 .lp2026-fixed-side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background-color: #FAF9F6;
  border: 2px solid #E2962D;
  color: #E2962D;
  border-radius: 50%;
  text-decoration: none;
  font-size: 12px; /* 規約通り英文やコンパクトな配置のため12px */
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  line-height: 1.3;
  padding: 4px;
}

.lp2026 .lp2026-fixed-side-btn:hover {
  background-color: #E2962D;
  color: #FFFFFF;
  transform: scale(1.05);
}

.lp2026 .lp2026-fixed-side-btn.lp2026-btn-cart {
  background-color: #E2962D;
  color: #FFFFFF;
  border-color: #C27E1D;
}

.lp2026 .lp2026-fixed-side-btn.lp2026-btn-cart:hover {
  background-color: #C27E1D;
}

@media screen and (max-width: 768px) {
  /* スマホ表示時は固定ナビを下部に配置するか非表示にする（今回は省スペースのため非表示） */
  .lp2026 .lp2026-fixed-side-banner {
    display: none;
  }
}

/* 5. ファーストビュー (FV) */
.lp2026 .lp2026-fv-section {
  position: relative;
  width: 100%;
  aspect-ratio: 740 / 493; /* メインビジュアル画像とアスペクト比を合わせる */
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp2026 .lp2026-fv-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.lp2026 .lp2026-fv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(74, 70, 54, 0.4) 0%, rgba(250, 249, 246, 0.9) 100%);
  z-index: 2;
}

.lp2026 .lp2026-fv-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 24px;
  width: 100%;
}

.lp2026 .lp2026-fv-badge {
  display: inline-block;
  background-color: #E2962D;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.lp2026 .lp2026-fv-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.lp2026 .lp2026-fv-sub {
  font-size: 14px;
  font-weight: 500;
  color: #4A4636;
  margin: 0;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* 6. EEAT実績表示エリア */
.lp2026 .lp2026-eeat-container {
  background-color: #FFFFFF;
  border: 1px solid #DDD9CE;
  border-radius: 12px;
  padding: 24px;
  margin: 24px;
}

.lp2026 .lp2026-eeat-meta {
  text-align: center;
  margin-bottom: 24px;
}

.lp2026 .lp2026-eeat-meta-tag {
  color: #C27E1D;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.lp2026 .lp2026-eeat-meta-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  color: #4A4636;
  margin: 0 0 8px 0;
  line-height: 30px;
}

.lp2026 .lp2026-eeat-meta-desc {
  font-size: 14px;
  color: #4A4636;
  line-height: 1.6;
  margin: 0;
}

.lp2026 .lp2026-eeat-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: stretch;
}

.lp2026 .lp2026-eeat-badge {
  background-color: #ffffff;
  border: 1px solid #DDD9CE;
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lp2026 .lp2026-eeat-badge img {
  max-width: 60px;
  height: auto;
  margin-bottom: 8px;
}

.lp2026 .lp2026-eeat-badge-label {
  font-size: 12px; /* 英文や細かい説明用の規定サイズ12px */
  line-height: 1.4;
  color: #4A4636;
  font-weight: 500;
}

.lp2026 .lp2026-eeat-badge.lp2026-badge-no1 {
  background-color: #ffffff;
  border: 2px solid #E2962D;
}

.lp2026 .lp2026-no1-sub {
  font-size: 12px;
  color: #E2962D;
  display: block;
}

.lp2026 .lp2026-no1-main {
  font-size: 14px;
  font-weight: 900;
  color: #E2962D;
  display: block;
}

.lp2026 .lp2026-no1-main strong {
  font-size: 24px;
}

.lp2026 .lp2026-no1-desc {
  font-size: 12px;
  color: #8C846F;
  display: block;
}


/* 7. 目次 (Table of Contents) */
.lp2026 .lp2026-toc-section {
  padding: 24px;
  background-color: #FAF9F6;
  border-bottom: 1px solid #DDD9CE;
}

.lp2026 .lp2026-toc-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  color: #4A4636;
  text-align: center;
  margin-bottom: 16px;
}

.lp2026 .lp2026-toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp2026 .lp2026-toc-btn {
  display: block;
  background-color: #FFFFFF;
  border: 1px solid #DDD9CE;
  color: #4A4636;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lp2026 .lp2026-toc-btn:hover {
  border-color: #E2962D;
  color: #E2962D;
}

.lp2026 .lp2026-toc-btn.lp2026-btn-highlight {
  background-color: #E2962D;
  color: #FFFFFF;
  border-color: #C27E1D;
}

.lp2026 .lp2026-toc-btn.lp2026-btn-highlight:hover {
  background-color: #C27E1D;
}

/* 8. コモンセクションレイアウト */
.lp2026 .lp2026-section {
  padding: 56px 24px;
  border-bottom: 1px solid #DDD9CE;
}

.lp2026 .lp2026-section:last-of-type {
  border-bottom: none;
}

.lp2026 .lp2026-section-white {
  background-color: #FFFFFF;
}

.lp2026 .lp2026-section-light {
  background-color: #FAF9F6;
}

/* 9. 3つのこだわり (偶数反転フレックス) */
.lp2026 .lp2026-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp2026 .lp2026-benefit-item {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 2px solid #DDD9CE;
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  overflow: hidden;
}

.lp2026 .lp2026-benefit-item:nth-child(even) {
  flex-direction: row-reverse;
}

.lp2026 .lp2026-benefit-image {
  flex: 0 0 45%;
  border-radius: 8px;
  overflow: hidden;
}

.lp2026 .lp2026-benefit-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lp2026 .lp2026-benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lp2026 .lp2026-benefit-num {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  color: #C27E1D;
  line-height: 1;
  margin-bottom: 8px;
}

.lp2026 .lp2026-benefit-content h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #4A4636;
  line-height: 34px;
}

.lp2026 .lp2026-benefit-content p {
  color: #4A4636;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .lp2026 .lp2026-benefit-item {
    flex-direction: column !important;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }

  .lp2026 .lp2026-benefit-image {
    flex: none;
    width: 100%;
  }
}

/* 10. おすすめシーン */
.lp2026 .lp2026-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp2026 .lp2026-scene-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #DDD9CE;
}

.lp2026 .lp2026-scene-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lp2026 .lp2026-scene-card h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px; /* 規約通り見出しサイズを24px */
  color: #C27E1D;
  margin: 0 0 12px 0;
}

.lp2026 .lp2026-scene-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .lp2026 .lp2026-scene-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 11. 商品紹介 */
.lp2026 .lp2026-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .lp2026 .lp2026-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 500px) {
  .lp2026 .lp2026-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

.lp2026 .lp2026-product-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #DDD9CE;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.lp2026 .lp2026-product-card:hover {
  transform: translateY(-4px);
}

.lp2026 .lp2026-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lp2026 .lp2026-product-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lp2026 .lp2026-product-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.lp2026 .lp2026-product-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.lp2026 .lp2026-price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #E63946;
  margin: 0 0 16px 0;
  text-align: center;
}

.lp2026 .lp2026-btn-purchase {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #E2962D;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: none;
}

.lp2026 .lp2026-btn-purchase:hover {
  background-color: #C27E1D;
}

/* 12. 作り手のストーリー */
.lp2026 .lp2026-story-box {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 1px solid #DDD9CE;
  display: flex;
  gap: 24px;
  align-items: center;
}

.lp2026 .lp2026-story-image {
  flex: 0 0 45%;
  border-radius: 8px;
  overflow: hidden;
}

.lp2026 .lp2026-story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lp2026 .lp2026-story-content {
  flex: 1;
}

.lp2026 .lp2026-story-content h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  color: #E2962D;
  margin: 0 0 12px 0;
}

@media screen and (max-width: 768px) {
  .lp2026 .lp2026-story-box {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .lp2026 .lp2026-story-image {
    flex: none;
    width: 100%;
  }
}

/* 濃縮還元との比較表 */
.lp2026 .lp2026-compare-table-wrapper {
  overflow-x: auto;
  margin-top: 24px;
}

.lp2026 .lp2026-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  min-width: 500px;
}

.lp2026 .lp2026-compare-table th,
.lp2026 .lp2026-compare-table td {
  border: 1px solid #DDD9CE;
  padding: 12px;
  text-align: left;
  font-size: 14px;
}

.lp2026 .lp2026-compare-table th {
  background-color: #FAF9F6;
  width: 25%;
  font-weight: 700;
  color: #4A4636;
}

.lp2026 .lp2026-compare-table th.lp2026-highlight,
.lp2026 .lp2026-compare-table td.lp2026-highlight {
  background-color: #FAF9F6;
  font-weight: bold;
  border-left: 2px solid #E2962D;
  border-right: 2px solid #E2962D;
}

.lp2026 .lp2026-compare-table tr:first-child th.lp2026-highlight {
  border-top: 2px solid #E2962D;
}

.lp2026 .lp2026-compare-table tr:last-child td.lp2026-highlight {
  border-bottom: 2px solid #E2962D;
}

.lp2026 .lp2026-compare-result-label {
  font-weight: 700;
  display: block;
}

.lp2026 .lp2026-compare-result-label.lp2026-ito {
  color: #C27E1D;
}

.lp2026 .lp2026-compare-result-note {
  font-size: 12px; /* 細かい注記用の12px */
  color: #4A4636;
  line-height: 1.4;
  display: block;
}

/* 13. 選べる柑橘16種味わいチャート (移植・最適化) */
.lp2026 .lp2026-flavor-lead {
  text-align: center;
  font-size: 12px; /* 操作説明のための12px */
  color: #8C846F;
  margin-bottom: 16px;
}

.lp2026 .lp2026-juice-flavor-chart {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 32px auto 48px;
  background: #FFFFFF;
  border: 2px solid #DDD9CE;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lp2026 .lp2026-jf-axis-x {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #DDD9CE;
  opacity: 0.8;
}

.lp2026 .lp2026-jf-axis-y {
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 5%;
  width: 2px;
  background: #DDD9CE;
  opacity: 0.8;
}

.lp2026 .lp2026-jf-label {
  position: absolute;
  font-weight: 700;
  color: #8C846F;
  font-size: 12px; /* チャートラベル用の12px */
  background: #FAF9F6;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 5;
  white-space: nowrap;
}

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

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

.lp2026 .lp2026-jf-label.lp2026-left {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lp2026 .lp2026-jf-label.lp2026-right {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}

/* チャート内ボトルアイテム */
.lp2026 .lp2026-jf-item {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 8%;
  min-width: 32px;
  max-width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.lp2026 .lp2026-jf-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lp2026 .lp2026-jf-name {
  font-size: 12px; /* 特殊チャートラベル用12px */
  font-weight: 500;
  color: #4A4636;
  white-space: nowrap;
  margin-top: 4px;
}

/* ホバー・アクティブ時のボトルアニメーション */
.lp2026 .lp2026-jf-item:hover,
.lp2026 .lp2026-jf-item.lp2026-active {
  z-index: 30;
}

.lp2026 .lp2026-jf-item:hover .lp2026-jf-img,
.lp2026 .lp2026-jf-item.lp2026-active .lp2026-jf-img {
  transform: scale(1.3) translateY(-8px);
}

/* フレーバー詳細ツールチップ */
.lp2026 .lp2026-jf-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #4A4636;
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px; /* ポップアップ説明用12px */
  line-height: 1.4;
  white-space: normal;
  width: 160px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 40;
}

.lp2026 .lp2026-jf-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #4A4636 transparent transparent transparent;
}

.lp2026 .lp2026-jf-item:hover .lp2026-jf-tooltip,
.lp2026 .lp2026-jf-item.lp2026-active .lp2026-jf-tooltip {
  opacity: 1;
  visibility: visible;
}

/* スマホ表示向けチャート微調整 */
@media screen and (max-width: 500px) {
  .lp2026 .lp2026-juice-flavor-chart {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
  .lp2026 .lp2026-jf-tooltip {
    width: 130px;
  }
}

/* 各ボトルのチャート座標定義 */
.lp2026 .lp2026-jf-pos-mikan { top: 25%; left: 80%; }
.lp2026 .lp2026-jf-pos-shiranui { top: 20%; left: 90%; }
.lp2026 .lp2026-jf-pos-kara { top: 15%; left: 95%; }
.lp2026 .lp2026-jf-pos-ponkan { top: 30%; left: 75%; }
.lp2026 .lp2026-jf-pos-kiyomi { top: 35%; left: 65%; }
.lp2026 .lp2026-jf-pos-harumi { top: 40%; left: 70%; }
.lp2026 .lp2026-jf-pos-neburu { top: 45%; left: 80%; }
.lp2026 .lp2026-jf-pos-seminoru { top: 55%; left: 75%; }
.lp2026 .lp2026-jf-pos-iyokan { top: 60%; left: 60%; }
.lp2026 .lp2026-jf-pos-setoka { top: 15%; left: 80%; }
.lp2026 .lp2026-jf-pos-barensia { top: 65%; left: 45%; }
.lp2026 .lp2026-jf-pos-sanboukan { top: 70%; left: 35%; }
.lp2026 .lp2026-jf-pos-kawachibankan { top: 80%; left: 20%; }
.lp2026 .lp2026-jf-pos-hassaku { top: 85%; left: 15%; }
.lp2026 .lp2026-jf-pos-amanatsu { top: 90%; left: 10%; }
.lp2026 .lp2026-jf-pos-natsumikan { top: 90%; left: 5%; }

/* チャートと連動するフレーバー説明リスト */
.lp2026 .lp2026-flavor-list-container {
  margin-top: 24px;
}

.lp2026 .lp2026-flavor-item {
  display: none;
  background-color: #FFFFFF;
  border: 1px solid #DDD9CE;
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  align-items: center;
}

.lp2026 .lp2026-flavor-item.lp2026-active {
  display: flex;
  animation: lp2026-fadeIn 0.3s ease-in-out;
}

.lp2026 .lp2026-flavor-item-img {
  width: 48px;
  height: auto;
}

.lp2026 .lp2026-flavor-item-content {
  flex: 1;
}

.lp2026 .lp2026-flavor-name {
  font-weight: 700;
  color: #E2962D;
  margin-bottom: 4px;
}

@keyframes lp2026-fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 14. お買い物ガイド */
.lp2026 .lp2026-guide-box {
  background-color: #FAF9F6;
  border: 1px solid #DDD9CE;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.lp2026 .lp2026-guide-box:last-child {
  margin-bottom: 0;
}

.lp2026 .lp2026-guide-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  color: #4A4636;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp2026 .lp2026-guide-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #7A8D6E; /* アクセントカラー */
  border-radius: 2px;
}

.lp2026 .lp2026-guide-text {
  font-size: 14px;
  line-height: 1.8;
  color: #4A4636;
  margin: 0;
}

.lp2026 .lp2026-guide-highlight {
  font-weight: 700;
  color: #C27E1D;
}

/* 15. よくあるご質問 (FAQ) アコーディオン */
.lp2026 .lp2026-qa-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.lp2026 .lp2026-qa-item {
  border: 1px solid #DDD9CE;
  border-radius: 12px;
  background-color: #FFFFFF;
  overflow: hidden;
}

.lp2026 .lp2026-qa-title {
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #4A4636;
}

.lp2026 .lp2026-qa-title::after {
  content: '+';
  font-size: 20px;
  color: #E2962D;
  transition: transform 0.3s ease;
  font-weight: 400;
}

.lp2026 .lp2026-qa-item.lp2026-open .lp2026-qa-title::after {
  transform: rotate(45deg);
}

.lp2026 .lp2026-qa-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.lp2026 .lp2026-qa-item.lp2026-open .lp2026-qa-content {
  padding: 0 20px 20px 20px;
  max-height: 300px;
  border-top: 1px solid #FAF9F6;
}

.lp2026 .lp2026-qa-content p {
  margin: 0;
  line-height: 1.8;
  color: #4A4636;
}

.lp2026 .lp2026-qa-paragraph-spaced {
  margin-top: 12px !important;
}

/* 16. ラスト購入へのひと押し (CTA・フッター) */
.lp2026 .lp2026-closing-section {
  text-align: center;
  padding: 56px 24px;
  background-color: #FAF9F6;
}

.lp2026 .lp2026-closing-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  color: #4A4636;
  margin-bottom: 24px;
  line-height: 1.6;
}

.lp2026 .lp2026-award-box {
  background: #FFFFFF;
  border: 2px solid #E2962D;
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
  color: #C27E1D;
  line-height: 1.8;
}

.lp2026 .lp2026-re-benefit {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 1px solid #DDD9CE;
  text-align: left;
}

.lp2026 .lp2026-re-benefit-title {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 14px;
  color: #E2962D;
  text-align: center;
}

.lp2026 .lp2026-closing-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp2026 .lp2026-closing-benefit-list li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #4A4636;
  padding-left: 16px;
  position: relative;
}

.lp2026 .lp2026-closing-benefit-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #E2962D;
}

.lp2026 .lp2026-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #E2962D;
  color: #FFFFFF;
  font-size: 18px; /* CTAボタン用の見やすさ（18px） */
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(226, 150, 45, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
}

.lp2026 .lp2026-cta-btn:hover {
  background-color: #C27E1D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 150, 45, 0.6);
}

/* 17. フッター */
.lp2026 .lp2026-footer {
  background-color: #4A4636;
  color: #FAF9F6;
  padding: 40px 24px;
  text-align: center;
}

.lp2026 .lp2026-footer-logo {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #FAF9F6;
}

.lp2026 .lp2026-footer-text {
  font-size: 14px;
  color: #DDD9CE;
  margin: 0 0 24px 0;
  line-height: 1.8;
}

.lp2026 .lp2026-copyright {
  font-size: 12px; /* コピーライト用12px */
  color: #8C846F;
  margin: 0;
}

/* 18. 選べる3つの味わい */
.lp2026 .lp2026-flavor-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.lp2026 .lp2026-flavor-select-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #DDD9CE;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp2026 .lp2026-flavor-select-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 70, 54, 0.08);
}

.lp2026 .lp2026-flavor-select-img-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background-color: transparent;
}

.lp2026 .lp2026-flavor-select-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lp2026 .lp2026-flavor-select-card:hover .lp2026-flavor-select-img {
  transform: scale(1.1);
}

.lp2026 .lp2026-flavor-select-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.lp2026 .lp2026-flavor-select-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  font-weight: 700;
  color: #C27E1D;
  margin: 0 0 12px 0;
  border-bottom: 2px solid #FAF9F6;
  padding-bottom: 8px;
}

.lp2026 .lp2026-flavor-select-desc {
  font-size: 14px;
  color: #4A4636;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .lp2026 .lp2026-flavor-select-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 19. 製造へのこだわり */
.lp2026 .lp2026-mcommit-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.lp2026 .lp2026-mcommit-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #DDD9CE;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp2026 .lp2026-mcommit-card-full {
  width: 100%;
  text-align: left !important;
  align-items: flex-start !important;
}

.lp2026 .lp2026-mcommit-card-full:hover {
  transform: none !important;
  box-shadow: none !important;
}

.lp2026 .lp2026-mcommit-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.lp2026 .lp2026-mcommit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 70, 54, 0.08);
}

.lp2026 .lp2026-mcommit-num {
  font-size: 24px;
  font-weight: 700;
  color: #E2962D;
  margin-bottom: 12px;
  display: block;
}

.lp2026 .lp2026-mcommit-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-weight: 700;
  color: #C27E1D;
  margin: 0 0 12px 0;
  border-bottom: 2px solid #FAF9F6;
  padding-bottom: 8px;
}

.lp2026 .lp2026-compare-table-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 16px;
  font-weight: 700;
  color: #4A4636;
  margin: 32px 0 16px 0;
  text-align: left;
  border-left: 3px solid #E2962D;
  padding-left: 8px;
  width: 100%;
}

.lp2026 .lp2026-mcommit-desc {
  font-size: 14px;
  color: #4A4636;
  line-height: 1.6;
  margin: 0;
}

.lp2026 .lp2026-section-closing-text {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 16px;
  font-weight: 700;
  color: #4A4636;
  text-align: center;
  margin-top: 32px;
  line-height: 1.6;
}

/* 20. おすすめの飲み方 */
.lp2026 .lp2026-drinking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.lp2026 .lp2026-drinking-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #DDD9CE;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp2026 .lp2026-drinking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 70, 54, 0.08);
}

.lp2026 .lp2026-drinking-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FAF9F6;
  border: 1px solid #E2962D;
  color: #E2962D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.lp2026 .lp2026-drinking-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 16px;
  font-weight: 700;
  color: #C27E1D;
  margin: 0 0 8px 0;
}

.lp2026 .lp2026-drinking-desc {
  font-size: 14px;
  color: #4A4636;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .lp2026 .lp2026-mcommit-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp2026 .lp2026-drinking-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 480px) {
  .lp2026 .lp2026-drinking-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
