:root {
  --bg: #f6fbff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-soft: #eef6ff;
  --text: #17324a;
  --muted: #607789;
  --line: #d9e8f5;
  --primary: #0D2BA2;
  --primary-dark: #081E73;
  --primary-soft: #E8EDFF;
  --danger-soft: #fff6f3;
  --danger-line: #f3d2ca;
  --shadow: 0 14px 34px rgba(20, 56, 90, 0.08);
  --max: 1280px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: transparent;
  position: relative;
  overflow-x: hidden;
}

.page-bg-motion {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 52%, #f7fbff 100%);
}

body > *:not(.page-bg-motion):not(.floating-cta) {
  position: relative;
  z-index: 1;
}

.page-bg-motion__orb,
.page-bg-motion__line {
  position: absolute;
  display: block;
  pointer-events: none;
}

.page-bg-motion__orb {
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.72;
  will-change: transform;
}

.page-bg-motion__orb--1 {
  top: 8%;
  left: -12%;
  width: 52vw;
  height: 52vw;
  min-width: 280px;
  min-height: 280px;
  background: radial-gradient(circle, rgba(129, 183, 255, 0.34) 0%, rgba(129, 183, 255, 0) 72%);
}

.page-bg-motion__orb--2 {
  top: 46%;
  right: -16%;
  width: 58vw;
  height: 58vw;
  min-width: 320px;
  min-height: 320px;
  background: radial-gradient(circle, rgba(89, 154, 244, 0.28) 0%, rgba(89, 154, 244, 0) 74%);
}

.page-bg-motion__line {
  width: 130vw;
  height: 3px;
  left: -15vw;
  opacity: 0.48;
  filter: blur(0.4px);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.92) 25%,
    rgba(181,219,255,0.95) 50%,
    rgba(255,255,255,0.92) 75%,
    rgba(255,255,255,0) 100%
  );
  will-change: transform;
}

.page-bg-motion__line--1 {
  top: 24%;
  transform: rotate(-10deg);
}

.page-bg-motion__line--2 {
  top: 70%;
  transform: rotate(-7deg);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(231, 242, 253, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

#service .eyebrow {
  margin-bottom: 6px;
}

.sec-head {
  margin-bottom: 30px;
}

.sec-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1A3DB8 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 43, 162, 0.18);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  border-color: var(--line);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(217, 232, 245, 0.85);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.logo__img {
  display: block;
  width: auto;
  height: 70px;
}

.logo__text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #223a63;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}

.hero--kv {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 28px 0 70px;
}

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

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 255, 0.97) 0%,
      rgba(248, 251, 255, 0.90) 22%,
      rgba(248, 251, 255, 0.42) 48%,
      rgba(248, 251, 255, 0.12) 72%,
      rgba(248, 251, 255, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(16, 45, 72, 0.08) 0%,
      rgba(16, 45, 72, 0.16) 100%
    );
}

.hero-bg__image--sp {
  display: none;
}


.hero-kv {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto;
}

.hero-kv__content {
  width: min(760px, 100%);
  padding: 0;
}

.hero-kv__title {
  margin: 0 0 14px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-kv__title-break {
  display: none;
}

.hero-kv__title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-kv__result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E8EDFF 0%, #D9E1FF 100%);
  border: 1px solid #b9d8f4;
  color: #081E73;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(13, 43, 162, 0.16);
}

.hero-kv__lead {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--primary);
}

.hero-kv__subarea {
  display: block;
}

.hero-kv__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-kv__benefits--compact {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
}

.hero-kv__benefits--compact li {
  position: relative;
  display: block;
  min-height: auto;
  padding: 0 0 0 26px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

.hero-kv__benefits--compact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1A3DB8 100%);
  box-shadow: 0 4px 10px rgba(13, 43, 162, 0.16);
}

.hero-kv__benefits--compact li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0.4em;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.hero-kv__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-kv__actions .btn {
  width: min(340px, 100%);
  min-width: 0;
}

.hero-visual-stack {
  position: relative;
  width: min(1040px, 100%);
  margin: 16px auto 0;
  padding-bottom: 124px;
}

.hero-visual-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  perspective: 1600px;
  overflow: visible;
}

.hero-kv__type-visual-link,
.hero-visual-stage__ghost {
  position: absolute;
  top: 0;
  left: 50%;
  transform-style: preserve-3d;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.hero-kv__type-visual-link {
  z-index: 3;
  display: block;
  width: fit-content;
}

.hero-kv__type-visual {
  width: min(760px, 78vw);
  margin: 0;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(217, 232, 245, 0.95);
  box-shadow: 0 26px 56px rgba(20, 56, 90, 0.20);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
}

.hero-kv__type-visual-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-visual-stage__ghost {
  width: min(260px, 24vw);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(20, 56, 90, 0.10);
  z-index: 1;
}

.hero-visual-stage__ghost-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-stage-pos-center {
  transform: translateX(-50%) translateY(36px) scale(1) rotateY(0deg);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}

.hero-stage-pos-right {
  transform: translateX(285px) translateY(48px) scale(0.72) rotateY(-12deg);
  opacity: 0.62;
  filter: blur(0.2px);
  z-index: 2;
}

.hero-stage-pos-left {
  transform: translateX(-470px) translateY(82px) scale(0.56) rotateY(11deg);
  opacity: 0.30;
  filter: blur(0.5px);
  z-index: 1;
}

.hero-kv__type-visual-link:hover .hero-kv__type-visual {
  box-shadow: 0 30px 64px rgba(20, 56, 90, 0.24);
}

.hero-category-slider {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 4;
  width: min(860px, calc(100% - 24px));
  margin: 0;
  padding: 0 28px;
  max-width: none;
}

.hero-category-slider.fade-up {
  opacity: 0;
  transform: translateX(-50%) translateY(18px);
}

.hero-category-slider.fade-up.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-category-slider__viewport {
  overflow: hidden;
}

.hero-category-slider__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.hero-category-slide {
  position: relative;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 20px 24px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.93) 0%, rgba(248,251,255,0.90) 100%);
  border: 1px solid rgba(217, 232, 245, 0.95);
  box-shadow: 0 14px 28px rgba(22, 74, 124, 0.10);
  backdrop-filter: blur(6px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.hero-category-slide.is-active {
  border-color: rgba(47, 124, 202, 0.32);
  box-shadow: 0 18px 32px rgba(22, 74, 124, 0.13);
}

.hero-category-slide__icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.08) 100%),
    linear-gradient(135deg, rgba(13,43,162,0.08) 0%, rgba(27,99,171,0.12) 100%);
  border: 1px solid rgba(47, 124, 202, 0.12);
}

.hero-category-slide__icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-category-slide__icon--first {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(13,43,162,0.72) 0%, rgba(26,61,184,0.92) 100%);
}

.hero-category-slide__icon--regular {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(26,61,184,0.70) 0%, rgba(13,43,162,0.90) 100%);
}

.hero-category-slide__icon--second {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(13,43,162,0.70) 0%, rgba(8,30,115,0.90) 100%);
}

.hero-category-slide__icon--careerup {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(13,43,162,0.72) 0%, rgba(8,30,115,0.94) 100%);
}

.hero-category-slide__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-category-slide__label {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
}

.hero-category-slide__sub {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.hero-category-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1A3DB8 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(13, 43, 162, 0.22);
}

.hero-category-slider__nav span {
  display: block;
  line-height: 1;
  transform: translateY(-2px);
}

.hero-category-slider__nav--prev {
  left: -18px;
}

.hero-category-slider__nav--next {
  right: -18px;
}

.hero-category-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.hero-category-slider__dot {
  width: 32px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-category-slider__dot.is-active {
  background: var(--primary);
  transform: scaleX(1.08);
}

.hero-kv__type-visual-image,
.hero-visual-stage__ghost-image {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.hero-kv__type-visual,
.hero-visual-stage__ghost {
  will-change: transform, opacity;
}

.hero-kv__type-visual-image,
.hero-visual-stage__ghost-image {
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    filter 0.42s ease;
  will-change: transform, opacity, filter;
}

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

.hero-category-slide__icon--challenge {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(26,61,184,0.72) 0%, rgba(8,30,115,0.94) 100%);
}

.hero-category-slide__icon--better {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(13,43,162,0.72) 0%, rgba(8,30,115,0.94) 100%);
}

.cards-3,
.cards-4,
.flow,
.voice-grid,
.service-grid,
.service-process,
.problem-points {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flow {
  grid-template-columns: repeat(5, 1fr);
}

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

.service-process {
  grid-template-columns: repeat(5, 1fr);
}

.card,
.case-card,
.solution-box,
.problem-box,
.offer-box,
.service-step,
.flow-step,
.issue-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card {
  padding: 24px;
}

.card h3,
.case-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.card p,
.card li,
.case-card p,
.case-card blockquote {
  color: var(--muted);
  font-size: 15px;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.reason-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #E8EDFF;
  color: #0D2BA2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  white-space: nowrap;
}

.reason-metric {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #081E73;
  margin-bottom: 10px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.check-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  background: var(--surface-soft);
  border-radius: 16px;
}

.check-item__mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-weight: 800;
}

.case-card {
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(231, 242, 253, 0.75) 0%, rgba(231, 242, 253, 0.16) 22%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.94) 100%);
  border: 1px solid rgba(207, 227, 247, 0.95);
  box-shadow: 0 16px 36px rgba(20, 56, 90, 0.08);
}

.case-card__head {
  margin-bottom: 18px;
}

.case-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.case-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text);
}

.case-card__change {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 10px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252,254,255,0.98) 100%);
  border-radius: 24px;
}

.case-card__stage {
  padding: 16px 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(217, 232, 245, 0.95);
  background: rgba(255, 255, 255, 0.96);
}

#case .case-card__stage--before {
  background: linear-gradient(180deg, #f8fbfe 0%, #f3f7fb 100%);
  border-color: #d7e6f3;
}

#case .case-card__stage--after {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fd 100%);
  border-color: #d2e3f3;
}

.case-card__stage-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.case-card__stage strong {
  display: block;
  font-size: 20px;
  line-height: 1.45;
  color: var(--text);
}

.case-card__arrow {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #b4d4e8fa 100%);
  box-shadow: 0 12px 22px rgba(13, 43, 162, 0.18);
}

.case-card__arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-card__bottom {
  display: grid;
  gap: 14px;
}

.case-card__salary {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.case-card__salary span {
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.case-card__quote {
  margin: 0;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(231, 242, 253, 0.78);
  border: 1px solid #cfe3f7;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.type-cards {
  gap: 20px;
}

.type-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 22px 22px 20px;
  border-radius: 28px;
  border: 1px solid rgba(207, 227, 247, 0.95);
  background:
    radial-gradient(circle at top right, rgba(231, 242, 253, 0.95) 0%, rgba(231, 242, 253, 0.28) 22%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.94) 100%);
  box-shadow: 0 14px 34px rgba(20, 56, 90, 0.08);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.type-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,162,0.06), rgba(47,124,202,0));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.type-link:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 43, 162, 0.30);
  box-shadow: 0 22px 42px rgba(20, 56, 90, 0.12);
}

.type-link:hover::before {
  opacity: 1;
}

.type-link__meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.type-link__body {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-right: 54px;
}

.type-link__body strong {
  display: block;
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.type-link__body span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.type-link__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #1A3DB8 100%);
  box-shadow: 0 12px 22px rgba(13, 43, 162, 0.22);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.type-link:hover .type-link__arrow {
  transform: translate(2px, -2px) scale(1.04);
  box-shadow: 0 16px 28px rgba(47, 124, 202, 0.28);
}

.type-link__arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-step,
.flow-step {
  padding: 24px 18px;
  text-align: center;
}

.service-step strong,
.flow-step span {
  display: block;
  color: var(--primary-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.service-step span,
.flow-step strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border: 0;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-item.is-open .faq-a {
  max-height: 180px;
  border-top: 1px solid var(--line);
}

.faq-a__inner {
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta {
  padding: 88px 0 120px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(135deg, #0A2388 0%, #1233A8 100%);
  color: #fff;
  border-radius: 36px;
  padding: 40px 44px;
  box-shadow:
    0 24px 48px rgba(10, 26, 74, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.cta-box h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.cta-box__panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 22px;
}

.cta-box__panel ul {
  margin: 0 0 18px;
  padding-left: 18px;
}

.cta-box .btn--secondary {
  width: 100%;
  background: #fff;
  color: var(--primary-dark);
  border-color: transparent;
}

.cta-eyebrow {
  background: rgba(255, 255, 255, 0.92);
  color: #081E73;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 18px rgba(8, 30, 115, 0.10);
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(24px);
  z-index: 50;
  width: min(calc(100% - 24px), 860px);
  padding: 10px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(37, 69, 130, 0.96) 0%, rgba(18, 45, 110, 0.98) 100%);
  color: #fff;
  box-shadow:
    0 18px 36px rgba(8, 23, 66, 0.24),
    0 8px 18px rgba(13, 43, 162, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 22%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 82% 78%, rgba(110,145,230,0.16) 0%, rgba(110,145,230,0) 24%);
  pointer-events: none;
}

.floating-cta.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-cta__text {
  min-width: 0;
}

.floating-cta__inner--catchy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.floating-cta__text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.floating-cta__text span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.floating-cta__button {
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0D2BA2 0%, #1A3DB8 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow:
    0 14px 26px rgba(13, 43, 162, 0.30),
    0 0 0 5px rgba(13,43,162,0.10);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  white-space: nowrap;
}

.floating-cta__button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 18px 30px rgba(13, 43, 162, 0.34),
    0 0 0 7px rgba(13,43,162,0.12);
  filter: brightness(1.03);
}

.floating-cta__button-arrow {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.footer {
  padding: 40px 0 110px;
  font-size: 13px;
  color: var(--muted);
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fv-reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

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

.hero-kv__benefits .fv-reveal.is-visible {
  transform: translateY(0) scale(1);
}

.hero-kv__benefits .fv-reveal {
  transform: translateY(18px) scale(0.98);
}

.emphasis-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--primary-dark);
}

.emphasis-line__icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.emphasis-line__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.emphasis-line__text {
  position: relative;
  z-index: 0;
}

.emphasis-line__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.42em;
  background: linear-gradient(90deg, rgba(97,171,255,0.30), rgba(97,171,255,0.18));
  border-radius: 999px;
  z-index: -1;
}

.compact-story {
  padding-top: 72px;
  padding-bottom: 72px;
}

.compact-story__visual {
  width: min(100%, 420px);
  margin: 22px auto 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(207, 227, 247, 0.95);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.94) 100%);
  box-shadow: 0 14px 30px rgba(20, 56, 90, 0.08);
}

.compact-story__visual-image {
  display: block;
  width: 100%;
  height: auto;
}

.compact-story__box {
  padding: 34px 32px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.94) 100%);
  border: 1px solid rgba(207, 227, 247, 0.95);
  border-radius: 32px;
  box-shadow: 0 16px 38px rgba(20, 56, 90, 0.08);
}

.compact-story__title {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--text);
}

.compact-story__group {
  margin-top: 24px;
}

.compact-story__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.compact-story__chip {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 232, 245, 0.95);
  box-shadow: 0 10px 22px rgba(20, 56, 90, 0.06);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.compact-story__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 22px;
}

.compact-story__arrow-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(239,246,255,0.96) 100%);
  border: 1px solid rgba(190, 216, 242, 0.95);
  box-shadow:
    0 10px 24px rgba(20, 56, 90, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  animation: storyArrowFloat 1.8s ease-in-out infinite;
}

.compact-story__arrow-circle svg {
  width: 24px;
  height: 24px;
  stroke: #7aa7d6;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@keyframes storyArrowFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.compact-story__risk {
  padding: 22px 20px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.88) 0%, rgba(248, 252, 255, 0.96) 100%);
  border: 1px solid rgba(190, 216, 242, 0.95);
}

.compact-story__risk-copy {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.35;
  font-weight: 800;
  color: #245c96;
}

.compact-story__chip--risk {
  background: rgba(255,255,255,0.96);
  border-color: rgba(190, 216, 242, 0.95);
}

.compact-story__solution {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface-soft);
  border: 1px solid rgba(207, 227, 247, 0.95);
}

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

.compact-story__list li {
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.compact-story__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
}

.compact-story__emphasis {
  margin-top: 20px;
}

.reason-visual {
  margin: 0 0 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(207, 227, 247, 0.95);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.95) 100%);
  box-shadow: 0 10px 22px rgba(20, 56, 90, 0.06);
}

.reason-visual__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.reason-metric {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

#reason .card {
  display: flex;
  flex-direction: column;
}

.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.reason-card__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.reason-card__text {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reason-card__visual {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(207, 227, 247, 0.95);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.95) 100%);
  box-shadow: 0 10px 22px rgba(20, 56, 90, 0.06);
  order: 0;
}

.reason-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card--reason .reason-label {
  margin-bottom: 10px;
}

.card--reason .reason-metric {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 10px;
}

.card--reason h3 {
  margin: 0 0 12px;
}

.card--reason p {
  margin-top: 0;
}

.card--reason ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.card--reason .emphasis-line {
  margin-top: auto;
  padding-top: 16px;
}

#reason .card .emphasis-line {
  margin-top: auto;
  padding-top: 14px;
}
#reason .card p.reason-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.case-card__visual {
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(207, 227, 247, 0.95);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.95) 100%);
  box-shadow: 0 10px 22px rgba(20, 56, 90, 0.06);
}

.case-card__visual-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.compact-story__visual-row {
  display: block;
}
.reason-list {
  display: grid;
  gap: 32px;
}

.type-slider {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 56px;
}

.type-slider__viewport {
  overflow: hidden;
  padding: 0 18px;
}

.type-slider__track {
  display: flex;
  gap: 10px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.type-slide {
  flex: 0 0 calc((100% - 15px) / 3);
  min-width: 0;
  position: relative;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.type-slide__visual {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(207, 227, 247, 0.95);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.94) 100%);
  box-shadow: 0 16px 36px rgba(20, 56, 90, 0.10);
}

.type-slide__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.type-slide__caption {
  position: relative;
  margin: -34px 6px 0;
  padding: 16px 18px 16px 72px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(207, 227, 247, 0.95);
  box-shadow: 0 14px 28px rgba(20, 56, 90, 0.10);
  min-height: 132px;
  display: flex;
  align-items: center;
}

.type-slide__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, #1A3DB8 100%);
  box-shadow: 0 10px 18px rgba(13, 43, 162, 0.18);
}

.type-slide__icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.type-slide__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.type-slide__text strong {
  display: block;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text);
  min-height: 2.8em;
}

.type-slide__text span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  min-height: 2.9em;
}

.type-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-46%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1A3DB8 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(13, 43, 162, 0.22);
  cursor: pointer;
}

.type-slider__nav--prev {
  left: 0;
}

.type-slider__nav--next {
  right: 0;
}

.type-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.type-slider__dot {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 43, 162, 0.20);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.type-slider__dot.is-active {
  background: var(--primary);
  transform: scaleX(1.05);
}

/* =========================
   Case Slider
========================= */
.case-slider {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 20px; /* 56px → 28px */
}

.case-slider__viewport {
  overflow: hidden;
  padding: 0 2px; /* 18px → 8px */
}

.case-slider__track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.case-slide {
  flex: 0 0 calc((100% - 18px) / 2);
  min-width: 0;
}

.case-slide .case-card {
  height: 100%;
}

.case-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-46%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1A3DB8 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(13, 43, 162, 0.22);
  cursor: pointer;
}

.case-slider__nav--prev {
  left: 0;
}

.case-slider__nav--next {
  right: 0;
}

.case-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.case-slider__dot {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 43, 162, 0.20);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.case-slider__dot.is-active {
  background: var(--primary);
  transform: scaleX(1.05);
}

/* case-card 内の高さバランス調整 */
.case-slide .case-card__bottom {
  display: grid;
  gap: 14px;
}

.case-slide .case-card__quote {
  height: 100%;
}

.case-slide {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  display: block;
}

.case-slide:hover .case-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 56, 90, 0.12);
  border-color: rgba(13, 43, 162, 0.22);
}

.case-slide .case-card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.service-process {
  position: relative;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-process--enhanced {
  position: relative;
}

.service-step {
  position: relative;
  padding: 22px 20px 20px;
  text-align: left;
  border-radius: 28px;
  border: 1px solid rgba(207, 227, 247, 0.95);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,251,255,0.96) 100%);
  box-shadow: 0 14px 32px rgba(20, 56, 90, 0.08);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.service-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(231,242,253,0.95) 0%, rgba(231,242,253,0.40) 55%, rgba(231,242,253,0) 100%);
  pointer-events: none;
}

.service-step:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 124, 202, 0.28);
  box-shadow: 0 22px 42px rgba(20, 56, 90, 0.12);
}

.service-step__top,
.service-step__body {
  position: relative;
  z-index: 1;
}

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

.service-step__badge {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #1A3DB8 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 20px rgba(13, 43, 162, 0.20);
}

.service-step__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 124, 202, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.service-step__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-dark);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-step__body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
  color: var(--text);
}

.service-step__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.service-step__line {
  position: absolute;
  top: 46px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47,124,202,0.45) 0%, rgba(47,124,202,0.12) 100%);
  z-index: 2;
}

.service-step__line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(47,124,202,0.42);
  border-right: 2px solid rgba(47,124,202,0.42);
  transform: translateY(-50%) rotate(45deg);
}

.service-emphasis {
  margin-top: 28px;
}

.cta-box--catchy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 84% 78%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 22%),
    linear-gradient(135deg, #0B2590 0%, #1637B0 100%);
  border-radius: 34px;
  padding: 40px 36px;
}

.cta-box__content {
  position: relative;
  z-index: 1;
}

.cta-box__content h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.cta-box__lead {
  margin: 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.80);
}

.cta-box__panel--catchy {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px 28px 22px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 8px 20px rgba(8, 24, 74, 0.08);
  backdrop-filter: blur(10px);
}

.cta-box__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.cta-mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta-mini-badge--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
}

.cta-mini-badge,
.cta-mini-badge--light {
  background: rgba(255, 255, 255, 0.94);
  color: #081E73;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 18px rgba(8, 30, 115, 0.10);
}

.cta-point-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.cta-point-list li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.cta-point-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.2;
}

.cta-main-btn {
  width: 100%;
  min-height: 88px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow:
    0 12px 24px rgba(14, 46, 83, 0.14),
    0 0 0 6px rgba(255,255,255,0.04);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.cta-main-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 18px 32px rgba(14, 46, 83, 0.18),
    0 0 0 12px rgba(255,255,255,0.07);
}

.cta-main-btn__arrow {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.cta-box__note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a__inner {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-a {
  border-top: 1px solid var(--line);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border: 0;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.faq-q span:last-child {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
  color: var(--text);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fbfdff;
}

.faq-item.is-open .faq-a {
  border-top: 1px solid rgba(217, 232, 245, 0.9);
}

.faq-a__inner {
  padding: 18px 22px 22px;
  color: #4f6477;
  font-size: 15px;
  line-height: 1.95;
}

.case-card__salary-arrow {
  display: inline-block;
  margin: 0 6px;
  transform: translateY(-0.06em);
  font-size: 0.95em;
  line-height: 1;
}


@media (prefers-reduced-motion: reduce) {
  .fv-reveal,
  .fv-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (min-width: 1025px) {
  .hero-kv__content {
    width: min(1040px, 100%);
  }

  .hero-visual-stack {
    width: min(1040px, 100%);
    margin: 16px auto 0;
    padding-bottom: 124px;
  }
  .hero-kv__type-visual {
    margin: 40px auto 0;
    width: min(760px, 78vw);
    border-radius: 36px;
    box-shadow: 0 26px 56px rgba(20, 56, 90, 0.2);
  }

  .hero-visual-stage__ghost--right {
    top: 38px;
    right: 2%;
    width: min(260px, 24vw);
    opacity: 0.8;
    transform: scale(0.95);
  }

  .hero-visual-stage__ghost--left {
    top: 72px;
    left: 2%;
    width: min(230px, 21vw);
    opacity: 0.70;
    transform: scale(0.9);
  }

  .hero-category-slider {
    width: min(860px, calc(100% - 24px));
  }

  .hero-category-slide {
    min-height: 96px;
    padding: 20px 24px 18px;
    border-radius: 28px;
  }

  .hero-category-slide__icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .hero-category-slide__label {
    font-size: 24px;
  }

  .hero-category-slide__sub {
    font-size: 13px;
  }

  .hero-category-slider {
    bottom: 18px;
  }

  .hero-category-slider__nav {
    top: 50%;
    transform: translateY(-60%);
  }

  .hero-category-slider__nav span {
    transform: translateY(-2px);
  }

  .hero-category-slider__nav--prev {
    left: -18px;
  }

  .hero-category-slider__nav--next {
    right: -18px;
  }

}

@media (min-width: 768px) {
  .header__inner {
    justify-content: flex-start;
    gap: 36px;
  }

  .nav {
    margin-left: 12px;
    gap: 34px;
    font-size: 17px;
    font-weight: 700;
  }

  .header-cta {
    margin-left: auto;
  }
  .compact-story__title {
    margin-bottom: 12px;
  }
}

@media (max-width: 1024px) {
  .hero--kv {
    min-height: 700px;
    padding: 28px 0 72px;
  }

  .hero-bg__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(248, 251, 255, 0.88) 0%,
        rgba(248, 251, 255, 0.74) 34%,
        rgba(248, 251, 255, 0.28) 70%,
        rgba(248, 251, 255, 0.12) 100%
      ),
      linear-gradient(
        180deg,
        rgba(16, 45, 72, 0.08) 0%,
        rgba(16, 45, 72, 0.16) 100%
      );
  }

  .hero-kv__content {
    width: min(760px, 100%);
  }

  .hero-kv__title {
    font-size: clamp(44px, 8vw, 72px);
    max-width: none;
  }

  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

  .cards-4,
  .flow,
  .voice-grid,
  .service-grid,
  .service-process,
  .cta-box {
    grid-template-columns: 1fr 1fr;
  }

  .type-cards--5 {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero-visual-stage__ghost {
    right: 10%;
  }

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

  .service-step__line {
    display: none;
  }
  .cta-box--catchy {
    padding: 34px 28px;
  }

  .cta-box__content h2 {
    font-size: clamp(30px, 5vw, 46px);
  }
}

@media (max-width: 767px) {
  .section,
  .cta {
    padding: 64px 0;
  }

  .header__inner {
    min-height: 60px;
    gap: 10px;
  }

  .logo {
    gap: 6px;
  }

  .logo__img {
    height: 60px;
  }

  .logo__text {
    font-size: 16px;
  }

  .header-cta {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
    line-height: 1;
  }

  .hero--kv {
    min-height: 700px;
    padding: 24px 0 70px;
    align-items: flex-start;
  }

  .hero-bg__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(248, 251, 255, 0.92) 0%,
        rgba(248, 251, 255, 0.82) 38%,
        rgba(248, 251, 255, 0.44) 72%,
        rgba(248, 251, 255, 0.20) 100%
      ),
      linear-gradient(
        180deg,
        rgba(16, 45, 72, 0.08) 0%,
        rgba(16, 45, 72, 0.16) 100%
      );
  }

  .hero-bg__image--pc {
    display: none;
  }

  .hero-bg__image--sp {
    display: block;
  }

  .hero-kv__title {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .hero-kv__title-break {
    display: block;
  }

  .hero-kv__title-line {
    white-space: normal;
  }

  .hero-kv__result {
    min-height: 46px;
    padding: 0 18px;
    font-size: 18px;
  }

  .hero-kv__lead {
    margin: 0 0 5px;
    font-size: 18px;
  }

  .hero-kv__subarea {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 12px;
    margin: 0 0 14px;
  }

  .hero-kv__actions {
    order: 1;
    margin: 0;
  }

  .hero-kv__actions .btn {
    width: auto !important;
    min-width: 150px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-kv__benefits.hero-kv__benefits--compact {
    order: 2;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    justify-self: end;
  }

  .hero-kv__benefits.hero-kv__benefits--compact li {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 0 0 0 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    letter-spacing: -0.03em;
    text-align: left;
  }

  .hero-kv__benefits.hero-kv__benefits--compact li::before {
    width: 12px;
    height: 12px;
    left: 0;
    top: 0.08em;
  }

  .hero-kv__benefits.hero-kv__benefits--compact li::after {
    left: 3px;
    top: 0.4em;
    font-size: 7px;
    line-height: 1;
  }

  .hero-visual-stack {
    width: 100%;
    margin-top: 6px;
    padding-bottom: 86px;
  }

  .hero-visual-stage {
    min-height: 300px;
    perspective: 1000px;
  }

  .hero-kv__type-visual {
    width: min(250px, 72vw);
    border-radius: 22px;
  }

  .hero-visual-stage__ghost {
    width: min(130px, 34vw);
    border-radius: 18px;
  }

  .hero-stage-pos-center {
    transform: translateX(-50%) translateY(18px) scale(1) rotateY(0deg);
    opacity: 1;
  }

  .hero-stage-pos-right {
    transform: translateX(114px) translateY(28px) scale(0.78) rotateY(-8deg);
    opacity: 0.56;
  }

  .hero-stage-pos-left {
    transform: translateX(-180px) translateY(48px) scale(0.62) rotateY(8deg);
    opacity: 0.34;
  }

  .hero-category-slider {
    position: absolute;
    z-index: 10;
    left: 50%;
    right: auto;
    bottom: -22px;
    transform: translateX(-50%);
    width: min(100%, 360px);
    padding: 0 12px;
  }

  .hero-category-slider.fade-up {
    transform: translateX(-50%) translateY(18px);
  }

  .hero-category-slider.fade-up.is-show {
    transform: translateX(-50%) translateY(0);
  }

  .hero-category-slide {
    min-height: 72px;
    padding: 14px 16px 13px;
    border-radius: 20px;
    gap: 10px;
  }

  .hero-category-slide__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .hero-category-slide__icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-category-slide__label {
    font-size: 15px;
    line-height: 1.2;
  }

  .hero-category-slide__sub {
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-category-slider__nav {
    width: 40px;
    height: 40px;
    top: 45%;
    transform: translateY(-50%);
  }

  .hero-category-slider__nav--prev {
    left: -12px;
  }

  .hero-category-slider__nav--next {
    right: -12px;
  }

  .cards-3,
  .cards-4,
  .flow,
  .voice-grid,
  .service-grid,
  .service-process {
    grid-template-columns: 1fr;
  }
  .type-cards--5 {
    grid-template-columns: 1fr;
  }
  .card,
  .case-card,
  .service-step,
  .flow-step {
    padding-left: 20px;
    padding-right: 20px;
  }

  .floating-cta {
    width: min(calc(100% - 16px), 420px);
    padding: 8px;
    bottom: 10px;
    border-radius: 22px;
  }

  .floating-cta__inner--catchy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .floating-cta__text strong {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 3px;
  }

  .floating-cta__text span {
    font-size: 11px;
    line-height: 1.45;
  }

  .floating-cta__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 17px;
  }

  .footer {
    padding-bottom: 120px;
  }

  .compact-story {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .compact-story__visual {
    width: 100%;
    max-width: 320px;
    margin: 18px auto 20px;
    border-radius: 20px;
  }

  .compact-story__box {
    padding: 24px 20px 22px;
    border-radius: 26px;
  }

  .compact-story__title {
    font-size: 26px;
    line-height: 1.35;
  }

  .compact-story__group {
    margin-top: 18px;
  }

  .compact-story__chips {
    gap: 10px;
  }

  .compact-story__chip {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 15px;
  }

  .compact-story__arrow {
    margin: 14px 0;
    font-size: 24px;
  }

  .compact-story__risk {
    padding: 18px 14px 14px;
    border-radius: 20px;
  }

  .compact-story__risk-copy {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .compact-story__solution {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .compact-story__list {
    gap: 10px;
  }

  .compact-story__list li {
    padding-left: 34px;
    font-size: 15px;
    line-height: 1.5;
  }

  .compact-story__list li::before {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .type-cards {
    gap: 16px;
  }

  .type-link {
    min-height: 156px;
    padding: 18px;
    border-radius: 24px;
  }

  .type-link__meta {
    min-height: 24px;
    padding: 0 10px;
    font-size: 10px;
  }

  .type-link__body {
    margin-top: 14px;
    padding-right: 48px;
  }

  .type-link__body strong {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.4;
  }

  .type-link__body span {
    font-size: 14px;
    line-height: 1.6;
  }

  .type-link__arrow {
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }

  .type-link__arrow svg {
    width: 18px;
    height: 18px;
  }

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

  .case-card h3 {
    font-size: 20px;
  }

  .case-card__change {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 8px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252,254,255,0.98) 100%);
    border-radius: 20px;
  }

  .case-card__arrow {
    width: 38px;
    height: 38px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .case-card__stage {
    padding: 14px 14px 13px;
    border-radius: 18px;
  }

  .case-card__stage strong {
    font-size: 18px;
  }

  .case-card__salary {
    font-size: 14px;
  }

  .case-card__salary span {
    font-size: 20px;
  }

  .case-card__quote {
    padding: 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.7;
  }
    .reason-visual {
    margin-bottom: 14px;
    border-radius: 16px;
  }
  .cards-3 {
    gap: 24px;
  }

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

  .reason-card__content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reason-card__visual {
    order: -1;
  }

  .reason-card__img {
    aspect-ratio: 16 / 9;
  }
  .case-card__visual {
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .case-card__visual-image {
    aspect-ratio: 16 / 10;
  }
  .reason-list {
    gap: 24px;
  }
  .type-slider {
    padding: 0 10px;
  }

  .type-slider__viewport {
    padding: 0 8px;
  }

  .type-slider__track {
    gap: 14px;
  }

  .type-slide {
    flex: 0 0 calc(100% - 16px);
  }

  .type-slide__visual {
    border-radius: 26px;
  }

  .type-slide__image {
    aspect-ratio: 3 / 4;
  }

  .type-slide__icon {
    left: 14px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .type-slide__icon svg {
    width: 20px;
    height: 20px;
  }

  .type-slide__text strong {
    font-size: 17px;
    line-height: 1.35;
    min-height: 2.9em;
  }

  .type-slide__text span {
    font-size: 11px;
    line-height: 1.4;
    min-height: 2.8em;
  }

  .type-slide__caption {
    margin: -28px 0 0;
    padding: 14px 14px 14px 64px;
    min-height: 108px;
  }

  .type-slider__nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .type-slider__nav--prev {
    left: -6px;
  }

  .type-slider__nav--next {
    right: -6px;
  }

  .type-slider__dot {
    width: 28px;
    height: 4px;
  }

  .case-slider {
    padding: 0 8px;
  }

  .case-slider__viewport {
    padding: 0;
  }

  .case-slider__track {
    gap: 12px;
  }

  .case-slide {
    flex: 0 0 100%;
  }

  .case-slider__nav {
    width: 40px;
    height: 40px;
    top: 45%;
    transform: translateY(-50%);
  }

  .case-slider__nav--prev {
    left: -2px;
  }

  .case-slider__nav--next {
    right: -2px;
  }

  .case-slider__dots {
    margin-top: 16px;
  }


  .service-process {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-step {
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .service-step::before {
    height: 60px;
  }

  .service-step__top {
    margin-bottom: 14px;
  }

  .service-step__badge {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .service-step__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .service-step__icon svg {
    width: 24px;
    height: 24px;
  }

  .service-step__body h3 {
    font-size: 20px;
  }

  .service-step__body p {
    font-size: 13px;
    line-height: 1.7;
  }

  .service-emphasis {
    margin-top: 20px;
  }
    .cta-box--catchy {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .cta-box__content h2 {
    margin: 12px 0 12px;
    font-size: 24px;
    line-height: 1.3;
  }

  .cta-box__lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .cta-box__panel--catchy {
    padding: 18px 16px 16px;
    border-radius: 22px;
    width: 100%;
    margin: 0 auto;
  }

  .cta-point-list {
    gap: 8px;
  }

  .cta-point-list li {
    font-size: 15px;
  }

  .cta-main-btn {
    min-height: 58px;
    font-size: 16px;
  }

  .cta-box__note {
    font-size: 11px;
  }
  .cta-box.cta-box--catchy {
    display: block;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .cta-box__content {
    width: 100%;
    margin: 0 0 20px;
  }

  .cta-box__panel.cta-box__panel--catchy {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 18px 18px;
    border-radius: 22px;
    box-sizing: border-box;
  }
  .cta-main-btn {
    min-height: 84px;
    font-size: 16px;
  }
}

/* =========================
   Story visual overlay (PC only)
========================= */
.compact-story__visual--wide {
  position: relative;
}

.compact-story__visual-overlay {
  display: none;
}

.compact-story__chip--overlay {
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 16px 18px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(193, 216, 238, 0.9);
  box-shadow: 0 12px 24px rgba(20, 56, 90, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 1025px) {
  .compact-story__visual-row {
    display: block;
  }

  .compact-story__group {
    display: none;
  }

  .compact-story__visual.compact-story__visual--wide {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
  }

  .compact-story__visual.compact-story__visual--wide .compact-story__visual-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center;
  }

  .compact-story__visual-overlay {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: calc(100% - 64px);
    z-index: 3;
    background: transparent;
  }
}