@charset "euc-jp";
.input-prepend.input-append input {
    font-size: 24px;
    padding-top: 11px;
    padding-bottom: 11px;
    width: 100px;
    text-align: right;
  }
  .stock_error {
    color: #DB5656;
  }


.item_dtl{
    display: grid;
    gap: 0 40px;
    grid-template-columns: 340px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
    "box2 box1"
    "box2 box3";
}
.item_dtl .title{
    grid-area: box1;
    align-self: start;
}
.item_dtl .title .itemname{
    font-weight: bold;
    margin-bottom:15px;
    color: #5C3223;
    font-size: 22px;
    line-height: 1.2;
}
.item_dtl .title .simple_explain{
    margin-bottom: 20px;
}
.item_dtl .image{
    grid-area: box2;
}
.item_dtl .cart{
    grid-area: box3;
}
@media (max-width:1180px){
    .item_dtl{
        grid-template-columns: 280px 1fr;
    }
}
@media (max-width:770px){
    .item_dtl{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
        "box1"
        "box2"
        "box3";
    }
    .item_dtl .cart{
        margin-top:30px;
    }
}


/*  */
.dtl_section{
    margin-top:50px;
}
.dtl_section p{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.dtl_section h2{
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 700;
	margin: 60px 0 40px;
	padding: 15px 0;
	border-bottom: 2px solid #E0D9D5;
	color: #5C3223;
}


/*  */
.item_table{
    border-bottom: 1px solid #cdc4c1;
}
.item_table th,
.item_table td{
    border-top:1px solid #cdc4c1;
    padding: 10px;
    line-height: 1.2;
}
.item_table th{
    width: 7em;
}
.item_table .price{
    font-weight: bold;
    font-size: 18px;
}


/*  */
.dtl_link_wrapper{
    background: #ECE3DE;
    padding: 30px;
}
.dtl_link_wrapper .link{
    width: 100%;
    max-width: 580px;
    margin-right: auto;
    margin-left: auto;
    border-bottom:1px solid #d9d0cb;
}
.dtl_link_wrapper .linkbox{
    border-top:1px solid #d9d0cb;
}
.dtl_link_wrapper .linktxt{
    display: block;
    padding: 10px;
}


/*  */
.item_image{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.item_image .main{
    width: 100%;
    aspect-ratio: 4 / 3;
}
.item_image .sub{
    width: calc((100% - 5px * 2) / 3);
    aspect-ratio: 1 / 1;
}
.item_image .img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/*  */
.buy_kosuu,
.buy_kosuu .input-prepend{
    display: flex;
    justify-content: center;
    align-items: center;
}
.buy_kosuu .btn,
.buy_kosuu .input-prepend.input-append input{
    height: 50px;
}
.buy_kosuu .btn{
    padding:7px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.buy_kosuu .input-prepend.input-append input{
    padding:10px;
}

/*  */
.item_dtl .btn-lg{
    background-image: linear-gradient(to bottom, #9D0300, #7A0215) !important;
    border-radius: 3px;
    font-weight: bold;
    border: none;
    color: #fff;
    width: 100%;
    padding: 20px 10px;
    line-height: 1;
}


/*  */
.reviewlist{
    padding: 30px;
    background: #fff;
}
.reviewlist:not(:nth-of-type(1)){
    margin-top:10px;
}
.reviewlist .shopcomment{
    border: 3px double #ddd;
    margin-top: 20px;
    padding: 20px;
}
.reviewlist .review_poster{
    display: flex;
    flex-wrap: wrap;
    gap: .4em 1em;
    margin-top:20px
}
.reviewlist .review_poster .name{
    width: 100%;
    font-weight: bold;
}
.reviewlist .review_poster .name .from{
    margin-left: .5em;
    color: #5a5a5a;
}
.reviewlist .review_poster .box{
    width: calc(((100% - 1em * 2 ) / 3));
    font-size: 85%;
}