@charset "UTF-8";



.faq-ttl {
	background: #fff;
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 1rem 4rem 1rem 1rem;
	border: solid 0.15rem #ddd;
	align-items: center;
	font-size: 1.6rem;
	transition: all .3s;
}
.faq-ttl:hover {
	opacity: 0.4; 
	cursor: pointer;
}
.faq-ttl i {
	width: 4rem;
	height: 4rem;
	position: absolute;
	right: 0.5rem;
	top: calc(50% - 2rem);
}
.faq-ttl i::before,
.faq-ttl i::after {
	content: "";
	background: var(--brown-1);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all .3s;
}
.faq-ttl i::before {
	width: 2rem;
	height: 0.2rem;
}
.faq-ttl i::after {
	width: 0.2rem;
	height: 2rem;
}
.faq-ttl.open i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.faq-content {
	display: flex;
	justify-content: space-between;
	padding: 2rem 2rem 2rem 1rem;
	background: #fafafa;
	border-left: solid 0.15rem #ddd;
	border-right: solid 0.15rem #ddd;
	border-bottom: solid 0.15rem #ddd;
}
.faq-ttl span:nth-child(1),
.faq-content span:nth-child(1) {
	width: 6.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-cinzel);
	color: var(--brown-1);
	font-size: 2.4rem;
}
.faq-content span:nth-child(1) {
	align-items: flex-start;
}
.faq-ttl span:nth-child(2),
.faq-content span:nth-child(2) {
	width: calc(100% - 6.5rem);
}
.faq-content span:nth-child(2) {
	padding-top: 0.7rem;
}

@media screen and (max-width: 768px) {
	.faq-ttl {
		line-height: 1.5;
	}
	.faq-ttl span:nth-child(1),
	.faq-content span:nth-child(1) {
		width: 4rem;
		font-size: 1.8rem;
	}
	.faq-ttl span:nth-child(2),
	.faq-content span:nth-child(2) {
		width: calc(100% - 5rem);
	}
	.faq-content span:nth-child(2) {
		padding-top: 0.15rem;
	}
}