:root {
  --color-bg: #ffffff;
  --color-bg-gray: #f7f7fa;
  --color-accent: #0037ff;
  --color-accent-light: #e5ebff;
  --color-text: #222222;
  --color-muted: #777777;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --max-width: 1280px;
  --header-height: 64px;
  --z-header: 1000;
}

/* reset簡易版 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  z-index: var(--z-header);
}
.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  
}
.header__logo {
  display: flex;
  align-items: center;
  gap: -4px;
}

.header__logo img {
  width: 140px; /* 好きな値に調整 */
  height: auto !important;
  display: block;
}

.logo-img {
  
  width: auto;
}

.header__nav {
  display: flex;
  gap: 16px;
  font-size: 16px;
}
.header__nav a {
  padding: 6px 8px;
}
.header__nav-cta {
  border-radius: 999px;
  padding: 6px 16px;
  background: var(--color-accent);
  color: #fff;
}

/* bottom CTA (mobile) */
.bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 66, 255, 0.98);
  padding: 10px 16px;
  display: none;
  z-index: 900;
}
.bottom-cta a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

/* hero */
.hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 72px;
  background: radial-gradient(circle at top left, #e5ebff 0, #ffffff 55%);
}
.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}
.hero__tagline {
  font-size: 14px;          /* 13 → 14 */
  font-weight: 700;         /* 太くして“プログラム名感”を出す */
  color: var(--color-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-size: 36px;          /* 32 → 36（PC） */
  line-height: 1.4;
  font-weight: 800;         /* 太くする */
  margin: 0 0 16px;
}

.hero__subtitle {
  font-size: 16px;          /* 15 → 16 */
  color: #444;              /* 少し濃くして読みやすく */
  margin-bottom: 28px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.hero__note {
  font-size: 12px;
  color: var(--color-muted);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 22px;
  font-size: 15px; 
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease,
    background-color 0.1s ease;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(47, 90, 243, 0.3);
}
.btn--outline {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: #fff;
}
.btn--full {
  width: 100%;
}

/* sections */
.section {
  padding: 64px 0;
}
.section--gray {
  background: var(--color-bg-gray);
}
.section--accent {
  background: #f1f4ff;
}
.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}
.section__inner--narrow {
  max-width: 720px;
}
.section__title {
  font-size: 26px;          /* 24 → 26 */
  font-weight: 800;
  margin: 0 0 32px;
}

.section__title--center {
  text-align: center;
}
.section__lead {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 32px;
}
.section__lead--center {
  text-align: center;
}

/* layout helpers */
.grid {
  display: grid;
  gap: 16px;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.two-column {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 24px;
}

/* cards */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
}
.stat-card__label {
  font-size: 11px;
  color: var(--color-muted);
  margin: 0 0 4px;
}
.stat-card__value {
  font-size: 13px;
  margin: 0;
}

/* features */
.feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.feature__label {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0 0 6px;
}
.feature__title {
  font-size: 15px;
  margin: 0 0 8px;
}
.feature__text {
  font-size: 13px;
  color: var(--color-muted);
}

/* steps */
.steps {
  display: grid;
  gap: 16px;
}
.step {
  border-left: 4px solid var(--color-accent);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 16px 16px 20px;
  box-shadow: var(--shadow-soft);
}
.step__title {
  font-size: 15px;
  margin: 0 0 6px;
}
.step__text {
  font-size: 13px;
  color: var(--color-muted);
}

/* voices */
.voice-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}
.voice-card__tag {
  font-size: 11px;
  color: var(--color-muted);
  margin: 0 0 6px;
}
.voice-card__text {
  margin: 0;
}

/* FAQ 全体 */
.faq__item {
  border-radius: var(--radius-md);
  background: #fff;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7f0;
  overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.faq__item.is-open {
  border-color: var(--color-accent);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

/* 質問ボタン部分 */
.faq__question {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 12px 16px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq__question:hover {
  background: #f4f6ff;
}

.faq__question-text {
  flex: 1;
}

/* ＋／− アイコン（位置固定・ブレないように） */
.faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;        /* 幅固定 → ＋と−で位置がズレない */
  font-size: 18px;
  font-weight: 700;
  color: #777;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq__item.is-open .faq__icon {
  color: var(--color-accent);
  transform: rotate(180deg); /* くるっと回る感じ（いらなければ消してOK） */
}

/* 答え部分：高さアニメーションで“気持ち遅め”に開く */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 16px;
  font-size: 14px;
  color: var(--color-muted);
  border-top: 1px solid #e5e7f0;
  transition:
    max-height 0.35s ease,  /* ← スピード（少しゆっくり） */
    opacity 0.35s ease,
    padding-top 0.35s ease,
    padding-bottom 0.35s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 400px;       /* 中身に合わせて必要なら数値アップ */
  opacity: 1;
  padding-top: 8px;
  padding-bottom: 12px;
}
/* contact form */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid #d0d4e0;
  padding: 8px 10px;
  font-size: 13px;
}
.contact-form__note {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 8px;
}

/* footer */
.footer {
  padding: 24px 0 40px;
  background: #111;
  color: #eee;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.footer__logo {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 20px; 
}
.footer__logo img.logo-img--footer {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1); /* ←黒背景で白く表示 */
  margin-left: 6px;     /* ← RASINとの距離（詰めたいなら3px） */
  filter: brightness(1.3);
}




/* responsive */
@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-column {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .header__nav {
    display: none; /* 簡易: スマホではナビ隠す（必要ならハンバーガーに） */
  }
  .hero__title {
    font-size: 24px;
  }
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 48px 0;
  }
  .bottom-cta {
    display: block;
  }
  body {
    padding-bottom: 56px; /* bottom-cta分の余白 */
  }
}




/* ======== LEAD CTA（まずはLINEを追加セクション） ======== */
.lead-cta {
  background: #ffffff;
  padding: 56px 16px;
}

.lead-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: #f7f8ff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 32px 20px 32px;
}

.lead-cta__tag {
  display: block;
  font-size: 26px;      /* ← 大きさUP */
  font-weight: 900;     /* ← 太さUP */
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.lead-cta__title {
  font-size: 22px;
  margin: 0 0 12px;
}

.lead-cta__text {
  font-size: 14px;
  color: #555;
  margin: 0 0 20px;
}

/* 大きな二段CTA */
.lead-cta__button-wrapper {
  display: inline-block;
  text-align: center;
  margin-top: 16px;
}

.lead-cta__button {
  display: inline-block;
  padding: 0;
  border-radius: 50px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #ff5757, #ff4fb0);
  font-weight: 700;
  font-size: 28px;  /* ← ボタン文字の大きさ */
  width: 100%;
  max-width: 520px; /* 大きさ調整 */
  box-shadow: 0 10px 30px rgba(255, 60, 150, 0.4);
  position: relative;
}

/* 上段：先着順で予約受付中 */
.lead-cta__button-top {
  background: #ffffff;
  color: #ff4c85;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50px;
  margin: 8px auto 0;
  width: 85%;
}

/* 下段：無料相談会を利用する */
.lead-cta__button-bottom {
  padding: 22px 0;
  font-size: 30px;   /* ← もっと大きく */
  font-weight: 900;
}

/* ボタン右端の再生マーク（三角） */
.lead-cta__button::after {
  content: "▶";
  font-size: 42px;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}


/* ====== 脈打つアニメーション ====== */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(6, 199, 85, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(6, 199, 85, 0.7); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(6, 199, 85, 0.4); }
}

.btn-pulse {
  animation: pulse 1.6s infinite ease-in-out;
}

.lead-cta__note {
  font-size: 12px;
  color: #888;
  margin: 16px 0 0;
}

@media (max-width: 640px) {
  .lead-cta__inner {
    padding: 24px 16px;
  }
  .lead-cta__title {
    font-size: 18px;
  }
  .lead-cta__text {
    font-size: 13px;
  }
  .lead-cta__button {
    width: 100%;
  }
  @media (max-width: 640px) {
  .hero__title {
    font-size: 26px;        /* 24 → 26 */
  }
  .hero__subtitle {
    font-size: 14px;
  }
}

}


.btn-bounce {
  transition: transform 0.15s ease;
}

.btn-bounce:active {
  transform: scale(0.92);
}

.btn-hover-lift {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-hover-lift:hover {
  transform: translateY(-2px); /* ← ほんの少しだけ上に */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.nav-hover-lift {
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-hover-lift:hover {
  transform: translateY(-2px); /* 控えめに上へ */
  opacity: 0.85; /* 少し薄くして動きを分かりやすく */
}


.card,
.feature,
.step,
.voice-card,
.faq__question,
.contact-form {
  font-size: 14px;          /* 中身のベース文字 */
}

.section__lead,
.feature__text,
.step__text,
.voice-card__text,
.faq__answer,
.hero__note {
  font-size: 14px;          /* 13 → 14 */
}

.text-accent {
  color: var(--color-accent);
  font-weight: 700;
}
.text-strong {
  font-weight: 800;
}



/* ===== 固定CTAエリア（画面下） ===== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f7ff;
  padding: 10px 16px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* 背景にうっすら羅針盤の円を入れる（水面下でブランド感アップ） */
.fixed-cta::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(47, 90, 243, 0.12);
}

.fixed-cta::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(47, 90, 243, 0.08);
}

/* ロゴではなくアイコンを使うパターン */
.cta-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* 羅針盤アイコン（🧭）を上品に見せる */
.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

/* 固定CTA内のボタン（既存の shine-button と組み合わせ） */
.fixed-cta .lead-cta__button {
  border-radius: 999px;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

/* キラッと光る青ボタン（前に設定している shine-button を活かす） */
.shine-button {
  position: relative;
  overflow: hidden;
  background: #2f5af3;       /* 青背景 */
  color: #ffffff;            /* 文字は白 */
  box-shadow: 0 6px 18px rgba(47, 90, 243, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shine-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shineMove 3s infinite ease-in-out;
}

@keyframes shineMove {
  0% {
    left: -80%;
  }
  50% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

.shine-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 90, 243, 0.6);
}

/* スマホでかぶらないように */
@media (max-width: 640px) {
  body {
    padding-bottom: 80px;
  }
}


/* ご相談〜4週間プログラムの流れ */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.flow-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin: 0 0 8px;
}

.flow-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.flow-card-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.flow-card-text {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
}

.flow-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
}

/* スマホ対応 */
.sp-only {
  display: none;
}

@media (max-width: 900px) {
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .flow-card {
    padding: 16px 14px 18px;
  }
  .sp-only {
    display: inline;
  }
}

/* 料金セクション全体 */
.price-section {
  text-align: center;
}

/* 上の細いピル型ラベル */
.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: #eef2ff;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* メインの料金カード */
.price-card {
  position: relative;
  max-width: 560px;
  margin: 8px auto 0;
  border-radius: 22px;
  padding: 26px 24px 24px;
  background: radial-gradient(circle at top left, #f5f6ff 0, #ffffff 55%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(47, 90, 243, 0.18);
}

/* 上に乗っている「初回募集」バッジ */
.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff7b7b, #ff9c5c);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(248, 113, 113, 0.35);
}

/* 中身 */
.price-card__body {
  text-align: center;
}

.price-card__label {
  font-size: 13px;
  color: var(--color-muted);
  margin: 6px 0 10px;
}

/* 金額表示 */
.price-card__main {
  margin: 0 0 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.price-card__yen {
  font-size: 18px;
  color: var(--color-accent);
  transform: translateY(-4px);
}

.price-card__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-accent);
}

.price-card__tax {
  font-size: 13px;
  color: var(--color-muted);
  transform: translateY(-2px);
}

.price-card__split {
  font-size: 12px;
  color: var(--color-muted);
  margin: 4px 0 14px;
}

/* 含まれる内容のリスト */
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 13px;
  color: #444;
}

.price-card__list li + li {
  margin-top: 4px;
}

/* 料金セクション内のボタン */
.price-card__btn {
  width: 100%;
  margin-bottom: 10px;
}

/* 注意書き */
.price-card__note {
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .price-card {
    padding: 22px 16px 20px;
    border-radius: 18px;
  }
  .price-card__num {
    font-size: 34px;
  }
}

/* 無料相談ボタン（グラデーション） */
.lead-cta__button {
  background: linear-gradient(135deg, #ff7b7b, #ff9c5c);
  color: #fff;
  border: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ホバー時に少し浮き上がる */
.lead-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 120, 120, 0.35);
}



/* ==== 全体のベーストーンをCAREERT風に整える ==== */
body {
  background: #f4f6ff;   /* うすい青みグレー */
}

/* 各セクションを“中央の白いカード”っぽく */
.section {
  padding: 80px 0;
  background: transparent;
}

.section__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 36px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

/* グレーセクションは、カードの中も少しだけ色を乗せる */
.section.section--gray {
  background: transparent;   /* bodyの色を見せる */
}
.section.section--gray .section__inner {
  background: #f8f9ff;
}

/* タイトル周りを少しだけ大きく＆余白広めに */
.section__title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
}
.section__lead {
  text-align: center;
  margin-bottom: 36px;
}

/* 共通カードの質感アップ */
.card,
.feature,
.step,
.voice-card,
.flow-card,
.contact-form {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

/* flow（STEPカード）は丸み強め＋影強め */
.flow-card {
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

/* 料金カードはさらに強めに（スクショに寄せる） */
.price-card {
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}






/* =========================================
   全体の余白をギュッと詰めて洗練させる
   ========================================= */

/* セクション間の余白を縮める */
.section {
  padding: 48px 0; /* 64px → 48px に */
}

/* グレーセクションも揃える */
.section--gray {
  padding: 48px 0;
}

/* セクション内部の白カード部分の余白も少し詰める */
.section__inner {
  padding: 32px 28px; /* 40px 36px → 32px 28px */
  margin-bottom: 36px; /* 下の空白を減らす */
}

/* セクションタイトル周りの余白を削減 */
.section__title {
  margin-bottom: 18px; /* 32px → 18px */
}

.section__lead {
  margin-bottom: 24px; /* 36px → 24px */
}

/* カード間の余白を詰める */
.grid {
  gap: 12px; /* 16px → 12px */
}

.steps {
  gap: 12px; /* 16px → 12px */
}

/* カード内余白も少し詰める */
.card,
.feature,
.step,
.voice-card,
.flow-card {
  padding: 14px 16px; /* 18px → 14px */
}

/* 料金カードの無駄な余白を削減 */
.price-card {
  padding: 20px 20px 20px; /* 26px → 20px */
  margin-top: 0; /* 上の余白を消す */
}

/* 料金カード内の各行も詰める */
.price-card__body p,
.price-card__list li {
  margin-bottom: 6px; /* 10〜14px → 6px に統一 */
}

/* HERO部分の余白も圧縮する */
.hero {
  padding-top: calc(var(--header-height) + 32px); /* 48px → 少なく */
  padding-bottom: 48px; /* 72px → 48px */
}

.hero__content {
  padding: 24px 26px; /* 36px 40px → 24px 26px */
}

/* HEROのボタン周りの余白も縮める */
.hero__subtitle {
  margin-bottom: 18px; /* 28px → 18px */
}
.hero__buttons {
  margin-bottom: 8px; /* 12px → 8px */
}

/* FLOW（STEP 1〜4カード）の上下の余白も縮める */
.flow-card {
  padding: 14px 14px 18px;
}

.flow-steps {
  gap: 14px; /* 16px → 14px */
}

/* スマホもバランスが崩れないよう軽めに詰める */
@media (max-width: 640px) {
  .section {
    padding: 40px 0;
  }
  .section__inner {
    padding: 20px 16px;
  }
  .hero {
    padding-bottom: 36px;
  }
}



/* カードを親幅いっぱいに広げる */
.section__inner {
  max-width: 1400px; /* ← 任意で調整 */
}

/* two-column の左右幅を広げる */
.two-column {
  grid-template-columns: 1.7fr 1fr; /* バランス調整 */
}

/* price セクションを横長に */
.section__inner--narrow {
  max-width: 900px;  /* ← 元720px → 広げる */
}


/* ===== リッチ寄りのトーンに調整 ===== */
:root {
  --max-width: 1200px;               /* 少しだけワイドにして余白を減らす */
  --color-bg: #f5f6fb;               /* 背景をうっすらグレーに */
  --color-bg-gray: #f1f3fa;          /* グレーブロックも少し明るめに統一 */
  --color-accent: #2455e0;           /* 落ち着いたブルー */
  --color-accent-light: #e1e7ff;
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.10); /* 影を控えめに */
  --radius-lg: 18px;                 /* 大きい角丸 */
  --radius-md: 12px;                 /* 中くらい角丸 */
}
body {
  background: var(--color-bg);
}

/* 見出し＆本文を少しだけ大人っぽく */
.hero__title {
  font-size: 34px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.section__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero__subtitle,
.section__lead,
.card,
.feature__text,
.step__text,
.voice-card__text {
  color: #4b5563;   /* 少しだけ濃いグレーで読みやすく */
}

/* サブテキストは「1段だけ薄く」 */
.hero__note,
.price-card__note,
.flow-note {
  color: #9ca3af;
}


/* 共通カードデザインを少しだけフラット＆上品に */
.card,
.feature,
.step,
.voice-card,
.faq__item,
.price-card,
.flow-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18); /* ほぼ見えない細い境界線 */
}

/* 料金カードだけ少しだけ特別に */
.price-card {
  background: radial-gradient(circle at top left, #eef2ff 0, #ffffff 55%);
  border-radius: 22px;
}

/* flowカードも統一 */
.flow-card {
  background: #ffffff;
}

/* メインボタン：濃いめブルーのフラット寄り */
.btn--primary {
  background: linear-gradient(135deg, #2455e0, #2643c9);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.26);
}

/* アウトラインボタンも線色を合わせる */
.btn--outline {
  border-color: #2455e0;
  color: #2455e0;
}

/* ホバー：浮かせすぎない */
.btn--primary:hover,
.btn--outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.30);
}

/* 脈打つアニメーションは“固定CTAだけ”に絞る */
.lead-cta__button.btn-pulse {
  animation: pulse 1.6s infinite ease-in-out;
}
.fixed-cta .lead-cta__button {
  animation: none;   /* ここは常時アニメなしで落ち着かせる */
}

/* 上下余白を気持ちだけ減らす */
.section {
  padding: 56px 0;   /* 64 → 56 */
}
.section.section--gray {
  padding: 52px 0;
}

/* ヒーローもコンパクトに */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}


/* flow セクションをちょっとだけ引き締める */
#flow .section__inner--narrow {
  max-width: 1000px;
}
.flow-steps {
  gap: 20px;
}

/* 料金セクションも横に広げる */
#price .section__inner--narrow {
  max-width: 880px;
}



/* ===== 4週間プログラム（アコーディオン） ===== */

.program-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.program__item {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.program__header {
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: linear-gradient(90deg, #eef2ff, #ffffff);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.program__week {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: #e1e6ff;
  border-radius: 999px;
}

.program__title-group {
  flex: 1;
  text-align: left;
}

.program__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.program__subtitle {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
}

.program__toggle-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
}

/* 開いているとき少しだけ強調 */
.program__item.is-open .program__header {
  background: linear-gradient(90deg, #e1e6ff, #ffffff);
}

/* 本文 */
.program__body {
  padding: 14px 20px 18px;
  border-top: 1px solid #e2e5f0;
  font-size: 13px;
  color: #444;
}

.program__body h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0 4px;
}

.program__body ul {
  margin: 0 0 6px 18px;
  padding-left: 0;
}

.program__body li {
  margin-bottom: 2px;
}

.program__example {
  font-size: 12px;
  color: var(--color-muted);
  margin: 6px 0 10px;
}

/* 最終ゴールカード */
.program-outcome {
  margin-top: 32px;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #fef3c7 0, #ffffff 55%);
  box-shadow: 0 18px 40px rgba(251, 191, 36, 0.25);
}

.program-outcome__title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 10px;
  text-align: center;
}

.program-outcome__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #444;
}

.program-outcome__list li + li {
  margin-top: 4px;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .program__header {
    align-items: flex-start;
    padding: 12px 12px;
  }
  .program__title {
    font-size: 14px;
  }
  .program__subtitle {
    font-size: 11px;
  }
  .program__body {
    padding: 10px 12px 14px;
  }
}


/* ===== 4週間プログラム（アコーディオン） ===== */

.program-accordion {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(47, 90, 243, 0.08);
  overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.program-item.is-open {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.program-header {
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.program-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-week {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  border-radius: 999px;
}

.program-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.program-toggle {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-muted);
  transition: color 0.18s ease, transform 0.18s ease;
}

.program-item.is-open .program-toggle {
  color: var(--color-accent);
  transform: rotate(90deg);
}

.program-body {
  display: none; /* JSでis-openを付けたときに開く */
  padding: 0 18px 16px;
  border-top: 1px solid #edf0ff;
  font-size: 13px;
  color: #555;
}

.program-body h4 {
  font-size: 13px;
  margin: 12px 0 6px;
  font-weight: 700;
  color: #222;
}

.program-body p {
  margin: 4px 0 8px;
}

.program-body ul {
  margin: 4px 0 8px 18px;
  padding: 0;
}

.program-body li {
  margin-bottom: 3px;
}

/* ===== 最終ゴール（RASIN Compass Report） ===== */

.program-goal {
  margin-top: 40px;
  padding: 24px 22px 22px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #f5f7ff 0, #eef4ff 40%, #ffffff 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(47, 90, 243, 0.18);
}

.program-goal-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: 999px;
  background: #e4ebff;
  margin: 0 0 10px;
}

.program-goal-title {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 800;
  color: #111827;
}

.program-goal-title span {
  color: var(--color-accent);
  background: linear-gradient(120deg, #2f5af3, #7b8dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.program-goal-list {
  margin: 10px 0 12px 18px;
  padding: 0;
  font-size: 13px;
  color: #374151;
}

.program-goal-list li {
  margin-bottom: 4px;
}

.program-goal-note {
  font-size: 12px;
  color: #6b7280;
  margin: 6px 0 0;
}

/* レスポンシブ調整 */
@media (max-width: 640px) {
  .program-title {
    font-size: 13px;
  }
  .program-body {
    padding: 0 14px 14px;
  }
  .program-goal {
    padding: 20px 16px 18px;
  }
  .program-goal-title {
    font-size: 18px;
  }
}

/* ==== 全体のベース文字サイズをアップ ==== */
body {
  font-size: 16px;
}

/* ==== HERO ==== */
.hero__tagline {
  font-size: 16px;
}
.hero__title {
  font-size: 40px;
}
.hero__subtitle {
  font-size: 18px;
}

/* ==== 見出し ==== */
.section__title {
  font-size: 30px;
}
.section__lead {
  font-size: 16px;
}

/* ==== ヘッダー ==== */
.header__nav a {
  font-size: 16px;
}

/* ==== 悩み / 特徴 / 声 ==== */
.card,
.feature,
.step,
.voice-card {
  font-size: 16px;
}
.feature__title,
.step__title {
  font-size: 18px;
}

/* ==== プログラム（アコーディオン） ==== */
.program-title {
  font-size: 18px;
}
.program-body {
  font-size: 15px;
}

/* ==== 料金 ==== */
.price-card__num {
  font-size: 44px;
}
.price-card__list {
  font-size: 15px;
}

/* ==== CTA ==== */
.lead-cta__button {
  font-size: 22px;
}
.fixed-cta .lead-cta__button {
  font-size: 20px;
}

/* 共通トグルボックス */
.program-item {
  border: 1px solid #e5e7f0;
  border-radius: 12px;
  margin-bottom: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* ボタン部分 */
.program-question {
  width: 100%;
  border: none;
  background: #fff;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.program-icon {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}

/* 中身（閉じた状態） */
.program-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  transition:
    max-height 0.45s ease,
    opacity 0.45s ease,
    padding-top 0.45s ease,
    padding-bottom 0.45s ease;
}

/* 開いた状態 */
.program-item.is-open .program-answer {
  max-height: 900px;
  opacity: 1;
  padding-top: 10px;
  padding-bottom: 16px;
}

.program-subtitle {
  font-weight: 700;
  margin-top: 12px;
}

/* ▼ 4週間プログラム トグルの幅調整（横幅を狭くして余白を詰める） */
.program-item {
  max-width: 700px;       /* ← 全体の横幅を縮める */
  margin: 0 auto 16px;    /* 中央寄せ */
}

.program-question {
  width: 100%;
  padding: 14px 16px;     /* ← 余白を少し少なく */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dfe3f3;
  cursor: pointer;
  transition: background 0.25s ease;
}

/* 押したら背景が少し濃くなる */
.program-item.is-open .program-question {
  background: #f2f4ff;
}

/* ＋ / − の余白調整（右に寄せすぎない） */
.program-icon {
  font-size: 24px;
  font-weight: 900;
  width: 28px;            /* ← 固定幅でズレない */
  text-align: right;
  display: inline-block;
}

/* 4週間プログラムのゴール（Weekのすぐ下に続くブロック） */
.program-goal {
  max-width: 700px;           /* program-item と合わせる */
  margin: 24px auto 0;
}

/* 「↓ この4週間の先にあるゴール」 */
.program-goal__arrow {
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
  margin: 4px 0 10px;
}

/* ゴール全体のカード */
.program-goal__card {
  background: linear-gradient(135deg, #f5f7ff, #ffffff);
  border-radius: 18px;
  padding: 20px 18px 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(47, 90, 243, 0.18);
}

.program-goal__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}

.program-goal__list {
  margin: 0 0 16px;
  padding-left: 1.2em;
  font-size: 14px;
  color: #444;
}

.program-goal__list li + li {
  margin-top: 4px;
}

/* RASIN Compass Report 部分を目立たせる */
.program-report {
  margin-top: 10px;
  padding: 14px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px dashed rgba(47, 90, 243, 0.4);
}

.program-report__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.program-report__title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
}

.program-report__title span {
  color: var(--color-accent);
}

.program-report__text {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .program-goal {
    max-width: 100%;
  }
  .program-goal__card {
    padding: 16px 14px 18px;
  }
}

/* 4週間プログラムのゴール（Week0〜4の“続き”として表示） */
.program-goal {
  max-width: 700px;          /* .program-item と同じ幅にして一体感を出す */
  margin: 28px auto 0;
}

/* Week群とのつながりを示す一文 */
.program-goal__arrow {
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
  margin: 0 0 10px;
}

/* FINAL GOAL のカード本体 */
.program-goal__card {
  background: radial-gradient(circle at top left, #f5f7ff 0, #ffffff 55%);
  border-radius: 20px;
  padding: 22px 20px 24px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(47, 90, 243, 0.2);
}

/* FINAL GOAL ラベル */
.program-goal__step {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #2f5af3, #4f8cff);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 0 10px;
}

/* タイトル（4週間後どうなれるか） */
.program-goal__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.6;
}

.program-goal__title span {
  color: var(--color-accent);
}

/* ゴールの箇条書き */
.program-goal__list {
  margin: 0 0 18px;
  padding-left: 1.1em;
  font-size: 14px;
  color: #444;
}

.program-goal__list li + li {
  margin-top: 4px;
}

/* ====== RASIN Compass Report をドーンと強調 ====== */
.program-report {
  margin-top: 6px;
  padding: 16px 14px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px dashed rgba(47, 90, 243, 0.5);
  position: relative;
  overflow: hidden;
}

/* 背景にうっすらコンパス感を足したいときの演出（任意） */
.program-report::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(47, 90, 243, 0.08);
}

/* 小さなラベル */
.program-report__badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

/* タイトル（Compass Report の名前） */
.program-report__title {
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 6px;
}

.program-report__title span {
  color: var(--color-accent);
}

/* 説明文 */
.program-report__text {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .program-goal {
    max-width: 100%;
  }
  .program-goal__card {
    padding: 18px 14px 20px;
  }
  .program-goal__title {
    font-size: 16px;
  }
}



/* =========================================================
   キラッ（シャイン）エフェクト付きボタン
   ========================================================= */

.shine-button {
  position: relative;
  overflow: hidden;
  background: #2f5af3 !important; /* RASINブルー */
  color: #ffffff !important;       /* 文字を白へ */
  font-weight: 800;
  border-radius: 999px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

/* ボタンの中を走る光線 */
.shine-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shineMove 3.2s infinite ease-in-out;
}

/* 光の動き */
@keyframes shineMove {
  0% {
    left: -80%;
  }
  50% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

/* ホバー時の少し浮く動き（任意） */
.shine-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(47, 90, 243, 0.35);
}

/* ===== 固定CTAエリア（画面下） ===== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f7ff;
  padding: 10px 16px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.15);
}

/* ロゴ＋テキストを横並び */
.cta-with-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ロゴの大きさ */
.cta-logo {
  width: 26px;
  height: auto;
}

/* 固定CTAのボタン共通スタイル */
.fixed-cta .lead-cta__button {
  border-radius: 999px;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

/* ===== キラッと光るシャインエフェクト ===== */
.shine-button {
  position: relative;
  overflow: hidden;
  background: #2f5af3;       /* 青背景 */
  color: #ffffff;            /* 文字は白 */
  box-shadow: 0 6px 18px rgba(47, 90, 243, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 左から右に流れる光 */
.shine-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shineMove 3.0s infinite ease-in-out;
}

/* 光の動き */
@keyframes shineMove {
  0% {
    left: -80%;
  }
  50% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

/* ホバーでちょっとだけ浮く */
.shine-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 90, 243, 0.6);
}

/* スマホでボタンがコンテンツとかぶらないように */
@media (max-width: 640px) {
  body {
    padding-bottom: 80px;
  }
}

/* ヒーローの全体構造 */
/* ========= HERO 全体 ========= */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: radial-gradient(circle at top left, #e5efff 0, #ffffff 55%);
}

/* 中身を左右2カラムにする */
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); /* 左：文章ちょい広め */
  align-items: center;
  column-gap: 48px;
  min-height: 72vh; /* 高さを確保して、常に同じ面に見えるように */
}

/* 左側テキストエリア */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 800;
  margin: 0;
}

.hero__subtitle {
  font-size: 16px;
  color: #444;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 右側ビジュアルエリア */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(15, 23, 42, 0.28)); /* CAREERTっぽい影 */
  transform: translateY(10px); /* ちょっと下げて“地面”の上に立ってる感じに */
}

/* ========= レスポンシブ調整 ========= */

/* タブレット〜小さめPC（2カラムのまま、少し圧縮） */
@media (max-width: 1024px) {
  .hero__inner {
    padding: 0 20px;
    column-gap: 24px;
    min-height: 68vh;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__image {
    max-width: 320px;
    transform: translateY(0);
  }
}

/* スマホ幅：縦並び（テキストの下に画像） */
@media (max-width: 640px) {
  .hero__inner {
    grid-template-columns: 1fr;
    row-gap: 24px;
    text-align: center;
  }

  .hero__content {
    align-items: center;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero__image {
    max-width: 260px;
  }

  .hero {
    padding-bottom: 64px;
  }
}

/* =========================================
   FINAL GOAL セクション
========================================= */

.final-goal {
  background: linear-gradient(135deg, #eef2ff 0%, #ffffff 45%, #eef3ff 100%);
  padding: 120px 0;
  margin-top: 60px;
  border-radius: 20px;
}

.final-goal__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 24px;
}

/* ---- 左側 ---- */

.final-goal__title {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 24px;
}

.fg-highlight {
  color: #3758f9;
}

.fg-strong {
  font-weight: 700;
  background: linear-gradient(90deg, #3758f9, #6a7fff);
  -webkit-background-clip: text;
  color: transparent;
}

.final-goal__text {
  font-size: 20px;
  margin-bottom: 28px;
  color: #333;
}

.final-goal__list {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.final-goal__list li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}

.final-goal__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0c41ff;;
  font-weight: bold;
}

/* ---- 右側：Compass Report ---- */

.final-goal__right {
  flex: 0.9;
  display: flex;
  justify-content: center;
}

.compass-card {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(40, 60, 120, 0.18);
  position: relative;
  overflow: hidden;
}

.compass-card__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(120,160,255,0.35), transparent 70%);
  top: -40px;
  right: -40px;
  z-index: -1;
  border-radius: 50%;
}

.compass-card__label {
  font-size: 14px;
  font-weight: 700;
  color: #0c41ff;;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.compass-card__title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 6px;
}

.compass-card__sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

.compass-card__image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(30, 50, 110, 0.25);
}

/* ---- スマホ対応 ---- */

@media (max-width: 900px) {
  .final-goal__inner {
    flex-direction: column;
    text-align: center;
  }

  .final-goal__title {
    font-size: 38px;
  }

  .final-goal__text {
    font-size: 18px;
  }

  .compass-card {
    margin-top: 20px;
  }
}


.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-img {
  height: 42px;
}

.header__nav-cta {
  background: #254cd8;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.header__nav-cta:hover {
  opacity: 0.9;
}

/* スマホ対応 */


/* ===== RASINとは（ホワイトアカデミー風） ===== */

.about-section {
  background: #f7f8ff;
  padding: 90px 0;
}

.about-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 左の半円線（羅針盤イメージ） */
.about-visual {
  position: relative;
  width: 50%;
  height: 420px;
}

.compass-circle {
  position: absolute;
  top: 0;
  left: -40px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(47, 90, 243, 0.15);
}

.compass-circle.circle-2 {
  top: 40px;
  left: 0;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(47, 90, 243, 0.1);
}

/* 右側メイン内容 */
.about-content {
  width: 50%;
}

/* テキスト */
.about-title {
  font-size: 30px;
  font-weight: 800;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* カード */
.about-cards {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(47, 90, 243, 0.08);
}

.card-label {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
}

.card-value {
  font-size: 15px;
  font-weight: 600;
}


/* =========================
   こんなモヤモヤセクション
   ========================= */
.section.problems {
  background: #2e3b5a;            /* 濃いネイビー系 */
  padding: 80px 0;
}

.problems__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #ffffff;
}

.problems__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.problems__divider {
  width: 140px;
  height: 2px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, #ffffff 0%, #9fbafc 100%);
  border-radius: 999px;
}

.problems__cards {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.problems-card {
  background: #f6f8ff;
  border-radius: 18px;
  padding: 28px 20px 24px;
  width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problems-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5d8bff, #8fb5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 16px;
}

.problems-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #24304a;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .section.problems {
    padding: 56px 0;
  }

  .problems__title {
    font-size: 22px;
    line-height: 1.6;
  }

  .problems__cards {
    flex-direction: column;
    align-items: center;
  }

  .problems-card {
    width: 100%;
    max-width: 320px;
  }

  .problems-card__text {
    font-size: 15px;
  }
}

.section--problem-target {
  background: #eef2fb;
  padding: 80px 0;
}

.problem-target-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1100px;
  margin: 40px auto 0;
}

.problem-target-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px 26px;
  box-shadow: 0 18px 35px rgba(15, 35, 95, 0.12);
  flex: 1 1 200px;
  max-width: 210px;
  min-width: 180px;
}

.problem-target-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .problem-target-list {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .problem-target-item {
    max-width: 260px;
    width: 100%;
  }
}

/* ========== RASINとは（インパクトブロック） ========== */

.section--about {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-block {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 64px 72px;
  background: radial-gradient(circle at top left, #e7f0ff 0%, #f5f7ff 45%, #ffffff 100%);
  box-shadow: 0 18px 45px rgba(8, 27, 77, 0.12);
}

.about-block__bg-circle {
  position: absolute;
  left: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(93, 148, 255, 0.35), transparent 65%),
    radial-gradient(circle at 70% 70%, rgba(37, 92, 221, 0.25), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.about-block__layout {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  z-index: 1;
}

.about-block__heading {
  flex: 3;
}

.about-block__info {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* テキスト周り */
.about-block__tagline {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #2460ff;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-block__title {
  font-size: 28px;
  margin-bottom: 18px;
}

.about-block__lead {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-block__text {
  font-size: 15px;
  line-height: 1.9;
  color: #3b4556;
}

/* 右側のカード（対象・形式・期間） */

.about-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 33, 88, 0.08);
}

.about-pill__label {
  font-size: 13px;
  font-weight: 600;
  color: #7c8597;
}

.about-pill__text {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

/* ---------- スマホ対応 ---------- */

@media (max-width: 768px) {
  .about-block {
    padding: 36px 20px 32px;
    border-radius: 24px;
  }

  .about-block__layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .about-block__bg-circle {
    left: -120px;
    top: -160px;
    width: 360px;
    height: 360px;
    opacity: 0.5;
  }

  .about-block__title {
    font-size: 22px;
  }

  .about-block__lead,
  .about-block__text {
    font-size: 14px;
  }

  .about-pill {
    width: 100%;
    padding: 14px 16px;
  }

  .about-pill__text {
    font-size: 14px;
  }
}


/* ========== RASINとは（インパクトブロック） ========== */

.section--about {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-block {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 64px 72px;
  background: radial-gradient(circle at top left, #e7f0ff 0%, #f5f7ff 45%, #ffffff 100%);
  box-shadow: 0 18px 45px rgba(8, 27, 77, 0.12);
}

.about-block__bg-circle {
  position: absolute;
  left: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(93, 148, 255, 0.35), transparent 65%),
    radial-gradient(circle at 70% 70%, rgba(37, 92, 221, 0.25), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.about-block__layout {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  z-index: 1;
}

.about-block__heading {
  flex: 3;
}

.about-block__info {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* テキスト周り（フォント拡大版） */
.about-block__tagline {
  font-size: 16px; /* ←14px →16px */
  letter-spacing: 0.16em;
  color: #2460ff;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-block__title {
  font-size: 34px; /* ←28px →34px */
  font-weight: 700;
  margin-bottom: 22px;
  font-weight: 800;
}

.about-block__lead {
  font-size: 18px; /* ←16px →18px */
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-block__text {
  font-size: 17px; /* ←15px →17px */
  line-height: 1.9;
  color: #3b4556;
}

/* 右側のカード（対象・形式・期間） */

.about-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 33, 88, 0.08);
}

.about-pill__label {
  font-size: 14px; /* ←13px →14px */
  font-weight: 600;
  color: #7c8597;
}

.about-pill__text {
  font-size: 16px; /* ←15px →16px */
  font-weight: 600;
  color: #111827;
}

/* ---------- スマホ対応（文字もさらに大きく） ---------- */

@media (max-width: 768px) {
  .about-block {
    padding: 36px 20px 32px;
    border-radius: 24px;
  }

  .about-block__layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .about-block__bg-circle {
    left: -120px;
    top: -160px;
    width: 360px;
    height: 360px;
    opacity: 0.5;
  }

  .about-block__title {
    font-size: 28px; /* ←22px →28px */
    font-weight: 800;
  }

  .about-block__lead {
    font-size: 17px; /* ←14px →17px */
    line-height: 1.9;
  }

  .about-block__text {
    font-size: 16px; /* ←14px →16px */
    line-height: 1.9;
  }

  .about-pill {
    width: 100%;
    padding: 16px 18px;
  }

  .about-pill__text {
    font-size: 15px;
  }
}


.law-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e0e4ef;
}

.law-row dt {
  font-weight: 600;
  color: #374151;
}

.law-row dd {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .law-row {
    grid-template-columns: 1fr;
  }
}
