/*common*/
.item_price{
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    line-height: 1;
}
.item_price .s_01{
    font-size: 2rem;
}
.item_price .normal_price{
    font-size: 1.8rem;
    font-weight: normal;
    margin-right: 0.3em;
    color: #000;
}
.order a{
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 22rem;
    background:#00acdf;
    color: #fff;
    border-radius: 10px;
    padding: 0.6em;
    font-weight: bold;
    transition: 0.3s;
    font-size: 1.5rem;
}
.order a:hover{
    opacity: 1;
    background:#6390cb;
}
.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%;
}
.item_name{
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5em;
}
.item_name::before{
    content: '';
    background: rgba(255 ,255, 255, 0.8);
    width: 10rem;
    height: 0.3rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.desc{
    display: table;
    margin: 0.5em auto;
}
.contents{
    text-align: center;
}

figure{
    position: relative;
}
figure figcaption{
    width: 7.5rem;
    height: 7.5rem;
    margin: 0;
    color: #fff;
    background: #e60012;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.7rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -2.5rem;
    right: -2rem;
}
.top_img{
    margin-bottom: 3rem;
}
/*sec*/
.sec_item{
    background: linear-gradient(90deg, #ffe783 0%, #ffe783 50%, #bce2e6 50%, #bce2e6 100%);
    position: relative;
    padding-bottom: 6rem;
    margin-bottom: -10rem;
}
.sec_item .container{
    max-width: 1200px;
}
.sec_item .container .item_area{
    column-gap: 20rem;
    grid-template-columns: calc(50% - 10rem) calc(50% - 10rem);
    margin-bottom: 3rem;
}
@media (max-width : 1370px) {
    .sec_item{
        padding: 4% 8rem 6rem;
    }
    .sec_item .container .item_area{
        column-gap: 16rem;
        grid-template-columns: calc(50% - 8rem) calc(50% - 8rem);
    }
}
.ptn01 .order a{
    background: #f39800;
}
/*?????????????*/
.ptn01_text{
    font-family:serif;
    font-weight: bold;
    font-size: 9rem;
    color: rgba(0, 0, 0, 0);
    text-shadow: 3px 3px 9.5px #f39800;
    -webkit-text-stroke: 1px #fff;
    writing-mode: vertical-rl; 
    position: fixed;
    top: 50%;
    left: 7rem;
    transform: translateY(-50%);
}
.ptn02_text{
    font-weight: bold;
    font-size:9rem;
    color: rgba(0, 0, 0, 0);
    text-shadow: 3px 3px 10px #00b9ef;
    -webkit-text-stroke: 1px #fff;
    writing-mode: vertical-rl; 
    position: fixed;
    top: 50%;
    right: 7rem;
    transform: translateY(-50%);

}
.bottom{
    transform: none;
    top: -20rem;
}
@media (max-width : 1630px) {
    .ptn01_text{
        font-size: 5rem;
        left: 0;
    }
    .ptn02_text{
        font-size: 5rem;
        right: 0;
    }
    .bottom{
        top: 0;
    }
}

.img_tx {
    margin-top: 2em;
}
.ptn01_icon,.ptn02_icon{
    display: none;
}
.red_border{
    border-bottom: 4px double #e60012;
    display: table;
    margin: 0 auto -1em;
}