/* --- 1. 変数・全体設定 --- */
:root {
    --primary: #0A1931;
    --accent: #C5A059;
    --danger: #E63946;
    --text-main: #333333;
    --text-white: #FFFFFF;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
}

* { box-sizing: border-box; }
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3 { font-family: 'Noto Serif JP', serif; line-height: 1.4; margin: 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- 2. 共通セクション設定 --- */
.section { padding: 100px 0; }
.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 40px; color: var(--primary); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary); color: var(--text-white); }
.bg-dark .section-title { color: var(--text-white); }

/* --- 3. ヘッダー（Hero） --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #162C4E 100%);
    color: var(--text-white);
    padding: 100px 0 80px;
    text-align: center;
}
.hero-sub {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 20px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}
.hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 40px; }
.highlight { color: var(--accent); font-size: 1.2em; }
.hero-desc { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.9; }

.hero-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}
.hero-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    max-width: 380px;
    text-align: left;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.2);
}

/* --- 4. CTAボタン設計（品格デザイン維持） --- */
.cta-wrapper { margin: 40px 0; text-align: center; }

.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--text-white);
    min-height: 60px;
    padding: 15px 50px;
    border-radius: 2px;
    box-shadow: none;
    transition: 0.3s;
    border: 1px solid var(--primary);
}
.btn-primary:hover { 
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 15px 40px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1.1rem;
    background: transparent;
    transition: 0.3s;
}

.bg-dark .btn-secondary, 
.hero .btn-secondary,
.honest-block .btn-secondary {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(10, 25, 49, 0.05);
    border-color: var(--primary);
}
.bg-dark .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cta-final .btn-primary {
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
}

.btn-main-text { display: block; font-size: 1.1rem; font-weight: 500; }
.btn-sub { display: block; font-size: 0.75rem; margin-top: 4px; opacity: 0.7; font-weight: normal; }

/* --- 5. 成果物プレビュー（添付画像に基づく横並びレイアウト） --- */
.preview { background: var(--white); padding: 100px 0; color: var(--text-main); }
.report-container {
    display: flex;
    gap: 60px;
    align-items: center; /* 垂直中央揃え */
    margin-top: 50px;
}
.report-image-side { flex: 1.2; }
.report-img {
    width: 100%;
    height: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid #EEE;
}
.report-text-side { flex: 1; text-align: left; }
.report-badge {
    background: var(--accent);
    color: var(--text-white);
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    display: inline-block;
}
.report-text-side h3 { font-size: 1.8rem; margin-bottom: 30px; color: var(--primary); }
.report-points li {
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
}
.report-points li::before {
    content: "";
    width: 12px; height: 12px; /* 添付画像のような大きめのドット */
    background-color: var(--accent);
    border-radius: 50%;
    position: absolute; left: 0; top: 0.5em;
}
.small-note { font-size: 0.85rem; color: #888; }

/* --- 6. 価格カード（品格重視） --- */
.price-card {
    background: #fff;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent);
}
/*
.price-header {
    background: transparent;
    color: var(--primary);
    padding: 40px 0 0;
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}
*/
.price-header {
    padding: 50px 20px 20px; /* 上の余白を少し増やしてゆとりを出す */
    font-size: 1.4rem;       /* 文字を大きく */
    font-weight: bold;
    line-height: 1.4;        /* 行間を整える */
    color: var(--primary);
    text-align: center;
}

/* カッコ内の補足だけ少し小さくする場合（より洗練されます） */
.price-header span.sub-title {
    display: block;
    font-size: 1.1rem;
    margin-top: 8px;
    font-weight: normal;
}
.price-body { padding: 40px 50px; text-align: center; }
.price-amount { 
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem; 
    font-weight: 500; 
    color: var(--primary); 
    margin: 20px 0; 
}
.price-amount span { font-size: 1.1rem; margin-left: 10px; }
.price-features li { padding: 12px 0; border-bottom: 1px solid #F0F0F0; text-align: left; display: flex; align-items: center; font-size: 0.95rem; }
.price-features li::before { content: "●"; margin-right: 15px; font-size: 0.7rem; color: var(--accent); }

/* --- 7. その他 --- */
.problem-list { background: #fff; border-left: 4px solid var(--primary); padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 800px; margin: 0 auto 50px; }
.problem-list li { margin-bottom: 15px; padding-left: 30px; position: relative; font-size: 1rem; }
.message-box { text-align: center; background: #FFF9F0; padding: 40px; border: 1px dashed var(--accent); }

.honest-block { background-color: #FDFBFA; border-top: 1px solid #EEE; padding: 80px 0; }
.honest-text { font-size: 1.5rem; font-weight: bold; text-align: center; margin: 30px 0; }
.honest-text strong { background: linear-gradient(transparent 70%, #FFDF65 70%); }
.signature { text-align: right; margin-top: 30px; font-weight: bold; font-style: italic; }
/*.profile-box { display: flex; gap: 50px; align-items: center; background: #fff; padding: 50px; border: 1px solid #EEE; } */
/* プロフィール全体のレイアウト調整 */
.profile-box {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* 上揃え */
    background: #fff;
    padding: 50px;
    border: 1px solid #EEE;
}

.profile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left; /* 左寄せ */
}

/* 紹介文（右上） */
.profile-intro h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.profile-intro p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ブログ誘導（右下） */
.blog-link-wrapper {
    margin-top: auto; /* 下側に押し下げる */
    padding-top: 20px;
    border-top: 1px dashed #DDD;
}

.blog-copy {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

/* スマホ対応：縦並びに戻す */
@media (max-width: 768px) {
    .profile-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    .profile-content {
        text-align: center;
    }
    .profile-img-area {
        margin-bottom: 20px;
    }
}

.profile-img-area { width: 200px; height: 200px; flex-shrink: 0; overflow: hidden; border-radius: 50%; border: 5px solid var(--bg-light); }
.profile-img { width: 100%; height: 100%; object-fit: cover; }

.portal-footer { background: #111; color: #AAA; padding: 80px 0 40px; text-align: center; }

/* --- 8. NIST & Solution --- */
/* .evidence-box { background: #fff; border: 1px solid #ddd; padding: 50px; border-radius: 8px; text-align: center; max-width: 850px; margin: 0 auto; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.feature-card { background: #fff; padding: 30px; text-align: center; border-bottom: 5px solid var(--accent); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
*/

/* Evidence (NIST) */
.evidence-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.evidence-header h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 25px; }
.evidence-content strong { color: var(--primary); border-bottom: 2px solid var(--accent); }
.evidence-desc { font-size: 1rem; color: #666; line-height: 1.8; margin-top: 20px; }
.badge { display: inline-block; background: var(--primary); color: var(--white); font-size: 0.75rem; padding: 4px 12px; margin-bottom: 10px; letter-spacing: 0.1em; }
.evidence-note { margin-top: 40px; border-top: 1px dashed #ccc; padding-top: 20px; }
.evidence-note p { font-size: 0.8rem; color: #999; line-height: 1.6; text-align: left; }


/* --- 9. レスポンシブ --- */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .report-container, .profile-box { flex-direction: column; text-align: center; }
    .report-text-side { text-align: left; }
    .price-amount { font-size: 2.8rem; }
    .btn-primary, .btn-secondary { width: 100%; padding: 15px 20px; }
}