@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}


#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 33;
	background: var(--white);
	box-sizing: border-box;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	transition: all .3s;
}

#header .top_area .inner {
	height: 61px;
}

#header .top_area .logo img {
	width: 130px;
}

#header .top_area .top_util {
	gap: 5px;
}

/* #header .top_area .top_util a {
	position: relative;
	color: var(--text-);
	color: #F7418F ;
	font-size: 14px;
} */
#header .top_area .top_util a {
	position: relative;
	color: #F7418F;
	/* 기존 색상 유지 */
	font-size: 14px;
	text-decoration: none;
	/* 밑줄 제거 */
	padding: 10px 15px;
	/* 패딩 추가 */
	border-radius: 5px;
	/* 모서리 둥글게 */
	background-color: rgba(247, 65, 143, 0.1);
	/* 배경색 추가 */
	transition: background-color 0.3s, color 0.3s;
	/* 부드러운 전환 효과 */
}

#header .top_area .top_util a:hover {
	color: #FFFFFF;
	/* 호버 시 글자 색상 변경 */
	background-color: #F7418F;
	/* 호버 시 배경색 변경 */
}

#header .top_area .top_util span {
	color: var(--text-);
	width: 18px;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
}

#header .gnb {
	/* border-top: 1px solid var(--border-tertiary);
	border-bottom: 1px solid var(--border-tertiary); */
}

#header .gnb .inner {
	height: 46px;
}

#header .gnb .box {
	gap: 40px;
}

#header .gnb .box>li {
	position: relative;
}

#header .gnb .box>li>a {
	color: var(--text-secondary);
	text-transform: uppercase;
	font-weight: 500;
	border-bottom: 2px solid transparent;
	transition: all .3s;
	font-size: 16px;
	padding: 5px 0;
	box-sizing: border-box;
}

#header .gnb .box>li.active>a,
#header .gnb .box>li>a:hover {
	color: var(--key-color);
	border-bottom: 2px solid var(--key-color);
}

#header .top_menu {
	gap: 10px;
}

#header .top_menu>div {
	position: relative
}

#header .top_menu>div>a {
	color: var(--text-secondary);
	font-size: 16px;
	gap: 10px;
	background: url("../images/arrow-down.svg")no-repeat 100% 50%;
	padding-right: 22px;
}

#header .top_menu>div.login_off>a {
	background: none;
	padding-right: 0;
}

#header .top_menu>div>a .thumb {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	overflow: hidden;
}

#header .top_menu>div>a .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#header .top_menu>div .sub_menu {
	display: none;
	position: absolute;
	right: 0;
	width: 140px;
	padding-top: 9px;
}

#header .top_menu>div:hover .sub_menu {
	display: block;
}

#header .top_menu>div .sub_menu ul {
	width: 100%;
	background: var(--white);
}

#header .top_menu>div .sub_menu ul li {
	text-align: center;
	padding: 8px 0;
}

#header .top_menu>div .sub_menu ul li.bg {
	background: var(--bg-divider);
}

#header .top_menu>div .sub_menu ul li a {
	color: var(--text-primary);
}

#header .top_menu>div .sub_menu ul li a:hover {
	color: var(--key-color);
}

.menu {
	display: none;
}

.menu a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}

#header.on .menu a {
	background: var(--key-color);
	border-radius: 5px;
}

.menu a span {
	position: absolute;
	left: 10px;
	display: block;
	width: 20px;
	height: 2px;
	background: var(--black);
	transition: all .3s;
}

.menu a span:nth-child(1) {
	top: 12px;
}

.menu a span:nth-child(2) {
	top: 17px;
}

.menu a span:nth-child(3) {
	top: 22px;
}

.menu a span:nth-child(4) {
	top: 27px;
}


.mypage_area {
	display: none;
	width: 100%;
}

.title_box {
	display: none;
	width: 100%;
}

#fixHeader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 68px;
	background: var(--white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	padding: 2px 20px;
	opacity: 0;
	z-index: -1;
	transition: all .2s;
	box-sizing: border-box;
}

#fixHeader .main_header {
	display: none;
	width: 100%;
}

#fixHeader .logo img {
	width: 80px;
	vertical-align: middle;
}

#fixHeader.fixed {
	opacity: 1;
	z-index: 13;
}

#fixHeader .main_header .thumb {
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 5px;
	overflow: hidden;
}

#fixHeader .main_header .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.side_wrap {
	width: 250px;
	height: 100%;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 35;
	background: var(--white);
	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 .top {
	padding: 10px 15px 20px;
}

.side_wrap .top .top_util {
	gap: 10px;
}

.side_wrap .top .top_util a {
	position: relative;
	color: var(--text-);
	font-size: 14px;
}

.side_wrap .top .top_util span {
	color: var(--text-);
	width: 10px;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
}

.side_wrap .top .side_close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 15px;
	z-index: 1;
}

.side_wrap.on .top .side_close {
	display: block;
}

.side_wrap .depth {
	padding: 15px 0 30px;
}

.side_wrap .depth01 {
	position: relative;
	border-bottom: 1px solid #e9e9e9;
}

.side_wrap .depth01 a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 14px;
	padding: 15px 20px;
	box-sizing: border-box;
}

.side_wrap .depth01.active>a {
	background: var(--key-color);
	color: var(--white);
}

.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}

.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}

.side_wrap .depth .depth02 li a {
	display: block;
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}

.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}

.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}

.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}


#container {
	width: 100%;
	/* padding-top: 180px; */
	padding-top: 140px;
}




.tit {
	font-size: 26px;
	color: #000;
	margin-bottom: 50px;
}

.tit p {
	color: rgba(0, 0, 0, 0.80);
	font-size: 18px;
	font-weight: 400;
	margin-top: 20px;
}


.sub_tit {
	font-size: 28px;
	font-weight: 700;
}



.modal {
	display: none;
}

.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.60);
	z-index: 37;
}

.modal .modal_cont {
	width: 90%;
	max-width: 620px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 95vh;
	overflow: hidden;
	z-index: 38;
	border-radius: 10px;
	background: var(--white);
	border: 1px solid var(--sub);
	box-shadow: 2px 4px 6px 0px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
}

.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 48px);
	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: 30px;
}

.modal .modal_cont .scroll::-webkit-scrollbar {
	display: none;
}

.modal .bar {
	background: var(--white);
	padding: 10px 15px;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-secondary);
}

.modal .close {
	width: 25px;
	height: 25px;
	/*background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;*/
}

.modal .close img {
	width: 100%;
}

.modal .txt {
	font-size: 16px;
	color: #FCFCFC;
	line-height: 1.6;
}

.modal .btn_area {
	justify-content: center;
	gap: 20px;
}

.modal .btn_area button {
	flex: 1;
	max-width: 300px;
	height: 48px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
}

.modal .btn_area button.btn_gray {
	background: #f5f5f5;
	color: var(--border-secondary);
}

.agree_modal .scroll {
	max-height: calc(95vh - 40px);
}

.agree_modal .scroll .cont {
	white-space: pre-line;
	line-height: 1.4;
}


.event_state_modal .modal_cont .scroll {
	padding: 50px;
}

.event_state_modal .text {
	color: var(--black);
	background: url("../images/danger_bg.svg")no-repeat 50% 0 / 60px;
	font-size: 24px;
	line-height: 1.3;
	padding-top: 70px;
	margin-bottom: 20px;
}

.event_state_modal .sub_txt {
	color: var(--sub);
	font-size: 18px;
}

.event_state_modal .btn_area {
	margin-top: 30px;
}

.not_scroll {
	overflow: hidden;
}


.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 20px;
	margin-top: 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;
	font-weight: 600;
	color: var(--text-);
}

.pagenavi ol li.this a {
	color: var(--key-color);
}



#footer {
	position: relative;
	padding: 50px 0 100px;
	margin-top: 100px;
	background: var(--white);
	border-top: 1px solid rgba(224, 224, 224, 0.5);
}

#footer .inner {
	gap: 20px;
}

#footer .logo {
	width: 100%;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 50px;
}

#footer .logo img {
	width: 130px;
	vertical-align: middle;
	margin-right: 10px;
}

#footer .txt {
	flex: 1;
	margin-right: 30px;
}

#footer .txt .addr {
	margin-bottom: 20px;
	gap: 10px;
}

#footer .txt .addr span {
	position: relative;
	margin-right: 10px;
	padding-right: 10px;
	font-size: 12px;
	color: var(--sub);
}

#footer .txt .addr span:after {
	content: '';
	display: block;
	width: 1px;
	height: 12px;
	position: absolute;
	top: 1px;
	right: 0;
	background-color: var(--sub);
}

#footer .txt .addr span:last-child {
	margin-right: 0;
	padding-right: 0;
}

#footer .txt .addr span:last-child:after {
	display: none;
}

#footer .txt .addr span a {
	color: var(--sub);
}

#footer .txt .copy {
	font-size: 12px;
	color: var(--sub);
}

#footer .info {
	gap: 10px;
}

#footer .info .tel {
	font-size: 24px;
}

#footer .info p {
	color: var(--sub);
	font-size: 14px;
}

#footer .info .run {
	color: var(--text-);
	font-size: 14px;
	font-weight: 500;
}

#fix_kakao {
	position: fixed;
	bottom: 100px;
	right: 50px;
	z-index: 15;
}

#fix_kakao a {
	display: block;
	width: 50px;
	height: 50px;
	background: url("../images/fix_kakao.svg")no-repeat 50% 50% / 100%;
	border-radius: 50%;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
}


#footer_fix {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 12;
}

#footer_fix ul {
	background: var(--white);
	box-shadow: 0px -4px 5px 0px rgba(186, 192, 198, 0.15);
}

#footer_fix ul li {
	flex: 1;
	text-align: center;
}

#footer_fix ul li a {
	display: block;
	padding: 55px 0px 10px;
	color: var(--sub);
	font-size: 12px;
	font-weight: 500;
	background-repeat: no-repeat;
	background-position: 50% 10px;
}

#footer_fix ul li.active a {
	color: var(--key-color);
}

#footer_fix ul li.ft01 a {
	background-image: url("../images/ft_icon1.svg");
}

#footer_fix ul li.ft02 a {
	background-image: url("../images/ft_icon2.svg");
}

#footer_fix ul li.ft03 a {
	background-image: url("../images/ft_icon3.svg");
}

#footer_fix ul li.ft04 a {
	background-image: url("../images/ft_icon4.svg");
}

#footer_fix ul li.ft05 a {
	background-image: url("../images/ft_icon5.svg");
}

#footer_fix ul li.ft01.active a {
	background-image: url("../images/ft_icon1_on.svg");
}

#footer_fix ul li.ft02.active a {
	background-image: url("../images/ft_icon2_on.svg");
}

#footer_fix ul li.ft03.active a {
	background-image: url("../images/ft_icon3_on.svg");
}

#footer_fix ul li.ft04.active a {
	background-image: url("../images/ft_icon4_on.svg");
}

#footer_fix ul li.ft05.active a {
	background-image: url("../images/ft_icon5_on.svg");
}

#mobile_ft .close img {
	width: 22px;
}

#mobile_ft .list a {
	display: block;
	width: 100%;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	margin-top: 20px;
}

#mobile_ft .list a.btn_gray {
	background: var(--bg-off-white);
	color: var(--sub);
}



.agreement h3 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 24px;
}

.agreement .cont {
	white-space: pre-line;
}

.floating-text {
	
	background: #F7418F;
	/* bottom: 50px; */
	top: 50px;
	position: fixed;
	/* 고정 위치 */
	right: 128px;

	color: white;
	/* 텍스트 색상 */
	padding: 10px 15px;
	/* 패딩 */
	border-radius: 5px;
	/* 모서리 둥글게 */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	/* 그림자 효과 */
	font-size: 16px;
	/* 폰트 크기 */
	cursor: pointer;
	/* 커서 모양 변경 */
	transition: background-color 0.3s;
	/* 호버 효과 */
	z-index: 1000;
	/* 다른 요소 위에 표시 */
}

@media screen and (max-width: 1280px) {
	#header .top_area .top_util a {
		font-size: 18px;
	}

	#header .gnb .box>li>a {
		font-size: 18px;
	}

	#header .top_menu>div>a {
		font-size: 18px;
	}

	.tit {
		font-size: 28px;
	}
}

@media screen and (max-width: 1024px) {
	#header h1 {
		display: none;
	}

	#header .top_area .inner {
		height: 50px;
		justify-content: center;
		padding-top: 10px;
	}

	#header .top_area .logo img {
		width: 120px;
	}

	#header .top_area .top_util,
	#header .gnb .box {
		display: none;
	}

	#header .gnb {
		display: none;
	}

	.inner {
		padding: 0 30px;
	}


	#container {
		padding-top: 85px;
	}

	.title_area {
		display: block;
		font-size: 18px;
		font-weight: 500;
	}


	#footer {
		margin-top: 75px;
		padding: 25px 0 135px;
	}

	#footer .logo {
		margin-bottom: 25px;
	}

	#footer .logo img {
		width: 100px;
	}

	#footer .info .tel {
		font-size: 16px;
	}



	.modal .btn_area button {
		font-size: 16px;
		height: 45px;
	}

	.event_state_modal .modal_cont .scroll {
		padding: 50px 20px;
	}

	.event_state_modal .text {
		font-size: 28px;
	}

	.event_state_modal .sub_txt {
		font-size: 20px;
	}


	.tit {
		font-size: 24px;
		text-align: center;
		margin-bottom: 30px;
	}

	.sub_tit {
		font-size: 20px;
	}

	#fix_kakao {
		bottom: 115px;
		right: 15px;
	}

	#fix_kakao a {
		width: 50px;
		height: 50px;
	}

	#footer_fix {
		display: block;
	}

	.floating-text {
		z-index: 1;
		right: 60px;
		bottom: 47px;
		height: 36px;
		top: 19px;
	}
}

@media screen and (max-width: 768px) {
	.modal .btn_area {
		gap: 10px;
	}

	.event_state_modal .modal_cont .scroll {
		padding: 30px 20px;
	}

	.event_state_modal .text {
		font-size: 20px;
		background-size: 50px;
		padding-top: 55px;
	}

	.event_state_modal .sub_txt {
		font-size: 16px;
	}

	.tit {
		font-size: 20px;
	}

	.tit strong {
		display: block;
	}

	.pagenavi ol {
		gap: 10px;
	}

	.pagenavi ol li a {
		width: 20px;
		height: 20px;
		line-height: 22px;
	}
}

@media screen and (max-width: 480px) {
	.pagenavi ol {
		gap: 3px;
	}

	.pagenavi ol li a {
		font-size: 14px;
	}
}

@media screen and (max-width: 380px) {
	.pagenavi ol {
		gap: 0;
	}

	.pagenavi ol li a {
		width: 16px;
		height: 16px;
		line-height: 18px;
	}

	.pagenavi ol li img {
		width: 8px;
	}
}