/* =========================
   Q&A FV
========================= */
.qanda-fv{
	position:relative;
	width:100vw;
	margin-left:calc(50% - 50vw);
	margin-right:calc(50% - 50vw);
	background:var(--green2);
	padding:56px 20px;
	overflow:hidden;
}

.qanda-fv__inner{
	position:relative;
	max-width:1100px;
	margin:0 auto;
	z-index:1;
}

.qanda-fv__watermark{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	pointer-events:none;
	z-index:0;
}

.qanda-fv__watermark img{
	display:block;
	height:auto;
	width:auto;
	max-width:none;
	max-height:220px;
	opacity:.06;
	filter:brightness(0) invert(1);
}

.qanda-fv__copy{
	position:relative;
	padding-left:26px;
	z-index:1;
}

.qanda-fv__copy::before{
	content:"";
	position:absolute;
	top:50%;
	left:0;
	width:2px;
	height:60px;
	background:rgba(255,255,255,.7);
	transform:translateY(-50%);
	border-radius:999px;
}

.qanda-fv__title{
	margin:0;
	font-size:clamp(26px, 3.2vw, 38px);
	font-weight:800;
	line-height:1.3;
	letter-spacing:.04em;
	color:#fff;
}

.qanda-fv__sub{
	margin:8px 0 0;
	font-size:11px;
	font-weight:700;
	letter-spacing:.22em;
	text-transform:uppercase;
	color:rgba(255,255,255,.75);
}

@media screen and (max-width: 900px){
	.qanda-fv{
		padding:42px 16px;
	}

	.qanda-fv__watermark img{
		width:min(46vw, 220px);
		opacity:.05;
	}

	.qanda-fv__copy{
		padding-left:20px;
	}

	.qanda-fv__copy::before{
		height:50px;
	}

	.qanda-fv__title{
		font-size:clamp(22px, 7vw, 30px);
	}

	.qanda-fv__sub{
		font-size:10px;
		letter-spacing:.18em;
	}
}


/* =========================
   Q&A 本文
========================= */
.qanda-content{
	padding:72px 20px 96px;
}

.qanda-content__inner{
	max-width:860px;
	margin:0 auto;
}

.qanda-head{
	text-align:center;
	margin-bottom:36px;
}

.qanda-head__lead{
	font-size:15px;
	line-height:2;
	color:#5f675f;
}


/* =========================
   Q&A リスト
========================= */
.qanda-list{
	display:flex;
	flex-direction:column;
	gap:18px;
}

.qanda-item{
	padding:22px 22px 20px;
	background:#fff;
	border:1px solid #e3e7de;
	border-radius:20px;
	box-shadow:0 6px 16px rgba(0,0,0,.03);
}

/* 質問 */
.qanda-item__q{
	display:flex;
	align-items:flex-start;
	gap:12px;
	margin-bottom:12px;
}

.qanda-item__title{
	margin:0;
	font-size:clamp(18px, 2vw, 22px);
	font-weight:800;
	line-height:1.5;
	color:#223127;
}

/* 回答 */
.qanda-item__a{
	display:flex;
	align-items:flex-start;
	gap:12px;
}

.qanda-item__a p{
	margin:0;
	font-size:14px;
	line-height:2;
	color:#5d645d;
}

/* Q / A マーク */
.qanda-item__mark{
	flex:0 0 32px;
	width:32px;
	height:32px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:999px;
	font-size:13px;
	font-weight:800;
	background:#eef3eb;
	color:#46624d;
	border:1px solid #dbe5d9;
}

.qanda-item__mark--answer{
	background:#35513e;
	color:#fff;
	border:none;
}


/* =========================
   SP
========================= */
@media screen and (max-width: 900px){

	.qanda-content{
		padding:56px 16px 74px;
	}

	.qanda-head{
		margin-bottom:26px;
	}

	.qanda-head__lead{
		font-size:14px;
		line-height:1.9;
	}

	.qanda-item{
		padding:18px 16px 16px;
		border-radius:16px;
	}

	.qanda-item__title{
		font-size:17px;
	}

	.qanda-item__a p{
		font-size:13px;
		line-height:1.85;
	}

	.qanda-item__mark{
		width:28px;
		height:28px;
		font-size:12px;
	}

}