/* リセット */
body, h1, h2, p, ul, ol, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ベーススタイル */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* ヘッダー */
header {
    background-color: #007BFF;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

header .cta-button {
    background-color: #FFC107;
    color: #333;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
}

/* セクション共通 */
section {
    padding: 60px 0;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

section ul, section ol {
    list-style: none;
    margin-top: 20px;
    text-align: left;
    display: inline-block;
}

section ul li, section ol li {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

section ul li::before, section ol li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #007BFF;
}

/* CTAセクション */
.cta-section {
    background-color: #F8F9FA;
}

.cta-section .cta-button {
    background-color: #28A745;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #FFC107;
    text-decoration: none;
    margin: 0 10px;
}

