@charset "utf-8";

#ctt {
	margin-bottom:20rem;
}
#ctt .header {
	font-size: 5rem;
    padding-bottom: 7rem;
    border-bottom: 2px solid #333;
	margin-top:16rem;
	margin-bottom: 7rem;
}
#ctt .fg_wrap {
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:2rem;
	margin-bottom:2rem;
}
#ctt .fg_wrap li > div {
	border-radius:3rem;
	overflow:hidden;
	cursor:pointer;
}
#ctt .fg_wrap img{
	width:100%;
	transition:0.3s;
}
#ctt .fg_wrap img:hover{
	scale:1.2;
}
#ctt .fgmore{
	width:100%;
	font-size:1.8rem;
	padding:1rem 0;
	border:1px solid #333;
}
#ctt .fgmore:hover {
	border:1px solid transparent;
	color:#fff;
	background-color:#023b8a;
}
.fg_modal {
	display:none;
	justify-content:center;
	align-items:center;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
	z-index:1;
}
.fg_modal > div {
	position:relative;
}
.fg_modal img {
	width:100%;
	max-width:1320px;
	margin-bottom:10px;
}
.fg_modal button {
	position:absolute;
	bottom:3rem;
	left:50%;
	translate:-50% 0;
	width:12rem;
	font-size:2rem;
	padding:5px 0;
	border:0;
	color:#fff;
	background-color:#023b8a;
}
.fg_modal button:hover {
	background-color:#002c69;
}
@media all and (max-width:920px){	
	#ctt h4 {
		font-size:4rem;
	}
	#ctt .fg_wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}