/* 全体のスタイル */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f0f3f8;
}

h2 {
    color: #00bfa5;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

h3 {
    text-align: left;
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

a {
    font-weight: bold;
    color: #2f56c1;
}


/* セクションスタイル */

.steps {
    padding: 20px;
    max-width: 1000px;
}

.steps .step {
    margin: 10px 0px;
    border-bottom: 2px solid #00bfa5;
    text-align: left;
    padding: 20px;
    background-color: white;
}

.steps .step img {
    width: 100%;
    margin-top: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

footer p {
    text-align: center;
}

.link {
    display: inline-block;
    font-weight: bold;
    color: #2f56c1;
    padding-bottom: 20px;
}

.note {
    text-align: left;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #f0f3f8;
}

/* その他にできることセクション */
.additional-features {
    background-color: #f0f3f8;
    padding: 20px 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.additional-features h2 {
    text-align: center;
    color: #00bfa5;
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.feature {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* 追加: キャンペーンバナー用のスタイル */
.campaign-banner {
    margin-top: 15px;
    padding: 20px;
    border: 2px solid #ffc107;
    /* 警告色（黄色） */
    border-radius: 5px;
    background-color: #fff3cd;
    /* 警告背景色 */
    color: #856404;
    /* 警告テキスト色 */
    font-weight: bold;
    position: relative;
}

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
    h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 1.2em;
    }

    .steps {
        padding: 0;
    }

    .steps .step img {
        width: 100%;
        border-radius: 5px;
    }

    .faq {
        padding: 30px 20px;
    }

    .topcontainer {
        padding: 20px 10px;
    }

    .additional-features {
        padding: 20px 10px;
        padding-bottom: 5px;
    }

    .feature {
        padding: 15px;
    }

    .feature h3 {
        font-size: 1.2rem;
    }

    .feature p {
        font-size: 0.9rem;
    }
}