<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.img--style01 {
  display: block;
  margin: auto;
}

.img--style02 {
  display: block;
}

.quick__top {
  width: 63px;
  height: 63px;
  background-image: url(/image/common/top_btn.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 900;
  cursor: pointer;
  -webkit-transition: background ease .3s;
  transition: background ease .3s;
  display: none;
}

.quick__top.isAbs {
  position: absolute;
  bottom: 350px;
}

.quick__top:hover {
  background-image: url(/image/common/top_btn_hover.png);
}

.header {
  border-bottom: 1px solid #ebebeb;
  padding: 30px 0;
  background-color: #fff;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.header .header__inner {
  max-width: 1820px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .header__nav {
  margin-left: 100px;
}

.header .header__nav&gt;a {
  margin-right: 75px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1em;
}

.header .header__nav&gt;a:last-child {
  margin-right: 0;
}

.header .header__hbg {
  width: 20px;
  cursor: pointer;
  margin-left: auto;
}

.header .header__hbg:hover span+span {
  width: 20px;
}

.header .header__hbg span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.header .header__hbg span+span {
  margin-top: 8px;
  width: 13px;
  margin-left: auto;
}

.header .header__hbg.active span:nth-child(1) {
  -webkit-animation: ease .3s bar1 forwards;
  animation: ease .3s bar1 forwards;
}

.header .header__hbg.not-active span:nth-child(1) {
  -webkit-animation: ease .3s resetBar01 forwards;
  animation: ease .3s resetBar01 forwards;
}

.header .header__hbg.active span:nth-child(2) {
  -webkit-animation: ease .3s bar2 forwards;
  animation: ease .3s bar2 forwards;
}

.header .header__hbg.not-active span:nth-child(2) {
  -webkit-animation: ease .3s resetBar02 forwards;
  animation: ease .3s resetBar02 forwards;
}

.header.active {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.header.artist-view__header.active {
  position: inherit;
  top: auto;
  padding: 30px 0;
}

.all-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: linear-gradient(-45deg, #4f57a4, #ea008a);
  z-index: 1004;
  padding: 220px 0;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.all-menu.active {
  right: 0;
}

.all-menu .all-menu__inner {
  max-width: 1570px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.all-menu .all-menu__close {
  position: absolute;
  top: 40px;
  right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.all-menu .all-menu__close p {
  color: #fff;
  opacity: 0.5;
  font-size: 27px;
  font-weight: 600;
  margin-right: 15px;
  margin-top: 2px;
}

.all-menu::-webkit-scrollbar {
  width: 3px;
  background: none;
}

.all-menu::-webkit-scrollbar-thumb {
  background: #dcdcdc;
}

.all-menu::-webkit-scrollbar-track {
  background: none;
}

.all-menu:last-child {
  border-bottom: none;
}

.all-menu .all-menu__list&gt;li {
  margin-bottom: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

.all-menu .all-menu__list&gt;li.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.all-menu .all-menu__list&gt;li:last-child {
  margin-bottom: 0;
}

.all-menu .all-menu__list .list__depth1 {
  color: #fff;
  font-size: 90px;
  font-weight: 700;
  line-height: .8em;
  cursor: pointer;
  margin-right: 25px;
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

.all-menu .all-menu__list .list__depth1.deactive {
  opacity: 0.2;
}

.all-menu .all-menu__list .list__depth2 {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

.all-menu .all-menu__list .list__depth2.active {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.all-menu .all-menu__list .list__depth2&gt;a {
  margin-right: 30px;
  color: #fff;
  font-size: 18px;
}

.all-menu .all-menu__list .list__depth2&gt;a:last-child {
  margin-right: 0;
}

.all-menu .all-menu__info .info__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.all-menu .all-menu__info .info__sns&gt;a {
  margin-right: 43px;
  opacity: .7;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.all-menu .all-menu__info .info__sns&gt;a:hover {
  opacity: 1;
}

.all-menu .all-menu__info .info__sns&gt;a:last-child {
  margin-right: 0;
}

.all-menu .all-menu__info .info__para {
  margin-top: 56px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  line-height: 2em;
}

.footer&gt;.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer .footer__info {
  padding: 60px 0;
}

.footer .footer__info .info__para {
  font-size: 15px;
  color: #888888;
  font-weight: 300;
  line-height: 1.6em;
  margin-left: 60px;
  font-family: 'Noto Sans KR';
}

.footer .footer__info .info__para span {
  padding-left: 13px;
  margin-left: 12px;
  position: relative;
}

.footer .footer__info .info__para span::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #ddd;
  position: absolute;
  left: 0;
  top: 4px;
}

.footer .footer__info select {
  line-height: 45px;
  background-color: #f1f1f1;
  height: 45px;
  width: 175px;
  padding-left: 20px;
  border: none;
  border-radius: 30px;
  margin-left: auto;
  background-image: url(/image/common/arrow02.png);
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 9px 5px;
  /* 화살표 모양의 이미지 */
  -webkit-appearance: none;
  /* 네이티브 외형 감추기 */
  -moz-appearance: none;
  appearance: none;
}

.footer .footer__info select::-ms-expand {
  display: none;
}

.article--style01 {
  background-image: url(/image/common/footer_top_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 38px 0 39px;
}

.article--style01&gt;.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.article--style01 .top__audition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.article--style01 .top__audition&gt;p {
  margin: 0 10px 0 15px;
  line-height: 1em;
  font-weight: 700;
  font-size: 19px;
}

.article--style01 .top__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article--style01 .top__sns&gt;a {
  margin-right: 43px;
  opacity: .7;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.article--style01 .top__sns&gt;a:hover {
  opacity: 1;
}

.article--style01 .top__sns&gt;a:last-child {
  margin-right: 0;
}

.popup__dim {
  position: fixed;
  z-index: 1001;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  opacity: 0;
  cursor: pointer;
}

@-webkit-keyframes bar1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 7px;
    width: 25px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@keyframes bar1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 7px;
    width: 25px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@-webkit-keyframes bar2 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: -4px;
    width: 25px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@keyframes bar2 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: -4px;
    width: 25px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@-webkit-keyframes resetBar01 {
  0% {
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  100% {
    top: 0px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes resetBar01 {
  0% {
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  100% {
    top: 0px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes resetBar02 {
  0% {
    top: -5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  100% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes resetBar02 {
  0% {
    top: -5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  100% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@media all and (max-width: 1860px) {
  .header .header__inner {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}

/* 공통 */
.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}

@media all and (max-width: 1640px) {
  .all-menu .all-menu__inner {
    margin-left: 3.90625%;
    margin-right: 3.90625%;
  }

  .all-menu {
    padding: 150px 0;
  }

  .all-menu .all-menu__inner {
    display: block;
  }

  .all-menu .all-menu__info {
    margin-top: 125px;
  }
}

@media all and (max-width: 1199px) {
  .inner {
    width: auto;
    margin-left: 3.90625%;
    margin-right: 3.90625%;
  }

  .footer .footer__info .info__para font {
    display: block;
  }

  .footer .footer__info .info__para span:first-child {
    padding-left: 0;
    margin-left: 0;
  }

  .footer .footer__info .info__para span:first-child::before {
    display: none;
  }
}

@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }

  .hide-1024 {
    display: none !important;
  }

  .quick__top.isAbs {
    bottom: 440px;
  }

  .header {
    padding: 0;
  }

  .header.artist-view__header.active,
  .header.active {
    padding: 0;
  }

  .header .header__inner {
    padding: 25px 0;
  }

  .header__nav--mo__wrap {
    border-top: 1px solid #ebebeb;
  }

  .header__nav--mo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 25px;
    padding: 20px 0;
  }

  .header__nav--mo&gt;a {
    font-size: 2.3vw;
    font-weight: 700;
  }

  .all-menu {
    top: 81px;
    height: calc(100vh - 81px);
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    background: #fff;
    padding: 45px 0 0 0;
  }

  .all-menu .all-menu__close {
    display: none;
  }

  .all-menu .all-menu__info {
    display: none;
  }

  .all-menu .all-menu__list&gt;li {
    display: block;
    margin-bottom: 70px;
  }

  .all-menu .all-menu__list .list__depth1 {
    color: #000;
    font-size: 4vw;
    display: block;
    margin-right: 0;
    background-image: url(/image/common/arrow03.png);
    background-repeat: no-repeat;
    background-position: 100% center;
  }

  .all-menu .all-menu__list .list__depth2&gt;a {
    color: #000;
    display: none;
  }

  .all-menu .article--style01 {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .footer .footer__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer .footer__info .info__logo {
    width: 100%;
  }

  .footer .footer__info .info__logo img {
    margin: 0 0 40px 0;
  }

  .footer .footer__info .info__para {
    margin-left: 0;
  }
}

/* 타블렛 가로 이하 */
@media all and (max-width: 768px) {

  .quick__top.isAbs {
    /* bottom: 400px; */
  }

  .show-768 {
    display: block !important;
  }

  .hide-768 {
    display: none !important;
  }

  .article--style01 {
    padding: 20px 0;
  }
}

/* 타블렛 이하 ~ 모바일 */
@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }

  .hide-640 {
    display: none !important;
  }

  .quick__top {
    width: 50px;
    height: 50px;
    right: 4%;
    bottom: 25px;
  }

  .header__logo {
    width: 140px;
  }

  .header .header__inner {
    padding: 20px 0;
    margin-left: 3.90625%;
    margin-right: 3.90625%;
  }

  .header__nav--mo {
    padding: 12px 0;
    margin-left: 3.90625%;
    margin-right: 3.90625%;
  }

  .header__nav--mo&gt;a {
    font-size: 3.6vw;
  }

  .all-menu {
    top: 71px;
    height: calc(100% - 71px);
    padding: 35px 0 0 0;
  }

  .all-menu .all-menu__list&gt;li {
    margin-bottom: 35px;
  }

  .all-menu .all-menu__list .list__depth1 {
    font-size: 6vw;
  }

  .article--style01 .top__sns&gt;a {
    margin-right: 18px;
  }

  .footer .footer__info {
    padding: 45px 0;
  }

  .footer .footer__info .info__logo img {
    margin-bottom: 25px;
  }

  .footer .footer__info .info__para {
    width: 100%;
    font-size: 13px;
  }

  .footer .footer__info select {
    margin-top: 25px;
    margin-left: 0;
  }

  .footer .footer__info .info__para span {
    display: block;
    padding-left: 0;
    margin-left: 0;
  }

  .footer .footer__info .info__para span::before {
    display: none;
  }

  .article--style01 {
    background-image: url(/image/common/footer_top_bg_mo.jpg);
  }
}

/* 모바일 가로 미만 */
@media all and (max-width: 568px) {
  .show-568 {
    display: block !important;
  }

  .hide-568 {
    display: none !important;
  }
}

/* 모바일 최소 */
@media all and (max-width: 425px) {
  .show-425 {
    display: block !important;
  }

  .hide-425 {
    display: none !important;
  }
}

@media all and (max-width: 375px) {
  .show-375 {
    display: block !important;
  }

  .hide-375 {
    display: none !important;
  }
}

@media all and (max-width: 320px) {
  .show-320 {
    display: block !important;
  }

  .hide-320 {
    display: none !important;
  }
}</pre></body></html>