@charset "UTF-8";


/*----------------------------------------------------
	☆PC
----------------------------------------------------*/

/*--- faq --*/
#contents .faq{
    padding: 0;
} 
#contents .faq .faqList dl{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}
#contents .faq .faqList dl:last-child{
    margin-bottom: 0;
}

#contents .faq .faqList dl dt{
    position: relative;
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    padding: 10px 40px 10px 54px;
    cursor: pointer;
    transition: .3s;
    color: #19937b;
}

#contents .faq .faqList dl dt::before,
#contents .faq .faqList dl dd .title::before{
    content: "Q";
    font-weight: 700;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    color: #fff;
    background: #ffca05;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding: 0 0 0.15em 0.1em;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 4px;
}

#contents .faq .faqList dl dd .title::before{
    content: "A";
    background: #ea8888;    
}

#contents .faq .faqList dl dt .icon{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 13px;
    display: block;
}
#contents .faq .faqList dl dt .icon::before,
#contents .faq .faqList dl dt .icon::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #19937b;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    transition: .3s;
    transform-origin: center center;
    border-radius: 10px;
}
#contents .faq .faqList dl dt .icon::after{
    transform: rotate(90deg);
}

#contents .faq .faqList dl dd{
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    margin: 20px 0 0 54px;
}

#contents .faq .faqList dl dd .title{
    font-size: 18px;
    font-weight: 700;
    color: #ea8888;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 0 0px 54px;
    line-height: 1.5;
}

#contents .faq .faqList dl dt.active .icon::after{
    transform: rotate(90deg) scale(0,1);
}


/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/



/*----------------------------------------------------
	☆901以上　PCのみ & HOVER
----------------------------------------------------*/

@media screen and (min-width:901px) {
    
    #contents .faq .faqList dl dt:hover{
        color: #513924;
    }
    
}

/*----------------------------------------------------
	☆UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {      
}


/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
    
    #contents .faq .faqList dl dt::before, #contents .faq .faqList dl dd .title::before {
        font-size: 16px;
        width: 30px;
        height: 30px;
    }
    
    #contents .faq .faqList dl dt {
        font-size: 16px;
        padding: 7px 35px 5px 44px;
    }
    #contents .faq .faqList dl dd {
        padding: 25px;
        border-radius: 15px;
        margin: 20px 0 0 44px;
    }
    #contents .faq .faqList dl dd .title {
        font-size: 15px;
        padding: 5px 0 0px 40px;
    }
    
}

/*----------------------------------------------------
	☆UNDER 480
----------------------------------------------------*/

@media screen and (max-width:480px) {
    
}

