/* Variables */
:root {
  --color-primary: #00A86B;
  /* Green CTA */
  --color-primary-hover: #008f5a;
  --color-secondary: #EBF5FB;
  /* Light Blue bg */
  --color-accent: #2c3e50;
  /* Dark Blue text */
  --color-text: #333333;
  --color-white: #ffffff;
  --color-gray-light: #f4f4f4;
  --color-border: #e0e0e0;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
    @media (max-width: 767px) {
      width: 96%;
      padding: 0 4%;
    }
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s, opacity 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1.2rem;
}

.btn-block {
  width: 100%;
  display: block;
}

.shadow-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 168, 107, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 168, 107, 0);
  }
}

.btn-zoom {
  background-color: #2D8CFF;
  border: 2px solid #2D8CFF;
}

.btn-primary.btn-zoom:hover {
  background-color: #2478E6;
  border-color: #2478E6;
}

.btn-zoom.shadow-pulse {
  animation: pulse-zoom 2s infinite;
}

.btn-xl.btn-zoom {
  background-color: #2D8CFF;
  border-color: #2D8CFF;
  box-shadow: 0 10px 25px rgba(45, 140, 255, 0.4);
}

.btn-xl.btn-zoom:hover {
  background-color: #2478E6;
  border-color: #2478E6;
  box-shadow: 0 15px 30px rgba(45, 140, 255, 0.5);
}

@keyframes pulse-zoom {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 140, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(45, 140, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(45, 140, 255, 0);
  }
}

/* Header */
.header {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

.header .nav-pc {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 10px;
}

.header-tel {
  font-weight: bold;
  color: var(--color-accent);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.5px;
}

.header-tel .material-symbols-outlined {
  font-size: 1.4rem;
  color: var(--color-primary);
}

.header-tel:hover {
  color: var(--color-primary);
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Mobile nav panel */
.nav-sp {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.nav-sp.is-open {
  transform: translateX(0);
}
.nav-sp-link {
  display: block;
  padding: 14px 16px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-accent);
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-sp-link:hover {
  background: var(--color-secondary);
}
.nav-sp-cta {
  margin-top: 16px;
  text-align: center;
  background: var(--color-primary);
  color: white !important;
}
.nav-sp-cta:hover {
  background: var(--color-primary-hover);
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  background-color: #fdfbfb;
  /* Fallback */
  background-image: url('hero_bg_doctors_right.png');
  background-size: cover;
  background-position: right -250px;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content-left {
  max-width: 660px;
  text-align: left;
  /* margin-left: 100px; */
  margin-left: 10%;
  /* Optional: Add a subtle backdrop if needed for text readability */
  /* background: rgba(255, 255, 255, 0.5); */
  /* padding: 20px; */
  /* border-radius: 10px; */
}

/* Removed .hero-visual-right */

.hero-badge-wrapper {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.75));
}

.badge-premium {
  background: linear-gradient(135deg, #FFD700, #F4C430);
  color: #333333;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: clamp(0.9rem, 2.4vw, 1.2rem);
}

.badge-sub {
  background: #FFD700;
  color: #333;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: clamp(0.9rem, 2.4vw, 1.2rem);
}

.hero-project-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0, 168, 107, 0.12);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.85));
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-accent);
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.98))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

.hero-title-main {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  display: block;
  margin-bottom: 4%;
  line-height: 1;
}

.hero-title-sub {
  font-size: 0.55em;
  font-weight: 500;
  line-height: 1.5;
}

.hero-title-logo {
  display: block;
  margin-top: 0;
  line-height: 0;
}

.hero-logo-img {
  width: clamp(180px, 28vw, 260px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.98))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9));
}

.serif {
  font-family: var(--font-serif);
}

.text-highlight {
  color: var(--color-primary);
  background: linear-gradient(transparent 70%, #ccfbf1 70%);
}

.text-highlight-green {
  color: var(--color-primary);
  font-weight: 900;
  background: linear-gradient(transparent 70%, #ccfbf1 70%);
}

.hero-lead {
  font-size: clamp(0.9rem, 3vw, 1.6rem);
  margin-bottom: 30px;
  color: #555;
  font-weight: 500;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.hero-lead_extxt {
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  color: #999;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 0;
  display: block;
  text-align: center;
}

/* SP: 灰色文字のまま、白ドロップシャドウを重ねて濃くかける */
@media (max-width: 767px) {
  .hero-cta-wrapper {
    filter: none;
  }
  .hero-title-main {
    line-height: 1.35;
  }
  .hero-cta-wrapper .btn-xl {
    filter:
      drop-shadow(0 0 3px rgba(255, 255, 255, 0.95))
      drop-shadow(0 0 3px rgba(255, 255, 255, 0.88))
      drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
  }

  .hero-lead_extxt {
    filter:
      drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
      drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.8))
      drop-shadow(0 0 2px rgba(255, 255, 255, 0.65));
  }
}

.price-highlight {
  color: #e11d48;
  font-weight: bold;
  font-size: clamp(1.1rem, 3.4vw, 1.8rem);
}

.hero-benefits {
  margin-bottom: 40px;
}

.hero-unlimited-plan {
  display: inline-block;
  background-color: #fff;
  border: 3px solid var(--color-primary);
  border-radius: 12px;
  padding: 12px 25px;
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.hero-unlimited-plan .price {
  color: #e11d48;
  font-size: 1.3em;
  margin: 0 4px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  font-size: clamp(0.9rem, 2.6vw, 1.3rem);
  font-weight: 500;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.88))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.benefit-icon {
  margin-right: 10px;
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--color-primary);
}

.hero-cta-wrapper {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.88))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.btn-xl {
  padding: 18px 50px;
  font-size: clamp(1rem, 3.2vw, 1.3rem);
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 168, 107, 0.4);
  background-color: var(--color-primary);
  color: var(--color-white);
  display: inline-block;
  transition: all 0.3s;
}

.btn-xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 168, 107, 0.5);
  background-color: var(--color-primary-hover);
}

.cta-note {
  margin-top: 10px;
  font-size: clamp(0.8rem, 2.4vw, 1rem);
  color: #666;
  font-weight: bold;
}

/* Visual Side - Removed */
/* .visual-inner { ... } */
/* .hero-img { ... } */


@media (min-width: 768px) and (max-width: 1300px) {
  .hero {
    padding: 100px 0;
    background-position: right center;
  }
}
/* Mobile Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: left;
  }

  .hero-content-left {
    max-width: 100%;
    text-align: left;
    margin-left: 0;
  }

  .hero-badge-wrapper {
    justify-content: flex-start;
  }

  .hero-cta-wrapper {
    text-align: left;
    align-items: flex-start;
  }

  .hero-visual-right {
    width: 100%;
    margin-top: 30px;
  }
}

/* Hero BG Shape Removed */
.hero-bg-shape {
  display: none;
}

/* Remove old overlay */
.hero-bg-overlay {
  display: none;
}

/* Issues Section */
.section-issues {
  padding: 80px 0;
  background-color: var(--color-white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5em;
    letter-spacing: -0.02em;
}
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 20px auto 0;
}

.issues-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.issues-cta {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .issues-cta {
    flex-direction: column;
    gap: 30px;
  }
}

.issues-text,
.issues-video {
  flex: 1;
  min-width: 0;
}

.issues-text {
  flex: 1 1 0;
}

.issues-video {
  flex: 1 1 300px;
  min-width: 280px;
}

/* MVエリア：スマホで確実にきれいに表示 */
.issues-video {
  width: 100%;
}
.video-placeholder {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.monitor-frame {
  width: 100%;
}
.screen {
  min-height: 0; /* aspect-ratio が効くように */
}

.check-list li {
  font-size: 1.25rem;
  margin-bottom: 0.7em;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.issues-conclusion {
  margin-top: 25px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--color-accent);
  text-align: center;
  background: linear-gradient(transparent 60%, #ccfbf1 60%);
  /* display: inline-block; */
  max-width: 100%;
  display:inline;
}

.issues-conclusion strong {
  color: var(--color-primary);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
}

@media (min-width: 768px) and (max-width: 1294px) {
  .issues-content {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .issues-text,
  .issues-video {
    width: 100%;
    min-width: 0;
  }

  .issues-conclusion {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    white-space: nowrap;
  }

  .issues-conclusion strong {
    font-size: clamp(1.45rem, 2.6vw, 2rem);
  }

  
}

.check-icon {
  color: var(--color-primary);
  margin-right: 15px;
  font-size: 1.8rem;
}

.video-placeholder {
  text-align: center;
}

.monitor-frame {
  background: #333;
  padding: 15px 15px 40px 15px;
  border-radius: 10px 10px 0 0;
  border-bottom: 10px solid #222;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.screen {
  background: #000;
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screen.video-embed-wrap {
  display: block;
  padding: 0;
}

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

.screen-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.play-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s;
}

.play-btn:hover {
  background: white;
  color: var(--color-primary);
}

.play-text {
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.video-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.video-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.video-duration {
  margin-top: 10px;
  color: #666;
  font-size: 0.9rem;
}

/* Solution Section */
.section-solution {
  padding: 80px 0;
  background-color: var(--color-secondary);
}

/* 4 Steps Section */
.section-steps {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
  color: var(--color-white);
}

.section-steps-title {
  color: var(--color-white);
  margin-bottom: 50px;
}

.section-steps-sub {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  margin-top: 10px;
  opacity: 0.9;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-white);
  padding: 1.2rem 2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(15, 42, 74, 0.1);
  position: relative;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-item p {
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--color-accent);
  line-height: 1.4;
}

.steps-diagram {
  text-align: center;
  margin-top: 20px;
}

.steps-diagram-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .steps-container {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    position: relative;
  }

  .steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    z-index: 0;
  }

  .step-item {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 16px;
    flex: 1;
    margin: 0 0.5rem;
    z-index: 1;
  }

  .step-item p {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    letter-spacing: -0.02em;
}


}

/* Low Cost Reason Section */
.section-lowcost {
  padding: 80px 0;
  background-color: var(--color-secondary);
}

.section-lowcost-lead {
  max-width: 800px;
  margin: -20px auto 40px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

.lowcost-diagram-wrap {
  /* max-width: 900px; */
  margin: 0 auto;
}

.lowcost-diagram-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  background: var(--color-white);
}

.section-lowcost-note {
  max-width: 780px;
  margin: 40px auto 0;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .feature-card {
    padding: 32px 7%;
  }
  .steps-container {
    margin: 0 auto -10px;
}

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

.feature-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--color-primary);
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .feature-card h3 {
    /* min-height: calc(1.2rem * 1.3 * 3); */
    display: grid;
    place-content: center;
  }
}

.feature-card p {
  font-size: 0.82rem;
  color: #666;
}

/* Pricing Section */
.section-pricing {
  padding: 80px 0;
  background-color: var(--color-white);
}

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

.pricing-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  background: white;
  transition: all 0.3s;
}

.pricing-card.featured {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  z-index: 10;
}
@media (max-width: 767px) {
  .pricing-card.featured{
    padding: 40px 5% !important;
    .plan-name{
      font-size: 1.5rem !important;
    }
    .clinic_price{
      padding: 25px 5% !important;
    }
    .clinic_price_01{
      padding: 0 15px !important;
    }
    .hospital_price{
      padding: 25px 5% !important;
    }
    .clinic_price .price-compare {
      align-items: center;
    }
    .clinic_price .price-original-row,
    .clinic_price .price-compare .price-original {
      align-self: center;
    }
    .hospital-price-table thead th {
      font-size: 95% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    .hospital-price-table tbody td {
      font-size: 95% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    .hospital-price-table th:not(:first-child),
    .hospital-price-table td:not(:first-child) {
      text-align: center;
    }
    .hospital-price-table .price-compare {
      align-items: center;
      margin-left: auto;
      margin-right: auto;
    }
    .hospital-price-table .price-original-row,
    .hospital-price-table .price-original {
      align-self: center;
    }
  }
}


.badge-recommend {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 5px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.price-val {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent);
  font-family: var(--font-serif);
}

.price-compare {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  line-height: 1.3;
}

.price-original-row {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
}

.price-compare .price-original {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-style: double;
  align-self: flex-end;
}

.price-compare .price-arrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  text-align: center;
  width: 100%;
}

.price-compare .price-current {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-accent);
}

.price-compare .price-unit {
  font-size: 0.8rem;
  font-weight: 600;
}

.price-compare--monthly .price-current {
  font-size: 1.4rem;
  color: #e11d48;
}

.price-compare--table .price-original {
  font-size: 0.75rem;
}

.price-compare--table .price-current {
  font-size: 1rem;
}

.price-compare--table.price-compare--monthly .price-current {
  font-size: 1rem;
  color: #e11d48;
}

/* 病院料金テーブル（PC: 中央寄せ・緑背景は価格ブロックのみ） */
.hospital-price-table th:not(:first-child),
.hospital-price-table td:not(:first-child) {
  text-align: center;
  vertical-align: middle;
}

.hospital-price-table .price-compare {
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hospital-price-table .price-original-row {
  align-self: center;
}

.hospital-price-table .price-original {
  align-self: center;
}

.hospital-price-table .price-compare--monthly {
  background: #e6f6f0;
  border-radius: 8px;
  padding: 8px 14px;
}

/* マッチング無制限：クリニック・病院カード */
.pricing-plan-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.pricing-plan-card {
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pricing-plan-card-title {
  text-align: center;
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}

@media (min-width: 768px) {
  .hospital-price-table {
    table-layout: fixed;
  }

  .hospital-price-table th:first-child,
  .hospital-price-table td:first-child {
    width: 22%;
  }

  .hospital-price-table th:nth-child(2),
  .hospital-price-table td:nth-child(2),
  .hospital-price-table th:nth-child(3),
  .hospital-price-table td:nth-child(3) {
    width: 39%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hospital-price-table .price-compare {
    width: 100%;
    max-width: none;
  }

  .hospital-price-table .price-original-row {
    width: 100%;
  }

  .hospital-price-table .price-compare--monthly {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 18px;
  }

  .hospital-price-table .price-original {
    font-size: 0.8rem;
  }

  .hospital-price-table .price-current {
    font-size: 1.05rem;
  }
}

.plan-features {
  text-align: left;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li.disabled {
  color: #ccc;
  text-decoration: line-through;
}

.plan-recommend {
  font-size: 0.85rem;
  background: var(--color-secondary);
  padding: 10px;
  border-radius: 6px;
  color: #555;
}

.pricing-options h4 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.success-fee-box {
  background: #e8f5e9;
  border: 2px dashed var(--color-primary);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 600px;
}

.success-fee-box h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.success-fee-box p {
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 20px;
  width: 100%;
  line-height: 1.6;
}

/* 新プラン構成 */
.pricing-lead {
  text-align: center;
  color: #555;
  font-size: 1rem;
  margin: -10px auto 40px;
  max-width: 640px;
  line-height: 1.7;
}

.pricing-main-plans {
  max-width: 960px;
  margin: 0 auto 40px;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.pricing-main-plans .plan-name {
  color: var(--color-primary);
  margin-bottom: 8px;
}

.pricing-main-lead {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.plan-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.plan-price-table th,
.plan-price-table td {
  padding: 16px 14px;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: middle;
}

.plan-price-table thead th {
  background: #f4f7f6;
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  text-align: center;
}

.plan-price-table thead th:first-child {
  text-align: left;
}

.plan-price-table .th-annual {
  background: #e6f6f0;
  color: var(--color-primary);
}

.plan-price-table .td-facility {
  font-weight: 700;
  color: var(--color-accent);
  text-align: left;
  white-space: nowrap;
}

.plan-price-table td:not(.td-facility) {
  text-align: center;
}

.plan-price-table .td-annual {
  background: rgba(230, 246, 240, 0.45);
}

.plan-match {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 4px;
}

.plan-fee {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-serif);
}

.td-annual .plan-fee {
  color: #e11d48;
}

/* 他社採用コスト比較 */
.cost-compare {
  max-width: 960px;
  margin: 0 auto 48px;
  padding: 36px 28px;
  background: linear-gradient(180deg, #f8faf9 0%, #fff 100%);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.cost-compare-title {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.cost-compare-lead {
  text-align: center;
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.7;
}

.cost-compare-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cost-compare-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.cost-compare-card-title {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: var(--font-sans);
}

.cost-compare-premise {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

.cost-compare-calc {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 14px;
}

.cost-compare-amount {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #ddd;
}

.cost-compare-amount strong {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.25rem;
  color: #888;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.cost-compare-vs {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1.6;
}

.cost-compare-vs span {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-primary);
  font-size: 1.05rem;
}

@media (max-width: 767px) {
  .pricing-main-plans {
    padding: 32px 5% !important;
  }

  .cost-compare {
    padding: 28px 5%;
  }

  .cost-compare-cards {
    grid-template-columns: 1fr;
  }

  .plan-price-table th,
  .plan-price-table td {
    padding: 12px 8px;
  }

  .plan-fee {
    font-size: 1.05rem;
  }
}

.options-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.option-item {
  background: #fcfcfc;
  border: 1px solid #ddd;
  padding: 15px 30px;
  border-radius: 8px;
  text-align: center;
}

.option-label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}

.option-price {
  color: var(--color-primary);
  font-weight: 700;
}

/* Comparison Section */
.section-comparison {
  padding: 80px 0;
  background-color: #fafafa;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: #eee;
  font-weight: 700;
}

.comparison-table .th-general {
  background: #333;
  color: white;
}

.comparison-table .th-highlight {
  background: var(--color-primary);
  color: white;
  font-size: 1.2rem;
}

.comparison-table td:first-child {
  background-color: var(--color-gray-light);
  font-weight: 700;
}

.comparison-table .td-highlight {
  background: #f0fdf4;
  /* Light green */
  font-weight: 700;
  color: #006642;
}

.note {
  font-size: 0.8rem;
  font-weight: normal;
  color: #666;
}


@media (max-width: 767px) {
  .section-comparison{
    padding: 40px 0;
     thead tr th:nth-child(n+2){
      font-size: 85% !important;
     }
  }
  .comparison-table thead tr th:first-child {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    padding: 10px 7px;
  }
  .comparison-table tbody tr td:first-child {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    padding: 10px 7px;
  }
  .comparison-table thead tr th:nth-child(2),
  .comparison-table tbody tr td:nth-child(2) {
    width: 35%;
    font-size: 90%;
  }
  .comparison-table td {
    padding: 5% 3%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
}



/* CTA Section */
.section-cta,
.section-cta-footer {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #1a252f 100%);
  color: white;
  text-align: center;
}

.section-cta-footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, #008f5a 100%);
}

.cta-title {
  color: white;
  margin-bottom: 40px;
}

.cta-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-form-errors {
  margin-bottom: 18px;
}

.cta-form-error-list {
  margin: 0;
  padding-left: 1.25em;
}

.cta-form .form-group {
  margin-bottom: 15px;
}

.cta-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-note {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #666;
}

.form-message {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1.4em;
}
.form-message--success {
  color: var(--color-primary);
  font-weight: 500;
}
.form-message--error {
  color: #c00;
  font-weight: 500;
}
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.btn:disabled:hover {
  transform: none;
}

/* Trust Section */
.section-trust {
  padding: 80px 0;
  background-color: #fffaf0;
  /* Warm white */
  background-image: 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='%23d4af37' fill-opacity='0.05'%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");
}

.trust-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-serif);
}

.trust-content h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.trust-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 2;
}

.patent-box {
  border-top: 1px solid #d4af37;
  border-bottom: 1px solid #d4af37;
  padding: 30px 0;
  margin-top: 40px;
  text-align: center;
}

.patent-box h4 {
  margin-bottom: 15px;
  color: #8a7122;
}

/* Footer */
footer {
  background: #111;
  color: #888;
  padding: 50px 0 120px 0;
  font-size: 0.9rem;
}

footer .company-info {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.footer-info {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: #888;
}

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

  .issues-content {
    flex-direction: column;
  }

  .issues-text {
    order: 1;
    min-width: 100%;
  }
  .issues-video {
    order: 2;
    min-width: 100%;
    padding: 0 0 20px;
  }
  /* スマホ時：MVをコンテナ幅いっぱいにきれいに表示 */
  .video-placeholder {
    max-width: 100%;
    padding: 0 0px;
  }
  .monitor-frame {
    padding: 10px 10px 28px 10px;
    border-radius: 8px 8px 0 0;
    border-bottom-width: 8px;
  }
  .screen {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }
  .screen-content {
    padding: 10px;
  }
  .video-title {
    font-size: 1rem;
  }
  .play-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  .play-text {
    font-size: 0.85rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  /* スマホ：ヘッダー高さを抑える */
  .header {
    padding: 8px 0;
  }
  .header .container {
    width: 100%;
  }
  .hero {
    margin-top: 64px;
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 50px;
    background-position: right bottom;
    background-size: cover;
    background-image:
      linear-gradient(to right, rgba(253, 251, 251, 0.92) 0%, rgba(253, 251, 251, 0.5) 45%, transparent 70%),
      url('hero_bg_doctors_right.png');
  }
  .hero-container {
    padding: 0 16px;
    .hero-title-main {
      font-size: clamp(1.15rem, 3.5vw, 1.45rem);
      margin-bottom: 14px;
    }
    .hero-logo-img {
      width: clamp(144px, 47vw, 198px);
    }
    .hero-title-logo {
      margin-top: 14px;
    }
  }
  .hero-content-left {
    padding-right: 0;
    max-width: 100%;
  }
  .hero-lead {
    margin-top: 0;
  }
  .logo-img {
    width: 72px;
    height: auto;
  }
  .hamburger {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .hamburger-line {
    width: 20px;
  }
  .hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* スマホ：PCナビ非表示・ハンバーガー表示・メニューパネル準備 */
  .header .nav-pc {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-overlay,
  .nav-sp {
    display: block;
  }
  .nav-sp {
    display: flex;
  }
}











/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 999;
  transform: translateY(150%);
  transition: transform 0.4s ease-in-out;
  border-top: 1px solid var(--color-border);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.floating-cta-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 600px) {
  .floating-cta-inner {
    flex-direction: column;
    gap: 10px;
  }

  .floating-cta-text {
    font-size: 0.9rem;
  }

  footer {
    padding-bottom: 160px;
  }
}

/* Voice Section */
.section-voice {
  padding: 80px 0;
  background-color: #f4fbf8;
  /* Very light green tint */
}

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

.voice-card {
  display: flex;
  flex-direction: column;
}

.voice-bubble {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 25px;
  border: 1px solid #eee;
}

.voice-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}

.voice-bubble p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.voice-user {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.voice-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--color-primary);
  background-color: white;
}

.voice-info {
  text-align: left;
}

.voice-name {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 2px;
}

.voice-meta {
  font-size: 0.85rem;
  color: #666;
}








/* aaaaaaaaaaaaaa */

@media (min-width: 768px) {
  .nonePC {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .noneSP {
    display: none !important;
  }
}









/* confirm */
body.confirm main,
body.finish main {
  padding-top: 150px;
  padding-bottom: 100px;
  .container{
    max-width: 900px;
  }
  .confirm_text{
    text-align: center;
    margin-bottom: 3em;
  }
  tr{
    display: flex;
      th{
        width: 30%;
        text-align: left;
      }
      td{
        width: 70%;
      }
  }
  tr + tr{
    margin-top: 1em;
  }
  .container h2{
    padding-bottom: 1.8em;
    text-align: center;
  }
  .back_btn {
    margin-top: 3em;
    width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .confirm-actions.back_btn {
    width: 100%;
    max-width: 420px;
  }
  .confirm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .confirm-actions .inline {
    margin: 0;
  }
}

@media (min-width: 768px) {

}
@media (max-width: 767px) {

body.confirm main,
body.finish main {
  tr{
      th{
        width: 35%;
        text-align: left;
      }
      td{
        width: 65%;
      }
  }
}

}




/* finish */
body.finish main{
  .container{
    max-width: 900px;
      .section{
        text-align: center;
      }
      p a{
        margin-top: 1em;
        display: block;
      }
      a:not(.btn-outline){
        text-decoration: underline;
        text-underline-offset: 0.3em;
      }
      .back_btn{
        margin-top: 3em;
      }
  }
}
@media (min-width: 768px) {

}
@media (max-width: 767px) {

}










/* aaaaaaaaaaaaaa */

@media (min-width: 768px) {

}
@media (max-width: 767px) {

}


/* aaaaaaaaaaaaaa */

@media (min-width: 768px) {

}
@media (max-width: 767px) {

}


/* aaaaaaaaaaaaaa */

@media (min-width: 768px) {

}
@media (max-width: 767px) {

}

/* Data Section */
.section-data {
  padding: 80px 0 100px;
  background-color: #f9fafb;
}

.data-lead {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  margin: 0 auto 50px;
  max-width: 800px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (max-width: 767px) {
  .data-lead {
    padding: 8% 5%;
  }
}
.data-lead-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #666;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .data-lead-text {
    letter-spacing: -0.04em;
  }
}
.data-lead-highlights p {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .data-lead-highlights p {
    line-height: 1.4;
    margin-bottom: 1.2em;
  }
}

.data-lead-highlights p:last-child {
  margin-bottom: 0;
}

.data-lead-highlights .highlight {
  color: var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.data-lead-highlights .highlight-number {
  color: #e11d48;
  font-size: 1.4em;
  margin: 0 5px;
}

.charts-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.chart-card {
  position: relative;
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.chart-card[data-note]::after {
  content: attr(data-note);
  position: absolute;
  right: 4px;
  bottom: -2.2em;
  font-size: 0.7rem;
  color: #aaa;
  font-weight: 400;
}

.chart-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.chart-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 20px;
}

.canvas-wrap {
  position: relative;
  height: 300px;
  width: 100%;
}
