@charset "UTF-8";

/* ====================
container__background
=====================*/
.container__background {
    position: relative;
    z-index: -200;
    overflow: hidden;
}

/* Review__background */
.container__background--img01 {
    display: inline-block;
    position: absolute;
    top: -100px;
    left: -220px;
    z-index: -100;
    width: 804px;
    height: 783px;
    background-image: url(../images/background_review_01.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.container__background--img02 {
    display: inline-block;
    position: absolute;
    top: 1200px;
    right: -220px;
    z-index: -100;
    width: 804px;
    height: 783px;
    background-image: url(../images/background_review_02.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.container__background--img03 {
    display: inline-block;
    position: absolute;
    top: 2500px;
    left: -220px;
    z-index: -100;
    width: 804px;
    height: 783px;
    background-image: url(../images/background_review_01.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.container__background--img04 {
    display: inline-block;
    position: absolute;
    top: 3800px;
    right: -220px;
    z-index: -100;
    width: 804px;
    height: 783px;
    background-image: url(../images/background_review_02.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* container__background pc */
@media screen and (min-width: 769px) {

    /* Review__background */
    .container__background--img01 {
        top: -170px;
        left: -320px;
        width: 1642px;
        height: 1599px;
    }

    .container__background--img02 {
        display: none;
    }

    .container__background--img03 {
        display: none;
    }

    .container__background--img04 {
        display: none;
    }
}

/* 769px pc */

/* ====================
article__header
=====================*/
.article__header .wrapper {
    max-width: 87%;
    margin: 0 auto;
    padding-top: 80px;
}

.article__header .title {
    display: flex;
    flex-flow: column;
    align-items: center;
    color: var(--primary-black);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
}

.article__header .title span {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
}

/* article__header pc */
@media screen and (min-width: 769px) {
    .article__header .wrapper {
        max-width: 1280px;
        padding: 80px 60px 0;
    }

    .article__header .title {
        font-size: 4.8rem;
    }

    .article__header .title span {
        font-size: 1.6rem;
    }
}

/* 769px pc */


/* ====================
section__review
=====================*/
.section__review .wrapper {
    max-width: 87%;
    margin: 100px auto 0;
    padding-bottom: 80px;
}

.review__list div {
    margin: 0 auto;
}

.review__list div {
    position: relative;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    padding: 80px 40px 40px;
    margin-top: 80px;
    background: var(--primary-gray);
    line-height: 1.5;
}

.review__list div:first-of-type {
    margin-top: 0;
}

.review__list div::before {
    display: block;
    content: '';
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-image: url(../images/review_icon.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.review__container p {
    color: var(--primary-black);
    line-height: 1.5;
}

/* review pc */
@media screen and (min-width: 769px) {
    .section__review .wrapper {
        max-width: 1280px;
        padding: 0 60px 80px;
    }

    .review__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        overflow-wrap: break-word;
    }

    .review__list div {
        min-width: 320px;
        width: 31%;
        height: 500px;
        margin-top: 80px;
    }

    .review__list div:nth-of-type(2) {
        margin-top: 0;
    }

    .review__list div:nth-of-type(3) {
        margin-top: 0;
    }
}

/* 769px pc */

/* review pc */
@media screen and (max-width: 1080px) {

    .review__list div {
        min-width: 320px;
        width: 48%;
    }

    .review__list div:nth-of-type(3) {
        margin-top: 80px;
    }

}

/* 1080px pc */