#main .product_figure {
    background: url(./img/pico2560-2048x1148.jpg) no-repeat center;
    min-height: 430px;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
}

#main .product_figure .text {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}

#main .product_figure .text p {
    color: #b20000;
}
#main .product_figure .text p.tx1 {
    font-size: 18px;
    text-align: center;
}
#main .product_figure .text p.tx2 {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
}


#main .sup_title {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: #b20000;
    padding: 30px 15px;
    border-bottom: 3px solid #b20000;
    margin-bottom: 40px;
}

#main .product_text {
    font-size: 18px;
    text-align: center;
}

#main .product_butt {
    display: block;
    text-align: center;
    padding: 15px;
    color: #fff;
    background-color: #b20000;
    border-radius: 25px;
    font-size: 18px;
}

#main .story_iframe {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#main .story_iframe iframe {
    width: 49%;
    margin-bottom: 30px;
}

#main .sns_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#main .sns_list a {
    width: 24%;
    margin-bottom: 30px;
}




@media screen and (max-width: 800px) {
    #main .product_figure .text {
        width: 80%;
    }
    #main .sns_list a {
        width: 32%;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 600px) {
    #main .sns_list a {
        width: 49%;
        margin-bottom: 30px;
    }
    #main .story_iframe iframe {
        width: 100%;
    }
}


