#wrap_wrap {
	display: flex;
	gap: 50px;
}

#info_wrap {
	width: 50%;
	order: 2;
}

#required_link {
	text-align: center;
	display: none;
	margin-top: 10px;
}

#info_wrap ul {
	padding: 8px 15px 15px;
	margin: 17px 0;
	border: 1px solid #b1ced4;
	background-color: #f3f7f8;
}

#cl_box_wrap {
	flex: 1;
}

#cl_box_wrap h2 {
	text-align: center;
	background-color: #b1ced4;
	overflow: hidden;
}

#cl_box_wrap > div {
	display: flex;
	flex-wrap: wrap;
}

.cl_box {
	width: 33.3333%;
	border-bottom: 1px solid #bfbfbf;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 22px;
	box-sizing: border-box;
}

.cl_box a {
	width: 100%;
	max-width: 180px;
	line-height: 0;
	text-align: center;
}

.cl_box svg {
	width: 100%;
	height: auto;
	max-height: 53px;
}

/* ===== Media Queries ===== */

@media only screen and (max-width: 1140px) {
	.cl_box {
		width: 50%;
	}
}

@media only screen and (max-width: 980px) {
	.cl_box {
		width: 100%;
	}
}

@media only screen and (min-width: 701px) {
	#required_info {
		display: block !important;
	}
}

@media only screen and (max-width: 701px) {
	#info_wrap {
		width: 100%;
	}
}

@media only screen and (max-width: 700px) {
	#wrap_wrap {
		display: block;
		direction: ltr;
	}
	
	#info_wrap {
		display: block;
		padding-left: 0;
	}
	
	#required_link {
		display: block;
	}
	
	#required_info {
		display: none;
	}
	
	#required + div {
		display: none;
	}
	
	#cl_box_wrap {
		width: auto;
		display: block;
		margin-top: 50px;
	}
	
	.cl_box {
		width: 50%;
		float: left;
	}
}