.p-faq {
	--side-pad: clamp(1rem, 0.643rem + 0.95vw, 1.5rem);
	--vertical-pad: clamp(1rem, 0.643rem + 0.95vw, 1.5rem);
	--gap: clamp(1rem, 0.643rem + 0.95vw, 1.5rem);
	display: block;
	padding: var(--vertical-pad) var(--side-pad); /* クリック可能範囲の確保 */
	background: var(--c-blue-light);
}
.p-faq:not(:last-of-type) {
	margin-bottom: clamp(1rem, 0.643rem + 0.95vw, 1.5rem);
}

/**********************************
* ***質問
* **********************************/
.p-faq__head {
	display: flex;
	align-items: baseline;
	gap: var(--gap);
	line-height: var(--lh-md);
	color: var(--c-blue-dark);
	font-weight: var(--fw-lg);
	cursor: pointer;
	transition: var(--ani-t--normal) ease-out;
}
/* アニメーション */
.p-faq[open] .p-faq__head {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--c-gray-dark);
}
.p-faq__headInner {
	flex-grow: 1;
}

/**********************************
* ***回答
* **********************************/
.p-faq__body {
	display: flex;
	align-items: baseline;
	gap: var(--gap);
}
/* アニメーション */
.p-faq[open] .p-faq__body {
	animation: fadein 0.5s ease;
}
@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.p-faq__bodyInner {
	flex-grow: 1;
}

/**********************************
* ***QA文字
* **********************************/
/* QA文字　共通 */
.p-faq__icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 2.5rem;
	min-width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	overflow: hidden;
	font-size: 1.25rem;
	font-weight: var(--fw-lg);
	color: var(--c-light);
}
/* Q.文字 */
.p-faq__icon.--q {
	background: var(--c-main);
}
.p-faq__icon.--q::before {
	content: "Q";
}
/* A.文字 */
.p-faq__icon.--a {
	background: var(--c-act01);
}
.p-faq__icon.--a::before {
	content: "A";
}

/**********************************
* ***開閉アイコン
* **********************************/
.p-faq__toggle {
	--this-color: var(--c-act01);
	--toggle-size: 1rem;
	position: relative;
	display: inline-block;
	width: var(--toggle-size);
	min-width: var(--toggle-size);
	aspect-ratio: 1;
}
.p-faq__toggle::before,
.p-faq__toggle::after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: var(--toggle-size);
	height: 2px;
	background: var(--this-color);
	transition: var(--ani-t--normal) ease-out;
}
.p-faq__toggle::before {
	transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__toggle::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

/* アニメーション */
.p-faq[open] .p-faq__toggle::before {
	transform: translate(-50%, -50%) rotate(180deg);
}
.p-faq[open] .p-faq__toggle::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg);
}
/* 既存のマーカー */
.p-faq__head {
	list-style: none;
}
.p-faq__head::-webkit-details-marker {
	display: none;
}
