/*common*/
.item_name{
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0;
    position: relative;
    z-index: 10;
    padding: 0.8em 0;
    width: 30rem;
    color: #5d3d0f;
    font-family: "Zen Old Mincho", serif;
    line-height: 1.4;
}
.item_name::before{
    content: '';
    background: #d7a2145e;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.item_name::after{
    content: '';
    background: #e38b1fb3;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    position: absolute;
    top: 70%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.item_name span{
    display: inline-block;
    position: relative;
    padding: 0 2em;
    font-size: 1.6rem;
    color: #e5150e;
}
.item_name span::before,.item_name span::after{
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 0.2rem;
    background-color: #5d3d0f;
}
.item_name span::before{
    left: 0;
}
.item_name span::after{
    right: 0;
}
.item_price{
    text-align: center;
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1;
}
.item_price .s_01{
    font-size: 1.5rem;
}
.order a{
    position: relative;
    display: block;
    margin: 0 center;
    text-align: center;
    width: 22rem;
    background: #5d3d0f;
    color: #fff;
    border-radius: 50px;
    padding: 0.6em;
    font-weight: bold;
    transition: 0.3s;
    font-size: 1.5rem;
    margin: auto;
}
.order a:hover{
    opacity: 1;
    background: #e38b1fb3;
}
.order a::after{
    content:'';
    display: block;
    position: absolute;
    top: 50%;
    right: 7%;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translate(0, -50%) rotate(45deg);
    transition: 0.2s;
}
.order a:hover:after{
    right: 6%;
}
/***only***/
.mbs1{
    margin-bottom: 4rem;
}
.flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.reverse01{
    order: 2;
}
.reverse02{
    order: 1;
}
.reverse01 img{
    margin-top: 2rem;
}
.bg_area{
    background: #ecd4a5;
}
/*sec_title*/
/*sec_item*/
.sec_item{
    margin-bottom: -10rem;
    padding-bottom: 8rem;
}
.img_t{
    margin-top: 3rem;
}