/* ========================================
   リセット & 基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   コンテナ
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    color: #FF6B35;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: #FF6B35;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
}

.nav-link-cta:hover {
    background: #ff8555;
    transform: translateY(-2px);
}

.nav-link-cta::after {
    display: none;
}

/* ========================================
   実績バッジバー
======================================== */
.badge-bar {
    margin-top: 70px;
    background: linear-gradient(135deg, #1a2332 0%, #2a3848 100%);
    padding: 20px 0;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-weight: 500;
    font-size: 14px;
}

/* ========================================
   ファーストビュー
======================================== */
/* ========================================
   ファーストビュー（参考サイト風）
======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
    filter: brightness(1.1);
}

.hero-bg-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* 特別オファーバッジ */
.hero-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.offer-icon {
    font-size: 20px;
}

.offer-text {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
}

.offer-highlight {
    font-size: 18px;
    font-weight: 900;
    color: #d32f2f;
    margin-left: 5px;
}

/* メインキャッチ */
.hero-main-catch {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #1a2332;
    letter-spacing: -0.02em;
}

.catch-line1,
.catch-line2 {
    display: block;
    color: #FF6B35;
    margin-bottom: 8px;
}

.hero-sub-catch {
    font-size: 30px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

/* 問題提起ボックス */
.hero-problem-box {
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid #FF6B35;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.problem-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* 警告メッセージ（シンプル版） */
.hero-warning-simple {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff5f5;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 40px;
    text-align: left;
}

.warning-icon-simple {
    font-size: 32px;
    flex-shrink: 0;
}

.warning-text-simple {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.warning-text-simple strong {
    color: #d32f2f;
    font-weight: 900;
}

/* サービスボックス */
.hero-service-box {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
}

.service-badge {
    display: inline-block;
    background: #FF6B35;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-name {
    font-size: 56px;
    font-weight: 900;
    color: #1a2332;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-tagline {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

/* 3つの特徴 */
.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
    background: #fff;
}

.benefit-icon {
    font-size: 42px;
}

.benefit-value {
    font-size: 24px;
    font-weight: 900;
    color: #FF6B35;
    line-height: 1.2;
}

.benefit-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* 実績バー */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    padding: 25px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 28px;
}

.stat-text {
    font-size: 14px;
    color: #666;
}

.stat-text strong {
    color: #FF6B35;
    font-weight: 900;
    font-size: 16px;
    margin-left: 5px;
}

/* CTAセクション */
.hero-cta-section {
    margin-top: 50px;
}

.btn-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8555 100%);
    color: #fff;
    padding: 28px 60px;
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 25px;
    font-weight: 900;
}

.btn-hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(255, 107, 53, 0.45);
    background: linear-gradient(135deg, #ff8555 0%, #FF6B35 100%);
}

.btn-cta-main {
    display: block;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.btn-cta-sub {
    display: block;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

/* オファー詳細 */
.hero-offer-details {
    margin-bottom: 20px;
}

.offer-detail-item {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.offer-check {
    color: #4CAF50;
    margin-right: 5px;
    font-weight: 900;
}

.offer-detail-item strong {
    color: #FF6B35;
    font-weight: 900;
}

.hero-note {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
}

/* 問題提起セクション */
.hero-problem {
    margin-bottom: 50px;
}

.problem-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #FF6B35;
    color: #FFD700;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 0;
}

.title-super-emphasis {
    color: #FFD700;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    font-size: 44px;
}

.title-question {
    color: #fff;
    display: block;
    margin-top: 25px;
    font-size: 36px;
}

.title-highlight {
    color: #FFD700;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.title-normal {
    color: #fff;
    display: block;
    margin-top: 20px;
    font-size: 36px;
}

/* ソリューション提示 */
.hero-solution {
    margin-bottom: 50px;
}

.solution-intro {
    margin-bottom: 40px;
}

.solution-text {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.solution-emphasis {
    font-size: 22px;
    font-weight: 900;
    color: #FF6B35;
    line-height: 1.6;
}

/* 採用の失敗は取り返せない警告ボックス */
.irreversible-warning {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 3px solid #ff4444;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 8px 24px rgba(255, 68, 68, 0.2);
}

.warning-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 24px;
    font-weight: 900;
    color: #d32f2f;
    margin-bottom: 10px;
    line-height: 1.4;
}

.warning-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.8;
}

.hero-value-prop {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.value-prop-title {
    font-size: 18px;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-service-name {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #fff;
}

.feature-icon {
    font-size: 28px;
}

.feature-text strong {
    color: #FFD700;
    font-size: 20px;
    font-weight: 900;
}

/* 信頼性バー */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 13px;
    color: #e0e0e0;
}

/* 権威付けバー */
.hero-authority-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.authority-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.authority-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.authority-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.authority-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.authority-content {
    flex: 1;
}

.authority-title {
    font-size: 12px;
    color: #e0e0e0;
    margin-bottom: 5px;
    font-weight: 500;
}

.authority-value {
    font-size: 18px;
    font-weight: 900;
    color: #FFD700;
    line-height: 1.3;
}

/* CTA */
.hero-cta-wrapper {
    margin-top: 50px;
    position: relative;
}

/* 割引バッジ */
.hero-discount-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-200px);
    z-index: 10;
}

.discount-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
    border: 4px solid #fff;
}

.discount-percent {
    font-size: 18px;
    font-weight: 900;
    color: #d32f2f;
    line-height: 1.2;
}

.discount-off {
    font-size: 14px;
    font-weight: 900;
    color: #d32f2f;
    line-height: 1;
}

/* CTAメインボックス */
.hero-cta-main {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 3px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* 価格ボックス */
.cta-price-box {
    margin-bottom: 30px;
}

.cta-price-before {
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.cta-price-now {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cta-price-large {
    font-size: 52px;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.cta-price-unit {
    font-size: 72px;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.cta-price-note {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

/* 保証・特典 */
.hero-guarantee {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee-icon {
    color: #4CAF50;
    font-size: 20px;
}

.guarantee-text strong {
    color: #FFD700;
    font-weight: 900;
    font-size: 18px;
}

.guarantee-note {
    font-size: 12px;
    color: #e0e0e0;
    text-align: center;
}

.btn-hero-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8555 100%);
    color: #fff;
    padding: 25px 50px;
    border-radius: 60px;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

.btn-text-main {
    display: block;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.btn-text-sub {
    display: block;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-cta-note {
    margin-top: 25px;
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.8;
}

.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* ========================================
   セクション共通
======================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #1a2332;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   共感セクション
======================================== */
.empathy {
    background: #FFF9E6;
    padding-bottom: 0;
}

.empathy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.empathy-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.empathy-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.empathy-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
}

/* ========================================
   経営資源の番人
======================================== */
.management-resources {
    background: #FFF9E6;
    padding: 80px 0 100px;
}

.resources-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.resources-lead {
    font-size: 18px;
    line-height: 2;
    color: #333;
    margin-top: 30px;
}

.resources-lead strong {
    color: #1a2332;
    font-weight: 900;
}

.highlight-question {
    color: #FF6B35;
    font-weight: 900;
    font-size: 22px;
    display: inline-block;
    margin-top: 15px;
}

.resources-table-wrapper {
    margin-bottom: 60px;
}

.resources-table-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #1a2332;
}

.resources-table {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-collapse: separate;
    border-spacing: 0;
}

.resources-table thead {
    background: #1a2332;
    color: #fff;
}

.resources-table th {
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}

.resources-table td {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

.resource-name {
    font-size: 18px;
    font-weight: 900;
}

.resource-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.resource-en {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.importance {
    font-size: 20px;
    color: #FFD700;
}

.guardian-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a2332;
}

.guardian-status {
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 5px;
}

.status-ok {
    background: #E8F5E9;
    color: #2E7D32;
}

.status-danger {
    background: #FFEBEE;
    color: #C62828;
    font-weight: 700;
}

.has-guardian {
    background: #f8fdf8;
}

.no-guardian {
    background: #fff5f5;
}

.danger-text {
    color: #C62828;
}

.status-safe {
    color: #2E7D32;
    font-size: 14px;
    line-height: 1.7;
}

.status-danger {
    color: #C62828;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
}

.danger-highlight {
    color: #FF6B35;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.danger-row {
    background: #FFF5F5;
}

.danger-row td {
    border-bottom: 3px solid #FF6B35;
}

/* メッセージボックス */
.resources-message {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.message-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FF6B35;
}

.message-title {
    font-size: 24px;
    font-weight: 900;
    color: #1a2332;
    line-height: 1.6;
    margin-bottom: 25px;
}

.message-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
    color: #333;
}

.message-content strong {
    color: #FF6B35;
    font-weight: 900;
}

.message-emphasis {
    font-size: 18px;
    font-weight: 900;
    color: #1a2332;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.solution-box {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8555 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.solution-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.solution-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.5;
}

.solution-points {
    margin-bottom: 25px;
}

.solution-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.point-mark {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 900;
}

.point-text {
    flex: 1;
}

.solution-price {
    font-size: 18px;
    font-weight: 700;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

/* ========================================
   なぜ顧問契約が必要なのか
======================================== */
.why-advisory {
    background: #fff;
    padding: 100px 0;
}

.advisory-reason {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0 80px;
}

.advisory-problem {
    background: #FFF5F5;
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #ff4444;
}

.advisory-problem-title {
    font-size: 24px;
    font-weight: 900;
    color: #C62828;
    margin-bottom: 30px;
    text-align: center;
}

.wrong-thinking {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wrong-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wrong-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.wrong-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #1a2332;
    line-height: 1.5;
}

.wrong-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.advisory-solution {
    background: #E8F5E9;
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #4CAF50;
}

.advisory-solution-title {
    font-size: 24px;
    font-weight: 900;
    color: #2E7D32;
    margin-bottom: 30px;
    text-align: center;
}

.right-thinking {
}

.right-intro {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #1a2332;
}

.right-intro strong {
    color: #2E7D32;
    font-size: 18px;
}

.cycle-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.cycle-item {
    background: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cycle-number {
    width: 35px;
    height: 35px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    margin: 0 auto 10px;
}

.cycle-title {
    font-size: 16px;
    font-weight: 900;
    color: #1a2332;
    margin-bottom: 8px;
}

.cycle-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.cycle-arrow {
    font-size: 24px;
    color: #4CAF50;
    font-weight: 900;
}

.cycle-loop {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #4CAF50;
}

.cycle-loop-text {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #1a2332;
}

.loop-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.cycle-loop-text strong {
    color: #2E7D32;
    font-size: 16px;
}

/* キーメッセージ */
.advisory-key-message {
    margin-top: 60px;
}

.key-message-box {
    background: linear-gradient(135deg, #1a2332 0%, #2a3848 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.key-message-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #FFD700;
}

.key-message-text {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 35px;
}

.key-message-text strong {
    color: #FF6B35;
    font-weight: 900;
    font-size: 19px;
}

.key-message-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 250px;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
}

.comparison-bad {
    background: rgba(255, 68, 68, 0.2);
    border: 2px solid #ff4444;
}

.comparison-good {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.comparison-label {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
}

.comparison-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #e0e0e0;
}

.comparison-vs {
    font-size: 24px;
    font-weight: 900;
    color: #FFD700;
}

/* ミッションステートメント */
.mission-statement {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e5c 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFD700;
}

.mission-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.mission-content {
    flex: 1;
}

.mission-title {
    font-size: 24px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 15px;
}

.mission-text {
    font-size: 18px;
    line-height: 1.9;
    color: #fff;
}

.mission-text strong {
    color: #FFD700;
    font-weight: 900;
}

/* ========================================
   Talenco選ばれる理由
======================================== */
.why-advisory {
    background: #f8f9fa;
}

.strength-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.strength-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.strength-number {
    font-size: 48px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 20px;
}

.strength-card-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #1a2332;
    min-height: 80px;
}

.strength-points {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.strength-points li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
}

.strength-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 900;
}

.strength-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   比較表
======================================== */
.comparison {
    background: #fff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #1a2332;
    color: #fff;
    font-weight: 700;
}

.comparison-table th.highlight {
    background: #FF6B35;
}

.comparison-table td.highlight {
    background: #FFF9E6;
    font-weight: 700;
}

.comparison-table .item-name {
    font-weight: 700;
    text-align: left;
}

.comparison-note {
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* ========================================
   現場監督セクション
======================================== */
.supervisor {
    background: #f8f9fa;
}

.supervisor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.supervisor-visual {
    position: relative;
}

.supervisor-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.supervisor-image:hover {
    transform: scale(1.02);
}

.supervisor-text {
    padding: 20px 0;
}

.supervisor-subtitle {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a2332;
}

.supervisor-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.supervisor-point {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.supervisor-point:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.point-icon {
    font-size: 24px;
    color: #FF6B35;
    font-weight: 900;
    flex-shrink: 0;
}

.point-text {
    font-size: 16px;
    line-height: 1.8;
}

.point-text strong {
    display: block;
    margin-bottom: 5px;
    color: #1a2332;
}

/* ========================================
   選ぶべき理由・メリット
======================================== */
.reasons {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8CC 100%);
    padding: 100px 0;
}

.reason-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.reason-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reason-card-primary {
    border-top: 5px solid #FF6B35;
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.reason-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #1a2332;
}

.reason-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.reason-example {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
}

.example-label {
    font-size: 12px;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.reason-example p {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.7;
    margin: 0;
}

.reason-summary {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 50px;
    text-align: center;
}

.reason-summary-title {
    font-size: 32px;
    font-weight: 900;
    color: #1a2332;
    margin-bottom: 40px;
    line-height: 1.5;
}

.reason-summary-content {
    max-width: 600px;
    margin: 0 auto;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.summary-label {
    font-size: 20px;
    font-weight: 700;
    color: #666;
}

.summary-arrow {
    font-size: 32px;
    color: #FF6B35;
}

.summary-result {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8555 100%);
    padding: 30px 40px;
    border-radius: 15px;
    color: #fff;
}

.summary-value {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.summary-desc {
    font-size: 16px;
    font-weight: 500;
}

.reason-summary-note {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ========================================
   こんな社長にピッタリ
======================================== */
.target-presidents {
    background: #fff;
    padding: 100px 0;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 50px auto;
}

.target-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #4CAF50;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.target-card:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.target-check {
    font-size: 24px;
    color: #4CAF50;
    font-weight: 900;
    flex-shrink: 0;
}

.target-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.target-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a2332;
}

.target-cta {
    text-align: center;
    margin-top: 50px;
}

.target-cta-text {
    font-size: 20px;
    margin-bottom: 30px;
    color: #1a2332;
}

.target-cta-text strong {
    color: #FF6B35;
    font-weight: 900;
}

.btn-target-cta {
    background: #FF6B35;
    color: #fff;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-target-cta:hover {
    background: #ff8555;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* ========================================
   業界別実績
======================================== */
.industry-results {
    background: #fff;
    padding: 100px 0;
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.industry-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.industry-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.8) 0%, transparent 100%);
}

.industry-content {
    padding: 30px 25px;
}

.industry-title {
    font-size: 24px;
    font-weight: 900;
    color: #1a2332;
    margin-bottom: 20px;
    text-align: center;
}

.industry-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.industry-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

/* ========================================
   相談シーン
======================================== */
.consultation-scenes {
    background: #fff;
}

.scene-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.scene-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #FF6B35;
}

.scene-number {
    font-size: 14px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 10px;
}

.scene-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #1a2332;
}

.scene-desc {
    font-size: 15px;
    color: #666;
}

/* ========================================
   プラン診断
======================================== */
.diagnosis {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8555 100%);
    padding: 80px 0;
}

.diagnosis-inner {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.diagnosis-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: #1a2332;
    line-height: 1.5;
}

.diagnosis-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.btn-diagnosis-start {
    background: #FF6B35;
    color: #fff;
    font-size: 20px;
    padding: 20px 60px;
    display: block;
    margin: 0 auto;
}

.btn-diagnosis-start:hover {
    background: #ff8555;
    transform: scale(1.05);
}

/* 診断画面 */
.diagnosis-screen {
    animation: fadeIn 0.5s ease;
}

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

.diagnosis-progress {
    text-align: center;
    margin-bottom: 30px;
}

.progress-current {
    font-size: 36px;
    font-weight: 900;
    color: #FF6B35;
}

.progress-total {
    font-size: 24px;
    color: #999;
}

.question-title {
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: #1a2332;
    line-height: 1.6;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-card {
    background: #f8f9fa;
    border: 3px solid #e0e0e0;
    padding: 25px 30px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 100px;
}

.option-card:hover {
    border-color: #FF6B35;
    background: #FFF9E6;
    transform: translateX(10px);
}

.option-label {
    font-size: 32px;
    font-weight: 900;
    color: #FF6B35;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.option-text {
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
}

.option-text strong {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a2332;
}

/* 診断結果 */
.result-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #FF6B35;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.result-badge-light {
    background: #4CAF50;
}

.result-badge-standard {
    background: #2196F3;
}

.result-badge-premium {
    background: #9C27B0;
}

.result-type {
    font-size: 28px;
    font-weight: 900;
    color: #1a2332;
    margin-bottom: 15px;
    text-align: center;
}

.result-type-strong {
    font-size: 30px;
    font-weight: 900;
    color: #9C27B0;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

.result-desc {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* 診断結果の警告メッセージ */
.result-warning-message {
    margin: 30px 0;
}

.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe9e9 100%);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
}

.warning-icon-small {
    font-size: 32px;
    flex-shrink: 0;
}

.warning-message {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.warning-message strong {
    color: #d32f2f;
    font-weight: 900;
}

.result-message {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.result-message-title {
    font-size: 22px;
    font-weight: 900;
    color: #9C27B0;
    margin-bottom: 15px;
}

.result-message-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.result-plan {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 3px solid #FF6B35;
}

.result-plan-badge {
    display: inline-block;
    background: #FF6B35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.result-plan-name {
    font-size: 24px;
    font-weight: 900;
    color: #1a2332;
    margin-bottom: 10px;
}

.result-plan-price {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.price-big {
    font-size: 42px;
    font-weight: 900;
    color: #FF6B35;
}

.result-plan-features {
    list-style: none;
    margin-bottom: 20px;
}

.result-plan-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
}

.result-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-size: 20px;
}

.result-plan-details {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.result-plan-details h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #1a2332;
}

.result-plan-details ul {
    list-style: none;
}

.result-plan-details li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.result-plan-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF6B35;
}

.result-plan-note {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.result-plan-note-strong {
    font-size: 16px;
    font-weight: 900;
    color: #9C27B0;
    text-align: center;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-result-cta {
    background: #FF6B35;
    color: #fff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
}

.btn-result-cta:hover {
    background: #ff8555;
    transform: translateY(-2px);
}

.btn-result-sub {
    background: transparent;
    color: #666;
    padding: 15px 40px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    text-align: center;
}

.btn-result-sub:hover {
    border-color: #FF6B35;
    color: #FF6B35;
}

/* ========================================
   TMCオプション
======================================== */
.tmc-options {
    background: #f8f9fa;
}

.tmc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.tmc-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.tmc-worry {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    font-style: italic;
}

.tmc-solution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tmc-icon {
    font-size: 32px;
    color: #4CAF50;
}

/* ========================================
   書籍・メディア
======================================== */
.media {
    background: #f8f9fa;
}

.media-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.media-book {
    flex: 0 0 250px;
}

.book-image {
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.media-text {
    flex: 1;
    min-width: 300px;
}

.media-book-title {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.6;
}

.media-book-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-media {
    background: #FF6B35;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 25px;
}

.btn-media:hover {
    background: #ff8555;
    transform: translateY(-2px);
}

/* ========================================
   料金プラン
======================================== */
.plans {
    background: #fff;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan-card-popular {
    border-color: #FF6B35;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* プランコンセプト */
.plan-concept {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.plan-concept-popular {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-name {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1a2332;
}

.plan-price {
    font-size: 42px;
    font-weight: 900;
    color: #FF6B35;
}

.plan-price-unit {
    font-size: 16px;
    font-weight: 500;
}

/* こんな方に */
.plan-target {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.plan-target-title {
    font-size: 14px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 10px;
    text-align: center;
}

.plan-target-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    text-align: center;
}

/* プラン詳細テーブル */
.plan-detail-table {
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-detail-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.plan-detail-row-highlight {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 10px;
    margin: 10px -10px;
    border-radius: 8px;
}

.plan-detail-label {
    flex: 0 0 140px;
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.5;
}

.plan-detail-value {
    flex: 1;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.plan-detail-note {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.plan-detail-note-small {
    font-size: 11px;
    color: #999;
    font-weight: 400;
}

.btn-plan {
    width: 100%;
    background: #1a2332;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-top: auto;
}

.btn-plan:hover {
    background: #2a3848;
}

.btn-plan-popular {
    background: #FF6B35;
}

.btn-plan-popular:hover {
    background: #ff8555;
}

.plan-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

/* 実務チケット詳細説明 */
.ticket-explanation {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8CC 100%);
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.ticket-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #1a2332;
}

.ticket-intro {
    font-size: 18px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.ticket-intro strong {
    color: #FF6B35;
    font-weight: 900;
}

.ticket-examples-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #1a2332;
}

.ticket-example-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ticket-example-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ticket-example-icon {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

.ticket-example-name {
    font-size: 16px;
    font-weight: 900;
    color: #1a2332;
    margin-bottom: 10px;
}

.ticket-example-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.ticket-note {
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #FF6B35;
}

.ticket-note-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: #333;
}

.ticket-note-text strong {
    color: #FF6B35;
    font-weight: 900;
}

.btn-plan {
    width: 100%;
    background: #1a2332;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
}

.btn-plan:hover {
    background: #2a3848;
}

.btn-plan-popular {
    background: #FF6B35;
}

.btn-plan-popular:hover {
    background: #ff8555;
}

.plan-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.plan-bonus {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8CC 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.plan-bonus-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1a2332;
}

.plan-bonus-desc {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.plan-bonus-service {
    font-size: 18px;
    margin-bottom: 15px;
}

.plan-bonus-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-text {
    color: #FF6B35;
    font-size: 28px;
    font-weight: 900;
}

.plan-bonus-note {
    font-size: 14px;
    color: #666;
}

/* ========================================
   FAQ
======================================== */
.faq {
    background: #f8f9fa;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-q {
    font-size: 24px;
    font-weight: 900;
    color: #FF6B35;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #1a2332;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 30px 25px 70px;
}

.faq-item.active .faq-answer {
    display: flex;
    gap: 15px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-a {
    font-size: 24px;
    font-weight: 900;
    color: #2196F3;
    flex-shrink: 0;
}

.faq-answer-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* ========================================
   お問い合わせフォーム
======================================== */
.contact {
    background: #fff;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* HubSpotフォームのスタイル調整 */
.contact-form-wrapper .hs-form {
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-form-wrapper .hs-form-field {
    margin-bottom: 20px;
}

.contact-form-wrapper .hs-form-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a2332;
}

.contact-form-wrapper .hs-form-field .hs-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form-wrapper .hs-form-field .hs-input:focus {
    outline: none;
    border-color: #FF6B35;
}

.contact-form-wrapper .hs-form-field textarea.hs-input {
    min-height: 120px;
    resize: vertical;
}

.contact-form-wrapper .hs-form-field select.hs-input {
    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='%23333' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-form-wrapper .hs-submit {
    margin-top: 20px;
}

.contact-form-wrapper .hs-submit .hs-button {
    width: 100%;
    background: #FF6B35;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-form-wrapper .hs-submit .hs-button:hover {
    background: #ff8555;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.contact-form-wrapper .hs-error-msgs {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.contact-form-wrapper .hs-error-msg {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
}

.contact-form-wrapper .hs-form-required {
    color: #FF6B35;
    font-size: 12px;
    margin-left: 5px;
}

/* HubSpotフォームのレスポンシブ対応 */
@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper .hs-form-field .hs-input {
        font-size: 16px; /* iOSのズーム防止 */
    }
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a2332;
}

.required {
    color: #FF6B35;
    font-size: 12px;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.btn-submit {
    width: 100%;
    background: #FF6B35;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #ff8555;
    transform: translateY(-3px);
}

.contact-line-text {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-line {
    background: #06C755;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
}

.btn-line:hover {
    background: #05b04b;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: #1a2332;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

.footer-stats {
    display: flex;
    gap: 60px;
}

.footer-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #999;
}

.footer-bottom {
    border-top: 1px solid #2a3848;
    padding-top: 30px;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 991px) {
    .strength-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .strength-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .tmc-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .industry-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .supervisor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reason-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 50px auto;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .resources-message {
        grid-template-columns: 1fr;
    }

    .resources-table-wrapper {
        overflow-x: auto;
    }

    .resources-table {
        min-width: 800px;
    }

    .advisory-reason {
        grid-template-columns: 1fr;
    }

    .cycle-diagram {
        flex-direction: column;
    }

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

    .key-message-comparison {
        flex-direction: column;
    }
}

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

    .pc-only {
        display: none;
    }

    /* ヘッダー */
    .nav {
        display: none;
    }

    .logo h1 {
        font-size: 18px;
    }

    /* バッジバー */
    .badges {
        flex-direction: column;
        gap: 15px;
    }

    .badge {
        justify-content: center;
    }

    /* ヒーロー */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    /* 特別オファーバッジ */
    .hero-offer-badge {
        flex-wrap: wrap;
        padding: 8px 20px;
        gap: 5px;
    }
    
    .offer-text {
        font-size: 12px;
    }
    
    .offer-highlight {
        font-size: 16px;
    }
    
    /* メインキャッチ */
    .hero-main-catch {
        font-size: 24px;
    }
    
    .hero-sub-catch {
        font-size: 20px;
    }
    
    /* 問題提起ボックス */
    .hero-problem-box {
        padding: 15px 20px;
        margin-bottom: 25px;
    }
    
    .problem-text {
        font-size: 14px;
    }
    
    /* 警告メッセージ */
    .hero-warning-simple {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        text-align: center;
    }
    
    .warning-icon-simple {
        font-size: 28px;
    }
    
    .warning-text-simple {
        font-size: 14px;
    }
    
    /* サービスボックス */
    .hero-service-box {
        padding: 25px 20px;
    }
    
    .service-name {
        font-size: 36px;
    }
    
    .service-tagline {
        font-size: 16px;
    }
    
    /* 3つの特徴 */
    .hero-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 15px 20px;
    }
    
    .benefit-icon {
        font-size: 32px;
    }
    
    .benefit-value {
        font-size: 20px;
    }
    
    /* 実績バー */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    /* CTA */
    .btn-hero-cta {
        padding: 20px 30px;
        width: 100%;
    }
    
    .btn-cta-main {
        font-size: 18px;
    }
    
    .btn-cta-sub {
        font-size: 12px;
    }
    
    .offer-detail-item {
        font-size: 14px;
    }
    
    .hero-note {
        font-size: 12px;
    }
        font-size: 24px;
    }

    .btn-text-main {
        font-size: 18px;
    }

    .btn-text-sub {
        font-size: 12px;
    }

    .btn-hero-primary {
        padding: 20px 30px;
    }

    /* セクション */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    /* 共感カード */
    .empathy-cards {
        grid-template-columns: 1fr;
    }

    /* 経営資源の番人 */
    .management-resources {
        padding: 60px 0;
    }

    .resources-lead {
        font-size: 16px;
    }

    .highlight-question {
        font-size: 18px;
    }

    .resources-table-title {
        font-size: 22px;
    }

    .resources-table {
        font-size: 13px;
    }

    .resources-table th,
    .resources-table td {
        padding: 15px 10px;
    }

    .resource-icon {
        font-size: 24px;
    }

    .message-box,
    .solution-box {
        padding: 25px 20px;
    }

    .message-title {
        font-size: 20px;
    }

    .solution-title {
        font-size: 22px;
    }

    /* なぜ顧問契約が必要か */
    .why-advisory {
        padding: 60px 0;
    }

    .advisory-problem-title,
    .advisory-solution-title {
        font-size: 20px;
    }

    .key-message-title {
        font-size: 22px;
    }

    .key-message-text {
        font-size: 15px;
    }

    /* ミッションステートメント */
    .mission-statement {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .mission-icon {
        font-size: 48px;
        text-align: center;
    }

    .mission-title {
        font-size: 20px;
        text-align: center;
    }

    .mission-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .comparison-label {
        font-size: 16px;
    }

    /* Talenco選ばれる理由 */
    .strength-cards {
        grid-template-columns: 1fr;
    }

    .strength-card:last-child {
        max-width: 100%;
    }

    /* 選ぶべき理由 */
    .reasons {
        padding: 60px 0;
    }

    .reason-summary-title {
        font-size: 24px;
    }

    .summary-value {
        font-size: 28px;
    }

    /* ターゲット社長 */
    .target-presidents {
        padding: 60px 0;
    }

    .target-cta-text {
        font-size: 18px;
    }

    /* 業界別実績 */
    .industry-results {
        padding: 60px 0;
    }

    .industry-image {
        height: 200px;
    }

    /* 現場監督 */
    .supervisor-subtitle {
        font-size: 18px;
    }

    /* 相談シーン */
    .scene-cards {
        grid-template-columns: 1fr;
    }

    /* 診断 */
    .diagnosis-inner {
        padding: 40px 20px;
    }

    .diagnosis-title {
        font-size: 24px;
    }

    .question-title {
        font-size: 20px;
    }

    .option-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .option-text {
        text-align: center;
    }

    /* 診断結果の警告メッセージ */
    .warning-box {
        flex-direction: column;
        gap: 12px;
        padding: 18px 15px;
        text-align: center;
    }

    .warning-icon-small {
        font-size: 28px;
    }

    .warning-message {
        font-size: 14px;
        line-height: 1.7;
    }

    /* 書籍 */
    .media-content {
        flex-direction: column;
    }

    .media-book {
        flex: 0 0 auto;
    }

    /* プラン */
    .plan-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plan-concept {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .plan-target-text {
        font-size: 13px;
    }
    
    .plan-detail-label {
        flex: 0 0 110px;
        font-size: 12px;
    }
    
    .plan-detail-value {
        font-size: 13px;
    }
    
    /* 実務チケット */
    .ticket-explanation {
        padding: 40px 20px;
    }
    
    .ticket-title {
        font-size: 22px;
    }
    
    .ticket-intro {
        font-size: 16px;
    }
    
    .ticket-examples-title {
        font-size: 18px;
    }
    
    .ticket-example-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ticket-example-icon {
        font-size: 32px;
    }
    
    .ticket-example-name {
        font-size: 15px;
    }
    
    .ticket-example-desc {
        font-size: 13px;
    }
    
    .ticket-note {
        padding: 20px 15px;
    }
    
    .ticket-note-text {
        font-size: 14px;
    }

    /* フォーム */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* フッター */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-stats {
        gap: 40px;
    }
}
