@charset "UTF-8";

/* ====================
goods
==================== */
.goods {
    padding: 70px 10.4% 200px;
    position: relative;
}

.goods__topic {
    text-align: center;
    position: relative;
}

.goods__topic--sp {
    display: none;
}

.goods__list {
    margin-top: 100px;
}

.goods__item {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.flex--reverse {
    flex-direction: row-reverse;
}

.goods__item img {
    width: 300px;
    height: 300px;
}

.goods__txt {
    width: 43.9%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.goods__title {
    font-size: 2.4rem;
    font-weight: 400;
}

.goods__detail {
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 400;
}

.goods__comment {
    padding-top: 100px;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.goods__comment img {
    display: inline-block;
    margin-top: 100px;
}


/* goods 768px */
@media screen and (max-width:768px) {
    
    .goods {
        padding: 0 13.3% 50px;
        position: relative;
    }

    .goods__topic {
        padding-top: 70px;
    }

    .goods__topic--sp {
        display: inline-block;
    }

    .goods__topic--pc {
        display: none;
    }

    .goods__list {
        margin-top: 70px;
    }

    .goods__item {
        display: block;
        text-align: center;
    }

    .goods__item img {
        width: 200px;
        height: 200px;
    }

    .goods__txt {
        width: 100%;
        gap: 0;
    }
    
    .goods__title {
        margin-top: 15px;
        font-size: 1.6rem;
    }

    .goods__detail {
        margin-top: 15px;
        font-size: 1.4rem;
    }

    .goods__comment {
        padding-top: 80px;
        font-size: 1.5rem;
    }

    .goods__comment img {
        margin-top: 50px;
    }

}