/* ヒーローセクション */
.hero-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.hero-section .hero-image {
    max-width: 90%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.hero-section p {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* カウンセリング・コーチングとの違いセクション */
.difference-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 2px solid #f0f0f0;
}

.difference-section .difference-image {
    max-width: 60%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.difference-section table {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    border-collapse: collapse;
    font-size: 1em;
    color: #333;
}

.difference-section table thead th {
    background-color: #f8f8f8;
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    font-weight: bold;
}

.difference-section table tbody td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

/* メンタルトレーナーを選ぶメリットセクション */
.benefits-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
}

.benefits-section .benefits-image {
    max-width: 60%;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.benefits-section h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.benefits-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.benefits-section ul li {
    font-size: 1.2em;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.benefits-section ul li::before {
    content: "✔";
    color: #4caf50;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

/* お申し込みセクション */
.cta-section {
    background-color: #f4faff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.cta-section .btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 15px 30px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-section .btn:hover {
    background-color: #0056b3;
}

/* 注意事項セクション */
.disclaimer-section {
    background-color: #f9f9f9;
    color: #333;
    padding: 50px 20px;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    text-align: center;
}

.disclaimer-section h2 {
    font-size: 1.8em;
    color: #444;
    margin-bottom: 20px;
}

.disclaimer-section p {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) and (max-height: 1366px) {}

@media screen and (min-width: 431px) and (max-width: 960px) {}

@media screen and (max-width: 430px) {
    .hero-section h2 {
        font-size: 1.5em;
    }

    .hero-section p {
        font-size: 0.9em;
    }

    .hero-section .hero-image {
        margin: 15px 0;
    }

    .difference-section table {
        font-size: 0.9em;
    }

    .difference-section .difference-image {
        margin: 15px auto;
    }

    .benefits-section h2 {
        font-size: 1.5em;
    }

    .benefits-section .benefits-image {
        max-width: 100%;
    }

    .benefits-section ul li {
        font-size: 1em;
    }

    .cta-section h2 {
        font-size: 1.5em;
    }

    .cta-section p {
        font-size: 1em;
    }

    .cta-section .btn {
        font-size: 0.9em;
        padding: 12px 24px;
    }

    .disclaimer-section h2 {
        font-size: 1.5em;
    }

    .disclaimer-section p {
        font-size: 0.9em;
    }
}