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

.section01{
	padding: 80px 0 140px;
}
.section01 .inner{
	max-width: 1000px;
}
.section01 .default_title2{
	padding-top: 24px;
	font-size: 26px;
	padding-bottom: 60px;
}
.list{
	border-top: 1px solid #d4c9b0;
}
.faq_item{
	border-bottom: 1px solid #d4c9b0;
}
.faq_item .q{
	padding: 28px 0;
	gap: 24px;
	cursor: pointer;
}
.faq_item .q .mark{
	width: 40px;
	flex-shrink: 0;
	font-family: "EB Garamond", serif;
	font-size: 22px;
	line-height: 1;
	color: #c83c1e;
	text-align: center
}
.faq_item .q .ttl{
	flex: 1;
	min-width: 0;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0.06em;
}
.faq_item .ico{
	position: relative;
	width: 28px;
	height: 28px;
	border: 1px solid #d4c9b0;
	flex-shrink: 0;
	box-sizing: border-box;
}
.faq_item .ico::before,
.faq_item .ico::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: #8a7e6a;
}
.faq_item .ico::before{
	width: 10px;
	height: 1px;
	margin-left: -5px;
	margin-top: -0.5px;
}
.faq_item .ico::after{
	width: 1px;
	height: 10px;
	margin-left: -0.5px;
	margin-top: -5px;
	transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq_item.on .ico::after{
	opacity: 0;
	transform: rotate(90deg);
}
.faq_item .a{
	display: flex;
	align-items: flex-start;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	gap: 24px;
	opacity: 0;
	transition: max-height 0.45s ease, padding 0.45s ease, opacity 0.35s ease;
}

.faq_item.on .a,body.gjs-dashed .faq_item .a{
	max-height: 800px;
	padding: 0 0 28px;
	opacity: 1;
}
.faq_item .a .mark{
	width: 40px;
	text-align: center;
	flex-shrink: 0;
	font-family: "EB Garamond", serif;
	font-size: 22px;
	line-height: 1;
	color: #909090;
}
.faq_item .a .txt{
	flex: 1;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0.06em;
}
.cta{
	margin-top: 80px;
	padding: 50px 20px;
	background-color: #f5ede0;
	border: 1px solid #d4c9b0;
	text-align: center;
}
.cta p{
	font-size: 17px;
	letter-spacing: 0.049em;
	color: #555;
}
.cta .more{
	justify-content: center;
}

@media screen and (max-width: 576px){
	.faq_item .q .mark{
		width: 28px;
	}
	.faq_item .a .mark{
		width: 36px;
	}
}
