/* ===========================
   CSS Variables & Reset
=========================== */
:root {
  --navy: #0a7cc0;
  --navy-light: #085c8d;
  --turquoise: #76bd50;
  --turquoise-light: #00cfc0;
  --yellow: #fde475;
  --yellow-dark: #d4aa00;
  --yellow-bg: #fffbe6;
  --white: #ffffff;
  --gray-50: #fafdff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --green-line: #06c755;
  --green-line-dark: #05a847;
  --font: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise);
  background: rgba(10, 124, 192, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: var(--font);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
}

.btn-line {
  background: var(--green-line);
  color: var(--white);
}

.btn-line:hover {
  background: var(--green-line-dark);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===========================
   HEADER / NAV
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 24px;
}

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

.logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.logo-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.04em;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta .btn {
  padding: 10px 22px;
  font-size: 14px;
}

@media (max-width: 640px) {
  .logo-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .logo-img {
    height: 20px;
  }

  .logo-subtitle {
    font-size: 12px;
  }

  .header-cta .btn-outline {
    display: none;
  }

  .header-cta .btn {
    padding: 9px 18px;
    font-size: 13px;
  }
}

/* ===========================
   SECTION 1: HERO
=========================== */
.hero {
  padding: 80px 0 80px;
  background: linear-gradient(160deg, #f0f4f8 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 124, 192, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--turquoise);
  margin-bottom: 16px;
}

.hero-h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-h1 em {
  font-style: normal;
  color: var(--turquoise);
}

.hero-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}

.hero-badge {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.hero-badge::before {
  content: '✓ ';
  color: var(--turquoise);
}

.hero-badge-wide {
  grid-column: 1 / -1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.hero-link:hover {
  color: var(--turquoise);
  border-color: var(--turquoise);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-right {
    gap: 36px;
  }

  .hero-img-wrap {
    display: flex;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-badge {
    padding: 6px 12px;
  }
}

/* ===========================
   NETWORK SECTION (Hero直下)
=========================== */
.network {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

.network-header {
  text-align: center;
  margin-bottom: 16px;
}

.network-desc {
  text-align: center;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto 40px;
}

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

.network-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-top: 4px solid var(--turquoise);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.network-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.network-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.network-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.network-card-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 768px) {
  .network-desc {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .network-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ===========================
   SECTION 2: PAIN POINTS
=========================== */
.pain {
  background: var(--yellow-bg);
  padding: 80px 0;
}

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

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.pain-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
}

.pain-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
}

.pain-divider {
  border: none;
  border-top: 2px solid var(--gray-200);
  margin: 0 0 36px;
}

.pain-resolve {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.75;
}

.pain-resolve em {
  font-style: normal;
  color: var(--yellow);
}

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

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

/* ===========================
   SECTION 3: WHY STUDENTS
=========================== */
.why {
  background: var(--white);
}

.why-header {
  margin-bottom: 48px;
}

.why-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 680px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--turquoise);
}

.why-card-icon {
  font-size: 46px;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 900px) {
  .why-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   SECTION 4: STRENGTHS
=========================== */
.strengths {
  background: var(--navy);
  color: var(--white);
}

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

.strengths .section-label {
  color: var(--turquoise);
  background: rgba(10, 124, 192, 0.15);
}

.strengths-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.strength-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background 0.2s, border-color 0.2s;
}

.strength-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--turquoise);
}

.strength-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--turquoise);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.strength-icon-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.strength-desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
}

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

/* ===========================
   SECTION 5: OCCUPATIONS
=========================== */
.occupations {
  background: var(--gray-50);
}

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

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

.occ-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.occ-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--turquoise);
}

.occ-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.occ-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.occ-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

.occ-card-other {
  border-style: dashed;
  border-color: var(--gray-400);
  background: var(--gray-50);
}

@media (max-width: 768px) {
  .occ-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

/* ===========================
   CANDIDATE SECTION
=========================== */
.candidate {
  background: var(--white);
}

.candidate-header {
  text-align: center;
  margin-bottom: 12px;
}

.candidate-note {
  text-align: center;
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.8;
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.candidate-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.candidate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.candidate-flag {
  font-size: 42px;
  margin-bottom: 13px;
}

.candidate-origin {
  font-size: 13px;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 6px;
}

.candidate-course {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 1.5;
}

.candidate-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.candidate-value {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 8px;
}

.candidate-tag {
  display: inline-block;
  background: rgba(10, 124, 192, 0.08);
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(10, 124, 192, 0.2);
}

.candidate-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .candidate-note {
    text-align: left;
  }

  .candidate-disclaimer {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .candidate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   SECTION 6: VISA COMPARISON
=========================== */
.visa {
  background: var(--gray-50);
}

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

.visa-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.visa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.visa-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.visa-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}

.visa-table th:first-child {
  width: 30%;
}

.visa-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}

.visa-table tbody tr:nth-child(even) {
  background: var(--white);
}

.visa-table tbody tr:hover {
  background: rgba(10, 124, 192, 0.05);
}

.visa-table tbody tr:last-child td {
  border-bottom: none;
}

.visa-table td:first-child {
  font-weight: 700;
  color: var(--navy);
}

.visa-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--yellow-bg);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--navy);
  border-left: 4px solid var(--yellow);
  line-height: 1.85;
}

/* ===========================
   SECTION 7: FLOW
=========================== */
.flow {
  background: var(--white);
}

.flow-header {
  text-align: center;
  margin-bottom: 56px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(to right, var(--turquoise), var(--navy));
}

.flow-step {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.flow-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(10, 34, 64, 0.22);
  transition: transform 0.2s, background 0.2s;
}

.flow-step:hover .flow-num {
  transform: scale(1.08);
  background: var(--turquoise);
}

.flow-num .step-n {
  font-size: 10px;
  opacity: 0.7;
}

.flow-num .step-i {
  font-size: 20px;
  line-height: 1;
}

.flow-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.flow-desc {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 900px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .flow-steps::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   SECTION 8: PRICING
=========================== */
.pricing {
  background: var(--gray-50);
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-badge {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 100px;
  text-align: center;
}

.pricing-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--gray-600);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .pricing-badges {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .pricing-lead {
    text-align: left;
  }
}

.pricing-table-wrap {
  max-width: 640px;
  margin: 0 auto 24px;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.pricing-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.pricing-table th {
  padding: 14px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}

.pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--white);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table td:last-child {
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
}

.pricing-note {
  max-width: 620px;
  margin: 0 auto;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.9;
}

.pricing-note li {
  padding-left: 1em;
  text-indent: -1em;
}

/* ===========================
   SECTION 9: FAQ
=========================== */
.faq {
  background: var(--white);
}

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

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

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

.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.faq-q-badge {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.open .faq-q-badge {
  background: var(--turquoise);
}

.faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--turquoise);
}

.faq-a {
  display: none;
  padding: 0 24px 20px 66px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

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

/* ===========================
   SECTION 10: FINAL CTA + FORM
=========================== */
.cta-form {
  background: var(--navy);
  color: var(--white);
}

.cta-form .section-title {
  color: var(--white);
}

.cta-form .section-label {
  color: var(--turquoise);
  background: rgba(10, 124, 192, 0.15);
}

.cta-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.cta-left-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
}

.cta-left-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.cta-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-point::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--turquoise);
  min-width: 6px;
}

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

/* ハニーポット：画面上は非表示。スクリーンリーダーからも除外し、botの機械的入力のみを狙って検知する */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status.is-success {
  color: var(--turquoise, #0a7cc0);
}

.form-status.is-error {
  color: #d64545;
}

.form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.required-badge {
  background: #e53e3e;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 16px;
  min-width: 0;
}

.radio-card-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.radio-card input[type='radio'] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}

.radio-card-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-800);
}

.radio-card:has(input:checked) {
  border-color: var(--navy);
  background: var(--gray-50);
  box-shadow: 0 0 0 3px rgba(10, 124, 192, 0.12);
}

.radio-card:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 124, 192, 0.12);
}

.form-notice {
  background: rgba(10, 124, 192, 0.06);
  border: 1px solid rgba(10, 124, 192, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.form-notice p {
  margin: 0;
}

.form-notice strong {
  color: var(--navy);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(10, 124, 192, 0.12);
}

.form-textarea {
  height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 200, 0, 0.35);
}

.form-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--green-line);
  color: var(--white);
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 12px;
  transition: background 0.2s, transform 0.2s;
}

.form-line-btn:hover {
  background: var(--green-line-dark);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .cta-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 24px 18px;
  }

  .radio-card {
    padding: 10px 12px;
  }

  .radio-card-text {
    font-size: 13px;
  }

  .form-notice {
    padding: 12px 14px;
    font-size: 12.5px;
  }

  .candidate-card {
    padding: 18px 14px;
  }

  .candidate-course {
    font-size: 11px;
  }

  .candidate-value {
    font-size: 13px;
  }
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #071629;
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-list li {
  font-size: 13px;
}

.footer-col-list li strong {
  color: var(--white);
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ===========================
   MOBILE STICKY CTA BAR
=========================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.14);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}

.sticky-cta.visible {
  display: flex;
}

.sticky-cta-btn {
  flex: 1;
  padding: 13px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s;
}

.sticky-cta-btn:active {
  transform: scale(0.97);
}

.sticky-btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.sticky-btn-line {
  background: var(--green-line);
  color: var(--white);
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ===========================
   UTILITIES
=========================== */
.text-center {
  text-align: center;
}

.pb-0 {
  padding-bottom: 0 !important;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  body {
    padding-bottom: 80px;
  }

  .pc-br {
    display: none;
  }
}