@charset 'UTF-8';
.faq {
	margin-bottom: 50px;
}
.faq .article {
	border: 1px solid #BEA079;
	margin-bottom: 20px;
    position: relative;
	-webkit-transition: padding .4s;
	-o-transition: padding .4s;
	transition: padding .4s;
}
.faq .article::before,
.faq .article::after {
	content: '';
	position: absolute;
	z-index: 10;
    top: 50%;
    right: 14.5px;
	width: 16px;
	height: 4px;
    background: #BEA079;
transition: transform .4s;
z-index: 30;
display: block;
}
.faq .article.on::after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.faq .article::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq .article.on::before {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
.faq .article .inner{
    position: relative;
	padding-bottom: 16px;
}
.faq .article .inner::before{
    content: ' ';
    width: 45px;
    height: 100%;
    top: 0;
    right: 0;
    position:absolute;
    background: #E6DBCC;
    z-index: 1;
}
.faq .article:last-child {
	margin-bottom: 0;
}
.faq .article .title {
	position: relative;
	padding: 16px 60px 0 20px;
	font-size: 2rem;
    font-weight: bold;
	line-height: 1.4;
	cursor: pointer;
font-family: "游明朝体", "Yu Mincho", YuMincho,
    serif, 'メイリオ', 'Meiryo', sans-serif;
    transition: padding 0.4s;
}
.faq .article.on .title{
    padding-bottom: 15px;
}
.faq .article .title:hover {
	text-decoration:none;
}
.faq .article .title:hover span{
	opacity: 0.6;
}
.faq .article .text {
	overflow: hidden;
	height: 0;
	padding: 0 60px 0 20px;
    line-height: 1.8;
	-webkit-transition: height .4s;
	-o-transition: height .4s;
	transition: height .4s;
}
