@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 #E5015A;
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.about_step_area .about_step .about_step_heading{
    background-color: #E5015A;
    color: #fff;
    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_img_wrapper::before{
    content: '';
    position: absolute;
    background-image: url(../images/icon/icon_yellow_left.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(-1, 1);
    width: 45px;
    height: 45px;
    top: 50px;
    left: 10px;
}
.about_step_area .complete_img_wrapper::after{
    content: '';
    position: absolute;
    background-image: url(../images/icon/icon_magenta_stretch.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 50px;
    top: 115px;
    left: 35px;
}
.about_step_area #complete .complete_item{
    width: 60%;
    margin-right: -50px;
    margin-left: 50px;
}
.about_step_area #complete .complete_item_img{
    background-image: url(../images/bg_nami_m.svg);
    background-repeat: no-repeat;
    background-size: 92%;
    background-position: center
}
.about_step_area #complete .complete_candy{
    width: 40%;
    position: relative;
    padding-top: 30px;
}
.about_step_area #complete .complete_candy_txt{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 120%;
    color: #E5015A;
    text-align: center;
    z-index: 1;
    position: relative;
}
.about_step_area #complete .complete_candy_txt::before{
    content: '';
    background-color: #fce4ed;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: absolute;
    top: -9px;
    left: 27px;
    z-index: -1;
}
.about_step_area #complete .complete_candy .complete_candy_img{
    position: relative;
    top: -8px;
    left: 14px;
}
.about_step_area #complete .complete_candy .complete_candy_img img{
    width: 75%;
    position: absolute;
    transform: rotate( 6deg );
    top: 0;
    left: 0;
    z-index: 1;
}
.about_step_area #complete .complete_item_img img,
.about_step_area #complete .complete_candy .complete_candy_img img{
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
/*プラスマーク*/
.about_plus_icon_area{
    position: relative;
    text-align: center;
}
.about_plus_icon{
    background-color: #FABD00;
    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: #FABD00;
    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{
    font-weight: 700;
    text-align: right;
    display: inline-block;
}
/*------------ 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: 150px;
    }
    /*complete*/
    .about_step_area #complete .complete_item{
        width: 55%;
        margin-right: -50px;
        margin-left: 70px;
    }
    .about_step_area #complete .complete_candy {
        width: 35%;
    }
    .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;
    }
    .about_inside .about_inside_detail .about_inside_img{
        width: 30%;
    }
}