@charset "utf-8";
.product__top {
    margin: 53px 8%;
}

.product__text {
    text-align: center;
    align-items: center;
    margin-top: 53px;
}

.product__title {
    font-size: 2.7rem;
    font-weight: 700;
    text-align: center;
    margin-top: 11px;
    line-height: 1.3;
}

.text {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 10px ;
}

.product__text span {
    border-radius: 2px;
    background: rgba(247, 213, 209, 0.50);
    padding: 4px 10px 3px;
    font-weight: 700;
}

.product_info {
    margin-top: 14px;
}

.product__caution {
    background-color: #FFFCEA;
    margin-top: 21px;
    padding: 12px 16px;
}

.product__caution p {
    font-size: 1.5rem;
    text-align: center;
}

.product__item {
    margin: 75px 8%;
}

.product__content {
    border-bottom: 1px solid #413F3C;
}

.product__img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product__name {
    font-size: 2.1rem;
    font-weight: 500;
    margin: 21px 0 13px;
}

.product__text {
    margin-top: 13px;
}

.product__info {
    margin-top: 13px;
}

.br__pc {
    display: none;
}

/* pc（769px以上） */
@media screen and (min-width:769px) {
    .br__sp {
        display: none;
    }

    .br__pc {
        display: block;
    }

    .product {
        display: grid;
        column-gap: 50px;
        row-gap: 50px;
        grid-template-columns: repeat(2, 1fr);
        margin: 53px auto 103px;
        align-items: flex-start;
        max-width: 927.38px;
        justify-content: center;
    }

    .product__wrapper {
        margin: 0 8%;
    }

    .product__img {
        height: 272px;
        object-fit: cover;
        object-position: center;
    }

    .product__item {
        margin: 0;
    }

    .product__caution {
        padding: 13px 15px;
        width: 449px;
        margin: 21px auto;
    }
    
    .product__caution p {
        font-size: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .product__info {
        text-align: left;
    }
}
/* pc（1030px以上） */
@media screen and (min-width:1030px) {
    .product {
        display: grid;
        column-gap: 70px;
        row-gap: 70px;
        grid-template-columns: repeat(2, 1fr);
        margin: 72px auto 135px;
        align-items: flex-start;
        max-width: 927.38px;
        justify-content: center;
    }
}