@charset "utf-8";


#wrap {
	position: relative;
	max-width: 1024px;
	margin: 0 auto;
}
#wrap:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background: var(--gradient);
	z-index: -1;
}


.inner {
	position: relative;
	width: 100%;
	padding: 16px 20px;
	box-sizing: border-box;
	margin:0 auto;
}


#header {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 1024px;
	padding: 20px;
	background: transparent;
	z-index: 20;
	transition: all .3s;
	box-sizing: border-box;
}
#header.fixed {
	background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(30px);
}
#header.nav_down {
	top: -100%;
}
#header > * {
	flex: 1;
}
#header .logo img {
	height: 36px;
}
#header .h_util {
	gap: 6px;
	justify-content: end;
}
#header .h_util > a {
	position: relative;
	width: 30px;
	text-align: center;
}
#header .h_util > a svg {
	vertical-align: middle;
}
#header .h_util > a.on:after {
	content: '';
	position: absolute;
	top: -1px;
	right: 3px;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--red);
}
#header .h_util .menu {
	position: relative;
	width: 30px;
	height: 16px;
}
#header .h_util .menu span {
	position: absolute;
	display: block;
	height: 2px;
	background: var(--black);
	border-radius: 100px;
}
#header .h_util .menu span:nth-child(1) {
	top: 0;
	left: 5px;
	width: 16px;
}
#header .h_util .menu span:nth-child(2) {
	top: 8px;
	left: 6px;
	width: 20px;
}
#header .h_util .menu span:nth-child(3) {
	top: 16px;
	right: 4px;
	width: 16px;
}



.side-wrap {
	width: 100%;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 92;
	background: var(--white);
	overflow-y: auto;
	transition: all .2s;
}
.side-wrap.on {
	right: 0;
}
.side-wrap .top {
	position: relative;
	height: 56px;
	padding: 16px 20px;
	background: var(--key-color);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}
.side-wrap .top .logo {
	gap: 4px;
	margin-top: -7px;
}
.side-wrap .top .side-close {
	position: absolute;
	top: 15px;
    right: 20px;
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
}
.side-wrap .top .side-close span {
	position: absolute;
	top: 11px;
    left: 4px;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 5px;
	background: #fff;
}
.side-wrap .top .side-close span:nth-child(1) {
	transform: rotate(45deg);
}
.side-wrap .top .side-close span:nth-child(2) {
	transform: rotate(-45deg);
}
.side-wrap .scroll {
	padding: 20px 16px;
	box-sizing: border-box;
}
.side-wrap .depth {
	gap: 16px;
	padding: 0 10px;
	box-sizing: border-box;
}
.side-wrap .depth01 > a {
	gap: 10px;
}



#container {
	width: 100%;
	padding-top: 75px;
	padding-bottom: 120px;
	transition: all .3s;
    box-sizing: border-box;
}

.conts {
    padding: 20px 16px;
    gap: 30px;
    box-sizing: border-box;
    min-height: calc(100vh - 115px);
    margin-bottom: -80px;
}

.close_bar {
	justify-content: center;
}
.close_bar a {
	width: 31px;
	height: 31px;
	border-radius: 50%;
	background: var(--white);
	justify-content: center;
}

.tit_box {
	gap: 6px;
}
.tit_box h2 {
	font-size: 4.8rem;
	font-weight: 400;
	font-family: 'RixYeoljeongdo';
}
.tit_box h3 {
	font-size: 2.8rem;
	font-weight: 400;
	font-family: 'RixYeoljeongdo';
}
.tit_box p {
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--text);
}


#player_box {
	position: fixed;
	bottom: -100vh;
	left: 50%;
	width: 100%;
	max-width: 1024px;
	transform: translateX(-50%);
	height: calc(var(--vh, 1vh) * 100);
	background: var(--gradient);
	overflow-y: auto;
	transition: bottom .3s;
	margin: 0 auto;
	z-index: 999;
}
#player_box.open {
	bottom: 0;
}
#player_box .top_bar {
	padding: 30px 40px 16px;
	box-sizing: border-box;
}
#player_box .top_bar .arrow_btn {
	width: 20px;
	height: 20px;
}
#player_box .top_bar .heart {
	width: 24px;
	height: 24px;
	background: url("../images/ic_heart.svg")no-repeat 50% 50% / 100%;
}
#player_box .top_bar .heart.on {
	background: url("../images/ic_heart_on.svg")no-repeat 50% 50% / 100%;
}
#player_box .form {
	position: relative;
	padding: 16px 20px 40px;
	box-sizing: border-box;
}
#player_box .form .thumb {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	border-radius: 10px;
	overflow: hidden;
}
#player_box .form .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#player_box .form .title {
	font-size: 2rem;
	font-weight: 700;
	text-transform: capitalize;
}
#player_box .form .tag button {
    height: 26px;
    padding: 0 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    box-sizing: border-box;
}
#player_box .form .control_box .status_box .status_bar {
	position: relative;
	width: 100%;
	height: 1px;
	background: var(--white);
}
#player_box .form .control_box .status_box .status_bar span {
	position: absolute;
	top: -7px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--white);
}
#player_box .form .control_box .status_box .label {
	font-size: 1.3rem;
	padding: 10px 0;
}
#player_box .form .control_box .controls {
	padding: 0 16px;
	box-sizing: border-box;
}
#player_box .form .control_box .controls .control_btn {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.20);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#player_box .form .control_box .controls .control_btn.play {
	background-image: url("../images/ic_play.svg");
}
#player_box .form .control_box .controls .control_btn.pause {
	background-image: url("../images/ic_pause.svg");
}


#player_mini {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 90px;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1024px;
	background: rgba(255, 255, 255, 0.20);
	box-shadow: 0 -4px 5px 0 rgba(186, 192, 198, 0.15);
	backdrop-filter: blur(30px);
	padding: 16px;
	color: var(--white);
	box-sizing: border-box;
	z-index: 90;
}
#player_mini .thumb {
	position: relative;
	width: 46px;
	height: 46px;
	border-radius: 5px;
	overflow: hidden;
}
#player_mini .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#player_mini .title strong {
	font-size: 1.6rem;
	font-weight: 500;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
#player_mini .title p {
	font-size: 1.3rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
#player_mini .control_btn {
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#player_mini .control_btn.play {
	background-image: url("../images/ic_play.svg");
}
#player_mini .control_btn.pause {
	background-image: url("../images/ic_pause.svg");
}
#player_mini .heart {
	width: 30px;
	height: 30px;
	background: url("../images/ic_heart.svg")no-repeat 50% 50%;
}
#player_mini .heart.on {
	background-image: url("../images/ic_heart_on.svg");
}

#footer_fix {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1024px;
	height: 90px;
	border-top: 1px solid var(--white);
	background: rgba(255, 255, 255, 0.16);
	box-shadow: 0 -4px 5px 0 rgba(186, 192, 198, 0.15);
	backdrop-filter: blur(30px);
	z-index: 90;
	padding: 6px 10px 10px;
	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.5rem;
	font-weight: 300;
	letter-spacing: -0.3px;
	padding-top: 40px;
	color: var(--white);
	background-repeat: no-repeat;
	background-position: 50% 13px;
	box-sizing: border-box;
}
#footer_fix ul li.active a {
	color: var(--black);
}
#footer_fix ul li.active a:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 100%;
	height: 4px;
	background: var(--black);
	border-radius: 50px;
}
#footer_fix ul li.ft01 a {
	background-image: url("../images/ft04.svg?v=1");
}
#footer_fix ul li.ft01.active a {
	background-image: url("../images/ft04_on.svg?v=1");
}
#footer_fix ul li.ft02 a {
	background-image: url("../images/ft01.svg");
}
#footer_fix ul li.ft02.active a {
	background-image: url("../images/ft01_on.svg");
}
#footer_fix ul li.ft03 a {
	background-image: url("../images/ft02.svg");
}
#footer_fix ul li.ft03.active a {
	background-image: url("../images/ft02_on.svg");
}
#footer_fix ul li.ft04 a {
	background-image: url("../images/ft03.svg?v=1");
}
#footer_fix ul li.ft04.active a {
	background-image: url("../images/ft03_on.svg");
}



.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	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;
	background: var(--white);
	border-radius: 30px;
	padding: 20px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	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;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	gap: 10px;
	margin-bottom: 20px;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	background: var(--black);
	color: var(--white);
	padding: 10px 20px;
	font-size: 1.6rem;
	letter-spacing: 0.4px;
	border-radius: 50px;
	box-sizing: border-box;
}
.modal .bar .close {
	width: 40px;
	height: 40px;
	background: var(--black) url("../images/ic_close_white.svg")no-repeat 50% 50%;
	border-radius: 50px;
}
.modal .cont {
	font-size: 1.4rem;
	white-space: pre-line;
	line-height: 1.2;
	letter-spacing: 0.35px;
}
.modal .btn_area {
	margin-top: 30px;
	gap: 10px;
}
.modal .btn_area > * {
	display: block;
	width: 100%;
	height: 46px;
	line-height: 46px;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	border-radius: 5px;
}


.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;
	background: var(--white);
	padding: 20px 20px 40px;
	border-radius: 20px 20px 0px 0px;
	box-sizing: border-box;
	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 {
	max-height: calc(100vh - 145px);
	overflow-y: auto;
}
.bottom_modal .modal_cont .bar {
	gap: 10px;
	margin-bottom: 20px;
}
.bottom_modal .modal_cont .bar h3 {
	flex: 1;
	width: 100%;
	background: var(--black);
	color: var(--white);
	border-radius: 50px;
	padding: 10px 20px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.4px;
	box-sizing: border-box;
}
.bottom_modal .modal_cont .bar .close {
	width: 39px;
	height: 39px;
	border-radius: 50%;
	background: var(--black) url("../images/ic_close_white.svg")no-repeat 50% 50%;
}
.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: 44px;
	line-height: 44px;
	text-align: center;
	border-radius: 50px;
	font-size: 1.6rem;
	letter-spacing: -0.32px;
}
.not_scroll {
	overflow: hidden;
}


.agree_modal .cont {
    background: var(--bg);
    border-radius: 20px;
    padding: 15px;
    box-sizing: border-box;
}



.pagenavi ol {
	justify-content: center;
	gap: 5px;
}
.pagenavi ol li img {
	width: 100%;
	vertical-align: -3px;
}
.pagenavi ol li a {
    display: block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    color: #9E9E9E;
    font-size: 1.4rem;
}
.pagenavi ol li.this a {
	border-radius: 5px;
	color: var(--white);
	background: var(--key-color);
}

.title_area {
	position: relative;
	height: 52px;
	gap: 10px;
	padding: 0 20px;
	box-sizing: border-box;
}
.title_area .prev {
	width: 15px;
	height: 15px;
	background: url("../images/arrow-left-white.svg")no-repeat 50% 50% / 100%;
}
.title_area h3 {
	font-size: 1.5rem;
	font-weight: 500;
}


#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_box a {
	font-size: 1.4rem;
	font-weight: 500;
	background: url("../images/arrow-right-white.svg")no-repeat 100% 50%;
	padding-right: 18px;
	box-sizing: border-box;
}
.tit_box p {
	font-size: 1.4rem;
	font-weight: 500;
	text-transform: capitalize;
}
h3.tit {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Rundkursiv';
	color: var(--white);
	text-transform: capitalize;
    box-sizing: border-box;
}




@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) {
}