@charset "utf-8";

/* =========================================
   기본 (공통)
   ========================================= */
body { background-color: #0D060D; }
header, section, body, div, ul, ol, li,
h1, h2, h3, h4, h5, h6, a, p, span { color: #FFF; }

/* =========================================
   Ticker (흐르는 텍스트)
   ========================================= */
#flow {
    position: relative;
    overflow: hidden;
    height: 50px;
    background-color: #0468F2;
}
.flow_wrap {
    position: absolute;
    left: 0;
    width: 3600px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}
.flow_wrap li {
    font-size: 25px;
    list-style: none;
    width: 650px;
    color: #FF66cc;
    font-weight: 500;
    font-family: 'Montserrat';
}

/* =========================================
   멤버 슬라이더 공통
   ========================================= */
.mem_slider_wrap { position: relative; width: 100%; }
.mem_img { overflow: hidden; }
.mem_img ul {
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.mem_img ul li { flex-shrink: 0; position: relative; }
.mem_img ul li img { width: 100%; }
.mem_img li .over_box {
    position: absolute;
    left: 0; top: 0;
    opacity: 0;
    transition-duration: 0.6s;
    background-color: #000;
}
.mem_img li .over_box img { opacity: 0.8; width: 100%; }
.mem_img li:hover .over_box { opacity: 1; }

.mem_prev, .mem_next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #FFF;
}
.mem_prev { left: 0; }
.mem_next { right: 0; }

/* 서브배너 공통 */
.sub_banner {
    display: flex;
    width: 300%;
    position: relative;
}
.sub_banner li img { width: 100%; }
.sub_banner li:first-child ~ li { display: none; }

/* 푸터 */
#footer a, .footer_right { color: #FFF; }
.footer_right span { color: #FF66CC; }


/* =========================================
   PC (1201px~)
   ========================================= */
@media screen and (min-width: 1201px) {

    /* 서브메뉴 + 배너 */
    #subMenu { position: relative; overflow: hidden; }
    .sub_menu {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 5% 0 0 8%;
        z-index: 10;
    }
    .sub_menu li { position: relative; transition-duration: 0.3s; }
    .sub_menu li a { font-size: 1.5em; margin-bottom: 15px; color: #FFF; }
    .sub_menu li a::after {
        content: "";
        position: absolute;
        width: 100%; height: 12px;
        background-color: #0468F2;
        bottom: 15px; left: 0;
        opacity: 0;
        transition-duration: 0.5s;
        z-index: -1;
    }
    .sub_menu li:hover a::after { opacity: 1; }
    .sub_menu li:hover { font-weight: bold; }
    .sub_menu li:nth-child(2) a { color: #FF66cc; }

    .sub_banner li { width: 28%; padding-left: 3%; z-index: -2; }
    .left, .right {
        position: absolute;
        color: #FFF;
        transform: translateY(-50%);
        top: 50%;
    }
    .right { right: 2%; }
    .left  { left:  2%; }

    /* 프로필 */
    #profile { position: relative; }
    #profile h3, .sec_tit, .sub_tit {
        margin-top: 5%;
        color: #FFF;
        font-weight: bold;
        font-size: 2em;
        text-align: center;
    }
    #profile h3 { font-size: 1.5em; }

    .simbol { position: relative; }
    .simbol ul { display: flex; justify-content: center; align-items: center; }
    .simbol ul li {
        position: relative;
        width: 10%;
        margin: 5% 10%;
        cursor: pointer;
    }
    .simbol ul li img { width: 100%; }
    .simbol li .over_text {
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition-duration: 0.6s;
    }
    .simbol li .over_text h4 {
        font-size: 5em;
        text-shadow: 1px 1px 2px black;
        text-align: center;
    }
    .simbol li:hover .over_text { opacity: 1; }
    .simbol ul li p { text-align: center; margin-top: 10%; font-size: 1em; }

    .history { position: relative; width: 55%; margin: 0 auto; }
    .army    { position: relative; width: 38%; margin: 0 auto; display: none; }
    .history p, .army p {
        text-align: center;
        font-size: 1em;
        letter-spacing: 3px;
        margin-bottom: 2%;
    }
    .history span, .army span { color: #FF66CC; }

    /* 디스코그래피 */
    #discography { position: relative; margin: 0 25%; }
    .sub_tit { margin: 10% 0; }

    .history_text h4 {
        position: sticky;
        left: 0; top: 100px;
        font-size: 4em;
        font-weight: 700;
        color: #0468F2;
    }
    .history_list { position: relative; margin-left: 200px; }
    .history_list::before {
        content: "";
        position: absolute;
        width: 1px; height: 100%;
        background-color: #FF66cc;
        left: -10px; top: 0;
    }
    .history_list > li {
        position: relative;
        line-height: 1.6em;
        margin-bottom: 150px;
        padding: 10px;
    }
    .history_list > li .mon_text { font-size: 20px; font-weight: 700; }
    .history_list > li p { font-size: 16px; line-height: 2em; }
    .history_list > li.year_text::before {
        content: "";
        display: block;
        position: absolute;
        left: -15px; top: 0;
        width: 10px; height: 10px;
        background-color: #FF66cc;
        border-radius: 5px;
    }
    .history_img {
        position: absolute;
        left: 500px; top: 0;
        width: 300px; height: 300px;
        overflow: hidden;
        box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .history_img img { width: 49%; border-radius: 50%; }

    /* 멤버 */
    #members { position: relative; width: 100%; }
    .mem_img { margin: 10% 5%; }
    .mem_img ul li { width: 13%; margin-right: 1.5%; }
    .mem_img ul li p { margin: 3% 0; }
    .mem_img h3 { margin: 5% 0; }

    .mem_prev, .mem_next { font-size: 2.5vw !important; }
    .mem_prev { left: 2%; }
    .mem_next { right: 2%; }
}


/* =========================================
   태블릿 가로 (801~1200px)
   ========================================= */
@media screen and (min-width: 801px) and (max-width: 1200px) {

    /* 서브메뉴 + 배너 */
    #subMenu { position: relative; overflow: hidden; }
    .sub_menu {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 5% 0 0 8%;
        z-index: 10;
    }
    .sub_menu li { position: relative; transition-duration: 0.3s; }
    .sub_menu li a { font-size: 2vw; color: #FFF; margin-bottom: 15px; }
    .sub_menu li a::after {
        content: "";
        position: absolute;
        width: 100%; height: 12px;
        background-color: #0468F2;
        bottom: 15px; left: 0;
        opacity: 0;
        transition-duration: 0.5s;
        z-index: -1;
    }
    .sub_menu li:hover a::after { opacity: 1; }
    .sub_menu li:hover { font-weight: bold; }
    .sub_menu li:nth-child(2) a { color: #FF66cc; }

    .sub_banner { margin-left: 10%; }
    .sub_banner li { width: 28%; z-index: -2; }
    .left, .right {
        position: absolute;
        color: #FFF;
        transform: translateY(-50%);
        top: 50%;
    }
    .right { right: 2%; }
    .left  { left:  2%; }

    /* 프로필 */
    #profile h3, .sec_tit, .sub_tit {
        margin-top: 5%;
        color: #FFF;
        font-weight: bold;
        font-size: 2em;
        text-align: center;
    }

    .simbol { position: relative; }
    .simbol ul {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 5% 20%;
    }
    .simbol ul li { position: relative; width: 50%; padding: 10%; cursor: pointer; }
    .simbol ul li img { width: 100%; }
    .simbol li .over_text {
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition-duration: 0.6s;
    }
    .simbol li .over_text h4 { font-size: 4vw; text-shadow: 1px 1px 2px black; text-align: center; }
    .simbol li:hover .over_text { opacity: 1; }
    .simbol ul li p { margin-top: 10%; font-size: 1.5vw; }

    .history { position: relative; width: 60%; margin: 0 auto; }
    .army    { position: relative; width: 60%; margin: 0 auto; display: none; }
    .history p, .army p {
        text-align: center;
        font-size: 1.5vw;
        letter-spacing: 3px;
        margin-bottom: 2%;
    }
    .history span, .army span { color: #FF66CC; }

    /* 디스코그래피 */
    #discography { position: relative; margin: 0 10%; }
    .sub_tit { margin: 10% 0; }

    .history_text h4 {
        position: sticky;
        left: 40px; top: 100px;
        font-size: 6vw;
        font-weight: 700;
        color: #0468F2;
    }
    .history_list { position: relative; margin-left: 150px; }
    .history_list::before {
        content: "";
        position: absolute;
        width: 1px; height: 100%;
        background-color: #FF66cc;
        left: -10px; top: 0;
    }
    .history_list > li {
        position: relative;
        line-height: 1.6em;
        margin-bottom: 100px;
        padding: 10px;
    }
    .history_list > li .mon_text { color: #FFF; font-size: 18px; font-weight: 700; }
    .history_list > li p { font-size: 15px; line-height: 2em; color: #FFF; }
    .history_list > li.year_text::before {
        content: "";
        display: block;
        position: absolute;
        left: -15px; top: 0;
        width: 10px; height: 10px;
        background-color: #FF66cc;
        border-radius: 5px;
    }
    .history_img {
        position: absolute;
        left: 400px; top: 0;
        width: 220px; height: 220px;
        overflow: hidden;
        box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
    }
    .history_img img { width: 49%; border-radius: 50%; }

    /* 멤버 */
    #members { position: relative; width: 100%; }
    .mem_img { margin: 10% 5%; }
    .mem_img ul li { width: 22%; margin-right: 2%; }
    .mem_img ul li p { margin: 3% 0; }
    .mem_img h3 { color: #FFF; margin: 5% 0; }

    .mem_prev, .mem_next { font-size: 3.5vw !important; }
    .mem_prev { left: 1%; }
    .mem_next { right: 1%; }
}


/* =========================================
   태블릿 세로 (601~800px)
   ========================================= */
@media screen and (min-width: 601px) and (max-width: 800px) {

    /* ticker */
    #flow { height: 35px; }
    .flow_wrap li { font-size: 3.5vw; width: 500px; }

    /* 서브메뉴 + 배너 */
    #subMenu { position: relative; overflow: hidden; padding-bottom: 15px; }
    .sub_menu {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        margin: 4% 0;
        padding: 0;
        z-index: 10;
    }
    .sub_menu li { position: relative; }
    .sub_menu li a { font-size: 2.5vw; color: #FFF; margin-bottom: 0; }
    .sub_menu li:nth-child(2) a { color: #FF66cc; }

    .sub_banner { width: 300%; margin: 0; padding: 0; }
    .sub_banner li { width: 100%; padding: 0; }
    .left, .right {
        position: absolute;
        color: #FFF;
        transform: translateY(-50%);
        top: 60%;
        font-size: 5vw !important;
    }
    .right { right: 2%; }
    .left  { left:  2%; }

    /* 프로필 */
    #profile h3, .sec_tit, .sub_tit {
        margin-top: 8%;
        color: #FFF;
        font-weight: bold;
        font-size: 4vw;
        text-align: center;
    }

    .simbol ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 5% 10%;
    }
    .simbol ul li { position: relative; width: 30%; padding: 5%; cursor: pointer; }
    .simbol ul li img { width: 100%; }
    .simbol li .over_text {
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition-duration: 0.6s;
    }
    .simbol li .over_text h4 { font-size: 5vw; text-shadow: 1px 1px 2px black; text-align: center; }
    .simbol li:hover .over_text { opacity: 1; }
    .simbol ul li p { text-align: center; margin-top: 8%; font-size: 2vw; }

    .history { position: relative; width: 80%; margin: 0 auto; }
    .army    { position: relative; width: 80%; margin: 0 auto; display: none; }
    .history p, .army p {
        text-align: center;
        font-size: 2vw;
        letter-spacing: 2px;
        margin-bottom: 3%;
    }
    .history span, .army span { color: #FF66CC; }

    /* 디스코그래피 */
    #discography { position: relative; margin: 0 5%; }
    .sub_tit { margin: 8% 0; }

    .history_text h4 {
        position: relative;
        top: 0; left: 0;
        font-size: 8vw;
        font-weight: 700;
        color: #0468F2;
        padding-left: 5%;
        margin-bottom: 20px;
    }
    .history_list { position: relative; margin-left: 80px; }
    .history_list::before {
        content: "";
        position: absolute;
        width: 1px; height: 100%;
        background-color: #FF66cc;
        left: -10px; top: 0;
    }
    .history_list > li {
        position: relative;
        line-height: 1.6em;
        margin-bottom: 60px;
        padding: 8px 8px 8px 15px;
    }
    .history_list > li .mon_text { color: #FFF; font-size: 16px; font-weight: 700; }
    .history_list > li p { font-size: 14px; line-height: 2em; color: #FFF; }
    .history_list > li.year_text::before {
        content: "";
        display: block;
        position: absolute;
        left: -15px; top: 0;
        width: 10px; height: 10px;
        background-color: #FF66cc;
        border-radius: 5px;
    }
    .history_img { display: none; }

    /* 멤버 */
    #members { position: relative; width: 100%; }
    .mem_slider_wrap { padding: 0 8%; }
    .mem_img { margin: 8% 0; }
    .mem_img ul li { width: 30%; margin-right: 3%; }
    .mem_img ul li p { margin: 3% 0; font-size: 2vw; }
    .mem_img h3 { color: #FFF; margin: 5% 0; font-size: 3vw; }

    .mem_prev, .mem_next { font-size: 5vw !important; }
    .mem_prev { left: 1%; }
    .mem_next { right: 1%; }

    /* 푸터 */
    #footer { padding: 2%; flex-direction: column; text-align: center; }
    .footer_left ul { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .footer_right p { font-size: 2vw; }
}


/* =========================================
   모바일 (~600px)
   ========================================= */
@media screen and (max-width: 600px) {

    /* ticker */
    #flow { height: 28px; }
    .flow_wrap li { font-size: 4vw; width: auto; padding-right: 20px; font-weight: 400; }

    /* 헤더 */
    .main_logo h1 img { width: 60px; }
    .sns_menu, .lang_box { display: none; }

    /* 서브메뉴 + 배너 */
    #subMenu { position: relative; overflow: hidden; padding-bottom: 10px; }
    .sub_menu {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        margin: 5% 0;
        padding: 0;
    }
    .sub_menu li a { font-size: 3.5vw; color: #FFF; margin-bottom: 0; }
    .sub_menu li:nth-child(2) a { color: #FF66cc; }

    .sub_banner { width: 300%; margin: 0; padding: 0; }
    .sub_banner li { width: 100%; padding: 0; }
    .left, .right {
        position: absolute;
        color: #FFF;
        transform: translateY(-50%);
        top: 60%;
        font-size: 8vw !important;
    }
    .right { right: 2%; }
    .left  { left:  2%; }

    /* 프로필 */
    #profile h3, .sec_tit, .sub_tit {
        margin-top: 10%;
        font-size: 6vw;
        color: #FFF;
        font-weight: bold;
        text-align: center;
    }
    #profile h3 { font-size: 4vw; margin-bottom: 5%; }

    .simbol ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .simbol ul li { width: 50%; margin: 5% auto; cursor: pointer; }
    .simbol ul li img { width: 100%; }
    .simbol li .over_text {
        position: absolute;
        left: 50%; top: 45%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition-duration: 0.6s;
    }
    .simbol li .over_text h4 { font-size: 8vw; text-shadow: 1px 1px 2px black; text-align: center; }
    .simbol li:hover .over_text { opacity: 1; }
    .simbol ul li p { text-align: center; margin-top: 10%; font-size: 3vw; color: #FFF; }

    .history { position: relative; width: 90%; margin: 0 auto; }
    .army    { position: relative; width: 90%; margin: 0 auto; display: none; }
    .history p, .army p {
        text-align: center;
        font-size: 3.5vw;
        line-height: 1.6;
        margin-bottom: 4%;
        color: #FFF;
    }
    .history span, .army span { color: #FF66CC; }

    /* 디스코그래피 */
    #discography { position: relative; margin: 0 3%; }
    .sub_tit { margin: 8% 0; }

    .history_text h4 {
        position: relative;
        top: 0; left: 0;
        font-size: 8vw;
        font-weight: 700;
        color: #0468F2;
        padding-left: 5%;
        margin-bottom: 20px;
        text-align: left;
    }
    .history_list { position: relative; margin-left: 10%; margin-right: 5%; }
    .history_list::before {
        content: "";
        position: absolute;
        width: 1px; height: 100%;
        background-color: #FF66cc;
        left: 0; top: 0;
    }
    .history_list > li {
        position: relative;
        line-height: 1.6em;
        margin-bottom: 80px;
        padding-left: 20px;
    }
    .history_list > li .mon_text { color: #FFF; font-size: 18px; font-weight: 700; }
    .history_list > li p { color: #FFF; font-size: 14px; line-height: 2em; }
    .history_list > li.year_text::before {
        content: "";
        display: block;
        position: absolute;
        left: -5px; top: 0;
        width: 10px; height: 10px;
        background-color: #FF66cc;
        border-radius: 5px;
    }
    .history_img { display: none; }

    /* 멤버 */
    #members { position: relative; width: 100%; overflow: hidden; }
    .mem_slider_wrap { padding: 0 10%; }
    .mem_img { margin: 5% 0; }
    .mem_img ul li { width: 44%; margin-right: 6%; }
    .mem_img ul li p { margin: 3% 0; color: #FFF; font-size: 3.5vw; }
    .mem_img h3 { color: #FFF; margin: 5% 0; font-size: 4vw; }

    .mem_prev, .mem_next { font-size: 6vw !important; }
    .mem_prev { left: 1%; }
    .mem_next { right: 1%; }

    /* 팝업메뉴 */
    #popMenu {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background-color: rgba(13, 6, 13, 0.95);
        z-index: 90;
        padding-top: 80px;
    }
    .menu_wrap { flex-direction: column; align-items: center; text-align: center; }
    .menu_wrap h3 a { font-size: 6vw; margin-bottom: 20px; display: block; }
    .menu_item { display: none; }

    /* 푸터 */
    #footer {
        padding: 5%;
        flex-direction: column;
        text-align: center;
    }
    .footer_left ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    .footer_left ul li { margin: 0; }
    .footer_right p { font-size: 3vw; line-height: 1.5; }
}
