.step-section h2{
    margin-top: 50px;
    font-size: 70px;
}

@media (max-width: 500px) {
    .step-section h2{
        margin-top: 0px;
        font-size: 40px;
    }
}

.step-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

/* 縦ライン */
.step-section::before {
    content: "";
    position: absolute;
    top: 80px;
    bottom: 80px;
    left: 180px;
    width: 2px;
    background: #ccc;
}

/* STEP1つ */
.step-item {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

/* 左側（STEP番号＋タイトル） */
.step-left {
    width: 180px;
    text-align: right;
}

.step-num {
    display: block;
    font-size: 35px;
    color: #4db6ac;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-title {
    font-size: 22px;
    font-weight: bold;
}

.step-right {
    background: #fce4d6;
    padding: 20px 40px;
    border-radius: 16px;
    flex: 1;
}

.step-right p{
    font-size: 25px;
}

.step-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.step-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: 2px solid #4db6ac;
    color: #4db6ac;
    text-decoration: none;
    font-weight: bold;
}

.step-btn.primary {
    background: #4db6ac;
    color: #fff;
}

@media (max-width: 500px) {
    .step-section{
        padding-right: 10px;
        padding-bottom: 40px;
    }

    .step-section::before {
        left: 85px;
    }

    .step-section h2{
        font-size: 40px;
    }

    .step-item {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 30px;
    }

    .step-left {
        width: 100px;
        text-align: right;
    }

    .step-num {
        font-size: 22px;
    }

    .step-title {
        font-size: 16px;
        white-space: nowrap;
    }

    .step-right {
        padding: 10px;
    }

    .step-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.faq-section {
    padding-top: 0px;
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
}

.faq-title {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faq-card {
    border-radius: 16px;
    padding: 30px;
    line-height: 1.8;
}

.faq-card h3 {
    font-size: 28px;
    margin: 0px;
    line-height: 1.2;
}

.faq-card p {
    font-size: 22px;
    margin-top: 0px;
}

.faq-q {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.faq-a {
    margin-top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.faq-green {
    background: #e9f8db;
}

.faq-green .faq-q,
.faq-green .faq-a {
    background: #6dbd2b;
}

.faq-yellow {
    background: #fff4db;
}

.faq-yellow .faq-q,
.faq-yellow .faq-a {
    background: #f5c400;
}

.faq-pink {
    background: #fde8df;
}

.faq-pink .faq-q,
.faq-pink .faq-a {
    background: #f05a28;
}

@media screen and (max-width: 768px) {
    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .faq-section {
        padding-top: 10px;
        padding-bottom: 30px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .faq-title {
        font-size: 49px;
        margin-bottom: 30px;
    }

    .step-right p {
        font-size: 16px;
        line-height: 1.7;
    }

    .faq-card {
        padding: 24px;
    }

    .faq-card h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .faq-card p {
        font-size: 17px;
        line-height: 1.2;
        padding-top: 10px;
    }

    .faq-q,
    .faq-a {
        width: 32px;
        height: 32px;
    }
}