/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Noto Sans JP', sans-serif; color: #1a1a1a; margin: 0; padding: 0; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --navy: #0d1f4e;
  --gray: #444;
  --navy-mid: #1a3a7a;
  --red: #e63329;
  --yellow: #f5c518;
  --light-blue: #e8f4fd;
  --light-blue2: #d6ecfa;
  --white: #ffffff;
}

/* ===== HEADER ===== */
.site-header { background: var(--navy); padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-img { height: 40px; }
.header-tel { display: flex; align-items: center; gap: 8px; color: #fff; }
.tel-icon { width: 20px; height: 20px; }
.tel-label { font-size: 12px; opacity: 0.8; }
.tel-number { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.tel-hours { font-size: 11px; opacity: 0.7; }
.btn-cta-header { background: var(--red); color: #fff !important; border: none; padding: 10px 20px; border-radius: 30px; font-weight: 700; font-size: 14px; white-space: nowrap; transition: opacity 0.2s; display: inline-block; }
.btn-cta-header:hover { opacity: 0.85; }

/* ===== HERO (PC Base) ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: url('assets/hero_bg.jpg') center/cover no-repeat;
  background-color: #0a1840;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 64, 0.65);
  z-index: 0;
}
.hero-bg-overlay { display: none; }
.hero-inner-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  text-align: center;
}
.hero-mainvis-block {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto 32px;
}
.hero-mainvis-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-cta-overlay {
  position: absolute;
  left: 50%;
  top: 68%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42%;
  max-width: 480px;
}
.hero-cta-link {
  display: block;
  width: 100%;
  transition: transform 0.2s, opacity 0.2s;
}
.hero-cta-link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.hero-cta-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-badges-wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.hero-medals {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  width: 100%;
}
.hero-medal-item {
  flex: 1 1 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
}
.hero-medal-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero-illust, .hero-content, .hero-title-img, .hero-badges-img { display: none; }
.partner-badge-img { height: 64px; width: auto; margin-bottom: 16px; }

/* ===== PARTNERS & MARQUEE ===== */
.section-partners { background: #fff; border-bottom: 1px solid #eee; padding: 24px 0; overflow: hidden; }
.partners-label { font-size: 13px; color: #888; margin-bottom: 16px; }
.marquee-wrap { width: 100%; overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(to right, #fff 0%, transparent 100%); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, #fff 0%, transparent 100%); }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-inner { display: flex; align-items: center; gap: 32px; padding: 0 16px; }
.partner-logo-item {
  flex-shrink: 0; width: 200px; height: 80px; border: 1px solid #d0d0d0; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-logo-item:hover { border-color: #aac0e0; box-shadow: 0 2px 8px rgba(13,31,78,0.1); }
.partner-logo-img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 8px; }
.logo-placeholder { display: inline-block; background: #f0f0f0; color: #999; padding: 10px 28px; border-radius: 6px; font-size: 13px; white-space: nowrap; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.section-en-bg, .section-en-bg-light {
  display: block; font-size: 9vw; font-weight: 900; letter-spacing: 0.03em; line-height: 1; white-space: nowrap; overflow: visible; pointer-events: none; user-select: none; margin-bottom: -0.7em; position: relative; z-index: 0; text-align: right;
}
.section-en-bg { color: rgba(13,31,78,0.06); }
.section-en-bg-light { color: rgba(255,255,255,0.06); }

.section-heading { position: relative; z-index: 1; padding-left: 22px; border-left: 0; margin-bottom: 20px; display: inline-block; }
.section-heading::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--red) 35%, var(--navy) 35%, var(--navy) 100%); border-radius: 2px;
}
.section-heading-label, .section-heading-label-yellow { display: block; font-size: 2.4vw; font-weight: 700; margin-bottom: 2px; line-height: 1.4; }
.section-heading-label { color: var(--red); }
.section-heading-label-yellow { color: var(--yellow); }
.section-heading-title, .section-heading-title-light { display: block; font-size: 3.2vw; font-weight: 900; line-height: 1.3; white-space: nowrap; margin: 0; }
.section-heading-title { color: var(--navy); }
.section-heading-title-light { color: #fff; }
.section-heading[style*="yellow"]::before {
  background: linear-gradient(to bottom, var(--yellow) 0%, var(--yellow) 35%, #fff 35%, #fff 100%);
}
.section-desc { font-size: 15px; color: #555; line-height: 1.8; position: relative; z-index: 1; }
.section-desc-light { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.8; position: relative; z-index: 1; }

/* 旧クラス互換 */
.section-header { margin-bottom: 48px; }
.section-label-red { font-size: 18px; font-weight: 700; color: var(--red); margin-bottom: 4px; }
.section-label-yellow { font-size: 18px; font-weight: 700; color: var(--yellow); margin-bottom: 4px; }
.section-title-main { font-size: 32px; font-weight: 900; color: var(--navy); margin-bottom: 16px; }

/* ===== PROBLEMS ===== */
.section-problems { background: var(--light-blue); }
.problem-card { background: #fff; border-radius: 12px; padding: 28px 24px 20px; height: 100%; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #e8edf5; }
.problem-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.problem-icon { width: 64px; height: 64px; flex-shrink: 0; }
.problem-title { font-size: 22px; font-weight: 700; color: var(--navy); margin: 0; line-height: 1.45; }
.problem-text { font-size: 13px; color: #555; line-height: 1.75; margin-bottom: 16px; }
.problem-solve-label { font-size: 13px; font-weight: 700; color: var(--gray); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.problem-diamond { color: var(--navy); font-size: 10px; }
.problem-solve-list { list-style: none; padding: 0; margin: 0 0 12px; border-top: 1px solid #dde4ef; }
.problem-solve-list li { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px dashed #dde4ef; font-size: 13px; color: #333; }
.solve-name { color: #333; }
.solve-count { font-weight: 700; color: var(--navy); }
.problem-tags { font-size: 12px; font-weight: 700; color: var(--navy); margin: 0; line-height: 1.6; }
.problem-tags span{ font-weight: 400;}

/* ===== PHASE (PC Base) ===== */
.phase-container { border: 2px solid #3a75bb; border-radius: 12px; overflow: hidden; background: #fff; margin-bottom: 36px; }
.phase-header { border-bottom: 2px solid #3a75bb; padding: 15px; display: flex; align-items: center; justify-content: center; gap: 15px; }
.phase-header2 { border-bottom: 2px solid #3a75bb; padding: 15px; display: flex; align-items: center; justify-content: center; background: #E6F1FF; gap: 15px; }
.phase-header3 { border-bottom: 2px solid #3a75bb; padding: 15px; display: flex; align-items: center; justify-content: center; background: #084AA6; gap: 15px; }
.phase-badge { border: 2px solid #084AA6; padding: 12px; color: #084AA6; border-radius: 50%; width: 55px; height: 55px; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; font-weight: bold; font-size: 80%; }
.phase-badge2 { border: 2px solid #084AA6; padding: 12px; color: #fff; background: #084AA6; border-radius: 50%; width: 55px; height: 55px; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; font-weight: bold; font-size: 80%; }
.phase-badge3 { border: 2px solid #FFFF59; padding: 12px; color: #084AA6; background: #FFFF59; border-radius: 50%; width: 55px; height: 55px; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; font-weight: bold; font-size: 80%; }
.phase-header-title{ color: #084AA6; margin: 0; padding: 0; }
.phase-header-title3{ color: white; margin: 0; padding: 0; }
.phase-row { display: flex; align-items: stretch; }
.col-inner { padding: 24px 30px 18px; height: 100%; display: flex; flex-direction: column; }
.col-sub-title { font-size: 20px; font-weight: 700; color: #084AA6; margin-bottom: 20px; border-bottom: 2px dotted #084AA6; padding-bottom: 10px; }
.col-check-list { list-style: none; padding: 0; }
.col-check-list li { margin-bottom: 8px; position: relative; padding-left: 18px; }
.col-check-list li::before { content: '☑'; position: absolute; left: 0; color: #e63329; }
.col-img-wrap { margin-top: auto; text-align: center; }
.bg-light-blue { background-color: #f0f7ff; }
.border-end { border-right: 1px dashed #3a75bb !important; }
.price-box { margin-bottom: 25px; }
.price-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.price-label { font-size: 12px; font-weight: 700; color: #0d1f4e; border: 1px solid #0d1f4e; border-radius: 20px; padding: 2px 12px; }
.price-value { font-size: 36px; font-weight: 700; color: #084AA6; }
.price-value small { font-size: 14px; margin-left: 6px; }
.recommend-mini-box { background-color: #0d1f4e; color: #fff; padding: 15px; border-radius: 8px; margin-top: auto; }
.recommend-q { color: #ffeb3b; font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.recommend-a { font-size: 12px; margin: 0; line-height: 1.5; }

/* ===== SERVICES ===== */
.section-services { padding: 80px 0; background-color: #f0f7ff; }
.services-header { margin-bottom: 50px; position: relative; }
.services-en-bg { position: absolute; top: -30px; left: 0; font-size: 80px; font-weight: 900; color: rgba(13, 31, 78, 0.05); white-space: nowrap; z-index: 0; }
.services-heading-wrap { position: relative; z-index: 1; border-left: 5px solid #e63329; padding-left: 20px; }
.services-main-title { font-size: 32px; font-weight: 700; color: #e63329; line-height: 1.4; margin: 0; }
.services-main-title .text-blue { color: #0d1f4e; }
.services-lead { margin-top: 30px; font-size: 14px; color: #333; line-height: 1.6; }
.service-blue-card { background-color: #1a4a9c; border-radius: 8px; padding: 40px 20px; height: 100%; text-align: center; color: #fff; transition: transform 0.3s ease; }
.service-blue-card:hover { transform: translateY(-5px); }
.service-icon-circle { background-color: #fff; width: 140px; height: 140px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.service-icon-circle img { width: 80px; height: auto; }
.service-card-title { font-weight: 700; color: #ffeb3b; margin-bottom: 15px; line-height: 1.3; }
.service-card-text { font-size: 16px; line-height: 1.6; margin: 0; color: rgba(255, 255, 255, 0.9); }

/* ===== FAIL CARDS ===== */
.section-fail { padding: 60px 0; background-color: #f0f7ff; }
.fail-card { background: #fff; border-radius: 12px; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.fail-img-wrap { padding: 30px 20px 0; text-align: center; }
.fail-body { padding: 25px 30px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.fail-title-wrap { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.fail-num { font-size: 64px; font-weight: 900; color: #abc6e3; line-height: 1; }
.fail-title { font-size: 20px; font-weight: 700; color: #0d1f4e; line-height: 1.4; padding-top: 10px; }
.fail-text { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.fail-solution-box { background-color: #e6f2ff; border-radius: 4px; padding: 15px; position: relative; }
.fail-solution-box::before { content: '☑'; position: absolute; left: 12px; top: 15px; color: #3a75bb; font-size: 16px; }
.fail-solution-box p { font-size: 13px; font-weight: 700; color: #3a75bb; margin: 0; padding-left: 25px; line-height: 1.5; }

/* ===== CASE STUDY ===== */
.section-case { padding: 100px 0; background-color: #fff; overflow: hidden; }
.case-watermark { position: absolute; top: -20px; right: 0px; font-size: 140px; font-weight: 900; color: rgba(13, 31, 78, 0.05); line-height: 1; z-index: 0; pointer-events: none; }
.case-header { position: relative; z-index: 1; }
.case-title-wrap { position: relative; padding-left: 60px; }
.case-title-wrap::before {
  content: ''; position: absolute; left: 0; width: 50px; height: 50px;
  background-image: linear-gradient(45deg, transparent 48%, #e63329 48%, #e63329 52%, transparent 52%), linear-gradient(-45deg, transparent 48%, #0d1f4e 48%, #0d1f4e 52%, transparent 52%); background-size: 100% 100%;
}
.case-main-title { font-size: 32px; font-weight: 700; color: #0d1f4e; line-height: 1.4; }
.case-main-title_sp { font-size: 20px; font-weight: 700; color: #0d1f4e; line-height: 1.4; }
.case-sub-lead { font-size: 14px; color: #333; line-height: 1.6; }
.case-content-box { position: relative; z-index: 1; margin-top: 50px; }
.label-red-outline { display: inline-block; border: 1px solid #e63329; color: #e63329; padding: 2px 12px; font-size: 12px; border-radius: 4px; margin-right: 15px; }
.case-category { font-size: 14px; color: #e63329; font-weight: 700; }
.case-catch { font-size: 28px; font-weight: 700; color: #0d1f4e; line-height: 1.3; margin: 20px 0; }
.case-quote { border-left: 3px solid #abc6e3; padding-left: 20px; margin-top: 30px; }
.case-quote p { font-size: 14px; color: #444; line-height: 1.8; margin: 0; }
.text-red-bold { color: #e63329; font-weight: 700; }
.case-image-wrap { background-color: #d1e6ff; border-radius: 8px; overflow: hidden; }
.btn-case-more { display: inline-block; border: 2px solid #0d1f4e; color: #0d1f4e; padding: 10px 50px; border-radius: 30px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; }
.btn-case-more:hover { background-color: #0d1f4e; color: #fff; }

/* ===== USER VOICE ===== */
.section-case-study { padding: 60px 0; background: var(--light-blue); }
.voice-card { background: #fff; border-radius: 12px; padding: 24px; display: flex; gap: 20px; height: 100%; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.voice-img-box { flex-shrink: 0; width: 140px; height: 200px; background-color: #d1e6ff; border-radius: 8px; }
.voice-img-box img{ border-radius: 8px;}
.voice-content { flex-grow: 1; }
.voice-tag { display: inline-flex; border: 1px solid #0d1f4e; border-radius: 4px; overflow: hidden; margin-bottom: 15px; }
.tag-label { background: #fff; color: #0d1f4e; font-size: 12px; font-weight: 700; padding: 2px 15px; border-right: 1px solid #0d1f4e; }
.tag-value { background: #0d1f4e; color: #fff; font-size: 12px; font-weight: 700; padding: 2px 20px; min-width: 120px; text-align: center; }
.voice-title { font-size: 18px; font-weight: 700; color: #0d1f4e; line-height: 1.4; margin-bottom: 15px; }
.voice-text { font-size: 13px; color: #333; line-height: 1.6; margin: 0; }

/* ===== CTA MID (Background & Layout) ===== */
.section-cta-mid {
  background: radial-gradient(ellipse at center top, #1e50a2 0%, #0d1f4e 60%, #08122b 100%);
  padding: 2em 0; overflow: hidden;
}
.cta-btn-link { display: inline-block; transition: transform 0.2s, opacity 0.2s; }
.cta-btn-link:hover { transform: translateY(-3px); opacity: 0.9; }
.cta-btn-img { max-width: 480px; width: 100%; height: auto; display: block; }
.cta-svg-wrap { width: 100%; max-width: 1200px; margin: 2em auto 0; line-height: 0; }
.cta-svg-link { display: block; width: 100%; transition: opacity 0.2s; }
.cta-svg-link:hover { opacity: 0.92; }
.cta-svg-img { width: 100%; height: auto; display: block; }
.cta-mid-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 32px; }
.cta-mid-text-block { flex: 1; min-width: 0; }
.cta-mid-img-block { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.cta-mid-contact-img { max-width: 320px; width: 100%; height: auto; display: block; }
.btn-cta-mid-new {
  display: inline-block; background: var(--red); color: #fff; padding: 18px 56px; border-radius: 40px; font-size: 18px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(230,51,41,0.45); transition: transform 0.2s, box-shadow 0.2s, background 0.2s; white-space: nowrap;
}
.btn-cta-mid-new:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(230,51,41,0.55); background: #c9261d; color: #fff; }
.cta-mid-desc { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 0; line-height: 1.8; }
.cta-arrow { font-size: 20px; margin-left: 6px; vertical-align: middle; }

/* ===== COMPARISON ===== */
.section-comparison { background: #fff; }
.comparison-svg-wrap { width: 100%; overflow: hidden; }
.comparison-svg-img { width: 100%; height: auto; display: block; }
.comparison-outer { position: relative; padding-top: 200px; margin-left: 0; margin-right: 0; overflow: visible; }
.comparison-illust-left { position: absolute; left: -20px; top: 0; z-index: 3; }
.comparison-illust-left img { width: 220px; display: block; }
.comparison-illust-right { position: absolute; right: -20px; top: 0; z-index: 3; }
.comparison-illust-right img { width: 220px; display: block; }
.comparison-speech-bubble { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); z-index: 4; white-space: nowrap; }
.comparison-speech-bubble img { width: 320px; max-width: 100%; display: block; }
.comparison-table-img { position: relative; z-index: 1; }
.comparison-table-img img { width: 100%; display: block; }

/* ===== WHY US ===== */
.section-why-us { background: #F2F8FF; }
.why-us-list { display: flex; flex-direction: row; gap: 24px; align-items: stretch; }
.why-us-item { flex: 1 1 0; background: #084AA6; border-radius: 12px; padding: 32px 24px; display: flex; flex-direction: column; align-items: center; gap: 24px; color: #fff; text-align: center; }
.why-us-illust { flex: 0 0 auto; width: 140px; height: 140px; background: #93DDFF; border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.why-us-illust img { width: 120px; height: 120px; object-fit: contain; display: block; }
.why-us-content { flex: 1; text-align: left; }
.why-us-title { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: #FFFF59; line-height: 1.5; }
.why-us-text { font-size: 13px; line-height: 1.8; color: #fff; margin: 0; }

/* ===== BENEFITS ===== */
.section-benefits { background: var(--light-blue); position: relative; }
.benefit-card { background: #fff; border: 1px solid #d8e4f0; border-radius: 16px; padding: 28px 20px 28px; text-align: left; color: var(--navy); height: 100%; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
.benefit-illust { width: 100%; max-width: 180px; height: auto; margin: 0 auto 20px; display: block; }
.benefit-title { font-size: 20px; font-weight: 900; color: #1a2e5a; margin-bottom: 12px; line-height: 1.4; }
.benefit-title span { font-size: 13px; color: var(--yellow); display: block; }
.benefit-text { margin-bottom: 0; font-size: 13px; color: #1a2e5a; line-height: 1.7; }

/* ===== NATIONWIDE ===== */
.section-nationwide { background: #F2F8FF; }
.nationwide-inner { display: flex; gap: 40px; align-items: flex-start; }
.nationwide-box { flex: 0 0 280px; background: #084AA6; border-radius: 12px; padding: 32px 24px; color: #fff; }
.nationwide-box-title { font-size: 22px; font-weight: 900; line-height: 1.5; margin-bottom: 16px; color: #fff; }
.nationwide-box-num { font-size: 40px; color: #FFFF59; font-weight: 900; }
.nationwide-box-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; color: #fff; }
.nationwide-btn-list { display: flex; flex-direction: column; gap: 8px; }
.nationwide-btn { background: #fff; color: #084AA6; font-size: 14px; font-weight: 700; padding: 10px 16px; border-radius: 6px; text-align: center; }
.nationwide-map { flex: 1; position: relative; text-align: center; }
.map-img { max-width: 100%; display: block; }
.map-label { position: absolute; background: #084AA6; color: #fff; font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 4px; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.map-label-num { font-size: 18px; font-weight: 900; color: #FFFF59; }
.map-note { position: absolute; bottom: 0; right: 0; font-size: 11px; color: #666; margin: 0; }

/* ===== HOW IT WORKS ===== */
.section-how { background: #fff; }
.how-steps { display: flex; align-items: stretch; gap: 0; }
.how-step { flex: 1; background: #EAF4FF; border-radius: 12px; text-align: center; display: flex; flex-direction: column; position: relative; overflow: visible; }
.step-badge { width: 72px; height: 72px; background: #084AA6; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: -20px auto 0; position: relative; z-index: 2; flex-shrink: 0; }
.step-badge-label { font-size: 10px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: 0.05em; }
.step-badge-num { font-size: 26px; font-weight: 900; color: #fff; line-height: 1; }
.step-illust-wrap { background: #EAF4FF; display: flex; align-items: flex-end; justify-content: center; padding: 16px 16px 0; height: 220px; flex-shrink: 0; }
.step-illust { width: 100%; max-width: 160px; height: 180px; object-fit: contain; display: block; }
.step-body { padding: 16px 16px 20px; display: flex; flex-direction: column; align-items: center; flex: 1; }
.step-title { font-size: 17px; font-weight: 900; color: #084AA6; margin-bottom: 8px; line-height: 1.4; min-height: 2.8em; display: flex; align-items: center; justify-content: center; width: 100%; }
.step-text { font-size: 13px; color: #333; line-height: 1.7; margin-bottom: 16px; text-align: left; width: 100%; flex: 1; }
.btn-step-cta { display: block; width: 100%; background: #084AA6; color: #FFFF59 !important; font-size: 15px; font-weight: 900; padding: 12px 8px; border-radius: 8px; text-align: center; line-height: 1.4;  }
.btn-step-cta:hover { display: block; width: 100%;  background: #084AA6 !important; color: #FFFF59 !important; font-size: 15px; font-weight: 900; padding: 12px 8px; border-radius: 8px; text-align: center; line-height: 1.4;  border: 1px solid #084AA6 !important;}
.step-arrow-tri { font-size: 24px; color: #084AA6; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 0 4px; margin-top: 60px; }

/* ===== FAQ ===== */
.section-faq { background: var(--light-blue); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.faq-question-new { background: #084AA6; display: flex; align-items: center; gap: 16px; padding: 16px 24px; }
.faq-question-text { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.5; flex: 1; }
.faq-answer-new { background: #fff; display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; }
.faq-answer-text { font-size: 14px; line-height: 1.8; color: #333; margin: 0; flex: 1; padding-top: 4px; }
.faq-badge { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; flex-shrink: 0; line-height: 1; }
.faq-badge-q { background: #fff; color: #084AA6; }
.faq-badge-a { background: #084AA6; color: #fff; }

/* ===== FINAL CTA & FORM ===== */
.section-final-cta { background: linear-gradient(135deg, #0a1840 0%, #0d1f4e 100%); padding: 0 0 80px; overflow: hidden; }
.final-cta-contact-img { max-width: 600px; width: 100%; height: auto; display: block; margin: 0 auto; }
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 40px; max-width: 600px; margin: 0 auto; text-align: left; }
.btn-form-submit { background: var(--red); color: #fff; border: none; padding: 12px 36px; border-radius: 30px; font-size: 15px; font-weight: 700; box-shadow: 0 4px 12px rgba(230,51,41,0.3); transition: transform 0.2s; cursor: pointer; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); padding: 48px 0 24px; color: rgba(255,255,255,0.7); }
.footer-inner { display: block; gap: 40px; margin-bottom: 32px; text-align: center;}
.footer-logo { height: 48px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0 auto; text-align: center;}
ul.footer-link{ text-align: center; font-size: 13px;}
ul.footer-link li{ margin: 8px; display: inline-block;}
ul.footer-link li:hover{ text-decoration: underline;}
.footer-p{ background: white; border-radius: 16px; max-width: 400px; color: #333; margin: 12px auto 0; padding: 8px 0; font-size: 13px;}
.form-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.form-logo { height: 36px; }
.form-icon { width: 36px; height: 36px; }
.form-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; text-align: center; }
.form-subtitle { font-size: 13px; color: #888; text-align: center; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.form-control { width: 100%; border: 1px solid #ddd; border-radius: 6px; padding: 10px 14px; font-size: 14px; font-family: inherit; transition: border-color 0.2s; }
.form-control:focus { outline: none; border-color: var(--navy); }


/* ===== MEDIA QUERIES (集約) ===== */
@media (min-width: 768px) {
  .hero-inner-wrap { padding: 72px 32px 60px; min-height: 680px; }
  .cta-btn-wrap { text-align: center; padding: 3em 0 2em; line-height: 0;}
  .cta-svg-wrap { width: 100%; max-width: 1200px; margin: 2em auto 0; line-height: 0; }
  .benefit-card-offset { margin-top: 32px; }
  .case-title-wrap::before { top: 25px; }
  .service-card-title { font-size: 24px; }
}


@media (max-width: 768px) {
	.pc-only{ display: none;}
  .header-center { display: none; }
  .step-arrow-tri{ display: none;}
  .hero-inner-wrap { padding: 12px 0 0 !important; }
  .hero-cta-overlay { width: 75%; margin: 2em auto 0; position: relative; left: 0; top: 0; transform: none; }
  .hero-medals { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-medal-item { padding: 8px 4px; }
  .cta-btn-wrap { text-align: center; padding: 2em 0 1em; line-height: 0; max-width: 75%; margin: 0 auto;}
  .cta-svg-wrap { width: 100%; margin: 2em 0 1em; line-height: 0; text-align: center; }
  .cta-btn-img { width: 75%; margin: 0 auto; }
  .cta-mid-inner { flex-direction: column; gap: 24px; margin-bottom: 24px; }
  .cta-mid-contact-img { max-width: 100%; }
  .btn-cta-mid-new { font-size: 15px; padding: 14px 28px; white-space: normal; text-align: center; }
  .section-en-bg, .section-en-bg-light { font-size: 10vw; }
  .section-heading-title, .section-heading-title-light { font-size: 6.5vw; white-space: nowrap; }
  .section-heading-label, .section-heading-label-yellow { font-size: 4.5vw; }
  .phase-row, .why-us-list, .nationwide-inner, .how-steps, .voice-card { flex-direction: column; }
  .border-end { border-right: none !important; border-bottom: 1px dashed #3a75bb !important; }
  .voice-img-box { width: 100%; height: 150px; overflow: hidden;}
  .voice-img-box img{ width: 100%; transform:translateY(-50%);}
  .case-watermark { font-size: 80px; }
  .case-title-wrap::before { top: 6px; }
  .how-step{ margin-bottom: 36px;}
  .service-card-title { font-size: 4vw; }
  .faq-question-new { padding: 14px 16px; gap: 12px; }
  .faq-question-text { font-size: 14px; }
  .faq-answer-new { padding: 16px; gap: 12px; }
  .faq-answer-text { font-size: 13px; }
  .faq-badge { width: 30px; height: 30px; font-size: 14px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .step-arrow { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .contact-form-wrap { padding: 24px 16px; }
}

@media (max-width: 991px) {
  .comparison-illust-left, .comparison-illust-right { display: none; }
}