@charset "utf-8";


#wrap {
	max-width: 1024px;
	margin: 0 auto;
}

.inner {
	position: relative;
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	margin: 0 auto;
}


#header {
	background: var(--key-color);
	color: var(--white);
	padding: 30px;
	box-sizing: border-box;
}
#header h1 {
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: 0.9px;
	font-family: 'SokchoBadaDotum';
}

#container {
	min-height: calc(100vh - 806px);
}



#footer {
	position: relative;
	background: var(--grayscale-50);
	padding: 0 30px;
	margin-top: 60px;
	box-sizing: border-box;
}
#footer .cont {
	gap: 60px;
	padding: 80px 0;
}
#footer .cont h1 {
	font-size: 4.8rem;
	font-weight: 900;
	font-family: 'SokchoBadaDotum';
	line-height: 1.2;
}
#footer .cont .info {
	gap: 10px;
	font-size: 2rem;
}
#footer .cont .info strong {
	font-size: 3.6rem;
}
#footer .copy {
	gap: 10px;
	border-top: 0.5px solid var(--black);
	padding: 20px 0;
	font-size: 1.6rem;
	line-height: 1.5;
	box-sizing: border-box;
}



.modal {
	display: none;
	 font-size: 16px;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 999;
}
.modal .modal_cont {
    width: 95%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 1000;
	background: var(--white);
	padding: 30px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 132px);
	background: var(--white);
    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;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	justify-content: space-between;
	padding: 16px 30px;
	gap: 10px;
	background: var(--key-color);
	color: var(--white);
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 2.4rem;
	letter-spacing: 0.6px;
}
.modal .bar .close {
	width: 20px;
	height: 20px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50% / 100%;
}
.modal .btn_area {
	gap: 10px;
}
.modal .btn_area button {
	flex: 1;
	height: 44px;
	border-radius: 10px;
	font-size: 16px;
}
.modal .form {
	border: 1px solid #D3D3D3;
	padding: 20px 30px;
	margin-top: 20px;
	box-sizing: border-box;
}
.modal .form h4 {
	font-size: 2.4rem;
	letter-spacing: 0.5px;
	margin-bottom: 14px;
}
.modal .form .cont {
	font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.4px;
	white-space: pre-line;
}



.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;
}


.title_area {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: 72px;
	background: var(--key-color);
	color: var(--point);
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
.title_area img {
	height: 20px;
}
.title_area .prev {
	position: absolute;
	top: 30px;
    left: 15px;
	display: block;
	width: 17px;
	height: 15px;
	background: url("../images/ic_arrow.svg")no-repeat 50% 50% / 100%;
	transform: rotate(180deg);
}



.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);
	}
}


.tit {
	background: var(--point);
	color: var(--key-color);
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: -0.4px;
	padding: 16px 5px;
	border-radius: 5px;
	box-sizing: border-box;
}
.tit span {
	font-weight: 400;
}



@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) {
}