@charset "utf-8";

.mainVisual {
    margin-bottom: 3rem;
}

.mainVisual__bg {
    position: relative;
    background-image: url(../img/flow/mv.jpg);
}

.intro__container {
    margin-bottom: -1rem;
    padding-left: var(--padding--container);
    padding-right: var(--padding--container);
}

.intro__text {
    font-family: var(--ff-noto-sans);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.33;
    text-align: center;
}

.flow__title {
    position: relative;
    margin-bottom: 4.5rem;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
}

.flow__title::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #333;
}

.step-list__item-wrap:nth-child(odd) {
    background-color: var(--tertiary-brown);
}

.step-list__item {
    padding-top: 5.5rem;
    padding-left: var(--padding--container);
    padding-right: var(--padding--container);
    padding-bottom: 5rem;
}

.step-list__title {
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
}

.step-list__thumb {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.step-list__thumb img {
    width: 100%;
}

.step-list__text {
    margin-bottom: 3rem;
    font-family: var(--ff-noto-sans);
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.76;
}

@media (min-width: 1000px) {
    .mainVisual {
        margin-bottom: 8rem;
    }

    .mainVisual__bg {
        position: relative;
        background-image: url(../img/flow/mv_pc.jpg);
    }

    .intro__container {
        margin-bottom: -1.5rem;
    }

    .intro__text {
        font-size: 2.4rem;
    }

    .flow__title {
        margin-bottom: 6rem;
        font-size: 2.6rem;
    }

    .flow__title::after {
        bottom: -16px;
        width: 100px;
    }

    .step-list__item {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        max-width: var(--width--container);
        margin: auto;
        padding: 6rem 0;
    }

    .step-list__thumb {
        width: 500px;
        height: 308px;
        margin-right: 3.6rem;
        margin-bottom: 0;
    }

    .step-list__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .step-list__data {
        width: 46.5%;
    }

    .step-list__title {
        margin-bottom: 3rem;
        font-size: 2.4rem;
        text-align: left;
    }

    .step-list__text {
        margin-bottom: 5.6rem;
        font-size: 1.6rem;
        text-align: left;
    }
}