@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------
order/other & pages/goods
------------------------------------------------------------- */
.wrapping_attention{
    border: 3px solid #FF0A4A;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 500px;
}
.wrapping_attention .wrapping_attention_heading{
    background-color: #FF0A4A;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 5px;
    position: relative;
}
.wrapping_attention ul{
    padding: 10px;
}
.wrapping_attention ul li{
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    line-height: 120%;
    margin-bottom: 8px;
}
.wrapping_attention ul li::before{
    display: inline-block;
    content: "";
    margin-top: 9px;
    margin-right: 3px;
    width: 3px;
    height: 3px;
    vertical-align: top;
    border-radius: 5px;
    background-color: #595757;
}
.goods_type {
    margin-bottom: 50px;
}
.goods_type .goods_container{
    position: relative;
}
.goods_type .goods_wrapper{
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    height: 280px;
    max-width: 980px;
}
.goods_type .goods_outer{
    margin-left: 20px;
}
.goods_type ul.goods_list{
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(1, auto);
    grid-auto-columns: 280px;
    padding: 15px;
    margin-right: 15px;
    border-radius: 5px;
}
.goods_type ul li.goods_item{
    position: relative;
    margin-right: 15px;
    font-weight: 500;
}
.goods_type ul li .goods_catch{
    position: absolute;
    top: 0;
    left: 0;
    color: #FF81AA;
    border: 1px solid #FF81AA;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    width: 105px;
    height: 105px;
    display: inline-grid;
    align-content: center;
}
.goods_type ul li .goods_img{
    margin-left: 50px;
}
.goods_type .goods_detail .goods_price{
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}
.goods_type .goods_detail .goods_info .goods_info_heading{
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: #e3b92f;
    padding: 5px;
}
.goods_type .goods_detail .goods_info .goods_info_detail{
    background-color: #F7F7F7;
    padding: 15px;
    font-weight: 500;
}
.goods_type .goods_detail .goods_info .goods_info_detail p{
    position: relative;
    margin-bottom: 5px;
}
.goods_type .goods_detail .goods_info .goods_info_detail p::before {
    display: inline-block;
    content: "";
    margin-top: 9px;
    margin-right: 3px;
    width: 3px;
    height: 3px;
    vertical-align: top;
    border-radius: 5px;
    background-color: #020202;
}
/*-----------------------order/other & pages/goods共通 PC用-----------------------*/
@media screen and (min-width: 950px) {
    .goods_type .goods_type_inner{
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    .goods_type .goods_wrapper{
        margin-left: 0;
        margin-right: 0;
    }
    .goods_type .goods_detail{
        width: 420px;
    }
}
