@charset "utf-8";

.qa_content {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 1;
}

.qa_content:not(:first-of-type) {
	margin: 5% auto 0;
}

.qa_content_q {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	font-weight: bold;
	text-align: center;
	list-style: none;
	cursor: pointer;
}

.qa_content_q::-webkit-details-marker {
	display: none;
}

/* .qa_content_q::before {
	content: '';
	position: absolute;
	margin-left: 50%;
} */

.qa_content_q > * {
	display: block;
}

.qa_content_q > *:nth-of-type(1) {
	width: 100%;
	padding: 12px;
	background-color: #066eb7;
	font-size: 1.2rem;
	line-height: 1;
	color: #fff;
}

.qa_content_q > *:nth-of-type(2) {
	padding: 12px;
	font-size: 1rem;
	text-align: left;
	line-height: 1.5;
}

.qa_content_a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	padding: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

.more_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
}

.more_content_q {
	width: fit-content;
	margin: 0 auto;
	text-align: center;
	color: #066eb7;
}

.more_content_q::marker {
	text-align: right;
}

.more_content_a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
}

.strong_blue {
	font-size: 1.2rem;
	color: #066eb7;
}

.strong_black {
	position: relative;
	font-size: 1.2rem;
}

.strong_black::after {
	content: "";
	position: absolute;
	top: 20%;
	left: 0%;
	width: 100%;
	height: 90%;
	background-color: #b0d4ec;
	z-index: -1;
}

.supplement {
	padding: 16px;
	background-color: #e4e9ed;
}

.list li {
	position: relative;
	margin-left: 8px;
	padding-left: 16px;
}

.list li::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
	transform: translate(0, -50%);
    border: 8px solid transparent;
    border-left: 8px solid #066eb7;
}

.list_2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
}

.list_2 li {
	display: inline-block;
	background: linear-gradient(transparent 60%, #e0d7ba 60%);
}

.btn_grey,
.btn_white {
	display: block;
	width: 80%;
	margin: 0 auto;
    padding: 2.5% 5%;
	text-align: center;
	transition: .3s ease-out;
}

.btn_grey {
    border: 1px solid #475b6e;
    background-color: #475b6e;
	color: #FFF;
}

.btn_white {
    border: 1px solid #475b6e;
    background-color: #fff;
	color: #475b6e;
}

@media screen and (min-width: 768px) {
	.qa_content_q {
		flex-direction: row;
		text-align: center;
		font-size: 0.8rem;
	}

	.qa_content_q > *:nth-of-type(1) {
		flex: 1;
		aspect-ratio: 1 / 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.qa_content_q > *:nth-of-type(2) {
		flex: 9;
		padding: 0 16px;
	}

	.qa_content_a {
		padding: 16px 16px 16px 5%;
	}

	.qa_content_a img {
		display: block;
		width: 60%;
		margin: 0 auto;
	}

	.btn_grey,
	.btn_white {
		width: 50%;
		padding: 2.5% 5%;
	}
}

@media screen and (min-width: 1440px) {
	.qa_content_wrap {
		padding: 5% 15%;
	}

	.qa_content_q > *:nth-of-type(1) {
		font-size: 2.4rem;
	}

	.qa_content_q > *:nth-of-type(2) {
		padding: 0 36px;
		font-size: 1.2rem;
	}

	.qa_content_a {
		gap: 36px;
		padding: 36px 36px 36px 10%;
		font-size: 1.2rem;
	}

	.more_content {
		gap: 36px;
	}

	.more_content_a {
		gap: 36px;
	}

	.strong_blue {
		font-size: 1.4rem;
	}

	.strong_black {
		font-size: 1.6rem;
	}

	.strong_black::after {
		top: 25%;
	}

	.btn_grey,
	.btn_white {
		font-size: 1.2rem;
	}
}

/* アコーディオンがオープン時 */

/* .qa_content[open] .qa_content_q::before {
	content: '';
} */

