@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
howto
---------------------------------------- */
.howto_content{
    margin-bottom: 30px;
}
.howto_area #howto_keep{
    margin-bottom: 70px;
}
.howto_content .howto_txt{
    margin-bottom: 15px;
}
.howto_content .howto_img{
    text-align: center;
    border: 1px solid #E5E5E5;
    text-align:center;
}
.howto_content .howto_img img{
    vertical-align:top;
}
.howto_area .arrow_area{
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.howto_area .arrow_area span{
    display: inline-block;
    vertical-align: middle;
    color: #520000;
    line-height: 2;
    position: relative;
    width: 3px;
    height: 20px;
    background: currentColor;
}
.howto_area .arrow_area span::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 3px solid currentColor;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    position: absolute;
    left: 50%;
    bottom: -3px;
    box-sizing: border-box;
}
/*------------ PC用  ------------*/
@media screen and (min-width: 950px) {
    .howto_area .howto_detail{
        display: flex;
        flex-wrap: nowrap;
    }
    .howto_area .howto_detail .howto_txt{
        width: calc( 65% - 40px);
        margin-right: 40px;
        margin-bottom: 0;
        height: 100%;
    }
    .howto_area .howto_detail .howto_img{
        width: 35%;
    }
}