@charset "UTF-8";

/* ==========================================================
   MIGIUDE LP
   ========================================================== */

/* ----- 変数 ----- */
:root {
  --color-red: #f43325;
  --color-orange: #ff8a50;
  --color-teal: #14a38b;
  --color-yellow: #f6a83c;
  --color-text: #1a1a1a;
  --color-gray-bg: #f2f2f2;
  --color-white: #fff;
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Special Gothic Expanded One", sans-serif;
  --header-height: 96px;
  --content-width: 1200px;
}

/* ----- リセット ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  list-style: none;
}

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

/* ----- 共通 ----- */
.accent {
  color: var(--color-red);
}

.font-en {
  font-family: var(--font-en);
  font-weight: 400;
}

/* CTAボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.btn--primary {
  min-width: 300px;
  padding: 22px 28px 22px 44px;
  border: none;
  cursor: pointer;
  font-family: var(--font-base);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-red) 100%);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(244, 51, 37, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(244, 51, 37, 0.45);
}

.btn__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-white);
  flex-shrink: 0;
}

/* ==========================================================
   ヘッダー
   ========================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 56px;
  height: 72px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header__logo {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--color-red);
  line-height: 1;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header__nav-list a {
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.header__nav-list a:hover {
  color: var(--color-red);
}

/* ハンバーガー（SP用） */
.header__menu-btn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header__menu-btn span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__menu-btn span:nth-child(1) { top: 15px; }
.header__menu-btn span:nth-child(2) { top: 21px; }
.header__menu-btn span:nth-child(3) { top: 27px; }

.header__menu-btn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================
   ファーストビュー
   ========================================================== */
.hero {
  padding: calc(var(--header-height) + 80px) 40px 120px;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1540px;
  margin: 0 auto;
}

.hero__text {
  flex: 0 0 46%;
}

.hero__catch {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.hero__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero__lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.1;
  margin-bottom: 56px;
}

.hero__image {
  flex: 0 0 50%;
}

/* ==========================================================
   お悩みセクション
   ========================================================== */
.problem {
  padding: 120px 24px 160px;
  text-align: center;
}

.problem__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* セクションラベル（○ + 赤文字） */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-red);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}

.section-label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 4px solid var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.problem__title {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 24px;
}

.problem__sub {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.1em;
  margin-bottom: 140px;
}

.problem__text {
  font-size: 22px;
  font-weight: 700;
  line-height: 2.2;
  margin-bottom: 140px;
}

.problem__text--last {
  margin-bottom: 0;
}

.problem__big {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 160px;
}

/* ==========================================================
   課題（欠如）セクション
   ========================================================== */
.lack {
  background: var(--color-gray-bg);
  padding: 120px 24px 160px;
}

.lack__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.lack__heading {
  text-align: center;
  margin-bottom: 100px;
}

.lack__heading-sub {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.6;
}

.lack__heading-main {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.6;
  margin: 24px 0;
}

/* カード */
.lack__card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 72px 80px 88px;
  max-width: 1100px;
  margin: 0 auto 96px;
}

.lack__card:last-child {
  margin-bottom: 0;
}

.lack__card-title {
  color: var(--color-red);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 40px;
}

.lack__card-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #888;
  margin: 32px 0 8px 24px;
}

.lack__card-label:first-of-type {
  margin-top: 0;
}

.lack__list {
  margin-left: 24px;
}

.lack__list li {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  padding-left: 1em;
  position: relative;
}

.lack__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ==========================================================
   SOLUTIONセクション
   ========================================================== */
.solution {
  padding: 120px 40px 200px;
}

.solution__banner {
  max-width: 1540px;
  margin: 0 auto;
  padding: 130px 40px;
  border-radius: 48px;
  background: linear-gradient(120deg, var(--color-orange) 0%, var(--color-red) 75%);
  text-align: center;
  color: var(--color-white);
}

.solution__label {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.24em;
  margin-bottom: 56px;
}

.solution__banner-text {
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 900;
  line-height: 1.9;
}

.solution__title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.8;
  margin: 160px auto 72px;
}

.solution__title--second {
  margin-top: 220px;
}

.solution__text {
  max-width: 840px;
  margin: 0 auto 48px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.2;
}

.solution__text--narrow {
  max-width: 640px;
  margin-bottom: 0;
}

/* ==========================================================
   プラン紹介セクション
   ========================================================== */
.plans {
  background: var(--color-gray-bg);
  padding: 140px 40px 180px;
}

.plans__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.plans__logo {
  text-align: center;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.plans__lead {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 130px;
}

.plans__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.plans__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans__name {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.plans__name--makaseru {
  color: var(--color-teal);
}

.plans__name--sodateru {
  color: var(--color-yellow);
}

.plans__copy {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 48px;
}

.plans__desc {
  font-size: 17px;
  font-weight: 500;
  line-height: 2.1;
  flex-grow: 1;
  margin-bottom: 56px;
}

.plans__box {
  width: 100%;
  background: var(--color-white);
  border: 1px solid #999;
  padding: 56px 48px 64px;
}

.plans__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 48px;
}

.plans__box-list {
  display: table;
  margin: 0 auto;
}

.plans__box-list li {
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  padding-left: 1em;
  position: relative;
}

.plans__box-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* プラン詳細ボタン */
.btn--plan {
  position: relative;
  min-width: 320px;
  justify-content: center;
  padding: 20px 48px 20px 32px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  margin-top: 72px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--plan .btn__ring {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

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

.btn--teal {
  background: var(--color-teal);
  box-shadow: 0 8px 20px rgba(20, 163, 139, 0.3);
}

.btn--yellow {
  background: var(--color-yellow);
  box-shadow: 0 8px 20px rgba(246, 168, 60, 0.35);
}

.btn__ring {
  width: 12px;
  height: 12px;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================================
   MAKASERUプラン詳細セクション
   ========================================================== */
.makaseru {
  background: var(--color-gray-bg);
  padding: 40px 40px 180px;
}

.makaseru__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* プラン見出し（SODATERUでも再利用） */
.plan-header__name {
  text-align: center;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.plan-header__name--makaseru {
  color: var(--color-teal);
}

.plan-header__name--sodateru {
  color: var(--color-yellow);
}

.plan-header__sub {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 72px;
}

/* 白カード */
.plan-card {
  background: var(--color-white);
  border: 1px solid #c8c8c8;
  padding: 80px 88px 96px;
}

.plan-card--chart {
  border: none;
}

.plan-card__lead {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 64px;
}

/* 業務内容3カラム */
.plan-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.plan-col__title {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
}

.plan-col__list li {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  padding-left: 1em;
  position: relative;
  margin-bottom: 16px;
}

.plan-col__list li:last-child {
  margin-bottom: 0;
}

.plan-col__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* 費用 */
.makaseru__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  margin: 140px 0 56px;
}

.makaseru__price-label {
  font-size: 26px;
  font-weight: 900;
}

.makaseru__price-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.makaseru__price-unit {
  font-size: 26px;
  font-weight: 900;
}

/* 費用比較グラフ */
.plan-card--chart {
  padding-top: 88px;
}

.makaseru__chart-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 48px;
}

.chart__cols {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  justify-content: center;
  column-gap: 72px;
  align-items: end;
}

.chart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.chart__label {
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 12px;
}

.chart__label--blue { color: #1668b8; }
.chart__label--orange { color: #ea6027; }
.chart__label--teal { color: var(--color-teal); }

.chart__bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart__bar--blue {
  height: calc(308px * var(--chart-scale, 1));
  background: #1668b8;
}

.chart__bar--orange {
  height: calc(340px * var(--chart-scale, 1));
  background: #ea6027;
}

.chart__bar--teal {
  height: calc(159px * var(--chart-scale, 1));
  background: var(--color-teal);
}

.chart__bar--teal span {
  color: var(--color-white);
  font-size: 17px;
  letter-spacing: 0.08em;
}

/* 吹き出し＋矢印 */
.chart__callout {
  background: var(--color-white);
  border: 2px solid var(--color-teal);
  border-radius: 12px;
  padding: 20px 28px;
  align-self: stretch;
  margin-bottom: 20px;
}

.chart__callout-head {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.chart__callout-num {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.3;
}

.chart__callout-foot {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.chart__arrow {
  width: 22px;
  height: 18px;
  background: var(--color-teal);
  margin-bottom: 26px;
  position: relative;
}

.chart__arrow::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 18px solid var(--color-teal);
}

/* 基準線・横軸ラベル */
.chart__baseline {
  border-bottom: 2px solid #333;
  margin-top: 0;
}

.chart__xlabels {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  justify-content: center;
  column-gap: 72px;
  margin-top: 20px;
}

.chart__xlabels p {
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.8;
}

.chart__note {
  width: fit-content;
  margin: 72px auto 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

/* SP専用改行（PCでは非表示） */
.br-sp {
  display: none;
}

/* ==========================================================
   SODATERUプラン紹介セクション
   ========================================================== */
.sodateru {
  background: var(--color-gray-bg);
  padding: 40px 40px 180px;
}

.sodateru__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sodateru__program-title {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}

.sodateru__program-sub {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 72px;
}

.sodateru__message {
  width: fit-content;
  margin: 96px auto 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 2;
}

/* 費用 */
.sodateru__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 88px;
  margin-top: 80px;
}

.sodateru__price-label {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.7;
}

.sodateru__price-label span {
  font-size: 16px;
}

.sodateru__price-value {
  display: flex;
  align-items: baseline;
}

.sodateru__price-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.sodateru__price-unit {
  font-size: 24px;
  font-weight: 900;
}

/* ==========================================================
   利用の流れセクション
   ========================================================== */
.flow {
  padding: 160px 24px 180px;
}

.flow__inner {
  max-width: 740px;
  margin: 0 auto;
}

.flow__title {
  width: fit-content;
  margin: 0 auto 110px;
  padding: 0 10px 16px;
  border-bottom: 2px solid var(--color-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.flow__step {
  margin-bottom: 80px;
}

.flow__step:last-child {
  margin-bottom: 0;
}

.flow__step-label {
  color: var(--color-red);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.flow__step-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
}

.flow__step-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.flow__link {
  color: var(--color-red);
}

.flow__link:hover {
  text-decoration: underline;
}

.flow__free {
  border: 1px solid var(--color-red);
  color: var(--color-red);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  padding: 44px 24px;
  margin-bottom: 80px;
}

/* ==========================================================
   よくあるご質問セクション
   ========================================================== */
.faq {
  background: var(--color-gray-bg);
  padding: 140px 24px 180px;
}

.faq__inner {
  max-width: 740px;
  margin: 0 auto;
}

.faq__title {
  width: fit-content;
  margin: 0 auto 110px;
  padding: 0 10px 16px;
  border-bottom: 2px solid var(--color-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.faq__item {
  margin-bottom: 88px;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__q {
  color: var(--color-red);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 28px;
}

.faq__a {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
}

/* ==========================================================
   お問い合わせセクション
   ========================================================== */
.contact {
  padding: 160px 24px 180px;
}

.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact__title {
  width: fit-content;
  margin: 0 auto 48px;
  padding: 0 10px 16px;
  border-bottom: 2px solid var(--color-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.contact__lead {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 120px;
}

/* フォーム */
.form__row {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.form__row--textarea {
  align-items: start;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 32px;
}

.form__row--textarea .form__label {
  padding-top: 8px;
}

.form__label-text {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.6;
}

.form__req {
  background: var(--color-red);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  border-radius: 999px;
  flex-shrink: 0;
}

.form__field input[type="text"],
.form__field input[type="tel"],
.form__field input[type="email"],
.form__field textarea {
  width: 100%;
  border: 1px solid #555;
  border-radius: 0;
  background: var(--color-white);
  font-family: var(--font-base);
  font-size: 16px;
  padding: 20px 16px;
  -webkit-appearance: none;
  appearance: none;
}

.form__field textarea {
  resize: vertical;
  min-height: 300px;
}

.form__field input:focus,
.form__field textarea:focus {
  outline: 2px solid var(--color-red);
  outline-offset: -1px;
}

/* ラジオボタン */
.form__field--radio {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}

.radio input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.radio__mark {
  width: 32px;
  height: 32px;
  border: 2px solid #333;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.radio input:checked + .radio__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #111;
  border-radius: 50%;
}

.radio input:focus-visible + .radio__mark {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.radio__text {
  font-size: 17px;
  font-weight: 900;
}

/* チェックボックス */
.form__agree {
  text-align: center;
  margin: 100px 0 64px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.checkbox__mark {
  width: 28px;
  height: 28px;
  border: 1px solid #333;
  background: var(--color-white);
  position: relative;
  flex-shrink: 0;
}

.checkbox input:checked + .checkbox__mark::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 8px;
  height: 15px;
  border: solid var(--color-red);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox input:focus-visible + .checkbox__mark {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.checkbox__text {
  font-size: 15px;
  font-weight: 700;
}

.checkbox__link {
  color: var(--color-red);
  text-decoration: underline;
}

.checkbox__link:hover {
  text-decoration: none;
}

/* ハニーポット */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* エラー表示 */
.form__err {
  display: none;
  color: var(--color-red);
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.form__err.is-show {
  display: block;
}

.form__field input.is-error,
.form__field textarea.is-error {
  border-color: var(--color-red);
  background: #fff5f4;
}

/* 送信ボタン */
.form__submit-wrap {
  text-align: center;
}

/* 確認モーダル */
.confirm {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
  overflow-y: auto;
  padding: 48px 16px;
}

.confirm.is-open {
  display: block;
}

.confirm__box {
  background: var(--color-white);
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 56px 56px 48px;
}

.confirm__title {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
}

.confirm__lead {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
}

.confirm__list {
  margin-bottom: 40px;
}

.confirm__item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  padding: 18px 8px;
  border-bottom: 1px solid #e3e3e3;
}

.confirm__item:first-child {
  border-top: 1px solid #e3e3e3;
}

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

.confirm__item dd {
  font-size: 14px;
  font-weight: 500;
  word-break: break-word;
  white-space: pre-wrap;
}

.confirm__turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.confirm__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.confirm__back {
  min-width: 180px;
  justify-content: center;
  padding: 20px 32px;
  border-radius: 999px;
  border: 2px solid #999;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.confirm__back:hover {
  background: #f2f2f2;
}

.confirm__send {
  min-width: 240px;
  border: none;
  cursor: pointer;
  font-family: var(--font-base);
}

/* ==========================================================
   フッター
   ========================================================== */
.footer {
  background: var(--color-gray-bg);
  padding: 100px 24px;
  text-align: center;
}

.footer__tagline {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__logo {
  width: fit-content;
  margin: 0 auto 72px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__copyright {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================
   サンクスページ
   ========================================================== */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 24px 80px;
  text-align: center;
}

.thanks__title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 32px;
}

.thanks__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  margin-bottom: 56px;
}

/* ==========================================================
   文字送りアニメーション
   ========================================================== */
.js-reveal .char {
  opacity: 0;
  transition: opacity 0.3s ease;
  transition-delay: calc(var(--i) * 0.045s);
}

.js-reveal.is-visible .char {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .char {
    transition: none;
  }
}

/* ==========================================================
   レスポンシブ
   ========================================================== */
@media (max-width: 1080px) {
  .hero__title {
    font-size: 32px;
  }

  .header__nav-list {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .header {
    padding: 16px 16px 0;
  }

  .header__inner {
    height: 60px;
    padding: 0 8px 0 24px;
  }

  .header__logo {
    font-size: 20px;
  }

  /* SPナビ：ドロワー */
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    padding: 100px 32px 40px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

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

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .header__nav-list a {
    font-size: 18px;
  }

  .header__menu-btn {
    display: block;
    z-index: 10;
  }

  /* ヒーロー */
  .hero {
    padding: calc(var(--header-height) + 40px) 24px 72px;
  }

  .hero__inner {
    flex-direction: column;
  }

  .hero__text,
  .hero__image {
    flex: none;
    width: 100%;
  }

  .hero__catch {
    font-size: 18px;
  }

  .hero__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .hero__lead {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero__lead br {
    display: none;
  }

  .btn--primary {
    min-width: 100%;
    padding: 18px 24px 18px 32px;
    font-size: 16px;
  }

  /* お悩みセクション */
  .problem {
    padding: 72px 24px 96px;
  }

  .section-label {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .section-label::before {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .problem__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .problem__sub {
    font-size: 17px;
    margin-bottom: 80px;
  }

  .problem__text {
    font-size: 17px;
    margin-bottom: 80px;
  }

  .problem__text--last {
    margin-bottom: 0;
  }

  .problem__big {
    font-size: clamp(30px, 8.5vw, 40px);
    margin-bottom: 96px;
  }

  /* 課題（欠如）セクション */
  .lack {
    padding: 72px 20px 96px;
  }

  .lack__heading {
    margin-bottom: 56px;
  }

  .lack__heading-sub {
    font-size: 18px;
  }

  .lack__heading-main {
    font-size: clamp(22px, 6.5vw, 30px);
    margin: 16px 0;
  }

  .lack__card {
    border-radius: 16px;
    padding: 40px 24px 48px;
    margin-bottom: 40px;
  }

  .lack__card-title {
    font-size: 19px;
    margin-bottom: 24px;
  }

  .lack__card-label {
    margin-left: 0;
  }

  .lack__list {
    margin-left: 0;
  }

  .lack__list li {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 8px;
  }

  .lack__list li br {
    display: none;
  }

  /* SOLUTIONセクション */
  .solution {
    padding: 72px 20px 96px;
  }

  .solution__banner {
    padding: 64px 24px;
    border-radius: 24px;
  }

  .solution__label {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .solution__banner-text {
    font-size: clamp(19px, 5.2vw, 26px);
  }

  .solution__title {
    font-size: 24px;
    margin: 80px auto 40px;
  }

  .solution__title--second {
    margin-top: 112px;
  }

  .solution__text {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 32px;
  }

  .solution__text br {
    display: none;
  }

  /* プラン紹介セクション */
  .plans {
    padding: 72px 20px 96px;
  }

  .plans__logo {
    font-size: 28px;
  }

  .plans__lead {
    font-size: 15px;
    margin-bottom: 64px;
  }

  .plans__grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .plans__name {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .plans__copy {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .plans__desc {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 32px;
  }

  .plans__box {
    padding: 32px 24px 40px;
  }

  .plans__box-title {
    margin-bottom: 24px;
  }

  .plans__box-list li {
    font-size: 14px;
  }

  .btn--plan {
    min-width: 280px;
    margin-top: 40px;
    font-size: 15px;
  }

  /* MAKASERUプラン詳細セクション */
  .makaseru {
    padding: 24px 20px 96px;
  }

  .plan-header__name {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .plan-header__sub {
    font-size: 14px;
    margin-bottom: 48px;
  }

  .plan-card {
    padding: 40px 24px 48px;
  }

  .plan-card__lead {
    font-size: 14px;
    margin-bottom: 40px;
    text-align: left;
  }

  .plan-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .makaseru__price {
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 80px 0 40px;
  }

  .makaseru__price-label {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }

  .makaseru__price-num {
    font-size: 40px;
  }

  .makaseru__price-unit {
    font-size: 18px;
  }

  /* グラフ */
  .plan-card--chart {
    padding: 48px 16px 48px;
  }

  .makaseru__chart-title {
    font-size: 18px;
    margin-bottom: 32px;
    padding-left: 8px;
  }

  .chart {
    --chart-scale: 0.5;
  }

  .chart__cols,
  .chart__xlabels {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
  }

  .chart__label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .chart__bar--teal span {
    font-size: 11px;
  }

  .chart__callout {
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
  }

  .chart__callout-head {
    font-size: 11px;
  }

  .chart__callout-num {
    font-size: 17px;
  }

  .chart__callout-foot {
    font-size: 11px;
  }

  .chart__arrow {
    width: 12px;
    height: 10px;
    margin-bottom: 12px;
  }

  .chart__arrow::after {
    border-left-width: 12px;
    border-right-width: 12px;
    border-top-width: 10px;
  }

  .chart__xlabels {
    margin-top: 12px;
    column-gap: 6px;
  }

  .chart__xlabels p {
    font-size: 10px;
    line-height: 1.7;
    word-break: keep-all;
  }

  .br-sp {
    display: inline;
  }

  .chart__note {
    font-size: 14px;
    margin-top: 40px;
  }

  .chart__note br {
    display: none;
  }

  /* SODATERUプラン紹介セクション */
  .sodateru {
    padding: 24px 20px 96px;
  }

  .sodateru__program-title {
    font-size: 18px;
  }

  .sodateru__program-sub {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .sodateru__message {
    font-size: 16px;
    margin-top: 56px;
    line-height: 1.9;
  }

  .sodateru__message br {
    display: none;
  }

  .sodateru__price {
    flex-direction: column;
    gap: 24px;
    margin-top: 56px;
    text-align: center;
  }

  .sodateru__price-label {
    font-size: 18px;
  }

  .sodateru__price-label span {
    font-size: 14px;
  }

  .sodateru__price-num {
    font-size: 40px;
  }

  .sodateru__price-unit {
    font-size: 20px;
  }

  /* 利用の流れセクション */
  .flow {
    padding: 80px 24px 96px;
  }

  .flow__title {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 64px;
  }

  .flow__step {
    margin-bottom: 56px;
  }

  .flow__step-label {
    font-size: 16px;
  }

  .flow__step-title {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .flow__step-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .flow__free {
    font-size: 16px;
    padding: 28px 16px;
    margin-bottom: 56px;
  }

  /* お問い合わせセクション */
  .contact {
    padding: 80px 20px 96px;
  }

  .contact__title {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 32px;
  }

  .contact__lead {
    font-size: 14px;
    margin-bottom: 56px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .form__label {
    gap: 16px;
  }

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

  .form__label-text br {
    display: none;
  }

  .form__req {
    font-size: 11px;
    padding: 5px 12px;
  }

  .form__field input[type="text"],
  .form__field input[type="tel"],
  .form__field input[type="email"],
  .form__field textarea {
    font-size: 16px;
    padding: 14px 12px;
  }

  .form__field textarea {
    min-height: 220px;
  }

  .form__field--radio {
    gap: 20px;
  }

  .radio {
    gap: 14px;
  }

  .radio__mark {
    width: 26px;
    height: 26px;
  }

  .radio__text {
    font-size: 14px;
  }

  .form__agree {
    margin: 56px 0 40px;
  }

  .checkbox__mark {
    width: 24px;
    height: 24px;
  }

  .checkbox input:checked + .checkbox__mark::after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 13px;
  }

  .checkbox__text {
    font-size: 13px;
  }

  .confirm {
    padding: 24px 12px;
  }

  .confirm__box {
    padding: 32px 20px 32px;
    border-radius: 12px;
  }

  .confirm__title {
    font-size: 18px;
  }

  .confirm__item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 4px;
  }

  .confirm__actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
  }

  /* よくあるご質問セクション */
  .faq {
    padding: 80px 24px 96px;
  }

  .faq__title {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 64px;
  }

  .faq__item {
    margin-bottom: 56px;
  }

  .faq__q {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .faq__a {
    font-size: 15px;
    line-height: 2;
  }

  /* フッター */
  .footer {
    padding: 64px 20px;
  }

  .footer__tagline {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer__logo {
    font-size: 24px;
    margin-bottom: 48px;
  }

  .footer__copyright {
    font-size: 12px;
  }
}
