.serviceList {
    background-color: var(--white);
    padding: 48px 5% 64px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .serviceList {
        padding-bottom: 32px;
    }
    
}

.forCustomer {
    padding: 64px 5%;
    background-color: var(--background-color-lightgrey);
}

.forCustomer .content--titleBox {
    justify-content: center;
}

.forCustomer .content--title {
    text-align: center;
    line-height: 1.5;
    white-space: normal;
}

.forCustomer .emphasis {
    color: var(--secondary-bland-color);
}

.forCustomer .mediaBox {
    background-color: var(--white);
    margin-top: 40px;
    padding: 60px;
}

.forCustomer .mediaBox:first-of-type {
    margin-top: 0px;
}

.forCustomer .media {
    column-gap: 32px;
}

.forCustomer .mediaBox--line {
    width: 100%;
    height: 1.5px;
    background-color: var(--decoration-color-lightgrey);
    position: relative;;
}

.forCustomer .mediaBox--line::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 120px;
    height: 1.5px;
    background-color: var(--decoration-color-dimgrey);
}

.forCustomer .media {
    margin-top: 40px;
}

.forCustomer .media--title {
    font-size: 2.2rem;
    line-height: 1.6;
}

.forCustomer .media--subTitle {
    font-size: 2rem;
    line-height: 1.5;
}

.forCustomer .reverseColor {
    color: var(--white);
    background-color: var(--font-color-black);
    padding: 4px 6px;
    margin-right: 8px;
}

.forCustomer .media--textBox {
    margin-top: 32px;
}

.forCustomer .media--text {
    font-size: 1.5rem;
    line-height: 2;
}

.forCustomer .arrowBtn {
    margin-top: 40px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .forCustomer .mediaBox {
        padding: 32px;
    }

    .forCustomer .mediaBox--line {
        height: 2px;
    }
    
    .forCustomer .mediaBox--line::before {
        height: 2px;
    }

    .forCustomer .media {
        flex-direction: column;
        row-gap: 24px;
        margin-top: 24px;
    }

    .forCustomer .media--body {
        max-width: 100%;
    }

    .forCustomer .media--textBox {
        margin-top: 16px;
    }

    .forCustomer .arrowBtn {
        margin-top: 24px;
    }

    .forCustomer .media--imgBox {
        width: 100%;
        max-width: 100%;
    }

    .forCustomer .media--img {
        width: 100%;
        max-width: 100%;
    }
}

.qa {
    padding: 64px 5%;
    background-color: var(--white);
}

.qa .section--contentTitle {
    display: grid;
    place-items: center;
    row-gap: 16px;
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.5;
}

.qa .section--contentTitle .emphasis {
    color: var(--secondary-bland-color);
    font-size: 3.2rem;
}

.qa .mediaBox {
    background-color: var(--background-color-lightgrey);
    padding: 48px;
    margin-top: 48px;
}

.qa .media {
    justify-content: flex-start;
    column-gap: 32px;
}

.qa .media--title {
    font-size: 2.6rem;
}

.qa .media--textBox {
    margin-top: 24px;
}

.qa .media--text {
    font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .qa .mediaBox {
        margin-top: 32px;
        padding: 32px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .qa .media {
        flex-direction: column;
        place-items: center;
    }

    .qa .media--title {
        margin-top: 24px;
    }

    .qa .media--textBox {
        margin-top: 16px;
    }
}