/*============================
MV
============================*/
#mv {
	background-image: url(../img/first/mv_pc.jpg);
}

/*============================
QA
============================*/
/* タイトル */
.qa_wrap .title {
	font-size: 0.22rem;
	font-weight: bold;
	background: #5FC1AA;
	color: #fff;
	text-align: center;
	padding: 0.15rem 0.20rem;
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	.qa_wrap .title {
		font-size: 0.18rem;
		}
	}


.qa_wrap .qa_box {
	background: #E7F6F3;
	box-sizing: border-box;
	border-bottom: 1px solid #5FC1AA;
}

/* Q */
.qa_wrap .qa_box .q_cont{
	font-size: 0.18rem;
	font-weight: bold;
	position: relative;
	display: flex;
	padding: 0.25rem 0.50rem 0.20rem 0.20rem;
}
@media screen and (max-width: 599px) {
	.qa_wrap .qa_box .q_cont{
		font-size: 0.16rem;
		line-height: 1.3;
	}
}


.qa_wrap .qa_box .q_cont::before{
	content: 'Q';
	font-size: 0.25rem;
	font-weight: bold;
	color: #5FC1AA;
	display: inline-block;
	padding-right: 0.15rem;
	position: relative;
	top: -0.05rem;
}

.qa_wrap .qa_box .q_cont:hover{
	opacity: 0.7;
}



.qa_wrap .qa_box .q_cont::after {
    content: "";
    width: 0.13rem;
    height: 0.1rem;
    background-image: url(../img/common/sidenav_arrow_bottom.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0.35rem;
    top: 0.3rem;
    z-index: 0;
    transition: all 0.3s;
}

.qa_wrap .qa_box .q_cont.open::after {
    transform: rotate(180deg);
}

/* A */
.qa_wrap .qa_box .a_cont {
	display: none;
	padding: 0 0.50rem 0.20rem 0.20rem;
}

.qa_wrap .qa_box .a_cont .text{
	font-size: 0.16rem;
	position: relative;
	display: flex;
	line-height: 1.65;
}
@media screen and (max-width: 599px) {
	.qa_wrap .qa_box .a_cont .text{
		font-size: 0.14rem;
	}
}


.qa_wrap .qa_box .a_cont .text::before{
	content: 'A';
	font-size: 0.25rem;
	font-weight: bold;
	color: #E86573;
	display: inline-block;
	padding-right: 0.15rem;
	position: relative;
	top: -0.05rem;
}