@charset "utf-8";

/*=======================================スタイルリセット=======================================*/
    /* http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126
	License: none (public domain)
*/

#sub_item *,
#sub_item *::before,
#sub_item *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
#sub_item h1,
#sub_item h2,
#sub_item h3,
#sub_item h4,
#sub_item h5,
#sub_item h6,
#sub_item ul,
#sub_item ol,
#sub_item dl,
#sub_item li,
#sub_item dt,
#sub_item dd,
#sub_item p,
#sub_item div,
#sub_item span,
#sub_item img,
#sub_item a,
#sub_item table,
#sub_item tr,
#sub_item th,
#sub_item td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

#sub_item header,
#sub_item footer,
#sub_item nav,
#sub_item section,
#sub_item article,
#sub_item main,
#sub_item aside,
#sub_item figure,
#sub_item figcaption {
    display: block;
}

#sub_item ol,
#sub_item ul,
#sub_item li {
    list-style: none;
    list-style-type: none;
}

#sub_item img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

#sub_item a {
    color: inherit;
    text-decoration: none;
}

#sub_item .no,
#sub_item .smp_none{
    display: none !important;
}

/*価格プロ 税込削除*/
#sub_item div.prices span > span > span {
    display: none;
}

/* ここから追加
================================ */
/* ベース */
#sub_item {
    font-size: 3.5vw;
    font-family: "Noto Sans JP","Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
    color: #1a1a1a;
    background-color: #e9265e;
    background-position: 0 26vw;
    background-size: contain;
}

#sub_item .inner_contents{
    width:96%;
    margin: 0 auto;
}

#sub_item img {
    width: 100%;
}


/* 共通 見出し
================================ */
#sub_item h1{
    position: absolute;
    z-index: -1;
    color: #ffe763;
}

#sub_item h2{
    margin: 0vw auto 2vw auto;
    font-size: 5vw;
    text-align: center;
    font-weight: 800;
    color: #1a1a1a;
    padding: 2vw 0;
    border-bottom: 0.4vw dashed #1a1a1a;
}

#sub_item h3{
    text-align: center;
    font-size: 5vw;
    font-weight: 800;
    padding: 2vw 0;
    color: #fff;
    margin-bottom:1vw;
}

#sub_item h4{
    text-align: center;
    font-size: 4.2vw;
    font-weight: 800;
    padding: 2vw 0;
    color: #1a1a1a;
    margin-bottom:1vw;
}

#sub_item p{
    text-align: center;
    font-size: 3vw;
    font-weight: 500;
    padding: 0.5% 0;
    color: #1a1a1a;
    margin-bottom: 2%;
}

/* 共通 カラム
================================ */
#sub_item ul[class^="col_"]{
    display: flex;
    flex-wrap: wrap;
    gap:1.2vw 1%;
}

#sub_item ul[class^="col_"] li{
    margin: 0 auto;
}

#sub_item ul.col_1 > li{
    width:100%;
    margin-bottom: 0vw;
}

#sub_item ul.col_2 > li,
#sub_item ul.col_4 > li{
    width: calc(calc(100% - 1%) / 2);
}

#sub_item ul.col_3 > li,
#sub_item ul.col_5 > li,
#sub_item ul.col_6 > li{
  width: calc(calc(100% - calc(1% * 2)) / 3);
}

/*coupon
================================ */
#sub_item .coupon{
    margin: 3vw 0;
}

#sub_item .coupon h2{
    position: relative;
    background-color: #fff;
    border:solid 0.7vw #1a1a1a;
    padding: 3vw 0;
    font-size: 4vw;
    border-radius: 50vw;
    margin-bottom: 3vw;
}

#sub_item .coupon h2::after{
    position: absolute;
    content: "";
    bottom: 0%;
    left: 50%;
    width: 4vw;
    height: 4vw;
    border: 0.7vw solid;
    border-color: #1a1a1a #1a1a1a transparent transparent;
    background-color: #fff;
    transform: translate(-50%,50%) rotate(135deg);
}

/*アコーディオン*/
#sub_item .coupon .text_open{
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12vw;
    margin: 0 0;
    color: #fff;
	font-size: 4vw;
    font-weight: bold;
	background: #ff512a;
}

#sub_item .coupon .text_open::before{
	position: absolute;
    font-family: 'Material Icons';
    content: "close";
    font-size: 7vw;
    right: 5%;
    font-weight: 500;
    transform:rotate(45deg);
    transition: 0.2s;
}

#sub_item .coupon .text_open.active::before{
    transform: rotate(0deg);
}

/*中身*/
#sub_item .coupon dl{
    display: none;
    background-color: #fff;
    text-align: center;
    padding: 1% 2%;
    border:solid 0.7vw #ff512a;
}

/*小見出し 共通*/
#sub_item .coupon dl dt{
    font-weight: 600;
    padding: 3vw 0;
    font-size: 4vw;
    border-bottom: solid 0.5vw #1a1a1a;
}

/*説明のテキスト*/
#sub_item .coupon dl dd{
    font-weight: 500;
    padding: 2vw 0;
    font-size: 3.5vw;
}

#sub_item .coupon dl dd.text span{
    background-color: #ff512a;
    color: #fff;
    padding: 1vw 1.7vw;
    margin-right: 0.5vw;
    line-height: 8vw;
}

/*メール案内*/
#sub_item .coupon dl dd.mail_btn a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    height: 12vw;
    font-size: 4.2vw;
    font-weight: 600;
    margin: 0 auto;
    color: #fff;
    background-color: #1a1a1a;
    border-radius: 50vw;
}

#sub_item .coupon dl dd.mail_btn a span{
    margin-top: 1.5%;
    font-size: 2.8vw;
    font-weight: 400;
}

#sub_item .coupon dl dd.mail_btn a::after{
    position: absolute;
    font-family: 'Material Icons';
    content: "expand_more";
    transform:translate(50%,-50%) rotate(-90deg);
    top:50%;
    right: 7%;
    font-size: 7vw;
    font-weight: 400;
}

/*対象商品*/
#sub_item .coupon dl dd ul li a img{
    margin-bottom: 1vw;
}

#sub_item .coupon dl dd ul li a{
    font-size: 3vw;
}

/*item_box_new
================================ */
#sub_item .item_box_new{
    margin: 0 auto 8vw auto;
}

#sub_item .item_box_new h2 span{
    color: #e9265e;
}

#sub_item .item_box_new .inner_contents{
    width: 95%;
    padding: 4.5% 2% 2% 2%;
    background-color: #fff;
    border-radius: 5vw;
    box-shadow: 1.5vw 2vw 0 #1a1a1a;
}

/*商品サムネ・価格部分*/
#sub_item .item_box_new ul li > a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2%;
}

#sub_item .item_box_new ul li > a img{
    width: 47%;
    margin-right: 3%;
}

#sub_item .item_box_new ul li > a dl{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

#sub_item .item_box_new dt h4{
    font-size: 3.7vw;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 2vw;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*販促あるとき*/
#sub_item .item_box_new ul li > a dl dd.sale{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ff512a;
    width: 100%;
    height:10vw;
    font-size: 3vw;
    font-weight: bold;
}


/*通常価格あるとき*/
#sub_item .item_box_new ul li > a dl dd.price_nomal{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4vw;
    font-size: 2.5vw;
    text-decoration: line-through;
    color: #1a1a1a;
    margin-top: 1vw;
}


/*価格====================*/
#sub_item .item_box_new  ul li > a dl dd.price_block{
    display: flex;
    align-items: center;
    margin-bottom:2%;
    margin-top: auto;
    height: 8.5vw;
}

#sub_item .item_box_new ul li > a dl dd.price_block .prdisp-taxin{
    font-family: "Jost";
    color: #e9265e;
    font-weight: 800;
    text-shadow: 0.5vw 0.5vw #fffc6c;
    letter-spacing: 0vw;
}

#sub_item .item_box_new ul li > a dl dd.price_block .prdisp-taxin span.value{
    font-size: 7.5vw;
}

#sub_item .item_box_new ul li > a dl dd.price_block .prdisp-taxin span{
    font-size: 5vw;
}

/*バナー====================*/
#sub_item .item_box_new .addbanner{
    display: block;
    margin: 3% auto;
    width: 100%;
}

#sub_item .item_box_new .addbanner h3{
    text-align: center;
    font-size: 5vw;
    font-weight: 800;
    padding: 1vw 0;
    color: #e9265e;
    margin-bottom:1vw;
}


/*詳細ボタン*/
#sub_item .item_box_new ul li > a dl dd.btn{
    position: relative;
    background-color: #1a1a1a;
    border-radius: 100vw;
    border: solid 2px #1a1a1a;
    padding: 1.8vw 0;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 3vw;
}

#sub_item .item_box_new ul li > a dl dd.btn::after{
    position: absolute;
    font-family: 'Material Icons';
    content: "expand_more";
    transform:translate(50%,-50%) rotate(-90deg);
    top:50%;
    right: 10%;
}


/*商品詳細(肉付け)============*/
#sub_item .item_box_new ul li{
    margin-bottom: 2%;
    border-bottom:solid 0.7vw #1a1a1a;
}

#sub_item .item_box_new ul li:last-child{
    margin-bottom: -4%;
    border-bottom:solid 0px #1a1a1a;
}

#sub_item .item_box_new ul li > dl{
    position: relative;
    height: 192vw;
    overflow: hidden;
}

#sub_item .item_box_new ul li > dl dd{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15vw;
    background-color: #fff;
}

#sub_item .item_box_new ul li > dl dd a{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    bottom:15vw;
    transform: translate(-50%,50%);
    background-color: #e9265e;
    border-radius: 100vw;
    height:15vw;
    width: 80%;
    color: #fff;
    text-align: center;
    font-size:5vw;
    font-weight: 600;
    box-shadow: 0px 0px 0px 2vw #fff;
    z-index: 1;
}

#sub_item .item_box_new ul li > dl dd a::after {
    position: absolute;
    font-family: 'Material Icons';
    content: "play_circle";
    transform: translate(50%, -50%);
    font-size: 10vw;
    top: 50%;
    right: 10%;
}

/* 商品 共通
================================ */
#sub_item .item ul.col_2{
    margin: 1vw auto;
}

#sub_item .item ul.item_box li a{
    padding: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1a1a1a;
    background-color: #fff;
    padding-bottom: 2vw;
    border-radius: 2vw;
}

/*1カラム*/
#sub_item .item ul.col_1 li a{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#sub_item .item ul.col_1 li img{
    width: 47%;
    height: 100%;
    margin-right: 3%;
}

#sub_item .item ul.col_1 dl{
    width: 50%;
}

/*2カラム*/
#sub_item .item ul.item_box dl{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

#sub_item .item ul.item_box dl dt h4{/*商品名*/
    font-size: 3.2vw;
    color: #1a1a1a;
    font-weight: 800;
    padding: 0 0 0 0;
    margin-bottom: 1%;
    text-align: center;
    letter-spacing: 0;
    height: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sub_item .item ul.item_box dl dd.sale{/*販促あるとき*/
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff512a;
    width: 100%;
    height:10vw;
    font-size: 3vw;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

#sub_item .item ul.item_box dl dd.price_nomal{/*通常価格あるとき*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4vw;
    font-size: 2.5vw;
    color: #1a1a1a;
    text-decoration:line-through;
    margin-top: 1vw;
}


/*価格====================*/
#sub_item .item ul.item_box dl dd.price_block{/*価格*/
    display: flex;
    align-items: center;
    margin-bottom:3%;
    margin-top: auto;
    height: 8vw;
}

#sub_item .item ul.item_box dl dd.price_block .prdisp-taxin{
    font-family: "Jost";
    color: #f23613;
    font-weight: 800;
    text-shadow: 0.5vw 0.5vw #ffe763;
    letter-spacing: 0vw;
}

#sub_item .item ul.item_box dl dd.price_block .prdisp-taxin span.value{
    font-size: 7.5vw;
}

#sub_item .item ul.item_box dl dd.price_block .prdisp-taxin span{
    font-size: 5vw;
}

#sub_item .item ul.item_box dl dd.btn{/*詳細ボタン*/
    position: relative;
    background-color: #1a1a1a;
    border-radius: 50px;
    padding: 1.8vw 0;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 3vw;
    transition: 0.3s;
}

#sub_item .item ul.item_box dl dd.btn::after{
    position: absolute;
    font-family: 'Material Icons';
    content: "expand_more";
    transform:translate(50%,-50%) rotate(-90deg);
    top:50%;
    right: 10%;
}

/*もっと見る
==========================*/

#sub_item .cate{
    width: 95%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.2vw auto;
    border-radius: 15px;
    color: #e9265e;
    text-align: center;
    font-size: 4vw;
    font-weight: bold;
    background-color: #fff;
    border: solid 0.7vw #e9265e;
    height: 14vw;
} 

#sub_item .cate::after{
	position: absolute;
    right: 6%;
    top:50%;
    transform: translate(50%,-50%);
	font-family:'Material Icons';
	content: "\e5cc";
} 

/* item_osusme
================================ */
#sub_item .item_osusme .inner_contents{
    width: 95%;
    padding: 0.5% 2% 2% 2%;
    background-color: #ff512a;
    border-radius: 5vw;
    box-shadow: 1.5vw 2vw 0 #1a1a1a;
    margin-bottom: 5%;
}

#sub_item .item_osusme h2{
    color: #fff;
    border-color: #fff;
}


/* item_nomal
================================ */
#sub_item .item_nomal {
    margin-top: 10%;
}

/* top_btn
================================ */
#sub_item .top_btn{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1vw;
    right: 2vw;
    bottom: 2vw;
    color: #fff;
    font-weight: 600;
    background-color: #e9265e;
    z-index: 99;
    border-radius: 2vw;
    transition: 0.8s;
    opacity: 0;
}

#sub_item .top_btn.on{
    opacity: 1;
}

#sub_item .top_btn img{
    width: 20vw;
}

#sub_item .top_btn:hover{
    transform: translateY(-100vh);
}

/*cate_search
================================ */
#sub_item .cate_search{
    width: 98%;
    margin:0 auto 4vw auto;
    padding: 2%;
}

#sub_item .cate_search ul li img{
    border-radius: 3vw;
}

#sub_item .cate_search h4{
    position: absolute;
    color: #e9265e;
    opacity: 0;
    font-size: 1px;
}

/*バナー設置
================================ */
#sub_item .banner{
    margin: 3vw 0;
}

/* footer
================================ */
#sub_item .footer {
    background: #212121;
    padding: 5% 0;
    text-align: center;
    color: #fff;
}

#sub_item .footer a {
    color: #fff;
    font-size: 4vw;
}
