/* contact/index.html */

.type_ttl{
	font-size: 2.4rem;
	text-align: center;
	font-weight: bold;
	color: #132860;
	margin: 55px 0 25px;
}
.faq_acd{
	max-width: 780px;
	margin: auto;
	border-bottom: 1px solid #d9d9d9;
}
.faq_acd dt{
	font-size: 1.8rem;
	line-height: 1.89;
	color: #132860;
	font-weight: bold;
	border-top: 1px solid #d9d9d9;
	padding: 15px 40px 15px 1.9em;
	text-indent: -1.9em;
	position: relative;
	cursor: pointer;
}
.faq_acd dt.open::before{
	opacity: 0;
}
.faq_acd dt::before,
.faq_acd dt::after{
	content: '';
	position: absolute;
	background: #132860;
	top: 50%;
	transition: .3s;
	transform: translateY(-50%);
	opacity: 1;
}
.faq_acd dt::before{
	width: 1px;
	height: 20px;
	right: 14px;
}
.faq_acd dt::after{
	width: 20px;
	height: 1px;
	right: 5px;
}
.faq_acd dd{
	display: none;
	padding-bottom: 15px;
}
.faq_acd dd,
.faq_acd dd p{
	font-size: 1.6rem;
	line-height: 1.89;
}


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

	.type_ttl{
		font-size: 2rem;
		margin: 40px 0 20px;
	}
	.faq_acd dt{
		font-size: 1.6rem;
		line-height: 1.8;
		padding: 15px 25px 15px 1.9em;
	}
	.faq_acd dt::before{
		height: 16px;
		right: 11px;
	}
	.faq_acd dt::after{
		width: 16px;
		right: 4px;
	}

}