:root {
  --blue: #005bac;
  --blue2: #0073cf;
  --blue-dark: #003f82;
  --blue-deep: #002f6c;
  --cyan: #21c7df;
  --mint: #35d8c6;
  --orange: #f26b2f;
  --text: #12304f;
  --muted: #64758a;
  --line: #dbe8f3;
  --bg: #f7fbff;
  --sky: #eaf6ff;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(0, 91, 172, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 18px rgba(0, 91, 172, 0.08);
}

.top-notice {
  display: flex;
  justify-content: center;
  padding: 5px 18px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  color: rgba(255, 255, 255, 0.92);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--blue-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 22px rgba(0, 91, 172, 0.22);
}

.brand-text {
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.global-nav a {
  color: var(--blue-dark);
  transition: 0.25s;
}

.global-nav a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(242, 107, 47, 0.22);
}

.nav-cta:hover {
  background: #ff7a3d;
}

.menu-button {
  display: none;
  border: 0;
  background: var(--blue);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  padding: 11px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 10px;
  transition: 0.25s;
}

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

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

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

/* common */
.section {
  padding: 76px 20px;
  background: #ffffff;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-en,
.eyebrow,
.panel-kicker,
.service-no,
.service-sub {
  color: var(--blue);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-en,
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
}

.section-head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(28px, 4.8vw, 46px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.section-head p {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--orange);
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(242, 107, 47, 0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #ff7a3d;
  box-shadow: 0 18px 34px rgba(242, 107, 47, 0.34);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.button-outline:hover {
  background: #ffffff;
  color: var(--blue-dark);
}

/* hero */
.hero-fs {
  position: relative;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 92px 20px 82px;
  background: #ffffff;
  color: #ffffff;
}

.hero-fs-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-fs-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero-fs-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* 左側だけ斜めグラデーション */
.hero-fs-left-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 64%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    115deg,
    rgba(0, 63, 130, 0.92) 0%,
    rgba(0, 91, 172, 0.82) 48%,
    rgba(33, 199, 223, 0.36) 76%,
    rgba(33, 199, 223, 0) 100%
  );
  clip-path: polygon(0 0, 88% 0, 68% 100%, 0 100%);
  pointer-events: none;
}

.hero-fs-left-shadow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 47, 108, 0.68) 0%,
    rgba(0, 63, 130, 0.34) 54%,
    rgba(0, 63, 130, 0) 100%
  );
}

/* 薄いグリッド */
.hero-fs::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.16;
  pointer-events: none;
}

.hero-fs-inner-new {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px) 260px;
  align-items: end;
  gap: 64px;
}

.hero-fs-copy {
  max-width: 720px;
}

.hero-fs-copy .eyebrow {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-fs-copy .eyebrow::before {
  content: "";
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
}

.hero-fs-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 6.2vw, 76px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 24px rgba(0, 47, 108, 0.34);
}

.hero-fs-copy h1 span {
  color: #21c7dff0;
  padding: 0 0.08em;
}

/* 92%をコピー下に配置 */
.hero-result-inline {
  margin-top: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  row-gap: 4px;
  align-items: end;
  max-width: 620px;
}

.hero-result-inline .card-label {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 900;
  text-align: left;
}

.hero-result-inline .counter-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: auto;
  line-height: 0.9;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

.hero-result-inline .counter-number {
  font-size: 86px;
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.hero-result-inline .counter-unit {
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 8px 5px;
  color: #ffffff;
}

.hero-result-inline .counter-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-result-inline .counter-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.7;
}

.counter-box.is-complete {
  animation: popNumber 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popNumber {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.35));
  }

  100% {
    transform: scale(1);
  }
}

.hero-fs-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  text-shadow: 0 4px 16px rgba(0, 47, 108, 0.32);
}

/* 右側ボタン */
.hero-fs-action-box {
  display: grid;
  gap: 16px;
  align-self: end;
  margin-bottom: 18px;
}

.hero-fs-action-box .button {
  width: 100%;
  min-width: 220px;
}

.hero-fs-action-box .button-outline {
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  background: rgba(0, 91, 172, 0.2);
  backdrop-filter: blur(8px);
}

.hero-fs-action-box .button-outline:hover {
  background: #ffffff;
  color: var(--blue-dark);
}

.hero-fs-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-fs-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: 0.35s;
}

.hero-fs-dots span.is-active {
  width: 34px;
  background: #ffffff;
}

/* mission */
.intro {
  background: #ffffff;
}

.issue-solution {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 15px;
  box-shadow: var(--shadow);
}

.panel.accent {
  background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%);
  border-color: rgba(0, 91, 172, 0.18);
}

.panel-kicker {
  margin: 0 0 8px;
  font-size: 11px;
}

.panel h3 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 22px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}

.check-list.muted li {
  font-weight: 500;
  color: var(--muted);
}

.check-list.muted li::before {
  content: "•";
  color: var(--orange);
}

/* service */
.service {
  background: radial-gradient(
      circle at 12% 12%,
      rgba(33, 199, 223, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 91, 172, 0.12);
  border-radius: 30px;
  padding: 34px 15px 30px;
  box-shadow: 0 22px 52px rgba(0, 91, 172, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(234, 246, 255, 0.9) 0%,
      rgba(255, 255, 255, 0) 48%
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(33, 199, 223, 0.18),
      transparent 34%
    );
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 6px;
  border-radius: 0 999px 999px 0;
  background: var(--blue);
}

.service-card-orange::after {
  background: var(--orange);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 91, 172, 0.22);
  box-shadow: 0 30px 70px rgba(0, 91, 172, 0.17);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.service-no {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.service-no::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 28px rgba(0, 91, 172, 0.22);
}

.service-card-orange .service-icon {
  background: linear-gradient(135deg, var(--orange), #ff8b4d);
  box-shadow: 0 14px 28px rgba(242, 107, 47, 0.22);
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.service-sub {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #eaf6ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.service-card-orange .service-sub {
  background: rgba(242, 107, 47, 0.1);
  color: var(--orange);
}

.service-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 91, 172, 0.13);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 91, 172, 0.06);
}

.service-card-orange .service-tags span {
  border-color: rgba(242, 107, 47, 0.18);
}

.programs {
  max-width: 1060px;
  margin: 26px auto 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0, 91, 172, 0.08);
}

.programs h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.program-grid span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 16px;
  background: var(--sky);
  color: var(--blue-dark);
  font-weight: 900;
  border: 1px solid rgba(0, 91, 172, 0.16);
}

/* blue section */
.section-blue {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue) 52%,
    var(--cyan) 100%
  );
  color: #ffffff;
}

.section-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
  pointer-events: none;
}

.section-blue .section-head,
.flow-scroll,
.pillar-grid {
  position: relative;
  z-index: 2;
}

.section-blue .section-en,
.section-blue .section-head h2,
.section-blue .section-head p {
  color: #ffffff;
}

/* flow */
.flow {
  padding-bottom: 96px;
}

.flow-scroll {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  padding: 38px 0 48px;
}

.flow-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.flow-step {
  flex: 0 0 230px;
  min-height: 190px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-align: left;
  box-shadow: 0 16px 38px rgba(0, 63, 130, 0.16);
  opacity: 0.58;
  transform: scale(0.9);
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease,
    border-color 0.35s ease, box-shadow 0.35s ease;
}

.flow-step.is-active {
  opacity: 1;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(0, 63, 130, 0.28);
}

.flow-step-training {
  position: relative;
}

.flow-step-training::after {
  content: "TRAINING";
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.flow-step-training.is-active {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.34),
    rgba(33, 199, 223, 0.28)
  );
  border-color: rgba(255, 255, 255, 0.95);
}

.flow-step-training.is-active::after {
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(242, 107, 47, 0.32);
}

.flow-step span {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
}

.flow-step b {
  display: block;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 9px;
}

.flow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 700;
}

/* STEP03研修内容ブロック */
.flow-training {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 48px auto 0;
  padding: 34px 30px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 24px 60px rgba(0, 63, 130, 0.2);
  backdrop-filter: blur(10px);
  transition: border-color 0.35s ease, background 0.35s ease,
    box-shadow 0.35s ease;
}

.flow-training::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -48px;
  width: 2px;
  height: 48px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.95)
  );
}

.flow-training::after {
  content: "STEP 03 研修内容";
  position: absolute;
  left: 50%;
  top: -84px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 63, 130, 0.2);
  white-space: nowrap;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* 03研修が表示中のときだけオレンジで強調 */
.flow-training.is-linked {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 72px rgba(0, 63, 130, 0.24);
}

.flow-training.is-linked::after {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(242, 107, 47, 0.34);
}

.flow-training-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.flow-training-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.flow-training h3 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 900;
}

.flow-training-head p:not(.flow-training-label) {
  margin: 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
}

.training-program-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.training-program {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(0, 63, 130, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.training-program:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0, 63, 130, 0.22);
}

.training-program::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(33, 199, 223, 0.16);
}

.training-program span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.training-program b {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 900;
}

.training-program p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

@media (max-width: 900px) {
  .flow-scroll {
    max-width: 100%;
  }

  .flow-step {
    flex-basis: 220px;
  }

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

  .flow-training {
    padding: 30px 24px 26px;
  }
}

@media (max-width: 560px) {
  .flow-scroll {
    padding: 28px 0 42px;
  }

  .flow-step {
    flex-basis: 74vw;
    min-height: 178px;
  }

  .flow-step.is-active {
    transform: scale(1.04);
  }

  .flow-training {
    margin-top: 42px;
    padding: 28px 22px 24px;
    border-radius: 24px;
  }

  .flow-training::before {
    top: -38px;
    height: 38px;
  }

  .flow-training::after {
    top: -70px;
    font-size: 11px;
  }

  .flow-training h3 {
    font-size: 22px;
  }

  .training-program-grid {
    grid-template-columns: 1fr;
  }

  .training-program {
    min-height: auto;
  }
}

/* strength */
.strength {
  position: relative;
  background: radial-gradient(
      circle at 12% 8%,
      rgba(33, 199, 223, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.compare-card {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 91, 172, 0.14);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 91, 172, 0.12);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1.08fr;
}

.compare-row > div {
  position: relative;
  padding: 20px 22px;
  border-right: 1px solid rgba(0, 91, 172, 0.1);
  border-bottom: 1px solid rgba(0, 91, 172, 0.1);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.compare-row > div:first-child {
  color: var(--blue-dark);
  font-weight: 900;
  background: #ffffff;
}

.compare-row > div:nth-child(2) {
  color: #4d5d70;
  background: #ffffff;
}

.compare-row > div:nth-child(3) {
  border-right: 0;
  background: linear-gradient(
    135deg,
    rgba(234, 246, 255, 0.96),
    rgba(255, 255, 255, 0.92)
  );
  color: var(--blue-dark);
  font-weight: 900;
}

.compare-row:last-child > div {
  border-bottom: 0;
}

.compare-head > div {
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
  color: #ffffff !important;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.compare-head > div:nth-child(3) {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
}

.compare-row:not(.compare-head) > div:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--cyan);
}

.compare-row:not(.compare-head):hover > div {
  background-color: #f8fcff;
}

.compare-row:not(.compare-head):hover > div:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(220, 246, 252, 0.98),
    rgba(255, 255, 255, 0.94)
  );
}

/* SP：横スクロールではなくカード型に変換 */
@media (max-width: 700px) {
  .compare-card {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 172, 0.14);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 91, 172, 0.1);
  }

  .compare-row > div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 91, 172, 0.1);
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  .compare-row > div:first-child {
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
  }

  .compare-row > div:nth-child(2) {
    background: #ffffff;
    color: #4d5d70;
  }

  .compare-row > div:nth-child(3) {
    background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%);
    color: var(--blue-dark);
    font-weight: 900;
    border-bottom: 0;
  }

  .compare-row > div:nth-child(2)::before,
  .compare-row > div:nth-child(3)::before {
    display: block;
    margin-bottom: 5px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  .compare-row > div:nth-child(2)::before {
    content: "従来型";
    color: var(--muted);
  }

  .compare-row > div:nth-child(3)::before {
    content: "リスキリングHR";
    color: var(--blue);
  }

  .compare-row:not(.compare-head) > div:nth-child(3)::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 13px;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--cyan);
    opacity: 0.35;
  }

  .compare-row:not(.compare-head) > div:nth-child(3)::before {
    margin-left: 0;
  }

  .compare-row:not(.compare-head) > div:nth-child(3) {
    padding-top: 18px;
  }
}

/* target */
.target {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.target-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.target-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.target-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(33, 199, 223, 0.16);
}

.target-card h2 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 30px;
}

.target-card ul {
  margin: 0;
  padding-left: 1.2em;
  font-weight: 700;
  color: var(--muted);
}

/* growth */
.pillar-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 42px rgba(0, 63, 130, 0.18);
}

.pillar span {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.pillar h3 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 21px;
}

.pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* company */
.company {
  background: #ffffff;
}

.company-table {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.company-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt,
.company-table dd {
  margin: 0;
  padding: 18px;
}

.company-table dt {
  background: var(--sky);
  color: var(--blue-dark);
  font-weight: 900;
}

.company-table dd {
  background: #ffffff;
}

.company-table dd a {
  color: var(--blue);
  font-weight: 900;
}

/* cta */
.cta-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, var(--sky) 0%, #ffffff 100%);
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 32px;
  padding: 42px 24px;
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(28px, 4.5vw, 44px);
}

.cta-inner p:not(.section-en) {
  color: var(--muted);
}

/* footer */
.site-footer {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #ffffff;
  padding: 34px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.66);
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.footer-nav a:hover {
  color: #ffffff;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

/* animation */
.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

/* lower pages */
.site-header.simple {
  position: relative;
}

.sub-page {
  background: #ffffff;
}

.global-nav.static {
  display: flex;
}

.sub-hero {
  position: relative;
  padding: 72px 20px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #ffffff;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
}

.sub-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 60px);
  line-height: 1.2;
}

.sub-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.form-section {
  background: var(--bg);
}

.contact-form {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--blue-dark);
}

.contact-form label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue);
  font-size: 11px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--blue);
  font-weight: 900;
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.policy-body {
  max-width: 920px;
  margin: 0 auto;
}

.policy-body h2 {
  margin: 36px 0 10px;
  color: var(--blue-dark);
  font-size: 22px;
}

.policy-body p {
  color: #4d5a70;
}

.policy-body a {
  color: var(--blue);
  font-weight: 900;
}

/* responsive */
@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .global-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 12px 14px;
    border-bottom: 1px solid #edf2f7;
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .global-nav.static {
    display: flex;
    position: static;
    box-shadow: none;
    border: 0;
    flex-direction: row;
    padding: 0;
  }

  .section {
    padding: 58px 18px;
  }

  .section-head {
    text-align: left;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .section-head p {
    font-size: 14px;
  }

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

  .hero-fs-slide {
    background-position: center right 25%;
  }

  .hero-fs-blue {
    background: linear-gradient(
      180deg,
      rgba(0, 63, 130, 0.96) 0%,
      rgba(0, 91, 172, 0.92) 58%,
      rgba(0, 91, 172, 0.78) 100%
    );
  }

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

  .hero-fs-copy h1 {
    font-size: 44px;
  }

  .hero-fs-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-fs-result {
    max-width: 430px;
  }

  .issue-solution,
  .service-cards,
  .target-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

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

  .compare-card {
    border-radius: 18px;
    overflow-x: auto;
  }

  .compare-row {
    grid-template-columns: 120px 190px 220px;
    min-width: 530px;
  }

  .company-table div {
    grid-template-columns: 1fr;
  }

  .company-table dt {
    padding-bottom: 4px;
  }

  .company-table dd {
    padding-top: 8px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .top-notice {
    display: none;
  }

  .header-inner {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .brand-text {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 9px;
  }

  .hero-fs {
    padding: 54px 14px 54px;
  }

  .hero-fs-slide {
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* 1枚目 */
  .hero-fs-slide:nth-child(1) {
    background-position: 78% 42%;
  }

  /* 2枚目 */
  .hero-fs-slide:nth-child(2) {
    background-position: 72% 38%;
  }

  /* 3枚目 */
  .hero-fs-slide:nth-child(3) {
    background-position: 70% 42%;
  }

  .hero-fs-left-shadow {
    width: 76%;
    clip-path: polygon(0 0, 86% 0, 64% 100%, 0 100%);
    background: linear-gradient(
      115deg,
      rgba(0, 63, 130, 0.92) 0%,
      rgba(0, 91, 172, 0.8) 48%,
      rgba(33, 199, 223, 0.34) 76%,
      rgba(33, 199, 223, 0) 100%
    );
  }

  .hero-fs-inner-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
  }

  .hero-fs-copy {
    max-width: 100%;
    width: 100%;
  }

  .hero-fs-copy .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .hero-fs-copy .eyebrow::before {
    width: 34px;
  }

  .hero-fs-copy h1 {
    font-size: clamp(33px, 9.2vw, 38px);
    line-height: 1.22;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .hero-result-inline {
    margin-top: 22px;
    column-gap: 14px;
    max-width: 100%;
  }

  .hero-result-inline .card-label {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .hero-result-inline .counter-number {
    font-size: 58px;
  }

  .hero-result-inline .counter-unit {
    font-size: 24px;
    margin: 0 0 6px 4px;
  }

  .hero-result-inline .counter-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .hero-result-inline .counter-note {
    font-size: 10px;
  }

  .hero-fs-lead {
    max-width: 100%;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.9;
  }

  .hero-fs-action-box {
    margin-bottom: 0;
    gap: 12px;
  }

  .hero-fs-action-box .button {
    width: 100%;
    min-width: 0;
  }

  .hero-fs-dots {
    bottom: 18px;
  }
}

/* 92%到達時の拡大アニメーション修正 */
.hero-result-inline.is-complete .counter-box {
  animation: popNumber 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popNumber {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.16);
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.45));
  }

  100% {
    transform: scale(1);
  }
}

.model-title .model-accent {
  color: #21c7dff0;
}
/* flow：横スライダー化＋中央カード拡大＋03研修との紐づけ */
.flow-scroll {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  padding: 34px 0 44px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.flow-scroll::-webkit-scrollbar {
  display: none;
}

.flow-track {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  width: max-content;
  padding: 0 calc((100vw - 250px) / 2);
}

.flow-step {
  flex: 0 0 250px;
  scroll-snap-align: center;
  transform: scale(0.9);
  opacity: 0.68;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease,
    border-color 0.35s ease, box-shadow 0.35s ease;
}

.flow-step.is-active {
  transform: scale(1.08);
  opacity: 1;
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 28px 70px rgba(0, 63, 130, 0.28);
}

.flow-step-training.is-active {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.32),
    rgba(33, 199, 223, 0.26)
  );
  border-color: rgba(255, 255, 255, 0.9);
}

.flow-step-training {
  position: relative;
}

.flow-step-training::after {
  content: "TRAINING";
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* 03研修カードと研修内容を線でつなぐ */
.flow-training {
  margin-top: 42px;
}

.flow-training::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -42px;
  width: 2px;
  height: 42px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.95)
  );
}

.flow-training::after {
  content: "STEP 03 研修内容";
  position: absolute;
  left: 50%;
  top: -78px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 63, 130, 0.2);
  white-space: nowrap;
}

.training-program {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.training-program:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0, 63, 130, 0.22);
}

@media (max-width: 900px) {
  .flow-track {
    padding: 0 calc((100vw - 230px) / 2);
  }

  .flow-step {
    flex-basis: 230px;
  }
}

@media (max-width: 560px) {
  .flow-scroll {
    padding: 28px 0 40px;
  }

  .flow-track {
    padding: 0 13vw;
  }

  .flow-step {
    flex-basis: 74vw;
    min-height: 178px;
  }

  .flow-step.is-active {
    transform: scale(1.04);
  }

  .flow-training {
    margin-top: 38px;
  }

  .flow-training::before {
    top: -36px;
    height: 36px;
  }

  .flow-training::after {
    top: -68px;
    font-size: 11px;
  }
}

/* SP用：比較表をカード型に変更 */
@media (max-width: 700px) {
  .strength .section-head {
    margin-bottom: 26px;
  }

  .compare-card {
    display: grid;
    gap: 14px;
    width: 100%;
    overflow: visible !important;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-head {
    display: none !important;
  }

  .compare-row {
    display: block !important;
    min-width: 0 !important;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 172, 0.14);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 91, 172, 0.1);
  }

  .compare-row > div {
    display: block;
    width: 100%;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(0, 91, 172, 0.1);
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  .compare-row > div:first-child {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    border-bottom: 0;
    padding: 15px 18px;
  }

  .compare-row > div:nth-child(2) {
    background: #ffffff;
    color: #4d5d70;
    font-weight: 700;
  }

  .compare-row > div:nth-child(3) {
    position: relative;
    background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%);
    color: var(--blue-dark);
    font-weight: 900;
    border-bottom: 0;
    padding-left: 18px;
  }

  .compare-row > div:nth-child(2)::before,
  .compare-row > div:nth-child(3)::before {
    display: block;
    margin-bottom: 4px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  .compare-row > div:nth-child(2)::before {
    content: "従来型";
    color: var(--muted);
  }

  .compare-row > div:nth-child(3)::before {
    content: "リスキリングHR";
    color: var(--blue);
  }

  .compare-row > div:nth-child(3)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: var(--cyan);
  }
}
/* SP比較表：リスキリングHR側の水色ラインを非表示 */
@media (max-width: 700px) {
  .compare-row > div:nth-child(3)::after {
    display: none;
  }

  .compare-row > div:nth-child(3) {
    padding-left: 16px;
  }
}

/* privacy page */
.policy-page {
  background: #f7fbff;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 20px 74px;
  background: linear-gradient(
    135deg,
    rgba(0, 63, 130, 0.96) 0%,
    rgba(0, 91, 172, 0.92) 54%,
    rgba(33, 199, 223, 0.82) 100%
  );
  color: #ffffff;
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
  pointer-events: none;
}

.policy-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.policy-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 42px;
}

.policy-hero-copy .eyebrow {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.policy-hero-copy .eyebrow::before {
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.policy-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 2;
}

.policy-hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 22px 52px rgba(0, 63, 130, 0.22);
  backdrop-filter: blur(10px);
}

.policy-hero-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -62px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(33, 199, 223, 0.26);
}

.policy-hero-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.policy-hero-card b {
  position: relative;
  z-index: 2;
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.6;
}

.policy-section {
  background: radial-gradient(
      circle at 10% 6%,
      rgba(33, 199, 223, 0.1),
      transparent 34%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.policy-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.policy-side {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 91, 172, 0.12);
  box-shadow: 0 16px 36px rgba(0, 91, 172, 0.09);
}

.policy-side-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.policy-side a {
  display: block;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition: 0.2s;
}

.policy-side a:hover {
  background: var(--sky);
  color: var(--blue-dark);
}

.policy-card {
  max-width: none;
  margin: 0;
  padding: 40px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 91, 172, 0.12);
  box-shadow: 0 24px 60px rgba(0, 91, 172, 0.1);
}

.policy-lead {
  margin: 0 0 34px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%);
  color: var(--text);
  font-weight: 700;
  line-height: 2;
  border: 1px solid rgba(0, 91, 172, 0.12);
}

.policy-item {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 91, 172, 0.1);
}

.policy-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.policy-item h2 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 900;
}

.policy-item h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 1.2em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.policy-item p {
  margin: 0;
  color: #4d5a70;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding-left: 28px;
  color: #4d5a70;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

.policy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}

.policy-contact-box {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%);
  border: 1px solid rgba(0, 91, 172, 0.14);
}

.policy-contact-box b {
  color: var(--blue-dark);
  font-size: 16px;
}

.policy-contact-box a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 900px) {
  .policy-hero {
    padding: 64px 18px 58px;
  }

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

  .policy-hero-card {
    max-width: 420px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-side {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
  }

  .policy-side-label {
    display: none;
  }

  .policy-side a {
    flex: 0 0 auto;
    white-space: nowrap;
    background: var(--sky);
    color: var(--blue-dark);
  }

  .policy-card {
    padding: 28px;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .policy-hero {
    padding: 54px 14px 48px;
  }

  .policy-hero h1 {
    font-size: 34px;
  }

  .policy-hero-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }

  .policy-hero-card {
    padding: 22px;
    border-radius: 22px;
  }

  .policy-hero-card b {
    font-size: 18px;
  }

  .policy-section {
    padding: 46px 14px;
  }

  .policy-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .policy-lead {
    padding: 18px;
    font-size: 14px;
    line-height: 1.9;
  }

  .policy-item {
    padding: 26px 0;
  }

  .policy-item h2 {
    font-size: 19px;
  }

  .policy-item p,
  .policy-list li {
    font-size: 14px;
  }
}

/* inquiry page */
.inquiry-page {
  background: #f7fbff;
}

.inquiry-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 20px 74px;
  background: linear-gradient(
    135deg,
    rgba(0, 63, 130, 0.96) 0%,
    rgba(0, 91, 172, 0.92) 54%,
    rgba(33, 199, 223, 0.82) 100%
  );
  color: #ffffff;
}

.inquiry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
  pointer-events: none;
}

.inquiry-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.inquiry-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 42px;
}

.inquiry-hero-copy .eyebrow {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.inquiry-hero-copy .eyebrow::before {
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
}

.inquiry-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.inquiry-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 2;
}

.inquiry-hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 22px 52px rgba(0, 63, 130, 0.22);
  backdrop-filter: blur(10px);
}

.inquiry-hero-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -62px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(33, 199, 223, 0.26);
}

.inquiry-hero-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inquiry-hero-card b {
  position: relative;
  z-index: 2;
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.6;
}

.inquiry-section {
  background: radial-gradient(
      circle at 10% 6%,
      rgba(33, 199, 223, 0.1),
      transparent 34%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.inquiry-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 91, 172, 0.12);
  box-shadow: 0 24px 60px rgba(0, 91, 172, 0.1);
}

.inquiry-head {
  margin-bottom: 28px;
  text-align: center;
}

.inquiry-head h2,
.inquiry-complete h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(28px, 4.8vw, 44px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.inquiry-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.required {
  color: var(--orange);
  font-weight: 900;
}

.form-error-list {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff3ef;
  border: 1px solid rgba(242, 107, 47, 0.3);
  color: var(--orange);
  font-weight: 800;
  list-style: inside;
}

.inquiry-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.inquiry-form-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.inquiry-form-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px;
  border-radius: 20px;
  background: #f8fcff;
  border: 1px solid rgba(0, 91, 172, 0.1);
}

.inquiry-form-row dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.inquiry-form-row dd {
  margin: 0;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #ffffff;
}

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

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(33, 199, 223, 0.14);
}

.inquiry-form label .required,
.inquiry-form dt .required {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(242, 107, 47, 0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.form-error {
  margin: 8px 0 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.confirm {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.8;
}

.inquiry-submit {
  margin-top: 30px;
  text-align: center;
}

.inquiry-submit .button {
  min-width: 220px;
  border: 0;
  cursor: pointer;
}

.inquiry-submit-double {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.inquiry-back {
  color: var(--blue-dark);
  background: #ffffff;
  border: 1px solid rgba(0, 91, 172, 0.22) !important;
}

.inquiry-back:hover {
  color: #ffffff;
  background: var(--blue);
}

.inquiry-complete {
  text-align: center;
}

.inquiry-complete p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 2;
}

.inquiry-complete-action {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .inquiry-hero {
    padding: 64px 18px 58px;
  }

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

  .inquiry-hero-card {
    max-width: 430px;
  }

  .inquiry-wrap {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .inquiry-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .inquiry-hero {
    padding: 54px 14px 48px;
  }

  .inquiry-hero h1 {
    font-size: 36px;
  }

  .inquiry-hero-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }

  .inquiry-hero-card {
    padding: 22px;
    border-radius: 22px;
  }

  .inquiry-hero-card b {
    font-size: 18px;
  }

  .inquiry-section {
    padding: 46px 14px;
  }

  .inquiry-wrap {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .inquiry-head {
    text-align: left;
  }

  .inquiry-form-row {
    padding: 16px;
    border-radius: 18px;
  }

  .inquiry-submit .button {
    width: 100%;
    min-width: 0;
  }

  .inquiry-submit-double {
    display: grid;
    gap: 12px;
  }
}
/* 表示切り替え */
.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

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

  .pc-only {
    display: none;
  }
}

/* logo image */
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

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

/* ヘッダーでは元の青ロゴのまま表示 */
.site-header .brand-logo img {
  width: 250px;
  filter: none;
}

/* フッターだけ白っぽくする */
.site-footer .footer-brand img {
  width: 240px;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .site-header .brand-logo img {
    width: 220px;
  }
}

@media (max-width: 560px) {
  .site-header .brand-logo img {
    width: 190px;
  }

  .site-footer .footer-brand img {
    width: 210px;
  }
}