@charset "utf-8";
/* CSS Document */

.product_info{
    display: flex;
    justify-content: flex-start;
}
.product_pic{
    width: 50%;
    /*padding: 0 30px;*/
    position: relative;
}
.product_guide{
    /*flex-grow: 1;*/
    width: 50%;
    padding-left: 20px;
}
.product_guide ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.product_guide ul li{
    display: block;
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.product_guide ul li:nth-last-child(1){
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.product_guide ul li.average{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.guide_contact{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.guide_contact a{
    margin: 5px;
}
.guide_contact a svg{
    margin-right: 5px;
    font-size: 1.6rem;
}
.guide_contact a.favorite:after{
    margin: 0 0 0 3px;
    content:" ";
    display:inline-block;
    width:20px;
    height:20px;
    background:url("../images/heart.png"); 
    background-size:contain;
    background-repeat: no-repeat;
    vertical-align:middle;
}
.guide_contact a.favorite.active{
    background-color: #fff;
    border: 1px solid #8f9f38;
    color: #8f9f38;
}
.guide_contact a.favorite.active:after{
    background:url("../images/heart_click.png"); 
    background-size:contain;
}
.product_wording{
    margin-bottom: 30px;
}
.product_wording h4{
    font-size: 2rem;
    margin-bottom: 10px;
}
.product_wording p{
    font-size: 1.5rem;
    line-height: 2;
}
.wording_wrap{
    margin-bottom:30px;
}

.wording_wrap h3 {
     position: relative;
     width: 100%;
     padding:0.25em 0.5em 0.25em 1.4em;
     border: 1px solid #8b8b8b;
     border-radius: 8px;
     margin-bottom: 10px;
     background-color: #eee;
     background-color: #f5f5f5;
    box-shadow: 0px 6px 16px 0px rgb(0,0,0,0.12);
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 50%, #f5f5f5 100%);
    background: -webkit-linear-gradient(top, #ffffff 50%,#f5f5f5 100%);
    background: linear-gradient(to bottom, #ffffff 50%,#f5f5f5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5',GradientType=0 );
}
 
.wording_wrap h3::after {
     position: absolute;
     top: 50%;
     left:0.7em;
     transform:translateY(-50%);
     content: '';
     width: 5px;
     height:12px;
     background-color: #ff47a0;
     border-radius: 4px;
}
.format{}
.format ul{}
.format ul li{
    display: block;
    font-size: 1.5rem;
    line-height: 2;
    padding: 0 10px;
}
.quantity_wrap{
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
}
.product_img_wrap{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.product_img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6vw;
    height: 4vw;
    overflow: hidden;
    margin-right: 10px;
}
.product_img img{
    display: block;
    object-fit: cover;
    min-width: 100%;
    min-height:100%;
}
.product_name{}
.product_quantity{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.supplier_title{
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.supplier_title span{
    margin:0 5px 0 0;
}
.budget{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.budget span{}
.budget input{
    width: 120px;
    height: 36px;
    border: 1px solid #aaa;
    background-color: #fff;
    padding: 0 5px;
    margin-right: 5px;
}









@media screen and (max-width: 1180px) {

.product_img{
    width: 10vw;
    height: 7vw;
}
.product_guide{
     flex-grow: 0;
     width: 50%;
}
}
@media screen and (max-width: 820px) {
.product_info{
    flex-wrap: wrap;
}
.product_pic{
    width: 100%;
    margin-bottom: 20px;
}
.quantity_wrap{
    flex-wrap: wrap;
}
.product_img_wrap{
    /*width: 100%;*/
}
.product_quantity{
    /*width: 100%;*/
}
.product_img{
    width: 15vw;
    height: 10vw;
}
.product_quantity{
}

.product_guide{
    width: 100%;
}

}
@media screen and (max-width: 576px) {

.product_img_wrap{
    width: 100%;
}
.product_quantity {
    width: 100%;
    justify-content: flex-start;
}
.product_img {
    width: 30vw;
    height: 20vw;
}
.budget{
    justify-content: flex-start;
}
.contact_info{
    flex-wrap: wrap;
}
.guide_contact a{
    min-width: 120px;
}
}