@charset "UTF-8";

.qa_block {
	max-width: 980px;
	margin: 40px auto 0;
}

/* btn
----------------------------------------*/
.border_btn01 {
	display: inline-block;
	max-width: 270px; /* ボタン幅 */
	color: #b89c50; /* 文字色 */
	border: 1px solid #e4e4e4; /* 線幅・種類・色 */
	border-radius: 10px;        /* 角丸指定 */
	background: #fff; /* 背景色 */
	margin: .2em;
	padding: 1em 1.2em;
	font-weight: bold; /* 文字の太さ */
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
}

/* マウスオーバーした際のデザイン */
.border_btn01:hover {
	color: #fff; /* 文字色 */
	background: #b89c50; /* 背景色 */
}


/* accordion css
----------------------------------------*/
.accordion-qa {
	max-width: 100%;
	margin-bottom: 7px;
	border: 2px solid #c8b99c;
	border-radius: 5px;
}

.accordion-qa summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	color: #887241;
	font-weight: 600;
	cursor: pointer;
}

.accordion-qa summary::-webkit-details-marker {
	display: none;
}

.accordion-qa summary::before,
.accordion-qa summary::after {
	width: 3px;
	height: .9em;
	border-radius: 5px;
	background-color: #887241b3;
	content: '';
}

.accordion-qa summary::before {
	position: absolute;
	right: 2em;
	rotate: 90deg;
}

.accordion-qa summary::after {
	transition: rotate .3s;
}

.accordion-qa[open] summary::after {
	rotate: 90deg;
}

.accordion-qa p {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 1em 2em 1.5em;
	color: #333333;
	transition: transform .5s, opacity .5s;
	border-top: 1px solid #e4e4e4;
	background-color: #ffffff;
}

.accordion-qa[open] p {
	transform: none;
	opacity: 1;
}


/* faq_block
----------------------------------------*/
.faq_block {
	background: #fffcf7;
	margin-top: 44px;
	padding: 32px 0 0;
}
.faq_inner {
	width: 1040px;
	margin: 0 auto 28px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.faq_link {
	margin-top: 2px;
}
.faq_link a {
	display: inline-block;
	background: url(../img/faq/icon_map.svg) no-repeat left 5px / 14.1px auto;
	padding: 4px 0 3px 23px;
	letter-spacing: .1em;
	text-decoration: underline;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.faq_link a:hover {
	opacity: .6;
}
.faq_detail {
	width: calc(100% - 509px);
	margin-top: -4px;
}
.faq_ttl {
	font-size: 1.8rem;
	letter-spacing: .05em;
	margin-bottom: 11px;
}
.faq_detail dl {
	overflow: hidden;
	padding-bottom: 10px;
	margin-bottom: 16px;
	border-bottom: 1px dotted #000;
}
.faq_detail dl:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}
.faq_detail dt {
	clear: both;
	float: left;
	margin-right: 17px;
	background: #b89c50;
	color: #fff;
	font-weight: bold;
	min-width: 65px;
	padding: 2px 13px 2px 15px;
	letter-spacing: .1em;
	text-align: center;
	margin-bottom: 10px;
}
.faq_detail dd {
	overflow: hidden;
	padding: 2px 0 0;
	margin-bottom: 10px;
	letter-spacing: .05em;
	line-height: 1.65;
}
.faq_detail dd span,
.faq_detail dd a {
	font-weight: bold;
	font-size: 1.7rem;
	display: inline-block;
	margin: -4px 0;
	letter-spacing: .07em;
	pointer-events: none;
}
.faq_note {
	font-size: 1.2rem;
	letter-spacing: .05em;
}
.faq_detail .faq_note {
	margin-top: -13px;
}
.faq_info {
	background: #fffcf7;
	border-top: 6px solid #fff;
}
.faq_info dl {
	width: 1040px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding: 25px 0 26px;
}
.faq_info dt {
	width: 261px;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: .06em;
	font-size: 1.6rem;
}
.faq_info dd {
	width: calc(100% - 261px);
	line-height: 1.75;
	letter-spacing: .05em;
	margin-top: 1px;
}
.faq_info dd ul li {
	margin: 0 0 0 1em;
	text-indent: -1em;
}
.faq_info dd ul li::before {
	content: "・";
}
.faq_info dd p + p:not(.faq_note) {
	margin-top: 25px;
}
@media only screen and (max-width: 768px) {
	.faq_block {
		margin-top: 15px;
	}
	.faq_inner {
		width: auto;
		margin: 0 5% 28px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.faq_link a:hover {
		opacity: 1;
	}
	.faq_detail {
		width: 100%;
		margin-top: 0;
	}
	.faq_ttl {
		font-size: 1.6rem;
	}
	.faq_detail dt {
		font-size: 1.3rem;
		margin-right: 10px;
		min-width: 60px;
		padding: 2px 10px 2px 12px;
	}
	.faq_detail dd span,
	.faq_detail dd a {
		font-size: 1.6rem;
		margin: -3px 0;
		pointer-events: auto;
	}
	.faq_info {
		padding: 0 5%;
	}
	.faq_info dl {
		width: auto;
		display: block;
	}
	.faq_info dt {
		width: 100%;
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
	.faq_info dd {
		width: 100%;
		letter-spacing: .04em;
	}
}
