@charset "utf-8";
/* ------------------------------------- */
/* ヘルプ */
/* ------------------------------------- */
/* アコーディオン枠 */
.help_content .qa_list{
	margin-bottom: 40px;
}
.help_content .qa_list dl{
	border: solid 2px #E3EEF9;
	border-radius: 5px;
}
.help_content .qa_list  dl{
	margin-bottom: 30px;
}
.help_content .qa_list  dl:last-child{
	margin-bottom: 0;
}
.help_content dl dt{
	width: 100%;
	background-color: #E3EEF9;
	padding: 10px 20px 10px 60px;
	font-size: 18px;
	font-weight: bold;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}
.help_content .qa_list  dl dt:before {
	position: absolute;
	top: 13px;
	left: 20px;
	content: '\e11e';
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	color: #6E72F2;
	font-size: 28px;
	line-height: 1;
	display: inline-block;
}
.help_content .qa_list  dl dd{
	padding: 30px 50px 30px 70px;
	box-sizing: border-box;
	position: relative;
	display: none;
}
.help_content .qa_list  dl dd:before {
	position: absolute;
	left: 30px;
	content: '\e0f7';
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	color: #6E72F2;
	font-size: 28px;
	line-height: 1;
	display: inline-block;
}
/* アコーディオンアイコン */
.btn_accordion {
	position: absolute;
	padding-right: 35px;
	top : 15px;
	right: 20px;
	font-size: 14px;
	color: #6E72F2;
	text-align: right;
	font-weight: normal;
}
.btn_accordion::after {
	position: absolute;
	top: -3px;
	right: 0;
	width: 30px;
	height: 30px;
	content: '\f107';
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	color: #6E72F2;
	font-size: 28px;
	line-height: 34px;
	text-align: center;
	transition: all 0.2s ease-in-out;
}
.btn_accordion.active::after {
	transform: rotate(180deg);
}
/* ------------------------------------- */
/* サポートデスク */
/* ------------------------------------- */
.inquiry_support h3{
	position: relative;
	font-size: 18px;
	font-weight: bold;
	color: #272A8A;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #C3D4E5;
}
.inquiry_support h3::before{
	display: inline-block;
	content: "";
	background-color: #B6B8F8;
	width: 12px;
	height: 12px;
	margin-right: 5px;
	border-radius: 100%;
}
.inquiry_support_inner{
	width: 100%;
}
/* ------------------------------------- */
/* アンカーリンク用 */
/* ------------------------------------- */
.anchor_link{
	padding-top: 100px;
	margin-top: -100px;
}