@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Roboto:wght@300;400;900&display=swap");

:root {
  --c-navy: #0a1442;
  --c-navy-deep: #04104a;
  --c-orange: #ff6c00;
  --c-orange-light: #f9b100;
  --c-text: #333333;
  --c-text-light: #666666;
  --c-bg-gray: #f8f8f8;
  --container-w: 1100px;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------
   Section common
------------------------------- */
section {
  position: relative;
}

.section-bg {
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

section.section-bg {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.stage {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* ------------------------------
   Header
------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.site-header .stage {
  aspect-ratio: 2200 / 149;
}

.site-header .logo {
  position: absolute;
  left: 19.64%;
  top: 28.2%;
  width: 14.4%;
}

.header-btns {
  position: absolute;
  left: 64%;
  top: 25.6%;
  width: 15%;
  height: 42.2%;
  display: flex;
  gap: 4%;
}

.header-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  gap: 4px;
}

.header-btn::after {
  content: ">";
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-left: 4px;
}

.header-btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #ff8d00, #ff6c00);
}

.header-btn--secondary {
  color: var(--c-navy);
  background-color: #fff;
  border: 2px solid var(--c-navy);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .en-label {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--c-orange);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-navy);
}

.section-head p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--c-text-light);
}

.section-head--light .section-head h2,
.section-head--light p {
  color: #fff;
}

/* ------------------------------
   Buttons
------------------------------- */
.btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 250px;
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

@media (hover: hover) {
  .header-btn {
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .header-btn--primary:hover {
    background: linear-gradient(90deg, #ffaa30, #ff8520);
  }
  .header-btn--secondary:hover {
    background: var(--c-navy);
    color: #fff;
    border-color: var(--c-navy);
  }

  .fv-cta {
    transition: filter 0.2s ease;
  }
  .fv-cta:hover {
    filter: brightness(1.15);
  }

  .btn-primary {
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .btn-primary:hover {
    filter: brightness(1.1);
  }

  .btn-outline {
    transition: background 0.2s ease;
  }
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  .cv-banner__btn,
  .lastcv-btn {
    transition: filter 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .cv-banner__btn--primary:hover {
    filter: brightness(1.12);
    transform: translateX(-50%);
    box-shadow: 0 10px 32px rgba(255, 110, 0, 0.4), 0 4px 12px rgba(255, 110, 0, 0.25);
  }
  .lastcv-btn--primary:hover {
    filter: brightness(1.12);
    box-shadow: 0 10px 32px rgba(255, 110, 0, 0.4), 0 4px 12px rgba(255, 110, 0, 0.25);
  }
  .cv-banner__btn--outline:hover,
  .lastcv-btn--outline:hover {
    background: rgba(255, 255, 255, 0.18);
  }
}

.btn-primary {
  background: linear-gradient(90deg, #ff8a00, #ff5e00);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 108, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn .arrow {
  font-size: 14px;
}

.check-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 14px;
  color: #fff;
}

.check-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-row .check-icon {
  width: 18px;
  height: 18px;
}

/* ------------------------------
   FV
------------------------------- */
.fv .stage {
  aspect-ratio: 2200 / 1000;
}

.fv-label {
  position: absolute;
  left: 19.45%;
  top: 7.00%;
  width: 30%;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 0.15em;
  color: #fff;
}

.fv-heading {
  position: absolute;
  left: 19.5%;
  top: 12.14%;
  width: 45%;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.fv-heading__line1,
.fv-heading__line2 {
  display: block;
  font-size: clamp(26px, 3.2vw, 50px);
}

.fv-heading__line2 {
  letter-spacing: 0.1em;
}

.fv-heading__line1 {
  background: linear-gradient(90deg, #ffffff, #a7c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fv-heading__highlight {
  background: linear-gradient(90deg, #ff9000, #ff6600);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fv-heading__accent {
  color: #d7e3ff;
}

.fv-heading__punct {
  font-weight: 300;
}

.fv-heading__sp-br {
  display: none;
}

.fv-ai-icon {
  display: none;
}

.fv-lead {
  position: absolute;
  left: 19.5%;
  top: 32.02%;
  width: 38%;
  color: #fff;
  font-size: clamp(11px, 1.05vw, 16px);
  line-height: 1.9;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .fv-lead {
    font-size: clamp(9px, 1.05vw, 11px);
    line-height: 1.6;
  }
  .fv-points__item span {
    white-space: normal;
    font-size: clamp(7px, 0.95vw, 9px);
    line-height: 1.4;
  }
}

.fv-lead--sp {
  display: none;
}

.fv-lead__highlight {
  font-weight: 700;
  color: #ff8b00;
}

.fv-price {
  position: absolute;
  left: 59.3%;
  top: 56.78%;
  width: 23.2%;
  height: 10.00%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow:
    0 0 6px var(--c-navy),
    0 0 12px var(--c-navy),
    0 0 20px var(--c-navy);
  justify-content: center;
  text-align: center;
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

@media (min-width: 768px) {
  .fv-price {
    background: linear-gradient(90deg, transparent 0%, rgba(4, 16, 74, 0.55) 20%, rgba(4, 16, 74, 0.55) 80%, transparent 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0 12px;
  }
  .fv-price__note {
    text-shadow:
      0 0 4px #000,
      0 0 12px #000,
      0 0 28px var(--c-navy),
      0 0 56px var(--c-navy),
      0 0 90px rgba(4, 16, 74, 0.95);
  }
}

.fv-price__num {
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1;
}

.fv-price__yen {
  font-family: "Roboto", sans-serif;
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 900;
  margin-right: 4px;
}

.fv-price__note {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 8px;
  font-size: clamp(9px, 0.85vw, 12px);
  white-space: nowrap;
}

.fv-points {
  position: absolute;
  left: 18.86%;
  top: 46.92%;
  width: 38%;
  display: flex;
  justify-content: space-between;
}

.fv-points__item {
  box-sizing: border-box;
  width: 32%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #fff;
  background: linear-gradient(90deg, rgba(30, 83, 171, 0.46), rgba(4, 19, 74, 0.46));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6%;
}

.fv-points__item span {
  font-size: clamp(9px, 0.95vw, 14px);
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  white-space: nowrap;
}

.fv-caption {
  position: absolute;
  left: 23.59%;
  top: 77.83%;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 32px);
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(13px, 1.25vw, 18px);
  text-align: center;
}

.fv-caption__break {
  display: none;
}

.fv-caption::before,
.fv-caption::after {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 24px;
  background: url(../images/chon_03.png) no-repeat center / contain;
  transform: scaleY(-1);
}

.fv-caption::before {
  transform: scale(-1, -1);
}

.fv-cta-group {
  position: absolute;
  top: 84.46%;
  left: 24.5%;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.fv-cta-arrow {
  height: 30px;
  width: auto;
  flex-shrink: 0;
  transform: translateY(-6px);
}

.fv-cta {
  flex-shrink: 0;
  width: auto;
  height: auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.3vw, 19px);
  background: linear-gradient(90deg, #ffaa00, #ff5800);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.65),
    inset 0 -3px 4px rgba(0, 0, 0, 0.3),
    0 3px 6px rgba(0, 0, 0, 0.3);
}

.fv-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  white-space: nowrap;
}

.fv-widget__arrow {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
}

.fv-widget__break {
  display: none;
}

/* ------------------------------
   こんな経営課題
------------------------------- */
.kadai .stage {
  aspect-ratio: 2200 / 1000;
}

.kadai-heading {
  position: absolute;
  left: 28.73%;
  top: 17.10%;
  width: 42.55%;
  text-align: center;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kadai-heading__break {
  display: none;
}

.kadai-line {
  position: absolute;
  left: 41.32%;
  top: 26.7%;
  width: 17.36%;
  height: 0.8%;
  background-color: #ff8d00;
}

.kadai-icon {
  position: absolute;
  top: 30.00%;
  width: 4.32%;
}

.kadai-icon--left {
  left: 28.50%;
}

.kadai-icon--right {
  left: 67.59%;
  transform: scaleX(-1);
}

.kadai-illust {
  position: absolute;
  left: 45.05%;
  top: 47.90%;
  width: 10.77%;
}

.kadai-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(11px, 1.05vw, 16px);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.6;
}

.kadai-card--01 {
  left: 42.73%;
  top: 34.40%;
  width: 16.05%;
  height: 7.20%;
}

.kadai-card--02 {
  left: 24.45%;
  top: 49.00%;
  width: 12.41%;
  height: 7.20%;
}

.kadai-card--03 {
  left: 64.91%;
  top: 49.00%;
  width: 11.91%;
  height: 7.20%;
}

.kadai-card--04 {
  left: 30.50%;
  top: 78.70%;
  width: 15.59%;
  height: 7.20%;
}

.kadai-card--05 {
  left: 56.55%;
  top: 78.70%;
  width: 15.73%;
  height: 7.20%;
}

/* ------------------------------
   6軸
------------------------------- */
.rokujiku .stage {
  aspect-ratio: 2200 / 930;
}

.rokujiku-label {
  position: absolute;
  left: 15.4%;
  top: 11.7%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rokujiku-line {
  position: absolute;
  left: 13.5%;
  top: 18.8%;
  width: 0.45%;
  height: 14.6%;
  background-color: #ff8800;
}

.rokujiku-heading {
  position: absolute;
  left: 15.5%;
  top: 17.8%;
  width: 34%;
  font-size: clamp(18px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rokujiku-lead {
  position: absolute;
  left: 15.4%;
  top: 38.7%;
  width: 36%;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 500;
  line-height: 2;
  color: var(--c-text-light);
}

.rokujiku-lead--sp {
  display: none;
}

.rokujiku-illust {
  position: absolute;
  left: 29.1%;
  top: 60.2%;
  width: 19.6%;
}

.rokujiku-chart {
  position: absolute;
  left: 57.4%;
  top: 13.8%;
  width: 32.1%;
  height: 71.2%;
}

.rokujiku-chart__img {
  width: 100%;
  height: 100%;
}

.chart-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, 0);
}

.chart-label .pt {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(11px, 1.1vw, 16px);
  color: #ff6c00;
}

.chart-label .name {
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 700;
  color: var(--c-text-light);
  margin-top: 2px;
}

.chart-label--top {
  left: 51.6%;
  top: -2%;
}

.chart-label--right-top {
  left: 93.0%;
  top: 20%;
}

.chart-label--right-bottom {
  left: 93.0%;
  top: 62%;
}

.chart-label--bottom {
  left: 51.5%;
  top: 89%;
}

.chart-label--left-bottom {
  left: 8.5%;
  top: 62%;
}

.chart-label--left-top {
  left: 8.5%;
  top: 20%;
}

/* ------------------------------
   CV banner (re-used)
------------------------------- */
.cv-banner {
  position: relative;
}

.cv-banner .stage {
  aspect-ratio: 2200 / 522;
}

.cv-banner::before,
.cv-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0.38%;
  background-color: #fff;
}

.cv-banner::before {
  top: 1.53%;
}

.cv-banner::after {
  bottom: 2.11%;
}

.cv-banner__text--sp,
.lastcv-text--sp,
.riyuu-card__body--sp,
.role-card__body--sp {
  display: none;
}

.sp-menu {
  display: none;
}

.cv-banner__text {
  position: absolute;
  left: 29.4%;
  top: 21.6%;
  width: 41.3%;
  text-align: center;
  color: #fff;
  font-size: clamp(11px, 1.05vw, 16px);
  line-height: 1.9;
}

.cv-banner__btn {
  position: absolute;
  top: 44.6%;
  width: auto;
  height: auto;
  padding: 20px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 16px);
}

.cv-banner__btn--primary {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ffaa00, #ff5800);
  border-radius: 4px;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 24px rgba(255, 110, 0, 0.3), 0 2px 8px rgba(255, 110, 0, 0.18);
}

.btn-arrow {
  display: inline-block;
  width: 0.7em;
  height: 0.8em;
  margin-left: 0.6em;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.btn-arrow--outline {
  display: none;
}

.cv-banner__triangle {
  display: none;
}

.cv-banner__btn--outline {
  display: none;
}

.cv-banner__checks {
  position: absolute;
  top: 72.6%;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.cv-banner__check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 500;
  white-space: nowrap;
}

.cv-banner__check img {
  width: clamp(14px, 1.4vw, 20px);
}

/* ------------------------------
   3つの理由
------------------------------- */
.riyuu .stage {
  aspect-ratio: 2200 / 1005;
}

.riyuu-heading__break,
.riyuu-sub__break,
.zenshokushu-heading__break,
.zenshokushu-lead__break,
.step3-lead__break,
.stats-heading__break,
.stats-lead__break,
.rokujiku-heading__break,
.faq-question__break {
  display: none;
}

.stats-lead__pc-br {
  display: inline;
}

.riyuu-illust {
  position: absolute;
  left: 17.0%;
  top: 11.30%;
  width: 17.5%;
}

.riyuu-label {
  position: absolute;
  left: 73.2%;
  top: 13.16%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.riyuu-line {
  position: absolute;
  left: 84.36%;
  top: 20.99%;
  width: 0.45%;
  height: 13.6%;
  background-color: #ff8800;
}

.riyuu-heading__pc-br {
  display: inline;
}

.riyuu-heading {
  position: absolute;
  left: 45.3%;
  top: 19.42%;
  width: 38%;
  font-size: clamp(18px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.riyuu-sub {
  position: absolute;
  left: 47.2%;
  top: 37.96%;
  width: 36%;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 500;
  color: var(--c-text-light);
  text-align: right;
}

.riyuu-card__num {
  position: absolute;
  top: 52.10%;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 24px);
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.riyuu-card__title {
  position: absolute;
  top: 58.5%;
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.riyuu-card__body {
  position: absolute;
  top: 67.84%;
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--c-text-light);
}

.riyuu-card__highlight {
  font-weight: 700;
  color: #ff7b00;
}

.riyuu-card--01 .riyuu-card__num   { left: 18.0%; width: 5%; }
.riyuu-card--01 .riyuu-card__title { left: 17.6%; width: max-content; }
.riyuu-card--01 .riyuu-card__body  { left: 17.7%; width: 18.5%; }

.riyuu-card--02 .riyuu-card__num   { left: 40.8%; width: 5%; }
.riyuu-card--02 .riyuu-card__title { left: 40.8%; width: max-content; }
.riyuu-card--02 .riyuu-card__body  { left: 40.95%; width: 17.6%; }

.riyuu-card--03 .riyuu-card__num   { left: 63.9%; width: 5%; }
.riyuu-card--03 .riyuu-card__title { left: 63.9%; width: max-content; }
.riyuu-card--03 .riyuu-card__body  { left: 64.2%; width: 17.5%; }

/* ------------------------------
   全職種
------------------------------- */
.zenshokushu {
  position: relative;
}

.zenshokushu .stage {
  aspect-ratio: 2200 / 1187;
}

.zenshokushu::before,
.zenshokushu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0.17%;
  background-color: #fff;
}

.zenshokushu::before {
  top: 0.84%;
}

.zenshokushu::after {
  bottom: 0.84%;
}

.zenshokushu-icon {
  position: absolute;
  left: 17.59%;
  top: 5.31%;
  width: 15.18%;
}

.zenshokushu-label {
  position: absolute;
  left: 35.5%;
  top: 11.7%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 0.15em;
  color: #fff;
}

.zenshokushu-heading {
  position: absolute;
  left: 35.5%;
  top: 16.2%;
  width: 44%;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 700;
  color: #fff;
}

.zenshokushu-lead {
  position: absolute;
  left: 35.5%;
  top: 24.7%;
  width: 32%;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  line-height: 1.9;
  color: #c8d0e8;
}

/* role cards */
.role-card {
  position: absolute;
  width: 22.86%;
  height: 20.76%;
  background: #fff;
  border: 3px solid;
  border-image: linear-gradient(180deg, #113f8a, #da6700) 1;
}

.role-card--1 { left: 13.77%; top: 43.03%; }
.role-card--2 { left: 38.59%; top: 43.03%; }
.role-card--3 { left: 63.41%; top: 43.03%; }
.role-card--4 { left: 13.77%; top: 70.5%; }
.role-card--5 { left: 38.59%; top: 70.5%; }
.role-card--6 { left: 63.41%; top: 70.5%; }

.role-card__num {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-orange-light), var(--c-orange));
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 21px);
  color: #fff;
}

.role-card--1 .role-card__num,
.role-card--2 .role-card__num,
.role-card--3 .role-card__num { left: 48.7%; top: -8.7%; }

.role-card--4 .role-card__num,
.role-card--5 .role-card__num,
.role-card--6 .role-card__num { left: 48.7%; top: -9.3%; }

.role-card__title {
  position: absolute;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.role-card__body {
  position: absolute;
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--c-text-light);
}

.role-card--1 .role-card__title { left: 8.75%; top: 20.24%; }
.role-card--2 .role-card__title { left: 9.15%; top: 20.65%; }
.role-card--3 .role-card__title { left: 8.95%; top: 20.24%; }
.role-card--4 .role-card__title { left: 8.95%; top: 19.84%; }
.role-card--5 .role-card__title { left: 8.75%; top: 20.24%; }
.role-card--6 .role-card__title { left: 8.75%; top: 19.84%; }

.role-card--1 .role-card__body { left: 8.95%; top: 40.08%; width: 83.3%; }
.role-card--2 .role-card__body { left: 8.95%; top: 40.08%; width: 81.5%; }
.role-card--3 .role-card__body { left: 8.95%; top: 40.08%; width: 68.4%; }
.role-card--4 .role-card__body { left: 8.95%; top: 39.68%; width: 79.3%; }
.role-card--5 .role-card__body { left: 8.95%; top: 39.68%; width: 71.0%; }
.role-card--6 .role-card__body { left: 8.95%; top: 39.68%; width: 64.6%; }

@media (min-width: 768px) and (max-width: 1199px) {
  .role-card__body {
    font-size: 8px;
    line-height: 1.5;
  }

  .role-card--1 .role-card__body,
  .role-card--2 .role-card__body,
  .role-card--3 .role-card__body,
  .role-card--4 .role-card__body,
  .role-card--5 .role-card__body,
  .role-card--6 .role-card__body {
    width: 92%;
  }
}

/* ------------------------------
   3ステップ
------------------------------- */
.step3 .stage {
  aspect-ratio: 2200 / 1044;
}

.step3-label {
  position: absolute;
  left: 17.27%;
  top: 17.53%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step3-line {
  position: absolute;
  left: 15.4%;
  top: 22.9%;
  width: 0.45%;
  height: 13.7%;
  background-color: #ff8800;
}

.step3-heading {
  position: absolute;
  left: 17.23%;
  top: 23.08%;
  width: 32%;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step3-heading__sp-br {
  display: none;
}

.step3-lead {
  position: absolute;
  left: 17.27%;
  top: 40.23%;
  width: 43.1%;
  font-size: clamp(11px, 1vw, 15px);
  line-height: 1.9;
  font-weight: 500;
  color: var(--c-text-light);
}

.step3-pill {
  position: absolute;
  top: 64.90%;
  height: 4.69%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: clamp(11px, 1vw, 15px);
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: 1.5px solid #1c51a6;
  border-radius: 4px;
}

.step3-illust {
  position: absolute;
  left: 63.77%;
  top: 17.15%;
  width: 14.73%;
}

.step3-icon {
  position: absolute;
  top: 52.21%;
}

.step3-icon--1 {
  left: 20.82%;
  width: 4.5%;
}

.step3-icon--2 {
  left: 43.0%;
  width: 4.27%;
  top: 52.6%;
}

.step3-icon--3 {
  left: 67.8%;
  width: 5.86%;
  top: 55.08%;
}

.step3-arrow {
  position: absolute;
  top: 57.95%;
  width: 1.0%;
  height: 2.1%;
  background-color: #1c51a6;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.step3-arrow--1 {
  left: 32.32%;
}

.step3-arrow--2 {
  left: 56.36%;
}

.step3-title__sp-br {
  display: none;
}

.step3-title {
  position: absolute;
  top: 72.61%;
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 700;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.step3-body__sp-br {
  display: none;
}

.step3-body {
  position: absolute;
  top: 77.30%;
  font-size: clamp(10px, 0.9vw, 13px);
  line-height: 1.8;
  font-weight: 700;
  color: var(--c-text-light);
}

.step3-item--1 .step3-title,
.step3-item--1 .step3-body { left: 17.14%; }
.step3-item--1 .step3-pill  { left: 17.12%; width: 10.95%; }
.step3-item--1 .step3-body  { width: 16.41%; }

.step3-item--2 .step3-title,
.step3-item--2 .step3-body { left: 39.18%; }
.step3-item--2 .step3-pill  { left: 39.18%; width: 11.0%; }
.step3-item--2 .step3-body  { width: 22.23%; }

.step3-item--3 .step3-title,
.step3-item--3 .step3-body { left: 65.09%; }
.step3-item--3 .step3-pill  { left: 64.77%; width: 11.0%; }
.step3-item--3 .step3-body  { width: 19.09%; }

/* ------------------------------
   数字で見るコミクスアカデミー
------------------------------- */
.stats {
  position: relative;
}

.stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 1px;
  background-color: #fff;
}

.stats .stage {
  aspect-ratio: 2200 / 817;
}

.stats-label {
  position: absolute;
  left: 46.0%;
  top: 11.87%;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 0.15em;
  color: #fff;
}

.stats-heading {
  position: absolute;
  left: 29.73%;
  top: 17.26%;
  width: 41%;
  text-align: center;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 700;
  color: #fff;
}

.stats-lead strong {
  font-weight: 900;
}

.stats-lead {
  position: absolute;
  left: 25.32%;
  top: 30%;
  width: 49.5%;
  text-align: center;
  font-size: clamp(11px, 1vw, 15px);
  line-height: 1.9;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 0 5px #f15a23,
    0 0 16px #f15a23,
    0 0 28px #f15a23,
    0 0 40px #f15a23,
    0 0 60px #f15a23,
    0 0 80px #f15a23;
}

.stats-item {
  position: absolute;
  top: 48.10%;
  width: 15.7%;
  height: 42.47%;
  text-align: center;
}

.stats-item__circle {
  position: absolute;
  left: 2.03%;
  top: 2.88%;
  width: 95.5%;
  height: 94.5%;
  border-radius: 50%;
  box-shadow: 0 25px 35px rgba(184, 60, 0, 0.25);
}

.stats-item__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid transparent;
  background: linear-gradient(180deg, #ff8e3b, #8d2e1e) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.stats-item__circle::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.74);
}

.stats-item__icon {
  position: absolute;
  left: 50%;
  top: -6.95%;
  width: 32%;
  transform: translateX(-50%);
}

.stats-item--1 { left: 22.55%; }
.stats-item--2 { left: 42.18%; }
.stats-item--3 { left: 61.82%; }

.stats-item__num {
  position: absolute;
  top: 27%;
  left: 0;
  width: 100%;
}

.stats-item__num-main {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 38px);
  color: #000;
  letter-spacing: -0.04em;
}

.stats-item__num-comma {
  margin: 0 -0.1em;
}

.stats-item__num-unit {
  margin-left: 4px;
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 19px);
  color: #000;
}

.stats-item__caption {
  position: absolute;
  top: 53%;
  left: 0;
  width: 100%;
  font-weight: 700;
  font-size: clamp(11px, 1.05vw, 16px);
  color: #000;
}

/* ------------------------------
   よくあるご質問 (FAQ)
------------------------------- */
.faq {
  background: #fff;
  padding: 100px 0 40px;
}

.faq .container {
  max-width: 1040px;
}

.faq-label {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-heading {
  margin-top: 12px;
  margin-bottom: 48px;
  text-align: center;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  background: linear-gradient(90deg, #1c51a6, #03144c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
}

.faq-item__badge {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
}

.faq-item__badge--q {
  background: var(--c-orange);
}

.faq-item__badge--a {
  background: var(--c-navy);
  align-self: flex-start;
}

.faq-item__question {
  flex: 1;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.6;
}

.faq-item__toggle {
  position: relative;
  flex: none;
  width: 28px;
  height: 28px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-navy);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item__toggle::before {
  width: 18px;
  height: 2px;
}

.faq-item__toggle::after {
  width: 2px;
  height: 18px;
}

.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item.is-open .faq-item__a {
  max-height: 300px;
  padding-bottom: 28px;
}

.faq-item__answer {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.9;
  color: var(--c-text-light);
}

/* ------------------------------
   ラストCV
------------------------------- */
.lastcv {
  position: relative;
  background-size: 100% 100%;
}

.lastcv .stage {
  aspect-ratio: 2200 / 760;
}

.lastcv::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.27%;
  height: 0.26%;
  background-color: #fff;
}

.lastcv-heading__sp-br {
  display: none;
}

.lastcv-heading {
  position: absolute;
  left: 30%;
  top: 22.11%;
  width: 40%;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.4;
}

.lastcv-heading__punct {
  font-weight: 300;
}

.lastcv-heading__touten {
  margin-right: -0.35em;
}

.lastcv-text {
  position: absolute;
  left: 29.55%;
  top: 43%;
  width: 40.86%;
  text-align: center;
  color: #fff;
  font-size: clamp(11px, 1.05vw, 16px);
  line-height: 1.9;
}

.lastcv-btn {
  position: absolute;
  top: 57%;
  width: auto;
  height: auto;
  padding: 20px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 16px);
}

.lastcv-btn--primary {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ffaa00, #ff5800);
  border-radius: 4px;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 24px rgba(255, 110, 0, 0.3), 0 2px 8px rgba(255, 110, 0, 0.18);
}

.lastcv-triangle {
  display: none;
}

.lastcv-btn--outline {
  display: none;
}

.lastcv-checks {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .lastcv-checks {
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.lastcv-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 500;
  white-space: nowrap;
}

.lastcv-check img {
  width: clamp(14px, 1.4vw, 20px);
}

/* ------------------------------
   フッター
------------------------------- */
.site-footer .stage {
  aspect-ratio: 2200 / 244;
}

.site-footer__link {
  position: absolute;
  left: 42.86%;
  top: 32%;
  width: 14.23%;
  text-align: center;
  font-size: clamp(10px, 0.9vw, 13px);
  color: var(--c-text-light);
}

.site-footer__copy {
  position: absolute;
  left: 40.68%;
  top: 63.56%;
  width: 18.64%;
  text-align: center;
  font-size: clamp(10px, 0.9vw, 13px);
  color: var(--c-text-light);
}

/* ================================
   SP (responsive)
================================ */
.header-hamburger {
  display: none;
}

@media (max-width: 767px) {
  .site-header {
    background-image: none !important;
    background-color: #fff;
  }

  .site-header .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
  }

  .site-header .logo {
    position: static;
    left: auto;
    top: auto;
    width: 180px;
  }

  .header-btns {
    display: none;
  }

  .header-hamburger {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 36px;
    height: 30px;
  }

  .header-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .header-hamburger.is-active span:nth-child(1) {
    transform: translateY(15px) rotate(45deg);
  }

  .header-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .header-hamburger.is-active span:nth-child(3) {
    transform: translateY(-15px) rotate(-45deg);
  }

  body.no-scroll {
    overflow: hidden;
  }

  .sp-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 62%;
    height: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 72px;
    background-color: var(--c-navy);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .sp-menu.is-open {
    transform: translateX(0);
  }

  .sp-menu__close {
    position: absolute;
    top: 20px;
    left: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .sp-menu.is-open .sp-menu__close {
    opacity: 1;
    transform: translateX(0);
  }

  .sp-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .sp-menu__list li {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .sp-menu.is-open .sp-menu__list li {
    opacity: 1;
    transform: translateX(0);
  }

  .sp-menu__list li:nth-child(1) { transition-delay: 0.05s; }
  .sp-menu__list li:nth-child(2) { transition-delay: 0.1s; }
  .sp-menu__list li:nth-child(3) { transition-delay: 0.15s; }
  .sp-menu__list li:nth-child(4) { transition-delay: 0.2s; }
  .sp-menu__list li:nth-child(5) { transition-delay: 0.25s; }
  .sp-menu__list li:nth-child(6) { transition-delay: 0.3s; }
  .sp-menu__list li:nth-child(7) { transition-delay: 0.35s; }

  .sp-menu.is-open .sp-menu__cta {
    opacity: 1;
    transform: translateX(0);
  }

  .sp-menu__list li:first-child {
    border-top: none;
  }

  .sp-menu__list li:last-child {
    border-bottom: none;
  }

  .sp-menu__link {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .sp-menu__list .sp-menu__link {
    max-width: 240px;
    margin: 0 auto;
  }

  .sp-menu__cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition-delay: 0.4s;
  }

  .sp-menu__link--primary,
  .sp-menu__link--secondary {
    width: 100%;
    padding: 28px 0;
    text-align: center;
  }

  .sp-menu__link--primary {
    background: linear-gradient(90deg, #ff8d00, #ff6c00);
    color: #fff;
  }

  .sp-menu__link--secondary {
    background-color: #fff;
    color: var(--c-navy);
  }
}

@media (max-width: 375px) {
  .sp-menu__list li {
    padding: 14px 0;
  }

  .sp-menu__link {
    font-size: 20px;
  }

  .sp-menu__cta {
    margin-top: 16px;
  }

  .sp-menu__link--primary,
  .sp-menu__link--secondary {
    padding: 16px 0;
  }
}

/* ------------------------------
   FV
------------------------------- */
@media (max-width: 767px) {
  .fv {
    background-image: url(../images/bg_fv_sp_clean.jpg) !important;
    background-color: #091a57;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .fv::before,
  .fv::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
  }

  .fv::before {
    top: 10px;
  }

  .fv::after {
    bottom: 10px;
  }

  .fv .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px 88px;
    gap: 28px;
  }

  .fv-label,
  .fv-heading,
  .fv-lead,
  .fv-price,
  .fv-points,
  .fv-caption,
  .fv-cta-group,
  .fv-cta,
  .fv-widget {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .fv-cta-arrow {
    display: none;
  }

  .fv-cta-group {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .fv-label {
    text-align: center;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    white-space: nowrap;
    margin-top: 16px;
  }

  .fv-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 900;
  }

  .fv-ai-icon {
    display: block;
    width: calc(100% + 64px);
    margin: -100px -64px -100px 0;
    max-width: none;
    transform: translateX(-48px);
  }

  .fv-heading__line1,
  .fv-heading__line2 {
    font-size: clamp(42px, 11vw, 52px);
  }

  .fv-heading__punct {
    margin-right: -0.45em;
  }

  .fv-heading__sp-br {
    display: inline;
  }

  .fv-lead--pc {
    display: none;
  }

  .fv-lead--sp {
    position: relative;
    z-index: 2;
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
    text-shadow:
      0 0 8px rgba(9, 26, 87, 1),
      0 0 18px rgba(9, 26, 87, 0.9),
      0 0 32px rgba(9, 26, 87, 0.8),
      0 0 48px rgba(9, 26, 87, 0.6);
  }

  .fv-price {
    order: 3;
    height: auto;
    padding: 20px 0 0;
    border-bottom: none;
  }

  .fv-price__num {
    width: 100%;
    font-size: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #fff;
    white-space: nowrap;
    text-align: center;
  }

  .fv-price__yen {
    font-size: 36px;
    font-family: "Hiragino Kaku Gothic StdN", "Hiragino Kaku Gothic Pro", sans-serif;
    margin-right: 2px;
  }

  .fv-price__note {
    position: static;
    margin-top: 12px;
    font-size: 14px;
    white-space: normal;
  }

  .fv-points {
    order: 1;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
  }

  .fv-points__item {
    width: 70%;
  }

  .fv-points__item span {
    font-size: 16px;
    font-weight: 700;
    white-space: normal;
  }

  .fv-points__num {
    font-family: "Hiragino Kaku Gothic StdN", "Hiragino Kaku Gothic Pro", sans-serif;
  }

  .fv-caption {
    order: 2;
    white-space: normal;
    font-size: 15px;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 4px;
  }

  .fv-caption::before,
  .fv-caption::after {
    width: 22px;
    height: 19px;
    background: url(../images/chon_03.png) no-repeat center / contain;
    transform: scaleY(-1);
  }

  .fv-caption::before {
    transform: scale(-1, -1);
  }

  .fv-caption__break {
    display: block;
  }

  .fv-cta {
    order: 0;
    height: auto;
    padding: 24px 0;
    font-size: 22px;
    font-weight: 900;
  }

  .fv-widget {
    order: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: auto;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }

  .fv-widget__arrow {
    display: none;
  }

  .fv-widget__break {
    display: block;
  }
}

/* ------------------------------
   こんな経営課題
------------------------------- */
@media (max-width: 767px) {
  .kadai {
    position: relative;
    background-image: none !important;
    background-color: #f5f5f7;
  }

  .kadai::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #0a1442;
  }

  .kadai::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 1px;
    background-color: #0a1442;
  }

  .kadai .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 56px;
    column-gap: 28px;
    padding: 80px 24px 56px;
  }

  .kadai-heading,
  .kadai-line,
  .kadai-card {
    position: static;
    left: auto;
    top: auto;
  }

  .kadai-heading,
  .kadai-card {
    width: 100%;
  }

  .kadai-heading {
    order: 1;
    text-align: center;
    font-size: 40px;
    line-height: 1.5;
  }

  .kadai-heading__break {
    display: block;
  }

  .kadai-line {
    order: 2;
    width: 160px;
    height: 8px;
    margin: -48px auto 12px;
  }

  .kadai-card {
    font-size: 22px;
    line-height: 1.6;
  }

  .kadai-card--01 {
    order: 3;
  }

  .kadai-card--03 {
    order: 4;
  }

  .kadai-card--02 {
    order: 8;
  }

  .kadai-card--04 {
    order: 9;
  }

  .kadai-card--05 {
    order: 10;
    margin-bottom: 32px;
  }

  .kadai-icon,
  .kadai-illust {
    position: static;
    left: auto;
    top: auto;
  }

  .kadai-icon {
    width: 52px;
    margin-top: -32px;
  }

  .kadai-icon--left {
    order: 5;
  }

  .kadai-illust {
    order: 6;
    width: 140px;
  }

  .kadai-icon--right {
    order: 7;
  }
}

/* ------------------------------
   6軸 (rokujiku)
------------------------------- */
@media (max-width: 767px) {
  .rokujiku {
    background-image: none !important;
    background-color: #fff;
  }

  .rokujiku .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 56px;
    gap: 24px;
  }

  .rokujiku-label,
  .rokujiku-line,
  .rokujiku-heading,
  .rokujiku-lead,
  .rokujiku-illust {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .rokujiku-label {
    order: 1;
    text-align: center;
    font-size: 14px;
  }

  .rokujiku-heading {
    order: 2;
    text-align: center;
    font-size: 30px;
    line-height: 1.5;
    margin-top: -8px;
  }

  .rokujiku-heading__break {
    display: block;
  }

  .rokujiku-heading__bracket {
    font-weight: 400;
  }

  .rokujiku-line {
    order: 3;
    width: 160px;
    height: 8px;
    margin: -8px auto 0;
  }

  .rokujiku-illust {
    order: 4;
    width: 280px;
    margin: 24px auto 0;
  }

  .rokujiku-lead {
    order: 5;
    text-align: center;
    font-size: 15px;
    line-height: 2;
    margin-top: 12px;
  }

  .rokujiku-lead--pc {
    display: none;
  }

  .rokujiku-lead--sp {
    display: block;
  }

  .rokujiku-chart {
    order: 6;
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .chart-label .pt {
    font-size: 18px;
  }

  .chart-label .name {
    font-size: 14px;
    color: #000;
  }

  .chart-label--top {
    top: -12%;
  }
}

/* ------------------------------
   CV banner (re-used)
------------------------------- */
@media (max-width: 767px) {
  .cv-banner {
    background-image: none !important;
    background-color: #0a1442;
  }

  .cv-banner::before,
  .cv-banner::after {
    height: 1px;
  }

  .cv-banner::before {
    top: 10px;
  }

  .cv-banner::after {
    bottom: 10px;
  }

  .cv-banner .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px;
    gap: 20px;
  }

  .cv-banner__text,
  .cv-banner__btn,
  .cv-banner__check {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .cv-banner__text {
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
  }

  .cv-banner__text--pc {
    display: none;
  }

  .cv-banner__text--sp {
    display: block;
  }

  .cv-banner__btn {
    padding: 28px 0;
    font-size: 20px;
  }

  .cv-banner__btn--primary {
    left: auto;
    transform: none;
  }

  .cv-banner__btn--outline {
    display: none;
  }

  .btn-arrow--outline {
    display: inline-block;
    background-color: #fff;
  }

  .cv-banner__triangle {
    display: none;
  }

  .cv-banner__checks {
    position: static;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cv-banner__check {
    width: auto;
    justify-content: flex-start;
    font-size: 16px;
    gap: 12px;
  }

  .cv-banner__check img {
    width: 24px;
  }

  .lastcv .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px;
    gap: 20px;
  }

  .lastcv-checks {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lastcv-check {
    display: flex;
    align-items: center;
    width: auto;
    justify-content: flex-start;
    font-size: 16px;
    gap: 12px;
    white-space: nowrap;
  }

  .lastcv-check img {
    width: 24px;
  }
}

/* ------------------------------
   3つの理由
------------------------------- */
@media (max-width: 767px) {
  .riyuu {
    position: relative;
    background-image: url(../images/bg_step3.jpg) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f9fafb;
  }

  .riyuu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 1px;
    background-color: #0a1442;
  }

  .riyuu .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px;
    gap: 24px;
  }

  .riyuu-label,
  .riyuu-line,
  .riyuu-heading,
  .riyuu-sub,
  .riyuu-illust,
  .riyuu-card {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .riyuu-label {
    order: 1;
    text-align: center;
    font-size: 14px;
  }

  .riyuu-heading__pc-br {
    display: inline;
  }

  .riyuu-heading {
    order: 2;
    text-align: center;
    font-size: 27px;
    line-height: 1.5;
    margin-top: -8px;
  }

  .riyuu-heading__break {
    display: block;
  }

  .riyuu-line {
    order: 3;
    width: 160px;
    height: 8px;
    margin: -8px auto 0;
  }

  .riyuu-sub {
    order: 4;
    text-align: center;
    font-size: 20px;
    line-height: 1.9;
  }

  .riyuu-sub__break {
    display: block;
  }

  .riyuu-illust {
    order: 5;
    width: 240px;
    margin: 24px auto 0 15%;
  }

  .riyuu-cards {
    order: 6;
    display: flex;
    gap: 16px;
    width: 100%;
    margin: 32px -24px 0;
    padding: 0 24px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .riyuu-cards::-webkit-scrollbar {
    display: none;
  }

  .riyuu-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(10, 20, 66, 0.08);
  }

  .riyuu-card__num,
  .riyuu-card__title,
  .riyuu-card__body,
  .riyuu-card--01 .riyuu-card__num,
  .riyuu-card--01 .riyuu-card__title,
  .riyuu-card--01 .riyuu-card__body,
  .riyuu-card--02 .riyuu-card__num,
  .riyuu-card--02 .riyuu-card__title,
  .riyuu-card--02 .riyuu-card__body,
  .riyuu-card--03 .riyuu-card__num,
  .riyuu-card--03 .riyuu-card__title,
  .riyuu-card--03 .riyuu-card__body {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .riyuu-card__num {
    font-size: 36px;
    text-align: center;
    font-style: italic;
    background: linear-gradient(90deg, #1c51a6, #03144c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: -16px;
  }

  .riyuu-card__title {
    font-size: 22px;
    text-align: center;
    white-space: normal;
  }

  .riyuu-card__body {
    font-size: 15px;
    text-align: center;
  }

  .riyuu-card__body--pc {
    display: none;
  }

  .riyuu-card__body--sp {
    display: block;
  }
}

/* ------------------------------
   全職種
------------------------------- */
@media (max-width: 767px) {
  .zenshokushu {
    background-image: none !important;
    background-color: #0a1442;
  }

  .zenshokushu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background-color: transparent;
    background-image: url(../images/bg_zenshokushu.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
  }

  .zenshokushu::after {
    display: none;
  }

  .zenshokushu .stage {
    position: relative;
    z-index: 1;
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px;
    gap: 16px;
  }

  .zenshokushu-icon,
  .zenshokushu-label,
  .zenshokushu-heading,
  .zenshokushu-lead,
  .role-cards {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .zenshokushu-label {
    order: 1;
    text-align: center;
    font-size: 14px;
  }

  .zenshokushu-heading__break {
    display: block;
  }

  .zenshokushu-heading {
    order: 2;
    text-align: center;
    font-size: 32px;
    line-height: 1.5;
  }

  .zenshokushu-heading__comma {
    display: inline-block;
    margin-right: -0.5em;
  }

  .zenshokushu-icon {
    order: 3;
    width: 220px;
    margin: 16px auto 0;
  }

  .zenshokushu-lead {
    order: 4;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
  }

  .zenshokushu-lead__break {
    display: block;
  }

  .role-cards {
    order: 5;
    display: flex;
    gap: 16px;
    width: 100%;
    margin: 32px -24px 0;
    padding: 36px 24px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .role-cards::-webkit-scrollbar {
    display: none;
  }

  .role-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    position: relative;
    left: auto;
    top: auto;
    height: auto;
    padding: 40px 24px 24px;
    border-width: 6px;
  }

  .role-card__num,
  .role-card__title,
  .role-card__body,
  .role-card--1 .role-card__title,
  .role-card--2 .role-card__title,
  .role-card--3 .role-card__title,
  .role-card--4 .role-card__title,
  .role-card--5 .role-card__title,
  .role-card--6 .role-card__title,
  .role-card--1 .role-card__body,
  .role-card--2 .role-card__body,
  .role-card--3 .role-card__body,
  .role-card--4 .role-card__body,
  .role-card--5 .role-card__body,
  .role-card--6 .role-card__body {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .role-card__num,
  .role-card--1 .role-card__num,
  .role-card--2 .role-card__num,
  .role-card--3 .role-card__num,
  .role-card--4 .role-card__num,
  .role-card--5 .role-card__num,
  .role-card--6 .role-card__num {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 72px;
    font-size: 26px;
    background: linear-gradient(90deg, #ff9200, #ff6800);
  }

  .role-card__title {
    text-align: center;
    white-space: normal;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
  }

  .role-card__body {
    text-align: center;
    font-size: 18px;
    color: #333;
  }

  .role-card__body--pc {
    display: none;
  }

  .role-card__body--sp {
    display: block;
  }
}

/* ------------------------------
   3ステップ
------------------------------- */
@media (max-width: 767px) {
  .step3 {
    background-image: url(../images/bg_step3.jpg) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f9fafb;
  }

  .step3 .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px;
    gap: 24px;
  }

  .step3-label,
  .step3-line,
  .step3-heading,
  .step3-lead,
  .step3-illust,
  .step3-item,
  .step3-arrow {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .step3-label {
    order: 1;
    text-align: center;
    font-size: 14px;
  }

  .step3-heading {
    order: 2;
    text-align: center;
    font-size: 36px;
    line-height: 1.5;
  }

  .step3-heading__sp-br {
    display: inline;
  }

  .step3-line {
    order: 3;
    width: 160px;
    height: 8px;
    margin: 0 auto;
  }

  .step3-illust {
    order: 4;
    width: 240px;
    margin: 32px auto 0;
  }

  .step3-lead {
    order: 5;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .step3-lead__break {
    display: block;
  }

  .step3-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step3-item--1 { order: 6; }
  .step3-item--2 { order: 8; }
  .step3-item--3 { order: 10; margin-bottom: 32px; }

  .step3-arrow--1 { order: 7; }
  .step3-arrow--2 { order: 9; }

  .step3-icon,
  .step3-pill,
  .step3-title,
  .step3-body,
  .step3-item--1 .step3-title,
  .step3-item--1 .step3-body,
  .step3-item--1 .step3-pill,
  .step3-item--2 .step3-title,
  .step3-item--2 .step3-body,
  .step3-item--2 .step3-pill,
  .step3-item--3 .step3-title,
  .step3-item--3 .step3-body,
  .step3-item--3 .step3-pill {
    position: static;
    left: auto;
    top: auto;
    width: auto;
  }

  .step3-icon--1,
  .step3-icon--2 {
    width: 96px;
  }

  .step3-icon--3 {
    width: 130px;
  }

  .step3-pill {
    height: auto;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 18px;
    background: linear-gradient(90deg, #1c51a6, #03144c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border: 2px solid #1c51a6;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .step3-title {
    font-size: 26px;
    white-space: normal;
    text-align: center;
  }

  .step3-title__sp-br,
  .step3-body__sp-br {
    display: inline;
  }

  .step3-body {
    width: 100% !important;
    font-size: 18px;
    text-align: center;
  }

  .step3-arrow {
    width: 0;
    height: 0;
    background-color: transparent;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 18px solid #1c51a6;
    clip-path: none;
    margin: 16px 0;
  }
}

/* ------------------------------
   数字で見るコミクスアカデミー
------------------------------- */
@media (max-width: 767px) {
  .stats {
    position: relative;
    background-image: url(../images/bg_stats_orange.jpg) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .stats::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 1px;
    background-color: #fff;
  }

  .stats .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px;
    gap: 16px;
  }

  .stats-label,
  .stats-heading,
  .stats-lead,
  .stats-item {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .stats-label {
    order: 1;
    text-align: center;
    font-size: 14px;
  }

  .stats-heading__break {
    display: block;
  }

  .stats-heading {
    order: 2;
    text-align: center;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.5;
  }

  .stats-heading__period {
    font-weight: 400;
  }

  .stats-lead__break {
    display: block;
  }

  .stats-lead__pc-br {
    display: none;
  }

  .stats-lead {
    order: 3;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .stats-item {
    position: relative;
    height: auto;
    width: 280px;
    margin: 56px auto 0;
  }

  .stats-item--1 { order: 4; }
  .stats-item--2 { order: 5; }
  .stats-item--3 { order: 6; margin-bottom: 32px; }

  .stats-item__circle {
    position: relative;
    left: auto;
    top: auto;
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .stats-item__num-main {
    font-size: 56px;
  }

  .stats-item__num-unit {
    font-size: 28px;
  }

  .stats-item__caption {
    font-size: 20px;
  }

  /* ------------------------------
     よくあるご質問 (FAQ)
  ------------------------------- */
  .faq {
    padding: 56px 0;
  }

  .faq-label {
    font-size: 14px;
  }

  .faq-heading {
    margin-bottom: 32px;
    font-size: 36px;
  }

  .faq-item__q {
    align-items: flex-start;
    gap: 16px;
    padding: 36px 0;
  }

  .faq-item__badge {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .faq-item__question {
    font-size: 22px;
    line-height: 1.7;
  }

  .faq-question__break {
    display: block;
  }

  .faq-item__toggle {
    margin-top: 6px;
  }

  .faq-item__a {
    gap: 16px;
  }

  .faq-item__answer {
    font-size: 18px;
    font-weight: 500;
  }

  /* ------------------------------
     ラストCV
  ------------------------------- */
  .lastcv {
    background-image: none !important;
    background-color: #0a1442;
  }

  .lastcv::after {
    bottom: 10px;
    height: 1px;
  }

  .lastcv::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    height: 1px;
    background-color: #fff;
  }

  .lastcv .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px;
    gap: 20px;
  }

  .lastcv-heading,
  .lastcv-text,
  .lastcv-btn,
  .lastcv-check {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .lastcv-heading__sp-br {
    display: inline;
  }

  .lastcv-heading {
    text-align: center;
    font-size: 36px;
    line-height: 1.5;
  }

  .lastcv-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
  }

  .lastcv-text--pc {
    display: none;
  }

  .lastcv-text--sp {
    display: block;
  }

  .lastcv-btn {
    padding: 20px 0;
    font-size: 20px;
  }

  .lastcv-btn--primary {
    left: auto;
    transform: none;
    text-align: center;
  }

  .lastcv-btn--outline {
    display: none;
  }

  .lastcv-triangle {
    display: none;
  }

  .lastcv-checks {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lastcv-check {
    display: flex;
    justify-content: flex-start;
    width: auto;
    font-size: 16px;
    gap: 12px;
  }

  .lastcv-check img {
    width: 24px;
  }

  /* ------------------------------
     フッター
  ------------------------------- */
  .site-footer .stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px;
    gap: 12px;
  }

  .site-footer__link,
  .site-footer__copy {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }

  .site-footer__link {
    font-size: 16px;
  }

  .site-footer__copy {
    font-size: 14px;
  }
}

/* ------------------------------
   CV SP コピー（SP専用・PC非表示）
------------------------------- */
.cv-sp-copy {
  display: none;
}

@media (max-width: 767px) {
  .cv-banner {
    display: none;
  }
  .cv-sp-copy {
    display: block;
  }
}
