/* ===== Auth / qualification page ===== */
.auth {
	--auth-navy: #32536f;
	--auth-green: #9bba1c;
	--auth-text: #555;
}

.auth .auth_lead {
	max-width: 900px;
	margin: 0 auto 60px;
	padding: 0 20px;
	font-size: 22px;
	line-height: 1.8;
	color: var(--auth-navy);
	text-align: center;
}

.auth .auth_list {
	list-style: none;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.auth .auth_item {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	padding: 20px 0 0;
	margin-bottom: calc(1.9em * 3); /* 約3行分 */
}

.auth .auth_item:last-child {
	margin-bottom: 0;
}

.auth .auth_logo {
	flex: 0 0 140px;
	text-align: center;
}

.auth .auth_logo img {
	display: block;
	width: 120px;
	height: auto;
	margin: 0 auto;
}

.auth .auth_body {
	flex: 1;
	min-width: 0;
}

.auth .auth_body h4 {
	width: auto;
	margin: 0 0 16px;
	padding: 0 0 0 34px;
	background: url(assets/img/auth_arrow.gif) no-repeat left center;
	color: var(--auth-green);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
}

.auth .auth_body > p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.9;
	color: var(--auth-text);
}

.auth .auth_body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.auth .auth_body ul li {
	position: relative;
	padding-left: 1.2em;
	font-size: 14px;
	line-height: 1.9;
	color: var(--auth-text);
}

.auth .auth_body ul li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

.auth .auth_body ul li a {
	color: #008de7;
	text-decoration: underline;
}

.auth .auth_body ul li a:hover {
	color: #006aad;
}

@media screen and (max-width: 768px) {
	.auth .auth_lead {
		margin-bottom: 40px;
		font-size: 18px;
		line-height: 1.7;
		text-align: left;
	}

	.auth .auth_item {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.auth .auth_logo {
		flex-basis: auto;
	}

	.auth .auth_body h4 {
		font-size: 20px;
	}
}
