.linktxt{
    text-decoration: underline;
    font-weight: bold;
}


.itemcategory-list{
    margin-top: 3em;
    background: #f0efe9;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.itemcategory-list .titlewrap{
    padding: min(5vw, 40px);
}
.itemcategory-list .title{
    font-family: "Times New Roman", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", メイリオ, Meiryo, serif;
    font-size: min(5vw, 22px);
    font-weight: bold;
    border-left: 25px solid #b37858;
    padding: 9px 0 7px 12px;
    margin: 0;
    position: relative;
}
.itemcategory-list .title::before{
    content: "";
    display: block;
    font-size: 12px;
    width: 12px;
    height: 6px;
    background: #fff;
    clip-path: polygon(0 0, 50% 35%, 100% 0, 50% 100%);
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translate(0, -50%);
}

.itemcategory-list .wrapper{
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 820px;
    display: grid;
    grid-template-rows: 0fr;
    transition: .6s;
}
.itemcategory-list .inner{
    overflow: hidden;
}
.itemcategory-list .list{
    font-size: min(3.7vw, 16px);
    line-height: 1.1;
    padding: 0 min(5vw, 40px) min(5vw, 40px);
}
.itemcategory-list .list li{
    margin-bottom: 5px;
}
.itemcategory-list .list li:last-child{
    margin-bottom: 0;
}
.itemcategory-list .list a{
    display: block;
    font-weight: bold;
    box-sizing: border-box;
    padding: 1.5em 28px 1.4em 1.5em;
    background: #fff;
    position: relative;
    height: 100%;
    transition: background .3s, color .3s;
}
.itemcategory-list .list span{
    display: block;
    font-size: 75%;
    font-weight: normal;
    margin-top: .7em;
    opacity: .8;
}
.itemcategory-list .list a::after{
    content: "";
    display: block;
    font-size: 12px;
    width: .5em;
    height: 1em;
    background: #b37858;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 35% 50%);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
}

@media(min-width:901px){
    .itemcategory-list:hover .wrapper{
        grid-template-rows: 1fr;
    }
}
@media(max-width:900px){
    .open-block.itemcategory-list .wrapper{
        grid-template-rows: 1fr;
    }
}
.itemcategory-list .list a:hover{
    text-decoration: none;
    background: #ebe7cc;
    color: #000;
}
.itemcategory-list .list a.current{
    background: #e2e0d1;
}



.shop-itemlist{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.shop-itemlist .block{
    width: calc((100% - 5px) / 2);
}
.shop-itemlist .inner{
    background: #f2f2f7;
    padding: min(4vw, 25px);
    display: block;
    height: 100%;
    box-sizing: border-box;
    transition: background .4s;
}
.shop-itemlist .image{
    background: rgba(255,255,255,.8);
    border-bottom: 1px solid rgba(0,0,0,.07);
    margin-bottom: 20px;
    position: relative;
}
.shop-itemlist img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
}
.shop-itemlist .name{
    font-weight: bold;
    font-size: min(4vw, 16px);
    margin-bottom: 10px;
}
.shop-itemlist .price{
    font-weight: bold;
}
.shop-itemlist .price .tax{
    font-weight: normal;
    color: #333;
}

.shop-itemlist .inner:hover{
    background: #f3f7ff;
}

.shop-itemlist .block.soldout .image::before{
    content: "";
    position: absolute;
    z-index: 8;
    left:0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    opacity: .2;
}
.shop-itemlist .block.soldout .image::after{
    content: "SOLDOUT";
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    font-weight: bold;
    transform: translate(-50%, -50%);
    font-size: min(24px, 4.5vw);
    color: #fff;
    text-shadow:
    5px 0 20px rgba(0,0,0,.4),
    -5px 0 20px rgba(0,0,0,.4),
    0 5px 20px rgba(0,0,0,.4),
    0 -5px 20px rgba(0,0,0,.4);
}



.shop-dtlpage .item-category{
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 7px 15px 6px;
    display: inline-block;
    font-weight: bold;
}
.shop-dtlpage .dtl-wrap{
    margin-bottom: min(9vw, 4em);
}
.shop-dtlpage .dtl-wrap:last-child{
    margin-bottom: 0;
}

.shop-dtlpage .item-data{
    display: flex;
    gap: 2em 4em;
}
@media(max-width:900px){
    .shop-dtlpage .item-data{
        flex-direction: column;
    }
}
.shop-dtlpage .item-data .imagebox{
    width: 480px;
}
.shop-dtlpage .item-data .imagebox img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
}
@media(max-width:900px){
    .shop-dtlpage .item-data .imagebox{
        width: 100%;
    }
}

.shop-dtlpage .item-data .textbox{
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 2em;
}

.shop-dtlpage .soldout{
    text-align: center;
    font-weight: bold;
    padding: 24px 10px;
    font-size: 20px;
    line-height: 1;
    background: #8d8d8d;
    color: #fff;
}

.shop-dtlpage .data table{
    border-top: 1px solid #ccc;
    width: 100%;
}
.shop-dtlpage .data :is(th, td){
    border-bottom: 1px solid #ccc;
    padding: 20px 15px;
}
.shop-dtlpage .data th{
    font-weight: bold;
    width: 4em;
}
.shop-dtlpage .data .price{
    font-weight: bold;
}
.shop-dtlpage .data .price .tax{
    font-weight: normal;
    color: #333;
}

.shop-dtlpage .cartbtn{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background:linear-gradient(to bottom,
		#ffa667 0%,
		#e1772b 100%);
    color: #fff;
    padding: 18px 10px 16px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.2;
    transition: opacity .4s;
}
.shop-dtlpage .cartbtn img{
    width: 34px;
    filter:invert(100%);
    transform: translate(0, -2px);
}

.shop-dtlpage .subimg{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.shop-dtlpage .subimg .image{
    width: calc((100% - 10px * 3) / 4);
}
@media(max-width:900px){
    .shop-dtlpage .subimg .image{
        width: calc((100% - 10px) / 2);
    }
}
.shop-dtlpage .subimg img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
}

.shop-dtlpage .cartbtn:hover{
    text-decoration: none;
    opacity: .8;
}
.shop-dtlpage .cartbtn:hover img{
    opacity: 1;
}

.shop-dtlpage .backbtn{
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}




#mailform .Tyuui{
    background: #f3f1e6;
    padding: min(7vw, 30px);
}


#mailform th{
    background-clip: padding-box;
    position: relative;
    width: 14em;
}
#mailform :is(.must, .any){
    position: absolute;
    right: 20px;
}
#mailform :is(input[type="text"], textarea, select){
    width: 80%;
    margin: 5px 0;
    padding: 10px 15px;
    box-sizing: border-box;
}
#mailform :is(input[type="text"], textarea, select):first-child{
    margin-top: 0;
}
#mailform :is(input[type="text"], textarea, select):last-child{
    margin-bottom: 0;
}
#mailform textarea{
    height: 10em;
}

#mailform #products li{
    margin-bottom: 15px;
}
#mailform #products li:last-child{
    margin-bottom: 0;
}
#mailform #products :is(input[type="text"], select){
    margin: 0;
}

@media screen and (max-width: 880px) {
    #mailform table.style,
    #mailform table.style :is(tbody, tr, th, td){
        display: block;
    }
    #mailform table.style :is(th, td){
        padding-right:10px;
        padding-left: 10px;
    }
    #mailform table.style th{
        border:none;
        padding-bottom:0;
        width: auto;
    }
    #mailform table.style td{
        padding-top:10px;
    }

    #mailform :is(.must, .any){
        position: static;
        margin-right: 10px;
    }

    #mailform :is(input[type="text"], textarea, select){
        width: 100% !important;
    }
    #mailform #products input[type="text"]{
        width: 80% !important;
        margin-top: 6px;
    }

    #mailform #products li{
        border-bottom: 1px dashed #ccc;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    #mailform #products li:last-child{
        border-bottom: none;
        padding-bottom: 0;
    }
}



/*確認画面の商品リストテーブル*/
#mailform table.style.border.product_list thead{background: #bdba98; color: #fff;}
#mailform table.style.border.product_list th{vertical-align: middle; width: auto;}
#mailform table.style.border.product_list td{vertical-align: middle;}
#mailform table.style.border.product_list td.name{font-weight: bold;}
#mailform table.style.border.product_list td.num{width: 4em;}
#mailform table.style.border.product_list tr.total2{background: #fff1ed; font-weight: bold;}
#mailform table.style.border.product_list tr.total2 td.kingaku{color: #f73333; font-size: 120%;}
/*スマホ*/
@media(max-width:900px){
    #mailform table.style.border.product_list{margin-bottom: 0;}
    #mailform table.style.border.product_list thead{display: none;}
    #mailform table.style.border.product_list tr{padding: 1em 10px; border-bottom: 1px solid #eee;}
    #mailform table.style.border.product_list :is(th, td){border: none;}
    #mailform table.style.border.product_list td{padding: 0;}
    #mailform table.style.border.product_list td.name{font-size: 120%; margin-bottom:.5em;}
    #mailform table.style.border.product_list td.num{width: auto;}
    #mailform table.style.border.product_list td.num:before{content: "数量：";}
    #mailform table.style.border.product_list td.tanka:before{content: "単価：";}
    #mailform table.style.border.product_list td.kingaku:before{content: "金額：";}

    #mailform table.style.border.product_list :is(tr.total1, tr.payment, tr.total2){text-align: right;}

    #mailform table.style.border.product_list :is(tr.total1, tr.payment, tr.total2) td{display: inline-block; margin: 0 0 0 1em;}

    #mailform table.style.border.product_list :is(tr.total1, tr.payment, tr.total2) td:before{display: none;}
}



#law table th{
    width: 15em;
}
@media screen and (max-width: 680px) {
    #law table.style.mov680 th {
        width: auto;
    }
}




.sent-type{
    margin-bottom: 10px;
    padding: min(7vw, 50px);
    border: 1px solid #ccc;
}
.sent-type:last-child{
    margin-bottom: 0;
}

.sent-type .inner{
    margin-top: 20px;
}

.sent-type .dtl-tesuuryou{
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
}
.sent-type .dtl-tesuuryou .title{
    font-weight: bold;
    margin-bottom: 1em;
    background: #eee;
    padding: 12px 15px 10px;
}




/*送料のテーブル*/
table.souryou{line-height: 1.4;}
table.souryou th.split {
    font-size: 80%;
    font-weight: 500;
    position: relative;
    background: linear-gradient(to left bottom,#e4f4df 49.5%,#B6C3B2 50%,#e4f4df 50.5%);
}
table.souryou th.split span{position: absolute;}
table.souryou th.split span.lb{left: 0.5em; bottom: 0.5em;}
table.souryou th.split span.rt{right: 0.5em; top: 0.5em;}

table.souryou th{
    text-align: center;
    padding: 0.5em;
    border: 1px solid #B6C3B2;
    background: #e4f4df;
    font-weight: bold;
    vertical-align: middle;
}
table.souryou td{
    text-align: center;
    padding: 0.5em;
    border: 1px solid #ccc;
    background: #fff;
    vertical-align: middle;
}

table.souryou tr.cool{}
table.souryou tr.cool th{background: #D9E7F5; border-color: #AEB9C4;}
table.souryou tr.cool td{background: #F2F9FF; border-color: #C2C7CC;}




.haisou-jikan{
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 540px;
}
.haisou-jikan img{
    max-width: 100%;
}


.haisou-listtxt li{
    border-bottom: 1px solid #ccc;
    padding: 20px 20px 20px 40px;
    position: relative;
    font-weight: bold;
}
.haisou-listtxt li::before{
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: #a49953;
    box-sizing: border-box;
    border-radius: 100vw;
    position: absolute;
    left: 15px;
    top: 20px;
}



.order-flow li{
    border-bottom: 1px solid #ccc;
    padding: 20px 20px 20px 10px;
    font-weight: bold;
    display: flex;
    column-gap: 1em;
}
.order-flow p{
    margin: 0;
}
.order-flow .flow-txt1{
    color: #000;
}
.order-flow .flow-txt2{
    flex: 1;
}


.mailFormErrorElement { background-color: #ffd6d6; }
.mailFormErrorMessage { color: #cc0000; }