@charset "utf-8";

#wrap {
	position: relative;
}


.inner {
	position: relative;
	max-width: 1600px;
	padding:0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: fixed;
	width: 100%;
	z-index: 12;
	background: #fff;
	box-sizing: border-box;
	transition:all .3s;
}
#header .top_line {
	background: #1C1D24;
}
#header .top_line .flex {
	height: 35px;
	align-items: center;
}
#header .top_line .flex span {
	display: inline-block;
    vertical-align: 2px;
	color: #fff;
	font-size: 14px;
	padding-left: 20px;
}
#header .top_line .flex a {
	color: #fff;
}
#header .top_line .flex span.tel {
	background: url("../images/ico-call.svg")no-repeat 0 50%;
	margin-right: 36px;
}
#header .top_line .flex span.mail {
	background: url("../images/ico-mail.svg")no-repeat 0 50%;
}
#header .top_line .flex span.addr {
	background: url("../images/ico-addr.svg")no-repeat 0 50%;
}
#header .top_line .flex .left {
	flex: 1;
}
#header .top_line .flex .logo a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	vertical-align: 7px;
}
#header .top_line .flex .right {
	flex: 1;
	text-align: right;
}
#header .gnb {
	background: #1C1D24;
}
#header .gnb .flex {
	height: 78px;
	align-items: center;
}
#header .gnb .left {
	flex: 1;
}
#header .gnb .lnb a {
	color: rgba(255,255,255,0.4);
	font-size: 14px;
	padding: 8px 0;
	border-bottom: 1px solid #1C1D24;
	margin: 0 16px;
	box-sizing: border-box;
}
#header .gnb .lnb a.active {
	color: rgba(255,255,255,1);
	border-bottom: 1px solid #fff;
}
#header .gnb .right {
	flex: 1;
	text-align: right;
}
#header .gnb .right a {
	display: inline-block;
	width: 125px;
	height: 35px;
	line-height: 35px;
	background: #393A43;
	color: #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	border-radius: 2px;
	text-align: center;
}
#header .gnb .right a img {
	vertical-align: middle;
	margin-right: 5px;
}

#header .menu {
	display: none;
	position: absolute;
	top: 19px;
    right: 20px;
	z-index: 12;
}
#header .menu a {
	position: relative;
    display: block;
    width: 23px;
    height: 18px;
	background: url("../images/ico-menu.svg")no-repeat 50% 50% / 100%;
}




.side-wrap {
	width: 240px;
	height: 100%;
	position: fixed; 
	right: -100%;
	z-index: 16;
	background: #1C1D24;
	overflow-y: auto;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
	transition: all .2s;
}
.side-wrap.on {
	right: 0;
}
.side-wrap .scrollFunc {
	padding: 0 20px;
	box-sizing: border-box;
}
.side-wrap .side_close {
	float: right;
	display: block;
	width: 25px;
	height: 25px;
	background: url("../images/ico-close-o.svg")no-repeat 50% 50% / 20px;
	margin-top: 10px;
}
.side-wrap .side_close + .depth {
	padding-top: 30px;
}
.side-wrap .depth {
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.side-wrap .depth:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}
.side-wrap .depth li {
	color: #fff;
	font-size: 12px;
}
.side-wrap .depth li > a {
	display: block;
	padding-left: 20px;
	font-size: 14px;
	color: #fff;
}
.side-wrap .depth li .tel {
	background: url("../images/ico-call.svg")no-repeat 0 50%;
	padding-left: 20px;
}
.side-wrap .depth li .mail {
	background: url("../images/ico-mail.svg")no-repeat 0 50%;
	padding-left: 20px;
}
.side-wrap .depth li .addr {
	background: url("../images/ico-addr.svg")no-repeat 0 50%;
	padding-left: 20px;
}
.side-wrap .depth li a {
	display: block;
    padding: 10px 0px;
    text-align: left;
    font-size: 14px;
	color: #fff;
}
.side-wrap .contact a {
    display: block;
    width: 125px;
    height: 35px;
    line-height: 35px;
    background: #393A43;
    color: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 25%);
    text-align: center;
}
.side-wrap .contact a img {
	vertical-align: middle;
	margin-right: 5px;
}
.black-bg {
	position: fixed;
	width:100%;
	height: 100%;
	left:0;
	top:0;
	z-index: 14;
	background: rgba(0,0,0,0.5);
	display: none;
}



#container {
	width: 100%;
	padding-top: 113px;
}




.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 23;
}
.modal .modal-cont {
    width: 90%;
    max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 24;
	background: #fff;
}
.modal .modal-cont .scroll {
	background: #fff;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.modal .modal-cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 20px; 
	right: 20px;
	z-index: 1;
	transform: rotate(0deg);
	transition: all .5s ease-in-out;
}
.modal .close:hover {
	transform: rotate(180deg);
}
.modal .close img {
	vertical-align: middle;
}

.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #fff;
	color: #131313;
	padding: 67px 0 113px;
}
#footer .logo {
	font-size: 24px;
	font-weight: 700;
	color: #131313;
	margin-bottom: 28px;
}
#footer .logo img {
    vertical-align: 0px;
}
#footer .util {
	position: absolute;
    right: 20px;
}
#footer .util a {
	position: relative;
	font-size: 14px;
	font-weight: 700;
	color: #131313;
}
#footer .util a:after {
	content: '|';
	display: inline-block;
	font-size: 14px;
	color: #e3e3e3;
	margin: 0 8px;
}
#footer .util a:last-child:after {
	display: none;
}
#footer .address {
	color: #4e4e4e;
	line-height: 1.7;
	margin-bottom: 28px;
}
#footer .info > div {
	padding-left: 20px;
	margin-top: 5px;
}
#footer .info .mail {
	background: url("../images/ico-mail-f.svg")no-repeat 0 50%;
}
#footer .info .tel {
	background: url("../images/ico-call-f.svg")no-repeat 0 50%;
}
#footer .info .addr {
	background: url("../images/ico-addr-f.svg")no-repeat 0 50%;
}
#footer .contact a {
	position: absolute;
    bottom: 0;
    right: 20px;
    display: block;
    width: 125px;
    height: 35px;
    line-height: 35px;
    background: #1C1D24;
    color: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 25%);
    text-align: center;
}
#footer .contact a img {
	vertical-align: middle;
	margin-right: 5px;
}




.pagenavi {
	margin-top: 60px;
}
.pagenavi ol {
	font-size: 0;
	text-align: center;
}
.pagenavi ol li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 2.5px;
}
.pagenavi ol li img {
	vertical-align: middle;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 33px;
	line-height: 33px;
	font-size: 16px;
	color: #000;
}
.pagenavi ol li a.this {
	color: #476FFF;
}




@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
	#header .top_line .flex {
		height: 55px;
	}
	#header .top_line .flex .left,
	#header .top_line .flex .right,
	#header .gnb {
		display: none;
	}
	#header .menu {
		display: block;
	}
	
	#container {
		padding-top: 55px;
	}
	
	
	#footer .util {
		position: static;
		margin-bottom: 15px;
	}
	#footer .contact a {
		position: static;
		margin-top: 15px;
	}
	
	.pagenavi {
		margin-top: 20px;
	}
	.pagenavi ol li a {
		width: 20px;
		height: 25px;
		line-height: 24px;
		font-size: 14px;
	}
}
@media screen and (max-width: 480px) {
	
}
@media screen and (max-width: 380px) {
	.pagenavi ol li a {
		width: 16px;
		height: 20px;
		line-height: 20px;
	}
	.pagenavi ol li img {
		width: 18px;
	}
	
	
	
}