@charset "utf-8";
/* CSS Document */

/*
* BASE
******************************************************/
.voice-content {
	padding: 100px 0 0 0;
}
.voice-heading {
	margin: 0 0 80px 0;
	font-size: 4.0rem;
}
@media screen and (max-width:768px) {
	.voice-content {
		padding: 50px 0 0 0;
	}
	.voice-heading {
		margin: 0 0 40px 0;
		font-size: 2.2rem;
	}
}

/*
* VOICE
******************************************************/
.voice-list {
	max-width: 850px;
	margin:auto;
	padding: 100px 0 0 0;
}
/* acordion */
.ac-parent,
.ac-parent-nest {
	position: relative;
	height: 50px;
	border-bottom: 1px solid #ded9d6;
	color: #31335c;
	line-height: 50px;
	cursor: pointer;
}
.ac-parent:after,
.ac-parent-nest:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 10px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #31335c;
	border-bottom: 1px solid #31335c;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}
.ac-parent.open:after,
.ac-parent-nest.open:after {
	transform: rotate(225deg);
}
.ac-child,
.ac-child-nest {
	display: none;
	padding: 30px 0;
	margin-left: 0;
}
.ac-child:last-child {
	padding: 0;
}
@media screen and (max-width:768px) {
	.voice-list {
		max-width: inherit;
		padding: 50px 0 0 0;
	}
}