/* ===== CSS Custom Properties ===== */
:root {
  --primary-blue: #0662ce;
  --secondary-blue: #1e88e5;
  --light-blue: #7ac8f8;
  --accent-blue: #4a89dc;
  --orange-cta: #ff9900;
  --orange-button: #f79646;
  --blue-hover: #1537fb;
  --bg-light: #f3f6fc;
  --bg-gray: #e8e8e8;
  --bg-gray-light: #EEEEEE;
  --text-dark: #333333;
  --text-heading: #1a3a6a;
  --text-body: #424242;
  --border-color: #eeeeee;
  --white: #FFFFFF;

  --font-ja: "BIZ UDPGothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-en: "Inter", "Montserrat", "Open Sans", "Lato", sans-serif;

  /* Fluid spacing: 12px@480vw → 60px@1400vw */
  --section-pad-h: clamp(12px, 5.22vw - 13px, 60px);
  /* Fluid section vertical top: 32px@480vw → 60px@1400vw */
  --section-pad-top: clamp(32px, 3.04vw + 17.4px, 60px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ja);
  font-size: 17px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== Image Placeholders ===== */
.img-placeholder {
  width: 100%;
  background: #dde4ed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8899aa;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  aspect-ratio: 1672 / 982;
}

.img-placeholder--short {
  aspect-ratio: 1014 / 372;
}

.img-placeholder--divider {
  aspect-ratio: 1212 / 76;
  background: #c8d4e2;
  max-width: 1080px;
  margin: 0 auto;
}

.img-placeholder--qa-title {
  aspect-ratio: 1337 / 198;
  background: transparent;
  color: #667;
}

.hero-img-placeholder {
  aspect-ratio: 1349 / 798;
}

/* ===== Main Content (70% width) ===== */
.main-content {
  width: 70%;
  margin: 0 auto;
}

/* ===== Header ===== */
.header-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px;
  background: var(--white);
  z-index: 999;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow 0.3s;
  height: 108px;
}

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

/* Header Top Bar */
.header-top {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  height: 50%;
}

.header-top-inner {
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.logo img {
  height: 70%;
  width: auto;
  object-fit: contain;
}

.logo-img-placeholder {
  width: 44px;
  height: 44px;
  background: rgba(200, 215, 230, 0.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #8899aa;
}

.logo-text {
  font-family: var(--font-ja);
  font-size: clamp(15px, 0.76vw + 11.4px, 22px);
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: 1px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-cta);
  color: var(--white);
  padding: 4px clamp(14px, 1.09vw + 8.8px, 24px);
  border-radius: 50px;
  font-size: clamp(12px, 0.43vw + 9.9px, 16px);
  font-weight: 700;
  transition: background 0.2s;
  height: 100%;
}

.header-cta-btn:hover {
  background: #e68a00;
}

.phone-icon {
  width: 16px;
  height: 16px;
}

/* Header Combined Nav */
.header-nav-combined {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  height: 50%;
}

.header-nav-combined-inner {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.header-sub-links {
  display: flex;
  align-items: stretch;
  width: 50%;
}

.sub-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-ja);
  font-size: clamp(10px, 0.87vw + 5.8px, 18px);
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 33.333%;
  transition: opacity 0.2s;
  position: relative;
}

.sub-link:hover {
  opacity: 0.85;
}

.sub-link--dark {
  background: #0662ce;
}

.sub-link--mid {
  background: #1e88e5;
}

.sub-link--light {
  background: #7ac8f8;
}

.header-page-links {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  width: 50%;
}

.header-page-links-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  width: 80%;
  height: 100%;
}

.header-page-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 700;
  color: #424242;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.header-page-links a:hover {
  color: var(--primary-blue);
}

.header-page-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.header-page-links a:hover::after {
  transform: scaleX(1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  padding-top: clamp(86px, 2.39vw + 74.5px, 108px);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 20%;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c5d8a8 0%, #d4dfc4 30%, #e0ead0 50%, #dce8e0 70%, #d0e4ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8899aa;
  font-size: 14px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 12px clamp(16px, 1.3vw + 9.7px, 28px) 12px;
  min-height: clamp(180px, 4.35vw + 159.1px, 220px);
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 55%;
  position: relative;
  z-index: 2;
}

/* 実績バッジ */
.hero-badge {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.65vw + 2.9px, 12px);
  margin-bottom: clamp(12px, 0.87vw + 7.8px, 20px);
}

.hero-badge-label {
  background: #1a2744;
  color: var(--white);
  font-size: clamp(11px, 0.98vw + 6.3px, 20px);
  font-weight: 900;
  padding: clamp(2px, 0.65vw - 1.1px, 8px) clamp(8px, 1.3vw + 1.7px, 20px);
  border-radius: 4px;
  letter-spacing: clamp(1px, 0.22vw + 0px, 3px);
}

.hero-badge-arrow {
  color: #1a2744;
  font-size: clamp(12px, 0.65vw + 8.9px, 18px);
}

.hero-badge-stat {
  font-size: clamp(14px, 2.17vw + 3.6px, 34px);
  font-weight: 900;
  color: #1a2744;
  letter-spacing: 1px;
}

.hero-badge-number {
  font-family: var(--font-en);
  font-size: clamp(22px, 3.7vw + 4.2px, 56px);
  font-weight: 800;
  color: var(--orange-cta);
}

/* メインコピー */
.hero-copy {
  border: clamp(2px, 0.11vw + 1.5px, 3px) solid #a8cbef;
  border-radius: 6px;
  padding: clamp(12px, 1.3vw + 5.7px, 24px) clamp(16px, 1.74vw + 7.7px, 32px) clamp(10px, 1.09vw + 4.8px, 20px);
  margin-bottom: 16px;
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  container-type: inline-size;
}

.hero-copy-sub {
  font-size: clamp(14px, 1.52vw + 6.7px, 28px);
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 0;
  line-height: 1.4;
}

.hero-copy-main {
  font-size: 13cqi;
  font-weight: 900;
  color: #1a2744;
  line-height: 1.25;
  letter-spacing: clamp(1px, 0.22vw + 0px, 3px);
  white-space: nowrap;
}

.hero-copy-desc {
  font-size: clamp(12px, 0.65vw + 8.9px, 18px);
  font-weight: 600;
  color: #1a2744;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* 3つの特徴 */
.hero-features {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-feature {
  flex: 1;
  text-align: center;
  padding: clamp(8px, 0.22vw + 6.9px, 10px) clamp(6px, 1.09vw + 0.8px, 16px) clamp(6px, 0.22vw + 4.9px, 8px);
}

.hero-feature + .hero-feature {
  border-left: 2px solid rgba(200, 200, 200, 0.5);
}

.hero-feature-text {
  font-size: clamp(12px, 1.52vw + 4.7px, 26px);
  font-weight: 900;
  color: #1a2744;
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: clamp(0.5px, 0.16vw + 0px, 2px);
}

.hero-feature-icon {
  width: clamp(44px, 8.26vw + 4.4px, 120px);
  height: clamp(44px, 8.26vw + 4.4px, 120px);
  margin: 0 auto;
  object-fit: contain;
}

/* ===== Shared: Illustration Placeholder ===== */
.illust-placeholder {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  background: rgba(200, 215, 230, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8899aa;
  font-size: 12px;
  margin: 0 auto;
}

.illust-placeholder--sm {
  max-width: 120px;
  aspect-ratio: 4 / 3;
}

.illust-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.illust-img--sm {
  max-width: 180px;
}

/* ===== お悩みセクション (1.png) ===== */
.onayami-section {
  background: var(--bg-light);
  padding: var(--section-pad-top) var(--section-pad-h) clamp(24px, 2.61vw + 11.5px, 48px);
}

.onayami-title {
  text-align: center;
  font-size: clamp(20px, 2.61vw + 7.5px, 44px);
  font-weight: 900;
  color: #1a3a6a;
  margin-bottom: clamp(24px, 1.74vw + 15.7px, 40px);
  text-decoration: underline;
  text-decoration-color: #1a3a6a;
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
}

.onayami-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: center;
  justify-items: center;
}

.onayami-bubble {
  background: var(--white);
  border-radius: 50%;
  width: 280px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.onayami-bubble p {
  font-size: clamp(13px, 0.54vw + 10.4px, 18px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.onayami-bold {
  font-weight: 900;
  color: #1a3a6a;
  font-size: clamp(16px, 1.09vw + 10.8px, 26px);
}

.onayami-bold--lg {
  font-size: clamp(18px, 1.96vw + 8.6px, 36px);
}

.onayami-bold--xl {
  font-size: clamp(20px, 2.17vw + 9.6px, 40px);
}

.onayami-illust {
  grid-row: 1 / 3;
  grid-column: 2;
}

.onayami-illust .illust-img {
  max-width: 440px;
}

.onayami-bubble--tl { grid-column: 1; grid-row: 1; }
.onayami-bubble--tr { grid-column: 3; grid-row: 1; }
.onayami-bubble--bl { grid-column: 1; grid-row: 2; }
.onayami-bubble--br { grid-column: 3; grid-row: 2; }

/* ===== セクション区切りバナー (2.png) ===== */
.divider-banner {
  background: var(--white);
  padding: 28px var(--section-pad-h);
  border-bottom: 3px solid var(--primary-blue);
  position: relative;
}

.divider-banner::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 40px solid var(--bg-light);
  z-index: 1;
}

.divider-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.divider-banner-text {
  font-size: clamp(18px, 2.39vw + 6.5px, 40px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.5;
}

.divider-banner-text strong {
  color: var(--primary-blue);
  font-size: clamp(20px, 3.04vw + 5.4px, 48px);
  font-weight: 900;
}

/* ===== 選ばれる3つの理由 (3〜5.png) ===== */
.reasons-section {
  background: var(--white);
  padding: clamp(32px, 1.74vw + 23.7px, 48px) var(--section-pad-h);
}

.reasons-heading {
  text-align: center;
  font-size: clamp(22px, 1.96vw + 12.6px, 40px);
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: clamp(24px, 1.74vw + 15.7px, 40px);
}

.reason-card {
  max-width: 1240px;
  margin: 0 auto clamp(24px, 1.74vw + 15.7px, 40px);
  background: var(--bg-light);
  border-radius: 12px;
  padding: clamp(20px, 1.74vw + 11.7px, 36px) clamp(16px, 2.61vw + 3.5px, 40px);
  display: flex;
  align-items: stretch;
  gap: 24px;
  position: relative;
  overflow: visible;
}

.reason-card:last-child {
  margin-bottom: 0;
}

.reason-card-text {
  flex: 1;
  min-width: 0;
}

.reason-heading-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.reason-number-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.reason-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
}

.reason-number {
  font-family: var(--font-en);
  font-size: clamp(36px, 1.52vw + 28.7px, 50px);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.reason-title {
  font-size: clamp(18px, 2.39vw + 6.5px, 40px);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1;
}

.reason-subtitle {
  font-size: clamp(15px, 1.63vw + 7.2px, 30px);
  font-weight: 900;
  color: var(--orange-cta);
  margin-bottom: 16px;
}

.reason-body {
  font-size: clamp(14px, 0.33vw + 12.4px, 17px);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.reason-body:last-child {
  margin-bottom: 0;
}

.reason-body strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.reason-card-illust {
  flex-shrink: 0;
  width: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-right: -50px;
  margin-bottom: -36px;
}

.reason-card-illust .illust-img {
  max-width: 280px;
  filter: drop-shadow(4px 6px 12px rgba(0, 0, 0, 0.1));
}

/* ===== 代表経歴 (6.png) ===== */
.profile-section {
  background: var(--white);
  padding: 0 0 clamp(40px, 2.17vw + 29.6px, 60px);
  position: relative;
}

.profile-heading {
  text-align: center;
  font-size: clamp(22px, 1.52vw + 14.7px, 36px);
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, #3a6cb5 0%, #5a9ae5 100%);
  padding: 12px 40px;
  margin-bottom: 40px;
}

.profile-layout {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.profile-photo {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-top: -60px;
  margin-bottom: -40px;
  margin-left: -20px;
}

.profile-photo img {
  max-width: clamp(220px, 21.74vw + 115.7px, 420px);
  border-radius: 0;
  filter: drop-shadow(6px 8px 16px rgba(0, 0, 0, 0.25));
}

.profile-card {
  flex: 1;
  background: var(--bg-light);
  border-radius: 8px;
  padding: clamp(20px, 1.3vw + 13.7px, 32px) clamp(16px, 2.17vw + 5.6px, 36px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  color: var(--text-heading);
}

.profile-name {
  font-size: clamp(18px, 1.52vw + 10.7px, 32px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-heading);
  text-align: center;
}

.profile-specialty {
  font-size: clamp(14px, 1.3vw + 7.7px, 26px);
  font-weight: 700;
  margin-left: 16px;
}

.profile-history {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.profile-history td {
  padding: clamp(3px, 0.33vw + 1.4px, 6px) clamp(8px, 0.87vw + 3.8px, 16px) clamp(3px, 0.33vw + 1.4px, 6px) 0;
  font-size: clamp(12px, 0.65vw + 8.9px, 18px);
  line-height: 1.6;
  vertical-align: top;
  color: var(--text-body);
}

.profile-history td:first-child {
  white-space: nowrap;
  font-weight: 700;
  width: clamp(80px, 3.26vw + 64.4px, 110px);
}

.profile-note {
  font-size: clamp(12px, 0.43vw + 9.9px, 16px);
  line-height: 1.6;
  color: var(--text-body);
}

/* ===== 実績テーブル (7.png) ===== */
.results-section {
  background: var(--bg-light);
  padding: clamp(16px, 0.87vw + 11.8px, 24px) var(--section-pad-h);
  text-align: center;
}

.results-heading {
  text-align: center;
  font-size: clamp(20px, 1.09vw + 14.8px, 30px);
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.results-table-wrap {
  max-width: 1240px;
  margin: 0 auto;
  overflow-x: auto;
  text-align: left;
  background: var(--white);
  border-radius: clamp(8px, 0.43vw + 5.9px, 12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: clamp(4px, 1.3vw - 2.3px, 16px);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(11px, 0.54vw + 8.4px, 16px);
}

.results-table thead {
  background: #2a4a7a;
  color: var(--white);
}

.results-table th {
  padding: clamp(4px, 0.11vw + 3.5px, 5px) clamp(6px, 0.43vw + 3.9px, 10px);
  font-weight: 700;
  text-align: left;
}

.results-table td {
  padding: clamp(3px, 0.16vw + 2.2px, 4.5px) clamp(6px, 0.43vw + 3.9px, 10px);
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  line-height: 1.3;
}

.results-table tbody tr:nth-child(even) {
  background: #f8f9fc;
}

.results-table th,
.results-table td {
  text-align: center;
  border-right: 1px solid #ddd;
}

.results-table th:last-child,
.results-table td:last-child {
  border-right: none;
}

.results-table thead th {
  border-right-color: rgba(255, 255, 255, 0.3);
}

.results-table thead th:last-child {
  border-right: none;
}

.results-highlight {
  color: #c0392b;
  font-weight: 700;
}

/* ===== 顧問契約 料金表 (8.png) ===== */
.pricing-section {
  background: var(--white);
  padding: clamp(16px, 0.87vw + 11.8px, 24px) clamp(8px, 1.3vw + 1.7px, 20px) 12px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  background: linear-gradient(135deg, #3a6cb5 0%, #5a9ae5 100%);
  padding: 0 clamp(12px, 3.04vw + 2.4px, 40px);
  border-radius: 4px;
}

.pricing-trophy {
  flex-shrink: 0;
  margin-right: -20px;
  z-index: 0;
  align-self: flex-end;
}

.pricing-trophy img {
  width: clamp(60px, 6.52vw + 28.7px, 120px);
}

.pricing-title {
  font-size: clamp(20px, 1.96vw + 10.6px, 38px);
  font-weight: 900;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.pricing-note-top {
  font-size: 14px;
  color: #ffd700;
  font-weight: 700;
}

.pricing-cards {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 20px;
}

.pricing-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.pricing-card--featured {
  z-index: 1;
}

.pricing-card-head,
.pricing-card-price,
.pricing-card-body {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pricing-card-icon {
  text-align: center;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: -50px;
  margin-top: -45px;
}

.pricing-card-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.pricing-card--featured .pricing-card-icon img {
  width: 100px;
  height: 100px;
}

.pricing-card-head {
  padding: 8px 16px;
  text-align: center;
  color: var(--white);
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-top: 2px solid #ddd;
}

.pricing-card--featured .pricing-card-head {
  border-color: var(--primary-blue);
  border-width: 2px;
}

.pricing-card-head h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}

.pricing-asterisk {
  font-size: 12px;
  font-weight: 400;
}

.pricing-card-head--silver {
  background: linear-gradient(135deg, #8e9eaf 0%, #b0bec5 100%);
}

.pricing-card-head--blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.pricing-card-head--gold {
  background: linear-gradient(135deg, #c8a84e 0%, #e6c75a 100%);
}

.pricing-card-desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

.pricing-card-price {
  text-align: center;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  border-bottom: 2px solid #eee;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
}

.pricing-card--featured .pricing-card-price {
  border-left: 2px solid var(--primary-blue);
  border-right: 2px solid var(--primary-blue);
}

.pricing-card-price strong {
  font-family: var(--font-en);
  font-size: clamp(32px, 1.09vw + 26.8px, 42px);
  font-weight: 800;
  color: var(--primary-blue);
}

.pricing-card-body {
  padding: 12px 20px 12px;
  flex: 1;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.pricing-card--featured .pricing-card-body {
  border-left: 2px solid var(--primary-blue);
  border-right: 2px solid var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
}

.pricing-card-body-title {
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 12px;
  border: 1px solid var(--primary-blue);
  padding: 4px;
  border-radius: 4px;
}

.pricing-card-body ul {
  list-style: none;
  padding: 0;
}

.pricing-card-body li {
  font-size: 15px;
  line-height: 1.4;
  padding: 2px 0 2px 20px;
  position: relative;
  color: var(--text-body);
}

.pricing-card-body li::before {
  content: "☐";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 12px;
}

.pricing-footnote {
  max-width: 1080px;
  margin: 16px auto 0;
  font-size: 12px;
  color: #888;
  text-align: left;
}

/* ===== ベンチャー産業医のこだわり タイトル (9.png) ===== */
.kodawari-title-section {
  background: var(--bg-light);
  padding: clamp(32px, 0.87vw + 27.8px, 40px) var(--section-pad-h) 16px;
  text-align: center;
}

.kodawari-title {
  font-size: clamp(22px, 2.61vw + 9.5px, 46px);
  font-weight: 900;
  color: #1a3a6a;
  margin-bottom: 16px;
}

.kodawari-title-line {
  width: 60px;
  height: 3px;
  background: var(--light-blue);
  margin: 0 auto;
}

/* ===== こだわり詳細カード (10〜13.png) ===== */
.kodawari-section {
  background: var(--bg-light);
  padding: 16px var(--section-pad-h) clamp(32px, 0.87vw + 27.8px, 40px);
}

.kodawari-card {
  max-width: 1240px;
  margin: 0 auto clamp(20px, 4.35vw - 0.9px, 60px);
  padding: clamp(20px, 1.74vw + 11.7px, 36px) clamp(16px, 2.61vw + 3.5px, 40px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
}

.kodawari-card:last-child {
  margin-bottom: 0;
}

.kodawari-card-header {
  display: flex;
  align-items: flex-start;
  gap: clamp(4px, 0.43vw + 1.9px, 8px);
  margin-bottom: 24px;
}

.kodawari-number {
  font-family: var(--font-en);
  font-size: clamp(36px, 6.3vw + 5.7px, 94px);
  font-weight: 800;
  color: #d0dff0;
  line-height: 1;
  flex-shrink: 0;
}

.kodawari-card-title {
  font-size: clamp(17px, 2.07vw + 7.1px, 36px);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.3;
}

.kodawari-card-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.kodawari-card-text {
  flex: 1;
  min-width: 0;
}

.kodawari-card-body {
  font-size: clamp(14px, 0.33vw + 12.4px, 17px);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.kodawari-card-body:last-child {
  margin-bottom: 0;
}

.kodawari-card-body strong {
  color: var(--orange-cta);
  font-weight: 700;
}

.kodawari-card-illust {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kodawari-card-illust .illust-img {
  max-width: 300px;
  filter: drop-shadow(4px 6px 12px rgba(0, 0, 0, 0.1));
}

/* ===== 契約企業様の声 (14.png) ===== */
.voices-section {
  background: #1a3a6a;
  padding: 60px 20px;
  color: var(--white);
}

.voices-heading {
  text-align: center;
  font-size: clamp(22px, 1.74vw + 13.7px, 38px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: clamp(24px, 1.3vw + 17.7px, 36px);
}

.voices-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.voice-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-dark);
}

.voice-card-photo {
  width: 100%;
}

.voice-card-photo img {
  width: 100%;
  display: block;
}

.voice-card-info {
  padding: 16px 20px 8px;
}

.voice-meta {
  width: 100%;
  border-collapse: collapse;
}

.voice-meta td {
  font-size: 13px;
  padding: 2px 0;
  color: var(--text-body);
}

.voice-card-text {
  padding: 8px 20px 20px;
}

.voice-card-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ===== 契約企業様の声 個別 (15〜17.png) ===== */
.voice-detail-section {
  background: #2a4a7a;
  padding: var(--section-pad-top) var(--section-pad-h);
  color: var(--white);
}

.voice-detail-card {
  max-width: 1240px;
  margin: 0 auto clamp(20px, 2.17vw + 9.6px, 40px);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  padding: clamp(20px, 1.3vw + 13.7px, 32px) clamp(16px, 2.17vw + 5.6px, 36px);
}

.voice-detail-card:last-child {
  margin-bottom: 0;
}

.voice-detail-company {
  text-align: center;
  font-size: clamp(20px, 0.87vw + 15.8px, 28px);
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: clamp(16px, 1.3vw + 9.7px, 28px);
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: clamp(10px, 0.43vw + 7.9px, 14px);
}

.voice-detail-est {
  font-size: clamp(13px, 0.33vw + 11.4px, 16px);
  font-weight: 500;
  color: var(--text-body);
  margin-left: 8px;
}

.voice-detail-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.voice-detail-photo {
  flex-shrink: 0;
  width: 280px;
}

.voice-detail-content {
  flex: 1;
}

.voice-detail-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}

.voice-detail-meta p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.voice-detail-body p {
  font-size: clamp(15px, 0.22vw + 14px, 17px);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ===== お問い合わせの流れ (18.png) ===== */
.flow-section {
  background: var(--bg-light);
  padding: clamp(32px, 1.74vw + 23.7px, 48px) var(--section-pad-h);
  text-align: center;
}

.flow-lead {
  font-size: clamp(15px, 0.98vw + 10.3px, 24px);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 32px;
  line-height: 1.5;
}

.flow-lead strong {
  color: var(--primary-blue);
  font-size: clamp(20px, 1.3vw + 13.7px, 32px);
  font-weight: 900;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.flow-step {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
}

.flow-step-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.flow-step-icon img {
  width: clamp(100px, 10.87vw + 47.8px, 200px);
  height: auto;
}

.flow-step-label {
  font-size: clamp(16px, 0.65vw + 12.9px, 22px);
  font-weight: 700;
  color: var(--text-heading);
}

.flow-step-arrow {
  font-size: clamp(20px, 0.87vw + 15.8px, 28px);
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: -20px;
}

.flow-note {
  font-size: clamp(14px, 1.09vw + 8.8px, 24px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.5;
}

.flow-note strong {
  color: var(--primary-blue);
  font-size: clamp(18px, 1.52vw + 10.7px, 32px);
  font-weight: 900;
}

/* ===== 従業員の悩み (19.png) ===== */
.nayami-spot-section {
  background: var(--bg-light);
  padding: var(--section-pad-top) var(--section-pad-h) clamp(24px, 2.61vw + 11.5px, 48px);
}

.nayami-spot-title {
  text-align: center;
  font-size: clamp(18px, 2.83vw + 4.4px, 44px);
  font-weight: 900;
  color: #1a3a6a;
  margin-bottom: 36px;
}

.nayami-spot-grid {
  max-width: 1240px;
  margin: 0 auto 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: center;
  justify-items: center;
}

.nayami-spot-bubble {
  background: var(--white);
  border-radius: 50%;
  width: 300px;
  height: 200px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nayami-spot-bubble p {
  font-size: clamp(16px, 0.54vw + 13.4px, 21px);
  color: var(--text-dark);
  line-height: 1.6;
}

.nayami-spot-bubble strong {
  color: #1a3a6a;
  font-weight: 900;
  font-size: clamp(20px, 0.87vw + 15.8px, 28px);
}

.nayami-spot-bubble--top { grid-column: 2; grid-row: 1; }
.nayami-spot-bubble--bl { grid-column: 1; grid-row: 2; }
.nayami-spot-bubble--br { grid-column: 3; grid-row: 2; }

.nayami-spot-illust {
  grid-row: 2;
  grid-column: 2;
}

.nayami-spot-illust .illust-img {
  max-width: 440px;
}

/* ===== スポット相談 料金 (20.png) ===== */
.spot-price-section {
  background: var(--white);
  padding: var(--section-pad-top) var(--section-pad-h);
  position: relative;
}

.spot-price-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 40px solid var(--bg-light);
  z-index: 1;
}

.spot-price-heading {
  text-align: center;
  font-size: clamp(20px, 1.74vw + 11.7px, 36px);
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 28px;
}

.spot-price-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  margin: 12px auto 0;
  border-radius: 2px;
}

.spot-price-card {
  max-width: 1240px;
  margin: 0 auto 24px;
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 16px 24px;
}

.spot-price-tokuten {
  color: var(--primary-blue);
  font-size: 22px;
  font-weight: 900;
  text-decoration: underline;
  margin-bottom: 4px;
}

.spot-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.spot-price-old {
  font-size: clamp(18px, 0.65vw + 14.9px, 24px);
  color: #888;
  text-decoration: line-through;
}

.spot-price-label {
  font-size: clamp(28px, 0.87vw + 23.8px, 36px);
  font-weight: 900;
  color: #c0392b;
}

.spot-price-new {
  font-size: clamp(36px, 2.61vw + 23.5px, 60px);
  font-weight: 900;
  color: #c0392b;
}

.spot-price-tax {
  font-size: 18px;
  color: #c0392b;
}

.spot-price-note {
  font-size: 16px;
  color: #888;
  text-align: right;
  margin: 0;
}

.spot-points {
  list-style: none;
  padding: 0;
  max-width: 1240px;
  margin: 0 auto;
}

.spot-points li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(15px, 0.33vw + 13.4px, 18px);
  color: var(--text-body);
  line-height: 1.7;
  padding: clamp(10px, 0.22vw + 8.9px, 12px) clamp(14px, 0.65vw + 10.9px, 20px);
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5ead0 100%);
  border-radius: 8px;
  border-left: 4px solid #c8a84e;
}

.spot-point-label {
  display: inline-block;
  font-family: var(--font-en);
  background: transparent;
  color: var(--text-heading);
  font-size: clamp(16px, 0.43vw + 13.9px, 20px);
  font-weight: 700;
  padding: clamp(3px, 0.11vw + 2.5px, 4px) clamp(10px, 0.65vw + 6.9px, 16px);
  border: 2px solid #c8a84e;
  border-radius: 3px;
  white-space: nowrap;
  margin-right: 10px;
}

/* ===== セミナー紹介 (21.png) ===== */
.seminar-intro-section {
  background: var(--bg-light);
  padding: var(--section-pad-top) var(--section-pad-h) clamp(32px, 1.74vw + 23.7px, 48px);
}

.seminar-intro-title {
  text-align: center;
  font-size: clamp(17px, 1.85vw + 8.1px, 34px);
  font-weight: 900;
  color: #1a3a6a;
  margin-bottom: 32px;
}

.seminar-intro-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

.seminar-intro-bubbles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seminar-intro-bubble {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(20px, 0.87vw + 15.8px, 28px) clamp(24px, 0.87vw + 19.8px, 32px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.seminar-intro-bubble p {
  font-size: clamp(16px, 0.43vw + 13.9px, 20px);
  color: #666;
  line-height: 1.7;
}

.seminar-intro-bubble strong {
  color: #1a3a6a;
  font-weight: 900;
  font-size: clamp(18px, 0.65vw + 14.9px, 24px);
}

.seminar-intro-illust {
  flex-shrink: 0;
  width: 320px;
}

.seminar-intro-illust .illust-img {
  max-width: 360px;
  filter: drop-shadow(4px 6px 12px rgba(0, 0, 0, 0.1));
}

/* ===== セミナー内容一覧 (22.png) ===== */
.seminar-price-section {
  background: var(--white);
  padding: var(--section-pad-top) var(--section-pad-h);
  position: relative;
}

.seminar-price-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 40px solid var(--bg-light);
  z-index: 1;
}

.seminar-price-heading {
  text-align: center;
  font-size: clamp(20px, 1.74vw + 11.7px, 36px);
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 28px;
}

.seminar-price-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  margin: 12px auto 0;
  border-radius: 2px;
}

.seminar-price-card {
  max-width: 1240px;
  margin: 0 auto;
}

.seminar-themes {
  width: 100%;
  border-collapse: collapse;
}

.seminar-themes td {
  padding: 10px 16px;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  color: var(--text-body);
}

.seminar-theme-label {
  font-weight: 900;
  color: var(--primary-blue);
  white-space: nowrap;
  width: 80px;
}

/* ===== Image Sections ===== */
.image-section {
  width: 100%;
  padding: 0 20px;
}

.image-section img {
  max-width: 1240px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* ===== Section Dividers ===== */
.section-divider {
  padding: 40px 20px 20px;
}

/* ===== CTA Band ===== */
.cta-band {
  padding: clamp(20px, 0.43vw + 17.9px, 24px) var(--section-pad-h);
  background: var(--white);
}

.cta-band-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.cta-btn {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px clamp(16px, 2.61vw + 3.5px, 40px);
  border-radius: 50px;
  font-size: clamp(14px, 0.65vw + 10.9px, 20px);
  font-weight: 700;
  line-height: 1.3;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cta-btn--outline {
  background: var(--white);
  color: var(--text-dark);
  border: 3px solid #bbbbbb;
}

.cta-btn--outline:hover {
  border-color: #999999;
}

.cta-btn--orange {
  background: var(--orange-button);
  color: var(--white);
  border: none;
  font-size: 16px;
  flex-direction: column;
  gap: 2px;
}

.cta-btn--orange:hover {
  background: #e68830;
}

.cta-btn--orange strong {
  display: block;
  font-size: clamp(18px, 0.87vw + 13.8px, 26px);
  font-weight: 900;
}

/* ===== Q&A Section ===== */
.qa-section {
  background: var(--bg-light);
  padding: var(--section-pad-top) var(--section-pad-h) clamp(48px, 3.48vw + 31.3px, 80px);
}

.qa-heading {
  text-align: center;
  font-size: clamp(22px, 1.52vw + 14.7px, 36px);
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, #3a6cb5 0%, #5a9ae5 100%);
  max-width: 500px;
  margin: 0 auto clamp(24px, 1.74vw + 15.7px, 40px);
  padding: clamp(8px, 0.43vw + 5.9px, 12px) clamp(20px, 2.17vw + 9.6px, 40px);
  border-radius: 4px;
}

.qa-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.qa-list {
  max-width: 900px;
  margin: 0 auto;
}

.qa-item {
  margin-bottom: 24px;
  background: var(--white);
  border-radius: 8px;
  padding: clamp(16px, 0.43vw + 13.9px, 20px) clamp(16px, 0.87vw + 11.8px, 24px);
}

.qa-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 0.65vw + 6.9px, 16px);
}

.qa-row--q {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.qa-circle {
  flex-shrink: 0;
  width: clamp(28px, 0.87vw + 23.8px, 36px);
  height: clamp(28px, 0.87vw + 23.8px, 36px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: clamp(12px, 0.43vw + 9.9px, 16px);
  font-weight: 700;
  line-height: 1;
}

.qa-circle--q {
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  background: var(--white);
}

.qa-circle--a {
  background: var(--accent-blue);
  color: var(--white);
  border: 2px solid var(--accent-blue);
}

.qa-text {
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.43vw + 10.9px, 17px);
  line-height: 1.8;
  color: var(--text-dark);
  padding-top: 4px;
}

/* ===== Contact Section ===== */
.contact-section {
  position: relative;
  padding: clamp(40px, 4.35vw + 19.1px, 80px) var(--section-pad-h);
  background: #2c3e50;
  background-size: cover;
  background-position: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: var(--font-ja);
  font-size: clamp(24px, 1.74vw + 15.7px, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-subtitle {
  font-family: var(--font-ja);
  font-size: clamp(16px, 0.87vw + 11.8px, 24px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: clamp(24px, 0.87vw + 19.8px, 32px);
}

.contact-form {
  text-align: left;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.required {
  color: #ff4444;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: clamp(10px, 0.22vw + 8.9px, 12px) clamp(14px, 0.22vw + 12.9px, 16px);
  border: none;
  border-radius: 4px;
  font-family: var(--font-ja);
  font-size: 16px; /* iOS zoom防止のため16px固定 */
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(6, 98, 206, 0.3);
}

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  padding: clamp(14px, 0.22vw + 12.9px, 16px);
  background: var(--orange-cta);
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-family: var(--font-ja);
  font-size: clamp(16px, 0.22vw + 14.9px, 18px);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: #e68a00;
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ハニーポット（bot対策） */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* 送信完了メッセージ */
.form-success {
  text-align: center;
  padding: 40px 20px;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 2;
}

/* ===== Company Info Section ===== */
.company-section {
  padding: clamp(40px, 2.17vw + 29.6px, 60px) 20px;
  background: var(--white);
}

.company-inner {
  max-width: 800px;
  margin: 0 auto;
}

.company-heading {
  font-size: clamp(20px, 0.43vw + 17.9px, 24px);
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: clamp(24px, 0.87vw + 19.8px, 32px);
}

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

.company-table tr {
  border-bottom: 1px solid var(--border-color);
}

.company-table th,
.company-table td {
  padding: clamp(12px, 0.43vw + 9.9px, 16px) clamp(16px, 0.43vw + 13.9px, 20px);
  font-size: clamp(13px, 0.43vw + 10.9px, 17px);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.company-table th {
  width: clamp(80px, 4.35vw + 59.1px, 120px);
  font-weight: 700;
  color: var(--text-heading);
  background: var(--white);
  white-space: nowrap;
}

.company-table td {
  color: var(--text-body);
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-color);
  height: clamp(80px, 4.35vw + 59.1px, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer-copy {
  font-size: clamp(12px, 0.22vw + 11px, 14px);
  color: var(--text-dark);
}

/* ==========================================================
   Responsive: レイアウト変更のみ（フォント・パディングはclamp()で処理済み）
   ========================================================== */

/* ===== 768px (Tablet): 構造変更 ===== */
@media (max-width: 768px) {
  .main-content {
    width: 100%;
  }

  /* Header: 全幅化 */
  .header-backdrop {
    display: none;
  }

  .header {
    width: 100%;
    left: 0;
    transform: none;
    height: auto;
  }

  .header-top {
    height: auto;
  }

  .header-top-inner {
    height: 56px;
  }

  .logo img {
    height: 40px;
  }

  .header-cta-btn {
    height: 36px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-nav-combined {
    height: auto;
  }

  .header-nav-combined-inner {
    height: 48px;
  }

  .header-page-links { display: none; width: auto; }
  .header-page-links-inner { width: 100%; }
  .header-sub-links { flex: 1; width: auto; }

  .header-nav-combined.open .header-page-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
    gap: 0;
    margin-left: 0;
    padding: 0;
  }

  .header-nav-combined.open .header-page-links a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
  }

  .header-nav-combined.open .header-page-links a::after {
    display: none;
  }

  /* Hero: テキスト幅拡大・写真位置調整 */
  .hero-text {
    max-width: 60%;
  }

  .hero-bg img {
    object-position: 30% 20%;
  }

  /* お悩み: 2列化 */
  .onayami-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .onayami-illust { grid-column: 1 / 3; grid-row: 2; }
  .onayami-bubble--tl { grid-column: 1; grid-row: 1; }
  .onayami-bubble--tr { grid-column: 2; grid-row: 1; }
  .onayami-bubble--bl { grid-column: 1; grid-row: 3; }
  .onayami-bubble--br { grid-column: 2; grid-row: 3; }
  .onayami-bubble { width: 100%; max-width: 200px; height: auto; min-height: 140px; }

  /* 区切りバナー: 縦積み */
  .divider-banner-inner { flex-direction: column; gap: 16px; text-align: center; }

  /* 理由カード: 縦積み */
  .reason-card {
    flex-direction: column;
  }
  .reason-card-illust {
    width: 160px;
    margin: 0 auto;
    margin-right: 0;
    margin-bottom: 0;
  }

  /* 代表経歴: 縦積み */
  .profile-layout {
    flex-direction: column;
    align-items: center;
  }
  .profile-photo {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .profile-card {
    text-align: center;
  }
  .profile-specialty {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  /* 料金表: 1列化 */
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  .pricing-card--featured { transform: none; }
  .pricing-header { flex-direction: column; }
  .pricing-trophy { margin-right: 0; }

  /* こだわりカード: 縦積み */
  .kodawari-card-content {
    flex-direction: column;
  }
  .kodawari-card--reverse .kodawari-card-content {
    flex-direction: column;
  }
  .kodawari-card-illust { width: 200px; margin: 0 auto; }

  /* CTA: 縦積み */
  .cta-band-inner {
    flex-direction: column;
    align-items: center;
  }
  .cta-btn {
    max-width: 100%;
    width: 100%;
  }

  /* 企業の声: 1列 */
  .voices-grid { grid-template-columns: 1fr; max-width: 500px; }
  .voice-detail-inner { flex-direction: column; }
  .voice-detail-photo { width: 100%; max-width: 300px; margin: 0 auto; }

  /* 従業員の悩み: 再配置 */
  .nayami-spot-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .nayami-spot-bubble--top { grid-column: 1 / 3; grid-row: 1; }
  .nayami-spot-illust { grid-column: 1 / 3; grid-row: 2; }
  .nayami-spot-bubble--bl { grid-column: 1; grid-row: 3; }
  .nayami-spot-bubble--br { grid-column: 2; grid-row: 3; }
  .nayami-spot-bubble { width: 100%; max-width: 240px; height: auto; min-height: 160px; }

  /* セミナー: 縦積み */
  .seminar-intro-inner { flex-direction: column; }
  .seminar-intro-illust { width: 220px; margin: 0 auto; }

  /* Q&A見出し: 全幅 */
  .qa-heading { max-width: 100%; }

  /* 流れ: アイコン縮小 */
  .flow-note br { display: none; }
}

/* ===== 480px (Mobile): 構造変更 ===== */
@media (max-width: 480px) {
  /* Header: 高さ縮小 */
  .header-top-inner {
    height: 46px;
    padding: 0 12px;
  }

  .header-nav-combined-inner { height: 40px; }

  .header-nav-combined.open .header-page-links {
    top: 40px;
  }

  /* Hero: テキスト幅さらに拡大・写真位置調整 */
  .hero-text {
    max-width: 65%;
  }

  .hero-bg img {
    object-position: 40% 20%;
  }

  /* お悩み: 1列化・角丸 */
  .onayami-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .onayami-illust { grid-column: 1; grid-row: 3; }
  .onayami-bubble--tl { grid-column: 1; grid-row: 1; }
  .onayami-bubble--tr { grid-column: 1; grid-row: 2; }
  .onayami-bubble--bl { grid-column: 1; grid-row: 4; }
  .onayami-bubble--br { grid-column: 1; grid-row: 5; }
  .onayami-bubble {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    border-radius: 16px;
    padding: 16px 20px;
  }
  .onayami-illust .illust-img { max-width: 240px; }

  /* 理由カード: イラスト縮小 */
  .reason-card-illust { width: 140px; }

  /* お問い合わせ流れ: 縦積み */
  .flow-steps {
    flex-direction: column;
    gap: 12px;
  }
  .flow-step { width: 100%; max-width: 280px; }
  .flow-step-arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }

  /* 従業員の悩み: 1列化・角丸 */
  .nayami-spot-grid {
    grid-template-columns: 1fr;
  }
  .nayami-spot-bubble--top { grid-column: 1; }
  .nayami-spot-illust { grid-column: 1; }
  .nayami-spot-bubble--bl { grid-column: 1; }
  .nayami-spot-bubble--br { grid-column: 1; }
  .nayami-spot-bubble {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    height: auto;
    min-height: auto;
    padding: 16px 20px;
  }
  .nayami-spot-illust .illust-img { max-width: 240px; }

  /* こだわりカード: イラスト縮小 */
  .kodawari-card-illust { width: 160px; }
  .kodawari-card-illust .illust-img { max-width: 160px; }

  /* 企業の声: メタ縦積み */
  .voice-detail-meta { flex-direction: column; gap: 4px; }
}
