@charset "utf-8";


#wrap {
	max-width: 1024px;
	margin: 0 auto;
}

.inner {
	position: relative;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	padding: 26px 20px;
	background: var(--key-color);
	gap: 10px;
	box-sizing: border-box;
}
#header .logo {
	font-size: 2.4rem;
	font-weight: 400;
	font-family: 'PartialSansKR';
	text-transform: uppercase;
}
#header .menu a {
	display: block;
	width: 30px;
	height: 25px;
	background: url("../images/ic_menu.svg")no-repeat 50% 50%;
}
#top_slide {
	width: 100%;
	overflow: hidden;
	padding: 20px;
	background: var(--black);
	color: var(--white);
	box-sizing: border-box;
}
#top_slide .slide {
	position: relative;
	width: max-content;
	animation: text_ani 15s linear infinite;
	gap: 10px;
}
#top_slide .slide p {
	font-size: 1.4rem;
	letter-spacing: -0.28px;
}
@keyframes text_ani {
	0% {
		transform: translateX(0%)
	}
	100% {
		transform: translateX(-50%);
	}
}

#container {
	padding-bottom: 110px;
	box-sizing: border-box;
}

#footer_fix {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1024px;
	box-shadow: 0px -4px 5px 0px rgba(186, 192, 198, 0.15);
	background: var(--key-color);
	z-index: 90;
	padding: 10px 0 20px;
	box-sizing: border-box;
}
#footer_fix ul li {
	flex: 1;
	text-align: center;
}
#footer_fix ul li a {
	position: relative;
	display: block;
	width: 100%;
	font-size: 1.6rem;
	letter-spacing: -0.32px;
	padding-top: 40px;
}
#footer_fix ul li.active a {
	font-weight: 700;
}
#footer_fix ul li.ft01 a {
	background: url("../images/ft01.svg")no-repeat 50% 8px;
}
#footer_fix ul li.ft01.active a {
	background: url("../images/ft01_on.svg")no-repeat 50% 8px;
}
#footer_fix ul li.ft02 a {
	background: url("../images/ft02.svg")no-repeat 50% 8px;
}
#footer_fix ul li.ft02.active a {
	background: url("../images/ft02_on.svg")no-repeat 50% 8px;
}
#footer_fix ul li.ft03 a {
	background: url("../images/ft03.svg")no-repeat 50% 8px;
}
#footer_fix ul li.ft03.active a {
	background: url("../images/ft03_on.svg")no-repeat 50% 8px;
}
#footer_fix ul li.ft04 a {
	background: url("../images/ft04.svg")no-repeat 50% 12px;
}
#footer_fix ul li.ft04.active a {
	background: url("../images/ft04_on.svg")no-repeat 50% 12px;
}
#footer_fix ul li.ft05 a {
	background: url("../images/ft05.svg")no-repeat 50% 8px;
}
#footer_fix ul li.ft05.active a {
	background: url("../images/ft05_on.svg")no-repeat 50% 8px;
}



.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: 100;
}
.modal .modal_cont {
    width: 90%;
    max-width: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 101;
	padding: 20px;
	background: #fff;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 128px);
    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;
	padding: 16px;
	border: 1px solid #eee;
	font-size: 1.4rem;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	background: var(--key-color);
	color: var(--white);
	padding: 10px 20px;
	gap: 10px;
	margin-bottom: 10px;
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.5px;
}
.modal .bar .close {
	width: 18px;
	height: 18px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50% / 12px;
}



.bottom_modal {
	position: fixed;
	opacity: 0;
    z-index: -1;
}
.bottom_modal .black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 37;
}
.bottom_modal .modal_cont {
	position: fixed;
	bottom: -100%;
	width: 100%;
	max-width: 1024px;
	z-index: 9999;
	max-height: 90vh;
	transition: bottom .3s;
}
.bottom_modal.open {
	opacity: 1;
	z-index: 99;
}
.bottom_modal.open .modal_cont {
	bottom: 0;
}
.bottom_modal.open .black_bg {
	display: block;
}
.bottom_modal .modal_cont .scroll {
	overflow-y: auto;
	padding: 40px 16px 20px;
	background: var(--white);
	border-radius: 10px 10px 0px 0px;
}
.bottom_modal .modal_cont .close {
	position: absolute;
	top: 14px;
	right: 16px;
	display: block;
	width: 18px;
	height: 18px;
	background: url("../images/ico-close.svg")no-repeat 50% 50%;
}
.bottom_modal .modal_cont h3 {
	font-size: 1.6rem;
	font-weight: 600;
}
.bottom_modal .modal_cont .txt {
	color: #808080;
	font-size: 1.4rem;
	line-height: 1.4;
}
.bottom_modal .modal_cont .btn_area {
	margin-top: 20px;
	gap: 7px;
}
.bottom_modal .modal_cont .btn_area > * {
	flex: 1;
	height: 42px;
	line-height: 42px;
	text-align: center;
	border-radius: 4px;
	font-size: 1.6rem;
	font-weight: 700;
}


.not_scroll {
	overflow: hidden;
}



.pagenavi {
	margin-top: 30px;
}
.pagenavi ol {
	justify-content: center;
	gap: 5px;
}
.pagenavi ol li img {
	vertical-align: -3px;
}
.pagenavi ol li a {
	display: block;
	width: 40px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	color: #9E9E9E;
	font-size: 1.4rem;
}
.pagenavi ol li.this a {
	border-radius: 5px;
	color: var(--white);
	background: var(--key-color);
}


#loading_img {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
    background-color : rgba(16, 16, 16, 0.7);
}
#loading_img span {
	position: absolute;
    top: 50%;
    left: 50%;
	display: block;
	height: 60px;
	width: 60px;
	border: 5px solid transparent;
    border-radius: 50%;
    background-image: linear-gradient(rgb(90, 90, 90), rgb(90, 90, 90)), conic-gradient(from 180deg at 50% 50%, var(--key-color) 0deg, rgba(255, 255, 255, 0) 360deg);
    background-origin: border-box;
    background-clip: content-box, border-box;
	box-sizing: border-box;
	animation: spin 800ms infinite linear;
}

@keyframes spin {
	from {
		transform: translate(-50%,-50%) rotate(0deg);
	}
	to {
		transform: translate(-50%,-50%) rotate(359deg);
	}
}



@media screen and (min-width: 1025px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}