/* ============================================
   ① ベース・リセット
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-mint: #019d90;
  --primary-hover: #018075;
  --accent-pink: #dc4d79;
  --accent-pink-hover: #c43b66;
  --text-main: #2b2835;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --white: #ffffff;
  --bg-light: #f9fafb;
  --bg-mint-light: #e8f5f3;
  --border-color: #e5e7eb;
  --shadow-soft: 0 8px 24px rgba(43, 40, 53, 0.05);
  --shadow-soft-hover: 0 12px 32px rgba(43, 40, 53, 0.1);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--text-main);
  background: var(--white);
  word-break: normal;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 78px;
    font-size: 15px;
  }
}

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

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

ul,
ol {
  list-style: none;
}

.pc-only {
  display: inline;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.inline-block {
  display: inline-block;
}

/* ============================================
   ② 汎用レイアウト構造
   ============================================ */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.lp-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-logo {
  height: 32px;
}

/* ヘッダーCTAボタン（ピンク統一） */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--accent-pink);
  border-radius: var(--radius-pill);
  transition: background 0.3s ease, transform 0.2s ease;
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
}

.header-cta:hover {
  background: var(--accent-pink-hover);
  transform: translateY(-1px);
}

.lp-footer {
  padding: 40px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  background: var(--text-main);
}

.footer-partner-text {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
}

/* ============================================
   ③ 汎用パーツ・コンポーネント
   ============================================ */

/* セクションタイトル */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 50px;
  text-align: center;
}

.section-title .title-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-pink);
}

.section-title .title-main {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .section-title .title-main {
    font-size: 24px;
  }
}

.section-title .title-accent {
  color: var(--primary-mint);
}

/* CTAボタン */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: var(--accent-pink);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .btn-primary {
    padding: 14px 32px;
    font-size: 15px;
  }
}

.btn-primary:hover {
  background: var(--accent-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 77, 121, 0.3);
}

.btn-primary i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

/* ボタンの上のマイクロコピー（フラット） */
.btn-with-micro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-micro-copy {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-pink);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .btn-micro-copy {
    font-size: 11px;
  }
}

/* シャインエフェクト */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  content: "";
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

/* パルスアニメーション削除 */

/* カード */
.card {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-hover);
}

/* フェードインアニメーション */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* スマホ用下部固定追従ボタン */
.sticky-cta-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: none;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .sticky-cta-wrapper {
    display: block;
  }
}

.sticky-cta-wrapper .btn-primary {
  display: flex;
  width: 100%;
  padding: 14px 20px;
}

/* ============================================
   ④ ページ・機能固有スタイル
   ============================================ */

/* 1. FV (First View) */
.fv {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 64px);
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #e8f5f3 0%, #ffffff 40%, #fff5f8 100%);
  overflow: hidden;
}

@media (max-width: 991px) {
  .fv {
    padding: 100px 0 60px;
    min-height: auto;
  }
}

.fv-bg-deco {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.fv-bg-deco.scatter-left {
  top: 10%;
  left: 0;
  width: 180px;
  height: 300px;
  background-image: url("images/scatter-left.svg");
  opacity: 0.7;
}

@media (max-width: 768px) {
  .fv-bg-deco.scatter-left {
    display: none;
  }
}

.fv-bg-deco.scatter-right {
  right: 0;
  bottom: 0;
  width: 160px;
  height: 280px;
  background-image: url("images/scatter-right.svg");
  opacity: 0.7;
}

@media (max-width: 768px) {
  .fv-bg-deco.scatter-right {
    display: none;
  }
}

.fv-bg-deco.leaf-deco {
  top: 5%;
  right: 8%;
  width: 120px;
  height: 120px;
  background-image: url("images/bg_leaf.svg");
  opacity: 0.4;
}

@media (max-width: 991px) {
  .fv-bg-deco.leaf-deco {
    display: none;
  }
}

.fv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 991px) {
  .fv-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

.fv-content {
  position: relative;
  z-index: 2;
  width: 55%;
}

@media (max-width: 991px) {
  .fv-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.fv-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-mint);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .fv-label {
    font-size: 12px;
  }
}

.fv-title {
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .fv-title {
    font-size: 28px;
  }
}

.fv-title .brand-name {
  color: var(--primary-mint);
}

.fv-title .main-copy {
  color: var(--accent-pink);
  background: linear-gradient(transparent 70%, rgba(220, 77, 121, 0.15) 30%);
}

.fv-badge-row {
  margin-bottom: 24px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-mint);
  background: rgba(1, 157, 144, 0.04);
  border: 1.5px solid var(--primary-mint);
  border-radius: 6px;
}

.ai-badge i {
  font-size: 16px;
}

.fv-description {
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: justify;
}

@media (max-width: 991px) {
  .fv-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .fv-description {
    text-align: left;
  }
}

.fv-achievements {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
  width: fit-content;
}

@media (max-width: 768px) {
  .fv-achievements {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .fv-achievements {
    gap: 10px;
  }
}

.achievement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  padding: 10px;
  background: var(--bg-mint-light);
  border: 1.5px solid rgba(1, 157, 144, 0.2);
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-mint);
}

@media (max-width: 576px) {
  .achievement-card {
    width: 108px;
    height: 108px;
  }
}

.achievement-card i {
  margin-bottom: 6px;
  font-size: 26px;
  color: var(--primary-mint);
}

@media (max-width: 576px) {
  .achievement-card i {
    margin-bottom: 3px;
    font-size: 20px;
  }
}

.ach-title {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

@media (max-width: 576px) {
  .ach-title {
    font-size: 8px;
  }
}

.ach-text {
  /* ③ タイポグラフィ */
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--accent-pink);
}

@media (max-width: 576px) {
  .ach-text {
    /* ③ タイポグラフィ */
    font-size: 13px;
  }
}

.fv-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: max-content;
}

@media (max-width: 991px) {
  .fv-cta-wrapper {
    align-items: center;
    width: 100%;
  }
}

.fv-cta-note {
  font-size: 13px;
  color: var(--text-light);
}

.fv-visual {
  position: relative;
  z-index: 2;
  width: 42%;
}

@media (max-width: 991px) {
  .fv-visual {
    width: 100%;
    max-width: 420px;
  }
}

.fv-visual-wrapper {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 15px 30px rgba(1, 157, 144, 0.1));
}

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

/* 2. パートナープログラムのメリット */
.merits {
  padding: 100px 0;
  background: var(--bg-light);
}

@media (max-width: 768px) {
  .merits {
    padding: 80px 0;
  }
}

.merits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .merits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .merits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.merit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.merit-card:hover {
  border-color: var(--primary-mint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-hover);
}

.merit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--primary-mint);
  background: var(--bg-mint-light);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.merit-card:hover .merit-icon {
  transform: scale(1.1);
}

.merit-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-main);
}

.merit-text strong {
  color: var(--accent-pink);
  font-weight: 700;
}

@media (max-width: 768px) {
  .merit-text {
    font-size: 14px;
  }
}

/* 3. サービス概要 */
.service {
  padding: 100px 0;
  background: var(--white);
}

@media (max-width: 768px) {
  .service {
    padding: 80px 0;
  }
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .service-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-highlight-card {
  padding: 40px 24px;
  background: var(--white);
  border: 2px solid rgba(1, 157, 144, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-highlight-card:hover {
  border-color: var(--primary-mint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-hover);
}

.service-highlight-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-mint), var(--primary-hover));
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.service-highlight-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-main);
}

.service-highlight-title strong {
  color: var(--primary-mint);
  font-weight: 800;
}

@media (max-width: 768px) {
  .service-highlight-title {
    font-size: 18px;
  }
}

.service-highlight-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.service-highlight-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.service-highlight-visual a {
  transition: opacity 0.3s ease;
}

.service-highlight-visual a:hover {
  opacity: 0.85;
}

.service-bp-logo {
  max-width: 180px;
  height: auto;
}

.service-bp-capture {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-md);
}

.service-ai-logo {
  max-width: 140px;
  height: auto;
}

.service-contents-heading {
  margin-bottom: 40px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-mint);
}

.service-contents-heading span {
  display: inline-block;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .service-contents-heading span {
    letter-spacing: 0;
  }
}

.service-contents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .service-contents-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.service-content-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.service-content-card:hover {
  background: var(--bg-mint-light);
  border-color: rgba(1, 157, 144, 0.15);
}

.service-content-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary-mint);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-content-body h4 {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-main);
}

.service-content-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-cta-wrapper {
  text-align: center;
}

/* 4. 参加の流れ */
.flow {
  /* ① 位置・配置 */
  /* ② ボックスモデル */
  padding: 100px 0;

  /* ④ 装飾 */
  background: var(--bg-light);
}

@media (max-width: 768px) {
  .flow {
    /* ② ボックスモデル */
    padding: 80px 0;
  }
}

.flow-steps {
  /* ① 位置・配置 */
  display: flex;
  gap: 32px;

  /* ② ボックスモデル */
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .flow-steps {
    /* ① 位置・配置 */
    flex-direction: column;
    gap: 32px;
  }
}

.flow-step {
  /* ① 位置・配置 */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  /* ② ボックスモデル */
  padding: 36px 24px;

  /* ③ タイポグラフィ */
  text-align: center;

  /* ④ 装飾 */
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
  .flow-step {
    /* ② ボックスモデル */
    padding: 24px 20px;
  }
}

.flow-step:not(:last-child)::after {
  /* ① 位置・配置 */
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 2;

  /* ③ タイポグラフィ */
  font-size: 20px;
  color: var(--primary-mint);

  /* ⑤ アニメーション・その他 */
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .flow-step:not(:last-child)::after {
    /* ① 位置・配置 */
    top: auto;
    right: auto;
    bottom: -28px;
    left: 50%;
    z-index: 10;

    /* ③ タイポグラフィ */
    font-size: 16px;

    /* ⑤ アニメーション・その他 */
    content: "\f078";
    transform: translateX(-50%);
  }
}

.flow-step-number-wrap {
  /* ① 位置・配置 */
  display: flex;
  flex-direction: column;
  align-items: center;

  /* ② ボックスモデル */
  margin-bottom: 12px;
}

.flow-step-label {
  /* ② ボックスモデル */
  margin-bottom: 4px;

  /* ③ タイポグラフィ */
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-mint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-step-number {
  /* ① 位置・配置 */
  display: flex;
  align-items: center;
  justify-content: center;

  /* ② ボックスモデル */
  width: 56px;
  height: 56px;
  margin: 0;

  /* ③ タイポグラフィ */
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);

  /* ④ 装飾 */
  background: linear-gradient(135deg, var(--primary-mint), var(--primary-hover));
  border-radius: 50%;
}

.flow-step-title {
  /* ② ボックスモデル */
  margin-bottom: 12px;

  /* ③ タイポグラフィ */
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-main);
}

.flow-step-desc {
  /* ② ボックスモデル */
  margin-bottom: 24px;

  /* ③ タイポグラフィ */
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
  color: var(--text-muted);
}

.flow-detail-media-box {
  /* ① 位置・配置 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* ② ボックスモデル */
  width: 100%;
  max-width: 240px;
  height: auto;
  min-height: 260px;
}

@media (max-width: 768px) {
  .flow-detail-media-box {
    /* ① 位置・配置 */
    justify-content: flex-start;

    /* ② ボックスモデル */
    min-height: auto;
  }
}

.flow-detail-img-form {
  /* ② ボックスモデル */
  width: 100%;
  height: auto;

  /* ④ 装飾 */
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.flow-detail-img-partner {
  /* ② ボックスモデル */
  max-width: 185px;
  height: auto;
}

.flow-detail-media-box.step2-flow {
  /* ① 位置・配置 */
  justify-content: center;
  gap: 12px;

  /* ② ボックスモデル */
  height: auto;
  min-height: 260px;
}

@media (max-width: 768px) {
  .flow-detail-media-box.step2-flow {
    /* ① 位置・配置 */
    justify-content: center;

    /* ② ボックスモデル */
    min-height: auto;
  }
}

.flow-detail-partner-wrap {
  /* ① 位置・配置 */
  display: flex;
  flex-direction: column;
  align-items: center;

  /* ② ボックスモデル */
  margin-bottom: 8px;
}

.flow-detail-partner-text {
  /* ② ボックスモデル */
  margin-top: 8px;

  /* ③ タイポグラフィ */
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.flow-detail-img-ps {
  /* ② ボックスモデル */
  max-width: 185px;
  height: auto;
}

.flow-detail-arrow {
  /* ③ タイポグラフィ */
  font-size: 18px;
  color: var(--primary-mint);
}

.flow-detail-label {
  /* ③ タイポグラフィ */
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.flow-detail-img-bp {
  /* ② ボックスモデル */
  max-width: 215px;
  height: auto;
  margin-top: -6px;
}

.flow-detail-check-box {
  /* ② ボックスモデル */
  width: 100%;
  max-width: 280px;
  margin-top: auto;
  padding: 16px;

  /* ④ 装飾 */
  background: var(--white);
  border: 1.5px solid rgba(1, 157, 144, 0.2);
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .flow-detail-check-box {
    /* ② ボックスモデル */
    margin-top: 24px;
  }
}

.flow-detail-checks {
  /* ① 位置・配置 */
  display: flex;
  flex-direction: column;
  gap: 8px;

  /* ③ タイポグラフィ */
  text-align: left;
}

.flow-detail-checks li {
  /* ① 位置・配置 */
  display: flex;
  align-items: flex-start;
  gap: 6px;

  /* ③ タイポグラフィ */
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-main);
}

.flow-detail-checks li i {
  /* ① 位置・配置 */
  flex-shrink: 0;

  /* ② ボックスモデル */
  margin-top: 3px;

  /* ③ タイポグラフィ */
  color: var(--primary-mint);
  font-weight: 900;
}

.flow-note {
  /* ① 位置・配置 */
  display: flex;
  align-items: flex-start;
  gap: 6px;

  /* ② ボックスモデル */
  max-width: 700px;
  margin: 40px auto 0;
  padding: 16px 20px;

  /* ③ タイポグラフィ */
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);

  /* ④ 装飾 */
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.flow-note i {
  /* ① 位置・配置 */
  flex-shrink: 0;

  /* ② ボックスモデル */
  margin-top: 4px;

  /* ③ タイポグラフィ */
  color: var(--primary-mint);
}

/* 5. フォームセクション */
.form-section {
  padding: 100px 0;
  background: var(--white);
}

@media (max-width: 768px) {
  .form-section {
    padding: 80px 0;
  }
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border: 2px solid rgba(1, 157, 144, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
  .form-container {
    padding: 24px 16px;
  }
}

.form-description {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .form-description {
    text-align: left;
  }
}

/* ============================================
   ⑤ その他・固有アニメーションなど
   ============================================ */
@keyframes shine {
  0% {
    left: -60%;
  }

  20% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}



@keyframes sparkle {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
    text-shadow: 0 0 8px rgba(1, 157, 144, 0.6);
  }

  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}