/* ===========================
   BASE / RESET
   =========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #F06C00;
  --orange-light: #FF8C33;
  --orange-pale: #FFB980;
  --orange-bg: #FFF7F0;
  --orange-dark: #D45E00;
  --orange-deep: #B04E00;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D0D0D0;
  --gray-400: #AAAAAA;
  --gray-600: #666666;
  --gray-800: #333333;
  --gray-900: #1A1A1A;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover { opacity: 0.8; }

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

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

.pc-only { display: inline; }
.sp-only { display: none; }

/* ===========================
   REVEAL ANIMATION SYSTEM
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

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

.header-logo { flex-shrink: 0; }

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

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

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover { color: var(--orange); opacity: 1; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--orange); }
.nav-link.active::after { width: 100%; }

.nav-link--cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 13px;
  transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(240, 108, 0, 0.2);
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  background: var(--orange-dark);
  color: var(--white);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 108, 0, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 160px 24px 100px;
  background: linear-gradient(160deg, var(--orange-bg) 0%, var(--white) 50%, #FFF5EB 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: heroShapeIn 1.5s var(--ease-out-expo) forwards;
}

.hero-shape--1 {
  width: 500px; height: 500px;
  top: -180px; right: -100px;
  background: radial-gradient(circle, rgba(240,108,0,0.07) 0%, transparent 70%);
  animation-delay: 0.2s;
}

.hero-shape--2 {
  width: 350px; height: 350px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(240,108,0,0.05) 0%, transparent 70%);
  animation-delay: 0.4s;
}

.hero-shape--3 {
  width: 180px; height: 180px;
  top: 30%; left: 8%;
  background: radial-gradient(circle, rgba(240,108,0,0.06) 0%, transparent 70%);
  animation-delay: 0.6s;
  animation-name: heroShapeFloat;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  opacity: 0.6;
}

.hero-shape--4 {
  width: 120px; height: 120px;
  top: 20%; right: 12%;
  background: radial-gradient(circle, rgba(240,108,0,0.05) 0%, transparent 70%);
  animation-delay: 0.8s;
  animation-name: heroShapeFloat2;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  opacity: 0.5;
}

.hero-shape--5 {
  width: 80px; height: 80px;
  bottom: 25%; right: 20%;
  background: radial-gradient(circle, rgba(240,108,0,0.08) 0%, transparent 70%);
  animation-delay: 1s;
  animation-name: heroShapeFloat;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: reverse;
  opacity: 0.6;
}

@keyframes heroShapeIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroShapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(15px, -20px) scale(1.05); }
  50% { transform: translate(-10px, -35px) scale(0.95); }
  75% { transform: translate(20px, -15px) scale(1.02); }
}

@keyframes heroShapeFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-20px, 15px); }
  66% { transform: translate(15px, -20px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero stagger entrance */
.anim-hero {
  opacity: 0;
  transform: translateY(36px);
  animation: heroFadeIn 0.9s var(--ease-out-expo) forwards;
}

.anim-hero[data-delay="0"] { animation-delay: 0.3s; }
.anim-hero[data-delay="1"] { animation-delay: 0.5s; }
.anim-hero[data-delay="2"] { animation-delay: 0.7s; }
.anim-hero[data-delay="3"] { animation-delay: 0.95s; }

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 100px;
  padding: 6px 28px;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-brand {
  color: var(--orange);
  position: relative;
}

.hero-brand::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(240, 108, 0, 0.12);
  border-radius: 4px;
  z-index: -1;
}

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

.hero-sub strong { color: var(--orange); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: scrollHintIn 0.6s 1.8s var(--ease-out-expo) forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -48px;
  left: 0;
  width: 1px;
  height: 48px;
  background: var(--orange);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollHintIn {
  to { opacity: 0.5; }
}

@keyframes scrollDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(96px); }
}

/* ===========================
   BUTTON
   =========================== */
.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.35s var(--ease-spring);
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240, 108, 0, 0.3);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn--primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(240, 108, 0, 0.4);
  transform: translateY(-3px);
  opacity: 1;
}

.btn--primary:hover::before { opacity: 1; }

.btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 108, 0, 0.3);
}

.btn--hero {
  font-size: 17px;
  padding: 20px 52px;
}

/* Pulse ring */
.btn--pulse {
  position: relative;
}

.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--orange);
  border-radius: 100px;
  opacity: 0;
  animation: btnPulse 2.5s ease-out infinite 1.5s;
}

@keyframes btnPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.12); opacity: 0; }
}

.btn--submit {
  font-size: 17px;
  padding: 18px 64px;
  min-width: 280px;
}

.btn--submit:disabled {
  background: var(--gray-400);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn--submit:disabled::after { display: none; }

.btn-text { transition: opacity 0.2s; }

.btn--loading .btn-text { opacity: 0; }
.btn--loading .btn-loader { display: block; }

.btn-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===========================
   NUMBERS
   =========================== */
.numbers {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 56px 24px;
  position: relative;
}

.numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.number-card {
  text-align: center;
  color: var(--white);
  padding: 16px;
}

.number-value {
  display: block;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.number-suffix {
  font-size: 18px;
  font-weight: 700;
  margin-left: 2px;
}

.number-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

/* ===========================
   SECTION COMMON
   =========================== */
.section {
  padding: 100px 0;
}

.section--gray {
  background: var(--gray-50);
}

.section--orange {
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-dark) 100%);
  position: relative;
}

.section--orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--gray-900);
  letter-spacing: 0.02em;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 18px auto 0;
  transition: width 0.6s var(--ease-out-expo) 0.2s;
}

.section-title.is-visible::after { width: 48px; }

.section-title--white { color: var(--white); }
.section-title--white::after { background: rgba(255,255,255,0.8); }

.section-lead {
  text-align: center;
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 56px;
  line-height: 1.9;
}

.section-lead--white { color: rgba(255, 255, 255, 0.9); }

/* ===========================
   SERVICE FLOW
   =========================== */
.service-flow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.flow-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  transition: box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), border-color 0.4s;
}

.flow-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(240, 108, 0, 0.2);
}

.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(240, 108, 0, 0.25);
}

.flow-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.flow-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

.flow-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 64px;
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
}

/* ===========================
   RESULTS
   =========================== */
.results-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.4s, transform 0.4s var(--ease-out-expo);
}

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

.result-card-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--gray-900);
  padding-bottom: 14px;
  border-bottom: 3px solid var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Pie Chart */
.pie-container {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.pie-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}

.pie-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}

.pie-bg {
  fill: none;
  stroke: var(--gray-100);
  stroke-width: 32;
}

.pie-seg {
  fill: none;
  stroke-width: 32;
  stroke-linecap: butt;
  stroke-dasharray: 0 565.49;
  transition: stroke-dasharray 1.2s var(--ease-out-expo),
              stroke-width 0.3s var(--ease-spring);
  cursor: pointer;
}

.pie-seg:hover {
  stroke-width: 40;
}

.pie-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.pie-center-big {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
}

.pie-center-small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 4px;
}

/* Pop-out labels */
.pie-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-spring);
  pointer-events: none;
  white-space: nowrap;
}

.pie-label.pop {
  opacity: 1;
  transform: scale(1);
}

.pie-label-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.pie-label-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-800);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  line-height: 1.3;
}

.pie-label-text strong {
  color: var(--orange);
  margin-left: 3px;
}

.result-salary {
  margin-top: 32px;
  background: var(--orange-bg);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.salary-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

.salary-range {
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.02em;
}

/* Route mini charts */
.results-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.route-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.route-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.route-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-bar-track {
  flex: 1;
  height: 10px;
  background: var(--gray-100);
  border-radius: 5px;
  overflow: hidden;
}

.route-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 5px;
  transition: width 1s var(--ease-out-expo);
}

.route-bar-fill--alt {
  background: linear-gradient(90deg, var(--orange-pale), #FFD4A8);
}

.route-text {
  font-size: 13px;
  color: var(--gray-600);
  white-space: nowrap;
  min-width: 100px;
}

.route-text strong {
  color: var(--gray-800);
}

/* ===========================
   STRENGTHS
   =========================== */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.strength-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  text-align: center;
  transition: box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.strength-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.strength-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: transparent;
}

.strength-card:hover::before { transform: scaleX(1); }

.strength-icon-wrap {
  margin-bottom: 24px;
  display: inline-block;
}

.strength-svg {
  display: block;
}

.icon-circle {
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.8s var(--ease-out-expo);
  fill: none;
}

.strength-card.is-visible .icon-circle {
  stroke-dashoffset: 0;
}

.icon-check {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.6s var(--ease-out-expo) 0.3s;
}

.strength-card.is-visible .icon-check {
  stroke-dashoffset: 0;
}

.strength-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.5;
}

.strength-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ===========================
   FEE
   =========================== */
.fee-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 720px;
  margin: 0 auto;
}

.fee-main {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 48px 36px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.fee-main::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.fee-type {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.9;
  position: relative;
}

.fee-amount {
  font-size: 20px;
  font-weight: 700;
  position: relative;
}

.fee-big-num {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.fee-percent {
  font-size: 32px;
  font-weight: 900;
}

.fee-note {
  font-size: 16px;
  opacity: 0.85;
  margin-left: 4px;
}

.fee-details { padding: 40px 36px; }

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.fee-table th,
.fee-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
}

.fee-table th {
  font-weight: 700;
  color: var(--gray-800);
  width: 120px;
  white-space: nowrap;
}

.fee-table td { color: var(--gray-600); }
.fee-table td strong { color: var(--orange); }

.fee-notes { list-style: none; }

.fee-notes li {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.7;
}

.fee-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--gray-400);
}

/* ===========================
   COMPANY
   =========================== */
.company-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  vertical-align: top;
  transition: background 0.3s;
}

.company-table tr:hover th,
.company-table tr:hover td {
  background: var(--orange-bg);
}

.company-table th {
  font-weight: 700;
  color: var(--gray-800);
  width: 120px;
  white-space: nowrap;
}

.company-table td { color: var(--gray-600); }

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.required {
  font-size: 11px;
  color: var(--white);
  background: var(--orange);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-800);
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 108, 0, 0.08);
}

.form-input::placeholder { color: var(--gray-400); }

.form-input.error {
  border-color: #E53935;
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.08);
  animation: inputShake 0.4s var(--ease-spring);
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(2px); }
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-privacy {
  margin-bottom: 32px;
  text-align: center;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-600);
}

.checkbox-label input[type="checkbox"] {
  width: 0; height: 0;
  position: absolute;
  opacity: 0;
}

.checkbox-custom {
  display: inline-block;
  width: 22px; height: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s var(--ease-spring);
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 4px; left: 7px;
  width: 5px; height: 10px;
  border: solid var(--white);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.checkbox-label a { text-decoration: underline; }

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

.form-message {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  min-height: 24px;
  transition: opacity 0.3s;
}

.form-message.success { color: #2E7D32; }
.form-message.error { color: #E53935; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer-company {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-address {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-400);
}

/* ===========================
   FLOATING CTA
   =========================== */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  z-index: 999;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

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

.btn--floating {
  width: 100%;
  max-width: 400px;
  padding: 14px 24px;
  font-size: 15px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .service-flow { flex-wrap: wrap; gap: 16px; }
  .flow-step { flex: 1 1 calc(50% - 20px); min-width: 200px; }
  .flow-arrow { display: none; }
}

@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }

  .hamburger { display: flex; }

  .header-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.35s;
    pointer-events: none;
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
  }
  .nav-link::after { display: none; }

  .nav-link--cta {
    background: none;
    color: var(--orange);
    border-radius: 0;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: none;
  }

  .hero {
    padding: 120px 20px 70px;
    min-height: auto;
  }

  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .btn--hero { font-size: 15px; padding: 16px 36px; }
  .hero-scroll-hint { display: none; }

  .numbers { padding: 40px 20px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .number-value { font-size: 38px; }

  .section { padding: 72px 0; }
  .section-title { font-size: 24px; }
  .section-lead { font-size: 14px; margin-bottom: 40px; }

  .service-flow { flex-direction: column; }
  .flow-step { flex: 1 1 100%; }

  .results-visual { grid-template-columns: 1fr; gap: 24px; }
  .result-card { padding: 28px 24px; }
  .pie-wrap { width: 220px; height: 220px; }
  .results-sub { grid-template-columns: 1fr; gap: 16px; }

  .strengths-grid { grid-template-columns: 1fr; gap: 20px; }
  .strength-card { padding: 28px 24px; }

  .fee-card { margin: 0 -8px; }
  .fee-big-num { font-size: 48px; }
  .fee-details { padding: 28px 24px; }
  .fee-table th { width: 90px; }

  .contact-form { padding: 32px 24px; margin: 0 -8px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .btn--submit { width: 100%; max-width: 320px; }

  .footer { padding-bottom: 84px; }

  .result-salary {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .number-value { font-size: 32px; }
  .number-suffix { font-size: 14px; }
  .pie-wrap { width: 200px; height: 200px; }
  .pie-center-big { font-size: 26px; }
  .pie-label-text { font-size: 11px; padding: 3px 8px; }
  .salary-range { font-size: 18px; }
}
