@charset "utf-8";

/* 폰트 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

/* 초기화부분시작 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    font-family: "Noto Sans KR", serif;
}
ol,ul,li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #000;
}
.icon_img{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.icon_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wrep{
    padding-top: 145px;
}

input,
select{
    outline: none;
}
/* 초기화부분 끝*/





/* 헤더부분 시작*/
.subpage_sidebar{
    display: none;
}
.btn-prev{
    display: none;
}
.header_language-m{
    display: none !important;
}
.header_icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.header{
    width: 100%;
    height: 145px;
    background: rgba(0, 0, 0, 0.45);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: 0.3s;
}
.header.active{
    height: 80px;
}
.header.active .header_menu {
    padding-top: 30px;
}

.header.active.active2{
    height: 145px;
}
.header.active.active2 .header_menu {
    padding-top: 62px;
}
.header_content{
    width: 62.5%;
    min-width: 1200px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.header_logobox{
    width: 136px;
    height: 138px;
    background: rgba(5, 55, 142, 1);
    border-radius: 0 0 12px 12px;
    padding: 5px 12px 2px 12px ;
}
.header_txt{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 12px;
    line-height: 17.38px;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
}
.header_logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
}
.header_logo img:nth-child(2){
    display: none;
}
.header_menu{
    width: calc(100% - 246px);
    height: 100%;
    padding-top: 62px;
    padding-left: 230px;
    transition: 0.3s;
}
.header_menuitems{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 72px;
    width: fit-content;
    transition: 0.3s;
    position: relative;
}
.header_menubk{
    position: absolute;
    width: 100VW;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.75);
    top: -300px;
    left: 50%;
    transform: translateX(-51%);
    transition: 0.5s;
}
.header_menu.on{
    padding-top: 99px;
    padding-left: 159px;
}
.header.active.active2 .header_menu.on{
    padding-top: 99px;
}
.header_menu.on .header_title{
    opacity: 0.2;
}
.header_menu.on .header_title.on{
    opacity: 1;
}
.header_menu.on .header_menuitems{
    gap: 96px;
}
.header_menuitems .header_titletxt{
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    line-height: 22.4px;
    position: relative;
    transition: 0.5s;
}
.header_menu.on .header_menuitems .header_titletxt{
    margin-right: 19px;
    font-size: 24px;
}
.header_menu.on .header_menuitems .header_titletxt:first-child{
    margin-right: 0px;
}
.header_menuitems .header_titletxt::before{
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 3px;
    background: rgba(255, 91, 120, 1);
    transition:0.5s;
    opacity: 0;
}
.header_title.on .header_titletxt::before {
    opacity: 1;
}
.header_title.on .header_titletxt{
    color: rgba(255, 91, 120, 1);
}
.header_title{
    position: relative;
    z-index: 9;
}
.header_menuitembox{
    position: absolute;
    top: calc(100% + 50px);
    width: fit-content;
    justify-items: center;
    z-index: 9;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    visibility: hidden;
    opacity: 0;
}
.header_title:nth-child(1) .header_menuitembox{left: -8px;}
.header_title:nth-child(3) .header_menuitembox{left:50%; transform: translateX(-50%);}
.header_title:nth-child(4) .header_menuitembox{left:50%; transform: translateX(-50%);}
.header_title:nth-child(5) .header_menuitembox{left:50%; transform: translateX(-50%);}
.header_menuitem{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
}
.header_menuitem span{
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    line-height: 22.4px;
    letter-spacing: 0px;
    margin-bottom: 5px;
    transition: 0.3s;
}
.header_menuitem a{
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 17.92px;
    white-space: nowrap;
    position: relative;
    width: fit-content;
    transition: 0.3s;
}
.header_menuitem.on span{
    color:rgba(255, 91, 120, 1);
}
.header_menuitem a:hover{
    color:rgba(255, 91, 120, 1);
}
.header_menuitem a::before{
    width: fit-content;
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 91, 120, 1);
    transition:0.5s;
    opacity: 0;
}
.header_menuitem a:hover::before {
    opacity: 1;
}
.header_menu.on .header_menubk{
    top: 46px;
}
.header_title.on .header_menuitembox{
    visibility: visible;
    opacity: 1;
    transition: 1.5s;
}




.header_sidebar{
    width: 136px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.header_language{
    width: 100%;
    height: 25px;
    background-color: rgba(5, 55, 142, 1);
    display: flex;
    align-items: center;
}
.header_language a{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 300;
    font-size: 11px;
    line-height: 15.93px;
}
.header_language-m{
    display: none;
}
.header_livebut{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: rgba(229, 37, 71, 1);
    border-radius: 0 0 12px 12px;
}
/* .header_livebut img{width: 60%;} */
.header_livebut p{
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 17.38px;
    padding-bottom: 2.5px;
}
.header_ticketbut{
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color:rgba(5, 55, 142, 1);
}
.header_ticketbut p{
    color: #ffffff;
    font-weight: 400;
    font-size: 12px;
    line-height: 17.38px;
}
.m-submenu_but{
    display: none;
}
/* 헤더부분 끝*/





/* 푸터부분 시작 */
.footer{
    width: 100%;
    background-color: rgba(51, 51, 51, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_bottom{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(43, 43, 43, 1);
}
.footer_content{
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
}
.footer_logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.footer_infor{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer_infor p{
    color: rgba(161, 161, 161, 1);
    font-weight: 500;
    font-size: 12px;
    line-height: 13.44px;
    letter-spacing: 0px;
}
.footer_mailto{
    display: flex;
    align-items: flex-end;
    gap: 4px;
}
.footer_mailto .icon_img img{
    transform: translateY(2px);
    transition: 0.3s;
}
.footer_mailto:hover .icon_img img{
    transform: translateY(-2px);
}
.family_select{
    min-width: 100px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
.family_title{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(161, 161, 161, 1);
}
.family_title p{
    color: #ffffff;
    font-weight: 200;
    font-size: 12px;
    line-height: 13.44px;
    letter-spacing: 0px;
}
.family_optionbox{
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    bottom: 100%;
    left: 0;
    border: 1px solid rgba(161, 161, 161, 1);
}
.family_select.on{
    border-top: none;
}
.family_select.on .family_title .icon_img{
    transform: rotate(180deg);
}
.family_select.on .family_optionbox{
    display: flex;
    border-bottom: none;
}
.family_option{
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(51, 51, 51, 1);;

    color: #ffffff;
    font-weight: 300;
    font-size: 12px;
    line-height: 13.44px;
    letter-spacing: 0px;
    border-bottom: 1px solid rgba(43, 43, 43, 1);;

    transition: 0.3s;
}
.family_option:hover{
    color: rgba(255, 91, 120, 1);
}
.policy_links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.policy_links a:first-child{
    color: rgba(248, 219, 70, 1);
    font-weight: 200;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0px;
}
.policy_links a:last-child{
    color: #ffffff;
    font-weight: 200;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0px;
}
.policy_links span{
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: rgba(161, 161, 161, 1);
}
.footer_sns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.copyright{
    color: rgba(161, 161, 161, 1);
    font-weight: 200;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0px;
}
.m-footer_language{
    display: none;
}
/* 푸터부분 끝 */



/* PBA팝업 시작*/
.pba_page-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 999;
    padding-top: 40px;
    display: none;
    justify-content: center;
    align-items: flex-start;
}
.popup_content{
    padding: 24px;
    background-color: #ffffff;
    max-height: 95%;
    overflow-y: auto;
}
.popup_content .player_list-search{
    padding: 10px 6px;
    height: auto;
    min-height: 30px;
    margin-bottom: 16px;
}
.popup_content .competition_records_item02-box{
    padding: 0;
    max-height: 450px;
    overflow-y: auto;
    justify-content: flex-start;
}
.popup_content_title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.popup_content_title h2{
    color: #000;
    font-weight: 700;
    font-size: 20px;
    line-height: 22.4px;
    letter-spacing: 0px;
}
.popup_tablearea{
    display: flex;
    flex-direction: column;
    
}
.popup_table {
    width: 100%;
    overflow-y: auto;
    max-height: 75vh;
    scrollbar-gutter: stable; /* 스크롤 공간 유지 */
}
.popup_table_title.overflow{
    padding-right: 18px;
}

.pba_popup-close img:nth-child(1){
    display: block;
}
.pba_popup-close img:nth-child(2){
    display: none;
}

.pba_gallery-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 999;
    padding-top: 120px;
    padding-bottom: 40px;
    display: none;
    justify-content: center;
    align-items: flex-start;
    backdrop-filter: blur(12px); /* Figma에서 설정한 Blur 값 */
    -webkit-backdrop-filter: blur(12px); /* Safari 지원 */
}
.gallery-popup_close{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10%;
} 
.gallery-popup_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

}
.gallery-popup_content h1{
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 24px;
}
.gallery-popup-txt{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
}
.gallery-popup-txt span{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.gallery-popup-txt span p{
    font-size: 14px;
    color: #E6E6E6;
    font-weight: 400;
}
.gallery_slidearea{
    width: 800px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    height: 534px;
    position: relative;
}
.gallery_slidebut{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.gallery_slidebut-l{
    left: -72px;
}
.gallery_slidebut-r{
    right: -72px;
}
.gallery_slideitem{
    width: calc(25% - 12px);
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #000000;
}

.gallery_slideitem img{
    max-width: 95%;
    height: 100%;
}
.gallery_slideitem.active{
    width: 100%;
    height: 534px;
    background-color: #000000;
}
/* 가로가 더 긴 이미지 */
.gallery_slideitem.active img.landscape {
    width: 100%;
    height: unset;
    max-height: 100%;
}

/* 세로가 더 긴 이미지 */
.gallery_slideitem.active img.portrait {
    height: 100%;
    width: unset;
    max-width: 100%;
}
/* PBA팝업 끝*/



/* 페이지네이션 시작 */
.pagination-area{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pagination_direction-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pagination_direction-box a{
    border: 1px solid rgba(229, 229, 229, 1);
    border-radius: 2px;
    min-width: 32px;
    min-height: 32px;
    max-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 9px;
}
.pagination_item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pagination_item a{
    border: 1px solid rgba(229, 229, 229, 1);
    border-radius: 2px;
    min-width: 32px;
    min-height: 32px;
    max-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(102, 102, 102, 1);
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    transition: 0.3s;
}
.pagination_item a.on{
    border: 1px solid rgba(229, 37, 71, 1);
    color: rgba(229, 37, 71, 1);
}
.m-headerbk{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.45);
    
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}
.header.on .m-headerbk{
    display: block;
}

.m-headerarea{
    width: 70vw;
    height: 100vh;
    background-color:#ffffff;
    
    position: fixed;
    top: 0;
    transition: 0.2s;
}
.m-headerarea.main{
    background-color: rgba(51, 51, 51, 1);
}
.m-headerarea.main{
    left: -100%;
}
.header.on .m-headerarea.main{
    left: 0;
}
.m-headerarea.sub{
    right: -100%;
}
.header.on .m-headerarea.sub{
    right: 0;
}
.m-headerarea.main .m-header_title{
    padding:15px 0 16px 20px;
    justify-content: flex-start;
    gap: 12px;
}
.m-header_title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 12px 27px;
}
.m-headerarea.main .m-header_language-but{
    border: 1px solid rgba(255, 255, 255, 1);
}
.m-headerarea.main .m-header_language-but p{
    color: rgba(255, 255, 255, 1);
}
.m-header_buts{
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.m-header_live-but{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
    height: 24px;
    background-color: rgba(229, 37, 71, 1);
}
.m-header_live-but p{
    color: rgba(255, 255, 255, 1);
    
    font-weight: 500;
    font-size: 12px;
    line-height: 17.38px;
    letter-spacing: -5%;
}
.m-header_language-but{
    border: 1px solid rgba(51, 51, 51, 1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 17px;
}
.m-header_language-but p{
    color: rgba(51, 51, 51, 1);

    font-weight: 400;
    font-size: 11px;
    line-height: 15.93px;
    letter-spacing: 0%;
}
.m-headermenu_box{
    display: flex;
    flex-direction: column;
    border-top:1px solid rgba(229, 229, 229, 1);
}
.m-headermenu{
    display: flex;
    flex-direction: column;
    border-bottom:1px solid rgba(229, 229, 229, 1);
}
.m-headermenu_title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 12px;
    height: 50px;
    cursor: pointer;
}
.m-headermenu_title h1{
    color: rgba(0, 0, 0, 1);

    font-weight: 400;
    font-size: 16px;
    line-height: 23.17px;
    letter-spacing: 0%;

}
.m-headerarea.main .m-headermenu_title h1{
    color:rgba(255, 255, 255, 1);
}
.m-headerarea.main .m-headermenu_items{
    background-color: rgba(75, 75, 75, 1);
}
.m-headerarea.main .m-headermenu_item h2{
    color: rgba(255, 255, 255, 1);
}
.m-headerarea.main .m-headermenu_item span a{
    color: rgba(229, 229, 229, 1);
}
.m-headerarea.main .m-headermenu{
    border-bottom: 1px solid rgba(102, 102, 102, 1);
}
.m-headermenu_title.on h1{
    color: rgba(229, 37, 71, 1);
    font-weight: 500;
}
.m-headermenu_title.on .icon_img{
    transform: rotate(90deg);
}

.m-headermenu_items{
    width: 100%;
    padding: 12px;
    background-color: rgba(248, 248, 248, 1);
    display: none;
}
.m-headermenu_itembox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap:20px 50px;
}
.m-headermenu_item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
}
.m-headermenu_item h2{
    color: rgba(51, 51, 51, 1);
    
    font-weight: 500;
    font-size: 14px;
    line-height: 20.27px;
    letter-spacing: 0%;
    transition: 0.3s;
}
.m-headermenu_item:hover h2{
    color: rgba(229, 37, 71, 1);
}
.m-headermenu_item span{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
}
.m-headermenu_item span a{
    color: rgba(102, 102, 102, 1);

    font-weight: 400;
    font-size: 12px;
    line-height: 17.38px;
    letter-spacing: 0%;
    transition: 0.3s;
}
.m-headermenu_item span a:hover{
    color: rgba(229, 37, 71, 1);
}


/* 푸터 팝업 */
.privacy_policy-popup{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75); /* 검은색(000000) + 투명도 75% */
    top: 0;left: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow-y: auto;
}
.privacy_policy-area{
    width: 800px;
    background-color: #ffffff;
    padding: 48px 36px;
}
.privacy_policy-area span{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 17px;
}
.privacy_policy-area span h1{
    font-size: 24px;
    color: #000;
    font-weight: 500;
}
.privacy_policy-txtarea{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    padding-right: 8%;
}
.privacy_policy-txtarea h2{
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.privacy_policy-txtarea p{
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.privacy_policy-txtarea ul {
    list-style-type: none; /* 기본 리스트 스타일 제거 */
    padding-left: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
  
.privacy_policy-txtarea  ul ul {
    list-style-type: disc; /* 서브 리스트는 기본 동그라미 스타일 적용 */
    padding-left: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.privacy_policy-txtarea span{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.footer_pop-up_table01 {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  .footer_pop-up_table01 td {
    border: 1px solid #ddd;
    height: 48px;
    text-align: center;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
  }
  .footer_pop-up_table01 th{
    padding: 10px;
    text-align: center;
  }
  
  .footer_pop-up_table01 thead th {
    background-color: #F8F8F8;
    font-weight: bold;
    border-right: 0;
    font-size: 12px;
    color: #666666;
    font-weight: 400;
    height: 40px;
  }
  .footer_pop-up_table01 thead{
    border-top:1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
  }
  .footer_pop-up_table01 tbody td {
    background-color: #fff;
  }
  .popup-close_area{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .popup-close_area a{
    background-color: #E52547;
    width: 94px;
    height: 46px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
  }

  .email_privacy_policy-popup{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75); /* 검은색(000000) + 투명도 75% */
    top: 0;left: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 20px;
    overflow-y: auto;
  }

.email_privacy_policy-area{
    width: 800px;
    background-color: #ffffff;
    padding: 48px 36px;
}
.email_privacy_policy-area span{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 17px;
}
.email_privacy_policy-area h1{
    font-size: 24px;
    color: #000;
    font-weight: 500;
}
.email_privacy_policy-area p{
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.popup-close_area .email_privacy_policy-popup-close{
    margin-top: 60px;
}

body.no-scroll {
  overflow: hidden !important; /* 스크롤 제거 */
}
.footer-utils{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.app-download-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.app-download-box a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 36px;
    background-color:#666666;
    border: 1px solid #5C98FF;
    border-radius: 36px;
}
.mobile-app-download{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    bottom: 90px;
    left: 24px;
}
.mobile-apptxt{
    color: #000;
    font-size: 12px;
    font-weight: 400;
    text-decoration: underline;
}
.mobile-app-buts{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mobile-app-but{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 36px;
    border-radius: 36px;
    border: 1px solid #5C98FF;
    background-color: #ffffff;
}
.mobile-app-download.sub .mobile-app-but:nth-child(3),
.mobile-app-download.sub .mobile-app-but:nth-child(4){
    display: none;
}

/* 다크모드 시작*/
@media (prefers-color-scheme: dark) {
    .popup_content{
        background-color: rgba(43, 43, 43, 1);
    }
    .popup_content_title h2{
        color: #ffffff;
    }
    .pba_popup-close img:nth-child(1){
        display: none;
    }
    .pba_popup-close img:nth-child(2){
        display: block;
    }
    .player_table02 tbody tr:nth-child(even){
        border-bottom: 1px solid rgba(51, 51, 51, 1) !important;
    }
    .mobile-app-download.sub .mobile-app-but:nth-child(3),
    .mobile-app-download.sub .mobile-app-but:nth-child(4){
        display: flex;
    }
    .mobile-app-download.sub .mobile-app-but:nth-child(1),
    .mobile-app-download.sub .mobile-app-but:nth-child(2){
        display: none;
    }
    .mobile-app-but{
        background-color: #666666;
    }

}
/* 다크모드 끝*/




/* 모바일 시작 */

@media (max-width:1220px) {
    .header_content {
        width: 100%;
        min-width: unset;
        padding: 0 20px;
    }
    .header_menu {
        padding: 0;
        display: flex;
        justify-items: center;
        justify-content: center;
    }
    .header_menu.on {
        padding-top: 65px;
        padding-left: 0px;
    }
    .header_menu.on .header_menubk {
        top: 80px;
    }
    .header_menu.on .header_menuitems {
        gap: 50px;
    }
    .header_menu.on .header_menuitems .header_titletxt {
        font-size: 20px;
    }
    .footer_content{
        width: 100%;
        padding: 12px 20px;
    }
}



@media (max-width:999px) {
    .header{
        height: 48px;
        width: 100%;
    }
    .header.active {
        height: 48px;
    }
    
    .header_content{
        padding: 0 12px;
        align-items: center;
    }
    .header_menu{
        display: none;
    }
    .header_ticketbut{
        display: none;
    }
    .header_sidebar{
        flex-direction: unset;
        width: fit-content;
        gap: 8px;
    }
    .header_language{
        all: unset;
    }
    .header_language a{
        display: none;
    }
    a.header_language-m{
        display: flex !important;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 1);
        border-radius: 4px;
        padding: 0px 4px;
        height: 20px !important;
        height: fit-content;
        width: fit-content;

        color: #ffffff;
        font-weight: 300;
        font-size: 10px;
        line-height: 22px;
        letter-spacing: 0px;
    }
    .header_livebut{
        width: 100px;
        height: fit-content;
        padding: 0px 8px;
        height: 20px;
        gap: 4px;
        border-radius: 4px;
    }
    .header_livebut img{
        display: none;
    }
    .header_livebut p{
        font-weight: 500;
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0px;
    }
    .header_txt{
        display: none;
    }
    .header_logo img:nth-child(1){
        display: none;
    }

    .header_logo img:nth-child(2){
        display: inline-block;
    }
    .header_logo{
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0px;
    }
    .header_logobox {
        width: fit-content;
         height: fit-content;
        background: unset;
        border-radius: unset;
        padding: unset;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .m-submenu_but{
        width: 16px;
        height: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .m-submenu_but span{
        width: 100%;
        height: 2px;
        background-color: #ffffff;
    }


    .footer_logo {
        position: unset;
        top:unset;
        left:unset;
        transform:unset;
    }
    .footer_content{
        padding: 12px 16px;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;position: relative;
    }
    .footer_infor p{
        font-weight: 300;
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0px;

    }
    .footer_infor p:first-child{
        color: #ffffff;
        font-weight: 400;
        font-size: 12px;
        line-height: 13.44px;
        letter-spacing: 0px;
    }
    .footer_infor{
        gap: 6px;
    }
    .family_title p{
        font-weight: 200;
        font-size: 10px;
        line-height: 11.2px;
        letter-spacing: 0px;
    }
    .family_select{
        height: 25px;
        min-width: 82px;
        position: absolute;
        top: 12px;
        right: 16px;
    }
    .app-download-box{
        position: absolute;
        top: 40px;
        right: 6px;
    }
    .footer_bottom .footer_content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    .m-footer_language{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 12px;
    }
    .m-footer_language a{
        padding: 2px 8px;
        background-color:rgba(68, 68, 68, 1);
        transition: 0.3s;

        color: #ffffff;
        font-weight: 200;
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0px;
    }
    .m-footer_language a.on{
        background-color: rgba(102, 102, 102, 1);
    }
    .popup_content_title h2{
        font-weight: 700;
        font-size: 16px;
        line-height: 17.92px;
    }
    .popup_content_title{
        margin-bottom: 12px;
    }
    .popup_table{
        overflow-y: unset;
    }
    .popup_tablearea{
        overflow-y: auto;
    }
    .popup_table_title .player_table02{
        width: 100%;
    }
    .popup_table .player_table02{
        width: 100%;
    }
    .popup_table_title .player_table02 colgroup col{
        width: 120px !important;
    }
    .popup_table .player_table02 colgroup col{
        width: 120px !important;
    }
    .popup_table_title.overflow {
        padding-right: 0;
    }
    .popup_content_title .pba_popup-close{
        width: 14px;
        height: 14px;
    }
    .pba_popup-close img{
        width: 100%;
        height: 100%;
    }
    .family_option{
        font-size: 10px;
    }
    .pba_gallery-popup{
        padding-top: 80px;
    }
    .gallery-popup_close{
        width: 24px;
        height: 24px;
        top: 40px;
    }
    .gallery-popup_content h1 {
        font-size: 18px;
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 6px;
        text-align: center;
    }
    .gallery-popup-txt span p {
        font-size: 12px;
        color: #E6E6E6;
        font-weight: 400;
    }
    .gallery_slidearea{
        width: 80%;
        height: 300px;
    }
    .gallery_slideitem.active{
        height: 300px;
    }
    .gallery_slidebut{
        width: 24px;
        height: 24px;
    }
    .gallery_slidebut-l {
        left: -30px;
    }
    .gallery_slidebut-r {
        right: -30px;
    }
    .privacy_policy-area{
        width: 90%;
        padding: 24px;
    }   
    .privacy_policy-popup{
        padding-top: 20px;
    }
    .privacy_policy-popup-close{
        width: 24px;
        height: 24px;
    }
    .privacy_policy-popup-close svg{
        width: 100% !important;
        height: 100% !important;
    }
    .privacy_policy-area span h1 {
        font-size: 16px;
    }
    .privacy_policy-txtarea p {
        font-size: 12px;
    }
    .privacy_policy-txtarea {
        gap: 12px;
        margin-bottom: 30px;
        padding: 0;
    }
    .privacy_policy-txtarea h2 {
        font-size: 15px;
        font-weight: 600;
    }
    .privacy_policy-txtarea ul ,
    .privacy_policy-txtarea ul ul{
        font-size: 12px;
    }
    .footer_pop-up_table01 thead th,
    .footer_pop-up_table01 td{
        font-size: 10px;
    }
    .popup-close_area a {
        width: 72px;
        height: 36px;
        font-size: 12px;
        font-weight: 400;
    }
    .email_privacy_policy-area{
        width: 90%;
        padding: 24px;
    }
    .email_privacy_policy-popup-close{
        width: 24px;
        height: 24px;
    }
    .email_privacy_policy-popup-close svg{
        width: 100% !important;
        height: 100% !important;
    }
    .email_privacy_policy-area h1{
        font-size: 16px;
    }
    .email_privacy_policy-area p{
        font-size: 12px;
    }
    .popup-close_area .email_privacy_policy-popup-close {
        margin-top: 30px;
    }
    .m-header_close svg{
        opacity: 0;
    }
    .m-header_close{
        background: url(/resource/img/common/m-header_close.png) no-repeat center center;
    }
    

}
@media (max-width:500px) {
    .gallery_slideitem.active,
    .gallery_slidearea{
        height: 200px;
    }
    .gallery_slideitem {
        width: calc(33.333% - 12px);
        height: 80px;
    }
    .pba_gallery-popup{
        padding-bottom: 240px;
        padding-top: 60px;
    }
    .gallery-popup-txt{
        margin-bottom: 24px;
    }
    .gallery-popup_close {
        width: 24px;
        height: 24px;
        top: 30px;
        right: 30px;
    }
    .app-download-box{
        display: none;
    }
    .mobile-app-download{
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* 모바일 끝 */


@media (prefers-color-scheme: dark) {
    .m-header_close{
        background: url(/resource/img/common/m-header_close-dk.png) no-repeat center center;
    }
    .mobile-apptxt{
        color: #ffffff;
    }
}