
/* -----------------------------------------------
= faq
----------------------------------------------- */
.faq {
	scroll-margin-top: 48px;
	margin-block: 60px;
}
.faq .item {
	margin-inline: 24px;
}
.faq h2 {
	position: relative;
	margin-bottom: 20px;
	border-top: 0.5px solid #808080;
	border-bottom: 0.5px solid #808080;
	font-family: var(--zen);
	font-size: calc(2rem / 1.6);
	letter-spacing: .02em;
}
.faq h2 span {
	display: block;
	position: relative;
	padding: 6px 10px 6px 38px;
}
.faq h2 span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 12px;
	width: 19px;
	height: 100%;
	background: var(--red);
}
.faq .item {
	border-top: 0.5px solid #f6b9bd;
}
.faq .item:last-child {
	border-bottom: 0.5px solid #f6b9bd;
}
.faq .item h3 {
	position: relative;
}
.faq .item h3::after {
	content: "";
	position: absolute;
	top: calc(50% - 7.5px);
	right: 15px;
	width: 15px;
	height: 15px;
	background: #969696;
}
.faq .item button {
	display: flex;
	align-items: center;
	gap: 0 14px;
	position: relative;
	width: 100%;
	padding: 10px 45px 10px 15px;
	background: #f2f2ee;
}
.faq .item button::before,
.faq .item button::after {
	content: "";
	position: absolute;
	top: calc(50% - 0.75px);
	right: 18px;
	z-index: 1;
	width: 9px;
	height: 1.5px;
	background: #fff;
}
.faq .item button::after {
	transform: rotate(90deg);
}
.faq .item button[aria-expanded="true"]::after {
	display: none;
}
.faq .item button span:first-child {
	display: block;
	width: calc(2rem / 1.6);
	height: calc(2rem / 1.6);
	color: var(--red);
	background: #fff;
	font-family: var(--zen);
	font-size: calc(1.2rem / 1.6);
	line-height: calc(2rem / 1.6);
	text-align: center;
}
.faq .item.two button span:first-child {
	letter-spacing: -.08em;
}
.faq .item button span:last-child {
	flex: 1;
	font-size: calc(1.4rem / 1.6);
	line-height: calc(20 / 14);
	letter-spacing: .04em;
}
.faq .item .answer {
	display: flex;
	gap: 0 14px;
	overflow: hidden;
	height: 0;
	transition: height 0.3s ease;
}
.faq .item .answer .a {
	display: block;
	width: calc(2rem / 1.6);
	height: calc(2rem / 1.6);
	margin: 15px 0 15px 15px;
	color: var(--red);
	background: #f2f2ee;
	font-family: var(--zen);
	font-size: calc(1.2rem / 1.6);
	line-height: calc(2rem / 1.6);
	text-align: center;
}
.faq .item.two .answer .a {
	letter-spacing: -.08em;
}
.faq .item .answer .text {
	flex: 1;
	padding: 15px 15px 0 0;
	font-size: calc(1.3rem / 1.6);
	line-height: calc(20 / 13);
}
.faq .item .answer .text p {
	margin-bottom: 15px;
}
.faq .item .answer .text a {
	border-bottom: 1px solid var(--red);
}
@media print, screen and (min-width: 768px) {/* PC */
.faq {
	position: relative;
	margin-block: 110px 134px;
	scroll-margin-top: 64px;
}
.faq::after {
	content: "";
	position: absolute;
	top: -40px;
	left: calc(50% - 605px);
	width: 1px;
	height: calc(100% + 40px);
	background: #808080;
}
.faq h2 {
	margin-bottom: 53px;
	font-size: calc(2.8rem / 1.6);
	letter-spacing: .08em;
}
.faq h2 span {
	max-width: 1124px;
	margin-inline: auto;
	padding: 7px 30px 7px 54px;
}
.faq h2 span::before {
	left: 0;
	width: 44px;
}
.faq .item {
	max-width: 1100px;
	margin-inline: auto;
}
.faq .item h3::after {
	top: calc(50% - 10px);
	right: 25px;
	width: 20px;
	height: 20px;
}
.faq .item button {
	gap: 0 34px;
	padding: 25px 70px 25px 25px;
}
.faq .item button::before,
.faq .item button::after {
	top: calc(50% - 1 px);
	right: 29px;
	width: 12px;
	height: 2px;
}
.faq .item button span:first-child {
	width: calc(4rem / 1.6);
	height: calc(4rem / 1.6);
	font-size: calc(2.4rem / 1.6);
	line-height: calc(4rem / 1.6);
}
.faq .item button span:last-child {
	font-size: calc(2rem / 1.6);
	line-height: calc(40 / 20);
}
.faq .item .answer {
	gap: 0 34px;
}
.faq .item .answer .a {
	width: calc(4rem / 1.6);
	height: calc(4rem / 1.6);
	margin: 25px 0 25px 25px;
	font-size: calc(2.4rem / 1.6);
	line-height: calc(4rem / 1.6);
}
.faq .item .answer .text {
	padding: 32px 25px 0 0;
	font-size: calc(1.6rem / 1.6);
	line-height: calc(28 / 16);
}
.faq .item .answer .text p {
	margin-bottom: 25px;
}
}/* @media */
@media (hover:hover) {
.faq .item button {
	transition: color .3s;
}
.faq .item button:hover {
	color: var(--red);
}
.faq .item .answer .text a {
	transition: color .3s;
}
.faq .item .answer .text a:hover {
	color: var(--red);
}
}/* @media */

