@charset "utf-8";
/*======================================
よくある質問
========================================*/
/*****
faq
*****/
.ttl_faq{
	font-size: clamp(2rem,3.2vw,3.2rem);
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.5em;
}

.qa_area{
	margin-bottom: 1.5em;
	padding: 1.5em;
	border: solid 1px #999999;
	border-radius: 1em;
	background-color: #fff;
}

.que{
	font-size: clamp(1.8rem,2.1vw,2.1rem);
	padding: 0.5em 2.5em;
	position: relative;
	cursor: pointer;
}
.que::before{
	content: '';
	display: block;
	width: 2em;
	height: 2em;
	background-image: url("../img/icon_q.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	top: 0.25em;
	left: 0;
}

.icon_panel{
	display: block;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	background-color: #333;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.icon_panel::before,
.icon_panel::after{
	content: '';
	width: 1em;
	height: 3px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}
.icon_panel::before{
	transform: translate(-50%,-50%);
}
.icon_panel::after{
	transform: translate(-50%,-50%) rotateZ(90deg);
	transition: transform 0.5s;
}

.ans{
	font-size: clamp(1.6rem,1.8vw,1.8rem);
	margin-top: 3em;
	padding: 0.5em 0 0.5em 3em;
	position: relative;
}
.ans::before{
	content: '';
	display: block;
	width: 2.3em;
	height: 2.3em;
	background-image: url("../img/icon_a.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	top: 0.175em;
	left: 0;
}
.ans a{
	color: #CA6463;
}

/***開閉処理***/
.on_btnopen{}
.on_btnopen .icon_panel::after{
	transform: translate(-50%,-50%) rotateZ(0deg);
}

.panel{
	display: none;
}


/* ===========================================
	MediaQueries
=========================================== */
/* PC----------------------------- */
@media (min-width: 768px){
	/*****
	faq
	*****/
	
}

/* スマホ----------------------------- */
@media (max-width: 767px){
	/*****
	faq
	*****/
	.qa_area{
		padding: 1em;
	}
	.icon_panel{
		font-size: 0.8em;
	}
}