/* ========================================
   株式会社アサヒ 採用サイトD案
   中途採用特化型LP スタイルシート
   ======================================== */

/* ========================================
   リセット & 基本設定
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   カラーパレット（中途採用向け: 落ち着いた配色）
   ======================================== */

:root {
    --primary-color: #2c5f8d;      /* 落ち着いたブルー */
    --primary-dark: #1e4466;       /* より深いブルー */
    --primary-light: #4a7ba7;      /* 明るめのブルー */

    --accent-color: #5a7d9a;       /* アクセント */
    --accent-light: #7699b4;       /* 明るいアクセント */

    --text-primary: #333;          /* メインテキスト */
    --text-secondary: #666;        /* サブテキスト */
    --text-muted: #999;            /* 控えめなテキスト */

    --bg-primary: #ffffff;         /* 背景（白） */
    --bg-secondary: #f5f7fa;       /* 背景（薄いグレー） */
    --bg-accent: #e8f0f7;          /* アクセント背景 */

    --border-color: #ddd;          /* ボーダー */
    --border-light: #eee;          /* 薄いボーダー */

    --success-color: #4a7d5e;      /* 成功（グリーン） */
    --warning-color: #b89d5a;      /* 警告（イエロー） */
}

/* ========================================
   共通コンポーネント
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 50px;
}

.section-title .target-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--bg-accent);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* ========================================
   ヒーローセクション
   ======================================== */

.hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

.hero-catch {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.hero-sub {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-proof {
    max-width: 800px;
    margin: 0 auto 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.proof-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    font-style: italic;
}

.proof-name {
    display: block;
    font-size: 0.95rem;
    opacity: 0.85;
    text-align: right;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.hero-keywords .keyword {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ========================================
   前職の経験が活きるセクション
   ======================================== */

.midcareer-section {
    background-color: var(--bg-primary);
}

.transition-intro {
    margin-bottom: 60px;
}

.transition-stories {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

/* ストーリーカード */
.story-card {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.story-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* プロフィールバッジ（前職→現在） */
.story-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(to right, var(--bg-accent), var(--bg-secondary));
    border-bottom: 1px solid var(--border-light);
}

.profile-badge {
    text-align: center;
}

.badge-before,
.badge-after {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.badge-job {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.profile-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* ストーリーコンテンツ */
.story-content {
    padding: 40px;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.story-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.story-tenure {
    font-size: 0.9rem;
    color: var(--text-muted);
    background-color: var(--bg-secondary);
    padding: 5px 12px;
    border-radius: 15px;
}

/* エピソード */
.story-episode {
    margin-bottom: 35px;
}

.episode-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.episode-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

/* インサイト */
.story-insight {
    background-color: var(--bg-accent);
    padding: 30px;
    border-radius: 8px;
}

.insight-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.insight-list {
    list-style: none;
    margin-bottom: 20px;
}

.insight-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.insight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.insight-summary {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-top: 15px;
}

/* サマリー */
.transition-summary {
    text-align: center;
}

.summary-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.summary-card {
    background-color: #fff;
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.summary-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.summary-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.summary-conclusion {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
}

/* ========================================
   人間関係の不安セクション
   ======================================== */

.relationship-section {
    background-color: var(--bg-secondary);
}

.relationship-intro {
    margin-bottom: 60px;
}

.relationship-reassurance {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

/* リアシュアランスカード */
.reassurance-card {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reassurance-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(to right, var(--bg-accent), var(--bg-secondary));
    padding: 25px 35px;
    border-bottom: 1px solid var(--border-light);
}

.reassurance-answer {
    padding: 35px;
}

.answer-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* エピソード */
.answer-episode,
.answer-case {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-bottom: 30px;
}

.episode-label,
.case-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background-color: #fff;
    padding: 6px 14px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.episode-text,
.case-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.episode-name {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 15px;
}

/* メカニズム */
.answer-mechanism,
.answer-why {
    background-color: var(--bg-accent);
    padding: 25px;
    border-radius: 8px;
}

.mechanism-title,
.why-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.mechanism-list,
.why-list {
    list-style: none;
}

.mechanism-list li,
.why-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.mechanism-list li::before,
.why-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* サマリーアイテム */
.relationship-summary .summary-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.summary-item {
    background-color: #fff;
    padding: 35px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 50px;
}

.summary-number {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-accent);
    line-height: 1;
}

.summary-item .summary-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.summary-item .summary-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   安定・家族セクション
   ======================================== */

.stability-section {
    background-color: var(--bg-primary);
}

.stability-intro {
    margin-bottom: 60px;
}

.stability-points {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* 安定カード */
.stability-card {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stability-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(to right, var(--bg-accent), var(--bg-secondary));
    padding: 25px 35px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stability-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.stability-content {
    padding: 40px;
}

/* 給与概要 */
.salary-overview {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.salary-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: baseline;
    padding: 20px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.salary-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
}

.salary-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.salary-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 声 */
.salary-voice,
.worklife-episode,
.value-voice {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-bottom: 30px;
}

.voice-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background-color: #fff;
    padding: 6px 14px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.voice-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.voice-name {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ノートセクション */
.salary-note-section,
.worklife-note {
    background-color: var(--bg-accent);
    padding: 25px;
    border-radius: 8px;
}

.note-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.note-list {
    list-style: none;
}

.note-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.note-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* ワークライフデータ */
.worklife-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.data-row {
    background-color: var(--bg-secondary);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.data-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.data-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.data-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 最後の転職先 */
.last-job-intro {
    margin-bottom: 40px;
}

.last-job-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.case-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.case-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.case-tag {
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
}

.case-content {
    padding: 25px;
}

.case-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* 最後の転職先サマリー */
.last-job-summary {
    background-color: var(--bg-accent);
    padding: 30px;
    border-radius: 8px;
}

.summary-list {
    list-style: none;
    margin-bottom: 20px;
}

.summary-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.summary-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ========================================
   北海道で転職セクション
   ======================================== */

.hokkaido-midcareer-section {
    background-color: var(--bg-secondary);
}

.hokkaido-intro {
    margin-bottom: 60px;
}

.hokkaido-points {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hokkaido-card {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hokkaido-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(to right, var(--bg-accent), var(--bg-secondary));
    padding: 25px 35px;
    border-bottom: 1px solid var(--border-light);
}

.hokkaido-content {
    padding: 40px;
}

/* リターンケース */
.return-case {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-bottom: 30px;
}

.case-name {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* サポート */
.return-support {
    background-color: var(--bg-accent);
    padding: 25px;
    border-radius: 8px;
}

.support-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.support-list {
    list-style: none;
}

.support-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.support-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* キャリアパス */
.career-path {
    margin-top: 20px;
}

.career-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.career-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.career-example {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.example-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.career-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-period {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.step-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-top: 5px;
}

.career-summary {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 30px;
}

/* 地元の価値 */
.local-value {
    margin-top: 20px;
}

.value-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.value-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.value-point {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.point-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.point-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ========================================
   CTAセクション
   ======================================== */

.cta-section {
    background-color: var(--bg-primary);
}

.cta-intro {
    margin-bottom: 60px;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.cta-option {
    background-color: #fff;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cta-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.15);
    transform: translateY(-4px);
}

.option-header {
    background: linear-gradient(to right, var(--bg-accent), var(--bg-secondary));
    padding: 25px;
    border-bottom: 1px solid var(--border-light);
}

.option-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 10px;
}

.option-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.option-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-color);
    background-color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.option-content {
    padding: 30px;
    flex: 1;
}

.option-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.option-examples,
.option-flow {
    background-color: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
}

.examples-title,
.flow-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.examples-list {
    list-style: none;
}

.examples-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.examples-list li::before {
    content: "Q.";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.flow-list {
    padding-left: 20px;
}

.flow-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.flow-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.6;
}

.cta-option .btn {
    margin: 0 30px 30px;
}

/* リアシュアランス */
.cta-reassurance {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.reassurance-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 30px;
}

.reassurance-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reassurance-point {
    display: flex;
    gap: 15px;
}

.point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--success-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.point-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* 最終CTA */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
}

.final-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.final-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-final .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.cta-final .btn-primary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--bg-secondary);
}

.cta-final .btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-final .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   フッター
   ======================================== */

.footer {
    background-color: var(--text-primary);
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-company {
    flex: 1;
    min-width: 300px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-info {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   レスポンシブ対応
   ======================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-catch {
        font-size: 2.5rem;
    }

    .career-examples,
    .last-job-cases {
        grid-template-columns: 1fr;
    }
}

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-catch {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .hero-proof {
        padding: 30px 20px;
    }

    .story-profile {
        flex-direction: column;
        gap: 15px;
    }

    .profile-arrow {
        transform: rotate(90deg);
    }

    .story-content {
        padding: 25px;
    }

    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .salary-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .worklife-data {
        grid-template-columns: 1fr;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }

    .final-ctas {
        flex-direction: column;
        align-items: center;
    }

    .final-ctas .btn {
        width: 100%;
        max-width: 350px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-catch {
        font-size: 1.7rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .story-content,
    .stability-content,
    .hokkaido-content {
        padding: 20px;
    }

    .cta-final {
        padding: 40px 25px;
    }

    .final-title {
        font-size: 1.5rem;
    }

    .final-text {
        font-size: 1.05rem;
    }
}

/* ========================================
   募集職種セクション
   ======================================== */

.positions-section {
    background-color: var(--bg-secondary);
}

.position-card {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.position-card:last-child {
    margin-bottom: 0;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    padding: 20px 30px;
    color: #fff;
}

.position-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.position-status {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
}

.position-table {
    width: 100%;
    border-collapse: collapse;
}

.position-table th,
.position-table td {
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
    vertical-align: top;
    font-size: 0.95rem;
    line-height: 1.7;
}

.position-table th {
    width: 140px;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    font-weight: 600;
}

.position-table td {
    color: var(--text-primary);
}

.position-table tr:last-child th,
.position-table tr:last-child td {
    border-bottom: none;
}

.position-table ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.position-table ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
}

.position-table ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.position-table ul li:last-child {
    margin-bottom: 0;
}

.table-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ========================================
   選考プロセスセクション
   ======================================== */

.process-section {
    background-color: var(--bg-primary);
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    min-width: 130px;
    background-color: var(--bg-secondary);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 15px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.step-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.process-arrow {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .position-table th,
    .position-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .position-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

/* ========================================
   お問い合わせフォーム
   ======================================== */

.contact-form-wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 50px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.required {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background-color: #dc3545;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 95, 141, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

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

.form-privacy {
    margin-bottom: 30px;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.privacy-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.privacy-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.privacy-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-text a:hover {
    text-decoration: none;
}

.form-submit {
    text-align: center;
    margin-bottom: 25px;
}

.form-submit .btn {
    min-width: 250px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-submit .btn {
        width: 100%;
        min-width: auto;
    }
}
