@charset "utf-8";

/* 공통 */
#wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
    #wrapper {
        padding-top: 110px;
    }
}


/* 상단 헤더 */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: var(--color-basic-reverse);
    z-index: 8000;
}

.ver-greentour #header {
    background-color: var(--color-greentour);
}

.ver-regulartour #header {
    background-color: var(--color-regulartour);
}

#header .top-btn-area {
    background-color: var(--color-background);
}

#header .top-btn-area a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-left: 1px solid var(--color-line);
    color: var(--color-light);
}

#header .top-btn-area a.player-regist-btn {
    font-weight: bold;
    color: var(--color-blue);
    background-color: rgba(var(--color-admin-blue-rgb),0.1);
}

#header .top-btn-area .lastline a:last-child {
    border-right: 1px solid var(--color-line);
}

#header .top-btn-area a.all-championship-btn {
    border-left: none;
    background-color: var(--color-brown-dark);
    color: var(--color-basic-reverse);
}

#header .logo-mnu {
    position: relative;
    padding: 0 20px;
}

#header .logo-mnu h1 {
    font-size: 0;
}

#header .logo-mnu .gnb a {
    display: block;
    color: var(--color-basic-reverse);
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li {
    position: relative;
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li:after {
    position: absolute;
    bottom: 0;
    left: 49%;
    right: 49%;
    height: 3px;
    background-color: transparent;
    content: '';
    transition: .3s ease-in-out;
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li a.gnb-1a {
    height: 70px;
    line-height: 70px;
    padding: 0 20px;
    font-family: var(--font-point);
    font-size: 18px;
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul {
    display: none;
    position: absolute;
    top: 70px;
    left: calc(50% - 80px);
    width: 160px;
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li {
    position: relative;
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li:after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 1px;
    height: 1px;
    background-color: rgba(var(--color-background-rgb),0);
    content: '';
    transition: .3s ease-in-out;
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li:not(:first-child) {
    border-top: 1px solid rgba(var(--color-background-rgb),0.2);
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li a.gnb-2a {
    padding: 10px 20px;
    opacity: 0.8;
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li.select::after,
#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li:hover::after {
    left: 20px;
    right: 20px;
    background-color: var(--color-brown);
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li.select a.gnb-1a,
#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li:hover a.gnb-1a {
    color: var(--color-brown);
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li:hover ul.gnb-2ul {
    display: block;
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li:hover::after {
    width: 100%;
    background-color: rgba(var(--color-background-rgb),1);
}

#header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li:hover a.gnb-2a {
    opacity: 1;
}

#header .m-only {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 10px 0 20px;
}

#header .m-only h1 {
    width: 150px;
}

#header .m-only .head-mnu a {
    display: block;
    width: 36px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    color: var(--color-white);
}

@media screen and (min-width:1239px) {
    #header .top-btn-area a:not(.all-championship-btn):hover {
        background-color: var(--color-brown);
        color: var(--color-basic-reverse);
    }

    #header .logo-mnu .gnb {
        margin-right: -30px;
    }

    #header .logo-mnu .gnb ul.gnb-1ul li.gnb-1li a.gnb-1a {
        padding: 0 30px;
    }
}


/* 공통 */
.basic-container {
    position: relative;
    padding: 30px 20px;
}

h1.h1-tit > em {
    font-size: 24px;
    font-family: var(--font-point);
}

h2.h2-tit {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
}

h2.h2-tit > em {
    position: relative;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding-left: 20px;
    background: url("../images/ico_h2tit.png") no-repeat left center/auto 13px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-brown-dark);
}

h2.h2-tit .more-btn,
h2.h2-tit .latest-tab-btn {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: var(--color-deeplight);
}

h2.h2-tit .more-btn,
h2.h2-tit .latest-tab-btn.on {
    color: var(--color-brown-dark);
    font-weight: 500;
}

h2.h2-tit .latest-tab-btn:not(:first-child) {
    margin-left: 10px;
}

h3.h3-tit {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
}

h3.h3-tit em {
    font-weight: 700;
}

h3.h3-tit .right-box {
    margin-top: 10px;
}

.normal-comment {
    font-size: 12px;
    color: var(--color-light);
}

.btn-area .more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 150px;
    height: 40px;
    padding: 0 20px;
    margin: 0 auto;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    color: var(--color-deeplight);
}

.btn-area .more-btn span.ico {
    margin-right: 10px;
    font-size: 16px;
}

.accordion-arrow {
    position: absolute;
    top: calc(50% - 12px);
    right: 20px;
}

.accordion-arrow .btn-loca {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    font-size: 0;
    color: transparent;
    background: none;
    outline: none;
    border: none;
}

.accordion-arrow .btn-loca:after,
.accordion-arrow .btn-loca:before {
    position: absolute;
    top: 2px;
    display: block;
    width: 2px;
    height: 10px;
    background-color: var(--color-basic);
    transition: .2s;
    content: '';
}

.accordion-arrow .btn-loca:after {
    left: 50%;
    margin-left: 2px;
    transform: rotate(45deg);
}

.accordion-arrow .btn-loca:before {
    right: 50%;
    margin-right: 2px;
    transform: rotate(135deg);
}

.accordion-arrow .btn-loca.on:after {
    background: var(--color-point);
    transform: rotate(135deg);
}

.accordion-arrow .btn-loca.on:before {
    background: var(--color-point);
    transform: rotate(45deg);
}

.choice-years {
    position: relative;
    width: 120px;
    height: 50px;
    font-size: 18px;
}

.choice-years .select-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    border-radius: 5px;
}

.choice-years .select-box summary {
    position: relative;
    padding: 0 20px;
    list-style: none;
}

.choice-years .select-box summary em {
    height: 50px;
    line-height: 50px;
    font-weight: 900;
}

.choice-years .select-box[open] {
    border: 1px solid rgba(0,0,0,0.16); 
    background-color: var(--color-background);
}

.choice-years .select-box[open] summary .accordion-arrow .btn-loca:after {
    transform: rotate(135deg);
}

.choice-years .select-box[open] summary .accordion-arrow .btn-loca:before {
    transform: rotate(45deg);
}

.choice-years .select-box .select-open ul li {
    width: 100% !important;
    border-top: 1px solid rgba(0,0,0,0.16);
    border-bottom: none !important;
}

.choice-years .select-box .select-open ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
}

@media screen and (min-width: 767px) {
    .basic-container {
        padding: 40px 20px 20px;
    }

    h1.h1-tit > em {
        font-size: 30px;
        letter-spacing: -.5pt;
    }

    h2.h2-tit > em {
        font-size: 20px;
    }

    h2.h2-tit .more-btn,
    h2.h2-tit .latest-tab-btn {
        font-size: 16px;
    }

    h3.h3-tit {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    h3.h3-tit em {
        font-size: 20px;
    }

    h3.h3-tit .right-box {
        margin-top: 0;
    }

    .choice-years {
        font-size: 20px;
    }

    .normal-comment {
        font-size: 14px;
    }

    .btn-area .more-btn {
        max-width: 200px;
        height: 50px;
        border-radius: 25px;
    }

    .btn-area .more-btn span.ico {
        font-size: 20px;
    }
}

@media screen and (min-width: 979px) {
    h2.h2-tit .latest-tab-btn:not(:first-child) {
        margin-left: 15px;
    }

    h3.h3-tit em {
        font-size: 24px;
    }
}

@media screen and (min-width: 1239px) {
    .basic-container {
        padding: 80px 0px 20px;
    }

    h1.h1-tit > em {
        font-size: 40px;
        letter-spacing: -.75pt;
    }

    h3.h3-tit em {
        font-size: 30px;
    }

    .choice-years {
        width: 150px;
        font-size: 30px;
    }
}


/* 기본 콘텐츠 상단 */
.basic-topbox {
    position: relative;
    margin-bottom: 30px;
}

.basic-topbox .normal-tab {
    margin-top: 10px;
}

.basic-topbox .normal-tab ul li a {
    position: relative;
    display: block;
    padding: 5px 15px 3px;
    font-size: 18px;
    color: var(--color-deeplight);
}

.basic-topbox .normal-tab ul li a.active {
    font-weight: 900;
    color: var(--color-blue);
}

.basic-topbox .normal-tab ul li a.active:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background-color: rgba(var(--color-brown-rgb),0.2);
    content: '';
}

.basic-topbox .basic-search-box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 15px;
    border: 1px solid var(--color-line);
    background-color: var(--color-background);
}

.basic-topbox .basic-search-box .basic-search-input {
    flex-grow: 1;
    height: 40px;
    line-height: 38px;
    padding: 0 15px;
    border-color: var(--color-white);
}

.basic-topbox .basic-search-box .basic-search-btn {
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    font-size: 16px;
    color: var(--color-deeplight);
}

@media screen and (min-width: 767px) {
    .basic-topbox .normal-tab ul li a {
        font-size: 20px;
    }

    .basic-topbox .basic-search-box {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 350px;
        margin-top: 0;
    }
}

@media screen and (min-width: 1239px) {
    .basic-topbox {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 50px;
    }

    .basic-topbox .normal-tab {
        margin-top: 0;
        margin-left: 30px;
    }

    .basic-topbox .normal-tab ul li a {
        padding: 0 18px;
        font-size: 24px;
    }

    .basic-topbox .basic-search-box {
        bottom: auto;
        top: calc(50% - 25px);
        border: none;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    }

    .basic-topbox .basic-search-box .basic-search-input {
        height: 50px;
        line-height: 48px;
    }

    .basic-topbox .choice-years .select-box summary .accordion-arrow {
        top: calc(50% - 20px);
    }
}


/* 기본 테이블 */

.basic-tbl {
    border-top: 2px solid var(--color-brown-dark);
}

.basic-tbl th,
.basic-tbl td {
    padding: 10px 5px;
    border: 1px solid rgba(var(--black-white-rgb),0.15);
    font-size: 12px;
    text-align: center;
}

.basic-tbl thead th,
.basic-tbl thead td {
    border-bottom-color: var(--color-brown);
    font-size: 14px;
    font-weight: 500;
}

.basic-tbl thead th {
    font-family: var(--font-point);
}

@media screen and (min-width: 979px) {
    .basic-tbl th,
    .basic-tbl td {
        font-size: 14px;
    }
}

@media screen and (min-width: 1239px) {
    .basic-tbl th,
    .basic-tbl td {
        font-size: 16px;
    }

    .basic-tbl thead th {
        font-size: 18px;
    }
}


/* 2022년 대회일정 & 메인 스폰서 */
.tour-top-content {
    position: relative;
    background-color: var(--color-background);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.tour-top-content hr {
    margin: 0;
    background-color: var(--color-line);
    opacity: 1;
}

.tour-top-content .slide-arrow-box {
    margin-top: 10px;
    text-align: center;
    font-size: 0;
}

.tour-top-content .slide-arrow-box .swiper-button {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    margin: 0 5px;
    border: 1px solid rgba(var(--black-white-rgb),0.15);
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    color: var(--color-light);
}

@media screen and (min-width: 767px) {
    .tour-top-content {
        border-radius: 0 0 30px 30px;
    }
}


/* 2022년 대회일정 */
.top-schedule-slide {
    position: relative;
    padding: 30px 20px;
}

.top-schedule-slide h2 {
    font-size: 20px;
    font-family: var(--font-point);
}

.top-schedule-slide .side-tab {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 -5px;
}

.top-schedule-slide .side-tab a {
    display: block;
    padding: 5px;
    color: var(--color-light);
}

.top-schedule-slide .side-tab a.active {
    color: var(--color-point);
    font-weight: 700;
}

.top-schedule-slide .schedule-slide {
    position: relative;
    margin-top: 30px;
}

.top-schedule-slide .schedule-slide p {
    height: 337px
}

.top-schedule-slide .schedule-slide ul li {
    width: 280px;
    padding: 0 20px 20px;
    border-left: 1px solid var(--color-line);
}

.top-schedule-slide .schedule-slide ul li a {
    display: block;
}

.top-schedule-slide .schedule-slide ul li a.pic {
    display: flex;
    align-items: center;
    height: 56px;
    margin-bottom: 30px;
    font-size: 0;
}

.top-schedule-slide .schedule-slide ul li a.pic img {
    max-height: 56px;
}

.top-schedule-slide .schedule-slide ul li a.subject {
    line-height: 24px;
    height: 48px;
    max-height: 48px;
    font-size: 18px;
    letter-spacing: -.5pt;
}

.top-schedule-slide .schedule-slide ul li .tour-summary {
    margin-top: 30px;
    font-size: 12px;
    color: var(--color-deeplight);
}

.top-schedule-slide .schedule-slide ul li .tour-summary dl + dl {
    margin-top: 5px;
}

.top-schedule-slide .schedule-slide ul li .tour-summary dl dt {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.top-schedule-slide .schedule-slide ul li .tour-summary dl dd {
    flex-grow: 1;
    padding-left: 6px;
}

.top-schedule-slide .btn-area .more-btn {
    max-width: 300px;
    height: 34px;
    margin-top: 15px;
    background-color: var(--color-background-gray);
    color: var(--color-basic);
}

@media screen and (min-width: 639px) {
    .top-schedule-slide .side-tab {
        position: absolute;
        top: 20px;
        right: 20px;
        justify-content: flex-end;
    }

    .top-schedule-slide .side-tab a {
        padding: 8px 5px;
        margin-left: 20px;
    }
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 1239px) {
    .top-schedule-slide {
        padding: 30px 0;
    }

    .top-schedule-slide .schedule-slide {
        overflow: hidden;
    }

    .top-schedule-slide .schedule-slide p {
        height: 297px
    }

    .top-schedule-slide .schedule-slide:after,
    .top-schedule-slide .schedule-slide:before {
        position: absolute;
        top: 0;
        left: -1px;
        bottom: 0;
        width: 3px;
        background-color: var(--color-background);
        content: '';
        z-index: 1000;
    }

    .top-schedule-slide .schedule-slide:before {
        left: auto;
        right: -1px;
        background-color: var(--color-background);
    }

    .top-schedule-slide .slide-arrow-box .swiper-button {
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        line-height: 48px;
        font-size: 20px;
        color: var(--color-deeplight);
    }

    .top-schedule-slide .slide-arrow-box .swiper-button.swiper-prev {
        left: -70px;
    }

    .top-schedule-slide .slide-arrow-box .swiper-button.swiper-next {
        right: -70px;
    }

    .top-schedule-slide .slide-arrow-box .swiper-button:hover {
        border-color: rgba(var(--black-white-rgb),0.2);
        background-color: rgba(var(--color-brown-rgb),0.1);
        color: var(--color-light);
    }
}


/* 메인 스폰서 */
.top-sponsor-slide {
    position: relative;
    padding-bottom: 20px;
    font-size: 0;
}

.top-sponsor-slide .sponsor-slide ul li {
    width: auto;
}

.top-sponsor-slide .sponsor-slide ul li a {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 20px;
}

.top-sponsor-slide .sponsor-slide ul li a img {
    max-height: 100%;
}

@media screen and (min-width: 1239px) {
    .top-sponsor-slide {
        height: 70px;
        padding-bottom: 0;
    }

    .top-sponsor-slide .sponsor-slide {
        overflow: hidden;
    }

    .top-sponsor-slide .slide-arrow-box .swiper-button {
        position: absolute;
        top: calc(50% - 20px);
        border: none;
        color: var(--color-deeplight);
    }

    .top-sponsor-slide .slide-arrow-box .swiper-button.swiper-prev {
        left: -60px;
    }

    .top-sponsor-slide .slide-arrow-box .swiper-button.swiper-next {
        right: -60px;
    }

    .top-sponsor-slide .slide-arrow-box .swiper-button:hover {
        color: var(--color-light);
    }
}


/* NEWS 최근게시물 */
.news-latest {
    position: relative;
}

.news-latest h2 {
    margin-bottom: 20px;
}

.news-latest h2 em.tit {
    display: block;
    font-family: var(--font-point-light);
    font-size: 20px;
}

.news-latest h2 em.tit strong {
    font-family: var(--font-point-bold);
}

.news-latest h2 small.txt {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
}

.news-latest h2 .latest-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 120px;
    height: 34px;
    padding: 0 15px;
    margin-top: 10px;
    border: 1px solid rgba(var(--black-white-rgb),0.15);
    font-size: 14px;
}

.news-latest .latest-list .latest-con {
    margin-bottom: 20px;
    background-color: var(--color-background);
    box-shadow: 0 3px 10px rgba(var(--black-white-rgb),0.08);
}

.news-latest .latest-list .latest-con a {
    display: block;
}

.news-latest .latest-list .latest-con a.pic {
    font-size: 0;
    overflow: hidden;
    height: 56%;
}

.news-latest .latest-list .latest-con a.pic img {
    width: 100%;
}

.news-latest .latest-list .latest-con a.txt {
    padding: 20px;
}

.news-latest .latest-list .latest-con a.txt em.subject {
    display: block;
    font-size: 16px;
}

.news-latest .latest-list .latest-con a.txt span.date {
    display: block;
    margin-top: 30px;
    color: var(--color-light);
    font-size: 12px;
}

@media screen and (min-width: 767px) {
    .news-latest .latest-list {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
    }

    .news-latest .latest-list .latest-con {
        width: 32%;
        height: 34vh;
    }

    .news-latest .latest-list .latest-con:not(:first-child) {
        margin-left: 2%;
    }
}

@media screen and (min-width: 1239px) {
    .news-latest {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .news-latest h2 {
        width: 250px;
    }
    
    .news-latest h2 em.tit {
        font-size: 40px;
    }
    
    .news-latest h2 em.tit strong {
        display: block;
    }
    
    .news-latest h2 small.txt {
        margin-top: 20px;
        font-size: 16px;
    }
    
    .news-latest h2 .latest-btn {
        width: 150px;
        height: 50px;
        padding: 0 20px;
        margin-top: 40px;
        font-size: 16px;
    }

    .news-latest .latest-list {
        width: 850px;
    }

    .news-latest .latest-list .latest-con a.txt {
        padding: 30px 20px;
    }

    /*.news-latest .latest-list .latest-con a.pic {*/
    /*    height: 54%;*/
    /*}*/

    .news-latest .latest-list .latest-con a.txt em.subject {
        line-height: 24px;
        max-height: 48px;
        font-size: 18px;
    }

    .news-latest .latest-list .latest-con a.txt span.date {
        font-size: 14px;
    }
}


/* 갤러리 리스트 */
.gallery-list .gallery-con {
    margin-bottom: 20px;
}

.gallery-list .gallery-con a {
    display: block;
}

.gallery-list .gallery-con a.pic {
    position: relative;
    font-size: 0;
    height: 27vh;
    text-align: center;
}

.gallery-list .gallery-con a.pic img {
    height: 100%;
}

.gallery-list .gallery-con a.pic em.typeico {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #000;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.gallery-list .gallery-con a.txt {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 0;
}

.gallery-list .gallery-con a.txt em.subject {
    line-height: 24px;
    max-height: 48px;
    font-size: 16px;
}

.gallery-list .gallery-con a.txt span.date {
    margin-top: 10px;
    color: var(--color-deeplight);
}

@media screen and (min-width: 639px) {
    .gallery-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
    }

    .gallery-list .gallery-con {
        width: 49%;
        margin-left: 2%;
    }

    .gallery-list .gallery-con:nth-child(2n+1) {
        margin-left: 0;
    }

    .gallery-list .gallery-con a.txt em.subject {
        height: 48px;
    }
}

@media screen and (min-width: 979px) {
    .gallery-list .gallery-con {
        margin-bottom: 30px;
    }

    .gallery-list:not(.horizontal-3) .gallery-con {
        width: 24.25%;
        margin-left: 1%;
    }

    .gallery-list:not(.horizontal-3) .gallery-con:nth-child(2n+1) {
        margin-left: 1%;
    }

    .gallery-list:not(.horizontal-3) .gallery-con:nth-child(4n+1) {
        margin-left: 0;
    }

    .gallery-list.horizontal-3 .gallery-con {
        width: 32%;
    }

    .gallery-list.horizontal-3 .gallery-con:nth-child(2n+1) {
        margin-left: 2%;
    }

    .gallery-list.horizontal-3 .gallery-con:nth-child(3n+1) {
        margin-left: 0;
    }
}

@media screen and (min-width: 1239px) {
    .gallery-list .gallery-con {
        margin-bottom: 40px;
    }

    .gallery-list .gallery-con a.txt {
        padding: 20px 10px 0;
    }
}



/* 배너 존 */
.bannerzone {
    position: relative;
    font-size: 0;
}

.bannerzone.twolinezone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bannerzone a + a {
    margin-top: 10px;
}

.bannerzone button:not(:last-child) img {
    margin-bottom: 15px;
}

.banner-mgt {
    margin-top: 30px;
}

@media screen and (min-width: 639px) {
    .bannerzone.twolinezone {
        flex-direction: row;
        justify-content: space-between;
    }

    .bannerzone.twolinezone a {
        width: 49%;
    }

    .bannerzone a + a {
        margin: 0;
    }
}

@media screen and (min-width: 767px) {
    .bannerzone button:not(:last-child) img {
        margin-bottom: 30px;
    }

    .banner-mgt {
        margin-top: 50px;
    }
}

@media screen and (min-width: 1239px) {
    .bannerzone.twolinezone a {
        width: 590px;
    }
}


/* 하단 푸터 */
#footer {
    position: relative;
    padding: 0 20px 30px;
    margin-top: 40px;
    font-size: 14px;
}

#footer h1 {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

#footer h1:after,
#footer h1:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(50% - 140px);
    height: 1px;
    background-color: #ccc;
    content: '';
}

#footer h1:before {
    left: auto;
    right: 0;
}

#footer .foot-mnubox {
    position: relative;
    margin: 0 -10px;
}

#footer .foot-mnubox .foot-mnu a {
    display: block;
    padding: 5px 10px;
    color: #9CA7B6;
}

#footer .foot-info {
    position: relative;
    margin-top: 30px;
}

#footer .foot-info ul li {
    margin-right: 30px;
}

#footer .foot-info ul li span {
    display: inline-block;
    margin-right: 10px;
    color: #9CA7B6;
}

#footer .foot-info .social-linkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 0;
}

#footer .foot-info .social-linkbox a {
    display: block;
    overflow: hidden;
    width: 34px;
    margin: 0 5px;
    border-radius: 5px;
}

#footer .copyright {
    margin-top: 40px;
    color: #9CA7B6;
}

@media screen and (min-width: 767px) {
    #footer .foot-info {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
    }

    #footer .foot-info .social-linkbox {
        margin-top: 0;
        margin-right: -5px;
    }
}

@media screen and (min-width: 979px) {
    #footer {
        margin-top: 80px;
    }

    #footer .foot-mnubox .right-mnu {
        position: absolute;
        top: 0;
        right: 0px;
    }

    #footer .foot-info ul li {
        padding: 5px 0;
    }

    #footer .foot-info .social-linkbox {
        margin-top: 5px;
    }
}

@media screen and (min-width: 1239px) {
    #footer {
        padding: 0 0 50px;
    }

    #footer .foot-mnubox {
        margin: 0 -15px;
    }

    #footer .foot-mnubox .foot-mnu a {
        padding: 5px 15px;
    }

    #footer .foot-mnubox .foot-mnu a:hover {
        color: #6e809a;
    }
}


/* 모바일 GNB */
.mobile-modal {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    width: 100%;
    padding: 20px;
    color: var(--color-basic-reverse);
    z-index: 8000;
}

.mobile-modal .mobile-mnu {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-modal .mobile-mnu a {
    flex-grow: 1;
}

.mobile-modal .m-gnb {
    position: relative;
    margin-top: 20px;
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li {
    position: relative;
    padding: 15px 10px;
    border-top: 1px solid rgba(var(--color-background-rgb),0.2);
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li a {
    display: block;
    color: var(--color-basic-reverse);
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li a.gnb-1a {
    font-family: var(--font-point);
    font-size: 18px;
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul {
    margin: 5px 0 -5px;
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li {
    margin-right: 20px;
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li a.gnb-2a {
    padding: 5px 0;
    opacity: 0.7;
    font-size: 16px;
}


/* 모달 */
.modal-backdrop {
    z-index: 8000;
}

.modal-backdrop.show {
    opacity: 0.7;
}

.modal {
    z-index: 9000;
}

.modal .modal-header {
    border-bottom: none;
    background-color: var(--color-point);
    color: #fff;
}

.modal .modal-header .modal-clos-btn {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    font-size: 20px;
    color: #fff;
}

.modal .modal-footer {
    justify-content: center;
}

@media screen and (min-width: 639px) {
    .modal-dialog {
        margin-top: 200px;
    }
}


/* -------------------------------- */
@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width:1239px) {
}

@media screen and (min-width:1340px) {
}

@media screen and (min-width:1439px) {
}

@media screen and (min-width:1640px) {
}

@media screen and (min-width:1840px) {
}

.fade:not(.show) {
    opacity: 1;
}

.allCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}
.block-center{
    display: block;
    text-align: center;
}
.mnuopen {
    overflow: hidden;
}
.modal-open {
    background: #0000008d;
}

.modal-dialog {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
}
.modal-content {
    padding: 20px 0;
    border: 0;
}

/* --- 전체 경기일정 드롭다운 교정 스타일 --- */

/* 1. 컨테이너 위치 고정 */
.all-schedule-dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 40px; /* 기존 상단 버튼 높이와 일치 */
}

/* 2. 하위 메뉴 위치 및 디자인 교정 */
.schedule-sub-menu {
    display: none;
    position: absolute;
    top: 40px !important; /* 버튼 바로 아래로 강제 고정 */
    right: 0 !important;   /* 오른쪽 끝 맞춤 */
    width: 200px;
    background-color: var(--color-brown-dark);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999; /* 최상단으로 올림 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* 3. 내부 링크 디자인 (기존 헤더 스타일 간섭 제거) */
.schedule-sub-menu li a {
    display: block !important;
    width: 100% !important;
    height: 45px !important;
    line-height: 45px !important;
    padding: 0 20px !important;
    color: #fff !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    background: transparent !important;
    text-align: left !important;
}

/* 4. 호버 효과 */
.schedule-sub-menu li a:hover {
    background-color: var(--color-brown) !important;
}

/* 5. PC 버전 노출 로직 */
@media screen and (min-width: 979px) {
    .all-schedule-dropdown:hover .schedule-sub-menu {
        display: block !important;
    }
}

/* 6. 모바일 버전 노출 로직 (active 클래스 기반) */
@media screen and (max-width: 978px) {
    .year-tab-btn {padding: 10px 15px !important;}
    .all-schedule-dropdown.active .schedule-sub-menu {
        display: block !important;
    }
}