@charset 'UTF-8';
.faq {
	margin-bottom: 60px;
}
.faq .article {
	padding-bottom: 0;
	margin-bottom: 20px;
	-webkit-transition: padding .4s;
	-o-transition: padding .4s;
	transition: padding .4s;
	background:#F1F1F1;
	padding:0 20px;
	

}
.faq .article:last-child {
	margin-bottom: 0;
}
.faq .article .title {
	position: relative;
	padding: 18px 30px 14px 0;
	font-size: 2rem;
	line-height: 1.4;
	color:#222222;
	cursor: pointer;
}

.faq .article.on .title{
	margin-bottom: 10px;
}

.faq .article .title::after {
	content: '';
	position: absolute;
	z-index: 10;
	top: 23px;
	right: 0;
	background: url('../image/faq01.svg') center no-repeat;
	width: 15px;
	height: 15px;
	-webkit-transition: -webkit-transform .4s;
	transition: -webkit-transform .4s;
	-o-transition: transform .4s;
	transition: transform .4s;
	transition: transform .4s, -webkit-transform .4s;
}
.faq .article .title:hover {
    opacity: 0.8;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.faq .article .text {
	overflow: hidden;
	height: 0;
	-webkit-transition: height .4s;
	-o-transition: height .4s;
	transition: height .4s;
	font-size: 1.4rem;
	padding-right: 20px;
}
.faq .article.on {
	padding-bottom: 10px;
}
.faq .article.on .title::after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	width: 15px;
	height: 2px;
	background: url('../image/faq02.svg') center no-repeat;
	top: 28px;
}
.form_link-wrap{
	max-width: 1080px;
	padding: 0 40px;
	margin: 0 auto;
}
.form_link{
	margin: 0 auto;
	text-align: center;
	max-width: 300px;
}
.form_link .c-link{
	font-weight: normal;
	font-size: 1.6rem;
	line-height: 40px;
	background: #F2F2F2;
	height: 60px;
	display: flex; /* 子要素をflexboxで揃える */
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
	align-items: center;  /* 子要素をflexboxにより中央に配置する */
	-webkit-transition: 1.0s ;
	-o-transition: 1.0s ;
	transition: 1.0s ;
}
.form_link .c-link:hover{
	text-decoration: none;
    opacity: 0.6;
}
.form_link .form_link_text
{
	margin-top:20px;
	text-align: center;
	font-size: 1.2rem;
	line-height:1.8;
}

/*＿*/