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



/*------------------------------------------------------------
	faq
------------------------------------------------------------*/

#faq{
	margin-top: 100px;
}
#faq ul{
	max-width: 1000px;
	margin: 56px auto 100px;
	padding: 0 20px;
}
#faq ul li{
	display: block;
	border-bottom: solid 2px #e6e6e6;
	cursor: pointer;
	position: relative;
}
#faq ul li:first-child{
	border-top: solid 2px #e6e6e6;
}
#faq ul li h2{
	position: relative;
}
#faq ul li h2::after{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	position: absolute;
	top: 50%;
	bottom: 50%;
	right: 20px;
	transform: translate(0%,0%) rotate(-45deg);
	transition: bottom .5s, transform .5s;
}
#faq ul li.active h2::after{
	bottom: 30px;
	transform: translate(0%,0%) rotate(135deg);
}
#faq ul li h2{
	font-size: 20px;
	line-height: 1.5;
	padding: 35px 60px 35px 1em;
	transition: padding .5s;
  color: #000;
  text-indent: -1em;
	font-weight: bold;
}
#faq ul li h2::before{
	content: "Q. ";
}
#faq ul li p{
	font-size: 18px;
	line-height: 2;
	display: none;
	padding: 0 60px 40px 20px;
}
#faq ul li p a{
  text-decoration: underline;
}
#faq ul li p a:hover{
  opacity: .7;
}
@media only screen and (max-width:768px) {
#faq{
	margin-top: 40px;
}
	#faq ul li::after{
		right: 20px;
	}
	#faq ul li h2{
		font-size: 16px;
		padding: 25px 40px 25px 1em;
	}
	#faq ul li p{
		font-size: 15px;
		padding: 0 40px 30px 20px;
	}
}





/*------------------------------------------------------------
	scroll
------------------------------------------------------------*/
#faq .ttl ,#faq li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
#faq .ttl.scroll,
#faq li.scroll {
  opacity: 1;
  transform: translateY(0);
}
#main > * {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 1s;
}
#main.scroll > * {
  opacity: 1;
}
