@charset "UTF-8";

/************ 下層ヘッダー ************/

.head {
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
}
.head .bg-image {
	background: url('../images/qanda/head.webp') no-repeat;
	background-size: cover;
	background-position: 0 36%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: brightness(50%);
	z-index: 0;
}
.head .triangle-bottom {
	position: relative;
}
.head .triangle-bottom::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 6vw solid #fff;
	border-left: 100vw solid transparent;
}
.head .head-title {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	height: 300px;
}
.head .head-title h1 {
	background-color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 0.5rem 2.5rem;
	margin: 0 auto;
}



/************ 全回答共通 ************/

.qanda-register .con-minititle::before,
.qanda-participation .con-minititle::before,
.qanda-payment .con-minititle::before,
.qanda-goods .con-minititle::before {
	content: "Q: ";
}
.qanda-register .con-text::before,
.qanda-participation .con-text::before,
.qanda-payment .con-text::before,
.qanda-goods .con-text::before {
	content: "A: ";
	font-weight: 600;
}
