/* =============================================
   M&A PMI AGENT - 調剤薬局・在宅薬局 売却相談LP
   style.css
   ============================================= */

:root {
  --navy: #0F2D52;
  --teal: #2E8B8B;
  --light: #F5F8FC;
  --gold: #D4AF37;
  --gold-dark: #B8942A;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d5c;
  --text-light: #6b7280;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(15,45,82,0.10);
  --shadow-lg: 0 8px 40px rgba(15,45,82,0.16);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

section { overflow: hidden; }

/* ===== UTILITY ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 32px;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  padding: 18px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.5);
}

.cta-btn .arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.cta-btn:hover .arrow { transform: translateX(4px); }

.cta-btn-lg {
  font-size: 1.2rem;
  padding: 22px 56px;
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
}

.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  text-align: center;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 14px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.sticky-cta a {
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  padding: 14px 36px;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s;
  letter-spacing: 0.05em;
}

.sticky-cta a:hover { background: var(--gold-dark); }

/* ===== HEADER ===== */
.header {
  background: var(--navy);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-cta a {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 10px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}

.header-cta a:hover { background: var(--gold-dark); }

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(15,45,82,0.88) 0%, rgba(26,63,111,0.82) 55%, rgba(13,35,64,0.90) 100%),
    url('https://www.genspark.ai/api/files/s/BmaKwNEU?cache_control=3600') center center / cover no-repeat;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.hero-headline .accent { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.hero-area-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 3px;
}

.hero-condition-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-condition-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

.hero-condition-item .icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* hero-img-wrap は背景化により不使用 */

/* ===== PAIN SECTION ===== */
.pain-section {
  background: var(--light);
  padding: 80px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.pain-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px 22px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pain-card .num {
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

.pain-card .text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
}

/* ===== TREND SECTION ===== */
.trend-section {
  background: var(--white);
  padding: 80px 0;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.trend-card {
  background: var(--light);
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow);
}

.trend-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.trend-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.trend-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== BUYER NEEDS SECTION ===== */
.buyer-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
}

.buyer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.buyer-section .section-title { color: var(--white); }
.buyer-section .section-sub { color: rgba(255,255,255,0.7); }
.buyer-section .section-label { background: var(--gold); color: var(--navy); }

.buyer-main-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.buyer-box-header {
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  padding: 14px 24px;
  letter-spacing: 0.05em;
}

.buyer-table {
  width: 100%;
  border-collapse: collapse;
}

.buyer-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.buyer-table tr:last-child { border-bottom: none; }

.buyer-table td {
  padding: 16px 24px;
  font-size: 0.92rem;
  vertical-align: top;
}

.buyer-table td:first-child {
  color: var(--gold);
  font-weight: 800;
  width: 140px;
  white-space: nowrap;
}

.buyer-table td:last-child {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.area-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  padding: 16px 14px;
  text-align: center;
}

.area-box .pref {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.area-box .cities {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.buyer-reason-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(46,139,139,0.4);
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 28px;
}

.buyer-reason-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.buyer-reason-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
}

/* ===== WHY BUYER ===== */
.why-buyer-section {
  background: var(--light);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--gold);
  transition: transform 0.2s;
}

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

.why-card .icon { font-size: 2.2rem; margin-bottom: 14px; }

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== STRENGTHS ===== */
.strengths-section {
  background: var(--white);
  padding: 80px 0;
}

.strengths-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.strength-item {
  background: var(--light);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-left: 4px solid var(--gold);
}

.strength-item .s-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.strength-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.strength-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.highlight-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 28px 28px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.highlight-box .hl-icon { font-size: 2.4rem; }

.highlight-box .hl-text h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.highlight-box .hl-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

/* ===== EVAL SECTION ===== */
.eval-section {
  background: var(--light);
  padding: 80px 0;
}

.eval-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.eval-card {
  background: var(--white);
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.eval-card .e-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.eval-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.eval-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== FLOW SECTION ===== */
.flow-section {
  background: var(--white);
  padding: 80px 0;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.flow-step .step-num {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}

.flow-step.highlight-step .step-num {
  background: var(--gold);
  color: var(--navy);
}

.flow-step .step-content h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.flow-step .step-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--light);
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 4px solid var(--teal);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  margin-top: 16px;
}

.testimonial-card .body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.testimonial-card .meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.testimonial-card .meta span {
  color: var(--text-light);
  font-weight: 400;
  margin-left: 6px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--white);
  padding: 80px 0;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--teal); }

.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.15s;
}

.faq-q:hover { background: var(--light); }

.faq-q .q-badge {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q .faq-icon {
  margin-left: auto;
  color: var(--teal);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 22px 18px 64px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  background: var(--light);
}

.faq-item.open .faq-a { display: block; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3f6f 60%, #0d2340 100%);
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 65%);
}

.final-cta .gold-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.final-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
}

.final-cta h2 .accent { color: var(--gold); }

.final-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

.final-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.final-cta-point {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-cta-point .check { color: var(--gold); }

.final-cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.img-section {
  margin: 60px 0 0;
}

.img-trio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.img-trio img {
  border-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.img-trio img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}

/* ===== FOOTER ===== */
.footer {
  background: #080f1c;
  padding: 50px 0 80px;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin: 0 auto 20px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== MID CTA BANNER ===== */
.mid-cta {
  background: var(--teal);
  padding: 50px 24px;
  text-align: center;
}

.mid-cta h2 {
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.mid-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 56px 0 56px; }

  .hero-condition-box {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strengths-wrap {
    grid-template-columns: 1fr;
  }

  .buyer-table td:first-child {
    width: 110px;
    font-size: 0.85rem;
  }

  .flow-steps::before { left: 22px; }

  .cta-btn-lg {
    font-size: 1.05rem;
    padding: 18px 36px;
  }

  .img-trio img { height: 160px; }
  .img-trio img:first-child { height: 200px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .header-logo img { height: 30px; }

  .hero-condition-box { padding: 16px; }

  .area-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  .buyer-table td { padding: 12px 16px; }
  .buyer-table td:first-child { width: auto; }

  .strength-item { flex-direction: column; gap: 10px; }
  .strength-item .s-num { font-size: 1.6rem; }

  .highlight-box { flex-direction: column; text-align: center; }

  .final-cta-points { flex-direction: column; align-items: center; }

  .why-grid { grid-template-columns: 1fr 1fr; }
}
