@charset "UTF-8";

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	parts
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*title
———————————————————————————————————————————————————————————————————*/
#faq .faq__title{
    width: 100%;
	margin: 0 auto 48px;
    text-align: center;
}
#faq .faq__title h2{
	font-size: 32px;
	font-weight: 600;
	line-height: 1.7;
    letter-spacing: 0.03em;
}
@media only screen and (max-width: 768px) {
	#faq .faq__title{
        margin: 0 auto 32px;
    }
	#faq .faq__title h2{
        font-size: 24px;
    }
}
/*faq__item
———————————————————————————————————————————————————————————————————*/
#faq .faq__item{
    margin-bottom: 24px;
}
#faq .faq__item--question{
	position: relative;
	display: flex;
    width: 100%;
    padding: 18px 40px 18px 24px;
    background: #fff;
    cursor: pointer;
}
#faq .faq__item--question img{
    position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 20px;
	height: 20px;
}
#faq .faq__item--question img:nth-of-type(2){
    display: none;
}
#faq .open .faq__item--question img:nth-of-type(1){
    display: none;
}
#faq .open .faq__item--question img:nth-of-type(2){
    display: block;
}
#faq .faq__item--question p:nth-of-type(1){
    color: #C3A76C;
    font-family: 'Parisienne';
	font-size: 24px;
	line-height: 1;
    margin-right: 24px;
}
#faq .faq__item--question p:nth-of-type(2){
	font-size: 15px;
	font-weight: 600;
}
#faq .faq__item--answer{
    display: block;
    width: 100%;
    padding: 8px 40px 18px 41.79px;
    background: #fff;
}
#faq .faq__item--answer p{
    font-size: 13px;
	line-height: 1.5;
}
@media only screen and (max-width: 768px) {
    #faq .faq__item--question{
        padding: 16px 28px 16px 16px;
    }
    #faq .faq__item--question img{
        right: 16px;
        width: 12px;
        height: 12px;
    }
    #faq .faq__item--question p:nth-of-type(1){
        font-size: 20px;
        margin-right: 10px;
    }
    #faq .faq__item--question p:nth-of-type(2){
        font-size: 13px;
    }
    #faq .faq__item--answer{
        padding: 16px 28px 16px 40.83px;
    }
    #faq .faq__item--answer p{
        font-size: 13px;
    }
}