@charset "utf-8";

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
  --primary-color: #1976D2;
  /* 父の日らしい落ち着いたブルー */
  --secondary-color: #BBDEFB;
  --text-main: #333333;
  --text-muted: #666666;
  --bg-light: #F9F9F9;
  --bg-reasons: #F0F8FF;
  /* 3つの理由セクションの背景色 */
  --border-color: #E0E0E0;
  --placeholder-bg: #EAEAEA;
  --font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  line-height: 1.6;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Utility Classes & Placeholders
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }

  br.sp-only,
  span.sp-only {
    display: inline !important;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.img-placeholder {
  background-color: var(--placeholder-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 11pt;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, transparent 49%, #ccc 50%, transparent 51%),
    linear-gradient(to top right, transparent 49%, #ccc 50%, transparent 51%);
  opacity: 0.3;
}

.section-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: #FFF !important;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none !important;
}

.btn:hover {
  background-color: #B71C1C;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--bg-light);
}

/* ==========================================================================
   Header
   ========================================================================== */
.lp-header {
  border-bottom: 1px solid var(--border-color);
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header-logo {
  height: 60px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  font-size: 11pt;
  font-weight: 500;
}

.header-icons {
  display: flex;
  gap: 1.5rem;
}

.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.header-icon i {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.lp-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 480px;
  max-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lp-hero .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 100%;
  /* 共通コンテナの幅制限を解除 */
  margin: 0;
  /* 中央揃えを解除 */
  padding-left: 10%;
  /* 常に画面左から10%の位置に固定し、右側のビールと被らないようにする */
}

.hero-content {
  flex: 1;
  max-width: 480px;
  /* ビールと被らないようにテキスト幅を少し狭める */
  position: relative;
}

.hero-catch {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  position: relative;
}

.hero-badge {
  position: absolute;
  right: -90px;
  bottom: -40px;
  width: 110px;
  height: 110px;
  background-color: #FFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  z-index: 3;
}

.hero-badge .date {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
}

.hero-badge .text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.lp-features {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.features-list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #FFF;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 11pt;
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Ranking Section
   ========================================================================== */
.lp-ranking {
  background-color: var(--bg-reasons);
  padding: 5rem 0;
}

.ranking-grid {
  display: flex;
  gap: 2rem;
}

.ranking-card {
  flex: 1;
  background: #FFF;
  border-radius: 8px;
  /* overflow: hidden; を削除してバッジのはみ出しを許可 */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.ranking-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
  z-index: 5;
  /* バッジが確実に最前面に来るようにZ-indexを上げる */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFF;
}

.ranking-badge .num {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.ranking-badge .unit {
  font-size: 11pt;
  font-weight: bold;
}

.rank-1 {
  background: linear-gradient(135deg, #FFD700, #DAA520);
}

.rank-2 {
  background: linear-gradient(135deg, #E0E0E0, #A9A9A9);
}

.rank-3 {
  background: linear-gradient(135deg, #CD7F32, #8B4513);
}

.ranking-img-wrapper {
  display: block;
  height: 250px;
  overflow: hidden;
  /* ここで画像の角丸をクリップする */
  border-radius: 8px 8px 0 0;
  background-color: #F8F8F8;
}

.ranking-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.ranking-img-wrapper:hover .ranking-img {
  transform: scale(1.05);
  /* ホバー時に画像を少し拡大 */
}

.ranking-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ranking-item-name {
  font-size: 11pt;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.ranking-item-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ranking-item-name a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.ranking-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.ranking-price span {
  font-size: 11pt;
  font-weight: normal;
}

.btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

/* ==========================================================================
   Beer Styles Section
   ========================================================================== */
.lp-beer-styles {
  padding: 4rem 0;
  background-color: var(--bg-reasons);
  border-bottom: 1px solid var(--border-color);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.style-card {
  background: #FFF;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.style-icon {
  margin: 0 auto 1.5rem;
  text-align: center;
}

.style-icon a {
  display: block;
}

.style-icon img {
  width: 45%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.style-info h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.style-taste {
  font-weight: bold;
  color: var(--text-main);
  font-size: 11pt;
  margin-bottom: 1rem;
  background-color: #f4f4f4;
  padding: 4px 8px;
  border-radius: 4px;
}

.style-info p:not(.style-taste) {
  font-size: 11pt;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: left;
}

/* ==========================================================================
   Type Guide Section
   ========================================================================== */
.lp-type-guide {
  padding: 4rem 0;
}

.type-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.type-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.type-header {
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  color: #FFF;
  font-size: 1.1rem;
  background-color: var(--primary-color);
}

.type-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.type-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.type-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.type-btn-wrap {
  text-align: center;
  background-color: var(--bg-light);
  padding: 1.5rem 1rem;
  border-radius: 4px;
}

.recommend-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.type-link {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-main);
  text-decoration: underline;
  text-decoration-color: var(--border-color);
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}

.type-link:hover {
  color: var(--primary-color);
  text-decoration-color: var(--primary-color);
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.lp-products {
  padding: 5rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.section-header .section-title {
  margin-bottom: 0;
}

.view-all {
  font-size: 11pt;
  color: var(--primary-color);
  font-weight: bold;
}

.product-slider-wrap {
  position: relative;
}

.product-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  padding-bottom: 1rem;
}

.product-slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.product-card {
  flex: 0 0 calc(25% - 1.125rem);
  scroll-snap-align: start;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #c92a2a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 0 0 8px 0;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  display: inline-block;
  white-space: nowrap;
}

.product-img-link {
  display: block;
  height: 200px;
  overflow: hidden;
  background-color: #F8F8F8;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-img-link:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  height: 3.15rem;
  overflow: hidden;
}

.product-info h3 a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-info h3 a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.product-price span {
  font-size: 11pt;
  color: var(--text-main);
  font-weight: normal;
}

/* Cart Form UI inside Product Card */
.cart-form-ui {
  margin-top: auto;
}

.age-verification {
  font-size: 0.75rem;
  background: var(--bg-light);
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid #eee;
}

.age-verification p {
  margin-bottom: 4px;
  color: var(--text-main);
  font-weight: bold;
}

.age-radios {
  display: flex;
  gap: 10px;
}

.cart-controls {
  display: flex;
  gap: 10px;
}

.qty-input {
  width: 60px;
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
}

.btn-add-cart {
  flex: 1;
  padding: 10px 0;
  background-color: var(--primary-color);
  color: #FFF;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  opacity: 0.85;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.slider-prev,
.voice-slider-prev {
  left: -20px;
}

.slider-next,
.voice-slider-next {
  right: -20px;
}

/* ==========================================================================
   Gift Services Section
   ========================================================================== */
.lp-gift-services {
  padding: 4rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.gift-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gift-card {
  background: #FFF;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid var(--border-color);
}

.gift-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.gift-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.gift-desc {
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.gift-desc p {
  margin-bottom: 1.2rem;
}

.gift-desc p:last-child {
  margin-bottom: 0;
}

.gift-desc strong {
  color: var(--text-main);
}

.gift-desc .note {
  font-size: 0.85rem;
  color: #888;
  background: #f4f4f4;
  padding: 12px;
  border-radius: 4px;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .gift-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Brand Section & Customer Voices Section
   ========================================================================== */
.lp-brand {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-light);
  /* 背景に薄い色を敷いて区別 */
}

.brand-intro {
  max-width: 1000px;
  margin: 0 auto;
}

.brand-philosophy {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.philosophy-img {
  flex: 0 0 45%;
}

.philosophy-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.philosophy-text {
  flex: 1;
}

.philosophy-text h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: left;
}

.philosophy-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  text-align: left;
}

.brand-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.brand-feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand-feature-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.brand-feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.brand-feature-item p {
  font-size: 11pt;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: left;
}

.brand-achievements {
  background: #FFF;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.brand-achievements h4 {
  text-align: center;
}

.brand-achievements p,
.brand-achievements div {
  text-align: left;
}

.lp-voices {
  padding: 4rem 0;
  background-color: #FFF;
}

.voice-slider-wrap {
  position: relative;
}

.voice-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 1.5rem;
}

.voice-slider::-webkit-scrollbar {
  display: none;
}

.voice-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: #f9f9f9;
  border: none;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.voice-rating {
  color: #FFB300;
  font-size: 11pt;
  letter-spacing: 2px;
}

.voice-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-main);
  margin: 0;
}

.voice-text {
  font-size: 11pt;
  line-height: 1.6;
  color: var(--text-main);
  flex-grow: 1;
}

.voice-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.voice-user-icon {
  font-size: 2.5rem;
  color: #dcdcdc;
}

.voice-user-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: bold;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.lp-faq {
  padding: 4rem 0;
  background-color: #FFF;
  border-top: 1px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: #FFF;
}

.faq-question {
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer CTA
   ========================================================================== */
.lp-footer-cta {
  background-color: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
}

.lp-footer-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.25rem;
}

/* ==========================================================================
   Footer Utilities (Age Warning & Page Top)
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

.age-warning-footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.age-warning-footer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: bold;
}

.page-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #FFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  text-decoration: none !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.page-top-btn.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top-btn:hover {
  background-color: var(--primary-color);
  opacity: 1;
  transform: translateY(-3px);
  color: #FFF !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .features-list {
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 0 0 calc(50% - 1rem);
  }

  .reasons-grid {
    flex-direction: column;
  }

  .ranking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .type-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .voice-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .bottom-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  /* Override Common CSS fixed width */
  html,
  body {
    min-width: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  #wrapper,
  #container,
  .container {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Padding & Layout */
  .lp-hero,
  .lp-features,
  .lp-ranking,
  .lp-products,
  .lp-brand,
  .lp-voices,
  .lp-footer-cta {
    padding: 2.5rem 0;
  }

  /* Header */
  .lp-header .header-nav {
    display: none;
  }

  .header-icon span {
    display: none;
  }

  .header-icons {
    gap: 1rem;
  }

  .header-logo {
    height: 40px;
  }

  /* Hero */
  .lp-hero {
    padding: 0;
    min-height: auto;
    aspect-ratio: 350 / 600;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 6rem;
    /* ボタンはみ出し分を考慮して拡大 */
    display: block;
    /* PCのflex指定(中央揃え)を解除 */
    color: var(--text-main);
    overflow: visible;
    /* はみ出したボタンが見えるようにする */
  }

  .lp-hero .container {
    display: block;
    text-align: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: calc(7rem - 30px) 20px 0;
    /* 文字がガーランドにかぶらないよう下へ移動 */
    box-sizing: border-box;
    z-index: 2;
  }

  .hero-content {
    padding-right: 0;
    position: static;
    width: 100%;
    margin: 0;
  }

  .hero-catch {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .hero-catch,
  .hero-title,
  .hero-desc {
    text-shadow: none;
    font-weight: bold;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
  }

  .hero-desc {
    font-size: 11pt;
    margin-bottom: 0;
    position: static;
    color: var(--text-main);
  }

  .hero-badge {
    position: absolute;
    bottom: calc(20% + 120px);
    left: 5%;
    margin: 0;
    transform: none;
    top: auto;
    right: auto;
    z-index: 5;
  }

  .lp-hero .btn {
    width: 90%;
    max-width: 400px;
    position: absolute;
    bottom: calc(-2rem - 40px);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    display: flex;
    box-sizing: border-box;
    background-color: var(--primary-color) !important;
    border: none;
    color: #FFF !important;
    white-space: nowrap;
    font-size: 11pt;
    padding: 1.2rem 1rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Features */
  .feature-item {
    flex: 0 0 100%;
  }

  /* Beer Styles & Type Guide */
  .style-grid {
    grid-template-columns: 1fr;
  }

  .type-guide-grid {
    grid-template-columns: 1fr;
  }

  /* Products Section Header */
  .section-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Ranking */
  .ranking-grid {
    grid-template-columns: 1fr;
  }

  /* Sliders (85% width) */
  .product-card {
    flex: 0 0 calc(85% - 1.5rem);
  }

  .voice-card {
    flex: 0 0 calc(85% - 1.5rem);
  }

  /* Brand */
  .brand-features {
    flex-direction: column;
  }

  .brand-philosophy {
    flex-direction: column;
    gap: 2rem;
  }

  .philosophy-img {
    flex: 0 0 100%;
    width: 100%;
  }

  /* Footer */
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Footer Utilities */
  .page-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .age-warning-footer {
    padding: 1.5rem 1rem;
    margin-top: 1rem;
  }

  .age-warning-footer p {
    font-size: 0.85rem;
  }

  /* Override Common Footer Styles */
  #guide_bottom_wrap,
  #guide_bottom {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .guide_bottom_L,
  .guide_bottom_C,
  .guide_bottom_R {
    float: none !important;
    width: 100% !important;
    margin-bottom: 2rem;
    display: block;
  }

  .guide_bottom_BOX {
    width: 100% !important;
    box-sizing: border-box;
  }

  #guide_bottom_wrap img {
    max-width: 100% !important;
    height: auto !important;
  }

  #footer,
  #footer_wrap {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
}

/* ==================================================
   Added for O-Chugen LP Improvements
   ================================================== */

.btn-primary {
  background: #0b3b60;
  color: #fff;
  font-weight: bold;

  color: #fff !important;}

.btn-product {
  background: #c9482b;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;

  color: #fff !important;}

.btn-secondary {
  background: #e0e0e0;
  color: #333;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;

  color: #fff !important;}

.hero-recommend-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-recommend-nav a {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9em;
  flex: 1;
  min-width: 120px;
}
.hero-recommend-nav a span { font-size: 0.8em; color: #666; }
.hero-recommend-nav a strong { font-size: 1.1em; margin: 5px 0; color: #0b3b60; }
.hero-recommend-nav a em { font-style: normal; font-weight: bold; color: #c9482b; }

.product-target {
  font-weight: bold;
  color: #0b3b60;
  background: #f0f8ff;
  padding: 8px;
  border-radius: 4px;
  font-size: 0.9em;
  margin-bottom: 10px;
}
.product-use {
  display: inline-block;
  background: #0b3b60;
  color: #fff;
  font-size: 0.8em;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 5px;
}

.cta-center {
  text-align: center;
  margin-top: 30px;
}
.cta-note {
  margin-bottom: 10px;
  font-weight: bold;
}

.quick-guide-cards {
  display: none;
  gap: 15px;
}
.quick-guide-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}
.quick-guide-card .guide-label {
  display: inline-block;
  background: #eee;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.8em;
  margin-bottom: 10px;
}
.quick-guide-card h3 {
  font-size: 1.1em;
  margin: 0 0 10px;
  color: #0b3b60;
}
.quick-guide-card span {
  display: block;
  font-weight: bold;
  color: #c9482b;
  margin-bottom: 10px;
}

.sake-choice-box, .corporate-prepare-box, .article-link-box {
  background: #fdfbf7;
  border: 2px solid #e0d8c8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.sake-choice-box h3, .corporate-prepare-box h3, .article-link-box h3 {
  margin-top: 0;
  color: #0b3b60;
}

.lp-anchor-nav {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.lp-anchor-nav .container {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  gap: 15px;
}
.lp-anchor-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 0.9em;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 20px;
}

.simple-diagnosis .diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.diagnosis-card {
  display: block;
  background: #f0f8ff;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  border: 1px solid #cce0ff;
  transition: transform 0.2s;
}
.diagnosis-card:hover {
  transform: translateY(-2px);
}
.diagnosis-card span {
  display: block;
  font-weight: bold;
  color: #0b3b60;
  margin-bottom: 5px;
}
.diagnosis-card strong {
  display: block;
  color: #c9482b;
}

@media screen and (max-width: 768px) {
  .guide-table-wrap {
    display: none;
  }
  .quick-guide-cards {
    display: flex;
    flex-direction: column;
  }
}

/* ==================================================
   Added for Phase 2 Slider
   ================================================== */
.product-slider-block {
  margin-top: 20px;
}
.product-slider {
  position: relative;
  margin-top: 20px;
}
.product-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
}
.product-slider__track::-webkit-scrollbar {
  height: 8px;
}
.product-slider__track::-webkit-scrollbar-thumb {
  background: #d6c2a5;
  border-radius: 999px;
}
.slider-item {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}
.slider-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(11, 59, 96, 0.92);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.slider-btn--prev { left: -18px; }
.slider-btn--next { right: -18px; }
.slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
@media screen and (max-width: 900px) {
  .slider-item { flex-basis: calc((100% - 24px) / 2); }
}
@media screen and (max-width: 640px) {
  .product-slider__track {
    gap: 16px;
    padding-bottom: 18px;
  }
  .slider-item { flex-basis: 82%; }
  .slider-btn { display: none; }
}


/* ==================================================
   Phase 3: Base Layout & Responsive CSS
   ================================================== */
   
/* Reset & Base Settings */
.ochugen-sales-lp {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  font-size: 16px;
}
.ochugen-sales-lp img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.ochugen-sales-lp a {
  transition: opacity 0.2s;
}
.ochugen-sales-lp a:hover {
  opacity: 0.8;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Backgrounds */
.section-white { background-color: #ffffff; }
.section-kinari { background-color: #fdfbf7; }
.section-blue { background-color: #f0f8ff; }

/* Typography */
.ochugen-sales-lp h2 {
  font-size: 28px;
  text-align: center;
  color: #0b3b60;
  margin-bottom: 40px;
  font-weight: bold;
}
.ochugen-sales-lp h3 {
  font-size: 20px;
  color: #0b3b60;
  margin-bottom: 15px;
}

/* Hero Section - Sales LP Premium Design */
.ochugen-hero {
  background: linear-gradient(135deg, #0b3b60 0%, #164f7c 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Subtle background pattern/texture for premium feel */
.ochugen-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.ochugen-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.ochugen-hero__copy {
  flex: 1.2;
  padding-right: 50px;
}
.ochugen-hero__visual {
  flex: 0.8;
  position: relative;
}
.ochugen-hero__visual img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  background: #fff;
}

/* Typography Overrides for Hero */
.ochugen-hero__kicker {
  display: inline-block;
  background: #c9482b;
  color: #fff;
  font-size: 11pt;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.ochugen-hero h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.ochugen-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #e6f0fa;
  margin-bottom: 30px;
}

/* Hero Recommend Nav */
.ochugen-hero .hero-recommend-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  margin-top: 0;
}
.ochugen-hero .hero-recommend-nav a {
  background: #fff;
  border: 2px solid transparent;
  padding: 15px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s, border-color 0.2s;
}
.ochugen-hero .hero-recommend-nav a:hover {
  transform: translateY(-5px);
  border-color: #c9482b;
}
.ochugen-hero .hero-recommend-nav a span { font-size: 11pt; color: #666; font-weight: bold; }
.ochugen-hero .hero-recommend-nav a strong { font-size: 16px; margin: 5px 0; color: #0b3b60; }
.ochugen-hero .hero-recommend-nav a em { font-style: normal; font-weight: bold; color: #c9482b; font-size: 11pt; }

/* Badges */
.ochugen-hero__badges {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.ochugen-hero__badges li {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11pt;
  margin: 0 6px 8px 0;
}

/* CTAs inside Hero */
.ochugen-hero__cta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.ochugen-hero__cta .btn-primary {
  margin: 0;
  max-width: 300px;
  background: #c9482b;
  font-size: 16px;

  color: #fff !important;}
.ochugen-hero__cta .btn-secondary {
  margin: 0;
  max-width: 200px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;

  color: #fff !important;}

.ochugen-hero__note {
  font-size: 11pt;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Mobile Adjustments for Hero */
@media screen and (max-width: 768px) {
  .ochugen-hero { padding: 40px 0; }
  .ochugen-hero h1 { font-size: 26px; }
  .ochugen-hero__copy { padding-right: 0; margin-bottom: 40px; }
  .ochugen-hero .hero-recommend-nav { flex-direction: column; gap: 10px; }
  .ochugen-hero .hero-recommend-nav a { flex-direction: row; justify-content: space-between; padding: 10px 20px; }
  .ochugen-hero .hero-recommend-nav a span { font-size: 11pt; }
  .ochugen-hero .hero-recommend-nav a strong { font-size: 16px; margin: 0; }
  .ochugen-hero .hero-recommend-nav a em { font-size: 11pt; }
  .ochugen-hero__cta { flex-direction: column; }
  .ochugen-hero__cta .btn-primary, .ochugen-hero__cta .btn-secondary { max-width: 100%; 
  color: #fff !important;}
}

/* Grids */
.first-choice-grid, .budget-grid, .staff-grid, .corporate-grid, .guide-grid, .beer-scene-grid {
  display: grid;
  gap: 20px;
}
.first-choice-grid { grid-template-columns: repeat(3, 1fr); }
.budget-grid { grid-template-columns: repeat(4, 1fr); gap: 15px; }
.staff-grid, .corporate-grid { grid-template-columns: repeat(2, 1fr); }
.guide-grid { grid-template-columns: repeat(2, 1fr); }
.beer-scene-grid { grid-template-columns: repeat(3, 1fr); }

/* Product Cards */
.first-choice-card, .product-card, .beer-scene-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.product-badge {
  display: inline-block;
  background: #c9482b;
  color: #fff;
  font-size: 11pt;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 15px;
  align-self: flex-start;
}
.product-meta {
  font-size: 11pt;
  color: #666;
  margin-bottom: 5px;
}
.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #0b3b60;
  margin-bottom: 15px;
}
.product-point-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 11pt;
}
.product-point-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.product-point-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c9482b;
}

/* Split Layout */
.split-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}
.split-layout__image {
  flex: 1;
}
.split-layout__text {
  flex: 1;
}

/* Buttons */
.btn-primary, .btn-product, .btn-secondary, .text-link {
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;

  color: #fff !important;}
.btn-product {
  background: #c9482b;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  font-weight: bold;

  color: #fff !important;}
.btn-primary {
  background: #0b3b60;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 40px;
  max-width: 400px;
  margin: 30px auto 0;

  color: #fff !important;}
.btn-secondary {
  background: #fff;
  color: #0b3b60;
  border: 2px solid #0b3b60;
  padding: 12px;
  border-radius: 4px;
  max-width: 300px;
  margin: 15px auto 0;

  color: #fff !important;}
.text-link {
  color: #c9482b;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 15px;
}

/* Other components */
.budget-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: border-color 0.2s;
}
.budget-card:hover { border-color: #0b3b60; }
.budget-card h3 { font-size: 18px; margin: 0; }
.budget-card span { font-size: 11pt; color: #666; }

.staff-card, .corporate-card, .guide-card {
  background: #fdfbf7;
  padding: 20px;
  border-radius: 8px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.faq-item dt {
  font-weight: bold;
  color: #0b3b60;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.faq-item dt::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: #c9482b;
}
.faq-item dd {
  margin: 0;
  padding-left: 30px;
}

.final-cta {
  background: #0b3b60;
  color: #fff;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.final-cta .btn-primary { background: #c9482b; border: none; margin: 0; 
  color: #fff !important;}
.final-cta .btn-secondary { background: transparent; border: 2px solid #fff; color: #fff; margin: 0; 
  color: #fff !important;}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .section-inner { padding: 40px 15px; }
  .ochugen-sales-lp h2 { font-size: 22px; margin-bottom: 30px; }
  
  .ochugen-hero__inner { flex-direction: column; text-align: center; }
  .ochugen-hero__copy { padding-right: 0; margin-bottom: 30px; }
  .ochugen-hero__badges li { font-size: 11pt; }
  
  .first-choice-grid { grid-template-columns: 1fr; }
  .budget-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid, .corporate-grid, .guide-grid { grid-template-columns: 1fr; }
  .beer-scene-grid { grid-template-columns: 1fr; }
  
  .split-layout { flex-direction: column; }
  
  .final-cta-buttons { flex-direction: column; }
  .final-cta .btn-primary, .final-cta .btn-secondary { max-width: 100%; 
  color: #fff !important;}
}

/* ==================================================
   Card Brush-up (First Choice & Product Sliders)
   ================================================== */
.first-choice-grid {
  gap: 30px;
}
.first-choice-card, .product-card, .beer-scene-card {
  border: none !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  overflow: hidden !important;
  padding: 0 !important;
  border-radius: 12px !important;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.first-choice-card:hover, .product-card:hover, .beer-scene-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12) !important;
}
.first-choice-card img, .product-card img, .beer-scene-card img {
  width: 100% !important;
  height: auto;
  border-radius: 12px 12px 0 0 !important;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
}
/* target all direct children except img to have padding */
.first-choice-card > *:not(img), .product-card > *:not(img), .beer-scene-card > *:not(img) {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.first-choice-card h3, .product-card h3 {
  font-size: 20px !important;
  font-weight: 900 !important;
  margin-top: 20px !important;
  margin-bottom: 5px !important;
  line-height: 1.4 !important;
}
.product-use {
  display: inline-block;
  background: #0b3b60 !important;
  color: #fff !important;
  font-size: 12px !important;
  padding: 5px 12px !important;
  border-radius: 4px !important;
  margin-top: 20px !important;
  margin-bottom: 10px !important;
  font-weight: bold !important;
  letter-spacing: 1px;
}
.product-price {
  font-size: 24px !important;
  color: #c9482b !important;
  margin: 10px 0 20px !important;
  font-weight: bold;
}
.product-target {
  background: #f4f8fb !important;
  border-left: 4px solid #0b3b60 !important;
  padding: 12px 15px !important;
  font-size: 13px !important;
  color: #333 !important;
  border-radius: 0 4px 4px 0 !important;
  margin-bottom: 20px !important;
  font-weight: bold;
  line-height: 1.5;
}
.product-point-list {
  font-size: 14px !important;
  color: #444 !important;
  margin-bottom: 25px !important;
}
.product-point-list li {
  margin-bottom: 8px !important;
  padding-left: 22px !important;
}

/* Ensure button stays at bottom */
.first-choice-card .btn-product, .product-card .btn-product, .beer-scene-card .text-link {
  margin: auto 24px 24px !important;
  width: calc(100% - 48px) !important;

  color: #fff !important;}
.btn-product {
  background: linear-gradient(180deg, #e35a3b 0%, #c9482b 100%) !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(201, 72, 43, 0.3) !important;
  padding: 16px !important;
  font-size: 16px !important;
  transition: filter 0.2s, transform 0.2s !important;
  text-align: center;
  border-radius: 6px !important;

  color: #fff !important;}
.btn-product:hover {
  filter: brightness(1.1) !important;
  transform: translateY(-2px) !important;

  color: #fff !important;}

/* ==================================================
   Simple Diagnosis Brush-up
   ================================================== */
.simple-diagnosis .section-inner {
  max-width: 800px;
}
.simple-diagnosis h2 {
  margin-bottom: 20px;
}
.simple-diagnosis .diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-top: 30px;
}
.diagnosis-card {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fdfbf7 !important;
  padding: 30px 20px !important;
  border-radius: 12px !important;
  text-decoration: none;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
  transition: all 0.3s ease !important;
  text-align: center;
  position: relative;
}
.diagnosis-card:hover {
  transform: translateY(-4px) !important;
  background: #fff !important;
  border-color: #0b3b60 !important;
  box-shadow: 0 10px 25px rgba(11,59,96,0.15) !important;
}
.diagnosis-card span {
  display: block;
  font-weight: 900 !important;
  color: #0b3b60 !important;
  font-size: 18px !important;
  margin-bottom: 12px !important;
}
.diagnosis-card strong {
  display: inline-block;
  color: #c9482b !important;
  font-size: 15px !important;
  background: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid #ffdcd6;
  transition: all 0.3s;
}
.diagnosis-card:hover strong {
  background: #c9482b;
  color: #fff !important;
  border-color: #c9482b;
}

@media screen and (max-width: 768px) {
  .simple-diagnosis .diagnosis-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .diagnosis-card {
    padding: 20px !important;
  }
}

/* ==================================================
   Anchor Nav Sticky Fix
   ================================================== */
.lp-anchor-nav {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 80px !important;
  z-index: 9999 !important;
  background: #fff !important; /* Ensure background is solid so content doesn't show behind */
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


/* Global Text Size & CTA Color Enforcements */
p, .product-meta, .product-target, .cta-note, .slider-item p {
  font-size: 11pt !important;
  line-height: 1.6;
}
.btn-primary, .btn-secondary, .btn-product, .ochugen-hero__cta a {
  color: #fff !important;
}


/* ==================================================
   Design Refinements & Margins
   ================================================== */
/* サイト全体の余白を増やして洗練させる */
.ochugen-sales-lp section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .ochugen-sales-lp section {
    padding: 60px 0;
  }
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 「迷ったらこの3つ」セクションを美しく整える */
.first-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.first-choice-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}
.first-choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.first-choice-card--main {
  border: 2px solid #0b3b60; /* 一番おすすめを強調 */
}

/* カード内の画像とバッジ */
.first-choice-card .product-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #0b3b60;
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 12px 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  z-index: 2;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
  line-height: 1.4;
  white-space: nowrap;
}
.first-choice-card--main .product-badge {
  background: #c92a2a; /* メインは赤で強調 */
}
.first-choice-card .product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f8f9fa;
}
.first-choice-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* カード内のテキスト・コンテンツ */
.first-choice-card .product-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.first-choice-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #0b3b60;
}
.first-choice-card h3 .product-use {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
  font-weight: normal;
}
.first-choice-card .product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c92a2a;
  margin: 10px 0;
}
.first-choice-card .product-target {
  background: #f4f8fb;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 11pt !important;
  color: #0b3b60;
  font-weight: bold;
}
.first-choice-card .product-point-list {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.first-choice-card .product-point-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 11pt;
  color: #444;
}
.first-choice-card .product-point-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0b3b60;
  font-weight: bold;
}
.first-choice-card .btn-product {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 15px 0;
  background: #0b3b60;
  color: #fff !important;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.2s;
}
.first-choice-card .btn-product:hover {
  background: #072a44;
}
.first-choice-card--main .btn-product {
  background: #c92a2a;
}
.first-choice-card--main .btn-product:hover {
  background: #a01d1d;
}

/* スマホ表示の調整 */
@media screen and (max-width: 768px) {
  .first-choice-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ==================================================
   Simple Product (甘酒セクションなど)
   ================================================== */
.simple-product {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 25px 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  text-align: center;
}
.simple-product:last-child {
  margin-bottom: 0;
}
.simple-product h3 {
  font-size: 1.15rem;
  font-weight: bold;
  color: #0b3b60;
  margin-bottom: 10px;
}
.simple-product .product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #c92a2a;
  margin-bottom: 15px;
}
.simple-product .btn-product {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: #c92a2a;
  color: #fff !important;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.2s;
}
.simple-product .btn-product:hover {
  background: #a01d1d;
}


/* ==================================================
   Budget Section (予算別)
   ================================================== */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.budget-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.budget-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.budget-card h3 {
  font-size: 1.4rem;
  color: #0b3b60;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-align: center;
}
.budget-card p {
  font-size: 11pt !important;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}
.budget-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}
.budget-card li {
  font-size: 11pt !important;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  color: #333;
}
.budget-card li::before {
  content: '✓';
  color: #c92a2a;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.budget-card .text-link {
  align-self: center;
  background: #f0f4f8;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 11pt !important;
  text-decoration: none !important;
  color: #0b3b60 !important;
  transition: background 0.2s;
  display: block;
  text-align: center;
  width: 100%;
}
.budget-card .text-link:hover {
  background: #0b3b60;
  color: #fff !important;
}

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

/* ==================================================
   Staff Recommend (売店おすすめ)
   ================================================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.staff-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #0b3b60;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.staff-card h3 {
  font-size: 1.25rem;
  color: #0b3b60;
  margin-bottom: 15px;
  font-weight: bold;
}
.staff-card h3::before {
  content: 'Q.';
  color: #c92a2a;
  margin-right: 8px;
  font-size: 1.4rem;
}
.staff-card p {
  font-size: 11pt !important;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.staff-card .text-link {
  font-size: 11pt !important;
  font-weight: bold;
  color: #c92a2a !important;
  text-decoration: underline;
  align-self: flex-start;
}
.staff-card .text-link:hover {
  opacity: 0.7;
}

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


/* ==================================================
   Corporate Section (法人ギフト)
   ================================================== */
.corporate-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
@media screen and (max-width: 768px) {
  .corporate-box {
    padding: 25px 20px;
  }
}
.corporate-box h3 {
  font-size: 1.3rem;
  color: #0b3b60;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}
.check-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 11pt !important;
  color: #333;
  border-bottom: 1px dashed #e0e0e0;
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 10px;
  color: #c92a2a;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ==================================================
   Article Link Box & Button Fix
   ================================================== */
.article-link-box {
  background: #f4f8fb;
  border: 2px solid #d0e1f0;
  border-radius: 12px;
  padding: 40px;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
}
.article-link-box h3 {
  font-size: 1.4rem;
  color: #0b3b60;
  margin-bottom: 15px;
  font-weight: bold;
}
.article-link-box p {
  margin-bottom: 30px;
  font-size: 11pt !important;
}
/* Fix btn-secondary visibility issue (white on white) */
.btn-secondary {
  background-color: #0b3b60 !important;
  color: #fff !important;
  border: none !important;
  padding: 15px 30px !important;
  border-radius: 8px !important;
  display: inline-block;
  font-weight: bold;
}
.btn-secondary:hover {
  background-color: #072a44 !important;
}

/* ==================================================
   FAQ Section
   ================================================== */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px 40px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .faq-item {
    padding: 25px 20px;
  }
}
.faq-item h3 {
  font-size: 1.2rem;
  color: #0b3b60;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.faq-item h3::before {
  content: 'Q.';
  color: #c92a2a;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}
.faq-item p {
  font-size: 11pt !important;
  color: #444;
  line-height: 1.7;
  padding-left: 35px;
  position: relative;
}
.faq-item p::before {
  content: 'A.';
  position: absolute;
  left: 0;
  top: 0;
  color: #0b3b60;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}


/* ==================================================
   New Hero Layout (Image Only + Info Bar)
   ================================================== */
.ochugen-hero {
  background: #f8f9fa !important;
  padding-top: 0 !important;
  padding-bottom: 40px !important;
}
.ochugen-hero::before {
  display: none !important;
}
.ochugen-hero__visual-full {
  width: 100%;
  background: #fff;
  text-align: center;
}
.hero-img-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
  display: block;
}

.ochugen-hero__info-bar {
  padding: 30px 0 0;
}
.ochugen-hero__badges-full {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.ochugen-hero__badges-full li {
  background: #fff;
  border: 1px solid #0b3b60;
  color: #0b3b60;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.hero-recommend-nav-full {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.hero-recommend-nav-full a {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  width: 100%;
  max-width: 280px;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.hero-recommend-nav-full a:hover {
  border-color: #0b3b60;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}
.hero-recommend-nav-full span {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}
.hero-recommend-nav-full strong {
  display: block;
  font-size: 18px;
  color: #0b3b60;
  margin-bottom: 8px;
}
.hero-recommend-nav-full em {
  font-style: normal;
  color: #c92a2a;
  font-weight: bold;
  font-size: 14px;
}

.ochugen-hero__note-full {
  text-align: center;
  font-size: 13px !important;
  color: #666;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .hero-recommend-nav-full {
    flex-direction: column;
    align-items: center;
  }
  .hero-recommend-nav-full a {
    max-width: 100%;
  }
}


/* ==================================================
   Section Kicker (Subtle Heading Design)
   ================================================== */
.section-kicker {
  font-size: 13px;
  font-weight: bold;
  color: #0b3b60;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.section-kicker::before,
.section-kicker::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #0b3b60;
  opacity: 0.4;
}


/* ==================================================
   Tiffany Blue CTA Override
   ================================================== */
.btn-primary,
.final-cta .btn-primary {
  background: #12A8A5 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(18, 168, 165, 0.3) !important;
  transition: all 0.3s ease !important;
}
.btn-primary:hover,
.final-cta .btn-primary:hover {
  background: #0d8a88 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(18, 168, 165, 0.4) !important;
}

.btn-product {
  background: linear-gradient(180deg, #32d1ce 0%, #12A8A5 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(18, 168, 165, 0.4) !important;
  transition: all 0.3s ease !important;
}
.btn-product:hover {
  background: linear-gradient(180deg, #12A8A5 0%, #0d8a88 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(18, 168, 165, 0.5) !important;
}


/* ==================================================
   Product Image Link Hover
   ================================================== */
.product-image a {
  display: block;
  transition: opacity 0.2s;
}
.product-image a:hover {
  opacity: 0.85;
}


/* ==================================================
   Product Card Link Hover
   ================================================== */
.product-card > a {
  display: block;
  transition: opacity 0.2s;
}
.product-card > a:hover {
  opacity: 0.85;
}


/* ==================================================
   Fix: Card Image Padding & Square Aspect Ratio
   ================================================== */
.first-choice-card > .product-image,
.product-card > a,
.beer-scene-card > a {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  display: block;
}

.first-choice-card img, 
.product-card img, 
.beer-scene-card img {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  object-fit: cover !important;
}


/* ==================================================
   Fix: Card Image Padding & Square Aspect Ratio (Updated)
   ================================================== */
.first-choice-card > .product-image,
.product-card > a,
.beer-scene-card > a,
.first-choice-card > img,
.product-card > img,
.beer-scene-card > img {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  display: block;
}

.first-choice-card img, 
.product-card img, 
.beer-scene-card img {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 12px 12px 0 0 !important;
}


/* ==================================================
   Budget CTAs Layout Fix
   ================================================== */
.budget-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.budget-ctas .text-link {
  margin-top: 0 !important;
}
