@charset "utf-8";

/* -----------------------------------------------------------
    コンテンツBG
-------------------------------------------------------------- */
#faq{
	background: #fff;
}


/* -----------------------------------------------------------
    faq-area
-------------------------------------------------------------- */
.faq-area {
	position: relative;
	padding: 80px 0 120px;
}
.faq-area .inner {
	position: relative;
	width: 1000px;
}

.faq-area .inner::after {
	content: "";
	background: url("../img/ill03.svg") no-repeat center / contain;
	aspect-ratio: 180 / 232;
	display: inline-block;
	position: absolute;
	width: 120px;
	top: -60px;
	right: 20px;
}

.faq-area .section-catch {
	font-size: 2.2rem;
    margin: 60px 0 30px;
	font-weight: 500;
	line-height: 1.5;
}
.faq-area .section-catch.t {
    margin: 0 0 30px;
}

.faq-box{
	margin: 0 auto;
}

.faq-box dl{
	border-bottom: 1px solid #ddd;
}

.faq-q{
	border-top: 1px solid #ddd;
	padding: 25px 35px 28px 60px;
    position: relative;
    cursor: pointer;
	border-bottom: none;
}
.faq-q h3{
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 500;
	padding: 0;
}
.faq-a{
	display: none;
	line-height: 1.8;
	position: relative;
	padding: 0 35px 30px 60px;
	background: none;
}
.faq-a .basic-txt{
	line-height: 1.8;
}

.faq-q::before,
.faq-a::before{
	display: block;
	position: absolute;
	left: 20px;
	font-size: 2.4rem;
	color: var(--main);
	font-family: var(--en);
}
.faq-q::before{
	content: 'Q';
	top: 28px;
}
.faq-a::before{
	content: 'A';
	top: 2px;
	left: 22px;
	color: var(--new);
	/*color: rgba(247, 93, 139, 1);*/
}
.faq-box .accordion-icon {
	right: 0;
}
.faq-box .accordion-icon span {
	background-color: var(--main);
}


@media screen and (max-width: 768px){
	
	.faq-area {
		padding: 50px 20px;
	}

	.faq-area .inner {
		width: 100%;
	}
	
	.faq-area .inner::after {
		width: 80px;
		top: -80px;
		right: -10px;
	}

	.faq-area .section-catch {
		font-size: 2rem;
		margin: 40px 0 15px;
	}
	.faq-area .section-catch.t {
		margin: 0 0 15px;
	}

	.faq-box{
		width: 100%;
	}
	.faq-q{
		padding: 20px 20px 20px 30px;
	}
	.faq-q h3{
		font-size: 1.8rem;
	}
	.faq-a{
		padding: 0 20px 20px 30px;
	}
	.faq-q::before,
	.faq-a::before{
		left: 0;
		font-size: 2rem;
	}
	.faq-q::before{
		top: 22px;
	}
	.faq-a::before{
		top: 4px;
		left: 2px;
	}
	
}

