@charset "utf-8";

/* -----------------------------------------------------------
    Q&A
-------------------------------------------------------------- */
.faq-area {
    padding: 100px 0;
	position: relative;
}

.faq-area-inner{
}

.faq-area-inner::after{
    left: auto;
    right: 0;
}

.faq-area .title-wrap{
    z-index: 3;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 35px;
}

.faq-area .faq-list {
    padding: 10px 0 100px;
}

.faq-area .faq-list .list {
	line-height: 1.7;
	/*background: #F2F0EC;*/
	margin: 0 0 5px;
	border-bottom: solid 1px #ddd;
}

.faq-area .faq-list .list:last-child {
	margin: 0;
}

.faq-area .quest {
	padding: 20px 20px 20px 60px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	transition: 0.5s;
    font-weight: 500;
}

.faq-area .quest::before {
	content: "Q";
	color: var(--gray2);
	font-family: var(--josefinsans);
	font-size: 2.8rem;
	font-weight: 500;
	position: absolute;
	top: 12px;
	margin: auto;
	left: 22px;
}

.faq-area .quest:hover {
	cursor: pointer;
	color: #a8a8a8;
}

.faq-area .faq-accordion-icon {
	position: relative;
	height: 20px;
	width: 20px;
}

.faq-accordion-icon::before,
.faq-accordion-icon::after {
	background-color:var(--purple);
	content: "";
	height: 2px;
    width: 22px;
	position: absolute;
	transition: all .3s;
	top: 0;
	bottom: 0;
	margin: auto;
}

.faq-accordion-icon::before {
	transform: rotate(0deg);
}

.faq-accordion-icon::after {
	transform: rotate(90deg);
}

.faq-area .quest.active .faq-accordion-icon::after {
	transform: rotate(180deg);
}

.faq-area .answer {
	padding: 0 20px 20px 60px;
	/*font-weight: 500;*/
	display: none;
	position: relative;
}

.faq-area .answer::before {
	content: "A";
	color: var(--purple);
	font-family: var(--josefinsans);
	font-size: 2.8rem;
	font-weight: 500;
	position: absolute;
	top: -6px;
    margin: auto;
    left: 23px;
}

.faq-area .faq-list .list .answer p em{
	font-size: 1.9rem;
	font-family: var(--notoserif);
	line-height: 2.3;
	letter-spacing: 1.2px;
}

.faq-area .faq-list .list .answer a{
    border-bottom: 1px solid;
}

.faq-area .faq-list .list .answer li {
	line-height: 2.2;
    font-size: 2rem;
    margin: 0 0 0 15px;
    position: relative;
}


.faq-area .faq-list .list .answer .att{
    font-size: 1.8rem;
    font-weight: 600;
}

.sub-title{
	font: 500 2rem / 1.4 var(--notoserif);
	position: relative;

}
.sub-title span{
	background: #fff;
	padding: 0 20px 0 0;
}
.sub-title::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	top: 0;
	right: 0;
	background-image : linear-gradient(to right, #bb7db1 2px, transparent 2px);
	background-size: 10px 2px;
	background-repeat: repeat-x;
	background-position: left bottom;
	top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	z-index: -1;
}

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

	.faq-area {
		padding: 60px 0 0;
	}

	.faq-area .faq-area-inner {
		width: 100%;
	}

    .faq-area .title-wrap{
        top: 19px;
    }

	.faq-area .inner > .ttl {
		text-align: center;
	}

	.faq-area .faq-list {
		padding: 15px 0 40px;
	}

	.faq-area .faq-list .list {
		margin: 0 0 10px;	
	}

	.faq-area .faq-list .list p {
		font-size: 1.5rem;
	}

    .faq-area .faq-list .list .ttl{
        width: calc( 100% - 40px );
        display: block;
    }

	.faq-area .quest {
		padding: 10px 0 10px 40px;
	}

	.faq-area .quest::before {
		font-size: 2rem;
		top: 11px;
		left: 10px;
	}

	.faq-area .quest:hover {
		color: #55423E;
	}

	.faq-area .faq-accordion-icon {
		height: 20px;
		width: 20px;
	}

	.faq-accordion-icon::before,
	.faq-accordion-icon::after {
		width: 15px;
	}

	.faq-area .answer {
		padding: 0 20px 10px 40px;
	}

	.faq-area .answer::before {
		font-size: 2.2rem;
		top: 0px;
		left: 12px;
	}

	.faq-area .faq-list .list .answer p {
		line-height: 1.8;
	}

	.faq-area .faq-list .list .answer li{
		font-size: 1.6rem;
	}

	.faq-area .faq-list .list .answer p em{
		line-height: 1.3;
	}
	
	.sub-title{
		font-size: 1.8rem;
	}

}


