@charset "UTF-8";

/*
  Organized CSS - safe version
  カスケード順・セレクタ・プロパティは維持し、表示崩れを避けるため整形中心で整理。
*/

/* =========================
  base
========================= */

:root {
  --color-main: #002b78;
  --color-main-dark: #001f5f;
  --color-blue-deep: #002a80;
  --color-blue-grad: linear-gradient(90deg, #002b78 0%, #001f5f 100%);
  --color-accent: #ffd500;
  --color-text: #001f5f;
  --color-border: #b8c7e6;
  --color-border-light: #d7e1f4;
  --color-bg: #ffffff;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Anton", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 86px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-ja);
  line-height: 1.7;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}

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

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

ul,
ol,
dl,
dd,
p,
h1,
h2,
h3 {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.inner {
  width: min(1640px, calc(100% - 80px));
  margin: 0 auto;
}

.pc-only {
  display: inline;
}

.section-box {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background-color: #ffffff;
  overflow: hidden;
}

.block-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--color-blue-grad);
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
}

.block-heading small {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 900;
}

.block-heading__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* =========================
  header
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header__inner {
  width: min(1640px, calc(100% - 80px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__logo {
  display: block;
  width: 210px;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__host {
  color: #111111;
  font-size: 16px;
  font-weight: 800;
}

.header__cta {
  min-width: 330px;
  height: 56px;
  padding: 0 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: var(--color-main);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 43, 120, 0.22);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header__cta span {
  font-size: 28px;
  line-height: 1;
}

.header__cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =========================
  fv tuning
========================= */

.fv {
  padding: 8px 0 12px;
  background-color: #ffffff;
  overflow: hidden;
}

.fv__content {
  position: relative;
  z-index: 2;
  padding: 18px 0 18px;
}

.fv__visual {
  position: relative;
  height: 760px;
  margin-left: -150px;
  overflow: hidden;
}

.fv__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.fv__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 12%,
    rgba(255, 255, 255, 0.35) 30%,
    rgba(255, 255, 255, 0) 48%
  );
}

.fv__days {
  width: fit-content;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--color-main);
  font-weight: 900;
  line-height: 1;
}

.fv__days span {
  padding-bottom: 8px;
  font-size: 31px;
}

.fv__days strong {
  color: var(--color-accent);
  font-size: 92px;
  font-weight: 900;
  line-height: 0.75;
}

.fv__days em {
  padding-bottom: 4px;
  color: var(--color-main);
  font-size: 36px;
  font-style: italic;
  font-weight: 900;
}

.fv__lead {
  margin-top: 24px;
  color: var(--color-main-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.75;
}

.fv__points {
  display: flex;
  gap: 36px;
  margin-top: 34px;
}

.fv__points li {
  width: 150px;
  text-align: center;
}

.fv__point-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.fv__point-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.fv__points p {
  color: var(--color-main-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.fv-data {
  position: absolute;
  z-index: 2;
  top: 54px;
  right: 34px;
  width: 236px;
  display: grid;
  gap: 8px;
}

.fv-data__item {
  min-height: 96px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  background-color: rgba(0, 31, 95, 0.38);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.fv-data__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
}

.fv-data__item p {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.fv-data__item strong {
  font-size: 27px;
  font-weight: 900;
}

.fv-data__item--analysis {
  min-height: 76px;
}

.fv-data__item--analysis p {
  font-size: 20px;
}

/* =========================
  overview tuning
========================= */

.overview {
  padding: 8px 0 14px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 22px 0 24px;
}

.overview-item {
  min-height: 210px;
  padding: 0 24px;
  border-right: 1px solid var(--color-border);
  color: var(--color-main-dark);
  text-align: center;
}

.overview-item:last-child {
  border-right: none;
}

.overview-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.overview-item__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.overview-item h3 {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.overview-item h3 span {
  display: block;
  font-size: 14px;
}

.overview-item p {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
}

.overview-item small {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

/* =========================
  flow + growth
========================= */

.flow-growth {
  padding: 14px 0;
}

.flow-growth__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
}

.flow-card {
  padding-bottom: 26px;
}

.flow-card .block-heading {
  background: #ffffff;
  color: var(--color-main-dark);
}

.flow-card .block-heading__icon {
  color: var(--color-main);
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 44px 34px 0;
}

.flow-list li {
  position: relative;
  text-align: center;
}

.flow-list li:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 68px;
  right: -16px;
  color: var(--color-main);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.flow-list__num {
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--color-main);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.flow-list__icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.flow-list__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.flow-list h3 {
  min-height: 52px;
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.flow-list p {
  margin-top: 12px;
  color: var(--color-main);
  font-size: 16px;
  font-weight: 900;
}

.flow-card__note {
  margin-top: 34px;
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.growth-card {
  padding: 20px 20px 22px;
}

.growth-card__title {
  margin-bottom: 16px;
  color: var(--color-main-dark);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}

.growth-step {
  display: grid;
  grid-template-columns: 1fr 94px;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--color-border-light);
}

.growth-step:first-of-type {
  border-top: none;
}

.growth-step__body span {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: var(--color-main);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.growth-step__body p {
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.growth-step img {
  width: 94px;
  height: 78px;
  border-radius: 4px;
  object-fit: cover;
}

/* =========================
  benefits
========================= */

.benefits {
  padding: 14px 0;
}

.benefits .section-box {
  background-color: #f6f9ff;
}

.benefits .block-heading {
  background: transparent;
  color: var(--color-main-dark);
  padding-bottom: 8px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 0 18px 22px;
}

.benefit-card {
  min-height: 188px;
  padding: 22px 18px;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--color-main-dark);
  text-align: center;
}

.benefit-card span {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
}

.benefit-card span img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.benefit-card p {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.65;
}

/* =========================
  program
========================= */

.program {
  padding: 14px 0 24px;
}

.program__box {
  padding-bottom: 22px;
}

.program .block-heading {
  background: #ffffff;
  color: #111111;
}

.program__lead {
  padding: 0 34px 22px;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
}

.program-content {
  display: grid;
  grid-template-columns: 330px 1fr 520px;
  gap: 34px;
  align-items: center;
  padding: 0 34px;
}

.program-content__cover img {
  width: 100%;
  border-radius: 4px;
}

.program-content__text h3 {
  margin-bottom: 16px;
  color: var(--color-main);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.45;
}

.program-content__text ul {
  display: grid;
  gap: 5px;
  color: var(--color-main-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.program-content__text li::before {
  content: "✓";
  margin-right: 8px;
}

.program-download {
  min-height: 140px;
  padding: 26px 28px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 86px 1fr 36px;
  gap: 18px;
  align-items: center;
  background: linear-gradient(90deg, #00646e 0%, #004d55 100%);
  color: #ffffff;
}

.program-download__icon img {
  width: 84px;
}

.program-download span:nth-child(2) {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
}

.program-download em {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #ffffff;
  color: #005963;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.program__note {
  margin-top: 12px;
  padding-right: 34px;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

/* =========================
  bottom cta
========================= */

.bottom-cta {
  background: var(--color-blue-grad);
  color: #ffffff;
}

.bottom-cta__inner {
  width: min(1640px, calc(100% - 80px));
  min-height: 134px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr 420px;
  gap: 34px;
  align-items: center;
}

.bottom-cta__badge {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.15;
}

.bottom-cta__badge span {
  font-size: 13px;
  font-weight: 800;
}

.bottom-cta__badge strong {
  font-size: 38px;
  font-weight: 900;
  line-height: 0.9;
}

.bottom-cta__content h2 {
  margin-bottom: 14px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
}

.bottom-cta__content h2 span {
  font-size: 15px;
}

.bottom-cta__button {
  width: min(540px, 100%);
  height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-main-dark);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.bottom-cta__button::after {
  content: "›";
  margin-left: 18px;
  font-size: 34px;
  line-height: 1;
}

.bottom-cta__message {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,0.45);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

/* =========================
  footer
========================= */

.footer {
  padding: 22px 0 16px;
  background-color: #ffffff;
  color: #111111;
}

.footer__inner {
  width: min(1640px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr 360px;
  gap: 34px;
  align-items: start;
}

.footer__brand img {
  width: 220px;
}

.footer__brand p {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
}

.footer__info {
  color: var(--color-main-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.footer__links {
  display: grid;
  gap: 4px;
  color: var(--color-main-dark);
  font-size: 12px;
  font-weight: 800;
}

.footer__copy {
  margin-top: 10px;
  color: var(--color-main-dark);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

/* =========================
  responsive 1440
========================= */

@media screen and (max-width: 1440px) {
  body {
    padding-top: 72px;
  }

  .header__inner {
    height: 72px;
  }

  .header__logo {
    width: 180px;
  }

  .header__host {
    font-size: 14px;
  }

  .header__cta {
    min-width: 280px;
    height: 48px;
    font-size: 14px;
  }

  .fv__title {
    font-size: clamp(92px, 8vw, 126px);
  }

  .fv__sub {
    font-size: 42px;
  }

  .fv__days span {
    font-size: 24px;
  }

  .fv__days strong {
    font-size: 66px;
  }

  .fv__days em {
    font-size: 28px;
  }

  .fv__lead {
    font-size: 17px;
  }

  .fv__points {
    gap: 34px;
  }

  .fv__visual {
    height: 590px;
    margin-left: -120px;
  }

  .fv-data {
    width: 200px;
    top: 38px;
    right: 34px;
  }

  .fv-data__item {
    min-height: 78px;
  }

  .overview-grid {
    padding: 22px 0 24px;
  }

  .overview-item {
    min-height: 200px;
    padding: 0 18px;
  }

  .overview-item h3 {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .overview-item p {
    font-size: 13px;
    line-height: 1.6;
  }

  .flow-growth__inner {
    grid-template-columns: 1fr 360px;
  }

  .flow-list {
    gap: 12px;
    padding-inline: 24px;
  }

  .benefit-card h3 {
    font-size: 15px;
  }

  .program-content {
    grid-template-columns: 270px 1fr 420px;
  }

  .program-download span:nth-child(2) {
    font-size: 24px;
  }
  .bottom-cta__inner,
  .footer__inner {
    width: min(1280px, calc(100% - 48px));
  }
}

/* =========================
  responsive 1024
========================= */

@media screen and (max-width: 1024px) {
  body {
    padding-top: 66px;
  }

  .inner {
    width: calc(100% - 40px);
  }

  .header__inner {
    width: calc(100% - 40px);
    height: 66px;
  }

  .header__logo {
    width: 150px;
  }

  .header__host {
    font-size: 12px;
  }

  .header__cta {
    min-width: 230px;
    height: 42px;
    font-size: 12px;
  }

  .fv__inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .fv__visual {
    height: 480px;
    margin-left: 0;
    margin-top: 24px;
  }

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

  .overview-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
  }

  .overview-item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  .flow-growth__inner {
    grid-template-columns: 1fr;
  }

  .growth-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .growth-card__title {
    grid-column: 1 / -1;
  }

  .growth-step {
    grid-template-columns: 1fr;
    border-top: none;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 14px;
  }

  .growth-step img {
    width: 100%;
    height: 120px;
  }

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

  .program-content {
    grid-template-columns: 220px 1fr;
  }

  .program-download {
    grid-column: 1 / -1;
  }

  .bottom-cta__inner {
    width: calc(100% - 40px);
    grid-template-columns: 110px 1fr;
    padding: 22px 0;
  }

  .bottom-cta__message {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: none;
  }

  .footer__inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =========================
  responsive 767
========================= */

@media screen and (max-width: 767px) {
  body {
    padding-top: 58px;
    letter-spacing: 0.015em;
  }

  .pc-only {
    display: none;
  }

  .inner {
    width: calc(100% - 32px);
  }

  .block-heading {
    padding: 14px 16px;
    font-size: 22px;
  }

  .header__inner {
    width: calc(100% - 24px);
    height: 58px;
  }

  .header__brand {
    gap: 10px;
  }

  .header__logo {
    width: 118px;
  }

  .header__host {
    display: none;
  }

  .header__cta {
    min-width: 0;
    width: 190px;
    height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .fv {
    padding-top: 18px;
  }

  .fv__inner {
    width: calc(100% - 32px);
  }

  .fv__title {
    font-size: clamp(48px, 15vw, 68px);
  }

  .fv__sub {
    margin-top: 14px;
    font-size: 28px;
  }

  .fv__days span {
    font-size: 16px;
  }

  .fv__days strong {
    font-size: 52px;
  }

  .fv__days em {
    font-size: 22px;
  }

  .fv__lead {
    margin-top: 20px;
    font-size: 13px;
  }

  .fv__points {
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
  }

  .fv__points li {
    width: 31%;
  }

  .fv__point-icon {
    width: 58px;
    height: 58px;
  }

  .fv__point-icon img {
    width: 34px;
    height: 34px;
  }

  .fv__points p {
    font-size: 10px;
  }

  .fv__visual {
    height: 300px;
    border-radius: 14px;
  }

  .fv-data {
    display: none;
  }

  .fv__sp-cta {
    display: block;
    margin-top: 18px;
  }

  .fv__sp-cta-button {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background-color: var(--color-accent);
    color: var(--color-main-dark);
    font-size: 14px;
    font-weight: 900;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-item,
  .overview-item:nth-child(odd) {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 22px 18px;
  }

  .overview-item:last-child {
    border-bottom: none;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 16px 0;
  }

  .flow-list li {
    display: grid;
    grid-template-columns: 28px 48px 1fr 54px;
    gap: 8px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    text-align: left;
  }

  .flow-list li:not(:last-child)::after {
    display: none;
  }

  .flow-list__num,
  .flow-list__icon {
    margin: 0;
  }

  .flow-list__icon {
    width: 48px;
    height: 48px;
  }

  .flow-list__icon img {
    width: 28px;
    height: 28px;
  }

  .flow-list h3 {
    min-height: auto;
    font-size: 12px;
  }

  .flow-list p {
    margin-top: 0;
    font-size: 12px;
    text-align: right;
  }

  .flow-card__note {
    margin-top: 20px;
    padding: 0 16px;
    font-size: 11px;
  }

  .growth-card {
    display: block;
  }

  .growth-step {
    margin-top: 12px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    padding: 0 14px 18px;
  }

  .benefit-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 4px 14px;
    text-align: left;
  }

  .benefit-card span {
    grid-row: span 2;
    margin: 0;
  }

  .program-content {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .program__lead {
    padding: 0 18px 18px;
    font-size: 12px;
  }

  .program-content__text h3 {
    font-size: 20px;
  }

  .program-download {
    min-height: 110px;
    grid-template-columns: 62px 1fr 28px;
    padding: 20px;
  }

  .program-download__icon img {
    width: 60px;
  }

  .program-download span:nth-child(2) {
    font-size: 20px;
  }

  .program__note {
    padding: 0 18px;
    text-align: left;
  }

  .bottom-cta__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
    text-align: center;
  }

  .bottom-cta__badge {
    margin: 0 auto;
  }

  .bottom-cta__content h2 {
    font-size: 20px;
  }

  .bottom-cta__content h2 span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
  }

  .bottom-cta__button {
    height: 50px;
    font-size: 14px;
  }

  .bottom-cta__message {
    font-size: 15px;
  }

  .footer {
    padding-bottom: 24px;
  }

  .footer__inner {
    width: calc(100% - 32px);
  }

  .footer__brand img {
    width: 180px;
  }
}

/* =========================
  emergency fv layout fix
========================= */

@media screen and (min-width: 1025px) {
  .fv__inner {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
  }

  .fv__content {
    position: relative;
    z-index: 2;
    padding: 18px 0 18px;
  }

  .fv__visual {
    position: relative;
    height: 720px;
    margin-left: -120px;
    overflow: hidden;
  }

  .fv__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .fv__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.9) 12%,
      rgba(255, 255, 255, 0.35) 30%,
      rgba(255, 255, 255, 0) 48%
    );
  }

  .fv-data {
    position: absolute;
    z-index: 2;
    top: 54px;
    right: 34px;
    width: 236px;
    display: grid;
    gap: 8px;
  }

  .fv__title {
    color: var(--color-main);
    font-family: var(--font-en);
    font-size: clamp(108px, 8vw, 156px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    transform: scaleX(1.06);
    transform-origin: left center;
  }

  .fv__title span {
    display: block;
  }

  .fv__sub {
    margin-top: 24px;
    color: var(--color-main);
    font-size: clamp(38px, 3.3vw, 58px);
    font-weight: 900;
    line-height: 1.2;
  }
}

/* 1440px以下は少しだけ縮小 */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .fv__inner {
    grid-template-columns: 48% 52%;
  }

  .fv__visual {
    height: 590px;
    margin-left: -120px;
  }

  .fv__title {
    font-size: clamp(92px, 8vw, 126px);
  }

  .fv__sub {
    font-size: 42px;
  }

  .fv-data {
    width: 200px;
    top: 38px;
    right: 34px;
  }
}

/* 1024px以下は縦積みでOK */
@media screen and (max-width: 1024px) {
  .fv__inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fv__visual {
    height: 480px;
    margin-left: 0;
    margin-top: 24px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .fv__visual {
    height: 300px;
    margin-left: 0;
    margin-top: 20px;
    border-radius: 14px;
  }

  .fv-data {
    display: none;
  }
}

/* =========================
  fv side margin adjustment
========================= */

@media screen and (min-width: 1025px) {
  .fv__inner {
    width: min(1640px, calc(100% - 120px));
    margin: 0 auto;
    grid-template-columns: 47% 53%;
  }

  .fv__visual {
    margin-left: -80px;
  }

  .fv__title {
    transform: scaleX(1.02);
  }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .fv__inner {
    width: min(1280px, calc(100% - 72px));
    grid-template-columns: 47% 53%;
  }

  .fv__visual {
    margin-left: -70px;
  }

  .fv__title {
    transform: scaleX(1.02);
  }
}

/* =========================
  flow + growth integrated card
========================= */

@media screen and (min-width: 1025px) {
  .flow-growth__inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: stretch;
    padding: 0 24px 28px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
  }

  .flow-card,
  .growth-card {
    border: none;
    border-radius: 0;
    overflow: visible;
    background-color: transparent;
  }

  .flow-card {
    padding-bottom: 0;
  }

  .flow-card .block-heading {
    margin-left: -24px;
    padding: 16px 0 14px;
    background: transparent;
    color: var(--color-main-dark);
  }

  .flow-card .block-heading__icon {
    color: var(--color-main);
  }

  .growth-card {
    align-self: stretch;
    margin-top: 72px;
    padding: 18px 18px 20px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: #ffffff;
  }

  .flow-list {
    padding: 34px 0 0;
  }

  .flow-card__note {
    margin-top: 30px;
  }
}

/* =========================
  flow + growth fine tuning
========================= */

@media screen and (min-width: 1025px) {
  .flow-growth__inner {
    grid-template-columns: 1fr 370px;
    gap: 26px;
    padding: 0 24px 18px;
    align-items: start;
  }

  .flow-card .block-heading {
    padding: 16px 0 10px;
  }

  .flow-list {
    max-width: 1160px;
    margin: 0 auto;
    padding: 28px 0 0;
    gap: 12px;
  }

  .flow-list__icon {
    width: 76px;
    height: 76px;
    margin-bottom: 12px;
  }

  .flow-list__icon img {
    width: 42px;
    height: 42px;
  }

  .flow-list li:not(:last-child)::after {
    top: 66px;
    right: -12px;
    font-size: 38px;
  }

  .flow-list h3 {
    min-height: 44px;
    font-size: 13px;
    line-height: 1.45;
  }

  .flow-list p {
    margin-top: 8px;
    font-size: 16px;
  }

  .flow-card__note {
    margin-top: 24px;
    font-size: 13px;
  }

  .growth-card {
    margin-top: 70px;
    padding: 18px 18px 18px;
  }

  .growth-card__title {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .growth-step {
    grid-template-columns: 1fr 86px;
    gap: 12px;
    padding: 10px 0;
  }

  .growth-step__body span {
    margin-bottom: 5px;
    padding: 4px 10px;
    font-size: 13px;
  }

  .growth-step__body p {
    font-size: 12px;
    line-height: 1.55;
  }

  .growth-step img {
    width: 86px;
    height: 70px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .flow-growth__inner {
    grid-template-columns: 1fr 330px;
    gap: 22px;
    padding: 0 20px 18px;
  }

  .flow-list {
    max-width: 920px;
    gap: 10px;
    padding-top: 26px;
  }

  .growth-card {
    margin-top: 66px;
  }
}

/* =========================
  flow + growth layout reset
========================= */

@media screen and (min-width: 1025px) {
  .flow-growth__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    column-gap: 28px;
    align-items: start;
    padding: 0 24px 24px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
  }

  .flow-card,
  .growth-card {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .flow-card {
    padding: 0;
  }

  .flow-card .block-heading {
    margin: 0;
    padding: 16px 0 12px;
    background: transparent;
    color: var(--color-main-dark);
  }

  .flow-card .block-heading__icon {
    color: var(--color-main);
  }

  .flow-list {
    width: 100%;
    max-width: 1080px;
    margin: 0;
    padding: 30px 8px 0 4px;
    display: grid;
    grid-template-columns: repeat(6, minmax(86px, 1fr));
    gap: 10px;
  }

  .flow-list li {
    position: relative;
    text-align: center;
  }

  .flow-list li:not(:last-child)::after {
    content: "›";
    position: absolute;
    top: 66px;
    right: -12px;
    color: var(--color-main);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
  }

  .flow-list__num {
    width: 28px;
    height: 28px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: var(--color-main);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
  }

  .flow-list__icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 12px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
  }

  .flow-list__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .flow-list h3 {
    min-height: 42px;
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
  }

  .flow-list p {
    margin-top: 8px;
    color: var(--color-main);
    font-size: 15px;
    font-weight: 900;
  }

  .flow-card__note {
    margin-top: 24px;
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
  }

  .growth-card {
    align-self: start;
    margin-top: 70px;
    padding: 18px 18px 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: #ffffff;
  }

  .growth-card__title {
    margin-bottom: 14px;
    color: var(--color-main-dark);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
  }

  .growth-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 86px;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--color-border-light);
  }

  .growth-step:first-of-type {
    border-top: none;
  }

  .growth-step__body span {
    display: inline-flex;
    margin-bottom: 5px;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: var(--color-main);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
  }

  .growth-step__body p {
    color: var(--color-main-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.55;
  }

  .growth-step img {
    width: 86px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .flow-growth__inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    column-gap: 22px;
    padding: 0 20px 22px;
  }

  .flow-list {
    max-width: 880px;
    grid-template-columns: repeat(6, minmax(72px, 1fr));
    gap: 8px;
    padding-top: 28px;
  }

  .flow-list__icon {
    width: 66px;
    height: 66px;
  }

  .flow-list__icon img {
    width: 38px;
    height: 38px;
  }

  .flow-list h3 {
    font-size: 11px;
  }

  .flow-list p {
    font-size: 13px;
  }

  .flow-list li:not(:last-child)::after {
    top: 60px;
    right: -10px;
    font-size: 32px;
  }

  .growth-card {
    margin-top: 66px;
    padding: 16px;
  }

  .growth-card__title {
    font-size: 19px;
  }

  .growth-step {
    grid-template-columns: minmax(0, 1fr) 78px;
  }

  .growth-step img {
    width: 78px;
    height: 64px;
  }

  .growth-step__body p {
    font-size: 11px;
  }
}

/* =========================
  header top line
========================= */

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 12px;
  background-image: url("../img/header-line.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header__inner {
  position: relative;
  z-index: 3;
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .header::before {
    height: 6px;
  }

  .header__inner {
    padding-top: 6px;
  }
}

/* =========================
  overview icon image replace
========================= */

.block-heading__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.block-heading__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.overview-item__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.overview-item__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .block-heading__icon {
    width: 26px;
    height: 26px;
  }

  .block-heading__icon img {
    width: 26px;
    height: 26px;
  }

  .overview-item__icon {
    width: 46px;
    height: 46px;
  }

  .overview-item__icon img {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .block-heading__icon {
    width: 24px;
    height: 24px;
  }

  .block-heading__icon img {
    width: 24px;
    height: 24px;
  }

  .overview-item__icon {
    width: 44px;
    height: 44px;
  }

  .overview-item__icon img {
    width: 38px;
    height: 38px;
  }
}

/* =========================
  block heading icon image
========================= */

.block-heading__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.block-heading__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .block-heading__icon {
    width: 26px;
    height: 26px;
  }

  .block-heading__icon img {
    width: 26px;
    height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .block-heading__icon {
    width: 24px;
    height: 24px;
  }

  .block-heading__icon img {
    width: 24px;
    height: 24px;
  }
}

/* =========================
  benefit icon image replace
========================= */

.benefits .block-heading__icon {
  width: 30px;
  height: 30px;
}

.benefits .block-heading__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.benefit-card span {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
}

.benefit-card span img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .benefits .block-heading__icon {
    width: 26px;
    height: 26px;
  }

  .benefits .block-heading__icon img {
    width: 26px;
    height: 26px;
  }

  .benefit-card span {
    width: 52px;
    height: 52px;
  }

  .benefit-card span img {
    width: 46px;
    height: 46px;
  }
}

@media screen and (max-width: 767px) {
  .benefits .block-heading__icon {
    width: 24px;
    height: 24px;
  }

  .benefits .block-heading__icon img {
    width: 24px;
    height: 24px;
  }

  .benefit-card span {
    width: 48px;
    height: 48px;
  }

  .benefit-card span img {
    width: 42px;
    height: 42px;
  }
}

/* =========================
  program heading icon
========================= */

.program .block-heading__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.program .block-heading__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .program .block-heading__icon {
    width: 26px;
    height: 26px;
  }

  .program .block-heading__icon img {
    width: 26px;
    height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .program .block-heading__icon {
    width: 24px;
    height: 24px;
  }

  .program .block-heading__icon img {
    width: 24px;
    height: 24px;
  }
}

/* =========================
  program content center layout
========================= */

@media screen and (min-width: 1025px) {
  .program-content {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 330px 430px 520px;
    gap: 34px;
    align-items: center;
    padding: 0;
  }

  .program-content__cover img {
    width: 330px;
    max-width: 100%;
    border-radius: 4px;
  }

  .program-content__text {
    justify-self: start;
  }

  .program-download {
    justify-self: end;
    width: 520px;
    min-height: 140px;
  }

  .program__lead {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 0 0 22px;
  }

  .program__note {
    width: min(1280px, 100%);
    margin: 12px auto 0;
    padding-right: 0;
    text-align: right;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .program-content {
    width: min(1080px, 100%);
    grid-template-columns: 270px 360px 420px;
    gap: 24px;
  }

  .program-content__cover img {
    width: 270px;
  }

  .program-download {
    width: 420px;
  }

  .program__lead,
  .program__note {
    width: min(1080px, 100%);
  }
}

/* =========================
  pdf download button color tuning
========================= */

.program-download {
  background: linear-gradient(90deg, #005f5b 0%, #004a47 100%);
}

.program-download em {
  color: #005f5b;
}

/* =========================
  fv side data icon replace
========================= */

.fv-data__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0;
  line-height: 1;
}

.fv-data__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.fv-data__item--analysis .fv-data__icon img {
  width: 36px;
  height: 36px;
}

@media screen and (max-width: 1440px) {
  .fv-data__icon {
    width: 38px;
    height: 38px;
  }

  .fv-data__icon img {
    width: 30px;
    height: 30px;
  }

  .fv-data__item--analysis .fv-data__icon img {
    width: 32px;
    height: 32px;
  }
}

/* =========================
  bottom cta vertical spacing
========================= */

.bottom-cta__inner {
  min-height: 168px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.bottom-cta__badge {
  width: 122px;
  height: 122px;
}

.bottom-cta__content h2 {
  margin-bottom: 18px;
}

.bottom-cta__button {
  height: 66px;
}

@media screen and (max-width: 1440px) {
  .bottom-cta__inner {
    min-height: 150px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .bottom-cta__badge {
    width: 112px;
    height: 112px;
  }

  .bottom-cta__button {
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .bottom-cta__inner {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .bottom-cta__badge {
    width: 108px;
    height: 108px;
  }

  .bottom-cta__content h2 {
    margin-bottom: 14px;
  }

  .bottom-cta__button {
    height: 52px;
  }
}

/* =========================
  bottom cta center layout tuning
========================= */

@media screen and (min-width: 1025px) {
  .bottom-cta__inner {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    grid-template-columns: 130px 620px 420px;
    gap: 42px;
    justify-content: center;
    align-items: center;
    min-height: 176px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .bottom-cta__badge {
    justify-self: center;
    width: 122px;
    height: 122px;
  }

  .bottom-cta__content {
    justify-self: start;
    width: 100%;
  }

  .bottom-cta__content h2 {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.35;
  }

  .bottom-cta__button {
    width: 560px;
    max-width: 100%;
    height: 66px;
  }

  .bottom-cta__message {
    justify-self: stretch;
    padding-left: 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 25px;
    line-height: 1.55;
    text-align: center;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .bottom-cta__inner {
    width: min(1120px, calc(100% - 64px));
    grid-template-columns: 112px 520px 340px;
    gap: 34px;
    min-height: 154px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .bottom-cta__badge {
    width: 108px;
    height: 108px;
  }

  .bottom-cta__content h2 {
    margin-bottom: 14px;
    font-size: 26px;
  }

  .bottom-cta__button {
    width: 480px;
    height: 58px;
    font-size: 20px;
  }

  .bottom-cta__message {
    padding-left: 34px;
    font-size: 20px;
  }
}

/* =========================
  footer contact button
========================= */

.footer__info {
  text-align: center;
}

.footer__contact-button {
  min-width: 210px;
  height: 30px;
  margin: 8px auto 0;
  padding: 0 28px 0 20px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #ffffff;
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.footer__contact-button::after {
  content: "›";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-52%);
  color: var(--color-main-dark);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.footer__contact-button:hover {
  background-color: #f4f7ff;
}

@media screen and (max-width: 767px) {
  .footer__contact-button {
    min-width: 200px;
    height: 34px;
    margin-top: 10px;
    font-size: 12px;
  }
}

/* =========================
  1440px layout fine tuning
  - text / icon / spacing
========================= */

@media screen and (min-width: 1025px) and (max-width: 1440px) {

  /* 全体のセクション余白 */
  .overview,
  .flow-growth,
  .benefits,
  .program {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  /* 共通カード内の余白 */
  .section-box,
  .overview .section-box,
  .benefits .section-box,
  .program .section-box,
  .flow-growth__inner {
    border-radius: 10px;
  }

  /* =========================
    header
  ========================= */

  .header__inner {
    height: 76px;
  }

  .header__logo {
    width: 174px;
  }

  .header__host {
    font-size: 14px;
    font-weight: 900;
  }

  .header__cta {
    min-width: 278px;
    height: 46px;
    font-size: 14px;
  }

  /* =========================
    FV
  ========================= */

  .fv {
    padding-top: 18px;
    padding-bottom: 26px;
  }

  .fv__content {
    padding-top: 18px;
    padding-bottom: 26px;
  }

  .fv__title {
    font-size: clamp(98px, 8.8vw, 132px);
    line-height: 0.88;
  }

  .fv__sub {
    margin-top: 24px;
    font-size: 42px;
    line-height: 1.18;
  }

  .fv__days {
    margin-top: 12px;
    padding-bottom: 12px;
  }

  .fv__days span {
    font-size: 25px;
  }

  .fv__days strong {
    font-size: 72px;
  }

  .fv__days em {
    font-size: 31px;
  }

  .fv__lead {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.8;
  }

  .fv__points {
    margin-top: 36px;
    gap: 42px;
  }

  .fv__points li {
    width: 140px;
  }

  .fv__point-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 13px;
  }

  .fv__point-icon img {
    width: 48px;
    height: 48px;
  }

  .fv__points p {
    font-size: 13px;
    line-height: 1.55;
  }

  .fv__visual {
    height: 608px;
  }

  .fv-data {
    width: 204px;
    gap: 8px;
  }

  .fv-data__item {
    min-height: 82px;
    padding: 12px 16px;
    grid-template-columns: 38px 1fr;
  }

  .fv-data__icon img {
    width: 32px;
    height: 32px;
  }

  .fv-data__item p {
    font-size: 14px;
    line-height: 1.35;
  }

  .fv-data__item strong {
    font-size: 24px;
  }

  .fv-data__item--analysis p {
    font-size: 18px;
  }

  /* =========================
    block heading
  ========================= */

  .block-heading {
    min-height: 58px;
    padding: 15px 22px;
    gap: 10px;
    font-size: 29px;
    line-height: 1.25;
  }

  .block-heading small {
    margin-left: 10px;
    font-size: 15px;
  }

  .block-heading__icon,
  .block-heading__icon img {
    width: 28px;
    height: 28px;
  }

  /* =========================
    overview
  ========================= */

  .overview-grid {
    padding: 28px 0 30px;
  }

  .overview-item {
    min-height: 218px;
    padding: 0 18px;
  }

  .overview-item__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .overview-item__icon img {
    width: 44px;
    height: 44px;
  }

  .overview-item h3 {
    margin-bottom: 14px;
    font-size: 19px;
    line-height: 1.35;
  }

  .overview-item h3 span {
    font-size: 13px;
  }

  .overview-item p {
    font-size: 13px;
    line-height: 1.75;
  }

  .overview-item small {
    font-size: 11px;
    line-height: 1.6;
  }

  /* =========================
    flow + growth
  ========================= */

  .flow-growth__inner {
    grid-template-columns: minmax(0, 1fr) 330px;
    column-gap: 24px;
    padding: 0 22px 28px;
  }

  .flow-card .block-heading {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .flow-list {
    max-width: 920px;
    padding-top: 34px;
    gap: 10px;
  }

  .flow-list__num {
    width: 28px;
    height: 28px;
    margin-bottom: 13px;
    font-size: 14px;
  }

  .flow-list__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 13px;
  }

  .flow-list__icon img {
    width: 42px;
    height: 42px;
  }

  .flow-list h3 {
    min-height: 42px;
    font-size: 12px;
    line-height: 1.45;
  }

  .flow-list p {
    margin-top: 9px;
    font-size: 14px;
  }

  .flow-list li:not(:last-child)::after {
    top: 64px;
    right: -10px;
    font-size: 34px;
  }

  .flow-card__note {
    margin-top: 28px;
    font-size: 12px;
  }

  .growth-card {
    margin-top: 78px;
    padding: 18px;
  }

  .growth-card__title {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .growth-step {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 12px;
    padding: 11px 0;
  }

  .growth-step__body span {
    font-size: 12px;
  }

  .growth-step__body p {
    font-size: 11px;
    line-height: 1.65;
  }

  .growth-step img {
    width: 82px;
    height: 66px;
  }

  /* =========================
    benefits
  ========================= */

  .benefits .section-box {
    padding-bottom: 24px;
  }

  .benefit-list {
    gap: 12px;
    padding: 0 18px 0;
  }

  .benefit-card {
    min-height: 188px;
    padding: 24px 18px 22px;
  }

  .benefit-card span {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .benefit-card span img {
    width: 50px;
    height: 50px;
  }

  .benefit-card h3 {
    font-size: 17px;
    line-height: 1.45;
  }

  .benefit-card p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.65;
  }

  /* =========================
    program
  ========================= */

  .program .section-box {
    padding-bottom: 28px;
  }

  .program__lead {
    padding-top: 8px;
    padding-bottom: 26px;
    font-size: 15px;
    line-height: 1.7;
  }

  .program-content {
    width: min(1120px, 100%);
    grid-template-columns: 280px 370px 430px;
    gap: 28px;
  }

  .program-content__cover img {
    width: 280px;
  }

  .program-content__text h3 {
    font-size: 28px;
    line-height: 1.45;
  }

  .program-content__text li {
    font-size: 17px;
    line-height: 1.65;
  }

  .program-download {
    width: 430px;
    min-height: 132px;
    padding: 22px 26px;
  }

  .program-download img {
    width: 86px;
    height: 86px;
  }

  .program-download span:nth-child(2) {
    font-size: 25px;
    line-height: 1.45;
  }

  .program__note {
    margin-top: 16px;
    font-size: 12px;
  }

  /* =========================
    bottom CTA
  ========================= */

  .bottom-cta__inner {
    width: min(1140px, calc(100% - 64px));
    grid-template-columns: 118px 520px 350px;
    gap: 38px;
    min-height: 166px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .bottom-cta__badge {
    width: 114px;
    height: 114px;
  }

  .bottom-cta__content h2 {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.35;
  }

  .bottom-cta__button {
    width: 500px;
    height: 62px;
    font-size: 22px;
  }

  .bottom-cta__message {
    padding-left: 36px;
    font-size: 21px;
    line-height: 1.6;
  }

  /* =========================
    footer
  ========================= */

  .footer {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .footer__logo {
    width: 190px;
  }

  .footer__host {
    margin-top: 14px;
    font-size: 13px;
  }

  .footer__info {
    font-size: 13px;
    line-height: 1.55;
  }

  .footer__contact-button {
    min-width: 210px;
    height: 32px;
    margin-top: 10px;
    font-size: 13px;
  }

  .footer__links {
    font-size: 13px;
    line-height: 1.8;
  }

  .footer__copy {
    margin-top: 18px;
    font-size: 11px;
  }
}

/* =========================
  fv smartphone cta visibility
========================= */

/* PC・タブレットでは非表示 */
.fv__sp-cta {
  display: none !important;
}

/* スマホのみ表示 */
@media screen and (max-width: 767px) {
  .fv__sp-cta {
    display: block !important;
    margin-top: 20px;
    text-align: center;
  }

  .fv__sp-cta-button {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-main-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  }

  .fv__sp-cta-button::after {
    content: "›";
    margin-left: 10px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
  }
}

/* =========================
  1024px tablet layout tuning
  target: 768px - 1024px
========================= */

@media screen and (min-width: 768px) and (max-width: 1024px) {

  /* =========================
    FV：2カラム復帰・タイトル余白調整
  ========================= */

  .fv {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .fv__inner {
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;
    gap: 0;
  }

  .fv__content {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .fv__title {
    font-size: clamp(58px, 7.2vw, 76px);
    line-height: 0.9;
    letter-spacing: 0;
    transform: scaleX(1.02);
    transform-origin: left center;
  }

  .fv__title span {
    display: block;
  }

  .fv__sub {
    margin-top: 18px;
    font-size: 28px;
    line-height: 1.2;
  }

  .fv__days {
    margin-top: 8px;
    padding-bottom: 8px;
  }

  .fv__days span {
    padding-bottom: 5px;
    font-size: 18px;
  }

  .fv__days strong {
    font-size: 52px;
  }

  .fv__days em {
    padding-bottom: 2px;
    font-size: 23px;
  }

  .fv__lead {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.65;
  }

  .fv__points {
    gap: 20px;
    margin-top: 24px;
  }

  .fv__points li {
    width: 100px;
  }

  .fv__point-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 9px;
  }

  .fv__point-icon img {
    width: 38px;
    height: 38px;
  }

  .fv__points p {
    font-size: 10px;
    line-height: 1.45;
  }

  .fv__visual {
    height: 420px;
    margin-top: 0;
    margin-left: -48px;
    border-radius: 0;
  }

  .fv__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .fv-data {
    display: grid;
    width: 150px;
    top: 28px;
    right: 18px;
    gap: 6px;
  }

  .fv-data__item {
    min-height: 58px;
    padding: 8px 10px;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    border-radius: 6px;
  }

  .fv-data__icon {
    width: 28px;
    height: 28px;
  }

  .fv-data__icon img {
    width: 23px;
    height: 23px;
  }

  .fv-data__item p {
    font-size: 10px;
    line-height: 1.35;
  }

  .fv-data__item strong {
    font-size: 17px;
  }

  .fv-data__item--analysis {
    min-height: 54px;
  }

  .fv-data__item--analysis p {
    font-size: 13px;
  }

  .fv__sp-cta {
    display: none !important;
  }

  /* =========================
    大会概要：3カラム化
  ========================= */

  .overview {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }

  .overview-item {
    min-height: 210px;
    padding: 26px 22px 24px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .overview-item:nth-child(3n) {
    border-right: none;
  }

  .overview-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .overview-item:last-child {
    border-right: 1px solid var(--color-border);
  }

  .overview-item__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .overview-item__icon img {
    width: 40px;
    height: 40px;
  }

  .overview-item h3 {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.35;
  }

  .overview-item h3 span {
    font-size: 12px;
  }

  .overview-item p {
    font-size: 12px;
    line-height: 1.65;
  }

  .overview-item small {
    font-size: 10px;
    line-height: 1.55;
  }

  /* =========================
    当日の流れ：成長モデルを同じ枠内へ
  ========================= */

  .flow-growth {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .flow-growth__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 20px 24px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
  }

  .flow-card,
  .growth-card {
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .flow-card {
    padding: 0;
  }

  .flow-card .block-heading {
    margin: 0;
    padding: 18px 0 12px;
    background: transparent;
    color: var(--color-main-dark);
  }

  .flow-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 26px 0 0;
  }

  .flow-list__num {
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .flow-list__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 10px;
  }

  .flow-list__icon img {
    width: 36px;
    height: 36px;
  }

  .flow-list h3 {
    min-height: 40px;
    font-size: 10px;
    line-height: 1.45;
  }

  .flow-list p {
    margin-top: 7px;
    font-size: 12px;
  }

  .flow-list li:not(:last-child)::after {
    top: 55px;
    right: -8px;
    font-size: 28px;
  }

  .flow-card__note {
    margin-top: 24px;
    font-size: 11px;
  }

  .growth-card {
    width: 100%;
    margin-top: 0;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: #ffffff;
  }

  .growth-card__title {
    margin-bottom: 16px;
    font-size: 20px;
    text-align: center;
  }

  .growth-list,
  .growth-card__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .growth-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    border-top: none;
  }

  .growth-step__body span {
    display: inline-flex;
    margin-bottom: 7px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .growth-step__body p {
    font-size: 11px;
    line-height: 1.6;
  }

  .growth-step img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 4px;
  }

  /* =========================
    参加メリット：落ちた2つを中央寄せ
  ========================= */

  .benefits {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .benefit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 16px 22px;
    justify-content: center;
  }

  .benefit-card {
    min-height: 176px;
    padding: 24px 18px 22px;
  }

  .benefit-card:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
    width: calc((100% - 24px) / 1);
  }

  .benefit-card:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: start;
    width: calc((100% - 24px) / 1);
  }

  .benefit-card span {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }

  .benefit-card span img {
    width: 48px;
    height: 48px;
  }

  .benefit-card h3 {
    font-size: 15px;
    line-height: 1.45;
  }

  .benefit-card p {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.65;
  }

  /* =========================
    プログラム：PDFボタンを適正化
  ========================= */

  .program {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .program-content {
    width: min(860px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
  }

  .program-content__cover img {
    width: 220px;
  }

  .program-content__text h3 {
    font-size: 23px;
    line-height: 1.45;
  }

  .program-content__text li {
    font-size: 14px;
    line-height: 1.65;
  }

  .program-download {
    grid-column: 1 / -1;
    justify-self: center;
    width: 520px;
    max-width: 100%;
    min-height: 92px;
    padding: 16px 24px;
  }

  .program-download img {
    width: 64px;
    height: 64px;
  }

  .program-download span:nth-child(2) {
    font-size: 22px;
    line-height: 1.35;
  }

  .program__note {
    width: min(860px, 100%);
    margin: 12px auto 0;
    text-align: right;
    font-size: 11px;
  }

  /* =========================
    下部CTA：右文言を横並び維持
  ========================= */

  .bottom-cta__inner {
    width: min(920px, calc(100% - 40px));
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: center;
    min-height: 142px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .bottom-cta__badge {
    width: 92px;
    height: 92px;
  }

  .bottom-cta__content h2 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .bottom-cta__button {
    width: 100%;
    max-width: 420px;
    height: 52px;
    font-size: 18px;
  }

  .bottom-cta__message {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
}

/* =========================
  1024px tablet side margin tuning
  target: 768px - 1024px
========================= */

@media screen and (min-width: 768px) and (max-width: 1024px) {

  /* 全体の左右余白 */
  .inner,
  .fv__inner,
  .overview .inner,
  .flow-growth .inner,
  .benefits .inner,
  .program .inner {
    width: calc(100% - 56px);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  /* FVだけ少し余白を強める */
  .fv__inner {
    width: calc(100% - 64px);
  }

  /* FV画像が右に詰まりすぎないよう調整 */
  .fv__visual {
    margin-left: -28px;
  }

  /* 大会概要カード */
  .overview .section-box {
    width: 100%;
  }

  /* 当日の流れカード */
  .flow-growth__inner {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* 参加メリット */
  .benefits .section-box {
    width: 100%;
  }

  .benefit-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* プログラム */
  .program .section-box {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .program-content,
  .program__lead,
  .program__note {
    width: min(820px, 100%);
  }

  /* 下部CTAも少し内側へ */
  .bottom-cta__inner {
    width: calc(100% - 64px);
    max-width: 900px;
  }
}

/* =========================
  1024px tablet footer center tuning
  target: 768px - 1024px
========================= */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 26px;
  }

  .footer__inner {
    width: calc(100% - 64px);
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .footer__brand {
    display: grid;
    justify-items: center;
  }

  .footer__logo {
    width: 190px;
    margin: 0 auto;
  }

  .footer__host {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .footer__info {
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
  }

  .footer__contact-button {
    min-width: 220px;
    height: 34px;
    margin-top: 10px;
  }

  .footer__links {
    display: grid;
    gap: 6px;
    justify-items: center;
    font-size: 13px;
    line-height: 1.7;
  }

  .footer__copy {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
  }
}

/* =========================
  1024px tablet bottom CTA center tuning
  target: 768px - 1024px
========================= */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .bottom-cta__inner {
    width: calc(100% - 64px);
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    text-align: center;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .bottom-cta__badge {
    width: 108px;
    height: 108px;
    justify-self: center;
  }

  .bottom-cta__content {
    width: 100%;
    display: grid;
    justify-items: center;
  }

  .bottom-cta__content h2 {
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
  }

  .bottom-cta__button {
    width: min(520px, 100%);
    height: 58px;
    font-size: 20px;
  }

  .bottom-cta__message {
    width: 100%;
    padding-left: 0;
    padding-top: 18px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
  }
}

/* =========================
  smartphone layout tuning
  target: max 767px
========================= */

@media screen and (max-width: 767px) {

  /* =========================
    header
  ========================= */

  .header__inner {
    height: 58px;
    padding: 8px 14px 0;
  }

  .header__logo {
    width: 132px;
  }

  .header__host {
    display: none;
  }

  /* ヘッダー右上CTAはスマホでは小さくなりやすいので非表示 */
  .header__cta {
    display: none;
  }

  /* スマホ固定CTA：画面下部に左右いっぱい */
  .sp-fixed-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1200;
    display: block;
  }

  .sp-fixed-cta a {
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-main-dark);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .sp-fixed-cta a::after {
    content: "›";
    margin-left: 10px;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
  }

  body {
    padding-bottom: 76px;
  }

  /* =========================
    FV
  ========================= */

  .fv {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .fv__inner {
    width: calc(100% - 28px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .fv__content {
    text-align: center;
  }

  .fv__title {
    text-align: center;
    font-size: clamp(50px, 14vw, 68px);
    line-height: 0.82;
    letter-spacing: 0;
    transform: scaleX(1.02);
    transform-origin: center center;
  }

  .fv__title span {
    display: block;
  }

  .fv__sub {
    margin-top: 18px;
    text-align: center;
    font-size: 25px;
    line-height: 1.25;
  }

  .fv__days {
    justify-content: center;
    margin-top: 8px;
    padding-bottom: 10px;
    text-align: center;
  }

  .fv__days span {
    font-size: 17px;
  }

  .fv__days strong {
    font-size: 48px;
  }

  .fv__days em {
    font-size: 22px;
  }

  .fv__lead {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
  }

  .fv__points {
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }

  .fv__points li {
    width: 30%;
    max-width: 112px;
    text-align: center;
  }

  .fv__point-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 9px;
  }

  .fv__point-icon img {
    width: 36px;
    height: 36px;
  }

  .fv__points p {
    font-size: 10px;
    line-height: 1.45;
  }

  .fv__sp-cta {
    display: block !important;
    margin-top: 24px;
    text-align: center;
  }

  .fv__sp-cta-button {
    width: min(340px, 100%);
    min-height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-main-dark);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  }

  .fv__sp-cta-button::after {
    content: "›";
    margin-left: 10px;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
  }

  .fv__visual {
    height: 292px;
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
  }

  .fv-data {
    display: grid;
    width: 118px;
    top: 14px;
    right: 10px;
    gap: 4px;
  }

  .fv-data__item {
    min-height: 46px;
    padding: 6px 7px;
    grid-template-columns: 22px 1fr;
    gap: 5px;
    border-radius: 6px;
  }

  .fv-data__icon {
    width: 22px;
    height: 22px;
  }

  .fv-data__icon img {
    width: 18px;
    height: 18px;
  }

  .fv-data__item p {
    font-size: 8px;
    line-height: 1.3;
  }

  .fv-data__item strong {
    font-size: 13px;
  }

  .fv-data__item--analysis p {
    font-size: 10px;
  }

  /* =========================
    common
  ========================= */

  .inner,
  .overview .inner,
  .flow-growth .inner,
  .benefits .inner,
  .program .inner {
    width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
  }

  .block-heading {
    min-height: 50px;
    padding: 12px 16px;
    gap: 8px;
    font-size: 23px;
    line-height: 1.3;
  }

  .block-heading small {
    margin-left: 6px;
    font-size: 12px;
  }

  .block-heading__icon,
  .block-heading__icon img {
    width: 24px;
    height: 24px;
  }

  /* =========================
    overview
  ========================= */

  .overview {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .overview-item {
    min-height: auto;
    padding: 24px 22px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .overview-item:last-child {
    border-bottom: none;
  }

  .overview-item__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .overview-item__icon img {
    width: 42px;
    height: 42px;
  }

  .overview-item h3 {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.4;
  }

  .overview-item h3 span {
    font-size: 13px;
  }

  .overview-item p {
    font-size: 13px;
    line-height: 1.75;
  }

  .overview-item small {
    font-size: 11px;
    line-height: 1.65;
  }

  /* =========================
    flow + growth
  ========================= */

  .flow-growth {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .flow-growth__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px 20px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
  }

  .flow-card,
  .growth-card {
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .flow-card {
    padding: 0;
  }

  .flow-card .block-heading {
    margin: 0;
    padding: 15px 0 12px;
    background: transparent;
    color: var(--color-main-dark);
  }

  .flow-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0 0;
  }

  .flow-list li {
    display: grid;
    grid-template-columns: 28px 52px 1fr 56px;
    gap: 10px;
    align-items: center;
    min-height: 72px;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-align: left;
  }

  .flow-list li:not(:last-child)::after {
    display: none;
  }

  .flow-list__num {
    width: 26px;
    height: 26px;
    margin: 0;
    font-size: 12px;
  }

  .flow-list__icon {
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .flow-list__icon img {
    width: 30px;
    height: 30px;
  }

  .flow-list h3 {
    min-height: auto;
    font-size: 13px;
    line-height: 1.45;
  }

  .flow-list p {
    margin: 0;
    font-size: 12px;
    text-align: right;
  }

  .flow-card__note {
    margin-top: 16px;
    font-size: 11px;
    line-height: 1.6;
  }

  .growth-card {
    width: 100%;
    margin-top: 0;
    padding: 18px 14px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: #ffffff;
  }

  .growth-card__title {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
  }

  .growth-list,
  .growth-card__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .growth-step {
    display: grid;
    grid-template-columns: 1fr 88px;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--color-border-light);
  }

  .growth-step:first-of-type {
    border-top: none;
    padding-top: 0;
  }

  .growth-step__body span {
    display: inline-flex;
    margin-bottom: 6px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .growth-step__body p {
    font-size: 12px;
    line-height: 1.6;
  }

  .growth-step img {
    width: 88px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
  }

  /* =========================
    benefits
  ========================= */

  .benefits {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .benefits .block-heading {
    font-size: 24px;
  }

  .benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 14px 20px;
  }

  .benefit-card {
    min-height: auto;
    padding: 24px 18px 22px;
  }

  .benefit-card span {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }

  .benefit-card span img {
    width: 48px;
    height: 48px;
  }

  .benefit-card h3 {
    font-size: 17px;
    line-height: 1.45;
  }

  .benefit-card p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.65;
  }

  /* =========================
    program
  ========================= */

  .program {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .program .section-box {
    padding-left: 16px;
    padding-right: 16px;
  }

  .program__lead {
    padding-top: 8px;
    padding-bottom: 20px;
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
  }

  .program-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .program-content__cover img {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .program-content__text h3 {
    font-size: 22px;
    line-height: 1.45;
  }

  .program-content__text ul {
    display: inline-block;
    margin-top: 12px;
    text-align: left;
  }

  .program-content__text li {
    font-size: 14px;
    line-height: 1.65;
  }

  .program-download {
    width: min(330px, 100%);
    min-height: 78px;
    margin: 0 auto;
    padding: 14px 18px;
    gap: 14px;
  }

  .program-download img {
    width: 52px;
    height: 52px;
  }

  .program-download span:nth-child(2) {
    font-size: 18px;
    line-height: 1.35;
  }

  .program__note {
    margin-top: 12px;
    font-size: 10px;
    text-align: center;
  }

  /* =========================
    bottom CTA
  ========================= */

  .bottom-cta__inner {
    width: calc(100% - 28px);
    max-width: 425px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .bottom-cta__badge {
    width: 108px;
    height: 108px;
  }

  .bottom-cta__content h2 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.35;
    white-space: normal;
  }

  .bottom-cta__button {
    width: min(340px, 100%);
    height: 56px;
    font-size: 17px;
  }

  .bottom-cta__message {
    width: 100%;
    padding-top: 16px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
  }

  /* =========================
    footer
  ========================= */

  .footer {
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .footer__inner {
    width: calc(100% - 28px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer__brand {
    display: grid;
    justify-items: center;
  }

  .footer__logo {
    width: 170px;
  }

  .footer__host {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.6;
  }

  .footer__info {
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
  }

  .footer__contact-button {
    min-width: 230px;
    height: 40px;
    margin-top: 12px;
    font-size: 13px;
  }

  .footer__links {
    display: grid;
    gap: 6px;
    justify-items: center;
    font-size: 12px;
    line-height: 1.7;
  }

  .footer__copy {
    margin-top: 18px;
    font-size: 10px;
    text-align: center;
  }
}

/* =========================
  smartphone CTA text alignment fix
========================= */

@media screen and (max-width: 767px) {
  .fv__sp-cta-button,
  .sp-fixed-cta a,
  .bottom-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .fv__sp-cta-button {
    width: min(340px, 100%);
    min-height: 58px;
    padding: 0 24px;
    font-size: 15px;
  }

  .sp-fixed-cta a {
    min-height: 56px;
    padding: 0 24px;
    font-size: 15px;
  }

  .bottom-cta__button {
    height: 56px;
    padding: 0 24px;
    font-size: 16px;
  }

  .fv__sp-cta-button::after,
  .sp-fixed-cta a::after,
  .bottom-cta__button::after {
    margin-left: 4px;
    font-size: 24px;
    line-height: 1;
    transform: translateY(-1px);
  }
}
/* スマホ用固定CTA：PCでは非表示 */
.sp-entry-btn,
.sp-fixed-cta,
.fixed-entry-btn {
  display: none;
}

/* 425px以下のスマホ表示のみ表示 */
@media screen and (max-width: 425px) {
  .sp-entry-btn,
  .sp-fixed-cta,
  .fixed-entry-btn {
    display: block;
  }
}
