/* 基本設定 */
:root {
    --text-color: #333;
    --bg-color: #fff;
    --gray-bg: #f5f5f5;
    --light-bg: #fafafa;
    --accent-color: #e74c3c;
    --accent-dark: #c0392b;
    --highlight-yellow: #fff3cd;
    --highlight-red: #ffe5e5;
    --primary-color: #2c3e50;
    --link-color: #3498db;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    background-color: var(--gray-bg);
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: 0.05em;
}

/* 挿絵画像 */
.illustration-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* コンテナ設定（LPは中央寄せで幅を制限すると読みやすい） */
.lp-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 共通セクション設定 */
.content-section {
    padding: 60px 30px;
}

.content-section.bg-light {
    background-color: var(--light-bg);
}

.content-section.bg-gray {
    background-color: var(--gray-bg);
}

.content-section.bg-accent {
    background-color: var(--primary-color);
    color: #fff;
}

/* テキスト系ユーティリティ */
p {
    margin-bottom: 1.2em;
}

.strong-text {
    font-weight: 700;
    font-size: 1.1em;
    color: var(--primary-color);
}

.highlight {
    background: linear-gradient(transparent 60%, var(--highlight-yellow) 60%);
    font-weight: 700;
}

.highlight-red {
    background: linear-gradient(transparent 60%, var(--highlight-red) 60%);
    font-weight: 700;
    color: var(--accent-color);
}

.text-white {
    color: #fff !important;
}

/* 見出し */
.section-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.bg-accent .section-title::after {
    background-color: #fff;
}

/* ファーストビュー */
.fv-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 30px;
    text-align: center;
}

.fv-section h1 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.fv-section .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.fv-section .lead {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.fv-section strong {
    color: #f1c40f;
    font-size: 1.2em;
}

/* ボックス・リスト類 */
.question-box {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    background-color: #fff;
}

.question-box ul {
    list-style: none;
}

.question-box li {
    margin-bottom: 15px;
    padding-left: 2em;
    position: relative;
    font-weight: 700;
}

.question-box li::before {
    content: '☑';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2em;
}

.check-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 10px;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
    font-weight: 700;
}

.check-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

.highlight-box {
    border-left: 5px solid var(--accent-color);
    background-color: #fff;
    padding: 20px;
    margin: 30px 0;
    font-size: 1.1em;
    font-weight: 700;
}

.skills-box {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.skills-box ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skills-box li {
    background-color: var(--light-bg);
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
}

/* 実績パート */
.result-text {
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    margin: 30px 0;
    line-height: 2;
}

.result-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
}

.result-list {
    list-style: none;
    text-align: left;
    background-color: #fff;
    color: var(--text-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.result-list li {
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
    font-weight: 700;
}

.result-list li::before {
    content: '🎉';
    position: absolute;
    left: 0;
}

.my-result {
    font-size: 1.3em;
    font-weight: 900;
    line-height: 1.8;
    margin: 20px 0;
}

.highlight-yellow {
    color: #f1c40f;
}

/* 画像プレースホルダー */
.image-placeholder {
    width: 100%;
    margin: 30px 0;
    background-color: #eee;
    border: 2px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 16 / 9;
    /* 用意する画像に合わせて変更可能 */
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder p {
    color: #666;
    margin: 0;
    font-size: 0.9em;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* オファー・CTAパート */
.offer-box {
    background-color: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.offer-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offer-box ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-box li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 1.5em;
}

.offer-box li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.offer-box .bonus {
    font-size: 1.2em;
    margin-top: 20px;
}

.offer-box .bonus strong {
    font-size: 1.5em;
    color: var(--accent-color);
}

.special-offer {
    border: 3px solid var(--accent-color);
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
    position: relative;
}

.limited-title {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin: 0;
}

.special-offer .large {
    font-size: 1.5em;
    margin: 20px 0;
    color: var(--accent-color);
}

.cta-section {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 80px 30px;
}

.schedule-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

/* ボタンデザイン */
.cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 40px auto 10px;
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
    color: #fff;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
}

.cta-button small {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.9;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.button-note {
    font-size: 12px;
    opacity: 0.8;
}

/* 読了時の調整（スマホなど） */
@media screen and (max-width: 600px) {
    .content-section {
        padding: 40px 20px;
    }

    .fv-section h1 {
        font-size: 24px;
    }

    .fv-section .lead {
        font-size: 16px;
    }

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

    .cta-button {
        font-size: 18px;
    }
}