/* ============================================
   BOAT DETAIL PAGE - 船宿詳細テンプレートCSS
   ============================================
   
   テンプレートとして使用可能
   - 全船宿ページ共通のスタイル
   - アフィリエイトカード対応
   - 動画セクション対応
   - レスポンシブ対応（768px / 480px）
   
   使用方法:
   <link rel="stylesheet" href="/assets/css/boat-detail.css">
   ============================================ */

* { box-sizing: border-box; }


body {
  font-family: 'Noto Sans JP', sans-serif;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  color: #1e293b;
  line-height: 1.7;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* パンくずリスト */
.breadcrumb {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  padding: 14px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.breadcrumb__item:not(:last-child)::after {
  content: '›';
  color: #94a3b8;
  margin-left: 4px;
}

.breadcrumb__link {
  color: #0369a1;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb__link:hover {
  color: #0284c7;
  text-decoration: underline;
}

.breadcrumb__current {
  color: #64748b;
  font-weight: 600;
}

/* ヒーローセクション */
.boat-hero {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
  padding: 60px 20px 80px;
  color: white;
  text-align: center;
}

.boat-hero__badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.boat-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin: 0 0 12px;
}

.boat-hero__specialty {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 8px;
}

.boat-hero__catchphrase {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0 0 30px;
}

.boat-hero__stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.stat-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 16px 28px;
  text-align: center;
}

.stat-card__value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 0.85rem;
  opacity: 0.85;
}

.boat-hero__cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn--secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.3);
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn__sub {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* セクション */
.section {
  padding: 50px 20px;
}

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

.section__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 30px;
  color: #0369a1;
}

.section__lead {
  color: #64748b;
  margin: -20px 0 30px;
}

/* 基本情報グリッド */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card__icon {
  font-size: 1.5rem;
}

.info-card__content dt {
  font-weight: 700;
  color: #0369a1;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.info-card__content dd {
  margin: 0;
  color: #475569;
}

.info-card__content a {
  color: #0369a1;
  text-decoration: none;
}

.info-card__content a:hover {
  text-decoration: underline;
}

/* 特徴バッジ */
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-badge {
  background: #e0f2fe;
  color: #0369a1;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* フロータイムライン */
.flow-timeline {
  position: relative;
  padding-left: 40px;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0369a1, #0ea5e9);
  border-radius: 3px;
}

.flow-step {
  position: relative;
  margin-bottom: 30px;
}

.flow-step__number {
  position: absolute;
  left: -40px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.flow-step__content {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.flow-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #0369a1;
}

.flow-step__body p {
  margin: 0 0 10px;
}

.flow-step__list {
  margin: 10px 0;
  padding-left: 20px;
}

.flow-step__list li {
  margin-bottom: 6px;
}

.flow-step__important {
  background: #fef3c7;
  padding: 10px 15px;
  border-radius: 8px;
  color: #92400e;
  font-weight: 600;
}

.flow-step__tips {
  background: #f0f9ff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.flow-step__tips h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #0369a1;
}

.flow-step__tips ul {
  margin: 0;
  padding-left: 20px;
}

/* 魚種カード */
.fish-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.fish-card {
  background: white;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.fish-card--main {
  border: 2px solid #0369a1;
}

.fish-card__header {
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.fish-card__icon {
  font-size: 2rem;
}

.fish-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
}

.fish-card__season {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
}

.fish-card__body {
  padding: 25px;
}

.fish-card__price {
  background: #f0f9ff;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.fish-card__price p {
  margin: 5px 0;
}

.fish-card__price strong {
  font-size: 1.3rem;
  color: #0369a1;
}

.fish-card__time {
  color: #64748b;
  font-size: 0.9rem;
}

.fish-card__description {
  color: #475569;
  margin-bottom: 20px;
}

/* ========================================
   プロ仕様アフィリエイトカード
   2列グリッド・高CVRデザイン
   ======================================== */

/* グリッドコンテナ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* 商品カード */
.product-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: #0369a1;
}

.product-card--premium {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.product-card--premium:hover {
  border-color: #d97706;
}

/* バッジ */
.product-card__badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(3,105,161,0.3);
}

.product-card__badge--premium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

.product-card__badge--entry {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}

/* 商品説明テキスト */
.product-card__description {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #9a3412;
}

/* 商品画像 */
.product-card__image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 16px;
  background: #f8fafc;
  padding: 10px;
}

/* 商品情報 */
.product-card__info {
  text-align: center;
  margin-bottom: 16px;
}

.product-card__brand {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card__name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1e293b;
  line-height: 1.4;
}

.product-card__price {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #dc2626;
  margin-bottom: 10px;
}

.product-card__tag {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card__tag--beginner {
  background: #dcfce7;
  color: #166534;
}

.product-card__tag--recommend {
  background: #dbeafe;
  color: #1e40af;
}

.product-card__tag--premium {
  background: #fef3c7;
  color: #92400e;
}

/* ボタンエリア */
.product-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-btn--rakuten {
  background: linear-gradient(135deg, #bf0000, #d40000);
  color: white;
}

.product-btn--rakuten:hover {
  background: linear-gradient(135deg, #a00000, #bf0000);
}

.product-btn--amazon {
  background: linear-gradient(135deg, #ff9900, #ffad33);
  color: #111;
}

.product-btn--amazon:hover {
  background: linear-gradient(135deg, #e68a00, #ff9900);
}

.product-btn--yahoo {
  background: linear-gradient(135deg, #ff0033, #ff3366);
  color: white;
}

.product-btn--yahoo:hover {
  background: linear-gradient(135deg, #e6002e, #ff0033);
}

/* タックル推奨 */
.tackle-recommend {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
}

.tackle-recommend__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #0369a1;
}

.tackle-category {
  font-weight: 700;
  color: #475569;
  margin: 15px 0 10px;
  font-size: 0.95rem;
}

.tackle-item {
  background: white;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
}

.tackle-item__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tackle-item__brand {
  background: #0369a1;
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tackle-item__name {
  font-weight: 700;
  color: #1e293b;
}

.tackle-item__price {
  color: #64748b;
  font-size: 0.9rem;
}

.tackle-item__badge {
  background: #fef3c7;
  color: #92400e;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tackle-item__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.affiliate-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.affiliate-btn--rakuten {
  background: #bf0000;
  color: white;
}

.affiliate-btn--rakuten:hover {
  background: #a00000;
}

.affiliate-btn--amazon {
  background: #ff9900;
  color: #111;
}

.affiliate-btn--amazon:hover {
  background: #e68a00;
}

.affiliate-btn--yahoo {
  background: #ff0033;
  color: white;
}

.affiliate-btn--yahoo:hover {
  background: #e6002e;
}

.tackle-note {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 15px;
}

/* その他の釣り物グリッド */
.fish-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.fish-card--small {
  background: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: visible;
}

.fish-card--small h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #0369a1;
}

.fish-card--small p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item__question {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item__question::before {
  content: 'Q.';
  color: #0369a1;
  font-weight: 800;
}

.faq-item__question::after {
  content: '▼';
  margin-left: auto;
  font-size: 0.8rem;
  color: #94a3b8;
  transition: transform 0.3s;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 20px 18px;
  color: #475569;
}

.faq-item__answer p {
  margin: 0;
}

/* 関連ページ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.related-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #0369a1;
}

.related-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-card__list li {
  margin-bottom: 8px;
}

.related-card__list a {
  color: #475569;
  text-decoration: none;
}

.related-card__list a:hover {
  color: #0369a1;
  text-decoration: underline;
}

/* 固定CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

.sticky-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.sticky-cta__info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-cta__name {
  font-weight: 800;
  color: #0369a1;
}

.sticky-cta__price {
  color: #64748b;
}

.sticky-cta__actions {
  display: flex;
  gap: 10px;
}

.sticky-cta .btn {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* フッター */
.footer {
  background: #0c4a6e;
  color: white;
  padding: 50px 20px 100px;
  margin-top: 50px;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer__column h4 {
  margin: 0 0 15px;
  font-size: 1.1rem;
}

.footer__column p {
  opacity: 0.8;
  margin: 0;
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__column li {
  margin-bottom: 8px;
}

.footer__column a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
}

.footer__column a:hover {
  opacity: 1;
}

.footer__related {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__related p {
  opacity: 0.7;
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.footer__related a {
  color: #7dd3fc;
  text-decoration: none;
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer__links a {
  color: white;
  opacity: 0.7;
  text-decoration: none;
}

/* トップに戻るボタン */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.back-to-top__arrow {
  font-size: 0.8rem;
  line-height: 1;
}

.back-to-top__text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .boat-hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .btn--large {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .sticky-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta__actions {
    width: 100%;
  }

  .sticky-cta .btn {
    flex: 1;
  }

  .fish-card-grid {
    grid-template-columns: 1fr !important;
  }

  .stat-card__value {
    font-size: 1.4rem;
  }

  .fish-card__header {
    padding: 15px;
  }

  .fish-card__name {
    font-size: 1.1rem;
  }

  .fish-card__body {
    padding: 18px;
  }

  .section__title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .boat-hero {
    padding: 40px 15px 60px;
  }

  .stat-card {
    padding: 12px 18px;
  }

  .stat-card__value {
    font-size: 1.2rem;
  }

  .section {
    padding: 35px 15px;
  }

  .pro-comment-entry,
  .pro-comment-highend {
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
  }

  .rank-badge {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}
  /* ==========================================
   YouTube動画セクション（堤防ページ準拠）
   ========================================== */
.video-section {
  margin-top: 2.5rem;
}

.video-section__title {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: #0369a1;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #0ea5e9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-section__lead {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-section__footer {
  text-align: center;
  margin-top: 1rem;
}

.video-section__credit {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.video-section__cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.video-section__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14,165,233,0.4);
}

/* ============================================
   商品カード用バッジ・コメントスタイル
   （シーバスページ準拠）
   ============================================ */

.rank-label {
  margin-bottom: 10px;
}

.rank-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
}

.rank-entry {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.rank-highend {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.pro-comment-entry {
  color: #1e40af;
  line-height: 1.9;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  border-left: 5px solid #3b82f6;
  font-size: 0.95rem;
  margin-top: 15px;
}

.pro-comment-highend {
  color: #92400e;
  line-height: 1.9;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: 12px;
  border-left: 5px solid #f59e0b;
  font-size: 0.95rem;
  margin-top: 15px;
}

.comparison-grid {
  margin-top: 15px;
}

.comparison-grid > div {
  display: flex;
  flex-direction: column;
}

/* 購入者の声：スマホで縦並び */
@media (max-width: 480px) {
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* 購入者の声：PC表示改善 */
@media (min-width: 481px) {
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 10px"] {
    gap: 0 !important;
  }
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 10px"] > div:first-child {
    padding-right: 20px;
    border-right: 2px solid #e2e8f0;
  }
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 10px"] > div:last-child {
    padding-left: 20px;
  }
}