@charset "utf-8";
/*
Theme Name : seminar2026
Version : 1.0
Author: Daisuke Okaniwa
Description: custom theme
*/
* {
    margin: 0;
    padding: 0;
/*    outline: 1px solid #e61111;*/
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
}

/* ===== リセット & ベース ===== */
.lp-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.lp-wrap {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #1a1a2e;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== カラー変数 ===== */
:root {
  --primary: #0f4c81;       /* 信頼感のある濃紺 */
  --accent: #e8860a;        /* 行動を促すアンバー */
  --accent-light: #fff4e0;
  --teal: #0d7377;          /* AIらしさを表すティール */
  --teal-light: #e1f5f5;
  --light-bg: #f7f9fc;
  --text: #1a1a2e;
  --text-muted: #5f6b7a;
  --white: #ffffff;
  --border: #dde3ec;
  --radius: 8px;
  --radius-lg: 16px;
}

 
/* ============================================================
   ヒーローセクション CSS — 完全版
   既存の .lp-hero 関連CSS をすべてこれに置き換えてください
   ============================================================ */

/* ===== 背景・外枠 ===== */
.lp-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(10, 54, 93, 0.97) 0%,
      rgba(10, 54, 93, 0.90) 40%,
      rgba(15, 76, 129, 0.60) 68%,
      rgba(13, 115, 119, 0.38) 100%
    ),
    radial-gradient(circle at right top, rgba(232,134,10,.2), transparent 36%),
    url("img/23166458_m.jpg") center right / cover no-repeat,
    linear-gradient(135deg, #0a365d 0%, #0f4c81 55%, #0d7377 100%);
}

/* 装飾円 */
.lp-hero::before,
.lp-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
  z-index: 0;
}
.lp-hero::before { width: 500px; height: 500px; right: -200px; top: -200px; }
.lp-hero::after  { width: 320px; height: 320px; left: -100px;  bottom: -140px; }

/* ===== 右上：日付バッジ ===== */
.lp-hero-date {
  position: absolute;
  top: 48px;
  right: min(60px, 5vw);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(232,134,10,.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(232,134,10,.4);
  text-align: center;
  gap: 2px;
}
.lp-hero-date__year {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .1em;
  order: -1;
}
.lp-hero-date__month {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}
.lp-hero-date__day {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
}
.lp-hero-date__time {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.3);
  width: 100%;
  text-align: center;
}



/* ===== メインコンテンツ（縦積み・左寄せ） ===== */
.lp-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px max(20px, calc((100vw - 1120px) / 2 + 20px)) 120px;
}
@media (max-width: 1399px) {
.lp-hero__inner {
  padding: 80px max(20px, calc((100vw - 1120px) / 2 + 20px)) 100px;
}
}

/* ===== キッカー ===== */
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 18px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  backdrop-filter: blur(6px);
}
.lp-kicker__free {
  background: #e8860a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 3px 14px;
  border-radius: 999px;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* ===== タイトル ===== */
.lp-hero__title {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.03em;
}
.lp-hero__title em {
  font-style: normal;
  color: #ffd36c;
}

/* ===== リード ===== */
.lp-hero__lead {
  color: rgba(255,255,255,1);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.9;
  border-left: 3px solid #e8860a;
  padding-left: 14px;
  margin: 0;
}

/* ===== 対象・参加費タグ ===== */
.lp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 34px;
}
.lp-hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.88);
  letter-spacing: .03em;
}
.lp-hero-tag--free {
  background: rgba(232,134,10,.88);
  border-color: transparent;
  color: #fff;
}

/* ===== CTAボタン ===== */
.lp-hero__actions { margin-top: 0; }

.lp-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp-btn__sub {
  font-size: 11px;
  font-weight: 500;
  opacity: .78;
  margin-top: 5px;
  letter-spacing: .04em;
}
.lp-btn--primary {
  background: #e8860a;
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(232,134,10,.42);
}
.lp-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(232,134,10,.54);
  color: #ffffff;
  text-decoration: none;
}
.lp-kicker--sp-date { display: none; }

@media (min-width: 992px) and (max-width: 1399px) {
  .lp-hero__inner {
    position: relative;
  }

  .lp-hero__actions {
    position: absolute;
    right: min(60px, 5vw);
    bottom: 134px; /* paddingのbottom値と合わせる */
  }
}



/* ===== レスポンシブ ===== */
@media (max-width: 860px) {
  .lp-hero {
    min-height: auto;
  }
  .lp-hero__inner {
    padding: 52px 20px 52px;
    max-width: 100%;
  }

  /* バッジを小さく・左右下部に並べる */
  .lp-hero-date {
    display: none;
  }
  .lp-kicker:first-of-type { display: none; }
  .lp-kicker--sp-date { display: inline-flex; }
  .lp-hero-date,
  .lp-hero-venue { display: none; }
}
.lp-kicker__sep {
  color: rgba(255,255,255,.35);
  margin: 0 6px;
}
@media (max-width: 480px) {
  .lp-hero__inner {
    padding: 44px 20px 44px;
  }
  .lp-hero__title {
    font-size: clamp(26px, 8vw, 36px);
  }
  .lp-btn {
    width: 100%;
    font-size: 16px;
    padding: 16px 28px;
  }
}

 

/* ===== セクション共通 ===== */
.lp-section {
  padding: 72px 24px;
}
.lp-section--alt {
  background: var(--light-bg);
}
.section-inner {
  max-width: 860px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.4;
}
.section-title span { color: var(--accent); }
.section-lead {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.9;
}

/* ===== ターゲット（こんな方に） ===== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.target-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.target-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.target-text { font-size: 14px; line-height: 1.7; font-weight: 500; color: var(--text); }

/* ===== 課題セクション ===== */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.problem-item {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.problem-item::before {
  content: '✗';
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.problem-resolve {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
}
.problem-resolve span { color: #f5c752; }

/* ============================================================
   プログラムセクション CSS（差し替え版）
   既存の .program-list 〜 .program-desc を
   このブロックに置き換えてください
   ============================================================ */

/* ===== 2カラムグリッド ===== */
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .prog-grid { grid-template-columns: 1fr; }
}

/* ===== カード共通 ===== */
.prog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--primary);
  background: var(--white);
}
.prog-card--secret {
  border-color: var(--accent);
  position: relative;
}

/* カードヘッダー */
.prog-card__head {
  background: var(--primary);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.prog-card--secret .prog-card__head {
  background: var(--accent);
}

.prog-phase {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 12px;
  border-radius: 99px;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}
.prog-time-range {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* カードタイトル */
.prog-card__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  padding: 18px 20px 10px;
  margin: 0;
  line-height: 1.4;
}
.prog-card--secret .prog-card__title {
  color: var(--accent);
}
.prog-card__title em {
  font-style: normal;
  border-bottom: 3px solid currentColor;
}

/* リスト */
.prog-card__list {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prog-card__list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.prog-card__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 11px;
  top: 3px;
}
.prog-card--secret .prog-card__list li::before {
  color: var(--accent);
}

/* 後半：ぼかし処理 */
.prog-card__list--blur {
  filter: blur(3.5px);
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

/* 秘密ノート */
.prog-secret-note {
  margin: 0;
  padding: 10px 20px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* ===== フッターバー ===== */
.prog-footer {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.prog-footer__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.prog-footer__time {
  font-size: 13px;
  font-weight: 800;
  color: #f5c752;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.prog-footer__text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.prog-footer__cta {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 99px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232,134,10,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.prog-footer__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,134,10,0.45);
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 640px) {
  .prog-footer { flex-direction: column; align-items: flex-start; }
  .prog-footer__cta { width: 100%; text-align: center; }
}

/* ===== スライドプレビュー ===== */
.slide-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.slide-preview-header {
  background: var(--primary);
  padding: 14px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.slide-image-wrap {
  padding: 24px;
  text-align: center;
}
.slide-image-wrap img {
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.slide-note {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
    /* ===== BENEFITS ===== */
    .lp-inner {
      max-width: 860px;
      margin: 0 auto;
    }

    .lp-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 8px;
      text-align: center;
    }

    .lp-heading {
      font-size: clamp(24px, 4vw, 34px);
      font-weight: 900;
      color: var(--primary);
      text-align: center;
      line-height: 1.45;
      margin-bottom: 36px;
    }

    .lp-card-grid {
      display: grid;
      gap: 24px;
    }

    .lp-card-grid--3 {
      grid-template-columns: repeat(3, 1fr);
    }

.lp-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 28px 30px;
  box-shadow: 0 10px 30px rgba(15, 76, 129, 0.08);
  border-top: 4px solid var(--primary); /* 上にアクセントライン追加 */
}

.lp-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

    .lp-card h3 {
      font-size: 19px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .lp-card p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-muted);
    }

@media (max-width: 900px) {
  .lp-card-grid--3 {
    grid-template-columns: 1fr;
  }

  /* SP：横並びレイアウトに変更 */
  .lp-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    padding: 20px 20px;
    border-top: none;
    border-left: 4px solid var(--primary); /* SP時は左ライン */
  }

  .lp-card__num {
    grid-row: 1 / 3;
    align-self: center;
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .lp-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    align-self: end;
  }

  .lp-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
  }
}

    @media (max-width: 640px) {
      .lp-heading {
        margin-bottom: 28px;
      }

      .lp-card__num {
        width: 42px;
        height: 42px;
        font-size: 14px;
      }

      .lp-card h3 {
        font-size: 18px;
      }

      .lp-card p {
        font-size: 14px;
      }
    }
/* ===== 講師紹介 ===== */
.speaker-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}
.speaker-photo-name { display: none; }


.speaker-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker-photo-placeholder {
  font-size: 64px;
  opacity: 0.3;
}
.speaker-info { padding: 28px 28px; }
.speaker-role {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.speaker-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.speaker-name-en {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.speaker-bio {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
@media (max-width: 600px) {
  .speaker-card {
    grid-template-columns: 1fr;
  }

  /* 写真エリア：丸アイコン＋名前を横並び */
  .speaker-photo {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: auto;
    padding: 20px 20px 0;
    background: transparent;
  }
  .speaker-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* 写真の隣：役職・名前 */
  .speaker-photo::after {
    content: none;
  }

  /* speaker-infoの上部（役職・名前）を写真横に移動 */
  .speaker-info {
    padding: 12px 20px 20px;
  }
  .speaker-role { font-size: 11px; margin-bottom: 2px; }
  .speaker-name { font-size: 18px; margin-bottom: 2px; }
  .speaker-name-en { font-size: 12px; margin-bottom: 12px; }

  /* 本文：文字小さく・行間詰める */
  .speaker-bio {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
  }
}

/* ===== セミナー概要テーブル ===== */
.overview-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.overview-table th {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
  width: 140px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.overview-table td {
  background: var(--white);
  font-size: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.overview-table tr:last-child th,
.overview-table tr:last-child td { border-bottom: none; }

@media (max-width: 600px) {
  .overview-table,
  .overview-table tbody,
  .overview-table tr,
  .overview-table th,
  .overview-table td {
    display: block;
    width: 100%;
  }

  .overview-table th {
    border-bottom: none;
    padding: 12px 16px 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .overview-table td {
    padding: 14px 16px 14px;
    border-bottom: 1px solid var(--border);
  }

  .overview-table tr:last-child td {
    border-bottom: none;
  }
}

/* ===== 主催者情報 ===== */
.organizer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .organizer-card { flex-direction: column; }
}
.organizer-logo {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
}
.organizer-logo img { max-width: 100%; }
.organizer-logo-placeholder {
  width: 120px; height: 80px;
  background: var(--light-bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
}
.organizer-detail { flex: 1; }
.organizer-name { font-size: 18px; font-weight: 900; color: var(--primary); margin-bottom: 12px; }
.organizer-body { font-size: 14px; line-height: 1.9; color: var(--text); margin-bottom: 16px; }
.organizer-contact { font-size: 13px; color: var(--text-muted); }
.organizer-contact a { color: var(--primary); text-decoration: underline; }

/* ===== 申込フォームセクション ===== */
.lp-form-section {
  background: linear-gradient(135deg, #0b3d6e, #0f4c81);
  color: var(--white);
  padding: 72px 24px 144px;
}
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
}
.form-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
}
.form-subheading {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-bottom: 36px;
}
.form-inner {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
@media screen and (max-width: 991px) {
.form-inner {
  padding: 36px 19px;
}
}
/* Contact Form 7 カスタマイズ */
/* ===== CF7 セミナー申込フォーム ===== */

/* フィールド共通 */
.cf7-field {
  margin-bottom: 1.25rem;
}

/* ラベル */
.cf7-field label,
.wpcf7-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
/*  margin-bottom: 6px;*/
}

/* 必須・任意バッジ */
.cf7-req {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
/*  background: rgba(231, 76, 60, 0.25);*/
  color: #ffa8a0;
  margin-left: 6px;
  vertical-align: middle;
}
.cf7-opt {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
  vertical-align: middle;
}

/* ヒントテキスト */
.cf7-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 5px;
  font-weight: 400;
}

/* 2カラム */
.cf7-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
.cf7-field {
  margin-bottom: 0.25rem;
}

  .cf7-2col {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .form-inner {
        padding: 20px 10px;
    }
}

/* インプット・セレクト共通 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

@media (max-width: 480px) {
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  padding: 6px 7px;
}
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
}

/* セレクトボックス（矢印） */
.wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.wpcf7-form select option {
  background: #0f4c81;
  color: #ffffff;
}

/* プライバシー同意 */
.cf7-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 1.5rem;
}
.cf7-privacy a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  
}
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.wpcf7-acceptance input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  flex-shrink: 0;
}
.wpcf7-acceptance input[type="checkbox"] {
  margin-top: 0; /* ← 既存のmargin-right:8pxはそのまま */
  vertical-align: middle;
}
.wpcf7-spinner {
  display: none !important;
}
@media (max-width: 480px) {
.cf7-privacy {
  gap: 10px;
  font-size: 13px;
  padding: 7px 14px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 11px;
}
}

/* 送信ボタン */
.wpcf7-form input.cf7-submit,
.wpcf7-submit {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.05em;
  background: #e8860a;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(232, 134, 10, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpcf7-form input.cf7-submit:hover,
.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232, 134, 10, 0.45);
}

/* SSL表記 */
.cf7-ssl-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}

/* バリデーションエラー */
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ffa8a0;
  margin-top: 4px;
  display: block;
}
.wpcf7-response-output {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.form-privacy-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
}
.form-privacy-note a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.privacy-trigger {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
}
.privacy-modal {
  max-width: 560px;
  width: calc(100% - 40px);
  max-height: 70vh;
  border: none;
  border-radius: 12px;
  padding: 32px;
  overflow-y: auto;
}
.privacy-modal::backdrop {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.privacy-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 47px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.privacy-modal h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.privacy-modal__body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.privacy-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0; /* ← これが重要。dialogのデフォルトmarginを消す */
}
/* ===== 固定CTAバー（スクロール追従） ===== */
.lp-fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,76,129,0.97);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 2px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.lp-fixed-cta.visible { transform: translateY(0); }
.fixed-cta-text { color: var(--white); font-size: 14px; font-weight: 700; }
.fixed-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s;
}
.fixed-cta-btn:hover { transform: scale(1.03); color: var(--white); text-decoration: none; }

/* ===== レスポンシブ ===== */
@media (max-width: 640px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-cta { font-size: 16px; padding: 16px 32px; }
  .program-item { grid-template-columns: 70px 1fr; }
  .fixed-cta-text { display: none; }
}