@charset "utf-8";

img {max-width: 100%;}
.gray {color: #888;}
.blue {color: #376bee;}
.admin-btn {
    position: relative;
    z-index: 5;
    margin-top: 20px;
}
.admin-btn a {
    font-size: 20px;
    color: #376bee;
    display: inline-block;
}

/*main*/
.main {
    position: relative;
    height: 100vh;
    background: #000;
}
.main .txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    z-index: 5;
}
.main .txt span {display: block;}
.main .scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    text-align: center;
    z-index: 5;
}
.main .scroll-down .arrow {animation: scroll 1s ease-in-out 0s infinite alternate;}
.main .scroll-down .arrow img {transform: rotate(90deg)}
@keyframes scroll {
    0% {transform: translateY(-10px);}
    100% {transform: translateY(0);}
}
.main .scroll-down p {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}
.main .main-slider {height: 100vh;}
.main .video-wrap {height: 100%;}
.main .video-wrap::after {
    content: "";
    background-color: #000;
    mix-blend-mode: color;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}
.main .video-wrap video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.main .slider-controls > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: block !important;
    cursor: pointer;
    transition: all .3s;
}
.main .slider-controls > div:hover {opacity: 0.7;}
.main .slider-controls .prev-btn {left: 50px;}
.main .slider-controls .next-btn {right: 50px;}
.main .admin-btn {
    position: absolute;
    left: 50px;
    bottom: 120px;
    z-index: 8;
}
@media all and (max-width: 1400px) {
    .main .slider-controls .prev-btn {left: 30px;}
    .main .slider-controls .next-btn {right: 30px;}
    .main .txt {
        font-size: 36px;
        left: 140px;
    }
}
@media all and (max-width: 1024px) {
    .main .slider-controls {display: none;}
    .main .txt {left: 50px;}
    .main .scroll-down {display: none;}
}
@media all and (max-width: 767px) {
    .main .txt {
        left: 20px;
        font-size: 24px;
        top: auto;
        transform: none;
        bottom: 25%;
    }
}

/*sub*/
.sub section {
    position: relative;
    padding-bottom: 200px;
}
.sub section:last-child {padding-bottom: 0;}
.sub .title {
    margin-bottom: 150px;
    text-align: left;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.sub .title h2 {
    font-size: 50px;
    word-break: keep-all;
}
.sub .title h2 span::after {
    content: "";
    background: url(/img/assets/title_ico.svg) center / cover no-repeat;
    display: inline-block;
    vertical-align: bottom;
    width: 16px;
    height: 16px;
}
.sub .title .more-btn {
    font-size: 16px;
    text-decoration: underline;
    transition: all .2s;
    display: block;
    margin-bottom: 10px;
}
.sub .title .more-btn:hover {opacity: 0.7;}
.sub p {word-break: keep-all;}
.sub .desc {
    font-size: 20px;
    line-height: 1.8;
    word-break: keep-all;
}
.sub strong {
    font-size: 36px;
    display: block;
    margin-bottom: 100px;
    word-break: keep-all;
}
.sub strong span {color: #376bee;}
.sub .board-list li {margin-bottom: 10px;}
.sub .board-list li:last-child {margin-bottom: 0;}
.sub .board-list li a {
    display: block;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 25px 30px;
    transition: all .3s;
}
.sub .board-list .subject {
    font-size: 18px;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
    padding-right: 30px;
    transition: all .3s;
}
.sub .board-list .date {
    font-size: 14px;
    opacity: 0.5;
    margin-top: 12px;
}
.sub .board-list li a:hover {border: 1px solid #376bee;}
.sub .table-wrap table {
    font-size: 20px;
    width: 100%;
    border-top: 1px solid #fff;
}
.sub .table-wrap table th,
.sub .table-wrap table td {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 50px;
    vertical-align: top;
    text-align: left;
}
.sub .list-wrap {margin-top: 10px;}
.sub .list-wrap li {
    display: flex;
    align-items: start;
    margin-bottom: 5px;
}
.sub .list-wrap li:last-child {margin-bottom: 0;}
.sub .list-wrap li::before {
    content: "";
    background: #376bee;
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-top: 9px;
}
.sub .list-wrap li span {
    width: calc(100% - 5px);
    padding-left: 8px;
}
.sub .form-group {margin-bottom: 50px;}
.sub .form-label {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}
.sub .form-input {
    height: 40px;
    border: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    font-size: 18px;
    background: none;
    width: 100%;
    font-weight: bold;
    color: #fff;
    box-shadow: none;
}
.sub .form-input::placeholder {color: rgba(255,255,255,0.2)}
.sub .form-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 1px solid #fff !important;
}
.sub textarea.form-input {
    border: 1px solid #fff;
    padding: 20px;
    height: 200px;
}
.sub textarea.form-input:focus {border: 1px solid #fff !important;}
.sub .submit-btn {
    width: 150px;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background: #376bee;
    border: none;
    margin-left: auto;
    display: block;
    margin-top: -20px;
    transition: all .3s;
}
.sub .submit-btn:hover {background: #1d53dc;}
@media all and (max-width: 1024px) {
    .sub .desc {font-size: 18px;}
    .sub .table-wrap table th,
    .sub .table-wrap table td {padding: 30px;}
}
@media all and (max-width: 767px) {
    .sub section {padding-bottom: 80px;}
    .sub .title {margin-bottom: 80px;}
    .sub .title h2 {font-size: 30px;}
    .sub .title .more-btn {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .sub .desc {
        font-size: 16px;
        line-height: 1.4;
    }
    .sub strong {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .sub .form-group {margin-bottom: 20px;}
    .sub .form-label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .sub .form-input {font-size: 16px;}
    .sub .submit-btn {
        height: 42px;
        line-height: 42px;
        font-size: 16px;
        margin-top: 0;
    }
    .sub .table-wrap table {font-size: 16px;}
    .sub .table-wrap table th,
    .sub .table-wrap table td {padding: 20px 15px;}
    .sub .table-wrap table th {width: 70px;}
}
@media all and (max-width: 480px) {
    .sub strong {font-size: 21px;}
}

/*Our Story*/
.sub-who {
    background: #0c0f10;
    color: #fff;
}
.sub-who > div {position: relative;}
.sub-who .top {text-align: center;}
.sub-who .top .container {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.sub-who .top strong {
    font-size: 50px;
    display: block;
}
.sub-who .top p {
    font-size: 30px;
    font-weight: bold;
}
.sub-who .top p.gray {margin: 50px 0 80px;}
.sub-who .top p.blue {
    line-height: 1.6;
    margin-bottom: 35px;
}
.sub-who .top .bg {}
.sub-who .top .bg img {
    width: 100%;
    max-width: none;
}
.sub-who .bottom .tree {text-align: center;}
.sub-who .bottom .tree img {
    width: 100%;
    display: inline-block;
    max-width: 1920px;
}
.sub-who .bottom ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: -220px;
}
.sub-who .bottom ul li {
    border: 1px solid #fff;
    width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 300px;
    padding: 70px 30px 30px;
    text-align: center;
    margin: 0 -15px;
}
.sub-who .bottom ul li .txt h3 {
    font-size: 36px;
    text-shadow: 0 0 5px rgba(55, 107, 238, 0.7), 0 0 10px rgba(55, 107, 238, 0.7), 0 0 20px rgba(55, 107, 238, 0.7), 0 0 30px rgba(55, 107, 238, 0.7);
    margin-bottom: 12px;
}
.sub-who .bottom ul li .txt p {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: bold;
}
.sub-who .bottom ul li .txt .desc {line-height: 1.5;}
@media all and (min-width: 1921px) {
    .sub-who .top .bg img {height: 1000px;}
}
@media all and (max-width: 1920px) {
    .sub-who .top {padding-bottom: 200px;}
    .sub-who .top .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .sub-who .top .container {
        position: relative;
        left: auto;
        transform: none;
    }
}
@media all and (max-width: 1500px) {
    .sub-who .top {padding-bottom: 100px;}
}
@media all and (max-width: 1024px) {
    .sub-who .top .bg {top: 10%;}
    .sub-who .bottom ul {
        max-width: 500px;
        margin: -100px auto 0;
    }
    .sub-who .bottom ul li {
        width: 50%;
        padding-top: 50px;
        margin: -10px
    }
    .sub-who .bottom ul li .txt h3 {font-size: 30px;}
}
@media all and (max-width: 991px) {
    .sub-who .bottom .tree {margin: 0 -100px;}

}
@media all and (max-width: 767px) {
    .sub-who .top {position: relative;}
    .sub-who .top .bg {
        top: 50%;
        transform: translateY(-50%);
    }
    .sub-who .top {padding-bottom: 80px;}
    .sub-who .top strong {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .sub-who .top p {font-size: 18px;}
    .sub-who .top p.gray {margin: 20px 0 30px;}
    .sub-who .top p.blue {margin-bottom: 25px;}
    .sub-who .bottom ul {
        margin-top: -50px;
        max-width: 220px;
    }
    .sub-who .bottom ul li {width: 100%;}
    .sub-who .bottom ul li .txt h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }
    .sub-who .bottom ul li .txt p {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

/*Our business*/
.sub-business .admin-btn {text-align: center;}
.sub-business #contents::after {
    content: "";
    background: #0c0f10;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
}
.sub-business #contents .top {
    margin: -50px 0 150px;
    position: relative;
}
.sub-business #contents .top ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}
.sub-business #contents .top ul::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    background: #9ea6a8;
    width: 100%;
    height: 1px;
}
.sub-business #contents .top ul li {
    width: 33.33%;
    aspect-ratio: 1 / 1;
    border: 1px solid #9ea6a8;
    border-radius: 500px;
    position: relative;
    z-index: 1;
    background: #fff;
    text-align: center;
    padding: 150px 30px 30px;
}
.sub-business #contents .top ul li .txt h3 {
    font-size: 28px;
    margin-bottom: 50px;
    word-break: keep-all;
}
.sub-business #contents .top ul li .txt p {
    font-size: 16px;
    opacity: 0.7;
    word-break: keep-all;
}
.sub-business #contents .bottom .contents-slider {
    position: relative;
    z-index: 1;
}
.sub-business #contents .bottom .slider-controls {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub-business #contents .bottom .slider-controls .prev-btn,
.sub-business #contents .bottom .slider-controls .next-btn {
    cursor: pointer;
    transition: all .3s;
}
.sub-business #contents .bottom .slider-controls .prev-btn:hover,
.sub-business #contents .bottom .slider-controls .next-btn:hover {opacity: 0.7;}
.sub-business #contents .bottom .slider-controls .swiper-pagination {
    max-width: 1000px;
    background: rgba(0,0,0,0.1);
    height: 2px;
    position: static;
}
.sub-business #contents .bottom .slider-controls .swiper-pagination span {background: #000;}
.sub-business #contents .bottom .swiper-slide {position: relative;}
.sub-business #contents .bottom .swiper-slide .img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 360 / 514;
}
.sub-business #contents .bottom .swiper-slide .txt {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding: 25px;
    transition: all .3s;
    min-height: 180px;
    transform: translateY(100px);
}
.sub-business #contents .bottom .swiper-slide .txt .subject {
    font-size: 24px;
    font-weight: bold;
}
.sub-business #contents .bottom .swiper-slide .txt .subject span {font-size: 16px;}
.sub-business #contents .bottom .swiper-slide .txt .genre {
    font-size: 14px;
    opacity: 0.6;
    padding: 6px 0 25px;
    transition: all .3s;
    transform: translateY(50px);
}
.sub-business #contents .bottom .swiper-slide .txt .desc {
    font-size: 15px;
    transition: all .3s;
    transform: translateY(50px);
    word-break: keep-all;
}
.sub-business #contents .bottom .swiper-slide:hover .txt,
.sub-business #contents .bottom .swiper-slide-active .txt,
.sub-business #contents .bottom .swiper-slide:hover .txt .genre,
.sub-business #contents .bottom .swiper-slide-active .txt .genre,
.sub-business #contents .bottom .swiper-slide:hover .txt .desc,
.sub-business #contents .bottom .swiper-slide-active .txt .desc {transform: translateY(0)}
.sub-business #management {
    color: #fff;
    background: #0c0f10;
    min-height: 1100px;
}
.sub-business #management .container {
    position: relative;
    z-index: 1;
}
.sub-business #management .img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    text-align: center;
}
.sub-business #music {
    color: #fff;
    background: #0c0f10;
    padding: 300px 0 500px;
}
.sub-business #music .top .container {
    position: relative;
    z-index: 1;
}
.sub-business #music .top .img {
    position: absolute;
    top: 200px;
    right: 0;
}
.sub-business #music .bottom {
    padding-top: 380px;
    text-align: center;
}
.sub-business #music .bottom strong {
    font-size: 50px;
    margin-bottom: 150px;
}
.sub-business #music .bottom .box-wrap {
    display: flex;
    flex-wrap: wrap;
}
.sub-business #music .bottom .box-wrap > li {
    width: calc((100% - 50px)/2);
    background: #16191a;
    border-radius: 20px;
    padding: 60px;
    margin-right: 50px;
    position: relative;
    aspect-ratio: 1/1;
}
.sub-business #music .bottom .box-wrap > li:last-child {margin-right: 0;}
.sub-business #music .bottom .box-wrap > li h3 {
    font-size: 30px;
    text-align: left;
    margin-bottom: 100px;
}
.sub-business #music .bottom .box-wrap > li .logo {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-business #music .bottom .box-wrap > li .img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -220px;
    width: 100%;
}
.sub-business #music .bottom .box-wrap > li .img img {
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    overflow: hidden;
}
.sub-business #music .bottom .box-wrap > li .sns-link {
    position: absolute;
    top: 60px;
    right: 60px;
    display: flex;
}
.sub-business #music .bottom .box-wrap > li .sns-link li {margin-right: 10px;}
.sub-business #music .bottom .box-wrap > li .sns-link li:last-child {margin-right: 0;}
.sub-business #music .bottom .box-wrap > li .sns-link li a {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 45px;
    background: #292b2c;
    text-align: center;
    line-height: 45px;
}
.sub-business #new {
    padding-top: 200px;
    text-align: center;
}
.sub-business #new .box {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
}
.sub-business #new .box li {
    width: 25%;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding: 30px 30px 40px;
}
.sub-business #new .box li:last-child {border-right: none;}
.sub-business #new .box li h3 {
    font-size: 26px;
    margin: 25px 0 35px;
}
.sub-business #new .box li p {
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.8;
}
.sub-business #contact .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.sub-business #contact .title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin: 0;
}
.sub-business #contact .title p {
    font-size: 20px;
    opacity: 0.7;
    margin-left: 30px;
}
.sub-business #contact .more-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    width: 100%;
    padding: 15px;
    padding-left: 30px;
    border: 1px solid #000;
    border-radius: 60px;
    transition: all .3s;
}
.sub-business #contact .more-btn b {font-size: 20px;}
.sub-business #contact .more-btn .arrow {
    width: 52px;
    height: 52px;
    border-radius: 52px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-business #contact .more-btn .arrow svg {
    width: 16px;
    height: 13px;
}
.sub-business #contact .more-btn .arrow svg .color {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.sub-business #contact .more-btn:hover {
    background: #000;
    color: #fff;
}
.sub-business #contact .more-btn:hover .arrow {background: #fff;}
.sub-business #contact .more-btn:hover .arrow svg .color {stroke: #000;}
@media all and (max-width: 1400px) {
    .sub-business #contents .top ul {padding: 0 30px;}
    .sub-business #contents .bottom .slider-controls {padding: 0 30px;}
    .sub-business #contents .bottom .slider-controls .swiper-pagination {max-width: 600px;}
}
@media all and (max-width: 1300px) {
    .sub-business #contents .top ul li {padding-top: 120px;}
    .sub-business #contents .top ul li .txt h3 {margin-bottom: 30px;}
}
@media all and (max-width: 1200px) {
    .sub-business #contents .top ul li {padding-top: 100px;}
}
@media all and (max-width: 1024px) {
    .sub-business #management {min-height: 500px;}
    .sub-business #music .bottom .box-wrap > li {
        aspect-ratio: auto;
        height: 600px;
    }
    .sub-business #music .bottom .box-wrap > li .img {
        position: static;
        margin-top: 80px;
        transform: none;
    }
    .sub-business #new .box {padding: 50px;}
    .sub-business #new .box li {width: 50%;}
    .sub-business #new .box li:first-child,
    .sub-business #new .box li:nth-child(2) {border-bottom: 1px solid rgba(0,0,0,0.1)}
    .sub-business #new .box li:nth-child(2n) {border-right: none;}
}
@media all and (max-width: 767px) {
    .sub-business #contents::after {height: 200px;}
    .sub-business #contents .top {margin-bottom: 80px;}
    .sub-business #contents .top ul {padding: 0 15px;}
    .sub-business #contents .top ul::after {content: none;}
    .sub-business #contents .top ul li {
        width: 100%;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sub-business #contents .top ul li .txt h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .sub-business #contents .top ul li .txt p {font-size: 15px;}
    .sub-business #contents .bottom .slider-controls {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .sub-business #contents .bottom .slider-controls .prev-btn img,
    .sub-business #contents .bottom .slider-controls .next-btn img {width: 40px;}
    .sub-business #contents .bottom .slider-controls .swiper-pagination {max-width: 180px;}
    .sub-business #contents .bottom .swiper-slide .txt {
        padding: 15px;
        min-height: 120px;
    }
    .sub-business #contents .bottom .swiper-slide .txt .subject {font-size: 18px;}
    .sub-business #contents .bottom .swiper-slide .txt .subject span {font-size: 12px;}
    .sub-business #contents .bottom .swiper-slide .txt .genre {
        font-size: 12px;
        padding: 4px 0 15px;
    }
    .sub-business #music {padding: 100px 0;}
    .sub-business #music .top .img {top: 20%;}
    .sub-business #music .bottom {padding-top: 200px;}
    .sub-business #music .bottom strong {
        font-size: 30px;
        margin-bottom: 80px;
    }
    .sub-business #music .bottom .box-wrap > li {
        width: 100%;
        padding: 30px;
        margin: 0 0 15px;
        height: auto;
    }
    .sub-business #music .bottom .box-wrap > li:last-child {margin-bottom: 0;}
    .sub-business #music .bottom .box-wrap > li h3 {
        font-size: 20px;
        margin-bottom: 50px;
    }
    .sub-business #music .bottom .box-wrap > li .logo {height: auto;}
    .sub-business #music .bottom .box-wrap > li .logo img {
        max-width: 180px;
        max-height: 100px;
    }
    .sub-business #music .bottom .box-wrap > li .sns-link {
        top: 30px;
        right: 30px;
    }
    .sub-business #music .bottom .box-wrap > li .sns-link li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .sub-business #music .bottom .box-wrap > li .sns-link li a img {
        max-width: 16px;
        max-height: 16px;
    }
    .sub-business #music .bottom .box-wrap > li .img {margin-top: 50px;}
    .sub-business #new {padding-top: 80px;}
    .sub-business #new .box {padding: 0 30px;}
    .sub-business #new .box li {
        width: 100%;
        padding: 30px 0;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .sub-business #new .box li:last-child {border-bottom: none;}
    .sub-business #new .box li img {max-width: 120px;}
    .sub-business #new .box li h3 {
        font-size: 20px;
        margin: 15px 0;
    }
    .sub-business #new .box li p {
        font-size: 15px;
        line-height: 1.5;
    }
    .sub-business #contact .title p {
        font-size: 16px;
        width: 100%;
        margin: 5px 0 0;
    }
    .sub-business #contact .more-btn {
        max-width: none;
        margin-top: 30px;
        padding: 10px;
        padding-left: 20px;
    }
    .sub-business #contact .more-btn b {font-size: 16px;}
    .sub-business #contact .more-btn .arrow {
        width: 36px;
        height: 36px;
    }
}

/*Community*/
.sub-community #newsroom .board-wrap {
    display: flex;
    flex-wrap: wrap;
}
.sub-community #newsroom .board-wrap > div {
    width: calc((100% - 80px)/2);
    margin-right: 80px;
}
.sub-community #newsroom .board-wrap > div:last-child {margin-right: 0;}
.sub-community #newsroom .title {margin-bottom: 100px;}
.sub-community #contact {
    padding: 200px 0;
    background: #0c0f10;
    color: #fff;
}
.sub-community #contact .bg {
    position: absolute;
    left: 0;
    bottom: 25%;
    width: 100%;
}
.sub-community #contact .bg img {
    max-width: none;
    width: 100%;
}
.sub-community #contact .container {
    position: relative;
    z-index: 1;
}
.sub-community #contact .deco {
    position: absolute;
    top: -3px;
    right: 0;
    opacity: 0.1;
}
.sub-community #contact .contact {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 200px;
}
.sub-community #contact .contact .top {
    text-align: center;
    padding-bottom: 150px;
}
.sub-community #contact .contact .top .address {margin-bottom: 100px;}
.sub-community #contact .contact .top .address strong {margin-bottom: 20px;}
.sub-community #contact .contact .top .map iframe {
    width: 100% !important;
    height: 500px;
}
.sub-community #contact .contact .bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.sub-community #contact .contact .bottom > div {
    width: calc((100% - 100px)/2);
    margin-right: 100px;
}
.sub-community #contact .contact .bottom > div:last-child {margin-right: 0;}
.sub-community #contact .contact .bottom .left > div {margin-bottom: 80px;}
.sub-community #contact .contact .bottom .left > div:last-child {margin-bottom: 0;}
.sub-community #contact .contact .bottom .left h3 {
    font-size: 36px;
    margin-bottom: 20px;
}
.sub-community #contact .contact .bottom .left .tel {
    display: flex;
    align-items: center;
}
.sub-community #contact .contact .bottom .left .tel span {
    font-size: 20px;
    margin-left: 8px;
}
.sub-community #contact .audition strong {text-align: center;}
.sub-community #contact .audition .table-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.sub-community #contact .audition .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 25px;
}
.sub-community #contact .audition .info .download-btn {
    background: #fff;
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all .3s;
}
.sub-community #contact .audition .info .download-btn:hover {
    background: #376bee;
    color: #fff;
}
.sub-community #contact .audition .info .mail {
    display: flex;
    align-items: center;
    color: #fff;
    margin-left: 30px;
}
.sub-community #contact .audition .info .mail span {
    font-size: 20px;
    margin-left: 8px;
}
@media all and (max-width: 1024px) {
    .sub-community #newsroom .board-wrap > div {
        width: calc((100% - 30px)/2);
        margin-right: 30px;
    }
    .sub .board-list li a {padding: 20px 25px;}
}
@media all and (max-width: 767px) {
    .sub-community #newsroom .board-wrap > div {
        width: 100%;
        margin: 0 0 40px;
    }
    .sub-community #newsroom .board-wrap > div:last-child {margin-bottom: 0;}
    .sub-community #newsroom .title {margin-bottom: 30px;}
    .sub .board-list li a {padding: 15px 20px;}
    .sub .board-list .subject {
        font-size: 16px;
        padding-right: 20px;
    }
    .sub .board-list .date {
        font-size: 12px;
        margin-top: 8px;
    }
    .sub-community #contact {padding: 80px 0;}
    .sub-community #contact .contact {padding-bottom: 100px;}
    .sub-community #contact .contact .top {padding-bottom: 50px;}
    .sub-community #contact .contact .top .address {margin-bottom: 50px;}
    .sub-community #contact .contact .top .map iframe {height: 350px;}
    .sub-community #contact .contact .bottom > div {
        width: 100%;
        margin: 0 0 50px;
    }
    .sub-community #contact .contact .bottom > div:last-child {margin-bottom: 0;}
    .sub-community #contact .contact .bottom .left > div {margin-bottom: 30px;}
    .sub-community #contact .contact .bottom .left h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .sub-community #contact .contact .bottom .left .tel span {font-size: 18px;}
    .sub-community #contact .audition .info .download-btn {
        height: 42px;
        line-height: 42px;
        font-size: 16px;
    }
    .sub-community #contact .audition .info .mail {
        margin: 20px 0 0;
        width: 100%;
    }
    .sub-community #contact .audition .info .mail img {width: 18px;}
    .sub-community #contact .audition .info .mail span {font-size: 16px;}
}

.sub-artist {background: #0c0f10;}
.sub-artist .artist-list {
    list-style: none;
    margin: 0 0 -80px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.sub-artist .artist-list > li {
    width: calc((100% - 20px)/5);
    margin-right: 5px;
    margin-bottom: 80px;
}
.sub-artist .artist-list > li:nth-child(5n) {margin-right: 0;}
.sub-artist .artist-list .inner .img {
    transition: all .3s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 276 / 415;
    cursor: pointer;
}
.sub-artist .artist-list .inner .img:hover {opacity: 0.8;}
.sub-artist .artist-list .inner .txt {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-top: 15px;
    cursor: pointer;
}

.artist-modal .modal-content {padding: 80px;}
.artist-modal .modal-header {
    padding: 0;
    border: none;
    display: block;
}
.artist-modal .modal-header .modal-logo {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 5;
}
.artist-modal .modal-header .btn-close {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 5;
}
.artist-modal .modal-body {
    background: none;
    padding: 0;
}
.artist-modal .top {
    text-align: center;
    margin-bottom: 50px;
}
.artist-modal .top .img {position: relative;}
.artist-modal .top .img .en-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    font-size: 70px;
    font-weight: bold;
    color: #376bee;
    font-family:'Freesentation', dotum, sans-serif;
    width: 100%;
}
.artist-modal .top .name {
    font-size: 50px;
    font-weight: bold;
    margin: 35px 0 10px;
}
.artist-modal .top .category {
    font-size: 20px;
    font-weight: bold;
    opacity: 0.5;
}
.artist-modal .bottom {}
.artist-modal .bottom > div {margin-bottom: 80px;}
.artist-modal .bottom > div:last-child {margin-bottom: 0;}
.artist-modal .bottom h3 {
    font-size: 30px;
    margin-bottom: 35px;
    border-bottom: 1px solid #000;
    padding-bottom: 12px;
}
.artist-modal .bottom .table-wrap {padding: 0 50px;}
.artist-modal .bottom table {font-size: 16px;}
.artist-modal .bottom table th {
    width: 160px;
    padding: 5px 0;
    padding-right: 15px;
    vertical-align: top;
    word-break: keep-all;
}
.artist-modal .bottom table td {
    padding: 5px ;
    vertical-align: top;
    word-break: keep-all;
}
.artist-modal .bottom .inner {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -50px;
}
.artist-modal .bottom .inner > div {
    width: calc((100% - 60px)/2);
    margin-right: 60px;
    margin-bottom: 50px;
}
.artist-modal .bottom .inner > div:nth-child(2n) {margin-right: 0;}
.artist-modal .bottom .inner h4 {
    font-size: 20px;
    font-weight: bold;
    opacity: 0.5;
    margin-bottom: 20px;
}
@media all and (max-width: 1024px) {
    .artist-modal .bottom .inner {margin-bottom: 0;}
    .artist-modal .bottom .inner > div {
        width: 100%;
        margin: 0 0 30px;
    }
    .artist-modal .bottom .inner > div:last-child {margin-bottom: 0;}
}
@media all and (max-width: 991px) {
    .sub-artist .artist-list > li {width: calc((100% - 10px)/3);}
    .sub-artist .artist-list > li:nth-child(5n) {margin-right: 5px;}
    .sub-artist .artist-list > li:nth-child(3n) {margin-right: 0;}
    .artist-modal .modal-content {padding: 50px;}
    .artist-modal .bottom .table-wrap {padding: 0 20px;}
}
@media all and (max-width: 767px) {
    .sub-artist .artist-list {margin-bottom: -40px;}
    .sub-artist .artist-list > li {margin-bottom: 40px;}
    .sub-artist .artist-list .inner .txt {
        font-size: 16px;
        margin-top: 12px;
    }
    .artist-modal .modal-content {padding: 70px 20px 25px;}
    .artist-modal .modal-header .modal-logo {
        top: 20px;
        left: 20px;
        width: 30px;
    }
    .artist-modal .modal-header .btn-close {
        top: 20px;
        right: 20px;
    }
    .artist-modal .modal-header .btn-close img {width: 20px; height: 20px;}
    .artist-modal .top {margin-bottom: 25px;}
    .artist-modal .top .img .en-name {
        font-size: 36px;
        bottom: 15px;
        line-height: 1.3;
    }
    .artist-modal .top .name {
        font-size: 30px;
        margin: 25px 0 5px;
    }
    .artist-modal .top .category {font-size: 16px;}
    .artist-modal .bottom > div {margin-bottom: 40px;}
    .artist-modal .bottom h3 {
        font-size: 20px;
        padding-bottom: 8px;
        margin-bottom: 15px;
    }
    .artist-modal .bottom .table-wrap {padding: 0 10px;}
    .artist-modal .bottom table {font-size: 15px;}
    .artist-modal .bottom table th {width: 100px;}
    .artist-modal .bottom .inner > div {margin-bottom: 20px;}
}

/*investors*/
.sub-investors .board-wrap {
    display: flex;
    flex-wrap: wrap;
}
.sub-investors .board-wrap > div {
    width: calc((100% - 80px)/2);
    margin-right: 80px;
}
.sub-investors .board-wrap > div:last-child {margin-right: 0;}
.sub-investors .title {margin-bottom: 100px;}
@media all and (max-width: 1024px) {
    .sub-investors .board-wrap > div {
        width: calc((100% - 30px)/2);
        margin-right: 30px;
    }
}
@media all and (max-width: 767px) {
    .sub-investors .title {margin-bottom: 30px;}
    .sub-investors .board-wrap > div {
        width: 100%;
        margin: 0 0 40px;
    }
    .sub-investors .board-wrap > div:last-child {margin-bottom: 0;}
}