@charset "UTF-8";
/* CSS Document */
.wrapper{
    margin-bottom: 16rem;
}
.wrapper .inner{
    width: min(80%,1400px);
    margin: 0 auto;
}
.service{
    margin-bottom: 5rem;
}
.service:last-of-type{
    margin-bottom: 0;
}
.service h3{
    font-size: clamp(15px,2.2rem,22px);
    font-weight: 600;
    line-height: 1;
    padding: 18px 25px;
    border-radius: 999px;
    margin-bottom: 3rem;
    background: linear-gradient(105deg, #FA80B4 1%, #FF00A4 15%, #FF0095);
    color: #fff;
}
.service .box{
    margin-bottom: 20px;
}
.service .box:last-of-type{
    margin-bottom: 0;
}
.service .box .service_name{
    font-size: clamp(15px,2.1rem,20px);
    background-color: #F7F8F8;
    padding: 18px 25px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}
.service .box .service_name .plus_icon{
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1em;
    height: 1em;
}
.service .box .service_name .plus_icon::before{
    content: '';
    display: inline-block;
    width: 2px;
    height: 100%;
    border-radius: 2px;
    background-color: #F923B2;
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: center center;
    transform: translateX(-50%)scale(1,1);
    transition: .3s;
}
.service .box .service_name .plus_icon::after{
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #F923B2;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.service .box .detail{
    font-size: clamp(15px,1.9rem,18px);
    background-color: #F7F8F8;
    padding: 25px;
    border-radius: 0 0 10px 10px;
    display: none;
    position: relative;
}
.service .box .detail::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: calc(100% - 50px);
    background-color: #DEDEDE;
}
.service .box .service_name.is-open{
    border-radius: 10px 10px 0 0;
}
.service .box .service_name.is-open .plus_icon::before{
    transform: translateX(-50%)scale(1,0);
}


@media print, screen and (max-width: 768px){
    .wrapper .inner {
        width: 100%;
        padding: 0 4.5rem;
    }
    .service {
        margin-bottom: 8rem;
    }
    .service h3{
        font-size: clamp(15px,3.2rem,18px);
        margin-bottom: 4rem;
        padding: 20px 25px;
    }
    .service .box{
        margin-bottom: 15px;
    }
    .service .box .service_name{
        font-size: clamp(15px,3.2rem,18px);
        line-height: 1.6;
    }
    .service .box .detail{
        font-size: clamp(15px,3rem,18px);
        line-height: 1.8;
        padding: 20px 25px;
    }
    .service .box .service_name .plus_icon{
        width: 1.2em;
        height: 1.2em;
    }
}