/* ヒーローセクション*/
.hero-section {
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero-section .hero-image {
    max-width: 90%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.hero-section .hero-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-section .hero-description {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-section .hero-button {
    display: inline-block;
    background: #ff9900;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero-section .hero-button:hover {
    background: #e68a00;
}

/* カウンセリングの流れ */
.counseling-flow-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.counseling-flow-title {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.counseling-flow-intro,
.counseling-flow-details {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.counseling-steps {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.counseling-step {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-title {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.step-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    text-align: left;
    margin-top: 15px;
}

.step-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* カウンセリングで得られることセクション */
.benefits-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px;
}

.benefits-title {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.benefits-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
}

.benefits-item {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.benefits-item:before {
    content: "✔";
    color: #0078D7;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(0.2rem);
}

.benefits-testimonial-image {
    text-align: center;
    margin-top: 20px;
}

.benefits-testimonial-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* お客様の声 */
#testimonials {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

#testimonials h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.testimonials-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial img {
    width: 100%;
    max-width: 80px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial blockquote {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 0.9rem;
    color: #777;
    text-align: right;
}

/* 料金・お申し込みセクション */
.pricing-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.price-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    text-align: left;
    flex: 1 1 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.price-item-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.price {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 15px;
}

.free-offer {
    color: #27ae60;
    font-size: 1.2rem;
    font-weight: bold;
}

.price-item-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-info {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #0078D7;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #005BB5;
    transform: scale(1.05);
}

/* ご利用いただけない方について */
#usage-restrictions {
    background-color: #f8f9fa;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#usage-restrictions h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

#usage-restrictions p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

#usage-restrictions ul {
    list-style: disc;
    margin: 10px auto;
    padding-left: 20px;
    max-width: 600px;
}

#usage-restrictions ul li {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

@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) {
    .counseling-steps {
        flex-direction: column;
        gap: 20px;
    }

    .counseling-step {
        flex: 1 1 100%;
    }

    .counseling-flow-title {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.4rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .benefits-title {
        font-size: 1.8rem;
    }

    .benefits-description {
        font-size: 0.95rem;
    }

    .benefits-item {
        font-size: 0.95rem;
    }

    .pricing-title {
        font-size: 1.8rem;
    }

    .price-item {
        max-width: 100%;
    }

    .price-item-description {
        font-size: 0.9rem;
    }

    .pricing-info {
        flex-direction: column;
    }

    .cta-button {
        font-size: 0.9rem;
    }
}