body {
    font-family: 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* 薄いグレー背景 */
    color: #333;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff; /* 白背景 */
    padding: 20px 30px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px dashed #c00; /* 赤い破線 */
}

.page-header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-header .subtitle {
    font-size: 1.2em;
    color: #555;
    font-style: italic;
}

.section-block {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f9f9f9; /* 各セクションの背景を少し変える */
}

.section-block h2 {
    font-size: 1.8em;
    color: #c00; /* 赤系で見出しを強調 */
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c00;
    text-align: center;
}

.section-block h3 {
    font-size: 1.4em;
    color: #d2691e; /* 茶色系 */
    margin-bottom: 15px;
    text-align: center;
}

.section-divider {
    height: 2px;
    background-color: #aaa;
    margin: 40px 0;
}

.origin-story p, .nhk-special p, .pricing-info p, .urgent-bonus p, .apply-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.link-block {
    background-color: #e9f5ff; /* 水色背景 */
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    text-align: center;
}
.link-block a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
.link-block a:hover {
    text-decoration: underline;
}

.highlight-red {
    color: #ff0000;
    font-weight: bold;
}

.highlight-gold {
    color: #b8860b; /* 暗めの金色 */
    font-weight: bold;
    background-color: #fffacd; /* レモン色背景 */
    padding: 2px 5px;
    border-radius: 3px;
}

.highlight-strong {
    font-weight: bold;
    font-size: 1.1em;
}
.highlight-underline {
    text-decoration: underline;
    font-weight: bold;
}

.guarantee-box {
    background-color: #fff8dc; /* コーンシルク色 */
    border: 2px solid #daa520; /* 金色枠線 */
    padding: 15px;
    margin: 20px auto;
    text-align: center;
    border-radius: 5px;
}

.bonus-list {
    list-style-type: none;
    padding-left: 0;
}
.bonus-list li {
    background-color: #fff;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-left: 5px solid #daa520; /* 金色アクセント */
    border-radius: 3px;
}
.bonus-list li strong {
    display: block;
    color: #333;
}

.price {
    font-size: 2.5em !important;
    font-weight: bold;
    color: #ff0000;
    text-align: center;
    background-color: #ffffdd; /* 黄色背景 */
    padding: 15px;
    border-radius: 5px;
    border: 2px dashed #ff0000;
}

.urgent-bonus {
    background-color: #fff0f5; /* ラベンダーブラッシュ */
    border: 3px solid #ff1493; /* ディープピンク */
}
.urgent-bonus h2 {
    color: #ff1493; /* ディープピンク */
    border-bottom-color: #ff1493;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.3;
    }
}

.email-apply a {
    display: block;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    background-color: #28a745; /* 緑ボタン */
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px auto;
    width: 80%;
}
.email-apply a:hover {
    background-color: #218838; /* 少し濃い緑 */
}
.apply-info .notes {
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.decoration-footer {
    text-align: center;
    color: #777;
    margin-top: 30px;
    font-family: monospace; /* 星の装飾は等幅フォントで */
    line-height: 1.2;
}

.decoration-footer pre {
    white-space: pre-wrap; /* 自動で折り返す */
    word-wrap: break-word;
    display: inline-block; /* 中央揃えのため */
    text-align: center;
}


footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 0.9em;
    color: #555;
}
footer p {
    margin: 5px 0;
}
footer a {
    color: #007bff;
}