/* ============================================
   いっぽ芽 企業向けLP - スタイルシート
   ============================================

   【このファイルの読み方】
   CSSは「セレクタ { プロパティ: 値; }」という形で書きます。
   /* こういう書き方 * / がコメント（説明文）です。
   ============================================ */


/* ============================================
   CSS変数（色・フォント・形の定義）
   --変数名: 値;  という形で定義します。
   var(--変数名) で使い回せます。
   ============================================ */
:root {
  /* 背景色 */
  --bg-main:    #F8F5EE;   /* メイン背景：温かみのあるアイボリー */
  --bg-alt:     #F2EBE0;   /* サブ背景：少し濃いアイボリー */
  --bg-green:   #EEF5EC;   /* グリーン系背景：薄いペールグリーン */
  --bg-white:   #FFFFFF;

  /* テキスト */
  --text-main:  #2B3B2C;   /* メインテキスト：ダーク系グリーン寄りネイビー */
  --text-sub:   #576658;   /* サブテキスト：少し明るいグリーン系 */
  --text-light: #8A9A8A;   /* 補足テキスト：薄いグリーン系 */

  /* ブランドカラー（ロゴの色から取得） */
  --green-dark:  #3C6B51;  /* ダークグリーン（ロゴのい・っの色） */
  --green-mid:   #5A8A6A;  /* ミドルグリーン */
  --green-pale:  #C2DDC8;  /* ペールグリーン（ボーダーなどに） */
  --lime:        #8DC43B;  /* ライムグリーン（ロゴの「芽」の色） */
  --orange:      #E8832A;  /* オレンジ（CTAボタン） */
  --orange-pale: #FBF0E6;  /* ペールオレンジ（背景に） */

  /* 角丸（border-radius） */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;   /* 完全な丸（ピルシェイプ） */

  /* 影 */
  --shadow-sm: 0 2px 10px rgba(44, 74, 52, 0.07);
  --shadow-md: 0 6px 24px rgba(44, 74, 52, 0.11);

  /* フォント */
  --font-round: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --font-sans:  'Noto Sans JP', sans-serif;
}


/* ============================================
   リセット・ベーススタイル
   ブラウザのデフォルトのずれをなくします
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;   /* 幅・高さの計算方法を統一 */
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;  /* ページ内リンクをなめらかにスクロール */
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;  /* フォントをなめらかに */
}

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

ul {
  list-style: none;
}

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

button {
  font-family: var(--font-sans);
  cursor: pointer;
}


/* ============================================
   .inner（コンテナ）
   コンテンツを中央に揃えて幅を制限します
   ============================================ */
.inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================
   表示切り替え（レスポンシブ用）
   ============================================ */
.sp-only { display: none; }   /* スマホのみ表示 */
.pc-only { display: inline; } /* PCのみ表示 */


/* ============================================
   共通：セクション見出し
   ============================================ */
.section-en {
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green-mid);
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-round);
  font-size: clamp(22px, 4vw, 30px);  /* 画面幅に合わせて可変 */
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}

.section-lead {
  font-size: 15px;
  line-height: 2;
  color: var(--text-sub);
  max-width: 680px;
  margin: -20px auto 40px;
  text-align: center;
}


/* ============================================
   CTAボタン（「無料相談してみる」ボタン）
   ============================================ */
.btn-cta {
  display: inline-block;
  background-color: var(--orange);
  color: #fff;
  font-family: var(--font-round);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 12px rgba(232, 131, 42, 0.35);
}

.btn-cta:hover {
  background-color: #d4731e;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(232, 131, 42, 0.4);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta-lg {
  font-size: 18px;
  padding: 18px 52px;
}


/* ============================================
   ヘッダー（ページ上部・スクロールしても固定）
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 238, 0.95);
  backdrop-filter: blur(8px);              /* 背景をぼかす */
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(60, 107, 81, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo-link {
  display: block;
}

.logo-img {
  width: 110px;
  height: auto;
}

.header-cta {
  font-size: 14px;
  padding: 10px 22px;
  box-shadow: 0 2px 8px rgba(232, 131, 42, 0.28);
}


/* ============================================
   1. ファーストビュー（Hero）
   ============================================ */
.hero {
  padding: 72px 0 64px;
  background: var(--bg-main);
  /* 背景に薄い葉っぱのような丸をCSSで描画 */
  background-image:
    radial-gradient(circle at 92% 20%, rgba(141, 196, 59, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 5% 85%, rgba(60, 107, 81, 0.05) 0%, transparent 45%);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-label {
  display: inline-block;
  background: var(--bg-green);
  color: var(--green-dark);
  border: 1px solid var(--green-pale);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: var(--font-round);
  font-size: clamp(26px, 5.5vw, 44px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-main);
  margin-bottom: 24px;
  word-break: keep-all; /* 不自然な途中改行を防ぐ */
}

.hero-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--text-sub);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-visual {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.hero-logo {
  width: 200px;
  margin-bottom: 4px;
}

.hero-chara {
  width: 160px;
  filter: drop-shadow(0 6px 16px rgba(60, 107, 81, 0.15));
  animation: float 4s ease-in-out infinite;  /* ふわふわアニメーション */
}

/* ふわふわと浮かぶアニメーション */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}


/* ============================================
   2. 企業の悩み（Problems）
   ============================================ */
.problems {
  padding: 80px 0;
  background: var(--bg-green);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.problem-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 52px;  /* 左にアイコン分の余白 */
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  line-height: 1.7;
  position: relative;
}

/* カードの左に点々（…）を表示 */
.problem-icon {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 20px;
  height: 20px;
  background: var(--bg-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--green-mid);
  border-radius: 50%;
}


/* ============================================
   3. SNSに力を入れることで（Benefits）
   ============================================ */
.benefits {
  padding: 84px 0;
  background: var(--bg-white);
}

.benefit-list {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  padding: 14px 20px;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--lime);
  line-height: 1.6;
}

/* チェックマーク */
.benefit-list li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}


/* ============================================
   4. いっぽ芽の立ち位置（Position）
   ============================================ */
.position {
  padding: 84px 24px;
  text-align: center;
  background: var(--green-dark);
  /* 葉っぱのような背景装飾 */
  background-image:
    radial-gradient(circle at 10% 50%, rgba(141, 196, 59, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(141, 196, 59, 0.08) 0%, transparent 45%);
}

.position-title {
  font-family: var(--font-round);
  font-size: clamp(24px, 4.5vw, 36px);
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 24px;
}

/* 「ありません。」の強調部分 */
.position-title .em {
  color: var(--lime);
  white-space: nowrap; /* スマホで途中改行させない */
}

.position-desc {
  font-size: 15.5px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto;
}


/* ============================================
   5. いっぽ芽の強み（Strengths）
   ============================================ */
.strengths {
  padding: 84px 0;
  background: var(--bg-alt);
}

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

.strength-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strength-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* 01 02 03 の番号 */
.strength-num {
  font-family: var(--font-round);
  font-size: 28px;
  font-weight: 800;
  color: var(--green-pale);
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.strength-card h3 {
  font-family: var(--font-round);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}

.strength-card p {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.9;
}


/* ============================================
   6. どんな人材がいる？（People）
   ============================================ */
.people {
  padding: 84px 0;
  background: var(--bg-main);
}

.people-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  margin-bottom: 32px;
}

.people-col {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
}

.people-col-head {
  margin-bottom: 18px;
}

/* タグ（「未経験・成長中の方」など） */
.people-tag {
  display: inline-block;
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--bg-green);
  border: 1.5px solid var(--green-pale);
  padding: 5px 16px;
  border-radius: var(--radius-full);
}

.people-tag-pro {
  color: #5A6B2A;
  background: #F4FAE6;
  border-color: #C8E08A;
}

.people-list li {
  font-size: 14px;
  color: var(--text-main);
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--bg-green);
  position: relative;
  line-height: 1.6;
}

.people-list li:last-child {
  border-bottom: none;
}

/* 箇条書きの点 */
.people-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--green-pale);
  border-radius: 50%;
}

.people-note {
  font-size: 14.5px;
  color: var(--text-sub);
  text-align: center;
  line-height: 2;
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-green);
  padding: 22px 28px;
  border-radius: var(--radius-md);
}

.people-note strong {
  color: var(--green-dark);
  font-weight: 700;
}


/* ============================================
   7. 相談しやすさ（Consult Ease）
   ============================================ */
.consult-ease {
  padding: 80px 0;
  background: var(--orange-pale);
}

.consult-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.consult-text {
  flex: 1;
}

/* このセクションの見出しは左揃え */
.consult-title {
  text-align: left;
}

.consult-text p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-sub);
  margin-bottom: 32px;
}

.consult-chara {
  flex: 0 0 160px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.consult-chara img {
  width: 140px;
  filter: drop-shadow(0 4px 14px rgba(60, 107, 81, 0.13));
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;  /* ヒーローのキャラとタイミングをずらす */
}


/* ============================================
   8. ご相談の流れ（Flow）
   ============================================ */
.flow {
  padding: 84px 0;
  background: var(--bg-green);
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 172px;
  padding: 0 8px;
}

/* ステップ番号の丸 */
.flow-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(60, 107, 81, 0.28);
}

.flow-content h3 {
  font-family: var(--font-round);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.45;
}

.flow-content p {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.75;
}

/* ステップ間の矢印 */
.flow-arrow {
  font-size: 28px;
  color: var(--green-pale);
  margin: 18px 0 0;
  flex-shrink: 0;
  font-weight: 300;
  user-select: none;
}

.flow-note {
  font-size: 13.5px;
  color: var(--text-light);
  text-align: center;
  line-height: 2;
}


/* ============================================
   9. 最後の後押し（Final CTA）
   ============================================ */
.final-cta {
  padding: 84px 24px;
  text-align: center;
  background: var(--bg-alt);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(141, 196, 59, 0.06) 0%, transparent 60%);
}

.final-title {
  font-family: var(--font-round);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 20px;
}

.final-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 40px;
}


/* ============================================
   ヒーローバッジ
   ============================================ */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  line-height: 1;
}

.hero-badge-green {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-pale);
}

.hero-badge-orange {
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid #f5d5b0;
}


/* ============================================
   完全在宅カルアウト（立ち位置セクション）
   ============================================ */
.remote-callout {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--lime);
  border-radius: 0 12px 12px 0;
  padding: 20px 28px;
  text-align: left;
}

.remote-callout-title {
  display: block;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 15px;
  margin-bottom: 8px;
}

.remote-callout-body {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  margin: 0;
}


/* ============================================
   スムーズ掲載ショートカット（流れセクション）
   ============================================ */
.flow-shortcut {
  margin-top: 20px;
  background: var(--bg-alt);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 16px 22px;
}

.flow-shortcut p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
  margin: 0;
}


/* ============================================
   料金セクション
   ============================================ */
.pricing {
  padding: 84px 0;
  background: var(--bg-main);
}

.pricing-lead {
  text-align: center;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 40px;
}

.pricing-table {
  max-width: 660px;
  margin: 0 auto 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--green-pale);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--green-pale);
  background: #fff;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row-paid {
  background: #fffaf5;
}

.pricing-item {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
}

.pricing-amount {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.pricing-amount small {
  font-size: 13px;
  font-weight: 500;
}

.pricing-free {
  color: var(--green-dark);
}

.pricing-paid {
  color: var(--orange);
}

.pricing-note-cell {
  font-size: 12px;
  color: var(--text-light);
  text-align: right;
  line-height: 1.6;
}

.pricing-option {
  max-width: 660px;
  margin: 0 auto 24px;
  background: var(--orange-pale);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-option-tag {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-option-desc {
  font-size: 14px;
  color: var(--text-main);
  flex: 1;
}

.pricing-option-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
}

.pricing-option-price small {
  font-size: 13px;
  font-weight: 500;
}

.pricing-reassure {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 14px 20px;
  line-height: 1.9;
}


/* ============================================
   フッター
   ============================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--green-pale);
  padding: 36px 24px;
  text-align: center;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 100px;
}

.footer-chara {
  width: 44px;
}

.footer-top-link {
  margin-bottom: 12px;
}

.footer-top-link a {
  font-size: 13px;
  color: var(--green-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--green-pale);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.footer-top-link a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-light);
}


/* ============================================
   モーダル（相談フォームのポップアップ）
   ============================================ */

/* 背景の暗いオーバーレイ */
.modal-overlay {
  display: none;           /* 初期状態：非表示 */
  position: fixed;         /* 画面全体に固定 */
  inset: 0;                /* 上下左右すべて0（full screen） */
  background: rgba(43, 59, 44, 0.52);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

/* .is-open クラスが付いたら表示する */
.modal-overlay.is-open {
  display: flex;
}

/* モーダルの白いボックス */
.modal {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 44px 40px 40px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-md);
  animation: slideUp 0.25s ease;
}

/* 閉じるボタン（右上の ✕） */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-sub);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  line-height: 1;
}

.modal-close:hover {
  background: var(--bg-green);
  color: var(--text-main);
}

.modal-title {
  font-family: var(--font-round);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  text-align: center;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ---- フォームの各グループ ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 7px;
}

/* 「必須」バッジ */
.required-badge {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: var(--green-dark);
  padding: 2px 8px;
  border-radius: 4px;
}

/* テキスト入力・テキストエリア */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-main);
  background: var(--bg-main);
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1.7;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(60, 107, 81, 0.08);
}

/* セレクトボックス */
.form-group select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-main);
  background: var(--bg-main);
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1.7;
  -webkit-appearance: none;
  appearance: none;
  /* カスタム矢印アイコン */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233C6B51' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select:focus {
  border-color: var(--green-dark);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(60, 107, 81, 0.08);
}

.form-group select.is-error {
  border-color: #C0392B;
  background-color: #FEF5F4;
}

/* 「その他」テキスト入力の表示アニメーション */
.source-other-group {
  overflow: hidden;
  transition: opacity 0.25s ease;
  opacity: 0;
}
.source-other-group.visible {
  opacity: 1;
}

/* エラー状態 */
.form-group input.is-error,
.form-group textarea.is-error {
  border-color: #C0392B;
  background: #FEF5F4;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* エラーメッセージ */
.form-error {
  display: block;
  font-size: 12px;
  color: #C0392B;
  margin-top: 5px;
  min-height: 16px;
}

/* 送信ボタン（モーダル内） */
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* 送信完了メッセージ */
.form-privacy {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.7;
}

.form-privacy a {
  color: var(--green-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy a:hover {
  color: var(--green-dark);
}

.form-success {
  text-align: center;
  padding: 48px 20px;
}

/* ✓ マークの緑の丸 */
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-green);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 700;
}

.form-success p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-main);
  font-weight: 500;
}


/* ============================================
   スクロールアニメーション（ふわっと表示）
   ============================================ */

/* 初期状態：少し下にあって透明 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* JSで .is-visible が付いたら表示 */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延バリエーション */
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }


/* ============================================
   アニメーション
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================
   レスポンシブデザイン（スマートフォン対応）
   画面幅が768px以下のときのスタイル
   ============================================ */
/* ============================================
   レスポンシブ：タブレット〜スマホ（〜768px）
   ============================================ */
@media (max-width: 768px) {

  /* 表示切り替え */
  .sp-only { display: inline; }
  .pc-only { display: none; }

  /* 内側のpadding縮小 */
  .inner { padding: 0 18px; }

  /* セクション共通のpadding縮小 */
  .problems, .benefits, .position,
  .strengths, .people, .consult-ease,
  .flow, .pricing, .final-cta {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  /* 見出しのはみ出し防止 */
  h1, h2, h3,
  .position-title,
  .remote-callout-title,
  .section-title,
  .final-title {
    overflow-wrap: break-word;
  }

  /* セクション見出しの下余白縮小 */
  .section-title { margin-bottom: 28px; }
  .section-lead  { margin-top: -8px; margin-bottom: 28px; font-size: 14px; }

  /* ─── ヘッダー ─── */
  .logo-img { width: 90px; }
  .header-cta { font-size: 13px; padding: 9px 16px; }

  /* ─── ヒーロー ─── */
  .hero { padding: 44px 0 40px; }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
  }

  .hero-visual { flex: none; }
  .hero-logo   { width: 150px; margin: 0 auto; }
  .hero-chara  { width: 110px; margin: 0 auto; }
  .hero-desc   { margin: 0 auto 28px; font-size: 14px; }
  .hero-badges { justify-content: center; }

  /* ─── 悩みグリッド ─── */
  .problem-grid { grid-template-columns: 1fr; }

  /* ─── 立ち位置 ─── */
  .position { padding: 52px 20px; }
  .position-desc { font-size: 14px; }

  .remote-callout       { padding: 16px 18px; }
  .remote-callout-title { font-size: 14px; }
  .remote-callout-body  { font-size: 13px; }

  /* ─── 強みグリッド ─── */
  .strength-grid { grid-template-columns: 1fr; gap: 14px; }
  .strength-card { padding: 24px 20px 20px; }

  /* ─── 人材グリッド ─── */
  .people-wrap { grid-template-columns: 1fr; gap: 14px; }
  .people-col  { padding: 22px 20px 18px; }
  .people-note { padding: 18px 20px; font-size: 14px; }

  /* ─── 相談しやすさ ─── */
  .consult-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .consult-title { text-align: center; }
  .consult-chara img { width: 120px; margin: 0 auto; }
  .consult-text p { font-size: 14px; }

  /* ─── ご相談の流れ ─── */
  .flow-steps {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .flow-arrow { transform: rotate(90deg); margin: 0; font-size: 24px; }
  .flow-step  { width: 220px; }
  .flow-shortcut { padding: 14px 16px; font-size: 13px; }

  /* ─── 料金 ─── */
  .pricing-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px 0;
    padding: 14px 16px;
  }
  .pricing-item     { font-size: 14px; align-self: center; }
  .pricing-amount   { font-size: 20px; text-align: right; }
  .pricing-note-cell {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
  }
  .pricing-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 18px;
  }
  .pricing-option-desc  { font-size: 13px; }
  .pricing-option-price { font-size: 18px; }
  .pricing-lead { font-size: 14px; }

  /* ─── 最後の後押し ─── */
  .final-title { font-size: clamp(20px, 5vw, 28px); }
  .final-desc  { font-size: 14px; margin-bottom: 28px; }
  .btn-cta-lg  { font-size: 16px; padding: 16px 36px; width: 100%; max-width: 320px; display: block; margin: 0 auto; }

  /* ─── フッター ─── */
  .site-footer { padding: 36px 0 28px; }
  .footer-brand { gap: 12px; }
  .footer-brand img { height: 32px; }
  .footer-disclaimer { font-size: 12px; }
  .footer-copy { font-size: 12px; }

  /* ─── モーダル ─── */
  .modal       { padding: 36px 20px 28px; }
  .modal-title { font-size: 20px; }

  /* ─── フェードインアニメを抑制（パフォーマンス） ─── */
  .fade-in { opacity: 1; transform: none; }
}

/* ============================================
   レスポンシブ：スマホ小（〜480px）
   ============================================ */
@media (max-width: 480px) {

  body { font-size: 15px; }
  .inner { padding: 0 16px; }

  /* ヘッダー */
  .logo-img { width: 80px; }
  .header-cta { font-size: 12px; padding: 8px 12px; }

  /* ヒーロー */
  .hero { padding: 36px 0 32px; }
  .hero-logo  { width: 130px; }
  .hero-chara { width: 96px; }
  .hero-title { font-size: clamp(22px, 6.5vw, 30px); }
  .hero-desc  { font-size: 13.5px; }

  /* セクション */
  .problems, .benefits, .position,
  .strengths, .people, .consult-ease,
  .flow, .pricing, .final-cta {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .section-title { font-size: clamp(19px, 5.5vw, 26px); }
  .position-title { font-size: clamp(20px, 5.5vw, 28px); }

  /* 悩みカード */
  .problem-card { padding: 18px 16px 18px 44px; font-size: 14px; }
  .problem-icon { left: 14px; top: 20px; }

  /* 強みカード */
  .strength-card { padding: 20px 16px 18px; }
  .strength-num  { font-size: 22px; }

  /* 流れ */
  .flow-step { width: 200px; }
  .flow-num  { width: 40px; height: 40px; font-size: 16px; }

  /* 料金 */
  .pricing-amount { font-size: 18px; }
  .pricing-item   { font-size: 13px; }

  /* CTA */
  .btn-cta    { padding: 13px 24px; font-size: 15px; }
  .btn-cta-lg { max-width: 100%; }
}

/* ============================================
   動的セクション（管理画面から追加した場合のみ表示）
   お知らせ / 実績バー / FAQ
   ============================================ */

/* ─── お知らせ ─── */
.news-section {
  background: var(--bg-white);
  padding: 48px 0;
  border-bottom: 1px solid var(--green-pale);
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--green-pale);
  font-size: 15px;
  color: var(--text-main);
}
.news-item:last-child { border-bottom: none; }
.news-date {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-light);
  font-feature-settings: "tnum";
  min-width: 80px;
}
.news-title-text { line-height: 1.6; }

/* ─── 実績バー ─── */
.achievements-bar {
  background: var(--green-dark);
  padding: 32px 0;
}
.achievements-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.achievement-item {
  text-align: center;
  color: var(--bg-white);
}
.achievement-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: #A8D5A2;
}
.achievement-label {
  display: block;
  font-size: 13px;
  opacity: .85;
  margin-top: 4px;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--bg-green);
  padding: 72px 0;
}
.faq-list {
  margin: 0;
  padding: 0;
}
.faq-item {
  background: var(--bg-white);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
}
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px 18px;
  font-size: 15px;
  color: var(--text-sub);
  background: var(--bg-green);
  line-height: 1.8;
  margin: 0;
}
.faq-icon-q,
.faq-icon-a {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-top: 1px;
}
.faq-icon-q {
  background: var(--green-dark);
  color: #fff;
}
.faq-icon-a {
  background: var(--green-pale);
  color: var(--green-dark);
}

@media (max-width: 768px) {
  .achievements-grid { gap: 28px; }
  .achievement-value { font-size: 28px; }
  .news-item { flex-direction: column; gap: 4px; }
  .faq-q, .faq-a { padding: 14px 16px; font-size: 14px; }
}

