@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;
    transition: 0.2s;
}

#sub_item a:hover {
    opacity: 0.5;
}

#sub_item .no,
#sub_item .pc_none{
    display: none !important;
}

/*価格プロ 税込削除*/
#sub_item div.prices span > span > span {
    display: none;
}

/* ここから追加
================================ */
/* ベース */
#sub_item {
    width: 980px;
    margin: 0 auto;
    font-size: 22px;
    font-family: "Noto Sans JP","Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: #1a1a1a;
    background-color: #e9265e;
}

#sub_item .inner_contents{
    width: 850px;
    margin: 0 auto;
}


#sub_item img {
    width: 100%;
}


/* 共通 見出し
================================ */
#sub_item h1{
    position: absolute;
    z-index: -1;
    color: #e9265e;
}

#sub_item h2{
    margin: 1.5% auto 1% auto;
    font-size: 40px;
    text-align: center;
    font-weight: 800;
    color: #1a1a1a;
    padding:1% 0 2% 0;
    border-bottom: 1px solid #1a1a1a;
}

#sub_item h3{
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    padding: 1.5% 0;
    color: #fff;
    margin-bottom: 1%;
}

#sub_item h4{
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    padding: 1.5% 0;
    color: #1a1a1a;
    margin-bottom: 1%;
}

#sub_item p{
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    padding: 0.5% 0;
    color: #1a1a1a;
    margin-bottom: 2%;
}

/* 共通 カラム
================================ */
#sub_item ul[class^="col_"]{
    display: flex;
    flex-wrap: wrap;
    gap:9px 1%;
}

#sub_item ul.col_1 > li{
    width:100%;
    margin: 0 0 0 0;
}

#sub_item ul.col_2 > li{
    width: calc(calc(100% - 1%) / 2);
}

#sub_item ul.col_3 > li{
    width: calc(calc(100% - 2%) / 3);
}

#sub_item ul.col_4 > li{
    width: calc(calc(100% - 3%) / 4);
}

#sub_item ul.col_5 > li{
    width: calc(calc(100% - 4%) / 5);
}

#sub_item ul.col_6 > li{
    width: calc(calc(100% - 5%) / 6);
}

/*coupon
================================ */
#sub_item .coupon{
    margin: 1.5% 0;
}

#sub_item .coupon h2{
    position: relative;
    background-color: #fff;
    border:solid 3px #1a1a1a;
    padding: 1.5% 0;
    margin-bottom: 3%;
    font-size: 30px;
    border-radius: 100px;
}

#sub_item .coupon h2::after{
    position: absolute;
    content: "";
    bottom: 0%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px 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: 70px;
    margin: 0 0;
    color: #fff;
	font-size: 25px;
    font-weight: bold;
	background: #e9265e;
    cursor: pointer;
}

#sub_item .coupon .text_open::before{
	position: absolute;
    font-family: 'Material Icons';
    content: "close";
    font-size: 30px;
    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 4px #e9265e;
}

/*小見出し 共通*/
#sub_item .coupon dl dt{
    font-weight: 600;
    padding: 1.5% 0;
    font-size: 25px;
    border-bottom: solid 1.5px #1a1a1a;
}

/*説明のテキスト*/
#sub_item .coupon dl dd{
    font-weight: 500;
    padding: 2% 0;
    font-size: 20px;
}

#sub_item .coupon dl dd.text span{
    background-color: #e9265e;
    color: #fff;
    padding: 0.7% 2%;
    margin-right: 1%;
    line-height: 52px;
}

/*メール案内*/
#sub_item .coupon dl dd.mail_btn a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    height: 60px;
    font-size: 22px;
    font-weight: 600;
    margin: 0 auto;
    color: #fff;
    background-color: #1a1a1a;
    border-radius: 100px;
}

#sub_item .coupon dl dd.mail_btn a span{
    margin-top: 1%;
    font-size: 15px;
    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: 25px;
    font-weight: 400;
}

/*対象商品*/
#sub_item .coupon dl dd ul li a img{
    margin-bottom: 2%;
}

/*item_box_new
================================ */
#sub_item .item_box_new{
    margin: 0 auto 3% auto;
}

#sub_item .item_box_new h2 span{
    color: #e9265e;
}

#sub_item .item_box_new .inner_contents{
    padding: 2%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 6px 6px 0px #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: 40%;
    margin-right: 3%;
}

#sub_item .item_box_new ul li > a dl{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
}

#sub_item .item_box_new dt h4{
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 10%;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5px;
}

/*販促あるとき*/
#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: #e9265e;
    width: 100%;
    height: 70px;
    font-size: 24px;
    font-weight: bold;
}

/*通常価格あるとき*/
#sub_item .item_box_new ul li > a dl dd.price_nomal{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    font-size: 18px;
    text-decoration: line-through;
    color: #1a1a1a;
}


/*価格====================*/
#sub_item .item_box_new  ul li > a dl dd.price_block{
    display: flex;
    align-items: center;
    margin-bottom:2%;
    margin-top: auto;
    height: 65px;
}

#sub_item .item_box_new ul li > a dl dd.price_block .prdisp-taxin{
    font-family: "Jost";
    color: #e9265e;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 3px 3px #fffc6c;
}

#sub_item .item_box_new ul li > a dl dd.price_block .prdisp-taxin span.value{
    font-size: 60px;
}

#sub_item .item_box_new ul li > a dl dd.price_block .prdisp-taxin span{
    font-size: 35px;
}

/*バナー====================*/
#sub_item .item_box_new .addbanner{
    display: block;
    margin: 5% auto;
    width: 750px;
}

#sub_item .item_box_new .addbanner h3{
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    padding: 1% 0;
    color: #e9265e;
    margin-bottom: 1%;
}

/*詳細ボタン*/
#sub_item .item_box_new ul li > a dl dd.btn{
    position: relative;
    background-color: #1a1a1a;
    border-radius: 50px;
    border: solid 2px #1a1a1a;
    padding: 3% 0;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 20px;
    transition: 0.3s;
}

#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 > a dl dd.btn:hover{
    background-color: #fff;
    color: #222;
}


/*商品詳細(肉付け)============*/
#sub_item .item_box_new ul li{
    margin-bottom: 0%;
    border-bottom:solid 1px #1a1a1a;
}

#sub_item .item_box_new ul li:last-child{
    margin-bottom: -5%;
    border-bottom:solid 0px #1a1a1a;
}

#sub_item .item_box_new ul li > dl{
    position: relative;
    height: 1550px;
    overflow: hidden;
    width: 750px;
    margin:0 auto 2% auto;
    /* margin-bottom: 2%; */
}

#sub_item .item_box_new ul li > dl dd{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    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: 100px;
    transform: translate(-50%,50%);
    background-color: #e9265e;
    border-radius: 50px;
    border: solid 4px #e9265e;
    height: 90px;
    width: 80%;
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    box-shadow: 0px 0px 0px 15px #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: 80px;
    top: 50%;
    right: 6%;
}

#sub_item .item_box_new ul li > dl dd a:hover{
    background-color: #fff;
    color: #e9265e;
    opacity: 1;
}

/* 商品 共通
================================ */
#sub_item .item ul.col_2{
    margin: 1% auto;
}

#sub_item .item ul.item_box li a{
    padding: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1a1a1a;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
}

/*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: 45%;
    height: 100%;
    margin-right: 3%;
}

#sub_item .item ul.col_1 dl{
    width: 57%;
}

/*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: 25px;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 0%;
    padding: 0 0 0 0;
    height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5px;
}

#sub_item .item ul.item_box dl dd.sale{/*販促あるとき*/
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9265e;
    width: 100%;
    height: 70px;
    font-size: 24px;
    font-weight: bold;
}

#sub_item .item ul.item_box dl dd.price_nomal{/*通常価格あるとき*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    font-size: 18px;
    text-decoration: line-through;
    color: #1a1a1a;
}


/*価格====================*/
#sub_item .item ul.item_box dl dd.price_block{/*価格*/
    display: flex;
    align-items: center;
    margin-bottom:2%;
    margin-top: auto;
    height: 65px;
}

#sub_item .item ul.item_box dl dd.price_block .prdisp-taxin{
    font-family: "Jost";
    color: #f23613;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 3px 3px #e9265e;
}

#sub_item .item ul.item_box dl dd.price_block .prdisp-taxin span.value{
    font-size: 60px;
}



#sub_item .item ul.item_box dl dd.btn{/*詳細ボタン*/
    position: relative;
    background-color: #000;
    border-radius: 50px;
    border: solid 2px #000;
    padding: 3% 0;
    width: 80%;
    color: #fff;
    text-align: center;
    font-size: 20px;
    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 .item ul.item_box dl dd.btn:hover{
    background-color: #fff;
    color: #222;
}

/*もっと見る
==========================*/
#sub_item .cate{
	width: 80%;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
    height: 60px;
    border-radius: 12px;
    color: #e9265e;
    font-size: 20px;
    font-weight: bold;
    background-color: #ffffff;
    border: solid 2px #e9265e;
	transition: 0.2s;
} 

#sub_item .cate:hover{
    color: #fff;
    background-color: #e9265e;
} 

#sub_item .cate::after{
	position: absolute;
    right: 12%;
    top:50%;
    transform: translate(50%,-50%);
	font-family:'Material Icons';
	content: "\e5cc";
} 

/* item_osusme
================================ */
#sub_item .item_osusme .inner_contents{
    padding: 2%;
    background-color: #e9265e;
    border-radius: 20px;
    box-shadow: 6px 6px 0px #1a1a1a;
    margin-bottom: 5%;
}

#sub_item .item_osusme h2{
    color: #fff;
    border-color: #fff;
}

/* item_nomal
================================ */
#sub_item .item_nomal {
    margin-top: 5%;
}

/* top_btn
================================ */
#sub_item .top_btn{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    right: 2%;
    bottom: 62px;
    font-weight: 600;
    transition: 0.2s;
}

#sub_item .top_btn img{
    width: 150px;
}

#sub_item .top_btn:hover{
    transform: translateY(-5%);
    opacity: 1;
}

#sub_item .top_btn.active{
    transform: translateY(-100vh);
}

/*cate_search
================================ */
#sub_item .cate_search{
    margin:0 auto 2% auto;
    width: 900px;
}

#sub_item .cate_search ul li img{
    border-radius: 15px;
}

#sub_item .cate_search h4{
    position: absolute;
    color: #e9265e;
    opacity: 0;
    font-size: 1px;
}

/*バナー設置
================================ */
#sub_item .banner{
    margin: 1.5% 0;
}

/* footer
================================ */
#sub_item .footer {
    background: #212121;
    padding: 1% 0;
    text-align: center;
    color: #fff;
    font-size: 17px;
}

#sub_item .footer a {
    color: #fff;
}