/*
 * corporate-page.css
 * GrowthFix — corporate ページ群（10 ページ）の共通インライン <style> 抽出雛形
 *
 * Phase 0（2026-05-12 作成）
 * - HTML は一切編集していない。このファイルは参照 0 のスタンドアロン雛形。
 * - Phase 1 で各 HTML の <style> から完全一致セレクタを削除し、
 *   <link rel="stylesheet" href="/assets/css/corporate-page.css"> に差し替える。
 *
 * 収録基準：
 *   ✅ 完全一致（セレクタ名・値ともに 2 ファイル以上で同一）→ 本ファイルに収録
 *   ❌ 値違い（セレクタ名は同じだがファイルにより値が異なる）→ 各 HTML に残す（後述）
 *
 * 完全一致セレクタ一覧（12 個）:
 *   .breadcrumb          [7 / 10 ページ]
 *   .breadcrumb a        [7 / 10 ページ]
 *   .breadcrumb a:hover  [5 / 10 ページ]
 *   .sub-hero .eyebrow   [6 / 10 ページ]
 *   .cta-inner h2        [2 / 10 ページ]  profile / achievement
 *   .cta-inner p         [2 / 10 ページ]  profile / achievement
 *   .cta-btns            [2 / 10 ページ]  profile / achievement
 *   .cta-btn             [2 / 10 ページ]  profile / achievement
 *   .cta-btn-primary     [2 / 10 ページ]  profile / achievement
 *   .cta-btn-primary:hover [2 / 10 ページ]  profile / achievement
 *   .cta-btn-ghost       [2 / 10 ページ]  profile / achievement
 *   .cta-btn-ghost:hover [2 / 10 ページ]  profile / achievement
 *
 * 値違いにより見送りしたセレクタ（7 個・各 HTML に残す）:
 *   .sub-hero        — privacy のみ padding が 72px 0 40px（他は 80px 0 48px）
 *   .sub-hero h1     — privacy のみ font-size: 28px（他は 32px）
 *   .sub-hero .lead  — contact は line-height: 1.85 / privacy は font-size: 13.5px と差異あり
 *   .section-label   — profile（text-align なし）vs achievement（text-align: center）
 *   .section-title   — profile（text-align なし）vs achievement（text-align: center）
 *   .cta-section     — padding / text-align が 2 ファイル間で異なる
 *   .cta-inner       — profile（text-align: center あり）vs achievement（なし）
 */

/* ============================================================
   パンくず（breadcrumb）
   対象: profile / service / news / achievement / knowledge /
         contact / privacy  [7 / 10 ページ]
   ============================================================ */
.breadcrumb {
    padding: 16px 0;
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 0.04em;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}


/* ============================================================
   サブヒーロー eyebrow ラベル
   対象: profile / news / achievement / knowledge / contact /
         privacy  [6 / 10 ページ]
   注意: .sub-hero 本体・.sub-hero h1・.sub-hero .lead は
         値違いのため各 HTML に残す。
   ============================================================ */
.sub-hero .eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}


/* ============================================================
   CTA セクション — ボタン・コピー群
   対象: profile / achievement  [2 / 10 ページ]
   注意: .cta-section 本体・.cta-inner 本体は値違いのため
         各 HTML に残す。
   ============================================================ */
.cta-inner h2 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 16px;
}

.cta-inner p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.9;
    margin: 0 0 32px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: all 0.2s;
}

.cta-btn-primary {
    background: #ffffff;
    color: #0f172a;
}

.cta-btn-primary:hover {
    background: #e2e8f0;
}

.cta-btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid #cbd5e1;
}

.cta-btn-ghost:hover {
    background: #ffffff;
    color: #0f172a;
}


/* ============================================================
   サブヒーロー本体（260512 Phase 1 統合）
   対象: contact / news / knowledge / profile / achievement / service
        [6 / 10 ページ・privacy は例外で個別定義のまま]
   ============================================================ */
.sub-hero {
    padding: 80px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
}

.sub-hero h1 {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: 0.02em;
    margin: 0 0 18px;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.sub-hero .lead {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .sub-hero { padding: 56px 0 36px; }
    .sub-hero h1 { font-size: 26px; }
}


/* ============================================================
   Form 共通（260512 Phase 1 統合）
   対象: contact （主） + 将来 whitepaper_optin / consultation-thanks
        も class 統一時に再利用可
   ============================================================ */
.form-group { margin: 0 0 24px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
}

.form-label .required {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 7px;
    background: #b8a88a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 2px;
    letter-spacing: 0.06em;
    vertical-align: 2px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #0f172a;
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
}

.form-submit-wrap {
    margin-top: 32px;
    text-align: center;
}

.form-submit {
    display: inline-block;
    padding: 14px 48px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.form-submit:hover {
    background: #1e293b;
}


/* ============================================================
   Opt-in Form 共通（ダーク背景 + 白カード型・260512 Phase 1 統合）
   対象: whitepaper_optin / consultation-thanks
        （旧 wp-form-* / ct-form-* を統一）
   ============================================================ */
.optin-form-section {
    padding: 72px 0 96px;
    background: #0f172a;
    color: #ffffff;
}
.optin-form-inner { max-width: 560px; margin: 0 auto; }
.optin-form-section .wp-label,
.optin-form-section .ct-wp-label { color: #b8a88a; }
.optin-form-ttl {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    line-height: 1.55;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}
.optin-form-desc {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.9;
    text-align: center;
    margin: 0 0 32px;
}
.optin-form-card {
    background: #ffffff;
    color: #0f172a;
    border-radius: 10px;
    padding: 36px 36px 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.optin-form-group { margin: 0 0 20px; }
.optin-form-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
}
.optin-form-label .req {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 7px;
    background: #b8a88a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 2px;
    letter-spacing: 0.06em;
    vertical-align: 2px;
}
.optin-form-label .opt {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 7px;
    background: #e5e7eb;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    border-radius: 2px;
    letter-spacing: 0.06em;
    vertical-align: 2px;
}
.optin-form-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s;
}
.optin-form-input:focus {
    outline: none;
    border-color: #0f172a;
}
.optin-form-submit {
    width: 100%;
    padding: 16px;
    margin-top: 12px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.optin-form-submit:hover { background: #1e293b; }
.optin-form-note {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    line-height: 1.7;
    margin: 18px 0 0;
}


/* ============================================================
   Form Checkbox Group（260518 contact Utage 連動・お問い合わせ種別）
   対象: contact（free11[] 複数選択フィールド）
   ============================================================ */
.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.form-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    color: #1f2937;
}

.form-checkbox-item input[type="checkbox"] {
    margin: 4px 0 0;
    cursor: pointer;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.form-checkbox-item span {
    user-select: none;
}

.form-checkbox-item:hover span {
    color: #0f172a;
}
