* {
	box-sizing: border-box;
}
:root {
	--color-primary: #1365b0;
	--color-gray00: #fafafa;
	--color-gray01: #f0f0f0;
	--color-gray02: #e5e5e5;
	--color-gray03: #d6d6d6;
	--color-gray04: #d8d8d8;
	--color-gray05: #8f8f8f;
	--color-gray07: #616161;
	--color-gray08: #4e4e4e;
	--color-gray09: #2e2e2e;
	--color-danger: #f22b16;
	--color-warning: #f2dc16;
}

pre {
	font-family: inherit;
}
.auto {
	width: 1360px;
	margin: auto;
	padding: 0 20px;
	position: relative;
}
.w100 {
	width: 100% !important;
}
.mtn {
	margin-top: 0 !important;
}
.flex {
	display: flex;
}
.colorPrimary {
	color: #1365b0 !important;
}
.colorWarning {
	color: #fb3f4a !important;
}
.colorRed {
	color: #fb3f4a !important;
}
.txt {
	font-size: 16px;
	color: var(--color-gray08);
	font-weight: 500;
}
.wAuto {
	width: auto !important;
}
.dot-txt {
	position: relative;
	padding-left: 10px;
}
.dot-txt:before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--color-gray08);
}
.mt56 {
	margin-top: 56px;
}
.clearFix:after {
	content: "";
	display: block;
	clear: both;
}
body {
	min-width: 1360px;
	font-family: "Noto Sans KR";
	font-size: 14px;
	text-size-adjust: 100%;
	letter-spacing: -0.03rem;
	background: none;
	-webkit-print-color-adjust: exact !important;
}
a {
	color: inherit;
}
form, input, select, textarea, button {
	font-family: "Noto Sans KR";
	font-size: inherit;
	color: inherit;
}
#wrap {
	height: auto;
}
.inputText {
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #2e2e2e;
  position: relative;
  border: 1px solid #d6d6d6;
  border-radius: 25px;
  overflow: hidden;
}

.inputText:after {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0 16px;
  font-size: 12px;
  color: #b8b8b8;
  display: flex;
  align-items: center;
}
.inputText + .inputComment {
	display: none;
	position: absolute;
	top: 100%;
	font-size: 12px;
}
.inputText.error {
  border-color: #ff3b30;
  color: #ff3b30;
}
.inputText.error + .inputComment {
  display: block;
  color: #ff3b30;
}
.inputText.success {
  border-color: #26a212;
}
.inputText.success .util {
  color: #26a212;
}
.inputText.warning {
  border-color: #ff8c00;
  color: #ff8c00;
}
.inputText input {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border: 0;
}
.inputText input:disabled {
	background-color: var(--color-gray01);
}
.inputText .flex {
  display: flex;
  height: 100%;
}
.inputText .inputUtils {
  display: flex;
  align-items: center;
  padding-right: 16px;
}
.inputText .inputUtils button {
  max-width: 21px;
  line-height: 1;
}
.inputText .inputUtils button .material-icons {
  font-size: 21px;
  color: #616161;
}
.inputTel {
	display: flex;
	gap: 16px;
}
.inputTel > select,
.inputTel > div {
	width: 100%;
}
.checkbox,
.radioBox {
  display: inline-block;
  position: relative;
  line-height: 20px;
  vertical-align: top;
}

.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:checked + label:before {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  background-image: url("../images/new/icon-check.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.checkbox label {
  cursor: pointer;
  display: inline-block;
}
.checkbox label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  vertical-align: top;
  margin-right: 5px;
}

.radioBox > input[type=radio] {
  display: none;
}
.radioBox > input[type=radio]:checked + label:before {
  border: 6px solid var(--color-primary);
}
.radioBox > input[type=radio]:disabled + label:before {
	border: 1px solid var(--color-gray03);
	background-color: var(--color-gray00);
}
.radioBox > input[type=radio]:checked:disabled + label:before {
	border: 6px solid var(--color-gray03);
	background-color: var(--color-gray01);
}
.radioBox label {
  cursor: pointer;
}
.radioBox label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  vertical-align: top;
  box-sizing: border-box;
  margin-right: 5px;
}
.inlineLabels > div {
	display: inline-block;
	margin-right: 24px;
}
.inlineLabels > div:last-child {
	margin-right: 0;
}
select {
	height: 50px;
	border: 1px solid var(--color-gray03);
	width: 100%;
	padding: 0 10px;
	background: url("../images/new/select-arrow.svg") no-repeat right 10px center;
	-webkit-appearance: none;
  	-moz-appearance: none;
  	appearance: none;
}
textarea {
	width: 100%;
	resize: none;
	border: 1px solid #d6d6d6;
	height: 108px;
	padding: 10px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 50px;
  padding: 0 10px;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-width: 1px;
  border-style: solid;
}
.btn.btnPrimary {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.btn.btnPrimary.bdBtn {
  background-color: white;
  color: #003177;
}
.btn.btnSecondary {
  border-color: #009fe2;
  background-color: #009fe2;
}
.btn.btnSecondary.bdBtn {
  color: #009fe2;
  background-color: white;
}
.btn.btnGray {
  border-color: #d6d6d6;
  background-color: #fafafa;
  color: #777;
}
.btn.btnGray.bdBtn {
  background-color: white;
}
.bottomBtns {
	margin-top: 88px;
}
.bottomBtns .flex {
	justify-content: center;
	gap: 24px;
}
.bottomBtns.center .flex {
	justify-content: center;
}
.bottomBtns.right .flex {
	justify-content: flex-end;
}
.bottomBtns .btn {
	width: 200px;
}
body#main {
	margin: auto;
	overflow-x: visible;
	background-image: url("../images/new/mainContents-bg.jpg");
	background-position: center 0;
	background-repeat: no-repeat;
}
.toparea .areaSelect {
	position: absolute;
	right: 20px;
	top: 105px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	color: var(--color-gray08);
	font-weight: 500;
}
.toparea .areaSelect select {
	width: 140px;
	height: 40px;
	background-color: #fff;
}
.footer {
	padding: 20px 0 30px;
	background-color: #e0e0e0;
	color: #777;
	border-top: 1px solid #777;
}
.footer .auto {
	display: flex;
	align-items: center;
}
.footer .footerLogo {
	margin-right: 405px;
}
.footer .footerLogo svg path {
	fill: #777;
}
.footer .footerContents {
	display: flex;
	margin-right: 46px;
}
.footer .footerContents dl:first-child {
	margin-right: 64px;
}
.footer .footerContents dl dd {
	margin-top: 12px;
}
.footer .footerTerms {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}
.footer .footerTerms a:first-child {
}
#main .footer {
	width: 1800px;
	margin:auto;
	background: none;
	color: #fff;
	border-top-color: #fff;
}
#main .footer .footerLogo svg path {
	fill: #fff;
}
.mainContents .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 78px 20px 94px;
	box-sizing: border-box;
	margin: auto;
}
.mainContents .txtBox {
	text-align: center;
	margin-right: 130px;
}
.mainContents .txtBox img {
	display: block;
	margin: auto;
}
.mainContents .txtBox img:nth-child(2){
	margin-top: 15px;
}
.mainContents .txtBox img:nth-child(3){
	margin-top: 25px;
}
.mainContents .loginBox {
	width: 619px;
	padding: 52px 64px 28px;
	background-color: #fff;
	border-radius: 30px;
}
.boxTitle {
	text-align: center;
}
.boxTitle .main {
	font-size: 36px;
	color: #333;
	font-weight: 700;
}
.boxTitle .sub {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-top: 5px;
}
.boxTitle .sub span {
	color: #1365b0;
}
.mainContents .loginBox dl {
	margin-top: 24px;
}
.mainContents .loginBox dl dt {
	font-size: 14px;
	color: #808080;
}
.mainContents .loginBox dl dd {
	margin-top: 10px;
	position: relative;
}
.mainContents .loginBox .utils {
	margin: 34px 0;
	display: flex;
	justify-content: space-between; 
}
.mainContents .loginBox .idpwSearch a {
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
}
.mainContents .loginBox .idpwSearch a:after {
	content: "";
	position: absolute;
	top: 4px;
	right: -2px;
	width: 1px;
	height: 14px;
	background-color: #777;
}
.mainContents .loginBox .idpwSearch a:last-child {
	padding-right: 0;
	margin-right: 0;
}
.mainContents .loginBox .idpwSearch a:last-child:after {
	display: none;
}
.mainContents .loginBox .btn {
	width: 100%;
}
.mainContents .loginBox > p {
	margin-top: 10px;
	text-align: center;
	color: #808080;
}
.mainContents .loginBox p a {
	color: var(--color-primary);
}
.mainContents .loginBox .bottomBtns {
	margin-top: 41px;
	padding-top: 44px;
	border-top: 1px solid #ddd;
}
.mainContents .loginBox .bottomBtns .flex {
	display: flex;
	flex-direction: column;
}
.modalpop.popup {
	top: 100px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: 619px;
	height: auto;
	border-radius: 30px;
	overflow: hidden;
	border: 0;
	margin: 0;
	padding: 40px 0 46px;
	background-color: #fff;
}
.modalpop.scroll {
	bottom: 50px;
}
.modalpop.scroll .popupBody {
	height: calc(100% - 82px);
}
.modalpop.popup > form {
	height: 100%;
}
.modalpop.popup button.btn_closelayer {
	background-image: url("../images/new/btn-popupClose.svg");
	top: 16px;
	right: 16px;
}
.modalpop.popup .popupBody {
	padding: 0 75px;
	overflow: auto;
}
.modalpop.popup .boxTitle {
	margin-bottom: 42px;
}
.textForm .inputText {
	height: 40px;
	border-radius: 0;
}
.textForm {
	border-top: 1px solid var(--color-gray03);
}
.textForm dl {
	padding: 16px 0;
}
.textForm > dl {
	border-bottom: 1px solid var(--color-gray03);
}
.textForm dl dt {
	font-size: 18px;
	color: var(--color-gray08);
	white-space: nowrap;
}
.textForm dl dd {
	position: relative;
	min-height: 40px;
	margin-top: 8px;
	color: var(--color-gray07);
	width: 100%;	
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.textForm > .flex {
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 16px 24px;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-gray03);
}
.textForm > .flex:last-child {
	border-bottom: 0;
}
.textForm > .flex:first-child {
	padding-top: 0;
}
.textForm > .flex dl {
	padding: 0 !important;
	width: calc(50% - 12px);
}
.textForm .comment {
	font-size: 12px;
	color: var(--color-primary);
}
.textForm select {
	height: 40px;
}
.textForm .txt {
	font-size: 12px;
	white-space: nowrap;
}
.inputBtnBox {
	width: 100%;
	display: flex;
	gap: 24px;
}
.inputBtnBox .inputText {
	width: calc(70% - 24px);
}
.inputBtnBox .btn {
	width: 30%;
	height: 40px;
}
.modalpop.popup .bottomBtns {
	margin-top: 32px;
}
.alertInfoBox {
	text-align: center;
}
.alertInfoBox .txt {
	color: var(--color-gray09);
	font-size: 14px;
	font-weight: 500;
	margin-top: 16px;
}
.alertInfoBox .txt span {
	color: var(--color-primary);
}
.alertInfoBox .txt01 {
	font-size: 16px;
}
.alertInfoBox .txt02 {
	margin-top: 23px;
}
.modalpop.largePopup {
	top: 90px;
	overflow: visible;
	width: 1519px;
}
.modalpop.largePopup .boxTitle {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	margin-bottom: 29px;
}
.modalpop.largePopup .boxTitle p {
	color: #fff;
}
.modalpop.largePopup .popupBody > .flex {
	justify-content: space-between;
	position: relative;
}
.modalpop.largePopup .popupBody .textForm {
	width: calc(50% - 84px);
}
.modalpop.largePopup .textForm {
	border-top: 0;
	position: relative;
}
.modalpop.largePopup .textForm dl {
	padding: 16px 0;
}
.modalpop.largePopup .textForm dl:first-child {
	padding-top: 0;
}
.modalpop.largePopup .textForm > dl:last-child {
	border-bottom: 0;
}
.modalpop.largePopup .popupBody > .flex:after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: var(--color-gray04);
}
.modalpop.scroll.accountreg .bottomBtns {
	position: absolute;
	bottom: 47px;
	right: 47px;
	left: auto;
	padding: 0;
}
.modalpop.accountreg .bottomBtns .flex {
	gap: 16px;
}
.modalpop.accountreg .bottomBtns .btn {
	width: 140px;
	height: 48px;
}
.modalpop.accountreg .flex > .textForm:last-child .flex {
	border-bottom: 0;
}
.modalpop.accountreg .flex > .textForm:last-child .flex > dl {
	width: 100%;
}
.modalpop.searchId .popupBody {
	height: calc(100% - 210px);
}
.modalpop.scroll .bottomBtns {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	padding: 0 75px;
}
.modalpop.searchIdSuccess .searchIdSpan {
	display: block;
	margin: 100px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-gray04);
	text-align: center;
}
.modalpop.searchIdSuccess .searchIdSpan span {
	color: var(--color-primary);
}
.tree.smart-form li.parent_li > span:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}
.tree.smart-form li.parent_li > span:hover + ul li span {
	background-color: #669fd4 !important;
	border-color: var(--color-primary);
	color: #fff !important;
}
.tree.smart-form li.parent_li > span:hover + ul .checkbox {
	color: #fff !important;
}
.tree.smart-form li.parent_li>span:hover+ul li::before {
	border-left-color: var(--color-primary);
}
.tree.smart-form li.parent_li>span:hover+ul li::after {
	border-top-color: var(--color-primary);
}
.tree li {
	overflow: visible !important;
}
.tree.smart-form li.parent_li > span {
    display: inline-flex;
    align-items: center;
    padding: 2px 2px;
    min-height: 32px;
    width: auto;
    box-sizing: border-box;
}
.tree.smart-form li.parent_li > span .checkbox {
    position: relative;
    top: -10px;
    left: 3px;
}
.tree.smart-form .code-all {
    margin: 0;
    line-height: 1.4;
}
.tree.smart-form .code-all i {
    vertical-align: middle;
    line-height: 1;
}




.modalpop.popup .tree {
	width: auto;
	height: 500px;
	overflow-y: scroll;
}
.modalpop.popup .tree > ul {
	width: 200px;
	margin: auto;
}
.userSchoolApply {
	position: static;
}
.userSchoolApply .textForm dl dd {
	display: block;
}
.modalpop.largePopup.userSchoolApply .boxTitle {
	margin-bottom: 20px;
}
.modalpop.popup.scroll.userSchoolApply .popupBody {
	height: calc(100% - 85px);
}
.modalpop.popup.userSchoolApply .bottomBtns .btn {
	width: 140px;
}
.modalpop.popup.userSchoolApply .bottomBtns {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
}
.modalpop.popup.userSchoolApply .textForm:first-child {
	padding-top: 50px;
}
.modalpop.popup.userSchoolApply .pointInfo {
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
	color: #fb3f4a;
}
.dateSelect {
	display: flex;
	align-items: center;
	gap: 21px;
}
.dateSelect select {
	width: 81px;
}
.dateSelect .inputText {
	display: flex;
	width: auto;
}
.dateSelect .inputText input {
	width: 144px;
}
.dateSelect .inputText a.date-picker-control:link,
.dateSelect .inputText a.date-picker-control:hover,
.dateSelect .inputText a.date-picker-control:visited {
	width: 40px;
	height: 40px;
	background: url("../images/new/icon-calendar.svg") no-repeat 50% 50% var(--color-primary) !important;	
}
.point {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 10px;
}
.point:after {
	content: "";
	position: absolute;
	top: 0;
	left: 2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #fb3f4a;
}
table.boardwrite {
	border-top: 0;
	border-bottom: 0;
	border-collapse: collapse;
}
table.boardwrite tr {
	border-bottom: 1px solid var(--color-gray03);
}
table.boardwrite tbody th {
	background-color: #1365b01a;
	font-size: 16px;
	color: var(--color-gray08);
	font-weight: 700;
}
table.boardwrite tbody th,
table.boardwrite tbody td {
	border-right: 1px solid var(--color-gray03);
	padding: 25px 10px;
}
table.boardwrite tbody th:last-child,
table.boardwrite tbody td:last-child {
	border-right: 0;
}
.modalpop.userApplySearch .textForm {
	border-top: 0;
}
.modalpop.userApplySearch .textForm dl:last-child {
	border-bottom: 0;
}
.modalpop.userApplySearch table.boardwrite {
	text-align: center;
}
.modalpop.scroll.terms .popupBody {
	height: calc(100% - 170px);
}
.termsText {
	color: #000;
}
.modalpop.scroll.terms .boardwrite th,
.modalpop.scroll.terms .boardwrite td {
	padding: 16px;
}
.toparea {
	width: 100%;
	height: 97px;
	background-color: var(--color-primary);
	border-top: 0;
}
.toparea:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 56px;
	background-color: var(--color-gray00);
	z-index: -1;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.toparea h1 {
	top: 19px;
	left: 20px;
}
.toparea ul.topmenu {
	float: none;
	margin: 0;
	width: auto;
	padding: 32px 226px 32px 330px;
	display: flex;
	justify-content: space-between;
}
.toparea ul.topmenu li {
	width: auto;
}
.toparea ul.topmenu li a {
	font-size: 20px;
	color: #fff;
	font-weight: 500;
	font-family: "Noto Sans KR";
}
.toparea ul.topmenu li.on a,
.toparea ul.topmenu li:hover a {
	color: #9ccfff;
}
.toparea ul.topmenu li ul {
	top: 97px;
	left: 20px;
	z-index: 1;
	border-left: 0;
}
.toparea ul.topmenu li ul li {
	width: auto;
	height: 56px;
	border-right: 0;	
	margin-right: 30px;
}
.toparea ul.topmenu li ul li a {
	height: 100%;
	padding: 0;
	line-height: 56px;
	font-size: 16px;
	color: var(--color-gray04);
	font-weight: 500;
}
.toparea ul.topmenu li.on ul li.on > a,
.toparea ul.topmenu li.on ul li:hover > a {
	background: none;
	color: var(--color-primary) !important;
}
.toparea ul.topmenu li ul li div {
	top: 100%;
	left: 50%;
	transform: translate(-50%,-5px);
	width: 120px;
}
.toparea ul.topmenu li ul li div span {
	width: 100%;
	font-family: inherit;
	padding: 0;
}
.toparea ul.topmenu li ul li div span a {
	display: block;
	padding: 12px 10px;
	font-family: inherit;
	font-size: 14px;
	color: var(--color-gray07) !important;
	font-weight: 500;
	line-height: 1.2;
	background-color: #fff !important;
}
.toparea ul.topmenu li ul li div span a:hover {
	color: var(--color-primary) !important;
}
.toparea .gnb {
	position: absolute;
	top: 0;
	right: 20px;
	height: 100%;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 16px;
	padding-left: 27px;
}
.toparea .gnb:before {
	content: "";
	position: absolute;
	top: 37px;
	left: 0;
	width: 1px;
	height: 22px;
	background-color: var(--color-gray02);
}
.toparea .gnb a {
	font-size: 16px;
	color: #fff;
	background: none;
	font-family: "Noto Sans KR";
	padding: 0;
}
#overTimeMenu:after {
	content: "";
	position: absolute;
	right: -19px;
	top: 24px;
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--color-gray08);
	border-left: 2px solid var(--color-gray08);
	transform: rotate(-135deg);
}
.toparea ul.topmenu li:hover #overTimeMenu:after {
	border-color: var(--color-primary);
} 
.midarea {
	width: auto;
	min-height: 700px;
	margin: 0;
	background: url("../images/new/subpage-bg.png") no-repeat center 0 #fafafa;
}
.midarea .contentarea {
	width: 1320px;
	margin: 0 auto;
	padding: 120px 0 100px 0;
}
.midarea .contentarea .path {
	display: flex;
	align-items: center;
	gap: 20px;
}
.midarea .contentarea .path span {
	background: none;
	position: relative;
	font-weight: 500;
	padding: 0;
	height: 16px;
}
.midarea .contentarea .path span:after {
	content: "";
	position: absolute;
	top: 1px;
	right: -16px;
	width: 7px;
	height: 12px;
	background: url("../images/new/breadCrumbs-arrow.svg") no-repeat;
}
.midarea .contentarea .path strong {
	padding: 0;
	color: var(--color-primary);
	height: 16px;
}
.midarea .contentarea .path img {
	position: relative;
	top: -1px;
}
.areaBox {
	padding: 40px 35px;
	background-color: #fff;
	border: 1px solid var(--color-gray03);
	margin-bottom: 56px;
	position: relative;
}
.areaBox.radius {
	border-radius: 20px;
}
.midarea .contentarea h2 {
	padding: 0;
	height: 42px;
	font-size: 28px;
	color: var(--color-gray08);
	line-height: 42px;
	background: none;
	font-family: "Noto Sans KR";
	font-weight: 500;
	margin-top: 56px;
	margin-bottom: 24px;
}
.midarea .contentarea h2.mtn {
    font-size: 35px;
    line-height: 42px;
    white-space: nowrap;
}
.midarea .contentarea h2.bottomLine {
	position:relative;
}
.midarea .contentarea h2.bottomLine:after {
	content: "";
	position: absolute;
	bottom: -23px;
	left: 0;
	width: 87px;
	height: 1px;
	background-color: var(--color-gray05);
}
.schoolConditions {
	display: flex;
	align-items: center;
	gap: 180px;
	position: relative;
}
.schoolConditions:after {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 50%;
	width: 1px;
	background-color: var(--color-gray03);
}
.schoolConditions > div {
	width: 100%;
}
.schoolConditions .textForm {
	border-top: 0;
}
.schoolConditions .textForm .flex,
.schoolConditions .textForm dl {
	border-bottom: 0;
}
.schoolConditions .bottomBtns {
	margin-top: 45px;
}
.schoolConditions .btnset {
	width: 262px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: auto;
}
select#MEASURE {
	width: 200px;
}
.sourceBox {
	margin: 56px 0;
	text-align: center;
	font-size: 16px;
}
.sourceBox > p {
	font-size: 13px;
}
.sourceBox.left {
	text-align: left;
}
.sourceBox .innerBox {
	padding: 16px 54px;
	border: 1px solid var(--color-gray03);
	background-color: #f8fcff;
	color: var(--color-gray09);
}
.sourceBox .innerBox p {
	font-weight: 500;
	margin: 8px 0;
}
.sourceMark {
	display: inline-block;
	position: relative;
	top: 2px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #00ff66;
	margin-right: 12px;
}
.sourceMark[title]:hover:after {
	content: attr(title);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 97px;
	height: 65px;
	color: var(--color-gray09);
	white-space: nowrap;
	border-radius: 13px;
	background-image: url("../images/new/titleBalloon.png");
	background-repeat: no-repeat;
	background-size: cover;
	line-height: 53px;
	font-size: 12px;
	color: var(--color-gray08);
	font-weight: 500;
}
.sourceMark.warning[title]:hover:after {
	background-image: url("../images/new/titleBalloon-warning.png");
}
.sourceMark.danger[title]:hover:after {
	background-image: url("../images/new/titleBalloon-danger.png");
}
.sourceMark.danger {
	background-color: #f22b16;
}
.sourceMark.warning {
	background-color: #f2dc16;
}
.sourceBox > p {
	margin-top: 16px;
	color: #fb3f4a;
}
.schoolResultList {
	width: 100%;
	table-layout: fixed;
	border-collapse: separate;
	text-align: center;
	border-spacing: 0 24px;
}
.schoolResultList thead {
	height: 78px;
}
.schoolResultList thead th:nth-child(1),
.schoolResultList thead th:nth-child(2),
.schoolResultList thead th:nth-child(3) {
	width: 80px;
}

.schoolResultList thead th {
	padding: 13px 10px;
	background-color: rgba(19, 101, 176, 0.2);
	font-size: 18px;
	color: var(--color-gray08);
	font-weight: 500;
	word-break: keep-all;
}
.schoolResultList thead th:first-child {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}
.schoolResultList thead th:last-child {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}
.schoolResultList thead th a {
	display: inline-block;
	vertical-align: top;
	width: 16px;
	height: 26px;
	padding: 10px 0;
}
.schoolResultList thead th a:hover {
	border-bottom: 1px solid var(--color-gray03);
}
.schoolResultList tbody tr {
	background-color: #fff;
	border: 1px solid var(--color-gray03);
	border-radius: 20px;
}
.schoolResultList tbody tr td:first-child {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	border-left: 1px solid var(--color-gray03);
}
.schoolResultList tbody tr td:last-child {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	border-right: 1px solid var(--color-gray03);
}
.schoolResultList tbody tr td {
	padding: 23px 10px;
	font-size: 18px;
	border-top: 1px solid var(--color-gray03);
	border-bottom: 1px solid var(--color-gray03);
}
.schoolResultList tbody tr:hover {
	background-color: var(--color-primary);
}
.schoolResultList tbody tr:hover td {
	color: #fff;
}
.schoolResultList .sourceMark {
	margin-right: 2px;
}
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding-bottom: 0;
}
.pagination a {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	font-size: 16px;
	line-height: 46px;
	border: 1px solid transparent;
	text-align: center;
}
.pagination > a {
	border-color: var(--color-gray03);
}
.pagination > a button {
	width: 100% !important;
	height: 100%;
	background-position: 50% 50% !important;
	margin-right: 0;
}
.pagination > a button.btn_first {
	background-image: url("../images/new/paging-arrow-first.svg");
}
.pagination > a button.btn_prev {
	background-image: url("../images/new/paging-arrow-prev.svg");
}
.pagination > a button.btn_next {
	background-image: url("../images/new/paging-arrow-next.svg");
}
.pagination > a button.btn_final {
	background-image: url("../images/new/paging-arrow-last.svg");
}
.pagination span a {
	width: 48px;
	height: 48px;
	font-size: 16px;
	font-weight: 500;
	line-height: 46px;
	background: none;
	padding: 0;
	margin: 0;
}
.pagination span a.on {
	background-color: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}
.pagination span a:not(.on):hover {
	color: var(--color-primary);
}
ul.tabbox {
	background: none;
	height: auto;
	display: flex;
	margin-bottom: -1px;
}
ul.tabbox li {
	width: 312px;
	height: 80px;
	float: none;
	margin-right: 0;
}
ul.tabbox li a {
	width: 100%;
	height: 100%;
	background: #fafafa;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	font-size: 24px;
	font-weight: 500;
	line-height: 80px;
	padding-top: 0;
	border: 1px solid var(--color-gray03);
}
ul.tabbox li.on a {
	background: #fff;
	color: var(--color-primary);
	border-bottom-color: #fff;
}
ul.tabbox li:hover a {
	background: #fff;
	color: var(--color-primary);
	border-bottom-color: #fff;
}
.chk_diaglist {
}
.chk_diaglist h3 {
	padding: 0;
	border: 0;
	font-family: inherit;
	line-height: inherit;
	font-size: 28px;
	color: var(--color-gray09);
	text-align: left;
	margin-top: 56px;
	margin-bottom: 24px;
}
.chk_diaglist h3 strong {
	color: var(--color-primary);
}
.chk_diaglist h4 {
	margin: 0;
	padding: 0;
	background: none;
	text-align: left;
	font-size: 16px;
	color: var(--color-gray08);
	font-weight: 500;
}
.chk_diaglist .bottomBtns {
	margin: 18px 0;
}
.chk_diaglist .bottomBtns .flex {
	justify-content: flex-end;
}
.chk_diaglist .bottomBtns .flex .btn {
	width: 140px;
	height: 48px;
}
ul.move_section {
	display: flex;
	justify-content: space-between;
	padding-top: 26px;
	border-top: 1px solid var(--color-gray05);
}
ul.move_section li {
	width: 238px;
}
ul.move_section li a {
	display: block;
	width: 100%;
	height: 48px;
	border-radius: 30px;
	border: 1px solid var(--color-gray03);
	font-size: 16px;
	color: var(--color-gray06);
	font-weight: 500;
	line-height: 48px;
	padding-top: 0;
	background-color: #fff;
}
ul.move_section li a:hover,
ul.move_section li.on a {
	background-color: #fff;
	color: var(--color-primary);
	border-color: var(--color-primary);
}
table.boardlist {
	border-top: 0;
	margin-top: 10px;
}
table.boardlist thead th,
table.boardlist thead th:first-child,
table.boardlist tbody th,
table.boardlist tbody th.stit {
	background-color: rgba(19,101,176,0.1);
	font-size: 16px;
	border: 0;
}
table.boardlist td,
.chk_diaglist table.boardlist tbody td {
	border: 0;
}
table.boardlist {
	border-collapse: collapse;
	position: relative;
}
table.boardlist tr {
	border-bottom: 1px solid var(--color-gray03);
}
table.boardlist th,
table.boardlist thead tr th,
table.boardlist td {
	padding: 24px 10px;
	font-size: 14px;
}
table.boardlist tfoot th,
table.boardlist tfoot td,
table.boardlist .tfoot td {
	background-color: rgba(19, 101, 176, 0.7);
	color: #fff;
}
table.boardlist caption {
	position: absolute;
	bottom: 100%;
	right: 0;
	width: auto;
	height: auto;
	margin-bottom: 7px;
	font-size: 16px;
	color: var(--color-gray09);
	font-weight: 500;
	visibility: visible;
	overflow: visible;
}
.chk_diaglist h5 {
	font-size: 16px;
	color: var(--color-primary);
	font-weight: 500;
}
.chartFlex {
	display: flex;
	gap: 16px;
}
.chartBox {
	width: 100%;
}
.chartBox h4 {
	font-size: 24px;
	color: var(--color-primary);
	font-weight: 500;
	text-align: center;
	margin-bottom: 32px;
}
.chartBox .chart {
	padding: 24px;
	border: 1px solid var(--color-gray03);
	margin-bottom: 24px;
}
.chartBox .comment {
	margin-top: 16px;
	font-size: 12px;
	color: var(--color-danger);
	font-weight: 500;
	text-align: center;
}
.chartBottomComment {
	margin-top: -14px;
	margin-bottom: 40px;
	font-size: 12px;
	color: var(--color-danger);
	text-align: center;
}
.titleFlex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	margin-top: 24px;
	border-top: 1px solid var(--color-gray05);
}
.titleFlex h4 {
	font-size: 24px;
	color: var(--color-primary);
	font-weight: 500;
}
table.boardwrite {
	border-top: 0;
}
table.boardwrite thead th,
table.boardwrite thead th:first-child,
table.boardwrite tbody th,
table.boardwrite tbody th.stit {
	background-color: rgba(19,101,176,0.1);
	border: 0;
}
table.boardwrite th,
table.boardwrite thead tr th,
table.boardwrite td {
	padding: 24px 10px;
}
table.boardwrite thead tr th {
	text-align: center;
	font-size: 18px;
	color: var(--color-gray09);
}
table.boardwrite thead tr th strong {
	color: var(--color-primary);
}
table.boardwrite tbody tr th,
table.boardwrite tbody tr td {
	font-size: 16px;
	color: var(--color-gray08);
	font-weight: 500;
	line-height: 1.2;
}
table.boardwrite select {
	height: 40px;
}
table.boardwrite .comment {
	margin-top: 16px;
	color: var(--color-primary);
	font-size: 12px;
	font-weight: 500;
}
table.boardwrite .comment.inlineBlock {
	display: inline-block;
	vertical-align: top;
	margin-top: 0;
	margin-left: 24px;
}
table.boardwrite .comment.red {
	color: var(--color-danger);
}
.textInfoBox {
	background-color: #f8fcff;
	margin-top: 42px;
}
.textInfoBox p {
	font-size: 14px;
	color: var(--color-gray08);
	font-weight: 500;
	margin-top: 8px;
}
.textInfoBox p:first-child {
	margin-top: 0;
}
.textInfoBox a {
	color: var(--color-primary);
	font-weight: 700;
	text-decoration: underline;
}
.float-icon {
	bottom: 0;
	right: 100px;
	width: 100px;
	height: 100px;
	background-color: rgba(19, 101, 176, 0.3) !important;
	border: 1px solid var(--color-primary); 
	color: var(--color-primary);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
h4.chartTitle {
	text-align: center;
	font-size: 24px;
	color: var(--color-primary);
	font-weight: 500;
	margin-bottom: 16px;
}
.largeHR {
	display: block;
	margin: 88px 0;
}
.smallHR {
	display: block;
	margin: 24px 0;
	border-top: 1px solid var(--color-gray03);
}
.printWrap .titleH4 {
	margin: 20px 0 10px 0;
}
.printWrap.midarea {
	margin: auto;
}
.printWrap .contentarea {
	width: 100%;
	padding-top: 60px;
}
.printWrap .flex {
	gap: 50px;
}
.printWrap .flex table {
	width: 515px;
}
.printWrap .largeHR {
	margin: 60px 0;
}
.modalpop.ctgviewbox h4 {
	font-size: 16px;
	color: var(--color-gray09);
	margin: 20px 0 10px 0;
	padding-left: 0;
	background: none;
}
.infoPeriod {
	font-size: 16px;
	color: var(--color-gray09);
	font-weight: 500;
	margin: 24px 0 8px;
}
table.boardlist tr th.bg01 {
	background-color: var(--color-gray02);
}
table.boardlist tr th.bg02 {
	background-color: rgba(19, 101, 176, 0.4);
}
.bottomComment {
	text-align: center;
	font-size: 12px;
	color: var(--color-danger);
	margin-toP: 16px;
}
.graphbox ul.graphlist_02 li {
	position: relative;
}
.graphbox ul.graphlist_02 li:first-child:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 1px;
	height: 60%;
	background-color: #d6d6d6;
}
.chk_diaglist .cl {
	padding: 0;
}
.chk_diaglist .fl,
.chk_diaglist .fr {
	width: 612px
}
.recordObjectSearch {
	text-align: center;
	margin-bottom: 72px;
}
.recordObjectSearch .searchWrap {
	width: 624px;
	margin: auto;
}
.recordObjectSearch .searchWrap .textForm,
.recordObjectSearch .searchWrap .textForm .flex {
	border-top: 0;
	border-bottom: 0;
	text-align: left;
	justify-content: space-between;
}
.recordObjectSearch .searchWrap .inputText,
.recordObjectSearch .searchWrap select {
	width: 100%;
}
.recordObjectSearch .searchWrap .textForm > .flex {
	align-items: flex-end;
}
.recordObjectSearch .searchWrap .textForm > .flex dl {
	width: 192px;
}
.recordObjectSearch .searchWrap .textForm > .flex dl dt {
	white-space: nowrap;
}
.recordObjectSearch .searchWrap .textForm > .flex dl dd {
	height: 40px;
}
.move_section.item06 {
	justify-content: flex-start;
	gap: 32px;
	padding-top: 0;
	border-top: 0;
	margin-top: 20px;
	padding-bottom: 49px;
	border-bottom: 1px solid var(--color-gray04);
	margin-bottom: 49px;
}
.move_section.item06 li {
	width: calc(16.66% - 27px);
}
.tabContents > ol > li {
	display: none;
}
.tabContents > ol > li:first-child {
	display: block;
}
table.recordStudendInfo {
	border-top: 1px solid var(--color-gray03);
}
table.recordStudendInfo .inputText {
	border-radius: 0;
}
table.recordStudendInfo td {
	position: relative;
}
table.recordStudendInfo a {
	position: absolute;
	bottom: 25px;
	right: 25px;
	color: var(--color-primary);
	text-decoration: underline;
}
.recordStudendInfoWrap .number {
	width: 239px;
	font-size: 21px;
	color: var(--color-primary);
	line-height: 80px;
	text-align: center;
	border: 1px solid var(--color-gray03);
	border-bottom: 0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background-color: #fff;
	margin-bottom: -1px;
	position: relative;
	z-index: 1;
}
.recordStudendInfoWrap .inner {
	padding: 64px 32px;
	border: 1px solid var(--color-gray03);
}
.stats_list h3 {
	font-size: 21px;
	color: var(--color-primary);
	font-weight: 500;
	background: none;
	padding-left: 0;
	margin-top: 40px;
}
.stats_list h4:not(.chartTitle) {
	font-size: 16px;
	color: var(--color-gray08);
	font-weight: 500;
}
.smButtons {
	display: flex;
	gap: 24px;
}
.smButtons .btn {
	width: 88px;
	height: 40px;
	border-radius: 0;
	background: none;
	color: var(--color-gray06);
	border: 1px solid var(--color-gray03);
}
.smButtons .btn.on {
	background-color: var(--color-primary);
	color: #fff;
}
.avgDaySearch {
	position: relative;
}
.avgDaySearch > .btn {
	position: absolute;
	top: 0;
	right: 0;
	height: 40px;
	padding: 0 20px;
}
.avgDaySearch .searchWrap {
	margin-top: 48px;
	border-top: 0;
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 8px;
}
.avgDaySearch .searchWrap h4 {
	font-size: 18px;
	color: var(--color-gray08);
	font-weight: 500;
}
.avgDaySearch .searchWrap .dateSelect {
	
}
.avgDaySearch .searchWrap .dateSelect .btn {
	width: 88px;
	height: 40px;
	border-radius: 0;
	background-color: var(--color-primary);
	color: #fff;
	border: 1px solid var(--color-primary);
}
.avgDaySearch .textBox {
	/*
	position: absolute;
	top: -50px;
	left: 55%;
	*/
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 24px;
}
.move_section.middleTab {
	border-top: 0;
	padding: 50px 0;
	margin-top: -56px;
	justify-content: center;
	gap: 32px;
}
.tableFlex {
	display: flex;
	gap: 24px;
}
.tableFlex table.boardlist {
	width: 60%;
}
.tableFlex table.boardlist:first-child {
	width: calc(40% - 24px);
}
.tabMenu {
	display: flex;
	gap: 24px;
	margin-bottom: 40px;
}
.tabMenu li {
	width: 168px;
}
.tabMenu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	font-size: 14px;
	color: var(--color-gray06);
	background-color: var(--color-gray00);
	border: 1px solid var(--color-gray03);
	border-radius: 20px;
	overflow: hidden;
}
.tabMenu li.on a {
	border-color: var(--color-primary);
	background-color: var(--color-primary);
	color: #fff;
}
.teachermag .flex {
	position: relative;
	justify-content: space-between;
}
.teachermag .flex:after {
	content: "";
	position: absolute;
	top: 50px;
	bottom: 100px;
	left: 620px;
	width: 1px;
	background-color: var(--color-gray07);
}
.teachermag .applylist {
	float: none;
	width: 580px;
}
.teachermag .applylist .tableBox {
	height: 524px;
}
.teachermag .applylist .pagination {
	padding-bottom: 0;
}
.teachermag .areaBox {
	padding: 40px 50px;
}
.teachermag .accountinfo {
	float: none;
	width: 660px;
}
.teachermag .applylist .schoolResultList tbody tr td {
	padding: 15px;
}
.textForm02 {
	border-top: 0;
}
.textForm02 dl {
	border-bottom: 0;
	padding: 0;
	margin-top: 24px;
}
.textForm.dl03 dl {
	width: calc(33.33% - 24px);
}
.sch_resultlist .bottomBtns {
	margin-top: 8px;
}
.bottomBtns .txt {
	margin-bottom: 10px;
	text-align: center;
}
.modalpop dl.warning dt {
	height: auto;
}
.modalpop dl.warning dd {
	font-size: 18px;
	color: var(--color-gray08);
	font-weight: 500;
}
.accountModify.flex {
	justify-content: space-between;
	align-items: center;
}
.accountModify.flex:after {
	background-color: var(--color-gray03);
	bottom: 50px;
	left: 50%;
}
.accountModify > .textForm {
	width: calc(50% - 62px);
	border-top: 0;
}
.accountModify > .textForm:not(.textForm02) dl {
	padding: 24px 0;
}
.accountModify > .textForm:not(.textForm02) dl:last-child {
	border-bottom: 0;
}
.accountModify.student {
	position: relative;
}
.accountModify.student:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background-color: var(--color-gray03);
}
.accountModify.student .textForm .flex {
	border-bottom: 0;
	padding: 0;
}
.accountModify.student .textForm dl {
	width: calc(33.33% - 16px);
}
.accountModify.student .textForm textarea {
	height: 249px;
}
.useTimeGravity .tableFlex .boardlist thead tr th {
	line-height: 1.4;
	height: 48px;
	padding: 0 10px;
}
.useTimeGravity .tableFlex .boardlist thead tr:first-child th {
	font-size: 18px;
	height: 56px;
}
.useTimeGravity .tableFlex .boardlist:first-child thead tr th {
	height: 104px;
}
.modalpop.popup.cyber {
	width: 872px;
	padding-bottom: 97px;
}
.modalpop.popup.cyber .textForm dl {
	border-bottom: 0;
}
.modalpop.popup.cyber .textForm dl dd {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
}
.modalpop.popup.cyber .textForm select {
	width: 88px;
	height: 32px;
	margin-left: 8px;
	margin-right: 16px;
	font-size: 14px;
}
.modalpop.popup.cyber .textForm .btn {
	width: 64px;
	min-width: auto;
	height: 32px;
	font-size: 14px;
}
.modalpop.popup.cyber .boardlist {
	table-layout: fixed;
}
.modalpop.popup.cyber .boardlist th,
.modalpop.popup.cyber .boardlist td {
	padding: 14px 10px;
}
.modalpop.popup.cyber .boardlist .inputText {
	border-radius: 0;
	width: 93px;
	height: 32px;
	margin: auto;
}
.modalpop.popup.cyber .bottomBtns {
	bottom: 24px;
}
.modalpop.popup.cyber .tableScrollBox {
	height: 390px;
	overflow: auto;
}
.modalpop.popup.uploaddata fieldset {
	padding: 30px 24px;
	margin: 0;
	margin-top: 32px;
	width: 100%;
	background-color: var(--color-gray01);
	display: flex;
	gap: 16px;
	position: relative;
}
.modalpop.popup.uploaddata fieldset:before {
	content: "";
	position: absolute;
	top: -32px;
	left: 0;
	right: 0;
	height: 1px;
	background-color: var(--color-gray03);
}
.modalpop.popup.uploaddata fieldset label {
	width: 96px;
	height: 32px;
	text-align: center;
	border: 1px solid var(--color-gray03);
	background-color: rgba(255,255,255,0.6);
	font-size: 14px;
	color: var(--color-primary);
	font-weight: 500;
	line-height: 32px;
}
.modalpop.popup.uploaddata fieldset input {
	width: calc(100% - 112px);
	height: 32px;
	border: 0;
	background: none;
}
.modalpop.popup.uploaddata .comment {
	text-align: center;
	margin-top: 8px;
	color: var(--color-primary);
}
.upload-hidden {
	display: none !important;
}
.modalpop dl.warning dd {
	font-size: 16px;
	line-height: 1.4;
}
.modalpop.popup.accountregok .comment {
	margin-top: 16px;
}
.boardlist02 {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	background-color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}
.boardlist02 thead th {
	font-size: 16px;
	font-weight: 700;
	padding: 30px 10px;
	background-color: rgba(19, 101, 176, 0.3);
}
.boardlist02 tr {
	border-bottom: 1px solid var(--color-gray03);
}
.boardlist02 tbody tr:hover {
	background-color: var(--color-primary);
	color: #fff;
}
.boardlist02 tbody tr:hover svg path {
	stroke: #fff;
}
.boardlist02 tbody tr td {
	padding: 30px 10px;
	border-right: 1px solid var(--color-gray03);
}
.boardlist02 tbody tr td svg {
	position: relative;
	top: 6px;
	margin-left: -8px;
}
.boardlist02 tbody tr td:last-child {
	border-right: 0;
}
.boardlist02 tbody tr td.subject {
	text-align: left;
}
.boardlist02 tbody tr td.subject svg.reply {
	position: relative;
	top: 4px;
	margin-left: 0;
}
.boardView {
	background-color: #fff;
	border-top: 1px solid var(--color-gray03);
	border-bottom: 1px solid var(--color-gray03);
}
.boardViewHeader .flex {
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--color-gray03);
	padding: 25px 30px;
}
.boardViewHeader dl {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 16px;
	font-weight: 500;
}

.boardViewHeader dl:last-child {
	justify-content: flex-end;
}
.boardViewHeader dl dt {
	color: var(--color-gray09);
}
.boardViewHeader dl dd {
	color: var(--color-gray05);
}
.boardViewHeader dl dd.subject {
	width: 806px;
}
.boardViewHeader .dateWriter {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
}
.boardViewHeader .dateWriter dl {
	gap: 8px;
}
.boardViewBody {
	padding: 40px 30px;
}
.boardTopUtil {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  gap: 16px;
}

.boardTopUtil .boardSearchBox {
  background: none;
  padding: 0;
}

.boardTotal {
  font-size: 16px;
  color: var(--color-gray07);
  font-weight: 700;
}

.boardTotal .colorPrimary {
  color: #000;
}

.boardSearchBox {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 48px 0;
  background-color: var(--color-gray00);
}

.boardSearchBox .searchBox {
  display: flex;
  gap: 16px;
}

.boardSearchBox .inputText {
  width: 454px;
  border-radius: 0;
}
.boardSearchBox select {
	width: 144px;
	background-color: #fff;
}
.boardSearchBox .btn {
  height: 50px;
  border-radius: 0;
}
.prevNext dl {
	display: flex;
	font-weight: 500;
	border-top: 1px solid var(--color-gray03);
	line-height: 24px;
	font-size: 16px;
}
.prevNext dl dt {
	width: 129px;
	padding: 30px;
	color: var(--color-gray09);
	position: relative;
}
.prevNext dl dt:after {
	content: "";
	position: absolute;
	top: 33px;
	right: 0;
	width: 1px;
	height: 20px;
	background-color: var(--color-gray02);
}
.prevNext dl dd {
	position: relative;
	width: calc(100% - 129px);
	padding: 30px 183px 30px 30px;
	color: var(--color-gray06);
	font-size: 16px;
}
.prevNext dl dd .date {
	position: absolute;
	top: 29px;
	right: 30px;
}
.boardDownload {
	border-top: 1px solid var(--color-gray03);
}
.boardDownload dl {
	display: flex;
}
.boardDownload dl dt {
	width: 129px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.1);
	text-align: center;
	font-size: 16px;
	color: var(--color-gray09);
	font-weight: 500;
}
.boardDownload dl dd {
	padding: 30px 23px;
	width: calc(100% - 129px);
}
.boardDownload ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.boardDownload ul li {
	position: relative;
	padding-right: 125px;
}
.boardDownload ul li .btn {
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 0;
	width: 96px;
	height: 40px;
}
.boardDownload ul li a {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	line-height: 40px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.boardDownload ul li a img {
	position: relative;
	top: 6px;
}
.myInfoModify dl dt {
	font-size: 18px;
	color: var(--color-gray08);
	font-weight: 500;
}
.myInfoModify dl dd {
	margin-top: 8px;
}
.myInfoModify .inputText {
	border-radius: 0;
	height: 40px;
	font-size: 14px;
}
.myInfoModify .modifyTop {
	width: 790px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 24px 56px;
	padding: 52px 0;
}
.myInfoModify .modifyTop dl {
	width: calc(50% - 28px);
}
.myInfoModify .modifyBottom {
	padding-top: 32px;
	border-top: 1px solid var(--color-gray03);
	display: flex;
	flex-wrap: wrap;
	gap: 56px 0;
}
.myInfoModify .modifyBottom dl {
	padding: 0 80px;
	width: 50%;
}
.myInfoModify .modifyBottom .inlineLabels {
	white-space: nowrap;
}
.siteMap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 11;
  border-bottom: 1px solid var(--color-gray03);
  display: none;
  overflow: auto;
}

.siteMap .imgBox {
  height: 100%;
  min-height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-image: url("/images/new/sitemapBg.png");
  position: absolute;
  top: 0;
  left: 0;
  width: 415px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.siteMap .imgBox span {
  font-size: 44px;
  color: #fff;
  font-weight: 700;
}

.siteMap .allMenu {
  display: flex;
  align-items: center;
  min-width: 1400px;
  height: 100%;
  min-height: 800px;
  padding-left: 415px;
}

.siteMap .allMenu>ul {
  width: 100%;
  padding-right: 51px;
  padding-left: 68px;
}

.siteMap .allMenu>ul>li {
  display: flex; 
  align-items: center;
  width: 100%;
}

.siteMap .allMenu>ul>li>a {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  display: block;
  width: 160px;
  padding: 46px 0;
}

.siteMap .allMenu>ul>li:hover>a {
  color: var(--color-primary);
}
.siteMap .allMenu .sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 16px 40px;
  padding: 50px 0;
  width: calc(100% - 160px);
  border-bottom: 1px solid var(--color-gray03);
}
.siteMap .allMenu li:last-child .sub {
	border-bottom: 0;
}
.siteMap .allMenu .sub li a {
  font-size: 18px;
  color: var(--color-gray06);
  font-weight: 500;
}
.siteMap .allMenu .sub li a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.siteMap .allMenu .depth03 li {
  position: relative;
  padding-left: 10px;
}

.siteMap .allMenu .depth03 li:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: var(--color-gray03);
}

.siteMap .allMenu .depth03 li a {
  color: var(--color-gray7);
}
.siteMap .btnClose {
	position: absolute;
	top: 30px;
	right: 30px;
}
.video_box {
	margin: auto;
	width: 675px;
	position: relative;
}
.video_box .video-hover {
	box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.video_box p {
	font-size: 16px;
	color: var(--color-gray08);
	font-weight: 500;
	text-align: center;
	margin-top: 24px;
}
.play-go a.play-a {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: 0;
	margin-left: 0;
}
.sPhone {
	position: absolute;
	top: 40px;
	left: 200px;
}
.sPhone a {
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.3);
}
.sPhone button {
	background: none;
	position: absolute;
	top: 0;
	right: 0;
}
#reply .boardWrite {
	margin-top: 56px;
}
.boardWrite .boardViewHeader .flex {
	padding: 0;
	gap: 0;
}
.boardWrite .boardViewHeader dl {
	gap: 0;
	width: 100%;
	border-bottom: 1px solid var(--color-gray03);
}
.boardWrite .boardViewHeader dl.vat {
	align-items: flex-start;
}
.boardWrite .boardViewHeader dl:last-child {
	border-bottom: 0;
}
.boardWrite .boardViewHeader dl dt {
	width: 129px;
	padding: 16px 30px;
}
.boardWrite .boardViewHeader dl dd {
	width: calc(100% - 129px);
	padding: 16px 30px 16px 0;
}
.boardWrite .inputText {
	border-radius: 0;
	width: 100%;
}
.boardWrite textarea {
	height: 240px;
}
.inputUpload {
	display: flex;
	gap: 8px;
}
.inputUpload input[type="file"] {
	display: none;
}
.inputUpload label {
	display: block;
	width: 96px;
	height: 32px;
	border: 1px solid var(--color-primary);
	font-size: 12px;
	color: var(--color-primary);
	font-weight: 500;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
}
.inputUpload .filename {
	border: 0;
	width: 320px;
}
.fileDiv .txtarea {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	width: 424px;
}
.fileDiv .txtarea .btns {
	position: absolute;
	top: 0;
	left: 100%;
	margin-left: 16px;
	display: flex;
	gap: 16px;
}
.fileDiv .txtarea button {
	width: 72px;
	border: 1px solid var(--color-gray03);
	height: 32px;
	font-size: 12px;
	color: var(--color-gray05);
	font-weight: 500;
	line-height: 30px;
	background-color: #fff;
}
.boardWrite .boardViewHeader > .flex {
	width: auto;
	border-bottom: 0;
}
.boardView .fileList {
	margin-bottom: 16px;
}
.boardView .fileList .checkbox {
	display: block;
	margin-bottom: 4px;
}
#btnTop {
	position: sticky;
	bottom: 50px;
	height: 0;
	display: flex;
	justify-content: flex-end;
	text-decoration: none;
	transition: .5s;
	opacity: 0;
}
#btnTop .float {
	position: relative;
	top: -150px;
	right: 50px;
	margin: 0;
}
.schollSearchWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 22px 98px 22px 19px;
}
.schollSearchWrap + .bottomBtns {
	margin-top: 40px;
}
.schollSearchWrap .textForm {
	display: flex;
	border-top: 0;
}
.schollSearchWrap .textForm dl {
	padding: 0;
	border-bottom: 0;
}
.schollSearchWrap h2 {
	margin-bottom: 0 !important;
	margin-right: 58px;
}
.schollSearchWrap .searchBox01 {
	width: 540px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.schollSearchWrap .searchBox01 .textForm {
	justify-content: space-between;
	align-items: flex-end;
}
.schollSearchWrap .searchBox01 dd > .inputText {
	width: 140px;
}
.schollSearchWrap .searchBox01 select {
	width: 119px;
}
.schollSearchWrap .searchBox02 {
	width: 358px;
	margin-left: 45px;
}
.schollSearchWrap .searchBox02 .textForm {
	flex-wrap: wrap;
	gap: 40px 78px;
}
.schollSearchWrap .searchBox02 .textForm dl {
	width: 140px;
}
.schollSearchWrap .btn {
	position: absolute;
	bottom: 22px;
	right: 99px;
	width: 140px;
	height: 74px;
	border-radius: 10px;
}
.btnRegist {
	display: inline-block;
	border-radius: 20px;
	background-color: var(--color-primary);
	padding: 0 10px;
	font-size: 12px;
	color: #fff;
	line-height: 25px;
	margin-left: 0px;
}
.btnRegist:hover {
	text-decoration: underline;
}
.btnRegist .icon {
	display: inline-block;
	position: relative;
	top: 2px;
	margin-left: 3px;
	width: 14px;
	height: 14px;
	background: url("/images/new/icon-edit.svg") no-repeat;
}
.schoolResultList tbody tr:hover .btnRegist {
	color: var(--color-primary);
	background-color: #fff;
}
.schoolResultList tbody tr:hover .btnRegist .icon {
	background: url("/images/new/icon-edit-on.svg") no-repeat;
}
.schollSearchWrap02 .searchBox02 .textForm {
	gap: 25px 78px;
}
.schollSearchWrap02 .searchBox02 .textForm dl {
	width: 200px;
}
.schollSearchWrap03 {
	padding: 0;
	margin-top: 22px;
}
.schollSearchWrap03 .searchBox01 {
	width: auto;
}
.schollSearchWrap03 .searchBox01 .textForm {
	gap: 24px;
}
.schollSearchWrap03 .searchBox02 {
	margin-left: 0;
	width: auto;
}
.schollSearchWrap03 .searchBox02 .textForm {
	gap: 24px;
}
.schollSearchWrap03 .searchBox02 .textForm dl {
	width: 200px;
}
.schollSearchWrap03 .btn {
	position: static;
}
.linkBanner {
	display: block;
	width: 225px;
	margin-top: 16px;
}
img.rev {
	transform: rotateX(180deg);
}

.mobileToparea, .mobileMenuCancel {display: none;}