@charset "UTF-8";

@font-face {
    font-family: "Pretendard Variable";
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: url("/fonts/PretendardVariable.woff2") format("woff2-variations");
}

@font-face {
    font-family: "NEXON Football Gothic B";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("/fonts/NEXONFootballGothicBA1.woff") format("woff");
}

@font-face {
    font-family: "NEXON Football Gothic B";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("/fonts/NEXONFootballGothicBA1.woff") format("woff");
}

body {
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
    width: 100vw;
    max-height: 100%;
    overflow-x: hidden;
}

/* reset.css의 태그 단위 NotoSans 선언보다 우선 적용 */
#headerHg,
#headerHg * {
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
}

#headerHg > .logo_area .wrap_inner.clearfix::after,
#headerHg > .logo_area .wrap_inner.clearfix::before {
    display: none;
}

.wrap_inner {
    max-width: 1200px;
    margin: auto;
}
.wrap_header {
    position: relative;
}

/* 헤더 */
#headerHg .logo_area .wrap_inner {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#headerHg .header_right .sumbox li {
    line-height: 0.7;
}

.header_left {
    display: flex;
    align-items: center;
}

.header_right {
    display: flex;
    align-items: center;
}

.mainlogo {
    margin-right: 40px;
    cursor: pointer;
}

.slogan {
    overflow: hidden;
}
.slogan img {
    opacity: 0;
    transform: translateY(10px);
    animation: sloganFadeIn 0.9s ease-out 0.3s forwards;
}
@keyframes sloganFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.sumbox {
    position: relative;
    height: 64px;
    background-color: #ebf0f5;
    border-radius: 8px;
    margin-right: 40px;
    padding: 16px;
    display: flex;
    gap: 32px;
}
.sumbox li {
    position: relative;
}
.sumbox li::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #d3dae0;
}
.sumbox li:last-child::after {
    display: none;
}
.sumbox li p {
    font-weight: 500;
    color: #5d6c7a;
    font-size: 13px;
    margin-bottom: 12px;
}
.sumbox li span {
    font-weight: 500;
    color: #007af5;
    font-size: 14px;
}

.unb {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer !important;
}
.unb * {
    cursor: pointer !important;
}
.unb li {
    position: relative;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #222;
    cursor: pointer !important;
}
.unb li:hover {
    color: #007fed;
}
.unb li a {
    position: relative;
    display: block;
    color: inherit;
    cursor: pointer !important;
    padding-top: 32px;
    line-height: 1.2;
    transition: color 0.2s ease;
}
.unb li:hover a,
.unb li a:hover,
.unb li a:focus {
    color: #007fed;
}
.unb li > a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
    pointer-events: none;
    z-index: 1;
}
.unb li.nav-login > a::before {
    left: calc(50% + 3px);
    background-image: url("/img/ic_login_door.png");
}
.unb li.nav-logout > a::before {
    left: calc(50% + 3px);
    background-image: url("/img/ic_login_door.png");
}
.unb li.nav-logout > a::before {
    transform: translateX(-50%) scaleX(-1);
}
.unb li.nav-login > a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 8px);
    width: 24px;
    height: 24px;
    background: url("/img/ic_login_arrow.png") no-repeat 50% 50% / contain;
    transform: translateX(0);
    transform-origin: center;
    transition:
        transform 0.18s ease-out,
        opacity 0.18s ease-out;
    opacity: 0.95;
    pointer-events: none;
    z-index: 2;
}
.unb li.nav-logout > a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 11px);
    width: 24px;
    height: 24px;
    background: url("/img/ic_login_arrow.png") no-repeat 50% 50% / contain;
    transform: scaleX(-1) translateX(0);
    transform-origin: center;
    transition:
        transform 0.18s ease-out,
        opacity 0.18s ease-out;
    opacity: 0.95;
    pointer-events: none;
    z-index: 2;
}
.unb li.nav-join > a::before,
.unb li.nav-mypage > a::before {
    background-image: url("/img/ic_join.png");
}
.unb li.nav-cert > a::before {
    background-image: url("/img/ic_certificate.png");
}
.unb li.nav-login:hover > a::after {
    transform: translateX(-3px);
    opacity: 0.85;
}
.unb li.nav-logout:hover > a::after {
    transform: scaleX(-1) translateX(-3px);
    opacity: 0.85;
}
.unb li.nav-login:hover > a::before {
    transform: translateX(-50%);
    opacity: 1;
}
.unb li.nav-logout:hover > a::before {
    transform: translateX(-50%) scaleX(-1);
    opacity: 1;
}
.unb li.nav-join:hover > a::before,
.unb li.nav-mypage:hover > a::before {
    transform: translateX(-50%) translateY(-1px);
    opacity: 0.85;
}
.unb li.nav-cert:hover > a::before {
    transform: translateX(-50%) translateY(-1px);
    opacity: 0.85;
}

/* 헤더-네비 */
#headerHg .gnb {
    position: relative;
    z-index: 100;
    height: 56px;
    background-color: #fff;
    font-weight: 900;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
#headerHg .gnb::after {
    content: "";
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 440px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
    z-index: 0;
}
#headerHg .gnb::before {
    content: "";
    position: absolute;
    top: 495px;
    left: 0;
    width: 100%;
    height: 24px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
    pointer-events: none;
    z-index: 0;
}
#headerHg .gnb.is-open::before,
#headerHg .gnb.is-open::after {
    opacity: 1;
    visibility: visible;
}
#headerHg .gnb.is-all-open::before,
#headerHg .gnb.is-all-open::after {
    opacity: 0;
    visibility: hidden;
}
#headerHg .gnb > .wrap_inner {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 56px;
    z-index: 1;
}
.gnb1 {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
}
.gnb1 .control_menu {
    position: relative;
    display: block;
    top: 0;
    right: 0;
    width: 56px;
    height: 54px;
    font-size: 0;
    background: #fff;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    box-sizing: border-box;
    z-index: 100;
}
.gnb1 .control_menu.active {
    background: #fff;
}
.gnb1 .control_menu span {
    display: block;
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    background-color: #222;
    border-radius: 2px;
    box-sizing: border-box;
    z-index: 100;
}
.gnb1 .control_menu span:nth-of-type(1) {
    top: 20px;
    -webkit-animation: gnb-menu-bar07-01 0.75s forwards;
    animation: gnb-menu-bar07-01 0.75s forwards;
}
.gnb1 .control_menu span:nth-of-type(2) {
    top: 26px;
    transition: all 0.25s 0.25s;
    opacity: 1;
}
.gnb1 .control_menu span:nth-of-type(3) {
    top: 32px;
    -webkit-animation: gnb-menu-bar07-02 0.75s forwards;
    animation: gnb-menu-bar07-02 0.75s forwards;
}
.gnb1 .control_menu.active span:nth-of-type(1) {
    -webkit-animation: gnb-active-menu-bar07-01 0.75s forwards;
    animation: gnb-active-menu-bar07-01 0.75s forwards;
}
.gnb1 .control_menu.active span:nth-of-type(2) {
    opacity: 0;
}
.gnb1 .control_menu.active span:nth-of-type(3) {
    -webkit-animation: gnb-active-menu-bar07-02 0.75s forwards;
    animation: gnb-active-menu-bar07-02 0.75s forwards;
}
@-webkit-keyframes gnb-menu-bar07-01 {
    0% {
        -webkit-transform: translateY(6px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}
@keyframes gnb-menu-bar07-01 {
    0% {
        transform: translateY(6px) rotate(45deg);
    }
    50% {
        transform: translateY(6px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}
@-webkit-keyframes gnb-menu-bar07-02 {
    0% {
        -webkit-transform: translateY(-6px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}
@keyframes gnb-menu-bar07-02 {
    0% {
        transform: translateY(-6px) rotate(-45deg);
    }
    50% {
        transform: translateY(-6px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}
@-webkit-keyframes gnb-active-menu-bar07-01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(6px) rotate(45deg);
    }
}
@keyframes gnb-active-menu-bar07-01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(6px) rotate(0);
    }
    100% {
        transform: translateY(6px) rotate(45deg);
    }
}
@-webkit-keyframes gnb-active-menu-bar07-02 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-6px) rotate(-45deg);
    }
}
@keyframes gnb-active-menu-bar07-02 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-6px) rotate(0);
    }
    100% {
        transform: translateY(-6px) rotate(-45deg);
    }
}
.gnb1 .menu_all {
    position: absolute;
    height: 500px;
    top: 55px;
    left: 0px;
    right: 0;
    display: flex;
    align-items: stretch;
    padding: 32px 40px;
    list-style: none;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease;
}
.gnb1 .control_menu.active + .menu_all {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.gnb1 .menu_all.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.gnb1 .menu_all > li {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    padding: 0 24px;
    border-left: 1px solid #e5e5e5;
    list-style: none;
}
.gnb1 .menu_all > li:first-child {
    padding-left: 0;
    border-left: 0;
}
.gnb1 .menu_all > li:last-child {
    padding-right: 0;
}
.gnb1 .menu_all > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 12px 0;
    background-color: #007af5;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}
.gnb1 .menu_all > li > .sublist {
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 24px 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.gnb1 .menu_all > li > .sublist ul {
}
.gnb1 .menu_all > li ul li {
    list-style: none;
}
.gnb1 .menu_all > li ul li a {
    display: flex;
    align-items: center;
    margin: 0;
    border-bottom: 0;
    color: #222;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
}
.gnb1 .menu_all > li ul li:last-child a {
    border: 0;
}
.gnb1 .menu_all > li ul li a::before {
    content: none;
}
.gnb1 .menu_all > li ul li a:hover,
.gnb1 .menu_all > li ul li a:focus {
    color: #00529b;
}

.gnb_quick_menu {
    position: relative;
    flex: 0 0 180px;
    width: 180px;
    background-color: #0056a3;
    z-index: 2;
    height: 56px;
    overflow: hidden;
}
#headerHg .gnb.is-main .gnb_quick_menu,
#headerHg .gnb.is-sub.is-open .gnb_quick_menu {
    height: 495px;
}
.gnb_quick_menu dl {
    width: 100%;
}
.gnb_quick_menu dt {
    height: 56px;
    padding: 0 20px;
    line-height: 56px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.gnb_quick_menu dd {
    display: block;
    height: calc((496px - 56px) / 6);
    padding: 0 20px;
    background-color: #002b52;
    text-align: center;
    border-bottom: 1px solid #004b8f;
}
.gnb_quick_menu dd:last-child {
    border: 0;
}
.gnb_quick_menu dd a {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    word-break: keep-all;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.gnb_quick_menu dd a:hover,
.gnb_quick_menu dd a:focus {
    color: #fff;
}

.gnb2 {
    position: relative;
    left: 35px;
    display: flex;
    flex: 0 1 804px;
    width: 100%;
    max-width: 804px;
    justify-content: center;
    align-items: start;
    min-width: 0;
    color: #111;
}
.gnb2_wrap {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
}
.gnb2::before {
    display: none;
}
.gnb2 a.hover {
    color: #007af5;
}

.gnb2 > li {
    flex: 0 1 188px;
    width: 188px;
    max-width: 188px;
    min-width: 0;
}
.gnb2 > li:nth-child(3) {
    flex: 0 1 240px;
    width: 240px;
    max-width: 240px;
}
.gnb2 > li > dl {
    position: relative;
    width: 100%;
    min-width: 0;
}
#headerHg .gnb.is-open .gnb2 > li > dl {
    min-height: 495px;
}
#headerHg .gnb.is-open .gnb2 > li:nth-child(2) > dl::before,
#headerHg .gnb.is-open .gnb2 > li:nth-child(2) > dl::after,
#headerHg .gnb.is-open .gnb2 > li:nth-child(3) > dl::after {
    content: "";
    position: absolute;
    top: 55px;
    bottom: 0;
    width: 1px;
    background-color: #e5e5e5;
    pointer-events: none;
}
#headerHg .gnb.is-open .gnb2 > li:nth-child(2) > dl::before {
    left: 0;
}
#headerHg .gnb.is-open .gnb2 > li:nth-child(2) > dl::after,
#headerHg .gnb.is-open .gnb2 > li:nth-child(3) > dl::after {
    right: 0;
}
.gnb2 > li dt {
    height: 56px;
    line-height: 56px;
    padding: 0 24px;
    font-size: 20px;
    font-weight: 500;
    color: #111;
    text-align: left;
}
.gnb2 > li dt a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 56px;
    text-align: left;
}
#headerHg .gnb .gnb2 > li dt a {
    color: inherit;
    text-decoration: none;
}
#headerHg .gnb .gnb2 > li:hover dt a,
#headerHg .gnb .gnb2 > li:focus-within dt a,
#headerHg .gnb .gnb2 > li dt a:hover,
#headerHg .gnb .gnb2 > li dt a:focus {
    color: #00529b;
    text-decoration: none;
}
.gnb2 > li dd {
    display: none;
    min-height: 50px;
    padding: 0 24px;
    background-color: transparent;
    font-weight: 400;
    color: #222;
}
.gnb2 > li dd a {
    display: flex;
    align-items: center;
    min-height: 50px;
    color: inherit;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.35;
    word-break: keep-all;
}
#headerHg .gnb .gnb2 > li dd a {
    color: inherit;
    text-decoration: none;
}
#headerHg .gnb .gnb2 > li dd a:hover,
#headerHg .gnb .gnb2 > li dd a:focus {
    color: #00529b;
    text-decoration: none;
}
.gnb2 > li dd ul li {
    margin-left: 10px;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 100;
}
.gnb2 > li dd ul li::before {
    content: "·";
    display: inline;
    color: #222;
}
.gnb2 > li dd ul li a {
    display: inline-block;
}

.gnb2 .sub_smenu {
    position: relative;
}
.gnb2 .sub_smenu ul {
    display: none;
    color: #222;
}
.gnb2 .sub_smenu > a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 20px;
    margin-left: 8px;
    width: 12px;
    height: 10px;
    background: url("/img/menu_arrow.png") no-repeat;
}
.gnb2 .sub_smenu:hover > a:after {
    transform: rotate(180deg) translateY(50%);
    animation: all ease 0.5s;
}

/* 스프래쉬 화면 */
.load_main {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    background: #3f75d5;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    visibility: visible;
}
.load_main > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.load_main > div img {
    height: 100vh;
}
/* 플로팅메뉴 */
/* float_menu1(오른쪽 SNS영역), float_menu2(왼쪽 서포터즈 영역) */
.float_menu {
    position: fixed;
    top: 330px;
    z-index: 10;
    width: 160px;
    padding: 12px 0;
    text-align: center;
    background-color: #001629cc;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.24);
    font-family: "NexonGothic";
    font-weight: 900;
    font-size: 24px;
    color: #111;
}
.float_menu .pc_float {
    display: inline-block;
    margin-top: 10px;
}
.float_menu .mobile_float {
    display: none;
}
.float_menu1 {
    width: 80px;
    right: 24px;
    margin-top: 44px;
}

.float_menu1 a,
.float_menu2 a {
    display: block;
    line-height: 0;
    text-align: center;
}

.float_menu1 a img {
    margin: 0 auto;
    display: block;
    width: 56px;
}

.float_menu1 a span.float_text {
    color: white;
    font-size: 12px;
    line-height: 1.2;
}

.float_menu2 {
    left: 24px;
    margin-top: 44px;
}

.float_menu2 a img {
    display: block;
    width: 160px;
    height: 40px;
}
.float_menu2 .pc_float {
    display: inline-block;
}
.float_menu2 .mobile_float {
    display: none;
}

/* float_menu before, after */
.float_menu1::before,
.float_menu2::before {
    text-align: center;
    position: absolute;
    top: -44px;
    width: 100%;
}
.float_menu1::before {
    content: "SNS";
}
.float_menu2::before {
    content: "Supporters";
}

.float_menu1 a::after,
.float_menu2 a::after {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    margin: 8px auto;
    background-color: #ffffff33;
}

.float_menu1 a:last-child::after,
.float_menu2 a:last-child::after {
    display: none;
}

@keyframes bounce {
    0%,
    100% {
        top: -20px;
        animation-timing-function: ease-in;
    }
    50% {
        top: 15px;
        animation-timing-function: ease-out;
    }
}
/* 메인 슬라이드 */
.main_visual_area {
    position: relative;
    width: 100%;
    height: 440px;
    background-color: #071e69;
}
.main_slide_box,
.main_slide_box .slick-list,
.main_slide_box .slick-track,
.main_slide_box .slick-slide {
    height: 100%;
}
.main_visual_area .wrap_inner {
    position: relative;
}
.main-slide {
    position: relative;
    width: 100%;
    height: 100%;
    float: none;
    left: auto;
    transform: none;
}
.main-slide > a {
    display: block;
    height: 100%;
}
.main-slide .wrap_inner.slindconbox {
    height: 100%;
}

.main-slide--primary {
    background: #4791ff;
}
.main-slide--primary .main_img_box {
    background-image: url(/img/main_banner_1_2026_1.png);
}

.slick-slide .main_text_box .sp_logo {
    overflow: hidden;
    width: 290px;
    margin: 10px;
    background-repeat: no-repeat;
}
.slick-slide .main_text_box .sp_logo li {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}
.slick-slide .main_text_box .sp_logo li img {
    border-radius: 5px;
    background: white;
}

@media (max-width: 500px) {
    /*.slick-slide:nth-child(4) .main-slide .main_img_box {*/
    /*    background-image: url(/img/main_banner_1_1_2025.jpg); background-position: unset;*/
    /*}*/
}
/*
.slick-slide:nth-child(4) .main-slide{background:#0a59bb;}
.slick-slide:nth-child(4) .main_text_box p{color:#ffd778}
.slick-slide:nth-child(4) .main-slide .main_img_box{background-image:url('/img/main_img4.png');}
*/

.main-slide .main_text_box {
    float: left;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    height: 440px;
    padding-top: 16px;
    word-break: keep-all;
}

.main-slide .main_text_box .font_size_30 {
    font-size: 30px !important;
}
.main-slide .main_text_box .font_size_23 {
    font-size: 23px !important;
}
.main-slide .main_text_box p:nth-child(1) {
    margin-left: 14px;
    font-size: 29px;
    line-height: 1.3;
}
.main-slide .main_text_box p:nth-child(2) {
    margin-left: 13px;
    margin-top: 5px;
    font-size: 1.125rem;
}
.main-slide .main_img_box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 440px;
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: auto 100%;
    pointer-events: none;
}
.main_inner {
    position: relative;
    height: 0;
    max-width: 1200px;
    margin: auto;
}
.main_inner > button {
    position: absolute;
    bottom: 0;
}
.main_visual_area .wrap_inner.slidebtn_box {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    height: 0;
    transform: translateX(-50%);
    pointer-events: none;
}
.main_slider_controller {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: auto;
}
.main_slider_pager {
    display: flex;
    align-items: center;
    gap: 7.83px;
    height: 32px;
    padding: 0 10px;
    border-radius: 20px;
    background: rgba(3, 21, 85, 0.92);
    box-shadow: 0 10px 24px rgba(4, 18, 73, 0.22);
}
.main_slider_nav {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 32px;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: transparent;
    appearance: none;
}
.main_slider_nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 14px;
    background: url("/img/arrow_26.03.png") no-repeat 50% 50% / contain;
    transform: translate(-50%, -50%);
}
.main_slider_nav.next::before {
    transform: translate(-50%, -50%) rotate(180deg);
}
.main_slider_status {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    white-space: nowrap;
}
.main_slider_status span {
    color: #fff !important;
}
.main_slider_divider {
    opacity: 0.72;
}
.main_slider_toggle {
    position: relative;
    display: inline-block;
    flex: 0 0 32px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
    background: rgba(3, 21, 85, 0.92);
    box-shadow: 0 10px 24px rgba(4, 18, 73, 0.22);
    appearance: none;
    overflow: hidden;
    font-size: 0;
}
.main_slider_toggle .pause_bar {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 4px;
    height: 12px;
    margin-top: -6px;
    background-color: #fff;
    transition: opacity 0.2s ease;
}
.main_slider_toggle .pause_bar:first-of-type {
    margin-left: -5px;
}
.main_slider_toggle .pause_bar:nth-of-type(2) {
    margin-left: 1px;
}
.main_slider_toggle .play_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    margin-top: -6px;
    margin-left: -2px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}
.main_slider_toggle.is-paused .pause_bar {
    opacity: 0;
    visibility: hidden;
}
.main_slider_toggle.is-paused .play_icon {
    opacity: 1;
    visibility: visible;
}
.main_slide_box .slick-prev,
.main_slide_box .slick-next,
.main_slide_box .slick-dots {
    display: none !important;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.tablet_quick_menu {
    display: none;
}
.tablet_quick_menu ul {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    background: #002b52;
}
.tablet_quick_menu li {
    min-height: 74px;
    border-right: 1px solid #004b8f;
    background: #002b52;
}
.tablet_quick_menu li:last-child {
    border-right: 0;
}
.tablet_quick_menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 12px 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    word-break: keep-all;
}
.tablet_quick_menu a:hover,
.tablet_quick_menu a:focus {
    background: #0a4a88;
}
.main-nav-box {
    position: relative;
    top: -400px;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 1200px;
}
.main-nav {
    position: absolute;
    top: calc(-400px / 7);
    right: 0;
    float: right;
    width: 238px;
    background-color: #021a4d;
}
/* .main-nav li {
    height: calc(400px / 7);
    text-align: center;
    line-height: 56px;
    color: #fff;
    border-left: 1px solid #024095;
    border-right: 1px solid #024095;
}
.main-nav li.point {
    background-color: #b70000;
    color: #fff;
    overflow: hidden;
}
.main-nav li a {
    padding: 0 20px;
    border-bottom: 1px solid #354871;
    border-top: 0;
    border-image: linear-gradient(90deg, rgba(2, 26, 77, 0) 15%, #354871 16%, #354871 84%, rgba(2, 26, 77, 0) 85%);
    border-image-slice: 1;
    box-sizing: border-box;
    word-break: keep-all;
}
.main-nav li a:hover,
.main-nav li a:focus {
    color: #fff;
    text-shadow: 0px 0px 10px #fff;
}
.main-nav li.point a {
    position: relative;
    border: 0;
}
.main-nav li.point a:hover,
.main-nav li.point a:focus {
    color: #fff;
    text-shadow: 0px 0px 10px #fff;
}
.main-nav li.point a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: #ffb54c;
    transform: translate(44px, -66px) rotate(38deg);
}
.main-nav li.point a::after {
    content: "GO";
    display: block;
    position: absolute;
    top: 0;
    right: 6px;
    height: 20px;
    line-height: 30px;
    color: #021a4d;
}
.main-nav li:first-child {
    background-color: #0067c2;
    border: 0;
} */

/* 서포터즈 */
.support_area {
    padding: 20px 0;
}

.support_m_area {
    padding: 0px 0;
    display: none;
} /** 20210402 - 오픈 */

/* 스포??서비스 */
.sports_service_area {
    position: relative;
    width: 100%;
    min-height: 360px;
    padding: 24px 0 48px;
}
.sports_service_top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 282px;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 24px;
}
.main_board_box {
    min-width: 0;
}
.main_notice {
    padding: 24px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
}
.main_notice_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}
.main_board_box h2 {
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0;
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
    color: #222;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}
.main_notice h2::before,
.main_news h2::before {
    content: none;
}
.notice1_slide_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.notice1_slide_area {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}
.main_board_box .boardtext {
    display: block;
    width: auto;
    margin: 0;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.notice1_slide_area > span {
    display: block;
    width: auto;
    margin: 0;
    color: #8d8d8d;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    transform: none;
}
.main_board_box .morebtn_s {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 32px;
    padding: 0;
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}
.main_board_box .morebtn_s:not(.section_action)::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    color: #111;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 1px;
}
.divilink {
    position: relative;
    display: flex;
    align-items: stretch;
    width: auto;
    width: 282px;
    flex: 0 0 282px;
    min-width: 282px;
    max-width: 282px;
    min-height: 0;
    height: 100%;
    margin: 0;
    float: none;
    transform: none;
    overflow: hidden;
    border-radius: 16px;
    background: #050505 url("/img/division_banner_pc.png") no-repeat 50% 50% / cover;
}
.divilink::before {
    content: none;
}
.divilink a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
    padding: 24px 20px;
    gap: 16px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0) 100%);
    text-decoration: none;
}
.divilink a > * {
    position: relative;
    color: #fff;
}
.divilink a p {
    width: 100%;
    margin: 0;
    font-family: "NEXON Football Gothic B", "Pretendard Variable", "Noto Sans KR", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.divilink a p::after {
    content: none;
}
.divilink a span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #ff334f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.divilink a span::after {
    content: "";
    width: 7px;
    height: 11px;
    background: url("/img/arrow_26.03.png") no-repeat 50% 50% / contain;
    transform: rotate(180deg);
}
.sports_service_links {
    width: 100%;
}
.setvice_list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    align-items: stretch;
    list-style: none;
}
.setvice_list.clearfix::before,
.setvice_list.clearfix::after,
.support_box.clearfix::before,
.support_box.clearfix::after,
.relation_box.clearfix::before,
.relation_box.clearfix::after {
    display: none;
    content: none;
}
.setvice_list li {
    position: relative;
    float: none !important;
    width: 100% !important;
    max-width: none;
    margin: 0;
    padding: 0 12px;
    text-align: center;
    font-weight: 700;
}
.setvice_list li.service_item--divider {
    border-left: 1px solid #e5e5e5;
}
.setvice_list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    color: #222;
    text-decoration: none;
}
.setvice_list li a .service_icon {
    position: relative;
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(17, 39, 87, 0.18);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
    background-size: 160px 480px;
}
.setvice_list li a .service_icon::before,
.setvice_list li a .service_icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/img/icon_srevice.png");
    background-repeat: no-repeat;
    background-size: inherit;
    transition:
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.setvice_list li a .service_icon::before {
    background-position: var(--icon-rest-x) var(--icon-rest-y);
    transform: translateY(0);
    opacity: 1;
}
.setvice_list li a .service_icon::after {
    background-position: var(--icon-hover-x) var(--icon-hover-y);
    transform: translateY(100%);
    opacity: 0;
}
.setvice_list li:nth-of-type(1) .service_icon {
    --icon-rest-x: 0;
    --icon-rest-y: -160px;
    --icon-hover-x: -80px;
    --icon-hover-y: -160px;
    background-color: #2792f2;
}
.setvice_list li:nth-of-type(1) a:hover .service_icon,
.setvice_list li:nth-of-type(1) a:focus-visible .service_icon {
    background-color: #095da8;
}
.setvice_list li:nth-of-type(2) .service_icon {
    --icon-rest-x: 0;
    --icon-rest-y: 0;
    --icon-hover-x: -80px;
    --icon-hover-y: 0;
    background-color: #2c8eb2;
}
.setvice_list li:nth-of-type(2) a:hover .service_icon,
.setvice_list li:nth-of-type(2) a:focus-visible .service_icon {
    background-color: #035978;
}
.setvice_list li:nth-of-type(3) .service_icon {
    --icon-rest-x: 0;
    --icon-rest-y: -320px;
    --icon-hover-x: -80px;
    --icon-hover-y: -320px;
    background-color: #8384e7;
}
.setvice_list li:nth-of-type(3) a:hover .service_icon,
.setvice_list li:nth-of-type(3) a:focus-visible .service_icon {
    background-color: #443fcf;
}
.setvice_list li:nth-of-type(4) .service_icon {
    --icon-rest-x: 0;
    --icon-rest-y: -240px;
    --icon-hover-x: -80px;
    --icon-hover-y: -240px;
    background-color: #ff6666;
}
.setvice_list li:nth-of-type(4) a:hover .service_icon,
.setvice_list li:nth-of-type(4) a:focus-visible .service_icon {
    background-color: #d73232;
}
.setvice_list li:nth-of-type(5) .service_icon {
    --icon-rest-x: 0;
    --icon-rest-y: -80px;
    --icon-hover-x: -80px;
    --icon-hover-y: -80px;
    background-color: #ff925b;
}
.setvice_list li:nth-of-type(5) a:hover .service_icon,
.setvice_list li:nth-of-type(5) a:focus-visible .service_icon {
    background-color: #e25108;
}
.setvice_list li:nth-of-type(6) .service_icon {
    --icon-rest-x: 0;
    --icon-rest-y: -400px;
    --icon-hover-x: -80px;
    --icon-hover-y: -400px;
    background-color: #ffb54c;
}
.setvice_list li:nth-of-type(6) a:hover .service_icon,
.setvice_list li:nth-of-type(6) a:focus-visible .service_icon {
    background-color: #e38a0b;
}
.setvice_list li a:hover .service_icon::before,
.setvice_list li a:focus-visible .service_icon::before {
    transform: translateY(-100%);
    opacity: 0;
}
.setvice_list li a:hover .service_icon::after,
.setvice_list li a:focus-visible .service_icon::after {
    transform: translateY(0);
    opacity: 1;
}
.setvice_list li a > p {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    color: #222;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    word-break: keep-all;
}

/* .main_notice{border-bottom:1px solid #ddd;} */

/* 생생영상.포토앨범 */
.video_area {
    width: 100%;
    min-height: 450px;
    margin-bottom: 40px;
    overflow: hidden;
}
.photo_gallery_area {
    width: 100%;
    min-height: 460px;
    margin-bottom: 60px;
    overflow: hidden;
}
.video_area .wrap_inner {
    position: relative;
    padding: 40px 5% 66px;
    background-color: #f6f7ff;
}
.photo_gallery_area .wrap_inner {
    position: relative;
    padding: 40px 5% 66px;
    background-color: #f0faff;
}
.video_area .wrap_inner::before,
.video_area .wrap_inner::after,
.photo_gallery_area .wrap_inner::before,
.photo_gallery_area .wrap_inner::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
}
.video_area .wrap_inner::before {
    left: -245px;
    width: 530px;
    background-color: #f6f7ff;
    border-radius: 550px;
}
.video_area .wrap_inner::after {
    right: -100vw;
    width: 100vw;
    background-color: #f6f7ff;
}
.photo_gallery_area .wrap_inner::before {
    right: -245px;
    width: 530px;
    background-color: #f0faff;
    border-radius: 550px;
}
.photo_gallery_area .wrap_inner::after {
    left: -100vw;
    width: 100vw;
    background-color: #f0faff;
}

.video_slide_box,
.photo_slide_box {
    padding: 20px;
}
.video_slide p,
.photo_slide p {
    margin: 15px 12px 0;
    color: #222;
    font-weight: 900;
    font-size: 16px;
    width: auto;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.video_slide span {
    margin: 15px 12px 0;
    color: #007ae6;
    font-weight: 900;
    font-size: 1rem;
}

.video_slide > div,
.video_slide .video_img {
    position: relative;
    height: 190px;
    margin: 0 12px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    background: no-repeat 0% 0% / cover;
}
.video_slide > div {
    width: auto;
    height: 100%;
}
.video_slide .video_img img {
    width: 100%;
    height: 100%;
}
.photo_slide > a > div {
    position: relative;
    height: 218px;
    margin: 0 12px;
    box-sizing: border-box;
    border-radius: 10px;
    background: no-repeat 0% 0% / cover;
}

.video_slide > div,
.video_slide .video_img::after {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: url("/img/playbtn.png") no-repeat 50% 50% / 100% auto;
}
.video_slide > div,
.video_slide .video_img span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    padding: 0 6px;
    color: #fff;
    border-radius: 6px;
    font-weight: 100;
    background-color: rgba(0, 0, 0, 0.6);
}
.slick-dots {
    bottom: -40px;
}
.slick-dots li {
    width: 50px;
    height: 4px;
}
.slick-dots li button {
    width: 100%;
    height: 4px;
    padding: 0;
    border-radius: 4px;
    background-color: #ccccd3;
}
.slick-dots li.slick-active button {
    background-color: #222;
}
.slick-dots li button:before {
    display: none;
}

/* 서포터즈 */
.support_site {
    margin-bottom: 40px;
}
.support_site ul {
    margin: 20px;
    padding: 20px 10px 0;
    border-radius: 10px;
    text-align: center;
}
.support_site ul li {
    float: left;
    width: 249px;
    margin-bottom: 20px;
    margin-left: 3%;
}

.support_site ul li:nth-of-type(4) img {
    margin-top: 1px;
}
.support_site ul li:nth-of-type(5) img {
    margin-top: -5px;
}
.support_site ul li:nth-of-type(6) img {
    margin-top: 20px;
}
.support_site ul li:nth-of-type(7) img {
    margin-top: 20px;
}
.support_site ul li:nth-of-type(8) img {
    margin-top: 20px;
}

/*
.support_site ul li:nth-of-type(n+4) {width: 250px;}
.support_site ul li:nth-of-type(4) {clear: both;}

.support_site ul li:nth-of-type(1) img {max-width: 300px; width: 100%;}
.support_site ul li:nth-of-type(2) img {max-width: 290px; width: 100%;}
.support_site ul li:nth-of-type(4) img {max-width: 300px; width: 100%; margin-top: 30px;}
.support_site ul li:nth-of-type(5) img {max-width: 200px; width: 100%; margin-top: 20px;}
.support_site ul li:nth-of-type(6) img {max-width: 100px; width: 100%; margin-top: 30px;}
.support_site ul li:nth-of-type(7) img {margin-top: 30px;}
*/

.support_site ul li img {
    max-width: 100%;
    margin: auto;
}
.support_site ul li img.dong {
    display: inline-block;
    vertical-align: middle;
    margin-top: -15px;
    width: 70%;
    margin-left: 50px;
}
/* 연관 사이트 */
.relation_site {
    position: relative;
    padding: 80px 0;
    background-color: #f5f5f5;
}

.relation_box {
    position: relative;
    right: -200px;
    opacity: 0;
}
.relation_box li {
    float: left;
    width: 20%;
    margin-left: 4%;
    padding: 40px 0;
    text-align: center;
}
.relation_box li img {
    width: 100%;
    max-width: 180px;
    margin: auto;
}

/* 팝업창 */
[class^="pop_areabg"] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
[class^="pop_area_"] {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    width: 60%;
    height: 90%;
    background-color: #00529c;
}
[class^="pop_area_"] .pop_tit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    text-align: center;
}
[class^="pop_area_"] .pop_con {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 90px);
    margin: 20px;
    padding: 0 20px;
    background-color: #fff;
    overflow-y: scroll;
}
[class^="pop_area_"] .pop_con .mainmark {
    padding: 30px 0 10px;
    border-bottom: 1px solid #dfdfdf;
}
[class^="pop_area_"] .pop_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #dfdfdf;
}
[class^="pop_area_"] .pop_footer .check_box {
    float: left;
}
[class^="pop_area_"] .close_btn {
    float: right;
    cursor: pointer;
}
[class^="pop_area_"] .close_btn.closeTop {
    position: absolute;
    right: -60px;
    width: 60px;
    height: 60px;
    background: url("/img/close_btn.png") rgba(0, 0, 0, 0.6) no-repeat 50% / 40% 40%;
}
[class^="pop_area_"] .close_btn.closeTop a {
    display: block;
    width: 100%;
    height: 100%;
}

[class^="pop_area_"] .pop_table {
    margin: 10px 0;
    text-align: center;
}
.board2 table > thead:first-child > tr:first-child > th,
.board2 table > colgroup + thead > tr:first-child > th {
    border: 1px solid #aaa;
    border-top: 2px solid #00529c;
    padding: 10px;
    background-color: #f5f5f5;
    text-align: center;
}
.board2 table > tbody > tr > td {
    padding: 10px;
    border: 1px solid #aaa;
}
.board2 table > tbody > tr:last-child > td {
    border-bottom: 1px solid #888;
}

.pop_areabg2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.pop_area2 {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    width: 60%;
    height: 90%;
    background-color: #00529c;
}
.pop_area2 .pop_tit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    text-align: center;
}
.pop_area2 .pop_con {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 90px);
    margin: 20px;
    padding: 0 20px;
    background-color: #fff;
    overflow-y: scroll;
}
.pop_area2 .pop_con .mainmark {
    padding: 30px 0 10px;
    border-bottom: 1px solid #dfdfdf;
}
.pop_area2 .pop_footer2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #dfdfdf;
}
.pop_area2 .pop_footer2 .check_box {
    float: left;
}
.pop_area2 .close_btn2 {
    float: right;
    cursor: pointer;
}
.pop_area2 .close_btn2.closeTop {
    position: absolute;
    right: -60px;
    width: 60px;
    height: 60px;
    background: url("/img/close_btn.png") rgba(0, 0, 0, 0.6) no-repeat 50% / 40% 40%;
}
.pop_area2 .close_btn2.closeTop a {
    display: block;
    width: 100%;
    height: 100%;
}
.pop_area2 .pop_table {
    margin: 10px 0;
    text-align: center;
}
.board3 table > thead:first-child > tr:first-child > th,
.board3 table > colgroup + thead > tr:first-child > th {
    border: 1px solid #aaa;
    border-top: 2px solid #00529c;
    padding: 10px;
    background-color: #f5f5f5;
    text-align: center;
}
.board3 table > tbody > tr > td {
    padding: 10px;
    border: 1px solid #aaa;
}
.board3 table > tbody > tr:last-child > td {
    border-bottom: 1px solid #888;
}

.pop_areabg3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.pop_area3 {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    width: 60%;
    height: 90%;
    background-color: #00529c;
}
.pop_area3 .pop_tit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    text-align: center;
}
.pop_area3 .pop_con {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 90px);
    margin: 20px;
    padding: 0 20px;
    background-color: #fff;
    overflow-y: scroll;
}
.pop_area3 .pop_con .mainmark {
    padding: 30px 0 10px;
    border-bottom: 1px solid #dfdfdf;
}
.pop_area3 .pop_footer3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #dfdfdf;
}
.pop_area3 .pop_footer3 .check_box {
    float: left;
}
.pop_area3 .close_btn3 {
    float: right;
    cursor: pointer;
}
.pop_area3 .close_btn3.closeTop {
    position: absolute;
    right: -60px;
    width: 60px;
    height: 60px;
    background: url("/img/close_btn.png") rgba(0, 0, 0, 0.6) no-repeat 50% / 40% 40%;
}
.pop_area3 .close_btn3.closeTop a {
    display: block;
    width: 100%;
    height: 100%;
}
.pop_area3 .pop_table {
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

.pop_areabg4 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.pop_area4 {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    width: 75%;
    height: 90%;
    background-color: #00529c;
    display: flex;
    justify-content: space-between;
}
.pop_area4 .pop_tit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    text-align: center;
}
.pop_area4 .pop_con {
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 90px);
    margin: 20px;
    padding: 0 20px;
    background-color: #fff;
    overflow-y: scroll;
    width: 100%;
}
.pop_area4 .pop_con .mainmark {
    padding: 30px 0 10px;
    border-bottom: 1px solid #dfdfdf;
}
.pop_area4 .pop_footer4 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #dfdfdf;
}
.pop_area4 .pop_footer4 .check_box {
    float: left;
}
.pop_area4 .close_btn4 {
    float: right;
    cursor: pointer;
}
.pop_area4 .close_btn4.closeTop {
    position: absolute;
    right: -60px;
    width: 60px;
    height: 60px;
    background: url("/img/close_btn.png") rgba(0, 0, 0, 0.6) no-repeat 50% / 40% 40%;
}
.pop_area4 .close_btn4.closeTop a {
    display: block;
    width: 100%;
    height: 100%;
}
.pop_area4 .pop_table {
    width: 100%;
    margin: 10px 0;
    text-align: center;
}
.pop_area4 .main_post_div {
    width: 32%;
    margin: 20px;
}
.board4 table {
    width: 100%;
    border-top: 2px solid #00529c;
}
.board4 table > tbody > tr > th {
    padding: 10px;
    border: 1px solid #aaa;
    background-color: #f5f5f5;
    text-align: center;
}
.board4 table > tbody > tr > td {
    padding: 10px;
    border: 1px solid #aaa;
}
.board4 table > tbody > tr:last-child > td {
    border-bottom: 1px solid #888;
}
.board4 .mo_tit {
    position: relative;
    padding-left: 15px;
    font-weight: 700;
    font-size: 18px;
    color: #222;
}
.board4 .mo_tit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background-color: #222;
    border-radius: 100%;
}

.modal2022 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.modal2022 .info {
    overflow: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1300px;
    width: 92%;
    max-height: 850px;
    height: 92%;
}
.modal2022 .info .body {
}
.modal2022 .info .body .img_area {
}
.modal2022 .info .body .img_area img {
    max-width: 100%;
}
.modal2022 .info .body .text_area {
    background: white;
}
.modal2022 .info .body .text_area span {
    margin-left: 15px;
}
.modal2022 .info .foot {
    overflow: hidden;
    padding: 7px 20px;
    background-color: #dfdfdf;
}
.modal2022 .info .foot .check_box {
    float: left;
    cursor: pointer;
}
.modal2022 .info .foot .check_box label {
    font-size: 15px;
}
.modal2022 .info .foot .close_btn3 {
    float: right;
    cursor: pointer;
}
.modal2022 .info .foot .close_btn3 a {
    font-size: 15px;
}
.modal2022 .close_btn3 {
    float: right;
    cursor: pointer;
}
.modal2022 .close_btn3.closeTop {
    position: absolute;
    top: 60px;
    right: 250px;
    width: 60px;
    height: 60px;
    background: url(/img/close_btn.png) rgba(255 255 255 / 60%) no-repeat 50% / 40% 40%;
}
.modal2022 .close_btn3.closeTop a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 푸터 */
#footer {
    background-color: #464646;
}
#footer p,
#footer address {
    color: #aaa;
    font-size: 0.9rem;
}
.foot_inner {
    display: flex;
    flex-wrap: nowrap;
    padding: 30px;
    align-items: center;
}
.foot_inner .footinfo {
    flex-grow: 1;
    margin-left: 80px;
}
.footinfo p {
    margin-top: 14px;
}
.footbtn a {
    padding: 10px 16px;
    background-color: #595959;
    color: #fff;
    font-size: 0.9rem;
}

/* all */
.morebtn {
    position: absolute;
    top: 0;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 3px;
    line-height: 1;
    background: url("/img/icon_more.png") no-repeat #fff 0 0;
}
.slick-prev,
.slick-next {
    top: 45%;
    width: 32px;
    height: 64px;
}
.slick-prev::before,
.slick-next::before {
    display: block;
    content: " ";
    width: 32px;
    height: 64px;
    background: url("/img/arrow_l.png") no-repeat 0 0;
}
.slick-prev {
    left: -60px;
}
.slick-next {
    right: -60px;
    transform: translateY(-50%) rotate(180deg);
}
.mainmark {
    margin: 14px 0;
    font-weight: 700;
    padding-top: 40px;
}
.mainmark::before {
    content: " ";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    border: 3px solid #ed1b2e;
    box-sizing: border-box;
    border-radius: 14px;
}
.submark {
    padding-top: 0;
    text-transform: uppercase;
}
.submark::before {
    content: " ";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    margin-bottom: 3px;
    border: 0px;
    border-radius: 0;
    background: #222;
}

/* all */
.bg {
    width: 100vw;
    height: 100%;
    overflow: hidden;
    min-height: 130px;
}
.bg > div {
    position: absolute;
}
.bg > div:after {
    content: " ";
    display: block;
    position: absolute;
    background: no-repeat;
}

.bg .bg01 {
    z-index: 1;
    top: 700px;
    right: -150px;
    width: 354px;
    height: 347px;
    transform: translateX(50%);
    background: url("/img/bg01.png") no-repeat;
    animation: rotate_re 13s ease infinite;
    transform-origin: 50% 50%;
}
.bg .bg02 {
    top: 1280px;
    left: -40px;
    width: 256px;
    height: 256px;
    background: url("/img/bg02.png") no-repeat;
    animation: rotate 15s linear infinite;
}
.bg .bg03 {
    top: 1950px;
    right: 3%;
    width: 256px;
    height: 256px;
    background: url("/img/bg03.png") no-repeat;
    animation: scale 10s ease infinite;
}
.bg .bg01:after {
    width: 95px;
    height: 91px;
    background-image: url("/img/bg01_s.png");
}
.bg .bg02:after {
    width: 81px;
    height: 78px;
    background-image: url("/img/bg02_s.png");
}
.bg .bg03:after {
    width: 51px;
    height: 51px;
    background-image: url("/img/bg03_s.png");
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate_re {
    0%,
    100% {
        transform: rotate(360deg);
    }
    50% {
        transform: rotate(0);
    }
}
@keyframes scale {
    0%,
    100% {
        transform: scale(1.2);
    }
    50% {
        transform: rotate(0);
    }
}

@media (max-width: 1600px) {
    .bg {
        display: none;
    }
}

@media (max-width: 1580px) {
    /* 플로팅메뉴 */
    .float_menu_wrap {
        position: fixed;
        top: auto;
        bottom: 16px;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    .float_wrap_inner {
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    .float_menu {
        position: relative;
        display: flex;
        margin: 0;
        padding: 12px 24px;
        top: 0;
        width: fit-content;
        flex-shrink: 0;
    }

    .float_menu::after {
    }
    .float_menu .pc_float {
        display: none;
    }
    .float_menu .mobile_float {
        display: block;
        width: 80%;
        max-width: 100%;
        margin-left: 30px;
    }

    .float_menu1 {
        right: 0;
    }
    .float_menu1 a {
        width: 40px;
        height: 40px;
        overflow: visible;
        margin-right: 16px;
    }
    .float_menu1 a:last-child {
        margin-right: 0;
    }
    .float_menu1 a img {
        display: inline-block;
        width: 100%;
        height: 90%;
        object-fit: cover;
        object-position: center;
        max-width: 120px;
    }
    .float_menu1 a span.float_text {
        font-size: 10px;
        margin-bottom: unset;
        position: relative;
        top: -3px;
    }
    .float_menu2 {
        left: 0;
    }
    .float_menu2 a {
        width: 130px; /* 뷰포트 너비의 12% */
        height: 40px;
        overflow: hidden;
    }
    .float_menu2 a img {
        display: inline-block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* float_menu1 before after */
    .float_menu::before {
        content: "";
        position: relative;
        width: fit-content;
        text-align: center;
        color: #fff;
        display: inline-block;
        border-right: 1px solid #ffffff66;
        margin-right: 16px;
        padding-right: 16px;
        height: 16px;
        top: 12px;
        line-height: 0.7;
        font-size: 20px;
    }
    .float_menu1::before {
        content: "SNS";
    }
    .float_menu2::before {
        content: "Supporters";
    }
    .float_menu a::after {
        display: none;
    }
    .main-slide {
        width: 100% !important;
    }
    .main-nav-box {
        top: 0;
    }
    .main-nav {
        position: relative;
        top: 0;
        float: none;
        width: 100%;
    }
    .main-nav li {
        float: left;
        width: calc(100% / 3);
    }
    .main-nav li:nth-of-type(1) {
        width: 100%;
    }
    .main-slide .main_img_box {
        transform: translateX(0px);
    }
    .divilink {
        width: 282px;
        flex: 0 0 282px;
        min-width: 282px;
        max-width: 282px;
        min-height: 0;
        height: 100%;
        margin: 0;
        transform: none;
        display: flex;
        line-height: normal;
        background-repeat: no-repeat;
        border-radius: 16px;
    }
    .divilink::before {
        content: none;
    }
    .divilink a {
        flex: 1 1 auto;
        min-height: 100%;
        padding: 24px 20px;
        gap: 16px;
    }
    .divilink a p {
        float: none;
        width: 100%;
        font-size: 20px;
    }
    .divilink a p::after {
        content: none;
    }
    .setvice_list {
        float: none;
        width: 100%;
        height: auto;
    }
    .support_site {
        display: block;
    }
    .support_area {
        display: none;
    }

    .support_m_area {
        display: block;
    } /** 20210402 - 오픈 */
    .support_m_area ul li {
        float: left;
        width: 50%;
        padding: 10px;
        text-align: center;
    } /** 20210402 - 오픈 */
    .support_m_area ul li img {
        width: 100%;
        max-width: 300px;
    } /** 20210402 - 오픈 */
}

@media (max-width: 1200px) {
    .logo_area {
        padding: 0 20px;
    }
    .float_menu::before {
        display: none;
        content: none;
    }
}

@media (max-width: 1000px) {
    .float_menu_wrap {
        left: 20px;
        right: 20px;
    }
    .float_menu2 {
        width: 100%;
        flex-shrink: 1;
        justify-content: space-between;
    }
    .float_menu2 a {
        flex: 1 1 0;
        width: auto;
        max-width: 130px;
    }
    .float_menu1 {
        display: none;
    }
}

/* 반응형-태블릿 가로 헤더============================== */
@media (max-width: 1024px) {
    .tablet_quick_menu {
        display: block;
    }
    .tablet_quick_menu a {
        min-height: 74px;
        padding: 12px 8px;
        font-size: 15px;
    }
    .logo_area {
        padding: 0;
    }

    .slogan,
    .sublogo,
    .sumbox,
    .unb,
    .gnb {
        display: none;
    }

    #headerHg .logo_area .wrap_inner {
        height: 64px;
        padding: 0 0 0 20px;
    }
    #headerHg .logo_area .wrap_inner > :nth-child(1) {
        height: 40px;
        position: relative;
    }
    #headerHg .logo_area .wrap_inner > :nth-child(1) img {
        width: 100%;
    }
    #headerHg .mainlogo .pc_show {
        display: none !important;
    }
    #headerHg .mainlogo .mobile_show {
        display: block !important;
    }
    #headerHg .logo_area .wrap_inner .mobile_menu.mobile_show {
        display: block;
    }
    #headerHg .logo_area .wrap_inner > .mobile_menu {
        float: right;
        position: relative;
    }
    .mobile_menu_btn {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 20;
        height: 0px;
        background: url("/img/menu_icon_m.png") no-repeat 50% 50% / 100% auto;
    }
    .mobile_menu_btn.active {
        background-image: url("/img/menu_icon_m_c.png");
        background-size: 100% 100%;
    }
    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all 0.4s;
        box-sizing: border-box;
        z-index: 100;
    }
    .menu-trigger {
        width: 20px;
        top: 0px;
        right: 8px;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #222;
        border-radius: 2px;
    }

    .menu-trigger span:nth-of-type(1) {
        top: 25px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 31px;
    }
    .menu-trigger span:nth-of-type(3) {
        top: 37px;
    }
    .menu-trigger span:nth-of-type(1) {
        -webkit-animation: menu-bar07-01 0.75s forwards;
        animation: menu-bar07-01 0.75s forwards;
    }
    @-webkit-keyframes menu-bar07-01 {
        0% {
            -webkit-transform: translateY(6px) rotate(45deg);
        }
        50% {
            -webkit-transform: translateY(6px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes menu-bar07-01 {
        0% {
            transform: translateY(6px) rotate(45deg);
        }
        50% {
            transform: translateY(6px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .menu-trigger span:nth-of-type(2) {
        transition: all 0.25s 0.25s;
        opacity: 1;
    }
    .menu-trigger span:nth-of-type(3) {
        -webkit-animation: menu-bar07-02 0.75s forwards;
        animation: menu-bar07-02 0.75s forwards;
    }
    @-webkit-keyframes menu-bar07-02 {
        0% {
            -webkit-transform: translateY(-6px) rotate(-45deg);
        }
        50% {
            -webkit-transform: translateY(-6px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes menu-bar07-02 {
        0% {
            transform: translateY(-6px) rotate(-45deg);
        }
        50% {
            transform: translateY(-6px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .menu-trigger.active span:nth-of-type(1) {
        -webkit-animation: active-menu-bar07-01 0.75s forwards;
        animation: active-menu-bar07-01 0.75s forwards;
    }
    @-webkit-keyframes active-menu-bar07-01 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(6px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(6px) rotate(45deg);
        }
    }
    @keyframes active-menu-bar07-01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(6px) rotate(0);
        }
        100% {
            transform: translateY(6px) rotate(45deg);
        }
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        -webkit-animation: active-menu-bar07-02 0.75s forwards;
        animation: active-menu-bar07-02 0.75s forwards;
    }
    @-webkit-keyframes active-menu-bar07-02 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(-6px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(-6px) rotate(-45deg);
        }
    }
    @keyframes active-menu-bar07-02 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-6px) rotate(0);
        }
        100% {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

    .mobile_menu_dim.show {
        display: block !important;
    }

    .mobile_menu .unb_m {
        display: none;
        position: relative;
        top: 0;
        right: 0;
        z-index: 90;
        width: 360px;
        height: 64px;
        padding: 0 20px;
        background-color: #fff;
        border-bottom: 1px solid #e5e5e5;
    }

    .mobile_menu .unb_m::after {
        display: none;
    }

    .mobile_menu .unb_m::before {
        display: block;
        position: fixed;
        top: 0;
        z-index: 80;
        right: 360px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .mobile_menu > .unb_m.show.flex {
        display: flex !important;
        align-items: center;
    }

    .mobile_menu .unb_m li {
        position: relative;
        display: flex;
        align-items: center;
    }

    .mobile_menu .unb_m li a {
        color: #222;
        font-size: 15px;
    }
    .mobile_menu .unb_m li:after {
        content: "";
        display: inline-block;
        position: relative;
        top: 0;
        width: 1px;
        height: 14px;
        background-color: #e5e5e5;
        margin: 0 10px;
    }
    .mobile_menu .unb_m li:last-child:after {
        display: none;
    }
    .mobile_menu .gnb_m {
        display: none;
        position: absolute;
        top: 64px;
        right: 0;
        z-index: 90;
        width: 100%;
        height: 100vh;
        background-color: #ebf0f5;
        overflow: hidden;
    }

    .mobile_menu .gnb_m::after {
        content: " ";
        display: block;
        position: absolute;
        top: 0;
        right: -140px;
        z-index: -1;
        width: 100%;
        height: 100%;
        background-color: #fff;
    }
    .mobile_menu .gnb_m > li > a {
        width: 140px;
        height: 56px;
        background-color: #ebf0f5;
        text-align: center;
        line-height: 56px;
        font-size: 18px;
        font-weight: 500;
        color: #222;
    }
    .mobile_menu .gnb_m > li.active > a {
        background-color: #007af5;
        color: #fff;
    }
    .mobile_menu .gnb_m > li:nth-child(1) > a {
        top: 0;
    }
    .mobile_menu .gnb_m > li:nth-child(2) > a {
        top: 60px;
    }
    .mobile_menu .gnb_m > li:nth-child(3) > a {
        top: 120px;
    }
    .mobile_menu .gnb_m > li:nth-child(4) > a {
        top: 180px;
    }
    .mobile_menu .gnb_m > li ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 140px;
        background-color: #fff;
        padding: 0;
    }
    .mobile_menu .gnb_m > li ul li {
        display: none;
        float: left;
        width: 220px;
        padding: 16px 24px;
        font-size: 18px;
        color: #222;
        font-weight: 400;
    }
    .mobile_menu .gnb_m > li ul li:first-child {
        padding-top: 32px;
    }
    .mobile_menu .gnb_m > li ul li:last-child {
        padding-bottom: 32px;
    }
    .mobile_menu .gnb_m > li.active ul li {
        display: block;
    }
}

/* 반응형-태블릿============================== */
@media (max-width: 768px) {
    .main_visual_area {
        height: 293px;
        overflow: hidden;
    }
    .tablet_quick_menu ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .tablet_quick_menu li:nth-child(3n) {
        border-right: 0;
    }
    .tablet_quick_menu li:nth-child(-n + 3) {
        border-bottom: 1px solid #004b8f;
    }
    .tablet_quick_menu a {
        min-height: 74px;
        padding: 10px 6px;
        font-size: 14px;
    }
    .float_menu_wrap {
        display: none;
    }
    h2 {
        text-align: left;
    }
    .wrap_inner {
        padding: 5%;
    }
    .morebtn {
        right: 0;
    }

    /* ?事?슬라이드 */
    .main_visual_area .wrap_inner {
        padding: 0;
    }
    .main-slide {
        float: none;
    }
    .main-slide--primary {
        background: #4791ff;
    }
    .main-slide--primary .main_img_box {
        background-image: url(/img/main_banner_mobile_1_2026_1.png);
    }
    .main_text_box p {
        color: #fff !important;
    }
    .main-slide .main_img_box {
        position: relative;
        height: 293px;
        background-size: contain;
        background-position: 50% 0;
        transform: translateX(0px);
    }
    .main-slide .main_text_box {
        display: none;
    }
    .main-slide .main_text_box p:nth-child(1) {
        font-size: 2.2rem;
    }
    .main-slide .main_text_box p:nth-child(2) {
        font-size: 1.1rem;
    }

    .main_inner {
        position: absolute;
        top: 0;
        width: 100%;
        right: 0;
    }
    .main_visual_area .wrap_inner.slidebtn_box {
        position: absolute;
        left: 50%;
        bottom: 8px;
        width: 100%;
        transform: translateX(-50%);
    }
    .main_slider_controller {
        gap: 6px;
    }
    .main_slider_pager {
        height: 32px;
        padding: 0 10px;
    }
    .main_slider_toggle {
        flex: 0 0 32px;
        width: 32px;
        min-width: 32px;
        height: 32px;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 30px;
    }

    /* 스포츠 서비스 */
    .sports_service_area {
        padding: 16px 0 40px;
    }
    .sports_service_top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
    .main_notice,
    .main_news {
        padding: 0;
        padding-bottom: 24px;
        background: transparent;
        border: 0;
        border-radius: 0;
    }
    .main_notice_head {
        margin-bottom: 24px;
    }
    .main_board_box h2 {
        font-size: 24px;
    }
    .notice1_slide_box {
        gap: 20px;
        padding-bottom: 24px;
        border-bottom: 1px solid #e5e5e5;
    }
    .notice1_slide_area {
        gap: 16px;
    }
    .main_board_box .boardtext {
        width: auto;
        font-size: 16px;
    }
    .main_board_box span,
    .notice1_slide_area > span {
        display: block;
        font-size: 14px;
    }
    .divilink {
        width: auto;
        flex: none;
        min-width: 0;
        max-width: none;
        min-height: 122px;
        height: auto;
        background-image: url("/img/division_banner_mobile.png");
        background-position: top center;
    }
    .divilink a {
        min-height: 122px;
        padding: 20px 24px;
        gap: 16px;
    }
    .divilink a p {
        width: 100%;
        margin-bottom: 0;
        font-size: 20px;
    }
    .divilink a span {
        margin-right: 0;
        padding: 14px 24px;
        font-size: 16px;
    }
    .setvice_list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 0;
    }
    .setvice_list li {
        padding: 0 8px;
    }
    .setvice_list li.service_item--divider {
        border-left: 0;
    }
    .setvice_list li a .service_icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(17, 39, 87, 0.16);
        background-size: 128px 384px;
    }
    .setvice_list li:nth-of-type(1) .service_icon {
        --icon-rest-y: -128px;
        --icon-hover-x: -64px;
        --icon-hover-y: -128px;
    }
    .setvice_list li:nth-of-type(2) .service_icon {
        --icon-rest-y: 0;
        --icon-hover-x: -64px;
        --icon-hover-y: 0;
    }
    .setvice_list li:nth-of-type(3) .service_icon {
        --icon-rest-y: -256px;
        --icon-hover-x: -64px;
        --icon-hover-y: -256px;
    }
    .setvice_list li:nth-of-type(4) .service_icon {
        --icon-rest-y: -192px;
        --icon-hover-x: -64px;
        --icon-hover-y: -192px;
    }
    .setvice_list li:nth-of-type(5) .service_icon {
        --icon-rest-y: -64px;
        --icon-hover-x: -64px;
        --icon-hover-y: -64px;
    }
    .setvice_list li:nth-of-type(6) .service_icon {
        --icon-rest-y: -320px;
        --icon-hover-x: -64px;
        --icon-hover-y: -320px;
    }
    .setvice_list li a > p {
        font-size: 16px;
    }

    /* 생생영상.포토앨범 */
    /* .video_slide>div, .video_slide .video_img img{width:100%; height: auto;} */
    .video_slide .video_img {
        height: auto;
    }
    .photo_slide > a > div {
        margin: auto;
    }
    .video_slide_box,
    .photo_slide_box {
        padding: 0;
    }
    .video_area .wrap_inner::before,
    .video_area .wrap_inner::after,
    .photo_gallery_area .wrap_inner::before,
    .photo_gallery_area .wrap_inner::after {
        display: none;
    }
    .photo_slide_box {
        position: initial;
    }
    .photo_slide_box .slick-prev {
        top: 58px;
        right: calc(5% + 75px);
    }
    .photo_slide_box .slick-next {
        top: 58px;
        right: calc(5% + 40px);
    }
    .photo_gallery_area {
        margin-bottom: 10px;
    }

    /* 연관 사이트 */
    .relation_site {
        background-color: #fff;
        padding-top: 0;
    }
    .relation_box {
        right: auto;
        opacity: 1;
    }
    .relation_box > div {
        width: 48%;
        padding: 25px 0;
    }
    .relation_box li {
        width: 48%;
        padding: 20px 0;
    }
    .relation_box li img {
        max-width: none;
    }

    /* 푸터 */
    .foot_inner {
        flex-wrap: wrap;
        padding-bottom: 180px;
        display: block !important;
    }
    .foot_inner > img {
        max-width: 100%;
        margin: auto;
    }
    .foot_inner .foot_sns {
        margin-left: 0;
    }
    .foot_inner .footinfo {
        width: 100%;
        margin: 0 !important;
        text-align: center;
    }
    .foot_inner .footbtn {
        margin: auto;
        text-align: center;
    }
    .foot_inner .footbtn a {
        margin: auto;
        text-align: center;
    }

    /* all */
    .slick-prev,
    .slick-next {
        top: -70px;
        width: 36px;
        height: 36px;
        border: 1px solid rgb(221, 221, 221);
        background-color: #fff;
        border-radius: 4px 0 0 4px;
    }
    .slick-prev::before,
    .slick-next::before {
        display: block;
        content: " ";
        width: 36px;
        height: 36px;
        opacity: 1;
        background: url("/img/arrow_l.png") no-repeat 40% 47% / auto 50%;
    }
    .slick-prev:hover,
    .slick-next:hover {
        background-color: #fff;
    }
    .slick-prev {
        left: auto;
        right: 75px;
    }
    .slick-next {
        right: 40px;
    }
    .video_area .slick-prev {
        left: auto;
        right: 35px;
    }
    .video_area .slick-next {
        right: 0;
        transform: translateY(-50%) rotate(180deg);
    }

    .pop_area {
        width: 95%;
        margin-top: 55px;
    }
    .pop_area .close_btn.closeTop {
        width: 50px;
        height: 50px;
        right: 0;
        top: -50px;
    }
    .pop_area .pop_tit img {
        width: 100%;
    }

    .pop_area2 {
        width: 95%;
        margin-top: 55px;
    }
    .pop_area2 .close_btn2.closeTop {
        width: 50px;
        height: 50px;
        right: 0;
        top: -50px;
    }
    .pop_area2 .pop_tit img {
        width: 100%;
    }

    .load_main {
        display: inline-table;
    }
    .support_site {
        margin-bottom: 10px;
    }
    .support_site h2 {
        display: none;
    }
    .support_site ul {
        position: relative;
        margin: 20px 0;
        padding-top: 24px;
        background-color: #2e40a6;
        width: 60%;
    }
    .support_site ul::before {
        display: block;
        position: absolute;
        top: -26px;
        left: 10px;
        width: 133px;
        height: 42px;
        background: url("/img/suptitle_m.png");
    }
    .support_site ul li {
        width: 80%;
        margin-left: 20px;
    }
    .support_site ul li:nth-of-type(4) {
        width: 80%;
    }
    .support_site ul li:nth-of-type(5) {
        width: 80%;
    }
    .support_site ul li:nth-of-type(6) {
        width: 80%;
    }
    .support_site ul li:nth-of-type(7) {
        width: 80%;
    }
    .support_site ul li:nth-of-type(4) img {
        max-width: 100%;
        width: auto;
        margin-top: 0px;
    }
    .support_site ul li:nth-of-type(5) img {
        max-width: 100%;
        width: auto;
        margin-top: 0px;
    }
    .support_site ul li:nth-of-type(6) img {
        max-width: 100%;
        width: auto;
    }
    .support_site ul li:nth-of-type(7) img {
        max-width: 100%;
        width: auto;
    }

    [class^="pop_area_"] {
        width: auto;
        height: 100%;
    }
}

/* 반응형-모바일 ============================== */
@media (max-width: 480px) {
    #headerHg .logo_area .wrap_inner {
        padding: 0 10px;
    }
    .main_notice h2::before,
    .main_news h2::before {
        display: none;
    }
    .main_board_box h2 {
        margin: 0;
    }
    .main_board_box .boardtext {
        width: auto;
    }

    .main_board_box .morebtn_s {
        display: inline-flex;
    }
    .main-slide .main_text_box p:nth-child(1) {
        font-size: 1.625rem;
    }
    .main-slide .main_text_box p:nth-child(2) {
        font-size: 0.9rem;
    }
    .main_visual_area .wrap_inner.slidebtn_box {
        bottom: 8px;
    }
    .main_slider_controller {
        gap: 5px;
    }
    .main_slider_pager {
        gap: 8px;
        height: 30px;
        padding: 0 9px;
    }
    .main_slider_status {
        font-size: 13px;
    }
    .main_slider_toggle {
        flex: 0 0 30px;
        width: 30px;
        min-width: 30px;
        height: 30px;
    }

    .main-nav li a {
        display: block;
        height: 100%;
        padding: 12px 22%;
        font-size: 1rem;
        line-height: 1.3;
    }
    .main-nav li:nth-child(5) a {
        padding: 12px 44px;
    }
    .main-nav li:nth-child(4) a,
    .main-nav li:nth-child(7) a {
        line-height: 2.8;
    }
    .main-nav li.point a::before {
        transform: translate(60px, -64px) rotate(38deg);
    }

    .divilink {
        line-height: normal;
    }
    .divilink a {
        padding: 20px 16px;
        gap: 14px;
    }
    .divilink a p {
        float: none;
        width: 100%;
    }
    .divilink a p::after {
        content: none;
    }
}
@media (max-width: 340px) {
    .main-nav li a {
        padding: 12px 10%;
    }
    .main-nav li:nth-child(5) a {
        padding: 12px 20%;
    }
    .setvice_list li a > p {
        font-size: 0.9rem;
    }
}

/* 하단 섹션 리프레시 */
.news_area,
.live_video_area,
.album_area {
    width: 100%;
    min-height: 0;
    margin-bottom: 88px;
    overflow: visible;
}
.photo_gallery_area .wrap_inner,
.video_area .wrap_inner {
    position: relative;
    padding: 0 0 76px;
    background: transparent;
}
.photo_gallery_area .wrap_inner::before,
.photo_gallery_area .wrap_inner::after,
.video_area .wrap_inner::before,
.video_area .wrap_inner::after {
    display: none;
}
.section_head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
.section_head--notice {
    justify-content: space-between;
    margin-bottom: 24px;
}
.section_head--news,
.section_head--video,
.section_head--album {
    justify-content: center;
    min-height: 40px;
    margin-bottom: 34px;
}
.section_head--support,
.section_head--relation {
    justify-content: flex-start;
    min-height: 40px;
    margin-bottom: 24px;
}
.section_title {
    display: block;
    min-width: 0;
    margin: 0;
    color: #222;
}
.section_title--notice {
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}
.section_title--news,
.section_title--video,
.section_title--album {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-align: center;
}
.section_title--support,
.section_title--relation {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.section_action {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: auto;
    min-height: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: #666;
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.section_head--notice .section_action {
    position: static;
    transform: none;
}
.section_head--news .section_action,
.section_head--video .section_action,
.section_head--album .section_action,
.section_head--relation .section_action {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.section_action::after {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #fff url("/img/section_action_plus.png") no-repeat 50% 50% / 12px 12px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}
.section_action--shortcut::after {
    content: "";
    background: #fff url("/img/section_action_arrow.png") no-repeat 50% 50% / 20px 20px;
}
.section_action:hover,
.section_action:focus-visible,
.main_board_box .morebtn_s.section_action:hover,
.main_board_box .morebtn_s.section_action:focus-visible {
    color: #111;
}
.section_action:hover::after,
.section_action:focus-visible::after,
.main_board_box .morebtn_s.section_action:hover::after,
.main_board_box .morebtn_s.section_action:focus-visible::after {
    border-color: #111;
}
.video_slide_box,
.photo_slide_box {
    margin: 0 -12px;
    padding: 0 0 76px;
}
.video_slide,
.photo_slide {
    padding: 0 12px;
}
.video_slide > a,
.photo_slide > a {
    display: block;
    color: #222;
    text-decoration: none;
}
.video_slide .video_img,
.photo_slide .photo_thumb,
.photo_slide > a > div {
    position: relative;
    height: 160px;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background-color: #dfe8f6;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.video_slide .video_img {
    box-shadow: 0 8px 18px rgba(15, 31, 68, 0.1);
}
.photo_slide .photo_thumb,
.photo_slide > a > div {
    box-shadow: 0 8px 18px rgba(15, 31, 68, 0.08);
}
.video_slide .video_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video_slide .video_img::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%);
    background: url("/img/playbtn.png") no-repeat 50% 50% / 100% auto;
}
.video_slide p,
.photo_slide p {
    margin: 18px 0 10px;
    color: #222;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.video_slide span,
.photo_slide .card_date {
    display: block;
    margin: 0;
    line-height: 1.3;
}
.video_slide span {
    color: #1877f2;
    font-size: 15px;
    font-weight: 600;
}
.photo_slide .card_date {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
}
.news_area .slick-list,
.live_video_area .slick-list,
.album_area .slick-list {
    overflow: hidden;
}
.news_area .slick-dotted.slick-slider,
.live_video_area .slick-dotted.slick-slider,
.album_area .slick-dotted.slick-slider {
    margin-bottom: 0;
}
.news_area .slick-dots,
.live_video_area .slick-dots,
.album_area .slick-dots {
    bottom: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.news_area .slick-dots li,
.live_video_area .slick-dots li,
.album_area .slick-dots li {
    width: 40px;
    height: 4px;
    margin: 0;
}
.news_area .slick-dots li button,
.live_video_area .slick-dots li button,
.album_area .slick-dots li button {
    border-radius: 999px;
    background-color: #d4d7de;
}
.news_area .slick-dots li.slick-active button,
.live_video_area .slick-dots li.slick-active button,
.album_area .slick-dots li.slick-active button {
    background-color: #111;
}
.news_area .slick-prev,
.news_area .slick-next,
.live_video_area .slick-prev,
.live_video_area .slick-next,
.album_area .slick-prev,
.album_area .slick-next {
    top: auto;
    bottom: 0;
    width: 20px;
    height: 20px;
    border: 0;
    background: transparent;
    transform: none;
}
.news_area .slick-prev,
.live_video_area .slick-prev,
.album_area .slick-prev {
    left: calc(50% - 84px);
}
.news_area .slick-next,
.live_video_area .slick-next,
.album_area .slick-next {
    left: calc(50% + 64px);
    right: auto;
}
.news_area .slick-prev::before,
.news_area .slick-next::before,
.live_video_area .slick-prev::before,
.live_video_area .slick-next::before,
.album_area .slick-prev::before,
.album_area .slick-next::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    opacity: 1;
    background: url("/img/arrow_26.03.png") no-repeat 50% 50% / 7px 11px;
}
.news_area .slick-next::before,
.live_video_area .slick-next::before,
.album_area .slick-next::before {
    transform: rotate(180deg);
}
.news_area .slick-prev:hover,
.news_area .slick-next:hover,
.live_video_area .slick-prev:hover,
.live_video_area .slick-next:hover,
.album_area .slick-prev:hover,
.album_area .slick-next:hover {
    background: transparent;
}
.support_site,
.relation_site {
    position: relative;
    margin: 0;
    padding: 72px 0 0;
    background: #eef3f8;
}
.relation_site {
    padding-top: 28px;
    padding-bottom: 80px;
}
.support_box .pc_show,
.relation_box .pc_show {
    display: block !important;
}
.support_box .mobile_show,
.relation_box .mobile_show {
    display: none !important;
}
.support_box,
.relation_box {
    position: static;
    right: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    opacity: 1;
    text-align: left;
    list-style: none;
}
.support_box::before {
    content: none;
    display: none;
}
.support_box li,
.relation_box li {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
}
.support_box li:empty {
    display: none;
}
.support_box li a,
.relation_box li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 22px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(23, 41, 74, 0.05);
    text-decoration: none;
}
.support_box li img,
.relation_box li img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 40px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .news_area .soTitle,
    .live_video_area .soTitle,
    .album_area .soTitle {
        font-size: 42px;
    }
    .video_slide_box,
    .photo_slide_box {
        margin: 0 -10px;
    }
    .video_slide,
    .photo_slide {
        padding: 0 10px;
    }
}

@media (max-width: 1200px) {
    .photo_gallery_area .wrap_inner,
    .video_area .wrap_inner .news_area .slick-list,
    .live_video_area .slick-list,
    .album_area .slick-list {
        overflow: visible;
        padding-right: 64px;
    }
}

@media (max-width: 1024px) {
    .sports_service_area > .wrap_inner,
    .section_block > .wrap_inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .news_area,
    .live_video_area,
    .album_area {
        margin-bottom: 56px;
    }
    .photo_gallery_area .wrap_inner,
    .video_area .wrap_inner {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .section_head--news,
    .section_head--video,
    .section_head--album {
        justify-content: flex-start;
        min-height: 32px;
        margin-bottom: 20px;
    }
    .section_title--news,
    .section_title--video,
    .section_title--album,
    .section_title--support,
    .section_title--relation {
        font-size: 24px;
        text-align: left;
    }
    .section_head--news .section_action,
    .section_head--video .section_action,
    .section_head--album .section_action,
    .section_head--relation .section_action {
        font-size: 14px;
    }
    .section_head--news .section_action::after,
    .section_head--video .section_action::after,
    .section_head--album .section_action::after,
    .section_head--relation .section_action::after {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
    .video_slide_box,
    .photo_slide_box {
        margin: 0 -20px 0 0;
        padding: 0;
    }
    .news_area .slick-list,
    .live_video_area .slick-list,
    .album_area .slick-list {
        overflow: visible;
        padding-right: 56px;
    }
    .video_slide,
    .photo_slide {
        padding: 0 12px 0 0;
    }
    .video_slide .video_img,
    .photo_slide .photo_thumb,
    .photo_slide > a > div {
        height: 110px;
        border-radius: 10px;
    }
    .video_slide .video_img::after {
        width: 44px;
        height: 44px;
    }
    .video_slide p,
    .photo_slide p {
        height: 42px;
        margin: 12px 0 8px;
        font-size: 14px;
        line-height: 1.45;
    }
    .video_slide span,
    .photo_slide .card_date {
        font-size: 13px;
    }
    .news_area .slick-prev,
    .news_area .slick-next,
    .news_area .slick-dots,
    .live_video_area .slick-prev,
    .live_video_area .slick-next,
    .live_video_area .slick-dots,
    .album_area .slick-prev,
    .album_area .slick-next,
    .album_area .slick-dots {
        display: none !important;
    }
    .support_site {
        padding-top: 40px;
    }
    .relation_site {
        padding-top: 32px;
        padding-bottom: 56px;
    }
    .section_head--support,
    .section_head--relation {
        margin-bottom: 16px;
    }
    .support_box .pc_show,
    .relation_box .pc_show {
        display: none !important;
    }
    .support_box .mobile_show,
    .relation_box .mobile_show {
        display: block !important;
    }
    .support_box,
    .relation_box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .support_box li a,
    .relation_box li a {
        min-height: 72px;
        padding: 18px 12px;
        border-radius: 8px;
    }
    .support_box li img,
    .relation_box li img {
        max-height: 30px;
    }
}

@media (max-width: 480px) {
    .section_title--news,
    .section_title--video,
    .section_title--album,
    .section_title--support,
    .section_title--relation {
        font-size: 20px;
    }
    .section_head--news .section_action,
    .section_head--video .section_action,
    .section_head--album .section_action,
    .section_head--relation .section_action {
        font-size: 13px;
    }
    .section_head--news .section_action::after,
    .section_head--video .section_action::after,
    .section_head--album .section_action::after,
    .section_head--relation .section_action::after {
        width: 30px;
        height: 30px;
    }
    .news_area .slick-list,
    .live_video_area .slick-list,
    .album_area .slick-list {
        overflow: visible;
        padding-right: 48px;
    }
    .video_slide .video_img,
    .photo_slide .photo_thumb,
    .photo_slide > a > div {
        height: 104px;
    }
    .support_box li a,
    .relation_box li a {
        min-height: 68px;
        padding: 16px 10px;
    }
    .support_box li img,
    .relation_box li img {
        max-height: 28px;
    }
}

/* 하단 서포터즈/연관사이트 재정의 */
.support_site,
.relation_site {
    position: relative;
    margin: 0;
    background: #eef3f8;
}
.support_site {
    padding: 48px 0 0;
}
.relation_site {
    padding: 24px 0 104px;
}
.support_site .wrap_inner,
.relation_site .wrap_inner {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    column-gap: 24px;
    align-items: start;
}
.support_site .wrap_inner {
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}
.support_box .pc_show,
.relation_box .pc_show {
    display: block !important;
}
.support_box .mobile_show,
.relation_box .mobile_show {
    display: none !important;
}
.section_head--support,
.section_head--relation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 0;
    margin: 0;
    gap: 20px;
}
.support_site .section_head--support > .section_title--support,
.relation_site .section_head--relation > .section_title--relation {
    font-family: "NEXON Football Gothic B", "Pretendard Variable", "Noto Sans KR", sans-serif !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0;
    color: #222 !important;
    margin-top: 8px;
}
.section_head--support::after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    visibility: hidden;
    pointer-events: none;
}
.section_head--relation .section_action {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    gap: 0;
    width: 32px;
    min-width: 32px;
    min-height: 32px;
    justify-content: flex-start;
    font-size: 0;
    color: transparent;
}
.section_head--relation .section_action::after {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}
.support_box,
.relation_box {
    position: static;
    right: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
    background: none;
    border-radius: 0;
    opacity: 1;
    text-align: left;
    list-style: none;
}
.support_site ul.support_box {
    position: static;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border-radius: 0 !important;
    text-align: left;
}
.support_box::before,
.support_box::after,
.relation_box::before,
.relation_box::after {
    display: none;
    content: none;
}
.support_box li,
.relation_box li {
    float: none;
    width: auto !important;
    clear: none !important;
    margin: 0 !important;
    padding: 0;
}
.support_site ul.support_box li {
    width: auto !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    clear: none !important;
}
.support_box li:empty,
.relation_box li:empty {
    display: none;
}
.support_box li a,
.relation_box li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    text-decoration: none;
}
.support_box li img,
.relation_box li img {
    display: block;
    position: static;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    transform: none;
}

@media (max-width: 1440px) {
    .support_site .wrap_inner,
    .relation_site .wrap_inner {
        display: block;
    }
    .support_site .section_head--support > .section_title--support,
    .relation_site .section_head--relation > .section_title--relation {
        margin-top: 0;
    }
    .support_box,
    .relation_box {
        margin-top: 0;
    }
    .section_head--support,
    .section_head--relation {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .section_head--support::after,
    .section_head--relation .section_action {
        margin-left: auto;
        flex: 0 0 32px;
    }
}

@media (max-width: 768px) {
    .support_site {
        padding-top: 48px;
    }
    .relation_site {
        padding-top: 24px;
        padding-bottom: 48px;
    }
    .support_box .pc_show,
    .relation_box .pc_show {
        display: none !important;
    }
    .support_box .mobile_show,
    .relation_box .mobile_show {
        display: block !important;
    }
    .support_box,
    .relation_box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .support_box li a,
    .relation_box li a {
        height: 80px;
        min-height: 80px;
    }
    .support_box li img,
    .relation_box li img {
        width: auto !important;
        height: auto !important;
    }
}

/* 메인 섹션 슬라이더/간격 최종 재정의 */
.news_area,
.live_video_area {
    margin-bottom: 48px !important;
}

.album_area {
    margin-bottom: 0 !important;
}

.news_area > .wrap_inner,
.live_video_area > .wrap_inner {
    padding-bottom: 48px !important;
    border-bottom: 1px solid #eee;
}

.album_area > .wrap_inner {
    padding-bottom: 0 !important;
    border-bottom: 0;
}

.news_area .section_slider_controls,
.live_video_area .section_slider_controls,
.album_area .section_slider_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 32px;
    margin-top: 32px;
    margin-bottom: 0;
}

.news_area .photo_slide_box,
.live_video_area .video_slide_box,
.album_area .photo_slide_box {
    padding-bottom: 0 !important;
}

.video_slide > a,
.photo_slide > a {
    width: 282px;
    max-width: none;
    margin: 0 auto;
}

.video_slide .video_img,
.photo_slide .photo_thumb,
.photo_slide > a > div {
    width: 282px;
    height: 159px;
    margin: 0 auto;
}

.news_area .section_slider_controls .slick-prev,
.news_area .section_slider_controls .slick-next,
.live_video_area .section_slider_controls .slick-prev,
.live_video_area .section_slider_controls .slick-next,
.album_area .section_slider_controls .slick-prev,
.album_area .section_slider_controls .slick-next {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0;
    line-height: 0;
    color: transparent;
    transform: none;
}

.news_area .section_slider_controls .slick-prev,
.live_video_area .section_slider_controls .slick-prev,
.album_area .section_slider_controls .slick-prev {
    order: 1 !important;
}

.news_area .section_slider_controls .slick-next,
.live_video_area .section_slider_controls .slick-next,
.album_area .section_slider_controls .slick-next {
    order: 3 !important;
}

.news_area .section_slider_controls .slick-prev::before,
.news_area .section_slider_controls .slick-next::before,
.live_video_area .section_slider_controls .slick-prev::before,
.live_video_area .section_slider_controls .slick-next::before,
.album_area .section_slider_controls .slick-prev::before,
.album_area .section_slider_controls .slick-next::before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    opacity: 1;
    background: url("/img/angle-small-right.png") no-repeat 50% 50% / 32px 32px;
}

.news_area .section_slider_controls .slick-prev::before,
.live_video_area .section_slider_controls .slick-prev::before,
.album_area .section_slider_controls .slick-prev::before {
    transform: none !important;
}

.news_area .section_slider_controls .slick-next::before,
.live_video_area .section_slider_controls .slick-next::before,
.album_area .section_slider_controls .slick-next::before {
    transform: rotate(180deg) !important;
}

.news_area .section_slider_controls .slick-dots,
.live_video_area .section_slider_controls .slick-dots,
.album_area .section_slider_controls .slick-dots {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    height: 32px;
    margin: 0;
    padding: 0;
    transform: none;
    order: 2;
}

.news_area .section_slider_controls .slick-dots li,
.live_video_area .section_slider_controls .slick-dots li,
.album_area .section_slider_controls .slick-dots li {
    width: 40px;
    height: 4px;
    margin: 0;
}

.news_area .section_slider_controls .slick-dots li button,
.live_video_area .section_slider_controls .slick-dots li button,
.album_area .section_slider_controls .slick-dots li button {
    width: 40px;
    height: 4px;
    padding: 0;
    border-radius: 999px;
    background: #d4d7de;
}

.news_area .section_slider_controls .slick-dots li button::before,
.live_video_area .section_slider_controls .slick-dots li button::before,
.album_area .section_slider_controls .slick-dots li button::before {
    content: none;
}

.news_area .section_slider_controls .slick-dots li.slick-active button,
.live_video_area .section_slider_controls .slick-dots li.slick-active button,
.album_area .section_slider_controls .slick-dots li.slick-active button {
    background: #111;
}

.album_area .section_slider_controls {
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .video_slide > a,
    .photo_slide > a {
        width: auto;
    }

    .video_slide .video_img,
    .photo_slide .photo_thumb,
    .photo_slide > a > div {
        width: auto;
    }
}
@media (max-width: 1200px) {
    .sports_service_area > .wrap_inner,
    .section_block > .wrap_inner {
        box-sizing: border-box;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Footer */
#footer {
    background: #464646;
}

#footer .foot_inner {
    display: block !important;
    padding: 40px 0px 40px;
}

#footer .foot_main {
    display: flex !important;
    align-items: flex-start;
    gap: 24px;
}

#footer .footer_logo_box {
    flex: 0 0 124px;
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 72px;
    margin-right: 40px;
    overflow: hidden;
}

#footer .footer_logo_box img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
}

#footer .footer_logo_box .footer_logo_mobile {
    display: none;
}

#footer .footer_logo_box .footer_logo_pc {
    display: block;
}

#footer .footinfo {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
}

#footer address,
#footer .foot_copy,
#footer .footbtn a {
    margin: 0;
    font-style: normal;
    font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", sans-serif;
}

#footer .tel {
    margin: 0 0 12px;
}

#footer .tel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer .tel li {
    color: #c4c9cc;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

#footer .tel li + li {
    margin-top: 2px;
}

#footer .footinfo .tel li:first-child span {
    color: #fff;
    font-weight: 600;
}

#footer .foot_sns {
    flex: 0 0 auto;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    width: auto;
    min-width: 280px;
    max-width: 360px;
    margin-left: 0;
}

#footer .sns_area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer .sns_area li {
    margin: 0;
}

#footer .sns_area a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #2f2f2f;
    overflow: hidden;
}

#footer .sns_area li.sns_with_label a {
    flex-direction: column;
}

/* #footer .sns_area li.sns_with_label a img {
    width: auto;
    height: auto;
} */

#footer .sns_area .foot_sns_label {
    display: block;
    color: #d7dde0;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    position: relative;
    top: -12px;
}

#footer .sns_area img {
    display: block;
    width: 50px;
    height: 50px;
    max-width: 100%;
    max-height: 100%;
}

#footer .footbtn {
    width: 100%;
}

#footer .footbtn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 280px;
    height: 40px;
    padding: 0 40px 0 24px;
    border-radius: 8px;
    background: #6f7377;
    color: #d7dde0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    overflow: hidden;
}

#footer .footbtn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    background: url("/img/angle-small-right.png") no-repeat 50% 50% / 20px 20px;
    transform: translateY(-50%) rotate(180deg);
    filter: brightness(0) invert(1);
}

#footer .foot_copy {
    margin-left: 186px;
    max-width: calc(100% - 390px);
    color: #c4c9cc;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    #footer .foot_inner {
        padding: 40px 20px 40px;
    }
}

@media (max-width: 768px) {
    #footer .foot_inner {
        padding: 24px 20px;
    }

    #footer .foot_main {
        display: block !important;
    }

    #footer .footer_logo_box {
        flex: none;
        justify-content: flex-start;
        width: 210px;
        height: 40px;
        margin: 0 0 24px;
    }

    #footer .footinfo {
        flex: none;
        width: 100%;
        max-width: none;
        text-align: left !important;
    }

    #footer address,
    #footer .tel,
    #footer .tel ul,
    #footer .tel li,
    #footer .tel li span {
        text-align: left !important;
    }

    #footer .footinfo .tel {
        margin: 0;
    }

    #footer .footinfo .tel ul {
        display: grid;
        row-gap: 6px;
    }

    #footer .footinfo .tel li:first-child {
        margin-bottom: 0;
    }

    #footer .footinfo .tel li {
        font-size: 16px;
    }

    #footer .footinfo .tel li:first-child span {
        font-size: 16px;
        line-height: 1.5;
    }

    #footer .foot_sns {
        flex: none;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        gap: 12px;
        margin: 24px 0 0;
    }

    #footer .sns_area {
        width: auto;
        justify-content: flex-start;
        gap: 4px;
        flex: 0 0 auto;
    }

    #footer .footbtn {
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        margin: 0 !important;
        text-align: left !important;
    }

    #footer .footbtn a {
        width: auto;
        margin: 0 !important;
        padding: 0 18px;
        justify-content: flex-start;
        font-size: 16px;
        text-align: left !important;
    }

    #footer .footbtn a::after {
        display: none;
    }

    #footer .footer_logo_box .footer_logo_pc {
        display: none;
    }

    #footer .footer_logo_box .footer_logo_mobile {
        display: block;
    }

    #footer .foot_copy {
        width: 100%;
        max-width: none;
        margin: 24px 0 0;
        margin-left: 0;
        font-size: 13px;
        line-height: 1.5;
        color: #c4c9cc;
        text-align: left !important;
    }
}
