@charset "utf-8";

/*
	#기능: 공통 사용
*/

@font-face {
	font-family: "Pretendard";
	src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Pretendard";
	src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Pretendard";
	src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Pretendard";
	src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "Pretendard";
	src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff") format("woff");
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: "SEBANG_Gothic_Bold";
	src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

:root {
	--primary-color: #53ac5a;
	--secondary-color: #1c1c1c;
	--border-color: #dcdcdc;
	--font-size-30: 1.85em;
	--font-size-28: 1.75em;
	--font-size-26: 1.65em;
	--font-size-24: 1.5em;
	--font-size-22: 1.4em;
	--font-size-20: 1.25em;
	--font-size-18: 1.125em;
	--font-size-15: 0.95em;
	--font-size-14: 0.88em;
	--font-size-13: 0.82em;
	--font-sebang: "SEBANG_Gothic_Bold", "Pretendard", sans-serif;
}

html, input, select, textarea, button {font-family: "Pretendard", sans-serif; letter-spacing: -0.5px;}
body.opt-prevent {overflow: hidden;}
.opt-strong {font-weight: 600;}
.opt-color-warning {color: #FF5454;}
.opt-color-primary {color: var(--primary-color);}
.opt-text-left {text-align: left;}
.opt-text-center {text-align: center;}
.opt-text-right {text-align: right;}
.opt-mt-5 {margin-top: 5px;}
.opt-mt-10 {margin-top: 10px;}
.opt-font-sm {font-size: var(--font-size-15);}
@media all and (max-width: 767px) {
	.opt-font-sm {font-size: var(--font-size-14);}
}


/* ## modal ## */
.modal {
	width: calc(100% - 20px);
	max-height: calc(100% - 20px);
	border: none;
	border-radius: 20px;
	box-shadow: 0 0 6px #00000029;
	padding: 0;
}
.modal::backdrop {
	background: rgba(0, 0, 0, 0.5);
}
.modal-btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}
.modal .modal-close {
	position: absolute;
	right: 30px;
	top: 30px;
	z-index: 5;
	font-size: var(--font-size-22);
	margin-left: 0;
	margin-right: 0;
}
.modal-header {
	display: flex;
	align-items: center;
	height: 60px;
	padding-right: 60px;
	padding-left: 25px;
	background: var(--secondary-color);
	position: sticky;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
}
.modal-title {
	font-size: var(--font-size-20);
	color: #fff;
}
.modal-header .modal-close {
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	color: #fff;
	font-size: var(--font-size-28);
}
.modal-body {
	padding: 30px 25px;
	overflow-y: auto;
}
.modal-header + .modal-body {
	max-height: calc(100vh - 100px);
}
@media all and (max-width: 1023px) {
	.modal-header {
		height: 55px;
		padding-left: 20px;
	}
	.modal-header .modal-close {
		right: 20px;
	}
	.modal-title {
		font-size: var(--font-size-18);
	}
	.modal-body {
		padding: 25px 20px;
	}
	.modal-header + .modal-body {
		max-height: calc(100vh - 95px);
	}
}
@media all and (max-width: 767px) {
	.modal-btn-wrap {
		margin-top: 20px;
	}
	.modal .modal-close {
		right: 15px;
		top: 15px;
	}
	.modal-header {
		height: 50px;
		padding-left: 15px;
		padding-right: 45px;
	}
	.modal-header .modal-close {
		right: 15px;
		top: 50%;
		font-size: var(--font-size-24);
	}
	.modal-body {
		padding: 20px 15px;
	}
	.modal-header + .modal-body {
		max-height: calc(100vh - 90px);
	}
}

/* ## button ## */
.btn-basic-wrap {
	margin-top: 40px;
}
.btn-basic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	background: #E6E6E6;
	color: #6F6F6F;
	height: 60px;
	padding: 0 20px;
	min-width: 200px;
	margin-left: 10px;
	margin-right: 10px;
	font-size: var(--font-size-18);
	border: 1px solid transparent;
	transition: 0.2s ease-in-out;
	vertical-align: top;
}
.btn-basic:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.btn-basic.opt-color-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
.btn-basic.opt-color-secondary {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	color: #fff;
}
.btn-basic.opt-color-white {
	background-color: #fff;
	border-color: #fff;
	color: #555;
}
.btn-basic.opt-line-black {
	background-color: #fff;
	border-color: #000;
	color: #000;
}
.btn-basic.opt-line-gray {
	background-color: #fff;
	border-color: #ACACAC;
	color: #000;
}
.btn-basic.opt-style-round {
	border-radius: 100%;
}
.btn-basic.opt-style-square {
	border-radius: 5px;
}
.btn-basic.opt-style-unit {
	width: 60px;
	padding: 0;
	min-width: auto;
}
.btn-basic.opt-size-md {
	height: 52px;
	min-width: auto;
}
.btn-basic.opt-size-sm {
	height: 40px;
	min-width: auto;
	padding: 0 10px;
	font-size: 1em;
}
.btn-basic.opt-size-xs {
	height: 28px;
	min-width: auto;
	padding: 0 5px;
	font-size: var(--font-size-14);
}
.btn-basic.opt-size-sm.opt-style-unit {
	width: 40px;
}
@media all and (max-width: 1023px) {
	.btn-basic-wrap {
		margin-top: 30px;
	}
	.btn-basic {
		height: 55px;
	}
	.btn-basic.opt-style-unit {
		width: 55px;
	}
	.btn-basic.opt-size-md {
		height: 48px;
		padding: 0 15px;
	}
}
@media all and (max-width: 767px) {
	.btn-basic-wrap {
		margin-top: 20px;
	}
	.btn-basic {
		height: 45px;
		font-size: var(--font-size-15);
		min-width: auto;
		margin: 1px 5px;
		padding: 0 25px;
	}
	.btn-basic.opt-style-unit {
		width: 45px;
	}
	.btn-basic.opt-size-md {
		height: 42px;
	}
}


/* ## tab ## */
.tab-basic.opt-type1 {
	margin-bottom: 40px;
}
.tab-basic.opt-type1 .tab-basic-list {
	display: flex;
}
.tab-basic.opt-type1 li {
	flex: 1;
	text-align: center;
	border-bottom: 2px solid #DBDBDB;
}
.tab-basic.opt-type1 a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	font-size: var(--font-size-20);
	color: #999;
	position: relative;
	white-space: nowrap;
}
.tab-basic.opt-type1 a::before {
	display: block;
	content: "";
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: -2px;
	background: #000;
	border-radius: 20px;
}
.tab-basic.opt-type1 a.opt-active {
	color: #000;
	font-weight: 600;
}
.tab-basic.opt-type1 a.opt-active::before {
	width: 100%;
}
@media all and (max-width: 1023px) {
	.tab-basic.opt-type1 a {
		height: 55px;
		font-size: var(--font-size-18);
	}
}
@media all and (max-width: 767px) {
	.tab-basic.opt-type1 {
		overflow-x: auto;
		margin-bottom: 30px;
	}
	.tab-basic.opt-type1 a {
		padding: 0 10px;
		height: 45px;
		font-size: 1em;
	}
}
.tab-basic.opt-type2 {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #ebebeb;
}
.tab-basic.opt-type2 .tab-basic-list {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.tab-basic.opt-type2 a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	border: 1px solid #BBBBBB;
	border-radius: 5px;
	color: #555;
	min-width: 140px;
	line-height: 1;
	position: relative;
	transition: 0.2s ease-in-out;
}
.tab-basic.opt-type2 a.opt-active {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
.tab-basic.opt-type2 a::before {
	display: block;
	content: "";
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 8px solid transparent;
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%) rotate(45deg);
	transition: 0.2s ease-in-out;
}
.tab-basic.opt-type2 a.opt-active::before {
	transform: translateX(-50%) rotate(0);
	border-top-color: var(--primary-color);
}
@media all and (max-width: 1023px) {
	.tab-basic.opt-type2 {
		padding-bottom: 0;
		border-bottom: none;
	}
}
@media all and (max-width: 767px) {
	.tab-basic.opt-type2 {
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}
	.tab-basic.opt-type2 .tab-basic-list {
		display: block;
		white-space: nowrap;
		text-align: center;
	}
	.tab-basic.opt-type2 li {
		display: inline-block;
		vertical-align: top;
	}
	.tab-basic.opt-type2 a {
		height: 45px;
		min-width: auto;
		padding: 0 15px;
		width: 100%;
	}
}
.tab-basic.opt-type3 {
	margin-bottom: 15px;
}
.tab-basic.opt-type3 .tab-basic-list {
	display: flex;
	align-items: center;
}
.tab-basic.opt-type3 li {
	flex: 1 1 auto;
	margin-left: -1px;
}
.tab-basic.opt-type3 a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	border: 1px solid var(--border-color);
	color: #555;
	line-height: 1;
}
.tab-basic.opt-type3 a.opt-active {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
@media all and (max-width: 767px) {
	.tab-basic.opt-type3 a {
		height: 36px;
	}
}
.js-tab-cont {
	display: none;
}
.js-tab-cont.opt-active {
	display: block;
}


/* ## table ## */
.table-basic.opt-type1 {
	border-top: 3px solid var(--primary-color);
}
.table-basic.opt-type1 table {
	width: 100%;
	table-layout: fixed;
	text-align: center;
	border-right: 1px solid var(--border-color);
	color: #000;
}
.table-basic.opt-type1 th,
.table-basic.opt-type1 td {
	padding: 15px 20px;
	border-left: 1px solid var(--border-color);
}
.table-basic.opt-type1 tr {
	border-bottom: 1px solid var(--border-color);
}
.table-basic.opt-type1 .table-title {
	background: #eef8ee;
}
@media all and (max-width: 1023px) {
	.t-table-scroll {
		overflow-x: auto;
	}
	
	.t-table-scroll.table-basic.opt-type1 table {
		width: 1100px;
	}
}
@media all and (max-width: 767px) {
	.table-basic.opt-type1 {
		border-width: 2px;
		font-size: var(--font-size-15);
	}

	.table-basic.opt-type1 th,
	.table-basic.opt-type1 td {
		padding: 10px 8px;
	}

	.m-table-scroll {
		overflow-x: auto;
	}

	.m-table-scroll.table-basic.opt-type1 table {
		width: 800px;
	}
}
.table-basic.opt-type2 table {
	width: 100%;
	table-layout: fixed;
	text-align: center;
}
.table-basic.opt-type2 tbody tr {
	border-bottom: 1px solid #DFDFDF;
}
.table-basic.opt-type2 .table-title {
	background: #F2F2F2;
}
.table-basic.opt-type2 th,
.table-basic.opt-type2 td {
	padding: 8px 10px;
}


/* ## scroll ## */
.scroll-vertical-basic::-webkit-scrollbar {
	width: 5px;
}
.scroll-vertical-basic::-webkit-scrollbar-thumb {
	background: #bdbdbd;
	border-radius: 5px;
}
.scroll-vertical-basic::-webkit-scrollbar-track {
	background: #EBEBEB;
	border-radius: 5px;
}


/* ## alert ## */
.alert-modal {
	max-width: 400px;
}
.alert-box {
	padding: 100px 30px 30px;
	text-align: center;
	background: url("../img/logo.png") no-repeat center 30px;
	background-size: 160px;
}
.alert-title {
	font-size: var(--font-size-18);
	margin-bottom: 5px;
}
.alert-desc-box {
	color: #555;
}
.alert-btn-box {
	margin-top: 20px;
	display: flex;
}
.alert-btn-box .btn-basic {
	flex: 1 1 auto;
}
.alert-close {
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: var(--font-size-30);
}
@media all and (max-width: 767px) {
	.alert-box {
		padding: 60px 20px 20px;
		background-position: center 20px;
		background-size: 140px;
	}
	.alert-title {
		font-size: 1em;
		margin-bottom: 3px;
	}
	.alert-desc-box {
		font-size: var(--font-size-15);
	}
	.alert-btn-box {
		margin-top: 15px;
	}
	.alert-close {
		right: 15px;
	}
}


/* ## check box ## */
.check-box {
	position: relative;
}
.check-input,
.check-check {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 100%;
}
.check-check {
	opacity: .01;
}
.check-label {
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding-left: 28px;
	cursor: pointer;
}
.check-input {
	cursor: pointer;
	border: 1px solid #E2E2E2;
}
.check-input::before {
	display: block;
	content: "";
	width: 4px;
	height: 8px;
	border-right: 2px solid #E2E2E2;
	border-bottom: 2px solid #E2E2E2;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -65%) rotate(45deg);
	transition: 0.2s ease-in-out;
}
.check-text {
	display: inline-block;
	vertical-align: top;
}
.check-check:checked + .check-input {
	background: var(--primary-color);
	border-color: var(--primary-color);
}
.check-check:checked + .check-input::before {
	border-color: #fff;
}
@media all and (max-width: 767px) {
	.check-label {
		padding-left: 24px;
	}
	.check-input,
	.check-check {
		width: 19px;
		height: 19px;
	}
	.check-input::before {
		width: 4px;
		height: 7px;
		transform: translate(-50%, -64%) rotate(45deg);
	}
}

/* ## radio box ## */
.radio-box {
	position: relative;
}
.radio-check {
	position: absolute;
	left: 0;
	top: 50%;
	transform:translateY(-50%);
	width: 14px;
	height: 14px;
	opacity: .01;
}
.radio-label {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding-left: 22px;
	cursor: pointer;
}
.radio-input {
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform:translateY(-50%);
	width: 16px;
	height: 16px;
	cursor: pointer;
	border-radius: 100%;
	border: 1px solid #d1d1d1;
}
.radio-input::before {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-radius: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.2s ease-in-out;
	background: var(--primary-color);
}
.radio-text {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}
.radio-check:checked + .radio-input {
	border-color: var(--primary-color);
}
.radio-check:checked + .radio-input::before {
	width: 9px;
	height: 9px;
}


/* ## loading ## */
.loading-default {
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 200;
}
.loading-default::before {
	display: block;
	content: "";
	position: absolute;
	left: 50%;
	top:50%;
	transform:translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border: 4px solid var(--primary-color);
	border-bottom-color: transparent;
	border-radius: 50%;
	box-sizing: border-box;
	animation: loading-spinner 1.2s linear infinite;
}
@keyframes loading-spinner {
	0% {transform: translate(-50%, -50%) rotate(0deg);}
	100% {transform: translate(-50%, -50%) rotate(360deg);}
}
.loading-default.opt-inner {
	position: absolute;
	display: none;
}
.loading-default.opt-inner::before {
	width: 35px;
	height: 35px;
	border-width: 3px;
}
.loading-default.opt-inner.opt-active {
	display: block;
}


/* ## main-menu ## */
.main-menu {
	position: sticky;
	top: 0;
	z-index: 15;
	background: #fff;
}
.main-menu .tab-basic.opt-type1 .tab-basic-list {
	justify-content: center;
	border-bottom: 2px solid #DBDBDB;
}
.main-menu .tab-basic.opt-type1 li {
	max-width: 125px;
	border-bottom: 0;
}
@media all and (max-width:767px) {
	.main-menu .tab-basic.opt-type1 .tab-basic-list {
		justify-content: flex-start;
	}
}

/* ## common ## */
.container {
	max-width: 1720px;
	padding: 0 10px;
	margin: 0 auto;
}
.inner-container {
	max-width: 1180px;
	padding: 0 10px;
	margin: 0 auto;
}
@media all and (max-width: 1023px) {
	.container,
	.inner-container {
		padding:0 20px;
	}
}
@media all and (max-width: 767px) {
	.container,
	.inner-container {
		padding:0 15px;
	}
}


.quick {
	position: fixed;
	right:0;
	top:50%;
	transform: translateY(-50%);
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s 0.2s ease-in-out;
}
.quick .btn-basic {
	display: flex;
	flex-wrap: wrap;
	margin: 6px 0;
	border-radius: 100%;
	font-size: 1em;
	line-height: 1;
	opacity: 0.9;
	overflow: hidden;
}
.quick .btn-basic:hover :is(.icon-custom, .desc) {
	transform: translateY(-100%);
}
.quick :is(.icon-custom, .desc) {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
}
.quick .icon-custom {
	font-size: var(--font-size-18);
}
.quick .btn-basic.opt-vr {
	background: #b33cdf;
	color: #fff;
}
.btn-top {
	background:#959595;
	color: #fff;
}
.quick.opt-active {
	opacity: 1;
	visibility: visible;
	right: 20px;
}
@media all and (max-width: 767px) {
	.quick {
		right:auto;
		top:auto;
		bottom: 10px;
		left: 50%;
		transform: translate(-50%,0);
		display: flex;
		justify-content: center;
		gap: 0 3px;
	}
	.quick .btn-basic {
		width: 60px;
		height: 60px;
		margin: 0;
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.quick .btn-basic:hover :is(.icon-custom, .desc) {
		transform: translateY(0);
	}
	.quick :is(.icon-custom, .desc) {
		height: auto;
	}
	.quick .desc {
		font-size: var(--font-size-14);
		font-weight: 300;
		margin-top: 3px;
	}
	.quick.opt-active {
		right: auto;
	}
}



/* ## footer ## */
.footer {
	background: #f0f0f0;
	padding:60px 0;
	line-height: 1.6;
	color: #666666;
}
.footer a {
	color: inherit;
}
.footer-box {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.footer-item {
	padding: 0 10px;
}
.footer-item:nth-child(2) {
	flex: 0 0 380px;
}
.footer-util {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom:15px;
}
.footer-util > li {
	position: relative;
	padding: 0 15px;
}
.footer-util > li:last-child {
	padding-right: 0;
}
.footer-util > li:not(:first-child)::before {
	display: block;
	content: "";
	width: 1px;
	height: 10px;
	background: #666;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.6;
}
.footer-util a {
	font-weight: 600;
}
.footer-util a.policy {
	color: #222222;
}
.footer-title {
	margin-bottom: 20px;
	font-size: var(--font-size-20);
	font-weight: 600;
	color: #222222;
}
.footer-info .info-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.footer-info .info-list .item {
	padding-right: 20px;
}
.footer-address {
	font-style: normal;
	font-size: var(--font-size-14);
	text-align: right;
}
.footer-address .osoza {
	text-decoration: underline;
	text-underline-offset: 4px;
}
@media all and (max-width: 1023px) {
	.footer {
		padding:45px 0;
	}
	.footer-box {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px 0;
	}
	.footer-item {
		padding: 0;
	}
	.footer-item:nth-child(2) {
		flex: 0 0 auto;
		align-self: flex-end;
	}
	.footer-info .info-list .item {
		font-size: var(--font-size-15);
	}
}
@media all and (max-width: 767px) {
	.footer {
		padding:20px 0 85px;
	}
	.footer-item:nth-child(2) {
		align-self: center;
	}
	.footer-title {
		margin-bottom: 10px;
		text-align: center;
	}
	.footer-info .info-list {
		justify-content: center;
	}
	.footer-info .info-list .item {
		padding: 0 5px;
		font-size: var(--font-size-14);
	}
	.footer-util {
		margin-bottom: 10px;
		justify-content: center;
	}
	.footer-util > li {
		padding: 0 7px;
		font-size: var(--font-size-15);
	}
	.footer-address {
		font-size: var(--font-size-13);
		text-align: center;
	}
}


/* ## schedule ## */
.schedule-area {
	position: relative;
	left:0;
	top:0;
	width: 100%;
	background: #fff;
	z-index: 20;
	transition: 0.2s ease-out;
}
.schedule-modal {
	max-width: 1400px;
	padding:50px;
}
.schedule-row {
	padding:15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.schedule-row .title {
	font-size: var(--font-size-24);
	font-weight: 600;
}
.schedule-box {
	display: flex;
	align-items: center;
	width: 390px;
}
.schedule-box .date-box {
	width: 100%;
	height: 48px;
	color: #7b7b7b;
	transition: 0.2s ease-in-out;
	cursor: pointer;
	position: relative;
	border:1px solid var(--border-color);
	border-radius: 99px;
	overflow:hidden;
	line-height: 1;
}
.schedule-box .date-box:hover {
	border-color: #000;
}
.schedule-box .date-text {
	padding:0 20px;
	display: inline-flex;
	align-items: center;
	height: 100%;
}
.schedule-box .date-text::after {
	display: block;
	content: "\f107";
	font-weight: 400;
	font-family: "Font Awesome 6 Pro";
	margin-left:5px;
}
.schedule-box .date-row {
	display: none;
	align-items: center;
	position: absolute;
	left:0;
	top:0;
	width: calc(100% - 50px);
	height: 100%;
	z-index: 1;
	background:#fff;
	padding:0 10px;
}
.schedule-box .date-row.opt-active {
	display: flex;
}
.schedule-box .date-item {
	padding:0 5px;
}
.schedule-box .badge-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	padding:0 8px;
	background:#B7B7B7;
	color: #fff;
	border-radius: 10px;
	font-size: var(--font-size-14);
}
.schedule-box .btn {
	width: 50px;
	height: 48px;
	line-height: 48px;
	background:#fff;
	color: #666666;
	position: absolute;
	right: 0;
}
.schedule-modal {
	text-align: center;
}
.schedule-period {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin:0 auto 40px;
	background:#EFEFEF;
	border-radius: 30px;
	padding:8px;
}
.schedule-period .btn {
	display:inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding:0 30px;
	border-radius: 25px;
	line-height: 1;
}
.schedule-period .btn.opt-active {
	background:#fff;
	font-weight: 600;
}
.schedule-calendar-box {
	display: flex;
	flex-wrap: wrap;
	border-top:1px solid #DFDFDF;
	border-bottom:1px solid #DFDFDF;
}
.schedule-calendar {
	flex:0 0 50%;
	padding:40px;
}
.schedule-calendar .fc-customPrev-button::before,
.schedule-calendar .fc-customNext-button::before {
	display: block;
	content:"\f104";
	font-weight: 400;
	font-family: "Font Awesome 6 Pro";
	font-size: var(--font-size-24);
	padding:0 10px;
}
.schedule-calendar .fc-customNext-button::before {
	content: "\f105";
}
.schedule-calendar.fc .fc-toolbar-title {
	font-size: var(--font-size-24);
	font-weight: 600;
}
.schedule-calendar.fc .fc-header-toolbar {
	margin-bottom:10px;
}
.schedule-calendar .fc-header-toolbar .fc-button {
	background: none !important;
	border:none !important;
	color: #7D7D7D !important;
	box-shadow: none !important;
	padding:0;
}
.schedule-calendar .fc-header-toolbar .fc-button .fc-icon {
	font-size: var(--font-size-30);
}
.schedule-calendar.fc-theme-standard .fc-scrollgrid,
.schedule-calendar.fc-theme-standard td,
.schedule-calendar.fc-theme-standard th {
	border:none;
}
.schedule-calendar.fc-theme-standard th {
	padding:10px 0;
}
.schedule-calendar.fc .fc-col-header-cell-cushion {
	color: #777;
}
.schedule-calendar.fc .fc-cell-shaded,
.schedule-calendar.fc .fc-day-disabled {
	background: none;
}
.schedule-calendar.fc .fc-daygrid-day-top {
	flex-direction: row;
	justify-content: center;
}
.schedule-calendar.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
	display: none;
}
.schedule-calendar.fc .fc-daygrid-day-number {
	color: #555;
	padding:0;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.schedule-calendar.fc .fc-daygrid-day {
	cursor: pointer;
	border-radius: 20px;
}
.schedule-calendar.fc .fc-daygrid-day.fc-day-today {
	background:#ECECEC;
}
.schedule-calendar .fc-daygrid-day.fc-day-sat .fc-daygrid-day-number {
	color: #006db2;
}
.schedule-calendar .fc-daygrid-day.fc-day-sun .fc-daygrid-day-number {
	color: #da393f;
}
.schedule-calendar.fc .fc-daygrid-day.opt-range,
.schedule-calendar.fc .fc-daygrid-day.opt-active {
	background:#333;
}
.schedule-calendar.fc .fc-daygrid-day.opt-range {
	border-radius: 0;
}
.schedule-calendar.fc .fc-daygrid-day.opt-active.opt-start {
	border-radius: 20px 0 0 20px;
}
.schedule-calendar.fc .fc-daygrid-day.opt-active.opt-end {
	border-radius: 0 20px 20px 0;
}
.schedule-calendar.fc .fc-daygrid-day.opt-active.opt-start.opt-end {
	border-radius: 20px;
}
.schedule-calendar.fc .fc-daygrid-day.opt-range .fc-daygrid-day-number,
.schedule-calendar.fc .fc-daygrid-day.opt-active .fc-daygrid-day-number {
	color: #fff;
}
.schedule-calendar.fc .fc-daygrid-day.opt-disabled {
	pointer-events: none;
}
.schedule-calendar.fc .fc-daygrid-day.opt-disabled .fc-daygrid-day-number {
	color: #C8C8C8;
}
.schedule-area.opt-active {
	background: #000;
	position: sticky;
}
.schedule-area.opt-active .title {
	color: #fff;
}
.schedule-area.opt-active .date-box {
	background: #fff;
}
.schedule-area.opt-active .schedule-box .btn {
	background: var(--primary-color);
}
@media all and (max-width: 1023px) {
	.schedule-row .title {
		font-size: var(--font-size-20);
	}
	.schedule-modal {
		padding:30px;
	}
	.schedule-period {
		padding:5px;
	}
	.schedule-calendar {
		padding:30px 20px;
	}
}
@media all and (max-width: 767px) {
	.schedule-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px 0;
	}
	.schedule-row .title {
		width: 100%;
	}
	.schedule-row .title img {
		width: 170px;
	}
	.schedule-box {
		flex: 0 0 100%;
		width: 100%;
	}
	.schedule-box .date-box {
		height: 40px;
		font-size: var(--font-size-15);
	}
	.schedule-box .date-row {
		padding:0 5px;
	}
	.schedule-box .badge-box {
		font-size: var(--font-size-13);
		padding:0;
		width: 30px;
	}
	.schedule-box .btn {
		flex:0 0 65px;
		height: 40px;
		line-height: 40px;
		margin-left:5px;
		font-size: var(--font-size-15);
	}
	.schedule-modal {
		padding:20px;
	}
	.schedule-period .btn {
		height: 30px;
		padding:0 10px;
		font-size: var(--font-size-15);
	}
	.schedule-calendar-box {
		padding:20px 0;
	}
	.schedule-calendar {
		padding:0;
		flex:0 0 100%;
	}
	.schedule-calendar.fc .fc-toolbar-title {
		font-size: var(--font-size-22);
	}
	.schedule-calendar.fc .fc-header-toolbar {
		margin-bottom:0;
	}
	.schedule-calendar.fc th,
	.schedule-calendar.fc td {
		font-size: var(--font-size-15);
	}
	.schedule-calendar.fc th {
		padding:5px 0;
	}
	.schedule-calendar.fc .fc-daygrid-day-number {
		height: 33px;
	}
}


/* ## sub ## */
.sub-contents .main-menu .tab-basic.opt-type1 {
	margin-bottom: 0;
}
.sub-title {
	font-size: 2.5em;
	font-weight: 600;
	color: #fff;
}
.sub-wrap {
	background:#F7F7F7;
	padding:70px 0;
}
.sub-box {
	background:#fff;
	min-height: 500px;
	border-radius: 40px;
	padding:30px 50px;
}
.sub-wrap.opt-visual .sub-box {
	margin-top:-150px;
}
@media all and (max-width: 1023px) {
	.sub-title {
		font-size: 2.2em;
	}
	.sub-box {
		padding:20px 25px;
	}
}
@media all and (max-width: 767px) {
	.sub-title {
		font-size: var(--font-size-30);
	}
	.sub-wrap {
		padding:30px 0;
	}
	.sub-box {
		padding:20px;
		min-height: 300px;
		border-radius: 30px;
	}
}

/* ## paging ## */
.paging {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}
.paging-pages {
	display: flex;
	align-items: center;
	gap: 4px;
}
.paging-pages :is(a, span) {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #eee;
	border:1px solid #eee;
	border-radius: 5px;
	font-size: var(--font-size-15);
	transition: all 0.3s ease-in-out;
}
.paging-pages span {
	font-weight: 600;
	background: var(--primary-color);
	color: #fff;
}
.paging-first::before,
.paging-prev::before,
.paging-next::before,
.paging-last::before {
	display: block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	color: #a0a0a0;
}
.paging-first::before {
	content: "\f100";
}
.paging-prev::before {
	content: "\f104";
}
.paging-next::before {
	content: "\f105";
}
.paging-last::before {
	content: "\f101";
}
@media all and (max-width: 767px) {
	.paging-pages {
		gap: 3px;
	}
	.paging-pages :is(a, span) {
		width: 30px;
		height: 30px;
	}
}