/* 全体設定 */
body {
    font-family: 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #3a3a3a; /* 濃いグレーで可読性アップ */
    background-color: #fef9f8; /* ほんのり暖色系の背景 */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* --- 見出し --- */
h1, h2, h3, h4 {
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #e51264; /* 新しいアクセントカラー */
}

h1 {
    font-size: 2em;
    text-align: center;
    padding-bottom: 15px;
}

h2 {
    font-size: 1.7em;
    padding-bottom: 10px;
    border-bottom: 3px solid #fde7ef; /* 新しい淡いピンク */
    display: flex;
    align-items: center;
}
h2::before {
    content: '';
    display: block;
    width: 8px;
    height: 1.2em;
    background: #e51264; /* 新しいアクセントカラー */
    margin-right: 12px;
    border-radius: 4px;
}

h3 {
    font-size: 1.4em;
    border-bottom: 2px solid #fde7ef; /* 新しい淡いピンク */
    padding-bottom: 8px;
    color: #3a3a3a;
}

/* --- リンク --- */
a {
    color: #e51264; /* 新しいアクセントカラー */
    text-decoration: none;
    transition: opacity 0.2s;
}
a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* --- 文字装飾 --- */
strong, b {
    color: #e51264; /* 新しいアクセントカラー */
}

.marker {
    background: linear-gradient(transparent 65%, #fff2c8 65%);
    padding: 2px 0;
}

.text-red {
    color: #e54d42;
    font-weight: bold;
}
.text-black {
    color: #222;
    font-weight: bold;
}


/* --- リスト装飾 --- */
.list-box, .list-box-good, .list-box-bad {
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}
.list-box ul, .list-box ol,
.list-box-good ul, .list-box-good ol,
.list-box-bad ul, .list-box-bad ol {
    padding-left: 0; margin: 0;
}
.list-box li,
.list-box-good li,
.list-box-bad li {
    list-style: none;
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 1em;
    line-height: 1.6;
}
.list-box li:last-child,
.list-box-good li:last-child,
.list-box-bad li:last-child {
     margin-bottom: 0;
}

/* メリット用リスト */
.list-box-good {
    background: #f0f9f0; /* 薄い緑 */
    border: 2px solid #e3f1e1;
}
.list-box-good ul li::before {
    content: '\f00c'; /* Font Awesome チェック */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745; /* ポジティブなグリーン */
    position: absolute;
    left: 0; top: 0.1em;
}

/* デメリット用リスト */
.list-box-bad {
    background: #fff8f2; /* 薄いオレンジ */
    border: 2px solid #e9ecef;
}
.list-box-bad ul li::before {
    content: '\f12a'; /* Font Awesome 感嘆符 */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fd7e14; /* 注意を促すオレンジ */
    position: absolute;
    left: 0; top: 0.1em;
}


/* --- ボックスデザイン --- */
.box-point {
    position: relative;
    background: #fef5f2; /* 少し濃い暖色 */
    border: 1px solid #fde7ef; /* 新しい淡いピンク */
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}
.box-point .box-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #e51264; /* 新しいアクセントカラー */
    margin: -25px -25px 20px -25px;
    padding: 15px 25px;
    border-bottom: 1px solid #fde7ef; /* 新しい淡いピンク */
    background: #fff;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
}
.box-point .box-title::before {
    content: '\f0eb';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #e51264; /* 新しいアクセントカラー */
}

/* --- CTAセクション --- */
.cta-container {
    background: #fff5f8; /* 少し濃いピンク系 */
    border: 2px solid #e51264; /* 新しいアクセントカラー */
    border-radius: 10px;
    padding: 30px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0 4px 30px rgba(229, 18, 100, 0.15);
}
.cta-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #e51264; /* 新しいアクセントカラー */
    margin-bottom: 15px;
}
.cta-description {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
}
.cta-official-badge {
    display: inline-block;
    background: #e51264; /* 新しいアクセントカラー */
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    border: 1px solid #e51264; /* 新しいアクセントカラー */
    margin-bottom: 15px;
}
.cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 15px auto;
    padding: 20px;
    background: linear-gradient(135deg, #ff4081, #e51264); /* 新しいアクセントカラーのグラデーション */
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(229, 18, 100, 0.4);
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 18, 100, 0.5);
    text-decoration: none;
    opacity: 1;
}
.cta-button-main-text {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
}

.cta-button-sub-text {
    display: block;
    font-size: 0.9em;
    margin-top: 5px;
    opacity: 0.9;
}

.cta-note {
    font-size: 0.9em;
    color: #888;
}

/* PR表示 */
.pr-section {
    background-color: #fff8e1; /* 柔らかい黄色 */
    border: 1px solid #ffe082; /* 少し濃い黄色 */
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}
.pr-section strong {
    color: #e51264; /* アクセントカラー */
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #fde7ef; /* 新しい淡いピンク */
    color: #888;
    font-size: 0.9em;
}
