@charset "UTF-8";
/* =====================================================================
policy
===================================================================== */
.policy {
	background: #f7f7f7;
	color: #2c2cb2;
}
.policy__lead nav {
	display: flex;
	gap: 50px;
}
@media (max-width: 991px) {
	.policy__lead nav {
		flex-direction: column;
	}
}
.policy__lead nav div a {
	position: relative;
    width: 100%;
	margin-bottom: 20px;
	padding: 20px;
    border: 1px solid #2c2cb2;
    background: #fff;
    text-decoration: none;
    color: #2c2cb2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}
.policy__lead nav div a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 17px;
	background: url(/common/img/arrow.svg) no-repeat center / contain;
	transition: 0.3s ease;
}
.policy__lead nav div a:hover {
	background: #2c2cb2;
	color: #fff;
}
.policy__lead nav div a:hover::after {
	transform: translateX(6px) translateY(-50%);
}
.policy__lead nav div a.active {
    background: #2c2cb2;
	color: #fff;
}
.policy__lead nav div a:hover::after,
.policy__lead nav div a.active::after {
	background: url(/common/img/arrow_w.svg) no-repeat center / contain;
}

.policy__detail h3{
	background: #2c2cb2;
	color: #fff;
	text-align: center;
	padding: 20px;
}
.policy__detail .policy_arrow{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}
.policy__detail .policy_arrow::before {
	content: "";
	width: 14px;
	height: 14px;
	background: url(/common/img/triangle.svg) no-repeat center / contain;
	transition: transform .3s ease;
}

section.policy__lead h2.policy-title {
	border: none!important;
	text-align: center!important;
	font-family: serif!important;
}
