#main_col {
	max-width: 1270px;
	width: 100%;
}

#left_col {
	max-width: 900px;
	width: auto;
}

@media screen and (max-width: 1270px) {
	#left_col {
		width: 70%;
		width: -webkit-calc(100% - 330px);
		width: calc(100% - 330px);
		margin: 0 0 40px 0;
	}
	#side_col {
		width: 30%;
		width: -webkit-calc(300px);
		width: 300px;
		margin: 0 0 40px 0;
	}
}
@media screen and (max-width: 950px) {
	#left_col {
		width: auto;
		float: none;
	}
	#side_col {
		width: auto;
		float: none;
	}
	#main_contents {
		width: auto;
		margin: 0 auto;
	}
}
nav.menus ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 20px;
}
nav.menus ul li {
	width: 32%;
	display: flex;
}
@media screen and (max-width: 1100px) {
	nav.menus ul li {
		width: 49%;
	}
}
nav.menus ul li a {
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border: 2px solid #1E3865;
	position: relative;
	text-align: center;
	align-items: center;
	transition: 0.3s;
}
nav.menus ul li a:hover {
	text-decoration: none;
	opacity: 0.6;
}
nav.menus ul li a:before {
	content: "";
	width: 28px;
	height: 28px;
	background-color: #1E3865;
	position: absolute;
	right: 0;
	bottom: 0;
	clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
	nav.menus ul li a:before {
		width: 20px;
		height: 20px;
	}
}
nav.menus ul li a span {
	width: 80%;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #fff;
	font-size: clamp(12px, 10.8px + 0.375vw, 18px);
	background-color: var(--vg-color);
	border-radius: 40px;
	margin-block: clamp(15px, 13px + 0.625vw, 25px);
}
@media screen and (max-width: 767px) {
	nav.menus ul li a span {
		height: 25px;
		width: 90%;
	}
}
nav.menus ul li a span.c1 {
	--vg-color:#2964AE;
}
nav.menus ul li a span.c2 {
	--vg-color:#1F9FCD;
}
nav.menus ul li a span.c3 {
	--vg-color:#008C8D;
}
nav.menus ul li a span.c4 {
	--vg-color:#AC3D98;
}
nav.menus ul li a span:before {
	content: "";
	width: 12px;
	height: 6px;
	background-color: var(--vg-color);
	position: absolute;
	left: 50%;
	bottom: -5px;
	margin-left: -6px;
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
nav.menus ul li a em {
	font-style: normal;
	font-size: clamp(14px, 12px + 0.625vw, 24px);
	font-weight: bold;
	color: #1E3865;
	line-height: 1.3;
	font-feature-settings: "palt";
}
nav.menus ul li a figure {
	margin: auto;
}
@media screen and (max-width: 767px) {
	nav.menus ul li a figure {
		transform: scale(0.8);
	}
}/*# sourceMappingURL=menu.css.map */