@charset "utf-8";
body{
    overflow-x: hidden;
}
body.no-scroll{
    overflow: hidden;
}
.wrep_2{
    background: url(../images/index/section_6_bk.png) no-repeat center center;
    background-size: cover;
    background-attachment:fixed;
}
.logo_interaction{
    width: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 9;
  opacity: 0;
  animation-duration: 10s;          /* 전체 사이클 10초 */
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
  pointer-events: none;
}
.logo_interaction img{
    width: 100%;
    height: 100%;
}
/* 1번 로고 */
.logo_interaction.logo1 { animation-name: swap1; }

@keyframes swap1 {
  0%   { opacity: 0; }
  25%  { opacity: 1; } /* 0~2.5초 동안 서서히 등장 */
  35%  { opacity: 1; } /* 유지 */
  45%  { opacity: 0; } /* 사라짐 */
  100% { opacity: 0; }
}

/* 2번 로고 */
.logo_interaction.logo2 { animation-name: swap2; }

@keyframes swap2 {
  0%   { opacity: 0; }
  50%  { opacity: 0; } /* 1번 끝날 때까지 대기 */
  75%  { opacity: 1; } /* 5~7.5초 동안 서서히 등장 */
  85%  { opacity: 1; } /* 유지 */
  95%  { opacity: 0; } /* 사라짐 */
  100% { opacity: 0; }
}



.logo_interaction.active{
    animation: logo_interaction 4s ease-in-out;
    animation-fill-mode: forwards;
}
.banner_svg{
    overflow: unset;
}
.logo_piece0{
    opacity: 0;
    transition: 0.3s;
}

@keyframes logo_interaction {
    0% {
        width: 30%;
        opacity: 1;
    }
    30% {
        width: 50%;
        opacity: 1;
    }
    60%{
        width: 20%;
        opacity: 1;
    }
    80%{
        width: 31%;
        opacity: 1;
    }
    100%{
        width: 30%;
        opacity: 1;
    }
}
.st.move{
    animation-name: st_move;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate; 
    transition: 1s !important;
}

@keyframes st_move {
    0%, 25% {  /* 1초 동안 #AA2227와 opacity 1 상태 유지 */
        fill: #AA2227;
        opacity: 1;
    }
    50%{
        opacity: 1;
    }
    75%, 100% {  /* 1초 동안 #ffffff와 opacity 1 상태 유지 */
        fill: #ffffff;
        opacity: 1;
    }
}
.st0{
    fill:transparent;
    transition: 2s;
}
.st0,
.st1{
    fill:#FFFFFF;
    transition: 4s;
    z-index: 99999999;
    opacity: 0;
}
.st2{
    fill:#FFFFFF;
    transition: 2s;
    z-index: 99999999;
    opacity: 0;
}
.st1.active{
    transform: translate(0, 0);
    opacity: 0.3;
}
.st00.active2{
    opacity: 1;
}
.st2.active{
    opacity: 1;
    transform: translate(0, 0);
}
.st00{
    opacity: 0;
}
.st.color{
    fill:#AA2227;
}


.logo_piece1{
    transform: translate(-600px, 150px);
}
.logo_piece2{
    transform: translate(-400px, -600px);
}
.logo_piece3{
    transform: translate(600px, 150px);
}
.logo_piece4{
    transform: translate(400px, -600px);
}






.banner_bottom_interaction{
    position: absolute;
    bottom: -15px;
    left: 0;
    
}
.banner_bottom_interaction1{
    animation: fadeAnimation1 3s ease-in-out infinite; /* 무한 반복 애니메이션 설정 */;
}
.banner_bottom_interaction2{
    animation: fadeAnimation2 3.3s ease-in-out infinite; /* 무한 반복 애니메이션 설정 */;
}
.banner_bottom_interaction img{
    visibility: visible;
    opacity: 1;
    transition: 5s;
}
.banner.active .banner_bottom_interaction img{
    visibility: hidden;
    opacity: 0;
}
@keyframes fadeAnimation1 {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.07);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeAnimation2 {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity:1;
        transform: scale(1.04);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.scroll_down_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
    margin-bottom: 10px;
    cursor: pointer;
}
.scroll_down_box p{
    color: #FFF;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
.scroll_down_items{
    width: 2px;
    height: 80px;
    background-color: #D9D9D9;
    position: relative;
    overflow: hidden;
}
.scroll_down_item{
    width: 100%;
    height: 50%;
    background-color: #AA2227;
    position: absolute;
    top: 0%;
    left: 0;
    animation: scroll_down_item 2s ease-in-out infinite; /* 무한 반복 애니메이션 설정 */
}
@keyframes scroll_down_item {
    0% {
        top: 0%;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 0%;
    }
}

form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



/* 섹션 공통부분 시작*/
.section{
    padding: 100px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.section_h1{
    color: #AA2227;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 50px;
    z-index: 9;
    text-align: center;
    position: relative;
}
.section_h1.event_section_h1{
    margin-bottom: 50px;
}
.section_h1.section1_h1{
    margin-bottom: 70px;
}
.section_h1 br{
    display: none;
}

.player_slider_area{
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: 100%;
}
.player_slide_bar{
    position: unset !important;
}
.swiper-pagination{
    position: unset !important;
}
.swiper-pagination-progressbar-fill{
    background-color: #AA2227 !important;
}
.player_slider_area_masking{
    width: 100%;
    position: unset !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.slider_area_box_arrow_left{
    top: 40% !important;
    right: unset !important;
    left: -4% !important;
}
.slider_area_box_arrow_right{
    top: 40% !important;
    left: unset !important;
    right: -4% !important;
}
.slider_area_box1{
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 78.125%;
    z-index: 9;
    align-items: center;
    
}
.player_slider_img_box{
    position: relative;
    overflow: hidden;
    height: 160px;
    margin-bottom: 3px;
    border-radius:5px;
}
.player_slider_img_box_pointer{
    cursor: pointer;
}
.player_slider_img_box img{
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translatex(-50%);
    transition: 0.3s;
}
.player_slider_hover_box{
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 90%;
    height: 90%;
    border-radius: 5px;
    background: rgba(251, 251, 253, 0.70);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    overflow: hidden;
}
.player_slider_img_box.active .player_slider_hover_box{
    top: 50%;
}
.player_slider_img_box.active img{
    transform: scale(1.2) translate(-50%, -50%);
}

.hover_box_name_en{
    color: #000;
    text-align: center;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

}
.hover_box_name_kr{
    color: #222;
    text-align: center;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;

}
.player_info_but{
    display: inline-flex;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    color: #222;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 5px;
    border: 1px solid #000;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.button_interaction1:before{
    content: "";
    position: absolute;
    left: -100%;
    top:0%;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: 0.4s;
    z-index: -9;
}
.button_interaction1:hover{
    color: #dbdbdb;
}
.button_interaction1:hover::before {
    left: 0;
}

.button_interaction2:before{
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.4s;
    z-index: -1;
}
.button_interaction2:hover{
    color: #555;
}
.button_interaction2:hover::before {
    left: 0%;
}


/* 이벤트 슬라이드쪽 */
.slider_area_box2{
    width: 62%;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.event_slider_box{
    transition: 0.3s;
}
.event_slider_box_img{
    height:350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
}
.event_slider_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.event_slider_box_img.active img{
    transform: scale(1.3);
}
.event_slider_box_img_hover_box{
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 90%;
    height: 90%;
    border-radius: 5px;
    background: rgba(251, 251, 253, 0.70);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.event_slider_box_img.active .event_slider_box_img_hover_box{
    top: 50%;
}
.event_info_but{
    display: inline-flex;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 5px;
    border: 2px solid #000;
    cursor: pointer;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
    transition: 0.1s;
}
.slide_center{
    transform: scale(1) !important;
}
.slider_area_box2_arrow_but{
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: unset !important;
}
.slider_area_box2_arrow_but_left,
.slider_area_box2_arrow_but_right{
    position: unset !important;
    width: unset !important;
    height: unset !important;
    margin: unset !important;
}
.slider_area_box2_num{
    width: unset !important;
    color: #FFF !important;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.popup_windows{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #00000099;
    z-index: 9999;
    top: 0;
    left: 0;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_windows.active{
    visibility: visible;
    opacity: 1;

}
.popup_window_zone{
    width: 100%;
    height: 90%;
    background-color: #fff;
    border: 2px solid #c43239;
    border-radius: 0 0 10px 10px;
    transition: 0.3s;
    padding:16px;
    position: relative;
}
.popup_window_zone.popup_window_zone_profile{
    height: 55%;
    padding: 25px;
}
.popup_window_zone_arrow_left{
    position: absolute;
    transform: translatey(-50%);
    top: 50%;
    left: -7%;
    cursor: pointer;
}
.popup_window_zone_arrow_right{
    position: absolute;
    transform: translatey(-50%);
    top: 50%;
    right:-7%;
    cursor: pointer;
}
.popup_window{
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
    overflow-x: hidden; /* 가로 스크롤 제거 */
    overflow-y: auto;
    padding:5px 30px;
    display: none;
    
}
.popup_windowss.active .popup_window_zone .popup_window{
    display: inline-block;
}
.popup_window_header{
    width: 100%;
    height: 44px;
    background-color: #AA2227;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 45px;
    z-index: 999;
    border-radius: 10px 10px 0px 0px;
    
}
.popup_window_header.popup_window_header_profile{
    padding: 0 20px 0 30px;
}
.popup_windowss{
    width: 49%;
    height: 100%;
    max-height: 65%;
    display: none;
}
.popup_windowss.popup_window_2{
    max-height: 75%;
}
.popup_windowss.active{
    width: 40%;
    display: inline-block;
}
.popup_window_header_title_theme{
    width: 100%;
    height: 60px;
    background-color: #AA2227;
}
.popup_window.active .popup_window_header{
    width: 100%;
}
.popup_window_contents{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.popup_window_header_title{
    display: flex;
    gap: 36px;
}
.popup_window_header_title h1{
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: fit-content;
}
.popup_window_header_close{
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
.popup_window_header_close span{
    border-radius: 15px;
    background: #FFF;
    width: 26px;
    height: 3px;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.3s;
}
.closestick_1{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.closestick_2{
    transform: translate(-50%, -50%) rotate(45deg);
}
.popup_window_header_close:hover .closestick_1{
    transform: translate(-50%, -50%) rotate(0deg);
}
.popup_window_header_close:hover .closestick_2{
    transform: translate(-50%, -50%) rotate(0deg);
}
.popup_window_map{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 320px;
}
.popup_window_map_info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.popup_window_map_info_txtboxs{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}
.popup_window_map_info_txtbox{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: baseline;
}
.popup_window_map_info_txtbox_h2{
    color: #DDDDDD;
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    white-space:nowrap;
    padding-right: 12px;
}
.popup_window_map_info_txtbox_h3{
    color: #114b86;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    white-space:nowrap;
}
.popup_window_map_info_txtbox_div{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: baseline;
    justify-content: center;
}
.popup_window_map_info_txtbox_span{
    padding: 2px 6px;
    min-width: 40px;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #ffffff;
    text-align: center;
}
.popup_window_map_info_txtbox_span1{
    background-color: #999999;
}
.popup_window_map_info_txtbox_span2{
    background-color: #6f7935;
}
.popup_window_map_info_txtbox_span3{
    background-color: #F5A200;
}
.popup_window_map_info_txtbox_span4{
    background-color: #6d9b3d;
}
.popup_window_map_info_txtbox_span5{
    background-color:#4457a3 ;
}
.popup_window_map_info_txtbox_span6{
    background-color:#bc3827 ;
}

.popup_window_map_info_txtbox_p{
    color: #272C31;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.popup_window_map_info_txtbox_p i{

}
.popup_window_map_info_txtbox_p_kr{
    font-size: 13px;
}
.profile_contents{
    display: flex;
    height: 100%;
    gap: 16px;
}
.profile_imgbox{
    width: calc(35% - 8px);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.profile_imgbox_mySwiper08{
    height: 100% !important;
    height: 90% !important;
}
.profile_imgbox_but{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 10%;
}
.swiper-pagination_08{
    font-size: 11px !important;
    color: #444 !important;
    height: 14px;
}
.profile_imgbox_but div{
    position: unset !important;
    width: fit-content !important;
    cursor: pointer !important;
}
.profile_txtbox{
    width: calc(65% - 8px);
    overflow-y: auto;
}
.profile_txtbox_en{
    color: #272C31;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4px;
}
.profile_txtbox_kr{
    color: #272C31;
    font-size: 15px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}
.profile_txtbox_history{
    margin-top: 12px;
    width: 100%;
}
.profile_txtbox_history_h{
    color: #000000;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 6px;  
}
.profile_txtbox_history_p{
    color: #272C31;
    font-size: 15px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    margin-bottom: 6px;
}
.profile_imgbox_slide{
    height: 100% !important;
}
.profile_imgbox_slide .swiper-wrapper .swiper-slide{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.profile_imgbox_img{
    height: 100%;
}
.profile_imgbox_img.profile_imgbox_img_9{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo_mark_box{
    padding: 12px 24px;
    border-radius: 5px;
    border: 2px solid var(--z, rgba(0, 0, 0, 0.10));
}
.profile_content2_item_slidebox{
    width: 100%;
    max-width: 712px;
    position: relative;
}
.swiper06_customs{
    height: unset !important;
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    
}
.swiper06_custom{
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden !important;
    height: 100% !important;
    max-height: 360px;
    margin: 36px 0;
    border-radius: 5px;
}
.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;  /* 페이지네이션과 슬라이더 사이의 간격 조절 */
    gap: 20px;
}

.custom-pagination-item {
    width: calc(25% - 20px);
    height: 100px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #dbdbdb;
}

.custom-pagination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_slidebox_l,.profile_slidebox_r{
    top: unset !important;
    right:unset !important;
    left:unset !important;
}
.profile_slidebox_l{
    top: 47% !important;
    left: -7% !important;
    transform: translateY(-50%);
}
.profile_slidebox_r{
    top: 47% !important;
    right:-7% !important;
    transform: translateY(-50%);
}

.logo-container {
    width: 100%;
    display: flex;
    animation: marquee 8s linear infinite;
    animation-direction: alternate;
}
.paused {
    animation-play-state: paused;
  }
.logo-inner {
  border: 1px solid #dbdbdb;
  padding: 12px 24px;
  border-radius: 5px;
  flex: 0 0 auto;
  margin-right: 24px; /* Adjust this to change the gap */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform:translateX(-57%); }
}

.event_imgbox{
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event_imgbox img{
    max-width: 100%;
    cursor: pointer;
}
.event_headers{
    display: flex;
    flex-direction: column;
}
.event_header{
    display: flex;
    align-items: baseline;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #eaecf1;
    width: 100%;
    gap: 20px;
}
.event_header h1{
    color: #272C31;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.contact_us_contents{
    padding:10px;
}


.notice-section .contact-contetn-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .notice-section .contact-contetn-wrap .content {
    width: 100%;
  }

  .notice-section .contact-contetn-wrap .content form .middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    width: 100%;
    margin-bottom: 10px;
  }
  .title{
    grid-column: span 2;
}
  .notice-section .contact-contetn-wrap .content form .middle > div {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div > label {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    margin-bottom: 6px;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div > input {
    background: #FFFFFF;
    border: 1px solid #C9C9C9;
    padding: 10px 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 17px;
    color: #272C31;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div > input:placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #999999;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div .option-radiobox {
    display: flex;
    align-items: center;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div .option-radiobox label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
    margin-left: 10px;
    position: relative;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div .option-radiobox label span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: url(../img/check-btn.svg) no-repeat center center #FFFFFF;
    border: 1px solid #DDDDDD;
    left: -30px;
    transition: all 0.3s;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div .option-radiobox label span.active {
    background: url(../images/index/check-btn.png) no-repeat center center #555;
    transition: all 0.3s;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div .option-radiobox label:nth-child(2) {
    margin-right: 40px;
  }
  .notice-section .contact-contetn-wrap .content form .middle > div .option-radiobox > input {
    width: 20px;
    height: 20px;
    opacity: 0;
  }
  .notice-section .contact-contetn-wrap .content form .bottom {
    width: 100%;
    margin-bottom: 48px;
  }
  .notice-section .contact-contetn-wrap .content form .bottom .message {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .notice-section .contact-contetn-wrap .content form .bottom .message label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin-bottom: 6px;
  }
  .notice-section .contact-contetn-wrap .content form .bottom .message textarea {
    width: 100%;
    height: 240px;
    background: #FFFFFF;
    border: 1px solid #C9C9C9;
    padding: 10px 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 17px;
    color: #272C31;
  }
  .notice-section .contact-contetn-wrap .content form .bottom .message textarea:placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 17px;
    color: #272C31;
  }
  .notice-section .contact-contetn-wrap .content form button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    background: rgb(223, 61, 12);
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 27px;
    color: #FFFFFF;
    border: 0;
    transition: 0.3s;
  }
  .notice-section .contact-contetn-wrap .content form button:hover{
    background: rgb(172, 15, 15);
  }
  .notice-section .contact-contetn-wrap .content form button svg {
    margin-left: 12px;
  }
/* 섹션 공통부분 끝*/


/* 섹션1 시작 */
.section_1{
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: unset;
    background-color: #0d0c07;
    min-height: 100vh;
}
.banner_interaction_box{
    width: 100%;
    height: 150px;
    background-color:transparent;
    position: relative;
    margin: 50px 0 30px 0;
}



.header_contents_logo_box.active{
    visibility: visible;
    opacity: 1;
}
.section_1_txtboxs{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top:20px;
}
.section_1_txtbox{
    width:61%;
    z-index: 9;
}
.section_1_txtbox2{
    width: 95%;
    margin-bottom: 25px;
}
.section_3_txtbox{
    width:72%;
    z-index: 9;
}
.section_1_txtbox_p1{
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    margin-bottom: 6px;
    line-height: 24px;
}
.section_1_txtbox_p2{
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 100;
    line-height: 24px;
}
.section_1_bkbox{
    position: absolute;
    top: -0.1;
    left:-1px;
    animation: section_1_bkbox 10s ease-in-out infinite; /* 무한 반복 애니메이션 설정 */
    transform: rotate(0deg) scale(1);
}
.section_1_bkbox img{
    height: 100%;
}
@keyframes section_1_bkbox {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(5deg) scale(1.05);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}
/* 섹션1 끝 */


/* 섹션2 시작 */
.section_2{
    background: url(../images/index/section_2_bk.png) center center;
    background-size: cover;
    background-attachment: fixed;
}
.section2 img{
    width: 100%;
    height: 100%;     
}
.section3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
    width: 100%;
    height: 100%;
}
.section3 img{
    width: 100%;
    height: 100%;     
}
.section4{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
    width: 100%;
    height: 100%;
}
.section4 img{
    width: 100%;
    height: 100%;     
}

/* 섹션2 끝 */


/* 섹션3 시작 */
.section_3{
    background: url(../images/index/section_3_bk.png) center center;
    background-size: cover;
    background-attachment: fixed;
}
/* 섹션3 끝 */


/* 섹션 4 시작 */
.section_4{
    background: url(../images/index/section_4_bk.png) center center;
    background-size: cover;
    background-attachment: fixed;
}
.section_4_slider_area{
    display: flex;
    width: 78.125%;
    gap: 60px;
    margin-bottom: 50px;
}
.slider_area_main_imgs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    cursor: pointer;
}
.slider_area_main_img{
    width: 400px;
    height: 160px;
    overflow: hidden;
    border-radius: 5px;
}
.slider_area_main_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.slider_area_main_img:hover img{
    transform: scale(1.3);
}
.olympic_special_slides{
    width: calc(100% - 550px);
    position: relative;
}
.olympic_special_slide{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
/* 섹션 4 끝 */


/* 섹션5 시작 */
.section_5{
    min-height: 60vh;
}
.section_5_txtbox{
    width: 57%;
    margin-bottom: 25px;
}
.section_5_contents{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    gap: 24px;
}
.section_5_content {
    flex: 1;
    transition: 1s;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff3d;
    min-height: 50px;
    min-height: 170px;
    position: relative;
}
.section_5_content:hover{
    flex: 2;
}
.section_5_content h1 {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    visibility: visible;
    opacity: 1;
    margin-bottom: unset;
    transition: 0.3s;
}
.section_5_content_item p{
    color: #dbdbdb;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    visibility: visible;
    opacity: 1;
    margin-bottom: unset;
    transition: 0.3s;
}
.section_5_content_item{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    transition: 0.3s;
    cursor: pointer;
}
.section_5_content_item div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_5_content_item1{
    visibility: visible;
    opacity: 1;

}
.section_5_content_item2{
    visibility: hidden;
    opacity: 0;
    
}
.section_5_content:hover .section_5_content_item1{
    visibility: hidden;
    opacity: 0;
}
.section_5_content:hover .section_5_content_item2{
    visibility: visible;
    opacity: 1;
}
/* 섹션5 끝 */


/* 섹션6 시작 */
.section_6{
    background: #FAF9F9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section_6_contents{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 78%;
    margin-bottom: 40px;
}
.section_6_contents:last-child{
    margin-bottom: 0px;
}
.section_6_content{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.section_6_content_title h2{
    color: rgba(51, 51, 51, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.1px;
}
.section_6_content_title p{
    color: #111;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.05px;
}
.section_6_content_item{
    border-radius: 5px;
    border: 1px solid var(--z, rgba(0, 0, 0, 0.10));
    background: #FFF;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    padding: 24px;
}
.section_6_content_item img{
    width: 100%;
    transition: 0.3s;
}
.section_6_content_item.section_6_content_item_en img{
    width: unset;
}
.section_6_content_item:hover img {
    transform: scale(1.1);
}
/* 섹션6 끝 */






/* 섹션7 시작 */
.section_and_footer{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section_7{
    min-height: unset;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    gap: 40px;
}

.section_7_items{
    display: flex;
    gap: 16px;
    width: 63%;
    height: 170px;
}
.section_7_item{
    flex: 1;
    transition: 1s;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section_7_item:hover{
    flex: 2;
}
.section_7_item:nth-child(1){
    background: url(../images/index/section_7_item1.png) no-repeat left center;
    background-size: cover;
}
.section_7_item:nth-child(2){
    background: url(../images/index/section_7_item2.png) no-repeat center center;
    background-size: cover;
}
.section_7_item:nth-child(3){
    background: url(../images/index/section_7_item3.png) no-repeat center center;
    background-size: cover;
}
.section_7_item:nth-child(4){
    background: url(../images/index/section_7_item4.png) no-repeat center center;
    background-size: cover;
}
.section_7_item:hover h1{
    visibility: hidden;
    opacity: 0;
}
.section_7_item:hover .section_7_item_evn{
    visibility: visible;
    opacity: 1;
}
.section_7_item h1{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    visibility: visible;
    opacity: 1;
    margin-bottom: unset;
    transition: 0.3s;
}
.section_7_item_evn{
    width: 90%;
    height: 90%;
    background-color: #0000005e;
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.section_7_item_evn.section_7_item_evn1{
    width: 44%;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
}
.section_7_item_evn.section_7_item_evn2{
    width: 44%;
    top: 50%;
    left: unset;
    right: 4%;
    transform: translateY(-50%);
}
.section_7_item_evn h2{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    margin-bottom: 12px;
}
.section_7_item_evn p{
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    margin-bottom: 10px;
}
svg path{
    transition: 0.3s;
}
.sns_insta:hover path {
    fill: #C13584 !important;
}
.sns_twitter:hover path {
    fill: #1DA1F2 !important;
}
.sns_youtube:hover path {
    fill: #FF0000;
}
.sns_youtube:hover .youtube-icon {
    fill: #ffffff;
  }
.button_interaction2{
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    margin-top: 10px;
    padding: 8px 14px;
    border: 1px solid #FFF;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.section_7_but_box{
    display: flex;
    gap: 30px;
    z-index: 9;
}
.section_7_but{
    border-radius: 5px;
    border: 1px solid #FFF;
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.1s;
}

.section_and_footer{
    background: url(../images/index/section_1_bk22.jpg) no-repeat center 90%;
    background-size: cover;
}

/* 섹션7 끝 */

.modal {
    display: none;
    position: fixed;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    z-index: 99999999; /* Ensure it sits on top of everything */
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    min-width:700px;
  }
  
  .close {
    position: fixed;
    top: 15px;
    right: 100px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: unset !important;
    cursor: unset !important;
    pointer-events: unset !important;
    cursor: pointer !important;
}

/* 골프 영역 */
.golf_player_areas{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}
.golf_player_area_h1{
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    text-align: center;
}

.golf_player_area{
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}
.golf_player{
    width: 140px;
    height: 155px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 5px;
}
.golf_player:hover img{
    transform: scale(1.2);
}
.golf_player_img{
    width: 100%;
    transition: 0.3s;
}
.golf_players{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.player_info_p{
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    text-align: center;
}


.pba_team_areas{
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px;
    background-color: #ffffff6e;
    border-radius: 10px;

}
.pba_team_area{
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    justify-content: center;
}
.pba_team_img{
    max-width: 100%; max-height: 120px;
    object-fit: cover;
    transition: 0.3s;
}
.pba_team_img:hover{
    transform: scale(1.2);
}
.section_3_logoboxs{
    display: flex;
    width: 100%;
}
.section_3_logobox{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 24px;
}
.section_3_area_img{
    transition: 0.3s;
}
.section_3_area_img:hover{
    transform: scale(1.1);
}
.popup_window_lists{
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}
.popup_window_list_title{
    white-space: nowrap;
    color: #000000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 55px;
}
.popup_window_list_p{
    color: #272C31;
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}
.popup_window_list_p i{
    font-style: normal;
}
.popup_window_zone_pbateam{
    min-height: 30%;
    height: auto;
    max-height: 65%;
}
.profile_txtbox_history_box{
    margin-bottom: 12px;
}
.profile_txtbox_history2{
    display: grid;
    grid-template-columns: 1fr;
    overflow-y: auto;
    height: 40%;
}
.popup_window_zone_pbateam.popup_window_zone_pbateam_bottom{
    height: 90%;
}
.popup_window_zone_pbateam.popup_window_zone_pbateam_bottom.popup_window_zone_pbateam_bottom2{
    max-height: unset;
    height: 540px;
}
.profile_txtbox_history2 {
    height: 92%;    
}
.profile_txtbox_history_1{
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.profile_txtbox_history_1 p{
    font-size: 15px;
    font-weight: 900;
    color: #343434 ;
    font-style: normal;
    line-height: normal;
}
.profile_txtbox_history_2{
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 12px;
}
.profile_txtbox_history_2 p{
    color: #272C31;
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}
.news_contents{
    width: 49%;
    padding-top: 60px;
}
.news_h1{
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    text-align: center;
    z-index: 8;
    position: relative;
}
.news_item{
    height: 250px !important;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    position: relative !important;
}
.news_masking{
    margin-top: 24px;
}
.news_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.news_item img:hover{
    transform: scale(1.2);
}
.news_item_txtbox{
    width: 95%;
    height: auto;
    padding: 12px 6px;
    background-color: #ffffffd0;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translatex(-50%);
    border-radius: 5px;
    max-height: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news_item_txtbox p{
    color: #000000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    word-break: break-all;
    text-align: center;
}
.news_contents_but div{
    position: unset !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    transform: unset !important;
    width: unset !important;
    height:unset !important;
    margin: unset !important;
}
.news_contents_but{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    margin-top: 12px;
    gap: 20px;
}
.news_content_num{
    color: #ffffff !important;
}
#pba_team_img .swiper-slide .profile_imgbox_img{
    object-fit: unset;
}
.news_popup_txt{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;

}
.news_popup_txt p{
    color: #000000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.news_popup_contents{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    overflow-y: auto;
}
.popup_window_5 .popup_window_zone .profile_contents .profile_imgbox{
    width: calc(50% - 8px);
}
.popup_window_5 .popup_window_zone .profile_contents .profile_txtbox{
    width: calc(50% - 8px);
}
.sub_manu_item_li_news{
    margin: unset;
    margin-top: 12px;
    font-size: 17px;
}
.news_popup_txt_item{
    display: flex;
    align-items: baseline;
    gap: 24px;
}

.news_popup_txt_item h1{
    font-size: 15px;
    color: #222222;
}
.news_popup_txt_item_p{
    width: 100%;
}
.news_popup_txt_item p{
    display: flex;
    font-size: 14px;
    word-break:break-all;
}
.news_popup_txt_item_title p{
    font-size: 15px;
    font-weight: 600;
}
.popup_contents{
    width: 400px;
    height: 450px;
    background-color: #0000001e;
    position: fixed;
    z-index: 999999999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    bottom:50px;
    right: 50px;
    overflow: hidden;
    border-radius: 5px;
    transition: 1s;
    visibility: hidden;
    opacity: 0;
}
.popup_contents.active{
    visibility: visible;
    opacity: 1
}
.popup_contents_close{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #000000a9;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.popup_contents_close img{
    transition: 0.3s;
}
.popup_contents_close:hover img{
    transform: rotate(90deg);
}
.popup_item_img{
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.popup_item_txt{
    width: 95%;
    padding: 12px 6px;
    background-color: #ffffffd0;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translatex(-50%);
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 1.5s;
}
.popup_item_img img{
    width: 100%;
    object-fit: cover;
}
.popup_masking{
    width: 100% !important;
    height: 100% !important;
}
.popup_item_txt p{
    color: #000000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.popup_item.swiper-slide-active .popup_item_img .popup_item_txt{
    visibility: visible;
    opacity: 1;
}
.swiper{
    width: 100% !important;
}
.pba_popup_txts{
    width: 100%;
    display: flex;
    gap: 12px;
}
.pba_popup_img{
    width: 28%;
    height: 100%;
    max-height: 172px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pba_popup_img img{
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.pba_popup_txt{
    width: 72%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pba_popup_txt_item {
    display: flex;
    align-items: baseline;
    gap: 24px;
}
.pba_popup_txt_item_h1 {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbdbdb6e;
    padding: 6px 12px;
    border-radius: 5px;
}
.pba_popup_txt_item h1 {
    font-size: 15px;
    color: #222222;
}
.pba_popup_txt_item_p {
    width: calc(100% - 180px);
}
.pba_popup_txt_item p {
    font-size: 14px;
    word-break: break-all;
}
.pba_popup_boxs{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.pba_popup_player_boxs{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pba_popup_player_box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:flex-start;
    gap: 8px;
}
.pba_popup_player_box_area{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 18.8%;
}
.pba_popup_player_imgbox{
    width: 100%;
    height: 155px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
}
.pba_popup_player_box_area img{
    width: 100%;
}
.pba_popup_player_box_area p{
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    color: #232323;
    margin-top: 5px;
}
.profile_imgbox_img2{
    width: 100%;
}
.pba_popup_txt_item_h1.pba_popup_txt_item_h1_2 h1{
    letter-spacing: 15px;
    text-align: center;
    padding-left: 15px;
}
.footer_logo{
    width:140px;
}
.footer_logo img{
    width: 100%;
}