/* ============================================
   プリペイドSIM屋さん LP3
   Magazine / Editorial + 非対称レイアウト
   ============================================ */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EFE9;
  --surface: #FFFFFF;
  --border: #E8E4DD;
  
  --text: #2D2A26;
  --text-sub: #6B6560;
  --text-muted: #9E9890;
  
  --accent: #E07850;
  --accent-soft: rgba(224, 120, 80, 0.12);
  --accent-dark: #C85E3A;
  
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', sans-serif;
  
  --header-h: 72px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-top: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* ユーティリティ */
.sp-only { display: none; }

/* ============================================
   トップヘッダー
   ============================================ */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.header-brand:hover {
  opacity: 0.7;
}

.header-logo {
  width: 40px;
  height: 40px;
}

.header-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-sub);
  transition: color 0.3s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-mypage {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mypage-menu {
  position: relative;
}

.mypage-menu summary {
  list-style: none;
}

.mypage-menu summary::-webkit-details-marker {
  display: none;
}

.mypage-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mypage-trigger:hover {
  background: var(--accent);
  color: #fff;
}

.mypage-icon {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
}

.mypage-status {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
  letter-spacing: 0.02em;
}

.mypage-caret {
  font-size: 0.75rem;
  opacity: 0.7;
}

.mypage-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: none;
  z-index: 120;
}

.mypage-menu[open] .mypage-dropdown {
  display: block;
}

.mypage-user {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}

.mypage-user-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mypage-user-email {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mypage-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text);
  transition: all 0.2s ease;
}

.mypage-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

/* 購入バー */
.purchase-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 90;
}

.purchase-bar.visible {
  transform: translateY(0);
}

.purchase-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
}

.purchase-bar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.purchase-bar-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.purchase-bar-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.purchase-bar-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.purchase-bar-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}

/* ============================================
   メインコンテンツ
   ============================================ */
.main {
  margin-top: var(--header-h);
}

/* ============================================
   ヒーロー：斜め分割
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: calc(100vh - var(--header-h));
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 80px;
  position: relative;
  z-index: 1;
  gap: clamp(28px, 4vw, 48px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 560px;
  flex: 1 1 540px;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-sub);
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.btn-main {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-main:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.hero-coupon {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.hero-coupon span {
  color: var(--text-muted);
}

.hero-coupon code {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 4px;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--bg-alt);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: clamp(240px, 26vw, 360px);
  min-width: 220px;
  align-self: center;
  z-index: 2;
  --review-speed: 300s;
  flex: 0 0 auto;
}

.hero-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-reviews-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.hero-reviews-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  white-space: nowrap;
}

.review-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
  height: 340px;
  box-shadow: 0 20px 40px rgba(45, 42, 38, 0.12);
}

.review-marquee::before,
.review-marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 2;
  pointer-events: none;
}

.review-marquee::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.review-marquee::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.review-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: reviewFlow var(--review-speed, 300s) linear infinite;
}

.review-track.is-static {
  animation: none;
}


.review-card {
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-name {
  font-weight: 600;
  color: var(--text);
}

.review-stars {
  position: relative;
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.review-stars::before {
  content: '★★★★★';
  color: #e6dfd6;
}

.review-stars::after {
  content: '★★★★★';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  width: calc((var(--rating, 0) / 5) * 100%);
  overflow: hidden;
  white-space: nowrap;
}

.review-content {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-sub);
}

.review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.review-plan {
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.review-note {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: center;
}

.review-link-icon {
  width: 0.95em;
  height: 0.95em;
}

.review-link:hover {
  color: var(--accent-dark);
}

@keyframes reviewFlow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    animation: none;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    gap: 6px;
  }

  .btn-main {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .hero-coupon {
    font-size: 0.72rem;
    gap: 4px;
  }

  .hero-coupon span {
    font-size: 0.72rem;
  }

  .hero-coupon code {
    padding: 4px 8px;
    font-size: 0.72rem;
  }
}

/* ============================================
   セクションラベル
   ============================================ */
.section-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ============================================
   About V2：コンパクトグリッド（モバイル優先）
   ============================================ */
.about-v2 {
  padding: 60px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.about-v2-header {
  text-align: left;
  margin-bottom: 20px;
}

.about-v2-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 6px;
}

.about-v2-tag .section-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.about-v2-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.about-v2-lead {
  font-size: 0.9rem;
  color: var(--text-sub);
  max-width: 320px;
  margin: 0;
}

/* Features Grid - 2x2維持 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 28px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--highlight {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--surface) 100%);
  border-color: rgba(224, 120, 80, 0.25);
}

.feature-card--highlight::before {
  opacity: 1;
}

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 10px;
  color: var(--accent);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-content {
  flex: 1;
  min-width: 0;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 0.75rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin: 0;
}

/* Payment Strip */
.payment-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  max-width: 560px;
  margin: 0 auto;
}

.payment-strip-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-sub);
}

.payment-label-icon {
  width: 1em;
  height: 1em;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-sub);
  background: var(--bg);
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.payment-icon:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.pay-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* About V2 デスクトップ拡張 */
@media (min-width: 769px) {
  .about-v2 {
    padding: 100px 80px;
  }

  .about-v2-header {
    margin-bottom: 56px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-v2-tag {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .about-v2-tag .section-icon {
    width: 1.3em;
    height: 1.3em;
  }

  .about-v2-title {
    font-size: 2.6rem;
  }

  .about-v2-lead {
    font-size: 1.15rem;
    max-width: 600px;
  }

  .features-grid {
    max-width: 1100px;
    gap: 24px;
    margin-bottom: 48px;
  }

  .feature-card {
    padding: 32px 28px;
    gap: 20px;
    border-radius: 18px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .feature-icon svg {
    width: 30px;
    height: 30px;
  }

  .feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }

  .feature-content p {
    font-size: 1rem;
  }

  .payment-strip {
    max-width: 1100px;
    padding: 24px 36px;
    border-radius: 16px;
  }

  .payment-strip-label {
    font-size: 0.85rem;
  }

  .payment-icon {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .pay-icon {
    width: 1.2em;
    height: 1.2em;
  }

  /* 全セクション共通ラベル拡張 */
  .section-label {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }

  .section-label .section-icon {
    width: 1.3em;
    height: 1.3em;
  }

  /* 料金プランセクション拡張 */
  .plans {
    padding: 100px 80px;
  }

  .plans-head {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .plans-tabs {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .table-wrap {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(45, 42, 38, 0.1);
    padding: 6px;
    overflow: hidden;
  }

  .plans-table th,
  .plans-table td {
    padding: 20px 28px;
  }

  .plans-table th {
    font-size: 0.85rem;
  }

  .plans-table td {
    font-size: 1rem;
  }

  .plans-table {
    min-width: 0;
  }

  .plans-note {
    font-size: 0.9rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  /* FAQセクション拡張 */
  .faq {
    padding: 100px 80px;
  }

  .faq > .section-label {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-split {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    gap: 80px;
    grid-template-columns: 320px 1fr;
  }

  .faq-btn {
    padding: 20px 24px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .faq-answer {
    padding: 48px;
    border-radius: 20px;
  }

  .faq-answer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

@media (min-width: 1100px) {
  .hero-right {
    padding-right: 80px;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero-diagonal {
    width: 40%;
  }
}

/* ============================================
   旧 Bento Grid（互換性のため残す）
   ============================================ */
.about {
  padding: 120px 80px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-wide {
  grid-column: span 2;
}

.bento-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.bento-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.bento-large h3 {
  font-size: 1.75rem;
}

.bento-item p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.8;
}

.bento-large p {
  font-size: 1rem;
}

/* ============================================
   Plans：テーブル形式
   ============================================ */
.plans {
  padding: 60px 24px;
  background: var(--surface);
}

.plans-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.plans-expiry {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-sub);
  margin: 0;
}

.plans-expiry-date {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.plans-expiry--mobile {
  display: none;
}

.plans-expiry--pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(700px, 100%);
  padding: 16px 24px;
  border-radius: 12px;
  margin: 12px auto 0;
  text-align: center;
}

.plans-promo {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin: 0;
  text-align: right;
  justify-self: end;
  max-width: 360px;
}

.plans-promo code {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 4px;
}

.plans-tabs {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  margin-bottom: 32px;
}

.plans-coupon {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  max-width: min(420px, 100%);
  min-width: 0;
  overflow: hidden;
  text-align: left;
  justify-content: flex-start;
}

.plans-expiry {
  justify-self: start;
}

.plans-coupon-badge {
  flex: 0 0 auto;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(224, 120, 80, 0.18);
  padding: 2px 6px;
  border-radius: 999px;
}

.plans-coupon-text {
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-sub);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plans-coupon-sep {
  flex: 0 0 auto;
  color: var(--text-muted);
  opacity: 0.9;
}

.plans-coupon-label {
  flex: 0 0 auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.plans-coupon-code {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(224, 120, 80, 0.22);
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
  max-width: none;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: all;
}

.plans-tab-buttons {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.tab {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  position: relative;
}

.table-scroll-hint {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  pointer-events: none;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.table-scroll-hint.hidden {
  opacity: 0;
  visibility: hidden;
}

.table-scroll-hint-inner {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  max-width: 240px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(24, 24, 24, 0.16);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  color: rgba(24, 24, 24, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: tableHintPulse 1.6s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes tableHintPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.85;
    transform: scale(1);
  }
  100% {
    opacity: 0.4;
    transform: scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .table-scroll-hint-inner {
    animation: none;
  }
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  position: relative;
  z-index: 1;
}

.plans-table.hidden {
  display: none;
}

.plans-table th,
.plans-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.plans-table th {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg);
}

.plans-table td {
  font-size: 0.9rem;
}

.plans-table td strong {
  font-weight: 600;
}

.plans-table td s {
  color: var(--text-muted);
}

.note-small {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.7;
  margin-left: 2px;
}

.price-highlight {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.row-popular {
  background: var(--accent-soft);
}

.popular-mark {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  vertical-align: middle;
}

.table-btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.table-btn:hover {
  background: var(--accent);
  color: #fff;
}

.plans-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.plans-device-tabs {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  text-align: left;
}

.plans-device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.plans-device-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plans-device-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plans-device-title p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.device-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.device-tab {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.device-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.device-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.device-panel p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 10px;
}

.device-panel p:last-child {
  margin-bottom: 0;
}

.device-panel .note {
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.faq-device-panels .device-note-small {
  font-size: 0.82rem;
}

.device-panel .eid-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.device-panel .eid-list li {
  font-family: var(--font-mono, 'SF Mono', 'Monaco', 'Inconsolata', monospace);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.plans-devices .device-panel .eid-list {
  justify-content: center;
}

.plans-devices .device-panel .eid-warning {
  font-size: 0.78rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .plans-devices .device-panel .eid-warning {
    white-space: normal;
    text-align: center;
  }
}

/* ============================================
   FAQ：左右分割
   ============================================ */
.faq {
  padding: 60px 24px;
  text-align: center;
}

.faq-split {
  text-align: left;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-top: 20px;
}

.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-btn {
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-sub);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.faq-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-answers {
  position: relative;
}

.faq-answer {
  display: none;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer .note {
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.faq-device-panels .note {
  font-size: 0.78rem;
}

.faq-answer .eid-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.faq-answer .eid-list li {
  font-family: var(--font-mono, 'SF Mono', 'Monaco', 'Inconsolata', monospace);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.faq-device-tabs .device-tabs {
  margin-bottom: 16px;
}

.faq-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.faq-all-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.faq-all-link:hover {
  color: #fff;
}

.faq-all-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.faq-all-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-all-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   旧フッター（現行はbase.html側を使用）
   ============================================ */
.lp-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: end;
  padding: 60px 80px 100px;
  border-top: 1px solid var(--border);
}

.lp-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.lp-footer .footer-brand img {
  width: 28px;
  height: 28px;
}

.lp-footer .footer-brand span {
  font-weight: 600;
}

.lp-footer .footer-left p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lp-footer .footer-links {
  display: flex;
  gap: 24px;
}

.lp-footer .footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.lp-footer .footer-links a:hover {
  color: var(--accent);
}

.lp-footer .footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 60px 1fr;
  }

  .hero-right {
    padding: 48px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-content {
    flex: 0 0 auto;
  }

  .hero-diagonal {
    width: 35%;
  }

  .hero-reviews {
    width: min(520px, 100%);
    max-width: 560px;
  }

  .review-marquee {
    height: 280px;
  }

  .about {
    padding: 80px 60px;
  }

  .about-v2 {
    padding: 60px 40px;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .plans {
    padding: 60px 40px;
  }

  .faq {
    padding: 60px 40px;
  }

  .faq-split {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  .lp-footer {
    padding: 48px 60px 100px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .top-header {
    padding: 0 16px;
  }

  .header-title {
    font-size: 0.95rem;
  }

  .header-nav {
    display: none;
  }

  .header-mypage {
    display: none;
  }

  /* モバイルメニューの表示制御は base.css に一本化 */

  .purchase-bar-inner {
    padding: 12px 16px;
  }

  .purchase-bar-price {
    font-size: 1.1rem;
  }

  .purchase-bar-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .hero {
    background: var(--bg);
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    padding: 24px 10px 12px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-reviews {
    background: var(--bg-alt);
    width: calc(100% + 20px);
    min-width: 0;
    margin: 0 -10px;
    padding: 18px 10px 22px;
    border-radius: 0;
    align-self: stretch;
  }

  .review-marquee {
    height: 220px;
    padding: 12px;
  }

  .review-card {
    padding: 10px 12px;
  }

  .review-meta {
    font-size: 0.7rem;
  }

  .review-content {
    font-size: 0.8rem;
  }

  .review-foot {
    font-size: 0.65rem;
  }

  .about-v2 {
    background: var(--bg);
  }

  .hero-diagonal {
    display: none;
  }

  .hero-tag {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: clamp(0.82rem, 3.6vw, 1rem);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .plans {
    background: var(--bg-alt);
  }

  .faq {
    background: var(--bg);
  }

  .plans-tabs {
    grid-template-columns: 1fr;
    column-gap: 6px;
    margin-bottom: 0;
    row-gap: 0;
  }

  .plans-expiry {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
    justify-self: start;
  }

  .plans-tab-buttons {
    width: 100%;
    gap: 10px;
    margin-bottom: 8px;
  }

  .plans-promo {
    font-size: 0.68rem;
    max-width: 46vw;
  }

  .tab {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.8rem;
  }

  .plans-promo code {
    padding: 3px 8px;
  }

  .plans-coupon {
    width: 100%;
    max-width: 100%;
    justify-self: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }

  .plans-expiry {
    border-radius: 12px;
  }

  .plans-expiry--desktop {
    display: none;
  }

  .plans-expiry--mobile {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: 4px;
  }

  .plans-coupon-badge {
    display: none;
  }

  .plans-coupon-text {
    font-size: 0.72rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .plans-coupon-sep,
  .plans-coupon-label {
    display: none;
  }

  .plans-coupon-code {
    font-size: 0.7rem;
    padding: 2px 6px;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }

  .plans-device-tabs {
    padding: 20px;
  }

  .plans-device-header {
    align-items: flex-start;
  }

  .device-tabs {
    width: 100%;
  }

  .device-tab {
    flex: 1 1 auto;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .device-panel {
    padding: 16px;
  }

  .table-scroll-hint {
    display: inline-flex;
  }

  /* テーブル行の上下余白は共通設定に統一 */

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(8px, 2.4vw, 16px);
    width: 100%;
  }

  .btn-main {
    padding: clamp(14px, 4vw, 18px) clamp(26px, 9vw, 40px);
    font-size: clamp(0.98rem, 3.5vw, 1.1rem);
    white-space: nowrap;
  }

  .hero-coupon {
    gap: 6px;
    font-size: clamp(0.86rem, 2.9vw, 1rem);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }

  .hero-coupon code {
    padding: clamp(6px, 2vw, 10px) clamp(12px, 3.4vw, 18px);
    font-size: clamp(0.86rem, 2.9vw, 1rem);
  }

  .about {
    padding: 40px 24px 60px;
  }

  .section-label {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  /* About V2 モバイル最適化 */
  .about-v2-tag {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .plans-head {
    margin-bottom: 16px;
  }

  .about-v2 {
    padding: 20px 16px 48px;
  }

  .about-v2-header {
    margin-bottom: 16px;
  }

  .about-v2-title {
    font-size: 1.4rem;
  }

  .about-v2-lead {
    font-size: 0.85rem;
  }

  .features-grid {
    gap: 10px;
    margin-bottom: 20px;
  }

  .feature-card {
    padding: 14px 12px;
    gap: 10px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .feature-icon svg {
    width: 16px;
    height: 16px;
  }

  .feature-content h3 {
    font-size: 0.82rem;
  }

  .feature-content p {
    font-size: 0.7rem;
  }

  .payment-strip {
    padding: 12px 16px;
    border-radius: 14px;
    gap: 6px 12px;
  }

  .payment-strip-label {
    font-size: 0.65rem;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }

  .payment-icon {
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }

  .plans {
    padding: 48px 16px;
  }

  .faq {
    padding: 48px 16px;
  }

  .faq-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }

  .faq-btn {
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  .lp-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 24px 100px;
    text-align: center;
  }

  .lp-footer .footer-brand {
    justify-content: center;
  }

  .lp-footer .footer-links {
    justify-content: center;
  }
}

/* 400px以下：超小型画面向け */
@media (max-width: 400px) {
  .about-v2 {
    padding: 40px 10px;
  }

  .features-grid {
    gap: 6px;
  }

  .feature-card {
    padding: 10px 8px;
    gap: 6px;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 6px;
  }

  .feature-icon svg {
    width: 12px;
    height: 12px;
  }

  .feature-content h3 {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .feature-content p {
    font-size: 0.58rem;
    line-height: 1.3;
  }

  .payment-strip {
    padding: 10px 10px;
    border-radius: 12px;
  }

  .payment-icons {
    gap: 3px;
  }

  .payment-icon {
    padding: 2px 5px;
    font-size: 0.55rem;
  }
}

/* アニメーション */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.7s ease forwards;
  }

  .hero-tag { animation-delay: 0.1s; }
  .hero-title { animation-delay: 0.2s; }
  .hero-desc { animation-delay: 0.3s; }
  .hero-actions { animation-delay: 0.4s; }

  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* About V2 アニメーション */
  .about-v2-header,
  .feature-card,
  .payment-strip {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeInUp 0.5s ease forwards;
  }

  .about-v2-header { animation-delay: 0.1s; }
  .feature-card:nth-child(1) { animation-delay: 0.15s; }
  .feature-card:nth-child(2) { animation-delay: 0.22s; }
  .feature-card:nth-child(3) { animation-delay: 0.29s; }
  .feature-card:nth-child(4) { animation-delay: 0.36s; }
  .payment-strip { animation-delay: 0.45s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ============================================
   料金ページ専用スタイル
   ============================================ */

/* ページヘッダー */
.page-header {
  padding: 24px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-sub);
}

.breadcrumb a {
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--text-muted);
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.page-title-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.page-lead {
  font-size: 1.1rem;
  color: var(--text-sub);
  max-width: 500px;
  margin: 0 auto;
}

/* プロモバナー */
.promo-banner {
  padding: 0 24px;
  margin-top: -20px;
  margin-bottom: 40px;
}

.promo-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(224, 120, 80, 0.3);
}

.promo-badge {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-text {
  font-size: 1rem;
}

.promo-text strong {
  font-size: 1.2rem;
}

.promo-sep {
  opacity: 0.5;
}

.promo-code-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.promo-code {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-dark);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* 音声SIM案内バナー */
.voice-sim-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 16px;
  background: #fff;
  border: 1.5px solid #2D2A26;
  border-radius: 10px;
  color: #2D2A26;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.voice-sim-banner:hover {
  background: #f8f7f5;
  transform: translateY(-1px);
}

.voice-sim-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid #2D2A26;
  border-radius: 6px;
  flex-shrink: 0;
}

.voice-sim-icon svg {
  width: 16px;
  height: 16px;
  stroke: #2D2A26;
}

.voice-sim-text {
  font-weight: 400;
}

.voice-sim-text strong {
  font-weight: 700;
}

.voice-sim-banner i {
  font-size: 0.7rem;
  opacity: 0.6;
}

/* 料金セクション */
.plans-section {
  padding: 60px 24px;
}

.plans-section--alt {
  background: var(--bg-alt);
}

.plans-section-header {
  max-width: 1100px;
  margin: 0 auto 32px;
  text-align: center;
}

.plans-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.plans-section-badge {
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plans-section-badge--secondary {
  background: #6B8E7B;
}

.plans-section-badge--tertiary {
  background: #7B6B8E;
}

.plans-section-desc {
  font-size: 1rem;
  color: var(--text-sub);
}

.main--pricing .table-wrap,
.main--pricing .recharge-grid,
.main--pricing .fees-grid,
.main--pricing .plans-device-tabs,
.main--pricing .plans-fine-print,
.main--pricing .plans-cta-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.main--pricing .plans-fine-print {
  max-width: 900px;
}

/* プラン説明 */
.plan-desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}

/* テーブルボタン（セカンダリ） */
.table-btn--secondary {
  background: #6B8E7B;
}

.table-btn--secondary:hover {
  background: #527563;
}

/* 注意事項 */
.plans-notes {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.plans-notes-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}

.plans-notes-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.plans-notes-list li {
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-sub);
}

.plans-notes-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* 対応端末 */
.plans-devices {
  padding: 60px 24px;
  background: var(--bg-alt);
  text-align: center;
}

.plans-devices-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
}

.plans-devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 0;
  list-style: none;
}

.plans-device-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plans-device-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.plans-device-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.plans-device-icon svg {
  width: 100%;
  height: 100%;
}

.plans-device-info {
  flex: 1;
  min-width: 0;
}

.plans-device-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.plans-device-card p {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin: 0;
  white-space: nowrap;
}

.plans-devices-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* EID制限 */
.plans-eid {
  padding: 60px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.plans-eid-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.plans-eid-desc {
  font-size: 0.95rem;
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.eid-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.eid-number-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.eid-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.eid-code {
  font-family: var(--font-mono, 'SF Mono', 'Monaco', 'Inconsolata', monospace);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}

.eid-check-guide {
  max-width: 600px;
  margin: 0 auto 24px;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: 12px;
}

.eid-check-guide h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.eid-check-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.eid-check-method {
  text-align: left;
  padding: 16px;
  background: var(--surface);
  border-radius: 8px;
}

.eid-check-method strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}

.eid-check-method p {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin: 0;
}

.eid-warning {
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

/* 細かい注意事項 */
.plans-fine-print {
  padding: 32px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.plans-fine-print p {
  font-size: 0.7rem;
  color: var(--text-muted, #999);
  line-height: 1.6;
  margin: 0 0 4px 0;
  white-space: nowrap;
}

/* CTA */
.plans-cta {
  padding: 80px 24px;
}

.plans-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.plans-cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.plans-cta-desc {
  font-size: 1rem;
  color: var(--text-sub);
  margin-bottom: 24px;
}

.btn-main--large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ギガリチャージ */
.recharge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.recharge-card {
  padding: 28px 20px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.recharge-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.recharge-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.recharge-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.recharge-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* 各種手数料 */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.fee-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.fee-info {
  text-align: left;
}

.fee-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.fee-desc {
  font-size: 0.85rem;
  color: var(--text-sub);
}

.fee-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.fees-note {
  font-size: 0.9rem;
  color: var(--text-sub);
  text-align: center;
  font-weight: 500;
}

/* 料金ページ レスポンシブ */
@media (max-width: 768px) {
  .page-header {
    padding: 16px 16px 32px;
  }

  .page-title {
    font-size: 1.8rem;
    gap: 8px;
  }

  .page-title-icon {
    width: 32px;
    height: 32px;
  }

  .page-lead {
    font-size: 0.95rem;
  }

  .promo-banner {
    padding: 0 16px;
    margin-top: -10px;
    margin-bottom: 32px;
  }

  .promo-banner-inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .promo-content {
    flex-direction: column;
    gap: 8px;
  }

  .promo-sep {
    display: none;
  }

  /* 音声SIMバナー モバイル */
  .voice-sim-banner {
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  .voice-sim-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
  }

  .voice-sim-icon svg {
    width: 12px;
    height: 12px;
  }

  .voice-sim-banner i {
    font-size: 0.6rem;
  }

  .plans-section {
    padding: 48px 16px;
  }

  .plans-section-title {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 8px;
  }

  .plans-section-desc {
    font-size: 0.9rem;
  }

  .plans-notes {
    padding: 48px 16px;
  }

  .plans-notes-title {
    font-size: 1.2rem;
  }

  .plans-notes-list {
    gap: 10px;
  }

  .plans-notes-list li {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .sp-only {
    display: inline;
  }

  .plans-devices {
    padding: 48px 16px;
  }

  .plans-devices-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .plans-devices-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plans-device-card {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .plans-device-icon {
    width: 36px;
    height: 36px;
    margin: 0;
    flex-shrink: 0;
  }

  .plans-device-info {
    flex: 1;
    min-width: 0;
  }

  .plans-device-card h4 {
    margin-bottom: 2px;
    font-size: 0.95rem;
  }

  .plans-device-card p {
    font-size: 0.8rem;
    margin: 0;
    white-space: nowrap;
  }

  .plans-fine-print {
    padding: 24px 16px;
  }

  .plans-fine-print p {
    font-size: 0.65rem;
  }

  .plans-cta {
    padding: 48px 16px;
  }

  .plans-cta-inner {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .plans-cta-title {
    font-size: 1.5rem;
  }

  .plans-cta-desc {
    font-size: 0.9rem;
  }

  .btn-main--large {
    padding: 16px 40px;
    font-size: 1rem;
  }

  .recharge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .recharge-card {
    padding: 20px 16px;
  }

  .recharge-amount {
    font-size: 1.2rem;
  }

  .recharge-price {
    font-size: 1rem;
  }

  .fees-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fee-card {
    padding: 20px;
  }

  .fee-name {
    font-size: 1rem;
  }

  .fee-price {
    font-size: 1.2rem;
  }

  .plans-eid {
    padding: 48px 16px;
  }

  .plans-eid-title {
    font-size: 1.2rem;
  }

  .plans-eid-desc {
    font-size: 0.9rem;
  }

  .eid-numbers {
    gap: 10px;
  }

  .eid-number-item {
    padding: 10px 14px;
  }

  .eid-code {
    font-size: 0.9rem;
  }

  .eid-check-guide {
    padding: 20px;
  }

  .eid-check-methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .eid-check-method {
    padding: 14px;
  }

  .eid-warning {
    font-size: 0.8rem;
  }
}

/* ============================================
   レビュー一覧ページ
   ============================================ */
.review-page {
  padding-bottom: 80px;
  --review-title: clamp(1.35rem, 1.4vw + 1rem, 1.8rem);
  --review-lead: clamp(0.92rem, 0.6vw + 0.82rem, 1.08rem);
  --review-label: clamp(0.72rem, 0.4vw + 0.66rem, 0.9rem);
  --review-body: clamp(0.92rem, 0.5vw + 0.84rem, 1.02rem);
  --review-small: clamp(0.78rem, 0.4vw + 0.7rem, 0.9rem);
  --review-xs: clamp(0.68rem, 0.35vw + 0.62rem, 0.82rem);
  --review-score: clamp(2rem, 2.8vw + 1.1rem, 2.8rem);
}

.review-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.review-panel {
  margin: 0 0 40px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(30, 22, 16, 0.08);
}

.review-panel-head {
  display: grid;
  gap: 18px;
}

.review-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.review-summary-main {
  display: grid;
  gap: 8px;
}

.review-summary-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--review-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-sub);
}

.review-summary-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.review-score-number {
  font-family: var(--font-display);
  font-size: var(--review-score);
  font-weight: 700;
  color: var(--accent);
}

.review-score-unit {
  font-size: var(--review-body);
  color: var(--text-sub);
}

.review-summary-sub {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-summary-item {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 120px;
}

.review-summary-title {
  font-size: var(--review-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.review-summary-value {
  font-size: var(--review-body);
  font-weight: 600;
  color: var(--text);
}

.review-panel-note {
  font-size: var(--review-small);
  color: var(--text-sub);
}

.review-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  margin-top: 12px;
}

.review-sort {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.review-filter-label {
  font-size: var(--review-small);
  color: var(--text-sub);
  margin-bottom: 8px;
  display: block;
}

.review-select-wrap {
  position: relative;
}

.review-select {
  width: 100%;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  padding: 12px 40px 12px 14px;
  border-radius: 12px;
  font-size: var(--review-body);
  font-weight: 500;
}

.review-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.review-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--review-body);
  color: var(--text-muted);
  pointer-events: none;
}

.review-reset {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: var(--review-small);
  font-weight: 600;
  color: var(--text-sub);
  transition: all 0.2s ease;
}

.review-reset:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.review-list {
  padding: 0;
}

.review-list-top {
  height: 1px;
  width: 100%;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 30px;
}

.review-card--full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  display: grid;
  gap: 16px;
  min-height: 220px;
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.review-card--full .review-name {
  font-size: var(--review-body);
}

.review-card--full .review-content {
  font-size: var(--review-body);
  line-height: 1.7;
  color: var(--text);
}

.review-date {
  font-size: var(--review-xs);
  color: var(--text-muted);
}

.review-source {
  font-size: var(--review-xs);
  font-weight: 600;
  color: var(--accent);
}

.review-empty {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 28px;
  text-align: center;
  border-radius: 16px;
  background: var(--bg-alt);
  color: var(--text-sub);
}

.review-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 24px;
  color: var(--text-sub);
  font-size: var(--review-small);
}

.review-loading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 12px 0 0 var(--accent-soft), -12px 0 0 var(--accent-soft);
  animation: reviewPulse 1.2s infinite ease-in-out;
}

@keyframes reviewPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.review-load {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.review-load-btn {
  min-width: 220px;
}

.review-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.review-page-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: var(--review-small);
  font-weight: 600;
  color: var(--text-sub);
  transition: all 0.2s ease;
}

.review-page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.review-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.review-page-info {
  font-size: var(--review-small);
  color: var(--text-sub);
}

.review-form-section {
  margin: 0 0 48px;
  padding: 0;
}

.review-form-head {
  text-align: center;
  margin-bottom: 20px;
}

.review-form-title {
  font-family: var(--font-display);
  font-size: var(--review-title);
  margin-bottom: 8px;
}

.review-form-desc {
  color: var(--text-sub);
  font-size: var(--review-small);
}

.review-coupon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 0;
  padding: 8px 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: var(--review-small);
  font-weight: 600;
}

.review-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 28px;
  display: grid;
  gap: 16px;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-form-field {
  display: grid;
  gap: 8px;
}

.review-form-label {
  font-size: 0.85rem;
  color: var(--text-sub);
}

.review-input,
.review-textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: var(--review-body);
  font-weight: 500;
}

.review-input:focus,
.review-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.review-textarea {
  resize: vertical;
  min-height: 120px;
}

.review-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.review-form-note {
  font-size: var(--review-small);
  color: var(--text-sub);
  margin: 0;
}

.review-form-message {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: var(--review-small);
}

.review-page .page-title {
  font-size: clamp(1.9rem, 2.8vw + 1rem, 2.6rem);
}

.review-page .page-lead {
  font-size: var(--review-lead);
}

.review-page .breadcrumb {
  font-size: 0.85rem;
}

.review-page .btn-main {
  font-size: clamp(0.9rem, 0.6vw + 0.82rem, 1.02rem);
}

.review-form-message.is-visible {
  display: block;
}

.review-form-message.is-success {
  background: #e8f5e8;
  color: #1f6f2e;
  border: 1px solid #bfe3c6;
}

.review-form-message.is-error {
  background: #fce4e6;
  color: #b4353a;
  border: 1px solid #f2b9bf;
}

@media (max-width: 1024px) {
  .review-panel {
    margin: 0 0 32px;
  }

  .review-summary-sub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .review-panel {
    margin: 0 0 28px;
    padding: 20px;
  }

  .review-summary {
    align-items: flex-start;
  }

  .review-summary-sub {
    grid-template-columns: 1fr;
  }

  .review-filters {
    grid-template-columns: 1fr;
  }

  .review-sort {
    justify-content: flex-start;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }
}
