@charset "utf-8";
@import '/css/constants.css';

/* 폰트 */
@font-face {
	font-family: 'century Gothic';
	src: url('/fonts/CenturyGothic.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	unicode-range: U+0041-005A, U+0061-007A;
}
@font-face {
	font-family: 'century Gothic';
	src: url('/fonts/CenturyGothicBold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	unicode-range: U+0041-005A, U+0061-007A;
}
.centuryGothic {
	font-family: 'century Gothic', 'Noto Sans KR', sans-serif;
}
@font-face {
	font-family: 'KOTRA_BOLD-Bold';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.1/KOTRA_BOLD-Bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
.kotraBold {
	font-family: 'KOTRA_BOLD-Bold';
}

/* reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
ul,
ol {
	list-style-type: none;
}
h1 {
	margin: 0;
}
i {
	font-style: normal;
}
a {
	text-decoration: none;
	color: inherit;
}
a.block {
	display: block;
	width: 100%;
	height: 100%;
}
button {
	outline: none;
	border: none;
	background: none;
	cursor: pointer;
}
img {
	border: none;
}
html {
	font-size: 0.625em;
	color: #444;
}
body {
	font-family: 'Noto Sans KR', 'Lato', sans-serif;
	line-height: 1;
	overflow-x: hidden;
}
.clear:after {
	content: '';
	display: block;
	clear: both;
}
.pc {
	display: none;
}
.blind {
	position: absolute;
	top: -9999px;
	left: -9999px;
	text-indent: -9999px;
}
body.hidden {
	overflow: hidden;
}
section > h2 {
	display: none;
}

main {
	background-color: #f5f5fb;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}
main .main-inner {
	position: relative;
}
main > img {
	position: absolute;
	display: block;
}
main > img[alt='circle1'] {
	width: 128vw;
	top: -3.3vw;
	left: -7.2vw;
}
main > img[alt='circle2'] {
	width: 76%;
	bottom: -15.2vw;
	left: -36.6vw;
}
main > img[alt='circle3'] {
	width: 114vw;
	bottom: -41.6vw;
	left: 14.4vw;
}

button {
	cursor: pointer;
}

/* nav */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	display: none;
	z-index: 100;
}
.nav > .close-inner {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 255px);
	height: 100%;
}
.nav .nav-inner {
	position: absolute;
	width: 255px;
	height: 100%;
	background-color: #fff;
	animation-name: navCloseSlider;
	animation-duration: 0.8s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
	z-index: 2;
}
.nav .nav-inner h1 {
	width: 100px;
	height: 23px;
	background: url(/images/logo.svg) no-repeat;
	background-size: contain;
	margin: 20px 0 0 25px;
}
.nav .nav-inner button.close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 18px;
	height: 18px;
	text-indent: -9999px;
	background: url(/images/close_button.svg) no-repeat;
	background-size: contain;
}
.nav .nav-inner p {
	display: none;
}
.nav .nav-inner ul {
	margin-top: 40px;
}
.nav .nav-inner ul li {
	position: relative;
}
.nav .nav-inner ul li a {
	display: block;
	width: 100%;
	line-height: 50px;
	padding-left: 65px;
	color: #8379a0;
	font-size: 14px;
	font-weight: 500;
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: 35px 50%;
}
.nav .nav-inner .gnb_dashboard a {
	background-image: url(/images/gnb_dashboard.svg);
}
.nav .nav-inner .gnb_student_mgt a {
	background-image: url(/images/gnb_student_mgt.svg);
}
.nav .nav-inner .gnb_teacher_mgt a {
	background-image: url(/images/gnb_teacher_mgt.svg);
}
.nav .nav-inner .gnb_class_mgt a {
	background-image: url(/images/gnb_class_mgt.svg);
}
.nav .nav-inner .gnb_study_set a {
	background-image: url(/images/gnb_study_set.svg);
}
.nav .nav-inner .gnb_study_mgt a {
	background-image: url(/images/gnb_study_mgt.svg);
}
.nav .nav-inner .gnb_study_play a {
	background-image: url(/images/gnb_study_play.svg);
}
.nav .nav-inner .gnb_bill_mgt a {
	background-image: url(/images/gnb_bill_mgt.svg);
}
.nav .nav-inner .gnb_community a {
	background-image: url(/images/gnb_community.svg);
}
.nav .nav-inner .gnb_study_report a {
	background-image: url(/images/gnb_study_report.svg);
}
.nav .nav-inner .gnb_study_analysis a {
	background-image: url(/images/gnb_study_analysis.svg);
}
.nav .nav-inner .gnb_alrim a {
	background-image: url(/images/gnb_alrim.svg);
}
.nav .nav-inner .gnb_dashboard:hover a,
.nav .nav-inner .gnb_dashboard.on a {
	background-image: url(/images/gnb_dashboard_on.svg);
}
.nav .nav-inner .gnb_student_mgt:hover a,
.nav .nav-inner .gnb_student_mgt.on a {
	background-image: url(/images/gnb_student_mgt_on.svg);
}
.nav .nav-inner .gnb_teacher_mgt:hover a,
.nav .nav-inner .gnb_teacher_mgt.on a {
	background-image: url(/images/gnb_teacher_mgt.svg);
}
.nav .nav-inner .gnb_class_mgt:hover a,
.nav .nav-inner .gnb_class_mgt.on a {
	background-image: url(/images/gnb_class_mgt_on.svg);
}
.nav .nav-inner .gnb_study_set:hover a,
.nav .nav-inner .gnb_study_set.on a {
	background-image: url(/images/gnb_study_set_on.svg);
}
.nav .nav-inner .gnb_study_mgt:hover a,
.nav .nav-inner .gnb_study_mgt.on a {
	background-image: url(/images/gnb_study_mgt_on.svg);
}
.nav .nav-inner .gnb_study_play:hover a,
.nav .nav-inner .gnb_study_play.on a {
	background-image: url(/images/gnb_study_play_on.svg);
}
.nav .nav-inner .gnb_bill_mgt:hover a,
.nav .nav-inner .gnb_bill_mgt.on a {
	background-image: url(/images/gnb_bill_mgt_on.svg);
}
.nav .nav-inner .gnb_community:hover a,
.nav .nav-inner .gnb_community.on a {
	background-image: url(/images/gnb_community_on.svg);
}
.nav .nav-inner .gnb_study_report:hover a,
.nav .nav-inner .gnb_study_report.on a {
	background-image: url(/images/gnb_study_report_on.svg);
}
.nav .nav-inner .gnb_study_analysis:hover a,
.nav .nav-inner .gnb_study_analysis.on a {
	background-image: url(/images/gnb_study_analysis_on.svg);
}
.nav .nav-inner .gnb_alrim:hover a,
.nav .nav-inner .gnb_alrim.on a {
	background-image: url(/images/gnb_alrim_on.svg);
}
.nav .nav-inner ul li:hover a,
.nav .nav-inner ul li.on a {
	color: #864dff;
	font-weight: 700;
}
.nav .nav-inner ul li.on::before {
	content: '';
	display: block;
	width: 6px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	background: #864dff;
}
.nav .nav-inner ul li:hover::after,
.nav .nav-inner ul li.on::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	border-radius: 100px;
	background: #864dff;
}
@keyframes navOpenSlider {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0);
	}
}
@keyframes navCloseSlider {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}
.nav.active .nav-inner {
	animation-name: navOpenSlider;
}

/* header */
.header-inner {
	height: 62px;
	background-color: #fff;
	box-shadow: 0px 18px 40px rgba(58, 47, 91, 0.02);
	position: relative;
	z-index: 99;
}
.header-inner .m-menu {
	position: absolute;
	top: 50%;
	left: 5.5%;
	transform: translateY(-50%);
	display: block;
}
.header-inner .m-menu span {
	display: block;
	width: 20px;
	height: 2px;
	background: #3a2f5b;
	border-radius: 100px;
	text-indent: -9999px;
}
.header-inner .m-menu span:nth-of-type(2) {
	margin: 4px 0;
}
.header-inner .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.header-inner .logo img {
	display: block;
	width: 100px;
}
.header-inner .manager {
	position: absolute;
	top: 50%;
	right: 5.5%;
	transform: translateY(-50%);
}
.header-inner .manager > .text {
	display: none;
}
.header-inner .manager > button {
	width: 35px;
	height: 35px;
	background: url(/images/profile_bg.png) no-repeat;
	background-size: contain;
	text-indent: -9999px;
}
header .profile {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}
header .profile .close-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
header .profile .p-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 310px;
	height: 320px;
	border-radius: 20px;
}
header .profile .p-inner .bg {
	background: linear-gradient(90deg, #793cfa 0%, #c756ec 122.34%), #ffffff;
	border-radius: 20px 20px 0px 0px;
	height: 100px;
	padding: 30px 0 0 30px;
	color: #fff;
	letter-spacing: -0.5px;
}
header .profile .p-inner .bg strong {
	display: block;
	font-size: 19px;
	margin-bottom: 15px;
}
header .profile .p-inner .bg span {
	font-size: 14px;
}
header .profile .p-inner .bg span + span {
	margin-left: 13px;
}
header .profile .p-inner .menu {
	height: 220px;
	border-radius: 0 0 20px 20px;
	background: #fff;
	padding-top: 25px;
}
header .profile .p-inner .menu a {
	display: block;
	width: 100%;
	padding-left: 30px;
	font-size: 16px;
	line-height: 150%;
}
header .profile .p-inner .menu a span {
	vertical-align: middle;
}
header .profile .p-inner .menu a img {
	vertical-align: middle;
	width: 19px;
	margin-right: 9px;
}
header .profile .p-inner .menu hr {
	display: block;
	border: none;
	background: #ebedf4;
	height: 1px;
	width: 100%;
	margin: 25px 0;
}
header .profile .p-inner .menu button {
	display: block;
	float: right;
	margin: 25px 30px 0 0;
	width: 130px;
	height: 43px;
	font-size: 14px;
	border-radius: 200px;
	background: #f3f3f3;
}
header .profile .p-inner .menu button img {
	width: 16px;
	margin-right: 6px;
	vertical-align: middle;
}
header .profile .p-inner .menu button span {
	vertical-align: middle;
}

/* paging */
.paging {
	text-align: center;
	margin-top: 25px;
}
.paging.m-none {
	margin-top: 0;
}
.paging li {
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin-left: 5px;
	border-radius: 3px;
	border: 1px solid #ebedf4;
	background-color: #fff;
	text-indent: -9999px;
	line-height: 28px;
	background-repeat: no-repeat;
	background-size: 7px;
	background-position: 50%;
	color: #999;
}
.paging li a {
	display: block;
	width: 100%;
	height: 100%;
}
.paging li.number {
	font-size: 14px;
	font-weight: 400;
	text-indent: 0;
}
.paging li.number.on,
.paging li:hover {
	border-color: #3a2f5b;
}
.paging li.number.on a,
.paging li.number:hover a {
	color: #3a2f5b;
	font-weight: 700;
	cursor: pointer;
}

.paging li.box {
	cursor: pointer;
}

.paging li.prev {
	background-image: url(/images/prev_icon.svg);
	margin-left: 0;
}
.paging li.next {
	background-image: url(/images/next_icon.svg);
}
.paging li.prev:hover {
	background-image: url(/images/prev_icon_hover.svg);
}
.paging li.next:hover {
	background-image: url(/images/next_icon_hover.svg);
}

/* file */

.file-imgs {
	width: 112px;
	height: 112px;
	border: 1px solid #bcbbcb;
	background: #fff;
	box-sizing: border-box;
	position: relative;
	user-select: none;
}
.file-name {
	width: 112px;
	text-align: center;
	position: absolute;
	top: 82px;
	white-space: nowrap;
}

.file-wrap {
	display: flex;
	gap: 10px;
	flex-direction: row;
	flex-wrap: wrap;
	user-select: none;
}

.file-imgs .in-imgs {
	display: block;
	position: relative;
	overflow: hidden;
	width: 110px;
	height: 110px;
}

.file-imgs .in-imgs img {
	max-width: 100%;
	min-height: 100%;
}

.file-imgs .in-imgs .close {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	text-align: center;
	background: #222222;
	opacity: 0.5;
	cursor: pointer;
}

.file-imgs .in-imgs .close img {
	width: 18px;
	height: 18px;
}

.file-imgs .in-imgs .file-name {
	position: absolute;
	top: 90px;
	left: 0;
	width: 110px;
	padding: 0 10px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	z-index: 3;
}

.plus-file label {
	display: inline-block;
	width: 112px;
	height: 112px;
	border: 1px solid #bcbbcb;
	background-color: #fff;
	background-position: center;
	white-space: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.plus-file label input[type='file'] {
	display: none;
}

/* footer */
.footer {
	text-align: center;
	padding: 35px 0 50px;
	line-height: 180%;
	opacity: 0.6;
}
.footer strong {
	font-size: 12px;
	font-weight: 500;
	color: #aeadc5;
}
.footer p {
	font-size: 11px;
	color: #bcbbcb;
}

.contents .c-inner button {
	cursor: pointer;
}

/* headings */

h2.common {
	font-size: 2.4rem;
	color: var(--color-txt-h2);
}

@media screen and (max-width: 767px) {
	h2.common {
		font-size: 1.9rem;
	}
}
h3.common {
	font-size: 1.8rem;
	color: var(--color-txt-h3);
}

/* Genie membership assist-icon components */

.d-name strong {
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 14px;
	font-size: 1em;
	text-align: center;
	font-weight: 400;
	padding: 3px;
	box-sizing: border-box;
	margin-right: 4px;
	border-radius: 100%;
}

@media screen and (min-width: 768px) {
	.d-name strong {
		width: 24px;
		height: 24px;
		line-height: 17px;
		font-size: 1.2em;
	}
}

.c1 strong {
	color: var(--color-genie-disabled-g);
	background: var(--color-genie-disabled-bg);
}

.c2 strong {
	color: var(--color-genie-active-g);
	background: var(--color-genie-active-bg);
}

/*투명스크롤*/
.scrollbar--constants ::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
.scrollbar--constants ::-webkit-scrollbar-track {
	background-color: var(--color-scroll-track);
	border-radius: 5px;
}

.scrollbar--constants ::-webkit-scrollbar-thumb {
	background-color: var(--color-scroll-thumb);
	border-radius: 5px;
}

/*group-select gradient*/
.group-select {
	background: linear-gradient(90deg, rgba(121, 60, 250, 0.33) 0%, rgba(238, 81, 128, 0.97) 100%);
	box-shadow: 0px 28.2532px 62.7848px rgb(112 144 176 / 12%);
}
.group-select--1920 {
	background: linear-gradient(180deg, rgba(121, 60, 250, 0.33) 0%, rgba(238, 81, 128, 0.97) 100%);
}

/* table */
.table_data {
	width: 100%;
	height: 100%;
	font-size: 1.2rem;
}
.table_data__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 10px;
	background-color: #fff;
	width: 100%;
	margin: 0;
	box-shadow: 18px 18px 30px rgb(38 18 79 / 5%);
	min-height: 59px;
	text-align: center;
	transition: all 0.23s ease-in-out;
}
.table_data__row:nth-of-type(2n) {
	background-color: var(--color-table-2nth);
}
.table_data > ul {
	border-radius: var(--border-l);
	border-bottom: 1px solid #f8f8f8;
}
.table_data--title > ul {
	margin-top: 12px;
	border-bottom: 1px solid var(--color-border-neutral);
	background-color: var(--color-lipurple-bg);
}
.table_data > ul:last-child {
	margin-bottom: 15px;
}

.table_data > ul > li:first-child {
	width: 10%;
}
.table_data > ul > li:nth-child(2) {
	width: 25%;
}
.table_data > ul > li:nth-child(3) {
	width: 40%;
}
.table_data > ul > li:nth-child(4) {
	width: 25%;
}
.table_data.table_data--contents > ul:hover {
	background-color: var(--color-pointer-enter);
}

/* button */

.button--filled-primary {
	background: var(--color-active);
	border-radius: 4px;
	color: #fff;
	font-size: 1.2rem;
	transition: color 0.23s ease-in-out;
}
.button--filled-primary:hover {
	background: var(--color-selected);
	border-radius: 4px;
	color: #fff;
}

.button--filled-activate {
	background: var(--color-btn-action);
	border-radius: 4px;
	color: #fff;
	font-size: 1.2rem;
	transition: color 0.23s ease-in-out;
}
.button--filled-activate:hover {
	background: var(--color-genie-active-bg);
	border-radius: 4px;
	color: #fff;
}

.button--filled-deactivate {
	background: var(--color-disabled);
	border-radius: 4px;
	color: var(--color-disabled-inner);
	font-size: 1.2rem;
	transition: color 0.23s ease-in-out;
}
.button--filled-deactivate:hover {
	background: var(--color-disabled-input-txt);
	border-radius: 4px;
	color: var(--color-disabled-inner);
}
.button--outlined {
	border: 1px solid var(--color-active);
	border-radius: 4px;
	font-size: 1.2rem;
	color: var(--color-active);
	padding: 6px;
	transition: color 0.23s ease-in-out;
}
.button--outlined:hover {
	background-color: var(--color-selected);
	border-color: transparent;
	color: var(--color-table-2nth);
}
.button--outlined:focus {
	background-color: var(--color-active);
	border-color: transparent;
	color: var(--color-table-2nth);
}

/* 가로 해상도 768 이상 */
@media screen and (min-width: 768px) {
	main .main-inner {
		position: relative;
	}
	main > img {
		position: absolute;
		display: block;
	}
	main > img[alt='circle1'] {
		display: none;
	}
	main > img[alt='circle2'] {
		width: 695px;
		bottom: 6px;
		left: auto;
		right: -477px;
	}
	main > img[alt='circle3'] {
		width: 1166px;
		bottom: 314px;
		left: -67px;
	}

	/* nav */
	.nav > .close-inner {
		width: calc(100% - 230px);
	}
	.nav .nav-inner {
		width: 230px;
		border-top-right-radius: 20px;
	}
	.nav .nav-inner h1 {
		width: 136px;
		height: 31px;
		margin: 41px 0 0 47px;
	}
	.nav .nav-inner button.close {
		right: -40px;
		width: 40px;
		height: 40px;
		background: #864cff url(/images/close_button_white.svg) no-repeat;
		background-size: 16px;
		background-position: 50%;
		box-shadow: 4px 6px 10px rgba(63, 37, 137, 0.2);
		border-radius: 0 8px 8px 0;
	}
	.nav .nav-inner p {
		display: block;
		position: absolute;
		bottom: 70px;
		left: 30px;
		font-size: 12px;
		color: #bcbbcb;
		line-height: 150%;
		opacity: 0.6;
	}
	.nav .nav-inner p strong {
		line-height: 200%;
		font-size: 13px;
		color: #aeadc5;
	}
	.nav .nav-inner ul {
		margin-top: 22px;
	}
	.nav .nav-inner ul li + li {
		margin-top: 4px;
	}
	.nav .nav-inner ul li a {
		line-height: 52px;
		padding-left: 58px;
		background-size: 16px;
		background-position: 30px 50%;
	}
	.nav .nav-inner ul li.on::before {
		width: 4px;
	}
	.nav .nav-inner ul li:hover::after,
	.nav .nav-inner ul li.on::after {
		width: 7px;
		height: 7px;
	}

	/* header */
	.header-inner {
		height: 90px;
		box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
	}
	.header-inner .m-menu {
		left: 40px;
	}
	.header-inner .m-menu span {
		width: 18px;
		height: 2px;
	}
	.header-inner .logo img {
		width: 155px;
	}
	.header-inner .manager {
		right: 40px;
		text-align: right;
	}
	.header-inner .manager > .text {
		display: block;
		float: left;
		margin-right: 10px;
	}
	.header-inner .manager > .text strong {
		display: block;
		margin: 5px 0 4px;
		font-size: 16px;
		color: #7852d8;
	}
	.header-inner .manager > .text p {
		font-size: 12px;
		color: #38346a;
	}
	.header-inner .manager > button {
		width: 42px;
		height: 42px;
	}
	header .profile {
		position: absolute;
		height: 100%;
		background: none;
	}
	header .profile .p-inner {
		top: 75px;
		left: auto;
		right: 40px;
		transform: translate(0, 0);
		width: 220px;
		height: 240px;
		box-shadow: 0px 18px 40px rgba(59, 20, 169, 0.1);
		border-radius: 10px;
	}
	header .profile .p-inner .bg {
		background: linear-gradient(90deg, rgba(121, 60, 250, 0.6) 0%, rgba(199, 86, 236, 0.6) 100%), #6632fb;
		border-radius: 10px 10px 0px 0px;
		height: 80px;
		padding: 20px 0 0 16px;
	}
	header .profile .p-inner .bg strong {
		font-size: 16px;
		margin-bottom: 13px;
	}
	header .profile .p-inner .bg span {
		font-size: 12px;
	}
	header .profile .p-inner .bg span + span {
		margin-left: 9px;
	}
	header .profile .p-inner .menu {
		height: 160px;
		border-radius: 0 0 10px 10px;
		padding-top: 18px;
	}
	header .profile .p-inner .menu a {
		padding-left: 16px;
		font-size: 14px;
		width: 50%;
	}
	header .profile .p-inner .menu a img {
		width: 18px;
		margin-right: 10px;
	}
	header .profile .p-inner .menu hr {
		margin: 16px 0;
	}
	header .profile .p-inner .menu button {
		display: block;
		margin: 15px 20px 0 0;
		width: 95px;
		height: 32px;
		font-size: 12px;
	}

	/* paging */
	.paging {
		margin-top: 30px;
	}
	.paging li {
		width: 25px;
		height: 25px;
		margin-left: 4px;
		line-height: 23px;
		background-size: 7px;
	}
	.paging li.number {
		font-size: 12px;
	}

	/* footer */
	.footer {
		padding: 40px 0 50px;
	}
	.footer strong {
		font-size: 13px;
	}
	.footer p {
		font-size: 12px;
	}
}
/* 가로 해상도 1024 이상 */
@media screen and (min-width: 1024px) {
	main > img[alt='circle1'] {
		display: block;
		width: 823px;
		bottom: 96px;
		left: auto;
		right: -361px;
	}
	main > img[alt='circle2'] {
		width: 550px;
		bottom: -41px;
		left: auto;
		right: 37px;
	}
	main > img[alt='circle3'] {
		width: 923px;
		bottom: 202px;
		left: -52px;
	}

	/* header */
	.header-inner {
		background: none;
		height: 77px;
		box-shadow: none;
	}
	.header-inner .m-menu {
		left: 0;
		top: 20px;
		transform: translateY(0);
		width: 40px;
		height: 40px;
		background-color: #864cff;
		border-radius: 0px 8px 8px 0px;
		box-shadow: 4px 6px 10px rgba(63, 37, 137, 0.2);
		padding-left: 10px;
	}
	.header-inner .m-menu span {
		background: #fff;
		border-radius: 100px;
	}
	.header-inner .logo {
		transform: translateY(0);
		left: 60px;
		top: 25px;
	}
	.header-inner .logo img {
		width: 136px;
	}
	.header-inner .manager {
		right: 40px;
		transform: translateY(0);
		bottom: 0;
		text-align: right;
	}
	.header-inner .manager > .text {
		margin-right: 11px;
		line-height: 150%;
	}
	.header-inner .manager > .text strong {
		display: block;
		margin: 4px 0;
		font-size: 14px;
	}
	.header-inner .manager > .text p {
		font-size: 14px;
	}
	.header-inner .manager > button {
		width: 40px;
		height: 40px;
	}
	header .profile .p-inner {
		top: 90px;
	}

	/* footer */
	.footer {
		display: none;
	}
}
/* 가로 해상도 1500 이상 */
@media screen and (min-width: 1500px) {
	main > img[alt='circle1'] {
		display: block;
		width: 1911px;
		bottom: -35px;
		left: auto;
		right: -1395px;
	}
	main > img[alt='circle2'] {
		width: 1276px;
		bottom: -356px;
		left: auto;
		right: -470px;
	}
	main > img[alt='circle3'] {
		width: 2141px;
		bottom: 210px;
		left: -440px;
	}

	/* nav */
	.nav {
		position: absolute;
		width: 230px;
		height: 100%;
		background-color: transparent;
		display: block !important;
	}
	.nav > .close-inner {
		width: 0;
		height: 0;
		display: none;
	}
	.nav .nav-inner {
		box-shadow: 0px 4px 15px rgba(31, 45, 84, 0.2);
		animation: none;
	}
	.nav .nav-inner button.close {
		display: none;
	}
	main > img[alt='circle1'] {
		display: block;
		width: 823px;
		bottom: 96px;
		left: auto;
		right: -361px;
	}
	main > img[alt='circle2'] {
		width: 550px;
		bottom: -41px;
		left: auto;
		right: 37px;
	}
	main > img[alt='circle3'] {
		width: 923px;
		bottom: 202px;
		left: -52px;
	}

	/* header */
	.header-inner .m-menu {
		display: none;
	}
	.header-inner .logo {
		display: none;
	}
	.header-inner .manager {
		right: 50px;
	}
	.header-inner .manager > .text {
		margin-right: 12px;
	}
	header .profile .p-inner {
		right: 50px;
	}
}
/* 가로 해상도 1920 이상 */
@media screen and (min-width: 1920px) {
	main > img[alt='circle1'] {
		display: block;
		width: 1911px;
		bottom: -35px;
		left: auto;
		right: -974px;
	}
	main > img[alt='circle2'] {
		width: 1276px;
		bottom: -356px;
		left: auto;
		right: -49px;
	}
	main > img[alt='circle3'] {
		width: 2141px;
		bottom: 210px;
		left: -440px;
	}

	/* header */
	.header-inner .manager {
		right: 75px;
	}
	header .profile .p-inner {
		right: 75px;
	}
}
