@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1570px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#box_left {
	position: fixed;
	top: 20px;
	left: 0;
	width: 580px;
	height: calc(100vh - 20px);
	padding: 0 20px 20px 40px;
	box-sizing: border-box;
}
#box_left h1 {
	margin-bottom: 16px;
}
#box_left h1 a {
	display: block;
	padding: 10px 0;
	font-size: 24px;
}
#box_left .gnb {
	position: relative;
	width: 250px;
	height: 100%;
	background: var(--white);
	padding: 30px;
	border-radius: 20px;
	overflow-y: auto;
	box-sizing: border-box;
}
#box_left .gnb ul {
	gap: 16px;
	box-sizing: border-box;
}
#box_left .gnb ul li a {
	position: relative;
	display: block;
	color: var(--sub);
	font-size: 14px;
	background-position: 0 45%;
	background-repeat: no-repeat;
	background-size: 30px;
	padding: 10px 10px 10px 40px;
	box-sizing: border-box;
}
#box_left .gnb ul li.h1 a {
    background-image: url("../images/hg_01.svg");
}
#box_left .gnb ul li.h2 a {
    background-image: url("../images/hg_02.svg");
}
#box_left .gnb ul li.h3 a {
    background-image: url("../images/hg_03.svg");
}
#box_left .gnb ul li.h4 a {
    background-image: url("../images/hg_04.svg");
}
#box_left .gnb ul li.h5 a {
    background-image: url("../images/hg_05.svg");
}
#box_left .gnb ul li.h6 a {
    background-image: url("../images/hg_06.svg");
}
#box_left .gnb ul li.h7 a {
    background-image: url("../images/hg_07.svg");
}
#box_left .gnb ul li a span {
	position: absolute;
	top: 0;
	left: 15px;
	display: block;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	background: var(--red);
	color: var(--white);
	border-radius: 50%;
	font-size: 10px;
	letter-spacing: -0.2px;
}
#box_left .gnb ul li.on a:after {
	content: '';
	position: absolute;
	top: 0;
	left: 24px;
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--red);
}


#box_right {
	position: fixed;
	top: 20px;
	right: 0;
	width: 580px;
	height: calc(100vh - 20px);
	padding: 40px 140px 40px 40px;
	box-sizing: border-box;
}
#box_right .white_bg {
	position: relative;
	width: 400px;
	max-height: calc(100vh - 80px);
	background: var(--white);
	padding: 30px;
	border-radius: 20px;
	overflow-y: auto;
	box-sizing: border-box;
}
#box_right .recmd h4 {
	font-weight: 500;
	margin-bottom: 16px;
}
#box_right .recmd .list {
	gap: 10px;
}
#box_right .recmd .list .item {
	position: relative;
	padding: 10px 16px;
	border-radius: 10px;
	background: var(--base);
	gap: 10px;
	box-sizing: border-box;
}
#box_right .recmd .list .item .thumb {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}
#box_right .recmd .list .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#box_right .recmd .list .item .info {
	flex: 1;
}
#box_right .recmd .list .item .info a {
	gap: 4px;
	text-transform: capitalize;
	font-family: 'SUIT';
}
#box_right .recmd .list .item .info strong {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
#box_right .recmd .list .item .info p {
	font-size: 14px;
	color: var(--sub);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
#box_right .recmd .list .item > button {
	width: 54px;
	height: 26px;
	border-radius: 5px;
	font-size: 12px;
}
#box_right .recmd .more_btn {
	display: block;
	width: 100%;
	margin-top: 8px;
	font-size: 14px;
	font-family: 'SUIT';
	padding: 5px 0;
}


#container {
	position: relative;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	box-sizing: border-box;
}
.contents {
	position: relative;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	margin-top: 20px;
	overflow: hidden;
	box-sizing: border-box;
}


.tabs {
	border-bottom: 1px solid var(--strock);
	box-sizing: border-box;
}
.tabs > * {
	position: relative;
	flex: 1;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: var(--sub);
	font-size: 20px;
	text-transform: uppercase;
}
.tabs > *.active {
	color: var(--black);
	font-weight: 500;
}
.tabs > *.active:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 4px;
	background: var(--gradient);
}



.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.modal .modal_cont {
    width: 95%;
    max-width: 1320px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 38;
	background: var(--white);
	border-radius: 5px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}
.modal .modal_cont .scroll {
	position: relative;
	background: var(--white);
	max-height: calc(95vh - 75px);
    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 .close {
	position: absolute;
	top: 25px;
	right: 20px;
	width: 24px;
	height: 24px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50% / 20px;
	box-sizing: border-box;
}


.bottom_modal {
	display: none;
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	z-index: 999;
	transform: translateX(-50%);
}
.bottom_modal .black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.bottom_modal .modal_cont {
	position: absolute;
	bottom: -100%;
	left: 50%;
	width: 100%;
	max-height: 75vh;
	max-width: 1320px;
	transform: translateX(-50%);
	background: #fff;
	box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px 10px 0px 0px;
	z-index: 1000;
	padding: 25px;
	transition: all .2s;
	box-sizing: border-box;
}
.bottom_modal .modal_cont .scroll {
	overflow-x: hidden;
	overflow-y: visible;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.bottom_modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.bottom_modal.open {
	display: block;
}
.bottom_modal.open .black_bg {
	display: block;
}
.bottom_modal.open .modal_cont {
	bottom: 0;
}
.bottom_modal .close {
	position: absolute;
	top: 25px;
	right: 30px;
	width: 15px;
	height: 15px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}



.not_scroll {
	overflow: hidden;
}


.pagenavi {
	margin-top: 20px;
	padding-top: 20px;
}
.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 20px;
}
.pagenavi ol li img {
	vertical-align: middle;
	margin-top: -2px;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 32px;
	font-size: 16px;
	background: #fff;
	color: #7c7c7c;
}
.pagenavi ol li.this a {
	background: var(--black);
	color: var(--white);
	border-radius: 50%;
}



#footer {
	position: relative;
}







@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1440px) {
}
@media screen and (min-width: 1025px) {
}
@media screen and (max-width: 1024px) {
	.modal .close_bar {
		font-size: 18px;
	}
	.modal .close {
		top: 20px;
	}
	.modal .modal_cont .scroll {
		padding: 0 20px;
	}
	
}
@media screen and (max-width: 768px) {

	.pagenavi ol {
		gap: 10px;
	}
}
@media screen and (max-width: 480px) {
	.pagenavi ol {
		gap: 3px;
	}
	.pagenavi ol li a {
		width: 25px;
		height: 25px;
		line-height: 27px;
		font-size: 14px;
	}
	.pagenavi ol li img {
		width: 55%;
	}
}
@media screen and (max-width: 380px) {
}