@charset "utf-8";

#header {
    transform: translateY(0);
}

#footer {
    background-color: #eee;
}

/* ----------------------------------------------


ページタイトル 


----------------------------------------------*/

.page-header {
    padding-top: 60px;
    background-color: #EFF8F5;
}

.page-header__title {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    color: #0E9C8D;
    padding: 2.5em 0;
}

.page-content {
    padding: 100px 0;
}

/* cta */

.cta {
    text-align: center;
    padding-top: 100px;
}

.cta__text {
    font-size: 18px;
    font-weight: 600;
    color: #085C5A;
}

.cta .btn--cta {
    margin: 17px auto 0;
}

@media (max-width: 1024px) {
    .page-header__title {
        font-size: 36px;
    }

    .page-content {
        padding: 75px 0;
    }

    .cta .btn--cta {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .page-header__title {
        font-size: 28px;
        padding: 2em 0;
    }

    .page-content {
        padding: 40px 0 60px;
    }

    .cta {
        padding-top: 60px;
    }

    .cta__text {
        font-size: 16px;
    }
}

/* ----------------------------------------------


機能ブロック 


----------------------------------------------*/



.feature__section:not(:last-of-type) {
    margin-bottom: 100px;
}

.feature__title {
    font-size: 42px;
    font-weight: 600;
    color: #0E9C8D;
    margin-bottom: 1.6em;
}

.feature__number {
    font-family: "Red Hat Display", sans-serif;
    font-size: 1.7em;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    top: 0.03em;
    margin-right: 0.25em;
}

/* feature__block */

.feature__block {
    display: flex;
    gap: 60px;
    align-items: start;
}

.feature__block>* {
    width: 50%;
}

.feature__block:not(:last-of-type) {
    margin-bottom: 60px;
}

.feature__heading {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1em;
    position: relative;
    padding-left: 1.25em;
}

.feature__heading:before {
    content: '';
    width: 0.8em;
    height: 0.8em;
    display: block;
    background-color: #C3ECDE;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.feature__text {
    font-size: 15px;
    line-height: 1.75;
}

.feature__image {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.feature03-1-card {
    position: absolute;
    width: 41%;
    right: -5%;
    top: -15%;
}

@media (max-width: 1024px) {
    .feature__container {
        overflow: hidden;
    }

    .feature__title {
        font-size: 26px;
    }

    .feature__heading {
        font-size: 22px;
    }

    .feature__text {
        line-height: 1.5;
    }
}

@media (max-width: 767px) {


    .feature__block {
        flex-direction: column;
    }

    .feature__block:not(:last-of-type) {
        margin-bottom: 40px;
    }

    .feature__block>* {
        width: 100%;
    }

    .feature__section:not(:last-of-type) {
        margin-bottom: 60px;
    }

    .feature__title {
        font-size: 23px;
        margin-bottom: 1.3em;
    }

    .feature__heading {
        font-size: 19px;
        margin-bottom: 0.6em;
    }

    .feature__text {
        font-size: 13px;
    }

    .feature__block {
        gap: 40px;
    }



}