@charset "utf-8";
/*-------------------------------------------------------------------------------------------------------------
	File : Layout.css
	CSS 적용순서 : 아이디 > 태그와 클래스 > 클래스 > 태그
	CSS 선택자 선언순서 : Type Selector, Layout Selector, Class Selector, Etc
	CSS 속성 선언순서 : display, position, float/clear, overflow, width/height, margin/padding, border, background, font/color, align, etc
	neocave 2020
-------------------------------------------------------------------------------------------------------------*/

/* 저사양모드 */
.specToggleBtn { width: auto; color: #fff; background-color: #4a4f5d; font-size: 15px; border-radius: 5px; height: 36px; padding: 0 25px; margin-bottom: 20px; border: 2px solid transparent; transition: 0.3s;}
.specToggleBtn:hover {border:2px solid rgba(255, 255, 255, 0.8);}
#wrapper.lowSpecMode .wonBox1,
#wrapper.lowSpecMode .wonBox2,
#wrapper.lowSpecMode .wonBoxSub,
#wrapper.lowSpecMode .wonBox1 .won2,
#wrapper.lowSpecMode .wonBox2 .won2,
#wrapper.lowSpecMode .wonBoxSub .won2,
#wrapper.lowSpecMode .contentBody .wonBox1,
#wrapper.lowSpecMode .contentBody .wonBox2,
#wrapper.lowSpecMode .bg-fade,
#wrapper.lowSpecMode .bg-fade2,
#wrapper.lowSpecMode .bg-fade3,
#wrapper.lowSpecMode .diagram01,
#wrapper.lowSpecMode .diagram02,
#wrapper.lowSpecMode .diagram04 { animation: none !important; }
#wrapper.lowSpecMode .mainBannerSwiper .frontVisual,
#wrapper.lowSpecMode .mainBannerSwiper .frontVisual::before,
#wrapper.lowSpecMode .mainBannerSwiper .frontVisual * {transition: none !important;}
#wrapper.lowSpecMode .mainBannerSwiper .slideBox .hoverShadow img {display: none !important;}

/* Wrapper */
html,
body {
  width: 100%;
  height: 100%;
}
#wrapper {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
}
.innerFix {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}
.innerFixCont {
  display: block;
  position: relative;
  width: 978px;
  margin: 0 auto;
  padding: 0;
}
.clear::after {
  content: "";
  clear: both;
  display: block;
}
.findent {
  font-size: 1px;
  width: 1px;
  height: 1px;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}
.onMobile {
  display: none;
}
.expandBg > * {
  position: relative;
  z-index: 10;
}
.expandBg::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(-50vw + 50%);
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
}
.overhidden {
  overflow: hidden;
}
.moB {
  display: inline-block;
}
.pcB {
  display: block;
}

/* header */
.headerWrap {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
  position: fixed;
  transition: all 0.3s;
}
.headerWrap:hover {
  background: #fff;
}
.headerWrap .header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  position: relative;
  margin: 0 20px;
}
.header .headerin {
  display: flex;
  position: relative;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  width: 100%;
}
.header .swiftArea {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  height: 40px;
  background-color: #3b3b3b;
  text-align: right;
}
.header .swiftArea .innerFix {
  display: flex;
  justify-content: flex-end;
}
.logoArea {
  margin-right: 3%;
  transition: all 0.5s;
}
.logoArea .KOSMElogo {
  display: block;
  width: 212px;
  height: 30px;
  z-index: 10;
  transform: scale(1);
  transition: all 0.6s;
  transition-timing-function: ease;
}
.logoArea .KOSMElogo a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(/images/common/kosmeLogo.png) no-repeat 50%;
}
.onHeaderR {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  position: absolute;
  right : 0;
}
.onLoginBtn {
  margin-right: 20px;
  overflow: visible;
  position: relative;
  border-radius: 14px;
  padding: 7px 12px 6px;
  line-height: 14px;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.onLoginBtn::before {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 14px;
  box-sizing: content-box;
  border: 1.5px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(to right, #c1c1c1 0%, #c1c1c1 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.onLoginBtn::after {
  opacity: 0;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 14px;
  box-sizing: content-box;
  border: 1.5px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(to right, #2051c2 0%, #cd245d 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.onLoginBtn > span {
  color: #666;
  font-size: 15px;
  font-weight: 700;
}
.onLoginBtn:hover {
  border: none;
}
.onLoginBtn:hover::before {
  opacity: 0;
}
.onLoginBtn:hover::after {
  opacity: 1;
}
.onLoginBtn:hover > span {
  background: linear-gradient(to right, #2051c2 0%, #cd245d 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}
.loginTimer {
  margin-right: 9px;
  background: url(/images/main/icon_timer.svg) no-repeat center left;
  padding-left: 20px;
  color: #023ab7;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.9px;
}
.onSignup {
  padding: 3px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 20px;
}
.onSignup svg path {
  transition: all 0.3s;
}
.onSignup:hover svg path {
  stroke: #0036ad;
}
.onMenu {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  position: relative;
  box-sizing: border-box;
}
.onMenu::before {
  content: "";
  display: block;
  width: 70%;
  height: 0;
  border-top: 2px solid #000;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  transition: all 0.3s;
}
.onMenu::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-top: 2px solid #000;
  position: absolute;
  bottom: calc(50% - 6px);
  right: 0;
  transition: all 0.3s;
}
.onMenu.on::before {
  width: 100%;
  transform: rotate(45deg) translate(4px, 3px);
}
.onMenu.on::after {
  width: 100%;
  transform: rotate(-45deg) translate(4px, -3px);
}
.memberInfoBox {
  position: absolute;
  bottom: -20px;
  right: 0px;
  display: flex;
  border-radius: 100px;
  box-sizing: border-box;
  z-index: 10;
  height: 44px;
}
.memberInfoIn {
  display: flex;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}
.memberInfoIn > * {
  text-align: center;
  transition: all 0.3s;
  position: relative;
  box-sizing: border-box;
}
.memberInfoIn .personal {
  display: flex;
  align-items: center;
  background: #0036ad;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 25px 0 0 25px;
}
.memberInfoIn .personal b {
  color: #fff;
}
.memberInfoIn .personal > span {
  padding: 10px 8px 10px 20px;
  display: inline-block;
}
.memberInfoIn .numSelect {
  position: relative;
  padding: 10px 12px 10px 10px;
  color: #fff;
}
.memberInfoIn .personal.select .numSelect {
  padding: 10px;
}
.memberInfoIn .personal.select .numSelect > button {
  padding: 0 18px 0 0;
}
.personal.select .numSelect > button::before {
  content: "";
  display: block;
  background: url(/images/common/icon_moGnbArrow.svg) no-repeat center center;
  width : 9px;
  height: 5px;
  position: absolute;
  right: 12px;
  top: -0px;
  bottom: 0;
  margin: auto 0;
}
.personal.select .numSelect.on > button::before {
  transform: rotate(180deg);
}
.memberInfoIn .numSelect > .selectList {
    display: none;
    background: #0036ad;
    border: 1px solid #0036ad;
    border-radius: 0 0 10px 10px;
    position: absolute;
    top: 100%;
    width: 100%;
    overflow: hidden;
    border-top: none;
    right: 0;
}
.personal.select .selectList li {
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.6)
}
.personal.select .selectList li > button {
  line-height: 39px;
  width: 100%;
}
.personal.select .selectList li:hover {
  background: rgba(25, 74, 181, 1);
  color: #fff;
}

.memberInfoIn .position {
  padding: 11px 14px;
  position: relative;
  border-radius: 0;
  background: #f2f6ff;
  border-top: 1px solid #0036ad;
  border-bottom: 1px solid #0036ad;
}
.memberInfoIn .position.select {
  padding: 14px 14px 14px 20px;
}
/* .memberInfoIn .select::after {content: ""; display: block; width: 0; height: calc(100% - 16px); border-right: 1px dashed #D7D7D7; position: absolute; right: 0; top: 0; bottom: 0; margin: auto 0;} */
.memberInfoIn .select.border::after {
  content: "";
  border-right: 1px solid #0036ad;
  right: -2%;
  height: 20px;
  top: 22px;
  position: absolute;
}
.memberInfoIn .position span {
  display: inline-block;
}
/* .memberInfoIn .select i {font-size: 11px; margin-left: 19px; font-weight: 600;} */
/* .memberInfoIn .select:hover i {color: #0036AD;} */
.memberInfoIn .position.select {
  padding: 0;
  position: relative;
}
.position.last {
  border-radius: 0 20px 20px 0;
  border: 1px solid #0036ad;
  border-left: none;
}
.memberInfoIn .position.last::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: calc(100% - 16px);
  border-left: 1px dashed #d7d7d7;
  bottom: 0;
  margin: auto 0;
}
.memberInfoIn .position.select:hover > button {
  color: #002f7c;
}
.memberInfoIn .position.select > button {
  display: inline-block;
  padding: 11px 30px 11px 16px;
  transition: all 0.3s;
  border-radius: 25px 0 0 25px;
  font-size: 15px;
  cursor: pointer;
  position: relative;
}
.memberInfoIn .position.select > button::before {
  content: "";
  display: block;
  background: url(/images/common/icon_navArrow.svg) no-repeat center center;
  width: 9px;
  height: 5px;
  position: absolute;
  right: 12px;
  top: -1px;
  bottom: 0;
  margin: auto 0;
}
.memberInfoIn .position.select.on > button::before {
  transform: rotate(180deg);
}
.position.select .selectList {
  display: none;
  background: #f2f6ff;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 100%;
  width: 103%;
  overflow: hidden;
  border: 1px solid #0036ad;
  border-top: none;
  left: -1px;
}
.position.select.last .selectList {
  width: 103%;
}
.position.select .selectList li {
  transition: all 0.3s;
}
.position.select .selectList li:hover {
  background: #fff;
  color: #333;
}
.position.select .selectList li > button {
  line-height: 39px;
  width: 100%;
}
.position.select {
  border-radius: 0;
  border-top: 1px solid #0036ad;
  border-bottom: 1px solid #0036ad;
}
.position.select.last {
  transition: all 0.2s 0.4s;
  border-left: none;
  border-radius: 0 20px 20px 0;
}
.position.select.last.on {
  border-radius: 0 20px 0px 0;
  transition: all 0s 0s;
}
.memberInfoIn .setting {
  background: #f2f6ff;
  border-radius: 0 25px 25px 0;
}
.memberInfoIn .setting::before {
  content: "";
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  left: 30px;
  top: -1px;
  bottom: 0;
  margin: auto 0;
  width: 16px;
  height: 4px;
}
.memberInfoIn .setting:hover {
  padding: 10px 20px 10px 36px;
  position: relative;
  transition: all 0.3s;
  color: #002f7c;
}
.memberInfoIn .setting:hover::before {
  left: 13px;
  opacity: 1;
  background: url(/images/common/icon_blueArrow.svg) no-repeat center center;
}

.swiftArea .swiftZone {
  display: flex;
  position: relative;
  top: 10px;
  margin: 0;
  padding: 0;
  flex-direction: row;
  font-size: 14px;
  line-height: 18px;
}
.swiftZone .individual {
  display: flex;
  position: relative;
  margin: 0;
  padding: 0;
  flex-direction: row;
  z-index: 10;
}
.individual .name {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  color: #38fffe;
}
.individual .eraWrap {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}
.eraWrap .era {
  display: inline-block;
  position: relative;
  min-width: 50px;
  margin: 0 0 0 10px;
  padding: 0 12px 0 0;
  color: #38fffe;
  text-align: left;
}
.eraWrap .era.after_triangle::after {
  position: absolute;
  right: 0;
  top: 6px;
  border-bottom-color: #38fffe;
  transform: rotate(180deg);
}
.eraWrap .era.after_triangle.open::after {
  transform: rotate(0deg);
  top: -2px;
}
.eraWrap .slideTarget {
  display: none;
  position: absolute;
  top: 22px;
  left: -17px;
  width: calc(100% + 20px);
  margin: 0;
  padding: 0;
  background-color: #3b3b3b;
}
.eraWrap .slideTarget li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.eraWrap .slideTarget .selectUnit {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 8px 0;
  text-align: center;
  color: #999;
}

/* .individual .logBtn {display:inline-block; position:relative; margin:0 0 0 16px; padding:0;} */
.individual .logBtn {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}
.individual .logBtn + span {
  display: none;
}

/* .swiftZone .swiftLink {display:flex; position:relative; margin:0 0 0 16px; padding:0; flex-direction:row;} */
.swiftZone .swiftLink {
  display: flex;
  position: relative;
  margin: 0;
  padding: 0;
  flex-direction: row;
} /* 2021.01.19 곽현준 수정 - 아이콘 삭제후 간격조정 */

.swiftLink li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
/* .swiftLink li + li {margin-left:18px;} */
.swiftLink li + li {
  margin-left: 0;
} /* 2021.01.19 곽현준 수정 - 아이콘 삭제후 간격조정 */
.swiftLink li.all_menu_mc {
  display: none;
} /* 2021.01.19 곽현준 추가 */
.swiftLink li.all_menu_pc a {
  display: block;
  margin: -10px 0 0 38px;
  width: 40px;
  height: 40px;
  background: #767676 url(/images/common/ico_all_menu_pc.png) 10px 12px
    no-repeat;
} /* 2021.01.19 곽현준 추가 */
.swiftLink li.all_menu_pc a:hover {
  background: #4380e0 url(/images/common/ico_all_menu_pc.png) 10px 12px
    no-repeat;
} /* 2021.01.19 곽현준 추가 */

/* 2024.09.02 김지안 수정 */
.headerWrap.on {
}
.headerWrap.on .logoArea {
  margin-right: 2%;
}
.headerWrap.on .logoArea .KOSMElogo {
  transform: scale(0.9);
}
.headerWrap.on .gnbArea {
  width: calc(100% - 100px);
}
.headerWrap.on .fakegnb > li {
  margin: 0;
  width: 100%;
}
.headerWrap.on .realgnbWrap {
  display: block;
  z-index: 100;
}

.realGnbBg {
  display: none;
  width: 100%;
  height: 410px;
  border-radius: 0 0 10px 10px;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
  border-top: 1px solid rgba(8, 70, 190, 0.1);
}
.realGnbImg {
  position: absolute;
  bottom: 0;
  left: 10%;
}

.gnbArea {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: calc(100% - 230px);
  transition: all 0.6s;
}
.gnbArea .fakegnb {
  display: flex;
  height: 94px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  transition: all 0.3s;
}
.gnbArea .fakegnb > li {
  position: relative;
  display: block;
  text-align: center;
  margin: 0;
  padding: 0 2% 0 2%;
  flex: 1 1 auto;
  transition: all 1s;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
}
/* .gnbArea .fakegnb li button {display:inline-block; position:relative; margin:0; padding:10px 0; font-size:20px; color:#222; font-weight:400;} */ /*201229 박진우 수정/font-size 18 -> 20*/
.gnbArea .fakegnb li button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 10px 0 10px;
  font-size: 19px;
  color: #000;
  font-weight: 600;
  letter-spacing: -1.14px;
  position: relative;
  overflow: visible;
} /* 2021.01.14 곽현준 수정 */
.gnbArea .fakegnb li button:hover {
  color: #1b4cba;
} /* 2021.01.06 곽현준 추가 */
/* .gnbArea .fakegnb li button:focus {content:""; display: block; width: 100%; height: 100%; outline: 2px dashed red; top: 0; left: 0;} 2021.01.14 곽현준 추가 */
.gnbArea .fakegnb li > button::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -13px;
  display: block;
  transform: translateY(-10px);
  width: 7px;
  height: 7px;
  background-color: #2d3d8f;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
}
.gnbArea .fakegnb li > button:hover::after {
  top: 0;
  transform: translateY(25px);
  opacity: 1;
}

.onMobileGnb {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  top: 0;
  left: -100%;
  transition: all 0.3s;
  z-index: 1000;
}
.onMobileGnb.on {
  left: 0;
  display: none;
}
.moGnbTop {
  background: #2251c1;
  border-radius: 0 0 20px 0;
}
.moGnbIcons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
}
.moGnbIcons .btn_home {
  width: 18px;
  height: 18px;
  display: block;
  position: relative;
  background: url(/images/common/icon_moGnbHome.svg) no-repeat center center;
}
.moGnbIcons .mobileGnbClose {
  display: block;
  width: 18px;
  height: 18px;
  background: url(/images/common/icon_moGnbClose.svg) no-repeat center center;
  margin-left: 18px;
}
.moGnbLogin {
  padding: 36px 0 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.moGnbLogin > * {
  margin-left: 28px;
}
.moLoginBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.moLoginBox .login {
  margin: 0 0 13px 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -1.2px;
  position: relative;
  overflow: visible;
}
.moLoginBox.on {
  flex-direction: row;
  align-items: center;
  margin-bottom: 13px;
}
.moLoginBox.on .login {
  margin: 0 13px 0 0;
}
.moLoginBox .signup {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: -0.84px;
  border: 1px solid #9eb2e3;
  border-radius: 14px;
  padding: 5px 9px;
  transition: all 0.3s;
  margin-right: 6px;
}
.moLoginBox .signup:hover {
  border-color: #fff;
}
.moGnbLogin button.login::after {
  content: "";
  width: 8px;
  height: 12px;
  background: url(/images/common/icon_moGnbArrow.svg) no-repeat center center;
  position: absolute;
  right: -13px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: all 0.2s;
  transform: rotate(-90deg);
}
.moGnbLogin .login:hover::after {
  right: -18px;
}

.moGnbBtns {
  display: flex;
}
.moGnbBtns li {
  width: 50%;
}
.moGnbBtns li > a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 52px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.9px;
  opacity: 0.8;
  transition: all 0.3s;
  position: relative;
}
.moGnbBtns li > a:hover {
  opacity: 1;
}
.moGnbBtns li > a img {
  margin-right: 5px;
}
.moGnbBtns li > a svg {
  margin-right: 3px;
}
.moGnbBtns li:first-child > a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: calc(100% - 18px);
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  border-right: 1px dashed rgba(255, 255, 255, 0.2);
}
.moMemberInfoBox {
  display: flex;
  align-items: center;
}
.moMemberInfoBox .memberInfoIn {
  color: #fff;
  font-size: 14px;
  line-height: 14px;
}
.moMemberInfoBox .position {
  background: rgba(0, 0, 0, 0.15);
  padding: 8px 10px 7px 12px;
  height: auto;
  border: none;
}
.moMemberInfoBox .setting {
  background: rgba(255, 255, 255, 0.15);
  padding: 7px 9px 6px 8px;
  height: auto;
  border: none;
}
.moMemberInfoBox .setting::before {
  left: -10px;
}
.moMemberInfoBox .setting:hover {
  padding: 7px 9px 6px 28px;
}
.moMemberInfoBox .setting:hover::before {
  left: 8px;
}
.moMemberInfoBox .position.select {
  border: none;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.2s 0.3s;
}
.moMemberInfoBox .position.first {
  border-radius: 10px 0 0 10px;
}
.moMemberInfoBox .memberInfoIn .position.select.first::before {
  display: none;
}
.moMemberInfoBox .position.select button {
  padding: 8px 28px 7px 9px;
  height: auto;
  font-size: 14px;
  background: url(/images/common/icon_moGnbArrow.svg) no-repeat
    calc(100% - 10px) 54%;
  z-index: 10;
  position: relative;
}
.moMemberInfoBox .position.select:hover > button {
  color: unset;
}
.moMemberInfoBox .position.first button {
  padding: 7px 28px 6px 13px;
}
.moMemberInfoBox .position.first.on {
  border-radius: 10px 0 0 0px;
  transition: 0s 0s;
}
.moMemberInfoBox .position.middle {
  border-radius: 0;
}
.moMemberInfoBox .position.last {
  border-radius: 0px 10px 10px 0px;
}
.moMemberInfoBox .position.last.on {
  border-radius: 0px 10px 0px 0px;
}
.moMemberInfoBox .memberInfoIn .position::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: calc(100% - 16px);
  border-left: 1px dashed rgba(255, 255, 255, 0.2);
  bottom: 0;
  margin: auto 0;
}
.moMemberInfoBox .memberInfoIn .position.first::before {
  display: none;
}

.moMemberInfoBox .position.select .selectList {
  border: none;
  top: 100%;
  left: 0px;
  background: #436bca;
  width: 100%;
}
.moMemberInfoBox .position.select .selectList li {
  position: relative;
}
.moMemberInfoBox .position.select .selectList li:hover {
  color: unset;
}
.moMemberInfoBox .position.select .selectList li::before {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  z-index: 100;
}
.moMemberInfoBox .position.select .selectList li:last-of-type:before {
  display: none;
}
.moMemberInfoBox .position.select .selectList button {
  line-height: 14px;
  padding: 8px 0 8px;
  background: #3e6ddb;
}
.moMemberInfoBox .memberInfoIn .select.border::after {
  display: none;
}
.moMemberInfoBox .memberInfoIn .position.select > button::before {
  display: none;
}

.moGnbBtm {
  display: flex;
  height: 100%;
  align-items: stretch;
}
.moGnbBtmL {
  background: #f5f6f7;
  width: 40%;
  min-width: 153px;
}
.moOneDepth {
  padding: 22px 0 0 15px;
  display: flex;
  flex-direction: column;
}
.moOneDepth > li {
  height: 48px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.moOneDepth > li:hover {
}
.moOneDepth > li > button {
  position: absolute;
  right: -10px;
  border-radius: 15px;
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  padding-left: 16px;
  color: #555;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -1.02px;
}
.moOneDepth > li.on > button {
  background: #0050cf;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0px 10px 20px 0px rgba(0, 80, 207, 0.3);
}
.moGnbBtmR {
  width: 60%;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  position: relative;
}
.moGnbBtmR > div {
  width: 100%;
  height: 100%;
  display: none;
}
.moGnbBtmR > div.on {
  display: block;
}
.moGnbImg {
  position: absolute;
  right: -100px;
  top: 30%;
  z-index: -10;
}
.moTwoDepth {
  padding-top: 18px;
  width: 100%;
  display: block;
}
.moTwoTitle {
  padding: 12px 30px;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.96px;
  transition: all 0.3s;
}
.moThreeDepth {
  padding: 0 30px;
  margin-bottom: 10px;
  display: none;
}
.moThreeDepth li {
  position: relative;
  line-height: 26px;
  color: #777;
  font-size: 15px;
  transition: all 0.3s;
}
.moThreeDepth li::before {
  content: "·";
  display: block;
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.moThreeDepth li > a {
  padding-left: 8px;
  display: block;
}
.moThreeDepth li:hover {
  color: #0050cf;
}
.moTwoDepth li.on .moTwoTitle,
.moTwoTitle:hover {
  color: #0050cf;
}
.moTwoDepth li.on .moTwoTitle svg path,
.moTwoTitle:hover svg path {
  stroke: #0050cf;
}
.moTwoDepth li.on .moTwoTitle svg {
  transform: rotate(180deg);
}

.onAllMenu {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0c2e86;
  z-index: 100;
  padding: 35px 20px 0;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.onAllMenu > .innerFix {
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column-reverse;
  text-align: left;
}
.allMenuImg01 {
  position: absolute;
  top: -15%;
  left: -15%;
}
.allMenuImg02 {
  position: absolute;
  bottom: -15%;
  right: -15%;
}
.allMenuTop {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.allMenuTop > span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1.2px;
}
.allMenuClose {
  width: 26px;
  height: 26px;
  background: url(/images/common/icon_CloseWhite.svg) no-repeat center center;
}
.allMenuList {
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 150px;
}
.allMenuList::-webkit-scrollbar {
  width: 6px;
  transition: all 0.3s;
}
.allMenuList::-webkit-scrollbar-thumb {
  background: #3d589e;
}
.allMenuList::-webkit-scrollbar-thumb:hover {
  background: #6177b0;
}
.allMenuList > li {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.allMenuList > li:last-of-type {
  border-bottom: none;
}
.allOneTitle {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -1.44px;
  width: 20%;
  max-width: 220px;
  margin-top: 38px;
}
.allDepthList {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 80%;
}
.allDepthList > li {
  width: 20%;
  transition: all 0.3s;
  padding: 40px 28px 0;
  box-sizing: border-box;
  border-top: 1px solid transparent;
  box-sizing: border-box;
}
.allDepthList > li:hover {
  background: #0a256b;
  border-color: #fff;
}
.allTwoTitle {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -1.2px;
  margin-bottom: 28px;
}
.allThreeList {
  margin-bottom: 10px;
}
.allThreeList li {
  position: relative;
  line-height: 26px;
  color: #777;
  font-size: 15px;
  transition: all 0.3s;
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.allThreeList li > a {
  display: block;
}
.allThreeList li::before {
  content: "·";
  display: block;
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.allThreeList li:hover {
  color: rgba(235, 106, 147, 1);
}
.allBookmarkList {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(14, 39, 106, 0.8);
  width: 100%;
  height: 110px;
  padding: 0 20px;
}
.allBookmarkList .innerFix {
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.bookmarkSetting {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1.2px;
  margin-right: 3%;
  flex: 1 0 auto;
}
.bookmarkSetBtn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.84px;
  line-height: 16px;
  padding: 5px 10px 6px;
  background: url(/images/common/icon_bookmarkSet.svg) no-repeat 9px center;
  padding-left: 27px;
  margin-left: 11px;
}
.allBookmarkLink {
  display: flex;
  align-items: center;
  width: 100%;
}
.allBookmarkLink > li {
  border-radius: 30px;
  margin-right: 2%;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 2%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -1.02px;
  transition: all 0.3s;
}
.allBookmarkLink > li:last-of-type {
  margin-right: 0;
}
.allBookmarkLink > li:hover {
  color: #fff;
}
.allBookmarkLink > li a {
  display: block;
  padding: 14px 0;
}

.boardListWrap .boardList {
  margin-top: 12px;
}
.boardListWrap .boardList li:first-child {
  border: 1px solid #e1e1e1;
}
.boardListWrap .boardList li {
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  margin-bottom: 20px;
}
.onAllMenu.on {
  opacity: 1;
  visibility: visible;
}

/* 2024.09.02 김지안 수정 */

/* 2021.01.19 곽현준 추가 */
@media screen and (max-width: 768px) {
  .swiftLink li.all_menu_pc {
    display: none;
  }
  .swiftLink li.all_menu_mc {
    display: block;
  }
}

/* .individual .logBtn button, .individual .logBtn a ,
.swiftLink button, .swiftLink a {display:inline-block; position:relative; margin:0; padding:2px 0 2px 24px; color:#fff;} */

/* 2021.01.19 곽현준 수정 */
.individual .logBtn button,
.individual .logBtn a,
.swiftLink button,
.swiftLink a {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 2px 0 2px 38px;
  color: #fff;
  outline: none;
}

/* 2021.01.19 곽현준 추가 */
.individual .logBtn button:hover,
.individual .logBtn a:hover,
.swiftLink button:hover,
.swiftLink a:hover {
  color: #38fffe;
}

/* 2021.01.19 곽현준 수정 - 메뉴 아이콘들 삭제 */
.individual .logBtn button.logoutBtn {
  background: url(/images/common/logout.png) no-repeat 12px top;
  background-size: 20px 20px;
}
.individual .logBtn button.loginBtn {
  background: url(/images/common/login.png) no-repeat 12px top;
  background-size: 20px 20px;
}
.individual .logBtn a.signin {
  background: url(/images/common/swift_ico.png) no-repeat left -250px;
  margin-left: 18px;
}
.individual .logBtn .signMessage {
  display: none;
}
/* .individual .logBtn a.adminBtn {background:url(/images/common/swift_ico.png) no-repeat left 0px} */
/* .individual .logBtn a.insiderBtn {background:url(/images/common/swift_ico.png) no-repeat left -50px} */
/* .individual .logBtn a.mypageBtn {background:url(/images/common/swift_ico.png) no-repeat left -100px} */
/* .swiftLink button, .swiftLink a.hsl01 {background:url(/images/common/swift_ico.png) no-repeat left -150px} */
/* .swiftLink button, .swiftLink a.hsl02 {background:url(/images/common/swift_ico.png) no-repeat left -200px} */
/* .swiftLink button, .swiftLink a.hsl03 {background:url(/images/common/swift_ico.png) no-repeat left -250px} */
/* .swiftLink button, .swiftLink a.hsl04 {background:url(/images/common/swift_ico.png) no-repeat left -300px} */

@media screen and (max-width: 768px) {
  .individual .logBtn button,
  .individual .logBtn a,
  .swiftLink button,
  .swiftLink a {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 2px 0 2px 24px;
    color: #fff;
  }
  .individual .logBtn button.logoutBtn {
    background: url(/images/common/logout.png) no-repeat left top;
    background-size: 20px 20px;
  }
  .individual .logBtn button.loginBtn {
    background: url(/images/common/login.png) no-repeat left top;
    background-size: 20px 20px;
  }
} /* 2021.01.20 곽현준 추가 */

.headerin {
  position: relative;
}
.headerin .realgnbWrap {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: 100%;
  margin: 0;
  padding: 20px 0 80px;
  z-index: 9999;
}

.gnbArea.opened .realgnbWrap {
  display: none !important;
}

.realgnbWrap .innerFix {
  padding: 0;
}
.realgnbWrap .gnbMenu {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: flex-start;
}
.realgnbWrap .gnbMenu li.depthFirst {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}
.realgnbWrap .gnbMenu li.depthFirst:last-child {
  padding-right: 0;
}
.realgnbWrap .gnbMenu li.depthFirst h2 {
  display: none;
  position: relative;
  margin: 0;
  padding: 0 25px;
  font-size: 18px;
  color: #222;
  font-weight: 400;
  text-align: center;
}
.realgnbWrap .gnbMenu li.depthFirst button {
  display: none;
  position: relative;
  margin: 0;
  padding: 0 25px;
  font-size: 18px;
  color: #222;
  font-weight: 400;
  text-align: center;
}
/* .realgnbWrap .gnbMenu li.depthFirst + li.depthFirst {border-left:solid #dedede 1px} */
.realgnbWrap .gnbMenu ul.depthIn {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
}
.realgnbWrap .gnbMenu ul.depthIn li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
/* .realgnbWrap .gnbMenu ul.depthIn li + li {margin-top:24px;} */
/* .realgnbWrap .gnbMenu ul.depthIn li + li {margin-top:12px;} */ /* 2021.01.06 곽현준 수정 */
.realgnbWrap .gnbMenu ul.depthIn li + li {
  margin-top: 0;
} /* 2021.01.11 곽현준 수정 */
.realgnbWrap .gnbMenu ul.depthIn li a {
  display: block;
  position: relative;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  color: #444;
  font-size: 16px;
  font-weight: 500;
}
.realgnbWrap .gnbMenu ul.depthIn li a:hover {
  color: #0036ad; /* text-decoration:underline;*/
} /* 2020.12.31 곽현준 추가 */

.realgnbWrap .gnbMenu ul.depthIn button.subtoggle,
.realgnbWrap .gnbMenu ul.depthIn li ul.depthLast {
  display: none;
}

.realgnbWrap .gnbMenu li.depthFirst.adminMenu {
  display: none;
}
.realgnbWrap .gnbMenu li.depthFirst.adminMenu:first-child + li.depthFirst {
  border-left: none;
}

.realgnbWrap .realgnbClose {
  width: 45px;
  height: 45px;
  position: absolute;
  right: -45px;
  top: 0;
}
.realgnbWrap .realgnbClose.all_close::before,
.realgnbWrap .realgnbClose.all_close::after {
  height: 2px;
  background-color: #636363;
  top: 17px;
  left: 0;
}

.headerWrap.scroll {
  border-bottom: none;
  background-color: rgba(255, 255, 255, 0.95);
}
.headerWrap.scroll .gnbArea .fakegnb {
  height: 78px;
}
/* .headerWrap.scrolled .KOSMElogo {top:17px; transform:scale(1.07); transition:all 0.6s;} */
.headerWrap.scroll .KOSMElogo {
  top: 17px;
} /* 2021.01.04 곽현준 수정 */
/* .headerWrap.scrolled .swiftArea {display:none;} */
.locationWrap.scroll {
  position: fixed;
  top: 78px;
  z-index: 2;
  left: 0px;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    #dae5ff 0%,
    #edf2ff 43.25%,
    rgba(255, 255, 255, 0.6) 100%
  );
  border-radius: 10px;
}

/* 키비주얼 */
.keyVisual {
  display: block;
  position: relative;
  height: 212px;
  margin: 0;
  padding: 0;
  background-repeat: repeat-x;
  background-position: 50% top;
  background-size: initial;
}
.keyVisual.categoryname {
  background-color: #cbdaf1;
  background-image: url(/images/keyvisual/agreement_visual.jpg);
} /* 협약관리 */
.keyVisual.networking {
  background-color: #ccc;
  background-image: url(/images/keyvisual/community_visual.jpg);
} /* 네트워킹(커뮤니티) */
.keyVisual.notification {
  background-color: #ccc;
  background-image: url(/images/keyvisual/notice_visual.jpg);
} /* 알림코너 */
.keyVisual.member {
  background-color: #ccc;
  background-image: url(/images/keyvisual/mypage_visual.jpg);
} /* 회원가입 */
.keyVisual.mypage {
  background-color: #ccc;
  background-image: url(/images/keyvisual/mypage_visual.jpg);
} /* 마이페이지 */
.keyVisual.coach {
  background-color: #ccc;
  background-image: url(/images/keyvisual/work_visual.jpg);
} /* 사업관리 */
.keyVisual.customer {
  background-color: #ccc;
  background-image: url(/images/keyvisual/support_visual.jpg);
} /* 고객지원 */
.keyVisual.exspecialist {
  background-color: #ccc;
  background-image: url(/images/keyvisual/specialist_visual.jpg);
} /* 외부전문가 */
.keyVisual.designfactory {
  background-color: #ccc;
  background-image: url(/images/keyvisual/designfactory_visual.jpg);
} /* 디자인팩토리 */
.keyVisual.appExspecialist {
  background-color: #ccc;
  background-image: url(/images/keyvisual/appExspecialist-visual.jpg);
}
.keyVisual.introduce {
  background-color: #ccc;
  background-image: url(/images/keyvisual/kosme_visual.jpg);
} /* 사관학교소개 */
.keyVisual.agency {
  background-color: #ccc;
  background-image: url(/images/keyvisual/consignment_visual.jpg);
} /* 위탁기관 */
.keyVisual.startup {
  background-color: #ccc;
  background-image: url(/images/keyvisual/startup_visual.jpg);
} /* 스타트업동향정보 */

.keyVisual .quickBtn {
  display: none;
  position: relative;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: center;
  top: 55px;
}
/* .keyVisual .quickBtn {display:none; position:relative; margin:0; padding:0; flex-direction:row; justify-content:center; top:38px;} */ /* 2021.03.09 곽현준 수정 - 텍스트 버튼화 및 중앙정렬 */
.keyVisual .quickBtn a {
  display: block;
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
}
.keyVisual .quickBtn a + a {
  margin-left: 16px;
}
.keyVisual .quickBtn a span {
  display: block;
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #666;
  font-weight: 400;
  text-align: center;
  letter-spacing: -1px;
}

/* 2021.02.08 곽현준 수정 - 퀵메뉴용 대메뉴 아이콘 높이 1픽셀 버그 교정 */
/* .keyVisual .quickBtn a::before {content:''; display:block; position:absolute; left:0; top:10px; width:100%; height:55px; margin:0; padding:0; background-repeat:no-repeat; background-size:50%; background-position:50%; transition:all 0.2s;} */
.keyVisual .quickBtn a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  height: 56px;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: 50%;
  transition: all 0.2s;
}

.keyVisual .quickBtn a:hover::before {
  transform: scale(0.9);
  transition: all 0.2s;
}

/* .keyVisual .quickBtn a.qbtn01::before {background-image:url(/images/common/qbtn01.png);} 01 마이페이지
.keyVisual .quickBtn a.qbtn02::before {background-image:url(/images/common/qbtn02.png);} 02 사업과제관리
.keyVisual .quickBtn a.qbtn03::before {background-image:url(/images/common/qbtn03.png);} 03 알림코너
.keyVisual .quickBtn a.qbtn04::before {background-image:url(/images/common/qbtn04.png);} 04 스타트업 동향정보
.keyVisual .quickBtn a.qbtn05::before {background-image:url(/images/common/qbtn05.png);} 05 디자인팩토리
.keyVisual .quickBtn a.qbtn06::before {background-image:url(/images/common/qbtn06.png);} 06 사관학교 소개
.keyVisual .quickBtn a.qbtn07::before {background-image:url(/images/common/qbtn07.png);} 07 동문커뮤니티
.keyVisual .quickBtn a.qbtn08::before {background-image:url(/images/common/qbtn08.png);} 08 고객지원
.keyVisual .quickBtn a.qbtn09::before {background-image:url(/images/common/qbtn09.png);} 09 위탁기관
.keyVisual .quickBtn a.qbtn10::before {background-image:url(/images/common/qbtn10.png);} 10 외부전문가
.keyVisual .quickBtn a.qbtn11::before {background-image:url(/images/common/qbtn11.png);} 11 이용안내
.keyVisual .quickBtn a.qbtn12::before {background-image:url(/images/common/qbtn12.png);} 12 내부직원 */

.keyVisual .quickBtn a.qbtn01::before {
  background-image: url(/images/common/qbtn001.png);
} /* 01 사관학교소개 */
.keyVisual .quickBtn a.qbtn02::before {
  background-image: url(/images/common/qbtn002.png);
} /* 02 사업관리 */
.keyVisual .quickBtn a.qbtn03::before {
  background-image: url(/images/common/qbtn003.png);
  background-size: 58%;
} /* 03 알림마당 */
.keyVisual .quickBtn a.qbtn04::before {
  background-image: url(/images/common/qbtn004.png);
} /* 04 디자인팩토리 */
.keyVisual .quickBtn a.qbtn05::before {
  background-image: url(/images/common/qbtn005.png);
} /* 05 위탁기관 */
.keyVisual .quickBtn a.qbtn06::before {
  background-image: url(/images/common/qbtn006.png);
} /* 06 고객지원 */
.keyVisual .quickBtn a.qbtn07::before {
  background-image: url(/images/common/qbtn007.png);
} /* 07 동문커뮤니티 */
.keyVisual .quickBtn a.qbtn08::before {
  background-image: url(/images/common/qbtn008.png);
} /* 08 마이페이지 */
.keyVisual .quickBtn a.qbtn09::before {
  background-image: url(/images/common/qbtn009.png);
} /* 09 외부전문가 */
.keyVisual .quickBtn a.qbtn10::before {
  background-image: url(/images/common/qbtn010.png);
} /* 10 내부직원 */
.keyVisual .quickBtn a.qbtn11::before {
  background-image: url(/images/common/qbtn011.png);
} /* 11 회원 */
.keyVisual .quickBtn a.qbtn12::before {
  background-image: url(/images/common/qbtn012.png);
} /* 12 이용안내 */
.keyVisual .quickBtn a.qbtn13::before {
  background-image: url(/images/common/qbtn013.png);
} /* 13 관리자 */

/* .keyVisual .quickBtn a.menu_setting {
	display:block;
	position:relative;
	width:43px;
	height:43px;
	margin:0;
	padding:0;
	background-color:transparent; border-radius:0;
} */ /* 2021.01.26 곽현준 추가 - 퀵메뉴 세팅 */

/* .keyVisual .menu_setting {
	display:block;
	position:relative;
	margin:48px auto 0;
	width:160px;
	height:43px;
	color:#fff;
	background-color:#000;
	border-radius:10px;
} */ /* 2021.03.09 곽현준 수정 - 텍스트 버튼화 및 중앙정렬 */

.keyVisual .quickBtn a.menu_setting {
  display: block;
  position: relative;
  width: 79px;
  height: 43px;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #000;
  border-radius: 10px;
} /* 2021.03.11 곽현준 수정 - 텍스트 버튼화 */

.keyVisual .menu_setting::before {
  display: none;
} /* 2021.01.26 곽현준 추가 - 퀵메뉴 세팅 */
.keyVisual .quickBtn a.menu_setting span {
  top: 0;
  bottom: initial;
  text-align: left;
  color: #fff;
} /* 2021.01.26 곽현준 추가 - 퀵메뉴 세팅 */
/* .keyVisual .menu_setting span {top:0; bottom:initial; text-align:left; color:#fff;} */ /* 2021.03.09 곽현준 수정 - 텍스트 버튼화 및 중앙정렬 */
@media screen and (max-width: 768px) {
  /* .keyVisual .quickBtn a.menu_setting {
		display:block;
		position:relative;
		max-width:332px;
		width:332px;
		height:43px;
		margin:0;
		padding:0;
		background-color:transparent;
		border-radius:0;
	} */ /* 2021.01.26 곽현준 추가 - 퀵메뉴 세팅 */
  /* .keyVisual .menu_setting {margin:83px auto 0;} */ /* 2021.03.09 곽현준 수정 - 텍스트 버튼화 및 중앙정렬 */
  /* .keyVisual .quickBtn a.menu_setting::before {display:none;} */ /* 2021.01.26 곽현준 추가 - 퀵메뉴 세팅 */
  /* .keyVisual .quickBtn a.menu_setting span {top:0; bottom:initial; text-align:right;} */ /* 2021.01.26 곽현준 추가 - 퀵메뉴 세팅 */
  /* .only_btn_setting {height:43px !important;} */ /* 2021.03.11 곽현준 추가 - 우측정렬일 경우 주석 해제요함 */
  .keyVisual .quickBtn a.menu_setting {
    margin: 0 auto;
    /* float:right; */ /* 2021.03.11 곽현준 추가 - 우측정렬일 경우 주석 해제요함 */
  } /* 2021.03.11 곽현준 추가 - 우측정렬일 경우 주석 해제요함 */
}

/* 본문영역  */
.contentsWrap {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
} /*201228 박진우 수정*/
.locationWrap {
  transition: all 0.3s;
  display: block;
  position: fixed;
  margin: 0 auto;
  padding: 0;
  max-width: 1320px;
  height: 48px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 94px;
  z-index: 100;
}
.locationWrap .innerFix {
  background: linear-gradient(90deg, #dae5ff 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
  border: 1px solid #ccdcff;
}
/* .locationWrap .localInfo {display:flex; position:relative; height:40px; margin:0; padding:0; flex-direction:row; justify-content:flex-start; font-size:14px;} */
.locationWrap .localInfo {
  display: flex;
  position: relative;
  height: 48px;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: flex-start;
  font-size: 16px;
} /* 2021.01.11 곽현준 수정 */
.localInfo .home {
  display: block;
  position: relative;
  width: 52px;
  height: 48px;
  box-sizing: border-box;
  margin: 0;
  padding: 0 20px;
  background: url(/images/common/location_home.png) no-repeat 50%;
}
.localInfo .home::before {
  content: "";
  width: 0;
  height: calc(100% - 20px);
  border-right: 1px dashed #abb0bb;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  position: absolute;
}
.localInfo .category {
  display: inline-block;
  position: relative;
  height: 48px;
  min-width: 200px;
  line-height: 49px;
  margin: 0;
  padding: 0 17px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.96px;
}
.localInfo .category::before {
  content: "";
  width: 0;
  height: calc(100% - 20px);
  border-right: 1px dashed #abb0bb;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  position: absolute;
}
.localInfo .category::after {
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
  border-bottom-color: rgba(255, 255, 255, 0.8);
  border-right-color: rgba(255, 255, 255, 0.8);
}
.localInfo .localMenu {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  position: relative;
}
.localInfo .localMenu::before {
  content: "";
  width: 0;
  height: calc(100% - 20px);
  border-right: 1px dashed #abb0bb;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  position: absolute;
}
.localInfo .localMenu:last-of-type::before {
  display: none;
}
.localMenu .toggleBtn {
  display: block;
  position: relative;
  height: 48px;
  min-width: 200px;
  margin: 0;
  padding: 0;
  color: #333;
  text-align: left;
  color: #333;
}
.localMenu.deps03 {
  font-weight: 600;
}
.localMenu .toggleBtn .valueInit {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 49px;
  padding: 0 20px;
}
.localMenu .toggleBtn.after_triangle .valueInit {
  padding-right: 30px;
}
.localMenu .toggleBtn.after_triangle::after {
  position: absolute;
  right: 20px;
  top: calc(50%);
  background: url(/images/common/icon_navArrow.svg) no-repeat center center;
  transform: translateY(-50%);
}
.localMenu .toggleBtn.after_triangle.open::after {
  top: calc(50%);
}

.localMenu .menuList {
  display: none;
  position: absolute;
  left: 0;
  top: 48px;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  border: 1px solid #c0d4ff;
  z-index: 10;
  width: 100%;
  padding: 8px 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
.localMenu .menuList li {
  display: block;
  position: relative;
  margin: 0 15px;
  padding: 0;
}
.localMenu .menuList li + li {
}
.localMenu .menuList li a {
  display: block;
  position: relative;
  margin: 0;
  padding: 8px 0;
  font-size: 15px;
  line-height: 14px;
  color: #666;
  font-weight: 400;
  transition: all 0.3s;
}
.localMenu .menuList li a:hover {
  color: #003994;
}

.contentsWrap .pageControle {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  border-left: solid rgba(255, 255, 255, 0.5) 1px;
  border-right: solid rgba(255, 255, 255, 0.5) 1px;
}
.pageControle button {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 40px;
  margin: 0;
  padding: 0 15px;
  text-align: center;
}
.pageControle button + button {
  border-left: solid rgba(255, 255, 255, 0.5) 1px;
}
.pageControle button.windowPrint {
  background: url(/images/common/windowPrint.png) no-repeat 50%;
}
.pageControle button.zoomIn span::before,
.pageControle button.zoomOut span::before {
  content: "가";
  display: block;
  position: absolute;
  left: 5px;
  top: 0;
  width: 30px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  text-indent: 0px;
}
.pageControle button.zoomIn span::after,
.pageControle button.zoomOut span::after {
  content: "+";
  display: block;
  position: absolute;
  left: 25px;
  top: 6px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  text-indent: 0px;
}
.pageControle button.zoomOut span::after {
  content: "_";
  top: 0;
}

.contentsWrap .contentBody {
  display: flex;
  justify-content: center;
  position: relative; /*margin:0 0 150px 0;*/
  padding: 20px 0 0 0;
  margin-bottom: 50px;
} /*201229 박진우 수정/ padding-top 50 -> 40*/
.contentBody .innerFix {
  padding: 0;
  margin: 200px 20px;
}
.contentBody .headzone {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0;
  padding: 0 0 73px 0;
} /*201229 박진우 수정/ padding-top 24 -> 15*/
.contentBody .headzone.line {
  margin-bottom: 40px;
  border-bottom: solid rgba(8, 70, 190, 0.1) 1px;
}
.contentBody .headzone.flexWrap {
  display: flex;
}
.headzone .h2_blind {
  display: inline-block;
  position: absolute;
  width: 0px;
  height: 0px;
  font-size: 1px;
  color: transparent;
  text-indent: -9999px;
}
.headzone .contHeading {
  display: inline-block;
  position: relative;
  margin: 0 auto 0 0;
  padding: 0;
  font-size: 34px;
  font-weight: bold;
  color: #000;
  letter-spacing: -1px;
}
.contHeading {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 28px;
  font-weight: 400;
  color: #222;
  letter-spacing: -1px;
}

/* 2024.08.22 김지안 추가 */
.contentBody .headzone.line {
  z-index: 10;
}

.headIconList {
  display: flex;
  justify-content: flex-end;
}
.headIconList > li {
  position: relative;
  display: flex;
  align-items: center;
}
.headIconList > li > button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 12px;
  border: 1px solid #f9f9f9;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.headIconList > li > button:hover {
  border-color: #0036ad;
}
.headIconList > li > .print {
  background: #fff url(/images/common/icon_print.svg) no-repeat center center;
}
.headIconList > li > .print:hover {
  background: #fff url(/images/common/icon_printHover.svg) no-repeat center
    center;
}
.headIconList > li > .share {
  background: #fff url(/images/common/icon_share.svg) no-repeat center center;
  position: relative;
}
.headIconList > li > .share:hover {
  background: #fff url(/images/common/icon_shareHover.svg) no-repeat center
    center;
}
.shareList {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 10;
}
.shareList > li {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  transition: all 0.3s;
  margin-bottom: 8px;
}
.shareList > li:last-of-type {
  margin-bottom: 0;
}
.shareList > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.shareList > li:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.shareList .facebook {
  background: #284e9d;
}
.shareList .snsX {
  background: #000;
}
.shareList .kakao {
  background: #fae400;
}

.quickBtnWrap {
  position: fixed;
  bottom: 50px;
  right: 60px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
}
.quickBtn {
  display: block;
  background: #133172; /*width: 50px; height: 50px;*/
  border-radius: 50%;
  transition: all 0.3s;
}
.quickBtn::after {
  content: "";
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: rgba(19, 49, 114, 0.4);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.quickBtn:hover::after {
  opacity: 1;
}
.quickBtn img {
  transition: all 0.3s;
}
.quickBtn.on img {
  transform: rotate(45deg);
}
.quickBtnList {
  position: absolute;
  bottom: 67px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quickSetBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quickSetBtn > span {
  color: #2f416a;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: -0.75px;
  display: inline-block;
}
.quickSetBtn > button {
  display: none;
  color: #fff;
  font-size: 15px;
  line-height: normal;
  padding: 7px 14px 7px 30px;
  background: #778ab6 url(/images/common/icon_quickSet.svg) no-repeat 9px center;
  border-radius: 50px;
  margin-top: 8px;
  transition: all 0.3s;
}
.quickSetBtn > button:hover {
  background: rgba(19, 49, 114, 1) url(/images/common/icon_quickSet.svg)
    no-repeat 9px center;
}
.quickBtnList > ul {
  display: none;
  margin-top: 12px;
  transform-origin: bottom;
  flex-direction: column;
  width: 78px;
  border-radius: 50px;
  border: 1px solid #0c2e86;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  box-sizing: border-box;
}
.quickBtnList > ul > li {
  position: relative;
  background: #f2f6ff;
  color: #888;
  transition: all 0.3s;
}
.quickBtnList > ul > li::before {
  content: "";
  display: block;
  width: calc(100% - 28px);
  height: 0;
  border-bottom: 1px solid #d7d7d7;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  z-index: 1;
}
.quickBtnList > ul > li::after {
  position: absolute;
  opacity: 0;
  content: "";
  display: block;
  background: #f2f6ff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear 0s;
}
.quickBtnList > ul > li:hover {
  color: #fff;
}
.quickBtnList > ul > li:hover::after {
  opacity: 1;
  background: linear-gradient(161deg, #0c2e86 13.67%, #ed4b63 86.5%);
  z-index: 2;
}
.quickBtnList > ul > li:first-of-type {
  padding-top: 11px;
}
.quickBtnList > ul > li:last-of-type {
  padding-bottom: 11px;
}
.quickBtnList > ul > li > a {
  padding: 18px 12px;
  display: block;
  position: relative;
  z-index: 3;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.9px;
  line-height: normal;
  text-align: center;
}

/* 2024.08.22 김지안 추가 */

.contentBody .contentzone {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}

/* footer */
/* .footerWrap {display:block; position:relative; margin:0; padding:0; background-color:#3b3b3b;}
.footerWrap .relatedAgency {display:block; position:relative; margin:0; padding:0; border-bottom:solid #4e4e4e 1px;}
.relatedAgency .flinkBtn {display:none;}
.relatedAgency ul.innerFix {display:flex; flex-direction:row; justify-content:center; height:52px; padding:10px 0 0 0;}
.relatedAgency ul li {display:inline-block; position:relative; margin:0; padding:0;}
.relatedAgency ul li a {display:block; position:relative; width:202px; height:32px;}
.relatedAgency ul li.flink01 a {width:134px; background:url(/images/common/relatedAgency01.png) no-repeat left top;}
.relatedAgency ul li.flink02 a {background:url(/images/common/relatedAgency02.png) no-repeat left top;}
.relatedAgency ul li.flink03 a {background:url(/images/common/relatedAgency03.png) no-repeat left top;}
.relatedAgency ul li a span {position:absolute}
.relatedAgency ul li + li {margin-left:60px;}

.footerWrap .footer {display:block; position:relative; height:87px; margin:0; padding:12px 0 0 0;}
.footer .provisionInfo {display:flex; position:relative; margin:0 0 10px 0; padding:0; flex-direction:row; justify-content:center;}
.footer .provisionInfo div.flex {display:flex; position:relative; margin:0; padding:0; flex-direction:row; justify-content:center;}
.footer .provisionInfo .flex + .flex {margin-left:40px;}
.footer .provisionInfo a {display:block; position:relative; margin:0; padding:0; font-size:14px; color:#9a9a9a;}
.footer .provisionInfo a + a {margin-left:40px;}
.footer .address p {display:block; position:relative; margin:0; padding:0; text-align:center; font-size:12px; color:#9a9a9a;}
.footer .address p.copyright {margin-bottom:3px;} */

@media screen and (max-width: 768px) {
  #wrapper {
    display: block;
    width: 100vw;
    padding-top: 0;
    overflow-x: hidden;
  }
  .innerFix {
    width: 100%;
    margin: 0;
  }
  .innerFixCont {
    width: 100%;
    margin: 0;
  }
  .onMobile {
    display: inherit;
  }
  .onPC {
    display: none !important;
  }
  .moB {
    display: block;
  }
  .pcB {
    display: inline-block;
  }

  /* header */
  .headerWrap {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .headerWrap .logoArea {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    z-index: 10;
  }
  /*메인인 경우 추후 적용 .logoArea .KOSMElogo {display:block; position:absolute; left:calc(50% - 80px); top:18px; width:160px; height:19px;} */
  .main .logoArea .KOSMElogo {
    display: block;
    position: absolute;
    left: calc(50% - 80px);
    top: 18px !important;
    width: 160px;
    height: 19px;
  }

  /* .logoArea .KOSMElogo {display:block; position:absolute; left:calc(50% - 80px); top:-30px !important; width:160px; height:19px;} */
  .logoArea .KOSMElogo {
    display: block;
    position: absolute;
    left: calc(50% - 80px);
    top: 22px !important;
    width: 160px;
    height: 19px;
  } /* 2021.02.03 곽현준 수정 - 모바일에서 로고 보이게 설정 */

  .logoArea .KOSMElogo a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: url(/images/common/kosmeLogo.png) no-repeat 50%;
    background-size: 100% auto;
  }

  /* .logoArea .btn_home {
		position:fixed;
		top:14px;
		right:58px;
		display:block;
		width:33px;
		height:33px;
		background:url('/images/contents/ico_home.png') 0 0 no-repeat;
		background-size:33px;
		z-index:9999 !important;
	} */

  .logoArea .btn_home {
    position: fixed;
    top: 14px;
    right: 52px;
    display: block;
    width: 45px;
    height: 32px;
    background: url("/images/contents/ico_home_new.png") 6px 0 no-repeat;
    background-size: 32px;
    z-index: 9999 !important;
  }

  .logoArea .mobileGnbHandle {
    display: block;
    position: fixed;
    right: 15px;
    top: 16px;
    width: 30px;
    height: 30px;
  }
  .logoArea .mobileGnbHandle::before,
  .logoArea .mobileGnbHandle::after,
  .logoArea .mobileGnbHandle span::before,
  .logoArea .mobileGnbHandle span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    border: solid #000 2px;
    border-radius: 2px;
  }
  .logoArea .mobileGnbHandle::before {
    left: 0;
    top: 0;
  }
  .logoArea .mobileGnbHandle::after {
    left: 15px;
    top: 0;
  }
  .logoArea .mobileGnbHandle span::before {
    left: 0;
    top: 15px;
  }
  .logoArea .mobileGnbHandle span::after {
    left: 15px;
    top: 15px;
  }

  .headerWrap .header {
    display: block;
    position: fixed;
    left: -110%;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 97px;
    background-color: #fff;
    z-index: 100;
    transition: all 0.3s;
  }
  .headerWrap .header::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 97px;
    background-color: #3b3b3b;
  }
  .headerWrap .header .headerin {
    display: block;
    position: relative;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .headerWrap .header.opened {
    left: 0;
    transition: all 0.3s;
  }
  .headerWrap.transparent:hover {
    background: none;
  }
  .header .mobileGnbClose {
    display: block;
    position: absolute;
    right: 16px;
    top: 20px;
    width: 30px;
    height: 30px;
    padding: 0;
    overflow: visible;
    z-index: 100;
  }
  .header .mobileGnbClose.all_close::before {
    left: 0;
    top: 8px;
    background-color: #fff;
  }
  .header .mobileGnbClose.all_close::after {
    left: 0;
    top: 8px;
    background-color: #fff;
  }

  .header .swiftArea {
    height: initial;
    background-color: transparent;
    text-align: left;
  }
  .header .swiftArea .innerFix {
    display: block;
    justify-content: initial;
  }

  .swiftArea .swiftZone {
    display: block;
    top: 0;
    flex-direction: initial;
  }
  .swiftZone .individual {
    display: block;
    position: fixed;
    left: -110%;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 60px 0 0 20px;
    flex-direction: initial;
    z-index: 100;
    font-size: 1.6rem;
    transition: all 0.3s;
  }
  .header.opened .swiftZone .individual {
    left: 0;
    transition: all 0.3s;
  }
  .individual .name {
    color: #38fffe;
  }
  .eraWrap .era {
    min-width: 50px;
    color: #38fffe;
    border-bottom: none;
  }
  .eraWrap .era.after_triangle::after {
    border-bottom-width: 8px;
    border-left-width: 7px;
    border-right-width: 7px;
    right: 0;
    top: 4px;
    border-bottom-color: #38fffe;
  }
  .eraWrap .era.after_triangle.open::after {
    top: 0;
  }
  .eraWrap .slideTarget {
    display: none;
    position: absolute;
    top: 37px;
    left: -15px;
    width: calc(100% + 20px);
    margin: 0;
    padding: 0;
    background-color: #3b3b3b;
  }
  .eraWrap .slideTarget li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .eraWrap .slideTarget .selectUnit {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 8px 0;
    text-align: center;
    color: #999;
  }
  .eraWrap .slideTarget .selectUnit {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 10px 0;
    text-align: center;
  }
  .individual .logBtn {
    position: absolute;
    width: 100%;
    left: 0;
    top: 15px;
    margin: 0 0 0 16px;
    padding: 0;
  }
  /* .individual .qrBtn {position:absolute; width:100%; left:40px; top:15px; margin:0 0 0 16px; padding:0;} */
  .individual .qrBtn {
    position: absolute;
    right: 15px;
    top: 53px;
    margin: 0;
    padding: 0;
  } /* 2021.02.09 곽현준 추가 - 모바일 로그아웃 버튼 보이게 하기 위해 */
  .swiftZone .swiftLink {
    margin: 36px 0;
    padding: 0;
    flex-direction: column;
  }
  .swiftLink li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .swiftLink li + li {
    margin-left: 0;
    margin-top: 28px;
  }
  .individual .logBtn button,
  .individual .logBtn a {
    color: #666;
  }
  .swiftLink button,
  .swiftLink a {
    color: #666;
    font-size: 1.8rem;
  }
  .individual .logBtn button.logoutBtn,
  .individual .logBtn button.loginBtn {
    width: 30px;
    height: 30px;
    background-size: cover;
  }

  .individual .logBtn + span {
    display: block;
    position: absolute;
    top: 25px;
    left: 52px;
    color: #fff;
  }

  .individual .logBtn.admin,
  .individual .logBtn.insider,
  .individual .logBtn.mypage {
    display: none;
  }
  .individual .logBtn button.logoutBtn span,
  .individual .logBtn button.loginBtn span {
    position: absolute;
    font-size: 1px;
    color: transparent;
    text-indent: -9999px;
  }
  .individual .logBtn .signMessage {
    display: block;
    position: relative;
    margin: 0;
    padding: 11px 0 0 0;
    font-weight: 400;
    color: #fff;
    font-size: 1.6rem;
  }
  .individual .logBtn .signin {
    position: absolute;
    left: 150px;
    top: 44px;
    margin: 0;
    padding: 0;
    background: none !important;
    color: #999;
  }
  .individual .logBtn .signin::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #999;
  }

  .header .gnbArea {
    display: block;
    position: relative;
    margin: 0;
    padding: 0; /* height:calc(100% - 120px); overflow-y:auto; */
  }

  .gnbArea .realgnbWrap {
    display: block;
    position: relative;
    left: initial;
    top: initial;
    width: 100%;
    background-color: #fff;
    margin: 20px 0 0 0;
    padding: 0;
    z-index: 100;
  }
  .realgnbWrap .gnbMenu {
    display: flex;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    flex-direction: column;
    justify-content: center;
  }
  .realgnbWrap .gnbMenu li.depthFirst {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border-bottom: solid #999 1px;
  }
  .realgnbWrap .gnbMenu li.depthFirst:last-child {
    padding-right: 0;
  }
  .realgnbWrap .gnbMenu li.depthFirst h2 {
    display: none;
  }
  .realgnbWrap .gnbMenu li.depthFirst button {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    font-size: 2rem;
    color: #222;
    font-weight: 400;
    text-align: left;
    outline: none;
  }
  .realgnbWrap .gnbMenu li.depthFirst button::before {
    content: "";
    display: block;
    position: absolute;
    right: 3px;
    top: calc(50% - 1px);
    width: 15px;
    height: 3px;
    background-color: #222;
  }
  .realgnbWrap .gnbMenu li.depthFirst button::after {
    content: "";
    display: block;
    position: absolute;
    right: 9px;
    top: calc(50% - 7px);
    width: 3px;
    height: 15px;
    background-color: #222;
  }
  .realgnbWrap .gnbMenu li.current button {
    border-bottom: solid #999 1px;
  }
  .realgnbWrap .gnbMenu li.current > button::after {
    display: none;
  }
  .realgnbWrap .gnbMenu li.depthFirst + li.depthFirst {
    border-left: none;
  }
  .realgnbWrap .gnbMenu ul.depthIn {
    display: none;
    margin: 0;
    background-color: #f7f7f7;
  }
  .realgnbWrap .gnbMenu ul.depthIn li + li {
    margin-top: 0;
    border-top: solid #e2e3e5 1px;
  }
  .realgnbWrap .gnbMenu ul.depthIn li button.subtoggle {
    display: block;
    color: #666;
    font-size: 1.8rem;
    padding: 20px 12px;
    font-weight: 400;
    border-bottom: none;
  }
  .realgnbWrap .gnbMenu ul.depthIn li button.subtoggle::before {
    width: 12px;
    height: 2px;
    background-color: #666;
    right: 13px;
  }
  .realgnbWrap .gnbMenu ul.depthIn li button.subtoggle::after {
    width: 2px;
    height: 12px;
    background-color: #666;
    right: 18px;
    top: calc(50% - 6px);
  }
  .realgnbWrap .gnbMenu ul.depthIn li.current .subtoggle::after {
    display: none;
  }
  .realgnbWrap .gnbMenu ul.depthIn li a {
    display: inline-block;
    text-align: left;
    color: #666;
    font-size: 1.8rem;
    padding: 20px 12px;
    font-weight: 400;
  }
  .realgnbWrap .gnbMenu ul.depthIn li .subtoggle + a {
    display: none;
  }
  .realgnbWrap .gnbMenu ul.depthLast {
    display: none;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .realgnbWrap .gnbMenu ul.depthLast li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .realgnbWrap .gnbMenu ul.depthLast li + li {
    border-top: none;
  }
  .realgnbWrap .gnbMenu ul.depthLast li a {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 100;
    padding: 0 0 0 24px;
    margin-bottom: 20px;
  }
  .realgnbWrap .realgnbClose {
    display: none;
  }

  .realgnbWrap .gnbMenu li.depthFirst.adminMenu {
    display: block;
  }

  .keyVisual {
    display: none;
    height: 0 !important;
  }

  /* 본문영역 */
  .contentsWrap {
    margin-bottom: 10rem;
  } /*201228 박진우 추가*/
  .contentsWrap {
    margin-bottom: 0;
  } /* 210302 곽현준 수정*/
  .contentsWrap .contentBody {
    /*margin-bottom:10rem;*/
    padding: 35px 16px;
    box-sizing: border-box;
  }

  /* .contentBody .headzone {display:block; position:fixed; left:50px; top:18px; width:calc(100% - 100px); z-index:10; text-align:center; text-indent:0px;} */
  .contentBody .headzone {
    /*display:block;*/
    position: fixed;
    left: 50px;
    top: 18px;
    width: calc(100% - 147px);
    z-index: 10;
    text-align: center;
    text-indent: 0px;
    background-color: none;
  } /* 210203 곽현준 수정 - 홈버튼 가림 수정 */

  /* .contentBody .headzone.flexWrap {flex-direction:column;} */
  .contentBody .headzone.flexWrap {
    flex-direction: column;
    background-color: #fff;
  } /* 210203 곽현준 추가 - 서브페이지에서는 로고 숨김 */

  /* .contentBody .headzone.line {margin-bottom:0; border-bottom:none;} */
  .contentBody .headzone.line {
    margin-bottom: 30px;
    background-color: unset;
  } /* 210203 곽현준 추가 - 서브페이지에서는 로고 숨김 */

  .headzone .contHeading {
    padding: 0;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -2px;
  }
  .contentBody .contentzone {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
  }

  /* footer */
  /* .footerWrap {background-color:#333; padding:0 20px;}
	.footerWrap .relatedAgency {padding:16px 0;}
	.relatedAgency .flinkBtn {display:block; position:relative; width:100%; height:30px; margin:0; padding:0 30px 0 12px; background-color:#999; border:solid #666 1px; font-size:1.4rem; font-weight:400; color:#333; text-align:left;}
	.relatedAgency .flinkBtn::after {position:absolute; right:10px; top:calc(50% - 5px); border-bottom-width:10px; border-left-width:8px; border-right-width:8px; transform:rotate(180deg); transition:all 0.2s;}
	.relatedAgency.opened .flinkBtn::after {transform:rotate(0deg); transition:all 0.2s; top:calc(50% - 10px);}
	.relatedAgency ul.innerFix {display:none; position:absolute; left:0; bottom:47px; height:initial; padding:0 12px; background-color:#bcbcbc;}
	.relatedAgency ul li {display:block; position:relative; margin:0; padding:0;}
	.relatedAgency ul li a {display:block; position:relative; width:100%; height:initial; padding:0;}
	.relatedAgency ul li.flink01 a, .relatedAgency ul li.flink02 a,	.relatedAgency ul li.flink03 a {background:none; width:100%;}
	.relatedAgency ul li a span {display:block; position:relative; font-size:1.4rem; height:40px; line-height:40px; color:#333; text-indent:0; font-weight:400; padding:0;}
	.relatedAgency ul li + li {margin-left:0; border-top:solid #999 1px;}

	.footerWrap .footer {display:block; position:relative; height:initial; margin:0; padding-top:12px; padding-bottom:15px;}
	.footer .provisionInfo {margin:0 0 20px 0;flex-direction:column; justify-content:initial;}
	.footer .provisionInfo div.flex {flex-direction:row; justify-content:space-between;}
	.footer .provisionInfo .flex + .flex {margin-left:0px; margin-top:10px;}
	.footer .provisionInfo a {font-size:1.4rem;}
	.footer .provisionInfo a + a {margin-left:0px;}
	.footer .address p {display:block; position:relative; margin:0; padding:0; text-align:center; font-size:12px; color:#9a9a9a;}
	.footer .address p.copyright {margin-bottom:3px;} */

  .historyBack {
    display: block;
    position: fixed;
    left: 16px;
    top: 20px;
    width: 15px;
    height: 28px;
    z-index: 15;
    cursor: pointer;
  }
  .historyBack::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-bottom: solid #000 2px;
    border-left: solid #000 2px;
    transform: rotate(45deg);
  }
  .historyBack span {
    position: absolute;
  }
  .main .historyBack {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  .logoArea .KOSMElogo {
    display: block;
    position: absolute;
    left: calc(50% - 93px);
    top: 22px !important;
    width: 138px;
    height: 16px;
  } /* 2021.02.03 곽현준 추가 - 모바일 최소 사이즈에서 로고 축소 */
}

/* colGrid 변형 */
.colGrid {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}
.colGrid > li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.colGrid.col2to1 > li {
  width: 50%;
}
.colGrid.col3to1 > li {
  width: 33.33%;
}
.colGrid.col3to2 > li {
  width: 33.33%;
}
.colGrid.col4to1 > li {
  width: 25%;
}
.colGrid.col4to2 > li {
  width: 25%;
}
.colGrid.col5to1 > li {
  width: 20%;
}
.colGrid.col5to2 > li {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .colGrid.col2to1 > li {
    width: 100%;
  }
  .colGrid.col3to1 > li {
    width: 100%;
  }
  .colGrid.col3to2 > li {
    width: 50%;
  }
  .colGrid.col4to1 > li {
    width: 100%;
  }
  .colGrid.col4to2 > li {
    width: 50%;
  }
  .colGrid.col5to1 > li {
    width: 100%;
  }
  .colGrid.col5to2 > li {
    width: 50%;
  }
}

/**** Footer영역 구성 ****/
.footerWrap {
  display: block;
  position: relative;
  padding: 48px 0 0;
  background-color: #383f50;
  max-width: 1648px;
  margin: 0 auto;
  border-radius: 50px 50px 0 0;
}
.footerWrap .siteMenu {
  position: relative;
  margin: 0 28px 18px;
}
.footerWrap .siteMenu .innerFix {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 0;
}
.siteMenu .siteGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
} /*201230 박진우 수정 크로스브라우징 대응*/
.siteGroup .insite {
  display: flex;
  position: relative;
  width: 370px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.siteGroup .insite + .insite {
  margin-left: 0;
} /*201230 박진우 수정*/
.siteGroup .insite li {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 30px;
  padding-right: 14px;
}
.siteGroup .insite li::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 10px;
  border-right: 1px solid #717682;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.siteGroup .insite li:last-of-type::after {
  display: none;
}
.siteGroup .insite li + li {
  margin-left: 14px;
}
.siteGroup .insite li a {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: -1.02px;
}
.siteGroup .insite li .personalLink {
  color: #8ac7ff;
  font-weight: 600;
}
.siteMenu .familyGroup {
  display: flex;
  position: relative;
  width: 60%;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: flex-end;
}
.familyGroup .linkList {
  width: 200px;
  font-size: 14px;
  color: #999;
}
.familyGroup .linkList + .linkList {
  margin-left: 16px;
}

.footer {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 28px;
}
.footer .innerFix {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0 auto 18px;
  width: auto;
}
.footer .innerFix .footerImgBox {
  display: flex;
  justify-content: space-between;
}
.footer .logo {
  display: block;
  margin-bottom: 24px;
  position: relative;
  width: 261px;
  height: 30px;
  padding: 0;
  background: url(/images/common/kosmeLogo_footer.png) no-repeat 0 0;
  font-size: 1px;
  color: transparent;
  text-indent: -9999px;
}
.footer .address {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 0;
  align-items: flex-start;
}
.footer .logo + .address {
  margin-left: 0px;
}
.address p {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #7b7b7b;
  margin-bottom: 44px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

/*** 링크리스트 ***/
.linkList {
  display: inline-block;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
  vertical-align: top;
}
.linkList .toggleBtn {
  display: block;
  position: relative;
  width: 100%;
  height: 39px;
  margin: 0;
  padding: 0 24px 0 24px;
  vertical-align: middle;
  text-align: left;
  color: #fff;
  border: 1px solid #666;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 15px;
  border-radius: 25px;
}
.linkList .toggleBtn::after {
  content: "";
  display: block;
  position: absolute;
  right: 14px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  width: 10px;
  height: 14px;
  background: url(/images/common/icon_footerArrow.svg) no-repeat center center;
}
.linkList .list {
  overflow: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0 10px;
  background-color: #bcbcbc;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.2s;
}
.linkList .list li {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  word-break: break-all;
  text-overflow: ellipsis;
  color: #3b3b3b;
}
.linkList .list li a {
  display: block;
  position: relative;
  height: 30px;
  line-height: 30px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #333;
}
.linkList .list li + li {
  border-top: solid #999 1px;
}
.linkList.opened {
  overflow: visible;
}
/* .linkList.opened .list {z-index:10; height:100%; min-height:60px; visibility:visible;} */
.linkList.opened .list {
  z-index: 10;
  height: 100%;
  min-height: 123px;
  visibility: visible;
} /* 2021.01.25 곽현준 수정 - 푸터 콤보 높이 수정 */

/*** 링크리스트 백업 ***/
/* .linkList {display:inline-block; position:relative; margin:0; padding:0;}
.linkList .toggleBtn {display:block;position:relative;width:100%;height:30px;margin:0;padding:0 24px 0 14px;vertical-align:middle;text-align:left;color:#9a9a9a;border:1px solid #666;background-color:#4d4d4d;}
.linkList .toggleBtn::after {content:''; display:block; position:absolute; right:14px; top:calc(50% - 12px); width:10px; height:14px; border:8px solid transparent; border-left:10px solid #9a9a9a; transform:rotate(90deg);}
.linkList .toggleBtn.arrow::after {content:''; display:block; position:absolute; right:12px; top:calc(50% - 2px); width:8px; height:1px; background-color:#000; transform:rotate(45deg); transition:all 0.2s;}
.linkList .toggleBtn.arrow::before {content:''; display:block; position:absolute; right:10px; top:calc(50% - 6px); width:1px; height:9px; background-color:#000; transform:rotate(45deg); transition:all 0.2s;}
.linkList .list {display:none; position:absolute; left:0; top:30px; width:100%; max-height:158px; min-height:60px; margin:0; padding:0;}
.linkList .list li {display:block; position:relative; width:100%; margin:0; padding:0; white-space:nowrap; word-break:break-all; text-overflow:ellipsis; color:#3b3b3b;}
.linkList .list li a {display:block; position:relative; height:30px; line-height:30px; margin:0; padding:0; font-size:13px; color:#333;}
.linkList .list li + li {border-top:solid #999 1px;}
.linkList.opened .toggleBtn::after {transform:rotate(-90deg);}
.linkList.opened .toggleBtn.arrow::after,
.linkList.opened .toggleBtn.arrow::before {transform:rotate(-45deg); transition:all 0.2s;} */
/* 링크리스트가 하단에 있을 경우 slideUp 백업 */
/* .linkList.slideUp.opened .toggleBtn {background-color:#4e4e4e;}
.linkList.slideUp .toggleBtn::after {transform:rotate(-90deg);}
.linkList.slideUp.opened .toggleBtn::after {transform:rotate(90deg); top:calc(50% - 3px)}
.linkList.slideUp .toggleBtn.arrow::after,
.linkList.slideUp .toggleBtn.arrow::before {transform:rotate(-45deg); transition:all 0.2s;}
.linkList.slideUp.opened .toggleBtn.arrow::after,
.linkList.slideUp.opened .toggleBtn.arrow::before {transform:rotate(45deg); transition:all 0.2s;}
.linkList.slideUp .list {overflow:auto; z-index:100; top:initial; bottom:30px; padding:0 10px; background-color:#bcbcbc;} */

@media screen and (max-width: 780px) {
  .footerWrap {
    padding: 16px;
  }
  .footerWrap .siteMenu {
    flex-direction: column;
    padding: 0;
  }
  .footerWrap .siteMenu .innerFix {
    flex-wrap: wrap;
  }
  .familyGroup .linkList {
    width: 100%;
  }
  .siteMenu .familyGroup {
    display: block;
    width: 100%;
  } /*201230 박진우 수정*/
  .siteMenu .siteGroup {
    flex-direction: column;
  }
  .siteMenu .familyGroup + .siteGroup {
    margin-top: 16px;
  }
  .siteGroup .insite {
    width: 100%;
    justify-content: space-between;
  }
  .siteGroup .insite li + li {
    margin-left: 0;
  }
  .siteGroup .insite + .insite {
    margin-top: 12px;
    margin-left: 0;
  }
  .familyGroup .linkList + .linkList {
    margin-top: 12px;
    margin-left: 0;
  }
  .footer {
    display: block;
    border: 0;
    text-align: center;
    padding-bottom: 0;
  }
  .footer .address {
    display: block;
  }
  .siteGroup .insite li {
    line-height: normal;
    padding-right: 0;
  }
  .siteGroup .insite li::after {
    display: none;
  }
  .footer .logo + .address {
    margin-top: 20px;
    margin-left: 0;
  }
  .address p + p {
    margin: 8px 0 28px 0;
  }
  .footer .innerFix {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
}

/* QR코드 생성 */
.onlyMobileUse {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
.QRcodeWrap {
  border-top: solid #003894 1px;
}
.QRcodeWrap .topMsg {
  display: block;
  position: relative;
  margin: 0;
  padding: 28px 0 40px 0;
  text-align: center;
}
.QRcodeWrap .QRTab {
  width: 260px;
  margin: 0 auto 40px auto;
}
.QRTab {
  display: flex;
  display: -webkit-flex;
}
.QRTab .btn {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  align-content: center;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  vertical-align: middle;
  text-align: center;
  color: #fff;
}
.QRTab .btn.office {
  background-color: #003894;
}
.QRTab .btn.school {
  background-color: #4380e0;
}
.QRTab .btn.office:before {
  background: url(/images/common/ico_qr01.png) no-repeat 0 center;
  background-size: 100%;
}
.QRTab .btn.school:before {
  background: url(/images/common/ico_qr02.png) no-repeat 0 center;
  background-size: 100%;
}
.QRTab .btn:before {
  content: "";
  display: block;
  position: relative;
  width: 50px;
  height: 45px;
  margin: 0 auto;
}
.QRTab .btn span {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 16px;
}
.QRTab .btn + .btn {
  margin-left: 20px;
}
.manualHeading {
  display: block;
  position: relative;
  margin: 20px 0 10px 0;
  font-weight: bold;
}
.manualQR {
  display: block;
  position: relative;
  margin: 0;
}
.manualQR .manualbox {
  display: block;
  position: relative;
  margin: 0;
  padding: 12px;
  background-color: #f5f9ff;
}
.manualbox .title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #222;
}
.manualbox ul li.title {
  margin-bottom: 0;
}
.manualbox .title::before {
  font-size: 14px;
  top: 4px;
}
.manualbox ol {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 0 0 12px;
}
.manualbox ol li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 0 0 20px;
}
.manualbox ol li i {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.manualHeading + .manualQR {
  margin-top: 12px;
}
.manualbox ol li + li {
  margin-top: 6px;
}
.manualbox ol + p {
  margin-top: 20px;
}
.manualbox + .manualbox {
  margin-top: 24px;
}
.marker_dot.QR {
  display: block;
  position: relative;
  margin-top: 20px;
}
.marker_dot.QR li {
  color: #666;
  padding-left: 50px;
}
.marker_dot.QR li::before {
  background-color: #666;
}
.marker_dot.QR li span.tip {
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 0;
}

.QRSchool {
  border-top: solid #003894 1px;
}
.QRSchool .heading {
  display: block;
  position: relative;
  margin: 0;
  padding: 28px 0;
  text-align: center;
}
.QRSchool .boardListWrap + .boardListWrap {
  margin-top: 40px;
}

.makeQRcodeWrap {
  display: block;
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 20;
  overflow: hidden;
  overflow-y: auto;
  transition: left 0.3s;
}
.makeQRcodeWrap.current {
  left: 0;
  transition: left 0.3s;
}
.makeQRcodeWrap .inoutQR {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 16px 0 16px;
  font-size: 1.6rem;
}
.inoutQR .title {
  display: block;
  position: relative;
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.inoutQR .title.work {
  display: none;
}
.inoutQR.office .title.study {
  display: none;
}
.inoutQR.office .title.work {
  display: block;
}
.inoutQR .classInfo {
  display: block;
  position: relative;
  margin: 0 0 0 0;
  padding: 0;
  text-align: center;
}
.inoutQR.office .classInfo {
  display: none;
}
.inoutQR.office .btnMain {
  margin-top: 15px;
}
.inoutQR.office .btnMain button {
  min-width: 213px;
}
.classInfo .cate,
.classInfo .point {
  display: block;
  position: relative;
  margin: 0 0 6px 0;
  padding: 0;
  font-weight: 400;
}
.inoutQR .printQR {
  display: block;
  position: relative;
  width: 250px;
  margin: 0 auto 0 auto;
}
.printQR .rate {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.printQR .rate span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.printQR .rate span img {
  display: block;
  width: 100%;
}
.inoutQR .useQRMsg {
  display: block;
  position: relative;
  margin: 0 0 0 0;
  padding: 0;
  text-align: center;
}

/* 2024.10월 김지안 추가 */
.headerWrap.transparent {
  background: none;
  border-bottom: 1px solid rgba(8, 70, 190, 0.1);
}
.headerWrap.transparent:hover {
  background: #fff;
}
.headerWrap.scroll .memberInfoBox {
  bottom: -25px;
}
.siteGroup .insite li a {
  transition: all 0.3s;
}
.siteGroup .insite li a:hover {
  color: #fff;
}
.linkList .toggleBtn {
  border: 2px solid transparent;
  transition: 0.3s;
}
.linkList .toggleBtn:hover {
  border: 2px solid rgba(255, 255, 255, 0.8);
}

/* 오브젝트 애니메이션 */
.wonBox1 {
  position: absolute;
  top: 330px;
  transform-origin: center;
  animation: wonAniBox 16s infinite alternate;
  width: 1090px;
  height: 545px;
  left: calc(50% - 1200px);
}
.wonBox1 .won1 {
  position: absolute;
}
.wonBox1 .won2 {
  position: absolute;
  margin-left: 545px;
  animation: wonAni 8s infinite alternate;
}

.wonBox2 {
  position: absolute;
  top: 0px;
  transform: retate(45deg);
  transform-origin: center;
  animation: wonAniBox2 36s infinite alternate;
  width: 1090px;
  height: 545px;
  left: calc(50% + 200px);
}
.wonBox2 .won1 {
  position: absolute;
}
.wonBox2 .won2 {
  position: absolute;
  margin-left: 545px;
  animation: wonAni 15s infinite alternate;
}

.wonBoxSub {
  position: absolute;
  top: 0px;
  transform: retate(45deg);
  transform-origin: center;
  animation: wonAniBox2 36s infinite alternate;
  width: 1090px;
  height: 545px;
  left: calc(50% + 400px);
}
.wonBoxSub .won1 {
  position: absolute;
}
.wonBoxSub .won2 {
  position: absolute;
  margin-left: 545px;
  animation: wonAni 15s infinite alternate;
}
@keyframes wonAni {
  0% {
    transform: translatex(0px);
  }
  100% {
    transform: translatex(-100px);
  }
}
@keyframes wonAniBox {
  0% {
    transform: translateY(0px) rotate(0deg) scale(0.8);
  }
  100% {
    transform: translateY(100px) rotate(42deg) scale(0.8);
  }
}
@keyframes wonAniBox2 {
  0% {
    transform: translateY(0px) rotate(45deg) scale(1.4);
  }
  100% {
    transform: translateY(100px) rotate(100deg) scale(1.4);
  }
}
@keyframes wonAniBoxSub {
  0% {
    transform: translateX(-200px) translateY(100px) rotate(-45deg) scale(0.5);
  }
  100% {
    transform: translateX(-200px) translateY(200px) rotate(-50deg) scale(0.5);
  }
}
@keyframes wonAniBoxSub2 {
  0% {
    transform: translateX(-100px) translateY(-50px) rotate(45deg) scale(0.8);
  }
  100% {
    transform: translateX(-100px) translateY(50px) rotate(60deg) scale(0.8);
  }
}

.contentBody .diagramBox {
  position: fixed;
}
.contentBody .wonBox1 {
  animation: wonAniBoxSub 16s infinite alternate;
}
.contentBody .wonBox2 {
  animation: wonAniBoxSub2 16s infinite alternate;
}
/* 2024.10월 김지안 추가 */

/* 미디어 쿼리 시작 - 2024.09.03 김지안 */
@media screen and (max-width: 1280px) {
  /* header */
  .headerWrap .header {
    margin: 0 20px;
    height: 64px;
    justify-content: space-between;
  }

  .gnbArea {
    display: none;
  }
  .gnbArea .fakegnb {
  }
  .gnbArea .fakegnb > li {
    margin: 0 1%;
  }
  .gnbArea .fakegnb li button {
    font-size: 17px;
  }
  .memberInfoBox {
    display: none;
  }

  .onMobileGnb.on {
    left: 0;
    display: block;
  }
  .onAllMenu,
  .onAllMenu.on {
    display: none;
  }

  .locationWrap {
    top: 64px;
  }
  .locationWrap .innerFix {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .contentsWrap {
    padding: 0 20px;
  }
  .contentsWrap .contentBody {
    padding: 150px 0px;
  }
  .contentBody .headzone {
    padding-bottom: 50px;
  }
  .contentBody .innerFix {
    margin: 0;
  }

  .footerWrap {
    border-radius: 30px 30px 0 0;
    padding: 38px 0 0;
  }
  .footerWrap .siteMenu .innerFix {
    flex-direction: column;
  }
  .siteMenu .siteGroup {
    margin-bottom: 20px;
  }
  .siteGroup .insite {
    flex-wrap: wrap;
    width: unset;
    justify-content: flex-start;
  }
  .siteGroup .insite li {
    margin-right: 14px;
  }
  .siteGroup .insite li a {
    padding: 7px 0;
  }
  .siteGroup .insite li + li {
    margin-left: 0;
  }
  .siteMenu .familyGroup {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .familyGroup .linkList {
    width: 50%;
  }
  .familyGroup .linkList + .linkList {
    margin: 0 0 0 15px;
  }

  .footer .innerFix {
    width: auto;
  }
  .footer .innerFix .footerImgBox {
    width: 100%;
    align-items: center;
    margin-bottom: 24px;
  }
  .footer .logo {
    margin-bottom: 0;
  }
  .footer .innerFix .address p {
    margin-bottom: 13px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
  }
  .footer .innerFix .address p + p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
  }

  .headerWrap.scroll {
    border-bottom: 1px solid #ccdcff;
  }
  .locationWrap.scroll {
    top: 64px;
    border-radius: 0px;
  }

  .contentBody .wonBox1 {
    left: -25%;
  }
  .contentBody .wonBox2 {
    left: 55%;
  }
}

@media screen and (max-width: 768px) {
  #wrapper {
    width: 100%;
  }

  .headerWrap {
    position: fixed;
  }
  .headerWrap.transparent:hover {
    background: none;
  }
  .headerWrap .header {
    position: relative;
    left: auto;
    display: flex;
    padding-top: 0;
    margin: 0 15px;
    height: 53px;
    width: auto;
  }
  .headerWrap .header::before {
    display: none;
  }
  .headerWrap .header .gnbArea {
    display: none;
  }
  .headerWrap.scroll .header {
    background-color: transparent;
  }
  .onHeaderR {
    justify-content: flex-end;
    height: 100%;
  }
  .onHeaderR .loginTimer,
  .onHeaderR .onLoginBtn,
  .onHeaderR .onSignup,
  .memberInfoBox {
    display: none;
  }
  .headerWrap .logoArea {
    position: relative;
    width: auto;
    display: inline-flex;
    align-items: center;
    height: 53px;
    background: transparent;
  }
  .logoArea .KOSMElogo {
    position: relative;
    top: auto !important;
    left: 0px;
  }
  .logoArea .btn_home {
    display: none;
  }
  .logoArea .mobileGnbHandle {
    display: none;
  }
  .historyBack {
    display: none;
  }

  .locationWrap {
    top: 53px;
    height: 40px;
    border-top: 1px solid #cbdaff;
    border-bottom: 1px solid #cbdaff;
    z-index: 100;
  }
  .locationWrap .innerFix {
    padding: 0;
    background: linear-gradient(90deg, #dae5ff 0%, #f6f9ff 100%);
    height: 100%;
    border: none;
  }
  .locationWrap .localInfo {
    height: 40px;
  }
  .locationWrap .localInfo .home {
    height: 40px;
    flex: 0 0 auto;
  }
  .localInfo .home {
    width: 38px;
    padding: 0;
  }
  .localInfo .localMenu {
    width: 30%;
    min-width: unset;
  }
  .localInfo .category {
    line-height: 40px;
    height: 38px;
    font-size: 13px;
    min-width: auto;
    width: calc((100% - 38px) / 3);
  }
  .localMenu .toggleBtn {
    height: 38px;
    min-width: unset;
    font-size: 13px;
    width: 100%;
  }
  .localMenu .toggleBtn .valueInit {
    line-height: 40px;
    padding: 0 20px 0 12px;
  }
  .localMenu .toggleBtn.after_triangle::after {
    right: 10px;
  }
  .localMenu .toggleBtn.after_triangle .valueInit {
    padding-right: 20px;
  }
  .localMenu .menuList {
    top: 38px;
  }
  .localMenu .menuList li a {
    font-size: 13px;
    padding: 4px 0;
    width: auto;
    white-space: normal;
  }

  .contentsWrap {
    margin: 93px 0px 0;
    padding: 0 15px;
  }
  .contentsWrap.noLocation {
    margin: 53px 0px 0;
  }
  .contentsWrap .contentBody {
    padding: 35px 0px;
  }
  .contentBody .headzone {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    text-align: left;
    z-index: 0;
  }
  .headzone .contHeading {
    font-weight: 600;
    line-height: 35px;
  }
  .headzone .contHeading > .btn {
    vertical-align: 3px;
    margin: 0 0 0 10px;
    height: 35px;
    border-radius: 20px;
  }
  .headzone .contHeading > .btn span {
    padding: 0 6px;
  }
  .contentBody .headzone {
    padding: 0;
  }
  .contentBody .headzone.line {
    border-bottom: 1px solid rgba(8, 70, 190, 0.1);
    padding-bottom: 40px;
  }
  .headIconList > li > button {
    width: 35px;
    height: 35px;
  }
  .headIconList > li > .print,
  .headIconList > li > .print:hover,
  .headIconList > li > .share,
  .headIconList > li > .share:hover {
    background-size: 15px;
  }

  .footerWrap {
    padding: 28px 0 0;
    border-radius: 0;
  }
  .footerWrap .siteMenu {
    margin: 0 28px 18px;
  }
  .siteGroup .insite li {
    margin-right: 20px;
  }
  .siteGroup .insite li a {
    font-size: 15px;
    padding: 4px 0;
  }
  .linkList .toggleBtn {
    font-size: 14px;
    padding: 0 20px 0 14px;
    height: 32px;
  }
  .footer {
    padding: 0;
  }
  .footer .innerFix {
    margin-bottom: 0;
    margin: 0 28px;
  }
  .footer .footerImgBox .awardLogo {
    display: none;
  }
  .footer .logo {
    display: none;
  }
  .footer .logo + .address {
    text-align: left;
    margin-top: 0;
  }

  .quickBtnWrap {
    right: 20px;
  }
  .quickBtnList {
    bottom: 55px;
  }
  .quickBtnList > ul {
    width: 58px;
  }
  .quickBtnList > ul > li > a {
    font-size: 12px;
    padding: 20px 8px;
  }
  .quickSetBtn > span {
    width: 50px;
    font-size: 13px;
  }
  .quickSetBtn > button {
    padding: 5px 10px 5px 24px;
    font-size: 12px;
    background-size: 24%;
  }
  .quickSetBtn > button:hover {
    background-size: 24%;
  }
  .quickBtn {
    width: 40px;
    height: 40px;
  }
  .quickBtn img {
    width: 40px;
    height: 40px;
  }

  .headerWrap.scroll {
    position: fixed;
    z-index: 100;
    top: 0;
  }
  .locationWrap.scroll {
    top: 53px;
  }

  .memberInfoIn .select.border::after {
    display: none;
  }

  .boardListWrap .boardList li {
    margin-bottom: 10px;
  }

  .wonBox1 {
    left: -500px;
  }
  .wonBox2 {
    left: 10%;
  }

  .contentBody .wonBox1 {
    left: -10%;
  }
  .contentBody .wonBox2 {
    left: 35%;
  }

  @keyframes wonAniBox {
    0% {
      transform: translateY(100px) rotate(0deg) scale(0.4);
    }
    100% {
      transform: translateY(200px) rotate(42deg) scale(0.4);
    }
  }
  @keyframes wonAniBox2 {
    0% {
      transform: translateY(0px) rotate(45deg) scale(0.7);
    }
    100% {
      transform: translateY(100px) rotate(100deg) scale(0.7);
    }
  }
  @keyframes wonAniBoxSub {
    0% {
      transform: translateX(-200px) translateY(100px) rotate(-45deg) scale(0.4);
    }
    100% {
      transform: translateX(-200px) translateY(200px) rotate(-60deg) scale(0.4);
    }
  }
  @keyframes wonAniBoxSub2 {
    0% {
      transform: translateX(-100px) translateY(-50px) rotate(45deg) scale(0.6);
    }
    100% {
      transform: translateX(-100px) translateY(50px) rotate(60deg) scale(0.6);
    }
  }
}
