@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
about
---------------------------------------- */
.about_step_area{
    margin-top: 15px;
}
.about_step_area .about_make_step_area{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.about_step_area .about_step{
    border: 3px solid #FFF57F;
    background-color: #fff;
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.about_step_area .about_step .about_step_heading{
    background-color: #FFF57F;
    color: #520000;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 5px;
    line-height: 110%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.about_step_area .about_step .about_step_img{
    padding: 10px 5px;
    text-align: center;
}
.about_step_area .about_step .about_step_img img{
    width: auto;
    height: 90px;
}
/*.about_step#complete*/
.about_step_area .about_step#complete{
    width: 100%;
}
.about_step_area .about_step#complete .about_step_heading{
    font-size: 1.8rem;
    padding-bottom: 8px;
}
.about_step_area .complete_img_wrapper{
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}
.about_step_area #complete .complete_item{
    width: 50%;
    margin: 0 auto;
}
.about_step_area #complete .complete_item_img{
    background-image: url(../images/bg_circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 10px 0;
    padding: 13px;
}
/*プラスマーク*/
.about_plus_icon_area{
    position: relative;
    text-align: center;
}
.about_plus_icon{
    background-color: #520000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    left: -20px;
    top: calc(50% - 20px);
}
.about_plus_icon span{
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 30px;
    height: 3px;
    background: currentColor;
    border-radius: 3px;
    position: relative;
    margin-top: 17px;
}
.about_plus_icon span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}
/*矢印*/
.about_arrow_icon_area{
    position: relative;
    text-align: center;
}
.about_arrow_icon{
    background-color: #520000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 20px);
    top: -35px;
}
.about_arrow_icon span{
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 20px solid #fff;
    margin-top: 13px;
}
/*about_price*/
#about_price{
    margin: 0 auto;
    text-align: center;
}
#about_price p{
    color: #fff;
    font-weight: 900;
    filter: drop-shadow(2px 3px 0px #520000);
    -webkit-text-stroke: 0.5px #520000;
    text-align: right;
    display: inline-block;
}
.about_inside .about_inside_img_area{
    position: relative;
    z-index: 1;
}
.about_inside .about_inside_img_area .about_inside_img{
    width: 65%;
    margin: 0 auto;
    margin-right: 10%;
}
.about_inside .about_inside_img_txt{
    background-color: #FE8F44;
    padding: 20px;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 120%;
    color: #fff;
    text-align: center;
    display: inline-grid;
    align-content: center;
    position: absolute;
    top: 20px;
    left: 0px;
    right: auto;
    z-index: -1;
}
/*------------ PC用  ------------*/
@media screen and (min-width: 950px) {
    .about_step_area{
        display: flex;
        flex-wrap: nowrap;
    }
    .about_step_area .about_make_step_area{
        width: 60%;
        height: 274px;
    }
    .about_step_area .complete_step_area{
        width: 40%;
        margin-left: 20px;
    }
    .about_step_area .about_step .about_step_heading{
        height: 40px;
        flex:none;
    }
    .about_step_area .about_step .about_step_img {
        padding: 30px 5px;
    }
    .about_step_area .about_step .about_step_img img{
        width: auto;
        height: 160px;
    }
    /*complete*/
    .about_step_area #complete .complete_item{
        max-width: 190px;
    }
    .about_step_area #complete .complete_calpis {
        width: 41%;
        padding-top: 20px;
    }
    .about_arrow_icon{
        top: calc(50% - 45px);
        left: calc(50% - 10px);
        transform: rotate(-90deg);
    }
    /*about_inside*/
    .about_inside .about_inside_detail{
        display: flex;
        flex-wrap: nowrap;
    }
    .about_inside .about_inside_detail p{
        width: calc(70% - 30px);
        margin-right: 30px;
        height: 110px;
    }
    .about_inside .about_inside_detail .about_inside_img{
        margin-right: 12%;
    }
    .about_inside .about_inside_img_txt{
        left: 0%;
        top: 17%;
    }
    .about_step_area .complete_img_wrapper::before {
        left: 38px;
    }
    .about_step_area .complete_img_wrapper::after {
        top: 145px;
        left: 218px;
    }
}