/* ===================================
   生成AIセミナー LP - TDC NEXUS
   ブランドカラー: 白×ネイビー#10293C×ティール#0F7E9D×シアン#7FD7E2
   （2026/06/13制定・名刺準拠）
   =================================== */

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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  line-height: 1.9;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* <picture> は img のレイアウトを邪魔しないよう透過させる */
picture {
  display: contents;
}

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

ul,
ol {
  list-style: none;
}

/* ===================================
   Variables
   =================================== */
:root {
  /* TDC NEXUSブランドカラー（名刺準拠・2026/06/13制定） */
  --navy: #10293C;
  --navy-deep: #0B1E2C;
  --accent: #0F7E9D;
  --accent-dark: #0B6379;
  --cyan: #7FD7E2;
  --pale: #EAF5F8;
  --white: #ffffff;
  --gray-50: #f7fafb;
  --gray-100: #edf2f5;
  --gray-200: #dfe7ec;
  --gray-400: #94a0a8;
  --gray-600: #66727b;
  --text: #243240;
  --text-light: #56636e;
  --line: #e2eaef;
  --max-width: 1160px;
  /* 角丸は極力小さく。丸みの強いカードはテンプレート然として見えるため */
  --r: 3px;
}

.sp-only {
  display: none;
}

/* ===================================
   Common
   =================================== */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* セクション見出しは左寄せ＋通し番号＋罫線の「編集記事」型で統一する。
   中央揃えのラベル→大見出し→サブ文の3段は量産テンプレートに見えるため使わない。 */
body {
  counter-reset: seclabel;
}

.section-header {
  text-align: left;
  margin-bottom: 56px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
  counter-increment: seclabel;
}

.section-label::before {
  content: counter(seclabel, decimal-leading-zero);
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-title .accent {
  color: var(--accent);
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 2.1;
  max-width: 720px;
  margin: 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--accent);
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.btn-arrow {
  font-weight: 700;
  transition: transform 0.25s;
}

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

.btn-large {
  padding: 22px 64px;
  font-size: 1.125rem;
}

.btn-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 32px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--white);
  transition: background 0.25s, border-color 0.25s;
  line-height: 1.4;
}

.btn-tel:hover {
  background: var(--gray-50);
}

.btn-tel-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.btn-tel-number {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.7;
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

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

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-cta-btn {
  display: inline-block;
  padding: 11px 30px;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.header-cta-btn:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   Hero
   =================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #f6fafc 0%, #ffffff 100%);
  padding-top: 76px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -160px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: var(--pale);
  opacity: 0.7;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 32px 0;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  min-height: calc(100vh - 76px);
}

.hero-content {
  flex: 1.2;
  padding-bottom: 88px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.breadcrumb a:hover {
  border-color: currentColor;
}

.breadcrumb span[aria-hidden] {
  color: var(--gray-600);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  padding: 10px 26px;
  margin-bottom: 30px;
}

.hero-badge-item {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.hero-badge-item strong {
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.hero-badge-item strong .unit {
  font-size: 0.875rem;
}

.hero-badge-divider {
  width: 1px;
  height: 24px;
  background: var(--gray-200);
}

.hero-main-catch {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero-main-catch .accent {
  color: var(--accent);
}

/* H1内のキーワード行（SEO：旭川＋生成AI研修・セミナー） */
.hero-h1-lead {
  display: block;
  font-size: clamp(0.875rem, 1.15vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-h1-lead::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
}

.hero-sub-heading {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 700;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-sub-copy {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 560px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 7px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
}

.hero-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}

.hero-cta-group {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo {
  flex: 1;
  position: relative;
  align-self: stretch;
  display: flex;
  justify-content: center;
  margin-right: -16px;
}

.hero-photo-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50% 50% 0 0;
  background: var(--navy);
  opacity: 0.94;
}

.hero-photo-ring {
  position: absolute;
  top: 130px;
  right: -36px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(15, 126, 157, 0.22);
}

.hero-photo img {
  position: absolute;
  bottom: 0;
  right: -20px;
  z-index: 1;
  width: 610px;
  max-width: none;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 16px 40px rgba(26, 26, 26, 0.18));
}

.hero-photo-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 24px 12px;
  box-shadow: 0 8px 24px rgba(16, 41, 60, 0.08);
  line-height: 1.3;
}

.hero-photo-card-bottom {
  left: 8px;
  bottom: 56px;
}

.hero-photo-card-top {
  top: 64px;
  right: 2px;
}

.hero-photo-card-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
}

.hero-photo-card-num .unit {
  font-size: 0.9375rem;
}

.hero-photo-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ===================================
   Trust Bar
   =================================== */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.trust-bar-label {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.2em;
}

.trust-bar-list {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-bar-list li {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  position: relative;
}

.trust-bar-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Pain Points
   =================================== */
.pain-section {
  padding: 110px 0;
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pain-card {
  padding: 34px 34px;
  background: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.25s;
}

.pain-card:hover {
  background: var(--gray-50);
}

.pain-num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--white);
  background: var(--navy);
  line-height: 1;
  padding: 7px 9px;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.pain-card-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.6;
}

.pain-card-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.9;
}

.pain-solution {
  margin-top: 28px;
  background: var(--navy);
  border-radius: var(--r);
  padding: 44px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.pain-solution .text-link {
  color: var(--cyan);
}

.pain-solution-image {
  flex: 0 0 300px;
  border-radius: 2px;
  overflow: hidden;
}

.pain-solution-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* 濃紺の解決ブロック上に載るため、文字はすべて白系で組む */
.pain-solution-text h3 {
  font-size: 1.4375rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.pain-solution-text h3 .accent {
  color: var(--cyan);
}

.pain-solution-text p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 2;
  margin-bottom: 20px;
}

/* ===================================
   Features
   =================================== */
.features-section {
  padding: 110px 0;
  background: var(--gray-50);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px 34px 36px;
  position: relative;
  transition: border-color 0.25s;
}

.feature-card:hover {
  border-color: var(--accent);
}

/* アイコン画像は透過PNG（ブランドティール単色）へ差し替え済み。
   色変換フィルタは不要。プレートは3つのアイコンの線量差を吸収する目的で残す。 */
.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--pale);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.feature-num {
  position: absolute;
  top: 38px;
  right: 34px;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--gray-600);
  letter-spacing: 0.12em;
  line-height: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 2;
}

/* ===================================
   Stats
   =================================== */
.stats-section {
  padding: 96px 0;
  background: var(--navy);
}

.stats-header {
  text-align: left;
  margin-bottom: 48px;
}

.stats-header .section-label {
  color: var(--cyan);
}

.stats-header .section-label::before {
  color: var(--white);
}

.stats-header .section-label::after {
  background: rgba(255, 255, 255, 0.16);
}

.stats-header .section-title {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
  border-right: none;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stat-number {
  font-size: 4.25rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.stat-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
  font-weight: 500;
}

/* ===================================
   Curriculum
   =================================== */
.curriculum-section {
  padding: 110px 0;
  background: var(--white);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.curriculum-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px 38px;
}

.curriculum-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.curriculum-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}

.curriculum-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 12px;
}

.curriculum-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.curriculum-custom {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 40px 44px;
}

.curriculum-custom-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.curriculum-custom-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.curriculum-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.curriculum-chips li {
  background: var(--pale);
  color: var(--accent-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 2px;
}

/* ===================================
   Subsidy（助成金・補助金）
   =================================== */
.subsidy-section {
  padding: 110px 0;
  background: var(--pale);
}

.subsidy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subsidy-card {
  background: var(--white);
  border: 1px solid #d3e5ec;
  border-radius: var(--r);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

.subsidy-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--accent-dark);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.subsidy-card:last-child .subsidy-card-tag {
  background: var(--navy);
}

.subsidy-card-title {
  font-size: 1.1875rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 14px;
}

.subsidy-card-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 20px;
  flex: 1;
}

.subsidy-card-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.9;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.subsidy-card-note strong {
  color: var(--navy);
}

.subsidy-cta {
  margin-top: 32px;
  text-align: center;
}

.subsidy-cta p {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

/* ===================================
   Results
   =================================== */
.results-section {
  padding: 110px 0;
  background: var(--gray-50);
}

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

.result-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 32px;
  transition: border-color 0.25s;
}

.result-card:hover {
  border-color: var(--accent);
}

.result-card-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-dark);
  border: 1px solid #cde0e8;
  padding: 2px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.result-card-name {
  font-size: 1.0625rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.6;
}

.result-card-host {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}

.result-card-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--gray-200);
}

.result-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.9;
}

.results-note {
  margin-top: 28px;
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.9;
  text-align: center;
}

/* ===================================
   Image Band
   =================================== */
.image-band {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.25) 70%, transparent 100%);
  display: flex;
  align-items: center;
}

.image-band-text {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  color: var(--white);
}

.image-band-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 14px;
}

.image-band-text p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
}

/* ===================================
   Instructor
   =================================== */
.instructor-section {
  padding: 110px 0;
  background: var(--white);
}

.instructor-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}

.instructor-photo-side {
  flex: 0 0 380px;
}

.instructor-photo-wrapper {
  position: relative;
  width: 380px;
  height: 460px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--pale);
}

.instructor-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.instructor-info {
  flex: 1;
}

.instructor-name-en {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.instructor-name {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.instructor-role {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.instructor-message {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 2.2;
  margin-bottom: 28px;
}

.instructor-facts {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

/* ラベル列＋本文列の2カラム。折り返しても本文がラベル下に潜り込まないようにする */
.instructor-facts li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.9;
}

.instructor-facts li span {
  align-self: start;
  margin-top: 5px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  background: var(--pale);
  border-radius: 2px;
  padding: 3px 0;
  text-align: center;
}

.instructor-reputation {
  background: var(--gray-50);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--navy);
  padding: 24px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.9;
}

/* ===================================
   Book（著書）
   =================================== */
.book-section {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.book-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 46%;
  height: 100%;
  background: var(--navy-deep);
}

.book-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 72px;
}

.book-visual {
  flex: 0 0 300px;
  position: relative;
}

.book-visual::after {
  /* 背表紙の陰影。実物の本らしい厚みを出す */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.06) 5%, rgba(255, 255, 255, 0.06) 8%, transparent 22%);
  pointer-events: none;
}

.book-visual img {
  width: 100%;
  height: auto;
  box-shadow: 20px 26px 60px rgba(0, 0, 0, 0.45);
}

.book-body {
  flex: 1;
  color: var(--white);
}

.book-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.book-label::after {
  content: '';
  width: 48px;
  height: 1px;
  background: rgba(127, 215, 226, 0.4);
}

.book-title {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 8px;
}

.book-title .accent {
  color: var(--cyan);
}

.book-subtitle {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.book-lead {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--cyan);
  margin-bottom: 16px;
}

.book-desc {
  font-size: 0.9375rem;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  max-width: 620px;
}

.book-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.book-topics li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  padding: 6px 14px;
}

.book-note {
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.42);
}

/* ===================================
   Testimonials
   =================================== */
.testimonials-section {
  padding: 110px 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 30px 30px;
  border-radius: var(--r);
  position: relative;
  transition: border-color 0.25s;
}

.testimonial-card:hover {
  border-color: var(--accent);
}

.testimonial-card::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.8125rem;
  color: var(--gray-600);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

/* ===================================
   Flow
   =================================== */
.flow-section {
  padding: 110px 0;
  background: var(--white);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  border-radius: 0 0 var(--r) var(--r);
  padding: 32px 26px 30px;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  z-index: 2;
}

.flow-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 14px;
}

.flow-title {
  font-size: 1.0625rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.6;
}

.flow-desc {
  font-size: 0.8438rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ===================================
   Area（対応エリア）
   =================================== */
.area-section {
  padding: 110px 0;
  background: var(--gray-50);
}

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

.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 32px 28px;
}

.area-card-main {
  border-color: var(--navy);
  background: var(--navy);
}

.area-card-main .area-card-title,
.area-card-main .area-card-lead {
  color: var(--white);
}

.area-card-main .area-card-lead {
  color: var(--cyan);
}

.area-card-main .area-card-desc {
  color: rgba(255, 255, 255, 0.78);
}

.area-card-title {
  font-size: 1.1875rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.area-card-lead {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.area-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.9;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-chips li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 5px 12px;
}

/* ===================================
   FAQ
   =================================== */
.faq-section {
  padding: 110px 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.faq-item {
  background: transparent;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 64px 24px 60px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  transition: background 0.2s;
}

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

.faq-question:hover {
  color: var(--accent);
}

.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  top: 22px;
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 28px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s;
}

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

.faq-answer {
  padding: 4px 32px 28px 60px;
  position: relative;
}

.faq-answer::before {
  content: 'A';
  position: absolute;
  left: 20px;
  top: 2px;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 2;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  padding: 110px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -240px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.07;
}

.cta-section .section-inner {
  position: relative;
  z-index: 2;
}

.cta-header {
  text-align: center;
  margin-bottom: 48px;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 12px;
}

.cta-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.cta-buttons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-tel-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.btn-tel-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-tel-light .btn-tel-label {
  color: rgba(255, 255, 255, 0.7);
}

.btn-tel-light .btn-tel-number {
  color: var(--white);
}

.cta-info {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-info-block {
  display: flex;
  gap: 24px;
}

.cta-info-block dt {
  flex-shrink: 0;
  width: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  padding-top: 5px;
}

.cta-info-block dd {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}

/* ===================================
   Related services（内部リンク）
   =================================== */
.related-section {
  padding: 88px 0;
  background: var(--white);
}

.related-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px 24px;
  transition: border-color 0.25s, background 0.25s;
}

.related-card:hover {
  border-color: var(--accent);
  background: var(--gray-50);
}

.related-card h3 {
  font-size: 1.0625rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 10px;
}

.related-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
  flex: 1;
}

.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 0 36px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-address {
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.45);
}

.footer-address a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  max-width: 480px;
}

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

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

.footer-copy {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding: 20px 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}

/* ===================================
   Mobile fixed CTA
   =================================== */
.mobile-cta {
  display: none;
}

/* ===================================
   Scroll animations
   =================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 960px) {
  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .header-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: 48px 24px 0;
    min-height: auto;
  }

  .hero-photo {
    order: -1;
    margin-bottom: 32px;
    margin-right: 0;
    width: 100%;
    align-self: auto;
  }

  .hero-photo-accent {
    width: 280px;
    height: 280px;
  }

  .hero-photo-ring,
  .hero-photo-dots,
  .hero-photo-card-top {
    display: none;
  }

  .hero-photo img {
    position: static;
    width: 310px;
    max-width: 100%;
    pointer-events: auto;
  }

  .hero-photo-card-bottom {
    left: calc(50% - 180px);
    bottom: 24px;
    padding: 10px 18px 8px;
  }

  .hero-photo-card-num {
    font-size: 1.375rem;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .hero-badge {
    gap: 14px;
    padding: 8px 20px;
  }

  .hero-sub-copy {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .trust-bar-list {
    justify-content: center;
    gap: 24px;
  }

  .trust-bar-list li:not(:last-child)::after {
    right: -13px;
  }

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

  .pain-solution {
    flex-direction: column;
    padding: 36px 28px;
    gap: 28px;
  }

  .pain-solution-image {
    flex: none;
    width: 100%;
  }

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

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

  .stat-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-card:nth-child(2n) {
    border-right: none;
  }

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

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

  .results-list {
    grid-template-columns: 1fr;
  }

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

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

  .instructor-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .instructor-photo-side {
    flex: none;
  }

  .instructor-photo-wrapper {
    width: 280px;
    height: 350px;
    margin: 0 auto;
  }

  .instructor-reputation {
    text-align: left;
  }

  .instructor-facts {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .book-section::before {
    display: none;
  }

  .book-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .book-visual {
    flex: none;
    width: 240px;
  }

  .book-subtitle {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .book-desc {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .book-topics {
    justify-content: center;
  }

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

  .flow-list {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    bottom: -16px;
    right: 50%;
    transform: translateX(50%) rotate(135deg);
  }

  .cta-info-block {
    flex-direction: column;
    gap: 4px;
  }

  .cta-info-block dt {
    width: auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
    max-width: none;
  }

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

@media (max-width: 600px) {
  body {
    padding-bottom: 68px;
  }

  .header-inner {
    height: 60px;
    padding: 0 16px;
  }

  .header-nav {
    top: 60px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-inner {
    padding: 36px 16px 0;
  }

  .hero-photo img {
    width: 250px;
  }

  .hero-photo-accent {
    width: 225px;
    height: 225px;
  }

  .hero-photo-card-bottom {
    left: calc(50% - 150px);
    bottom: 16px;
  }

  .hero-badge {
    flex-direction: row;
    gap: 12px;
    padding: 8px 16px;
    margin-bottom: 24px;
  }

  .hero-badge-item {
    font-size: 0.6875rem;
  }

  .hero-badge-item strong {
    font-size: 1.25rem;
  }

  .hero-main-catch {
    font-size: 2rem;
  }

  .hero-sub-heading {
    font-size: 1rem;
  }

  .hero-sub-copy {
    font-size: 0.875rem;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary {
    width: 100%;
    padding: 17px 32px;
  }

  .btn-tel {
    width: 100%;
  }

  .section-inner {
    padding: 0 18px;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .pain-section,
  .features-section,
  .curriculum-section,
  .subsidy-section,
  .results-section,
  .instructor-section,
  .book-section,
  .testimonials-section,
  .flow-section,
  .area-section,
  .faq-section,
  .cta-section {
    padding: 72px 0;
  }

  .book-visual {
    width: 200px;
  }

  .book-visual img {
    box-shadow: 12px 16px 36px rgba(0, 0, 0, 0.45);
  }

  .related-section {
    padding: 56px 0;
  }

  .subsidy-card {
    padding: 30px 24px 26px;
  }

  .area-card {
    padding: 26px 22px 24px;
  }

  .related-card {
    padding: 24px 22px;
  }

  .stats-section {
    padding: 64px 0;
  }

  .pain-card {
    padding: 26px 22px;
  }

  .pain-solution {
    padding: 28px 20px;
  }

  .pain-solution-text h3 {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 36px 26px;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .stat-unit {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-card {
    padding: 30px 14px;
  }

  .curriculum-card {
    padding: 32px 24px;
  }

  .curriculum-custom {
    padding: 28px 22px;
  }

  .result-card {
    padding: 26px 22px;
  }

  .image-band {
    height: 320px;
  }

  .instructor-photo-wrapper {
    width: 230px;
    height: 290px;
  }

  .instructor-name {
    font-size: 1.75rem;
  }

  .instructor-message {
    font-size: 0.9375rem;
    line-height: 2;
  }

  .testimonial-card {
    padding: 30px 24px;
  }

  .faq-question {
    padding: 20px 52px 20px 50px;
    font-size: 0.9375rem;
  }

  .faq-question::before {
    left: 18px;
    top: 19px;
  }

  .faq-question::after {
    right: 22px;
  }

  .faq-answer {
    padding: 4px 22px 24px 50px;
  }

  .faq-answer::before {
    left: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 1rem;
  }

  .footer {
    padding: 40px 0 90px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  /* Mobile fixed CTA bar */
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .mobile-cta.show {
    transform: translateY(0);
  }

  .mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 17px 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .mobile-cta-tel {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-cta-form {
    background: var(--accent);
    color: var(--white);
  }
}
