@charset "utf-8";

/* header {
    display: none;
} */

.r-sec {
    padding: 30px 0;
}

.white-back {
    background: #FFF;
    padding: 30px 0;
}

.r-block {
    padding: 0 0 60px;
}

.r-link-text {
    color: #1A32A3;
    text-decoration: underline;
}

/* ===================================================================
THUMBNAIL
=================================================================== */

.r-thumbnail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.r-thumbnail-list {
    width: calc(100% / 6);
    padding: 25px;
}

/* ===================================================================
SHOP
=================================================================== */

.r-to-banner{
    width: 50%;
    margin: 20px auto 50px;
}

.r-shop {
    display: flex;
    margin: 0 0 20px;
    padding: 30px 0 0;
}

.r-shop-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 370px;
    margin: 0 50px 0 0;
}

.r-shop-left-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.r-shop-left-img img {
    width: auto;
    max-width: 350px;
    height: auto;
    max-height: 350px;
}

.r-shop-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 370px);
}

.r-shop-right .r-shop-right-layer {
    font-size: 20px;
    font-weight: 700;
}

.r-shop-right .r-shop-right-title {
    font-size: 20px;
    font-weight: 700;
}

.r-shop-right .r-shop-right-detail {
    font-size: 14px;
}

/* ===================================================================
DETAIL
=================================================================== */

.r-detail {
    margin: 0 0 50px;
}

.r-detail-text {
    margin: 0 0 20px;
}

.r-detail-list-title {
    margin: 0 0 10px;
    font-size: 20px;
}

.r-detail-list {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 20px;
}

.r-detail-list:last-child {
    margin: 0;
}

.r-detail-list-left {
    align-items:  flex-start;
    width: 24%;
    margin: 0 2% 0 0;
}

.r-detail-list-left-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.r-detail-list-left-img img {
    width: auto;
    max-width: 200px;
    height: auto;
    max-height: 200px;
}

.r-detail-list-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 74%;
}

.r-detail-list-right-title {
    margin: 0 0 5px;
    color: #D8204A;
    font-weight: 700;
}

@media screen and (max-width: 1100px) {
        
    .r-block {
        padding: 0 0 40px;
    }

    /* ===================================================================
    THUMBNAIL
    =================================================================== */

    .r-thumbnail-list {
        width: calc(100% / 3);
        padding: 25px;
    }

    /* ===================================================================
    SHOP
    =================================================================== */

    .r-to-banner{
        width: 100%;
    }
    
    .r-shop {
        display: block;
    }

    .r-shop-left {
        width: 100%;
        margin: 0 0 10px;
    }

    .r-shop-right {
        width: 100%;
    }

    /* ===================================================================
    DETAIL
    =================================================================== */

    .r-detail-text {
        margin: 0 0 40px;
    }

    .r-detail-list {
        display: block;
        margin: 0 0 40px;
    }

    .r-detail-list-left {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0 0 10px;
    }
    
    .r-detail-list-right {
        width: 100%;
    }

}

