@charset "utf-8";
/* 투어머치 전현진 팀장 */


.main-container h2.main-tit {
    position: relative;
}

.main-container h2.main-tit > em {
    display: block;
    font-family: var(--font-point-bold);
    font-size: 2.4rem;
}

@media screen and (min-width: 767px) {
    .main-container h2.main-tit > em {
        font-size: 3rem;
    }
}

@media screen and (min-width: 979px) {
    .main-container h2.main-tit > em {
        font-size: 4rem;
    }
}

@media screen and (min-width: 1239px) {
    .main-container h2.main-tit > em {
        font-size: 5rem;
    }
}


/* 메인 상단 슬라이드 */
.main-top-slide {
    position: relative;
    overflow: hidden;
    height: 600px;
    background: url("../images/main_top_slide01.jpg") no-repeat center/cover;
}

.main-top-slide .main-top-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1.2;
    background-color: rgba(var(--bg-black-rgb),0.4);
    background-image: url("../images/main_top_slide01_txt.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size:  150vw auto;
    color: var(--color-white);
}

.main-top-slide .main-top-con .eng-tit {
    font-size: 5vw;
    font-family: 'Jost';
}

.main-top-slide .main-top-con .eng-tit.eng-tit-big {
    color: var(--color-yellow);
    font-size: 9vw;
}

.main-top-slide .main-top-con .kor-tit {
    margin-top: 10px;
    font-weight: 900;
    font-size: 5vw;
}

.main-top-slide .main-top-con .date-loca {
    margin-top: 5px;
    font-size: 4vw;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .main-top-slide {
        height: 800px;
    }
}

@media screen and (min-width: 979px) {
    .main-top-slide {
        height: 100vh;
    }

    .main-top-slide .main-top-con {
        background-size: auto 100%;
    }

    .main-top-slide .main-top-con .eng-tit {
        font-size: 5.5rem;
    }

    .main-top-slide .main-top-con .eng-tit.eng-tit-big {
        font-size: 7rem;
    }

    .main-top-slide .main-top-con .kor-tit {
        font-size: 3.6rem;
    }

    .main-top-slide .main-top-con .date-loca {
        font-size: 2rem;
    }
}

@media screen and (min-width:1239px) {
    .main-top-slide .main-top-con {
        line-height: 1;
    }

    .main-top-slide .main-top-con .eng-tit {
        font-size: 6rem;
    }

    .main-top-slide .main-top-con .eng-tit.eng-tit-big {
        font-size: 8rem;
    }

    .main-top-slide .main-top-con .kor-tit {
        margin-top: 15px;
        font-size: 4rem;
    }

    .main-top-slide .main-top-con .date-loca {
        margin-top: 10px;
        font-size: 2.4rem;
    }
}


/* 메인 대회개요 */
.main-introduce {
    position: relative;
    padding: 30px 20px;
}

.main-introduce:before {
    position: absolute;
    top: 20px;
    right: 0;
    width: 120px;
    height: 250px;
    background-position: left center;
    background-repeat: no-repeat;
    background-image: url("../images/introduce_img.png");
    background-size: auto 100%;
    content: '';
    transition: .2s;
}

.main-introduce h2.main-tit {
    margin-bottom: 30px;
}

.main-introduce h2.main-tit > em {
    color: #243C2D;
}

.main-introduce h2.main-tit .introduce-more-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    width: 200px;
    height: 50px;
    margin-top: 10px;
    background-color: var(--bg-green);
    color: var(--color-white);
    border-radius: 25px;
    font-size: 1.6rem;
    transition: .2s;
}

.main-introduce h2.main-tit .introduce-more-btn em {
    flex-grow: 1;
    padding-left: 25px;
}

.main-introduce h2.main-tit .introduce-more-btn span.ico {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--bg-green-deep);
    text-align: center;
    font-size: 2rem;
    transition: .2s;
}

.main-introduce h2.main-tit .introduce-more-btn span.ico i {
    transition: .2s;
}

.main-introduce .introduce-list {
    position: relative;
}

.main-introduce .introduce-list dl {
    padding: 0 10px;
}

.main-introduce .introduce-list dl:not(:first-child) {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(var(--black-white-rgb),0.1);
}

.main-introduce .introduce-list dl dt {
    margin-bottom: 5px;
    font-weight: 500;
}

.main-introduce .introduce-list dl dd {
    color: var(--color-gray);
}

@media screen and (min-width: 639px) {
    .main-introduce:before {
        top: 20px;
        right: 0;
        width: 200px;
        height: 400px;
    }

    .main-introduce .introduce-list dl {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .main-introduce .introduce-list dl:not(:first-child) {
        padding-top: 15px;
        margin-top: 15px;
    }

    .main-introduce .introduce-list dl dt {
        flex-shrink: 0;
        width: 100px;
        margin-bottom: 0;
    }

    .main-introduce .introduce-list dl dd {
        flex-grow: 1;
    }
}

@media screen and (min-width: 767px) {
    .main-introduce {
        padding: 50px 40px;
    }

    .main-introduce .introduce-list dl {
        font-size: 1.6rem;
    }

    .main-introduce .introduce-list dl dt {
        width: 150px;
    }
}

@media screen and (min-width: 979px) {
    .main-introduce {
        padding: 80px 40px;
    }

    .main-introduce:after {
        position: absolute;
        bottom: 50px;
        left: 0;
        width: 300px;
        height: 500px;
        background-position: right center;
        background-repeat: no-repeat;
        background-image: url("../images/introduce_img.png");
        background-size: auto 100%;
        content: '';
        transition: .2s;
    }

    .main-introduce .respon {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .main-introduce h2.main-tit {
        flex-shrink: 0;
        width: 30%;
        margin-bottom: 0;
    }

    .main-introduce .introduce-list {
        width: 70%;
    }

    .main-introduce .introduce-list dl {
        font-size: 1.8rem;
    }
}

@media screen and (min-width:1239px) {
    .main-introduce {
        padding: 100px 0;
    }

    .main-introduce:before {
        width: 350px;
        height: 650px;
    }
    
    .main-introduce:after {
        width: 400px;
        height: 650px;
    }

    .main-introduce h2.main-tit {
        width: 260px;
    }

    .main-introduce h2.main-tit .introduce-more-btn {
        width: 250px;
        height: 60px;
        margin-top: 20px;
        border-radius: 30px;
        font-size: 2rem;
    }
    
    .main-introduce h2.main-tit .introduce-more-btn em {
        padding-left: 30px;
    }
    
    .main-introduce h2.main-tit .introduce-more-btn span.ico {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 2.6rem;
    }

    .main-introduce h2.main-tit .introduce-more-btn:hover {
        background-color: var(--bg-green-deep);
    }

    .main-introduce h2.main-tit .introduce-more-btn:hover em {
        color: var(--color-yellow);
    }

    .main-introduce h2.main-tit .introduce-more-btn:hover span.ico i {
        transform: rotate(180deg);
    }

    .main-introduce .introduce-list {
        width: 800px;
    }

    .main-introduce .introduce-list dl {
        font-size: 2rem;
    }

    .main-introduce .introduce-list dl dt {
        width: 170px;
    }
}

@media screen and (min-width:1439px) {
    .main-introduce:after {
        width: 500px;
    }
}

@media screen and (min-width:1639px) {
    .main-introduce:after {
        width: 600px;
    }
}

@media screen and (min-width:1839px) {
    .main-introduce:after {
        width: 700px;
    }
}


/* 시상 및 기념품 */
.main-ceremony {
    position: relative;
    padding: 30px 20px 10px;
    background: url("../images/award_bg.jpg") repeat center;
}

.main-ceremony:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 40px;
    background: url("../images/award_topimg.png") no-repeat top left/cover;
    content: '';
}

.main-ceremony h2.main-tit {
    margin-bottom: 30px;
    text-align: center;
    color: var(--color-green);
}

.main-ceremony .ceremony-award .ca-con {
    padding: 40px 10px 30px;
    margin-bottom: 20px;
    border-top: 5px solid var(--bg-green);
    border-bottom: 5px solid var(--bg-green);
    background-color: var(--bg-white);
    border-radius: 30px;
    box-shadow: 0px 3px 20px rgba(101,93,47,0.16);
}

.main-ceremony .ceremony-award .ca-con h3 {
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 400;
}

.main-ceremony .ceremony-award .ca-con h3 b {
    font-weight: 700;
}

.main-ceremony .ceremony-award .ca-con h3 small {
    color: var(--color-gray);
}

.main-ceremony .ceremony-award .ca-con .inner {
    border: 2px solid rgba(var(--black-white-rgb),0.15);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 3px 20px rgba(var(--black-white-rgb),0.15);
}

.main-ceremony .ceremony-award .ca-con .inner ul.jum-ul {
    padding: 0 10px 10px;
    margin-top: 20px;
    color: var(--color-gray);
    font-size: 1.2rem;
}

.main-ceremony .ceremony-award .ca-con .ca-tbl th,
.main-ceremony .ceremony-award .ca-con .ca-tbl td {
    padding: 10px;
    border-bottom: 1px dashed rgba(var(--black-white-rgb),0.15);
    text-align: center;
    color: var(--color-gray);
}

.main-ceremony .ceremony-award .ca-con .ca-tbl.no-bottom-line tr:last-child th,
.main-ceremony .ceremony-award .ca-con .ca-tbl.no-bottom-line tr:last-child td {
    border-bottom: none !important;
}

.main-ceremony .ceremony-award .ca-con .ca-tbl td.rank-num {
    font-size: 1.4rem;
}

.main-ceremony .ceremony-award .ca-con .ca-tbl td figure {
    display: inline-block;
    width: 24px;
    vertical-align: middle;
}

.main-ceremony .ceremony-award .ca-con .ca-tbl td strong {
    color: var(--color-basic);
}

.main-ceremony .ceremony-award .ca-con .gift-box h4 {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 1.8rem;
}

.main-ceremony .ceremony-award .ca-con .gift-box h4 em {
    margin-bottom: 10px;
    font-size: 3rem;
}

.main-ceremony .ceremony-award .ca-con .gift-box p {
    margin-top: 5px;
    color: var(--color-gray);
    font-size: 1.4rem;
}

.main-ceremony .ceremony-award .ca-con .gift-box .btns {
    margin-top: 30px;
}

.main-ceremony .ceremony-guide {
    padding: 0 20px;
    margin-top: 30px;
}

.main-ceremony .ceremony-guide h4 {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 700;
}

.main-ceremony .ceremony-img {
    margin-top: 20px;
    font-size: 0;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .main-ceremony {
        padding: 50px 40px 80px;
    }

    .main-ceremony .ceremony-award {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        margin: -1%;
    }

    .main-ceremony .ceremony-award .ca-con {
        width: 48%;
        margin: 1%;
    }

    .main-ceremony .ceremony-guide {
        width: 50%;
    }

    .main-ceremony .ceremony-img {
        position: absolute;
        bottom: -50px;
        right: -40px;
        width: 55%;
        margin: 0;
    }
}

@media screen and (min-width: 979px) {
    .main-ceremony {
        padding: 80px 40px;
    }

    .main-ceremony h2.main-tit {
        margin-bottom: 40px;
    }

    .main-ceremony .ceremony-award .ca-con h3 {
        font-size: 2rem;
    }

    .main-ceremony .ceremony-award .ca-con .gift-box h4 {
        font-size: 2rem;
    }

    .main-ceremony .ceremony-guide h4 {
        font-size: 1.8rem;
    }

    .main-ceremony .ceremony-img {
        bottom: -80px;
    }
}

@media screen and (min-width:1239px) {
    .main-ceremony {
        padding: 100px 0px;
    }

    .main-ceremony h2.main-tit {
        margin-bottom: 50px;
    }

    .main-ceremony .ceremony-award .ca-con {
        width: 31%;
        margin: 1%;
    }

    .main-ceremony .ceremony-guide {
    }

    .main-ceremony .ceremony-img {
        bottom: -180px;
        right: -70px;
        width: 50%;
    }
}


/* 코스소개 */
.main-course {
    position: relative;
    padding: 40px 20px 14vw;
    margin-top: -30px;
    background: url("../images/course_bg.png") no-repeat center top/cover;
}

.main-course:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8.5vw;
    background: url("../images/course_footimg.png") no-repeat center bottom/100% auto;
    content: '';
}

.main-course h2.main-tit {
    margin-bottom: 30px;
    color: #fff;
}

.main-course .course-tab {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-course .course-tab .course-btn {
    position: relative;
    display: block;
    padding: 0 10px;
    color: #fff;
    opacity: 0.5;
    font-size: 1.8rem;
    font-weight: 900;
    transition: .2s;
}

.main-course .course-tab .course-btn small {
    font-weight: 700;
}

.main-course .course-tab .course-btn:not(:first-child) {
    margin-left: 10px;
}

.main-course .course-tab .course-btn:after {
    position: absolute;
    bottom: 0;
    left: 49.5%;
    right: 49.5%;
    height: 8px;
    background-color: rgba(255,245,0,0.5);
    content: '';
    transition: .2s;
    opacity: 0;
}

.main-course .course-tab .course-btn.active {
    opacity: 1;
}

.main-course .course-tab .course-btn.active:after {
    left: 0;
    right: 0;
    opacity: 1;
}

.main-course .course-con {
    overflow: hidden;
    border-radius: 10px;
    font-size: 0;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .main-course {
        padding: 50px 40px 10vw;
    }

    .main-course .course-tab .course-btn {
        font-size: 2.4rem;
    }
}

@media screen and (min-width: 979px) {
    .main-course {
        padding: 80px 40px 10vw;
    }

    .main-course h2.main-tit {
        margin-bottom: 40px;
    }

    .main-course .course-tab .course-btn {
        line-height: 1.2;
        font-size: 2.8rem;
    }

    .main-course .course-tab .course-btn:not(:first-child) {
        margin-left: 20px;
    }
}

@media screen and (min-width:1239px) {
    .main-course {
        padding: 140px 0 7vw;
    }

    .main-course h2.main-tit {
        margin-bottom: 50px;
    }

    .main-course .course-tab .course-btn {
        font-size: 3rem;
    }

    .main-course .course-tab .course-btn:not(:first-child) {
        margin-left: 30px;
    }
}

/* 대회결과 */
.main-consequence {
    position: relative;
    padding: 30px 20px;
}

.main-consequence h2.main-tit {
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-green-deep);
}

.main-consequence .consequence-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.main-consequence .consequence-tab .consequence-btn {
    position: relative;
    display: block;
    padding: 0 10px;
    color: #999;
    font-size: 1.8rem;
    font-weight: 900;
    transition: .2s;
}

.main-consequence .consequence-tab .consequence-btn:not(:first-child) {
    margin-left: 10px;
}

.main-consequence .consequence-tab .consequence-btn:after {
    position: absolute;
    bottom: 0;
    left: 49.5%;
    right: 49.5%;
    height: 8px;
    background-color: rgba(87,168,52,0.2);
    content: '';
    transition: .2s;
    opacity: 0;
}

.main-consequence .consequence-tab .consequence-btn.active {
    color: var(--color-green);
}

.main-consequence .consequence-tab .consequence-btn.active:after {
    left: 0;
    right: 0;
    opacity: 1;
}

.main-consequence .consequence-con .table-box:not(:last-child) {
    margin-bottom: 20px;
}

.main-consequence .consequence-con .table-box h3 {
    line-height: 1;
    font-size: 2.4rem;
    color: var(--color-green-deep);
    font-weight: 900;
}

.main-consequence .consequence-con .table-box .consequence-tbl {
    margin-top: -5px;
}

.main-consequence .consequence-con .table-box .consequence-tbl th,
.main-consequence .consequence-con .table-box .consequence-tbl td {
    padding: 10px;
    text-align: center;
}

.main-consequence .consequence-con .table-box .consequence-tbl thead th {
    background-color: var(--color-green-deep);
    color: var(--color-white);
}

.main-consequence .consequence-con .table-box .consequence-tbl tbody td {
    border-bottom: 1px solid rgba(var(--black-white-rgb),0.1);
}

.main-consequence .all-consequence {
    margin-top: 30px;
    text-align: center;
}

.main-consequence .all-consequence .ac-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 200px;
    height: 50px;
    padding: 0 25px;
    margin: 0 auto;
    border: 1px solid #8A9585;
    background-color: var(--bg-white);
    color: var(--color-green-deep);
    border-radius: 25px;
    font-size: 1.6rem;
    transition: .2s;
}

.main-consequence .all-consequence .ac-btn span.ico {
    font-size: 2rem;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .main-consequence {
        padding: 50px 40px;
    }

    .main-consequence .consequence-tab .consequence-btn {
        font-size: 2.4rem;
    }

    .main-consequence .consequence-con {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .main-consequence .consequence-con .table-box {
        width: 48%;
    }

    .main-consequence .consequence-con .table-box:not(:last-child) {
        margin-bottom: 0px;
    }

    .main-consequence .consequence-con .table-box h3 {
        font-size: 3rem;
    }
}

@media screen and (min-width: 979px) {
    .main-consequence {
        padding: 80px 40px;
    }

    .main-consequence h2.main-tit {
        margin-bottom: 40px;
    }

    .main-consequence .consequence-tab {
        margin-bottom: 50px;
    }

    .main-consequence .consequence-tab .consequence-btn {
        line-height: 1.2;
        font-size: 2.8rem;
    }

    .main-consequence .consequence-tab .consequence-btn:not(:first-child) {
        margin-left: 20px;
    }

    .main-consequence .consequence-con .table-box h3 {
        font-size: 4rem;
    }

    .main-consequence .consequence-con .table-box .consequence-tbl {
        margin-top: -10px;
    }

    .main-consequence .consequence-con .table-box .consequence-tbl th,
    .main-consequence .consequence-con .table-box .consequence-tbl td {
        padding: 15px 10px;
    }

    .main-consequence .all-consequence {
        margin-top: 40px;
    }

    .main-consequence .all-consequence .ac-btn {
        width: 250px;
        height: 60px;
        padding: 0 30px;
        border-radius: 30px;
        font-size: 2rem;
        letter-spacing: -.5pt;
    }
}

@media screen and (min-width:1239px) {
    .main-consequence {
        padding: 100px 0px;
    }

    .main-consequence h2.main-tit {
        margin-bottom: 50px;
    }

    .main-consequence .consequence-tab {
        margin-bottom: 60px;
    }

    .main-consequence .consequence-tab .consequence-btn {
        font-size: 3.6rem;
    }

    .main-consequence .consequence-tab .consequence-btn:not(:first-child) {
        margin-left: 30px;
    }

    .main-consequence .consequence-con .table-box h3 {
        font-size: 6rem;
    }

    .main-consequence .all-consequence {
        margin-top: 50px;
    }

    .main-consequence .all-consequence .ac-btn:hover {
        background-color: var(--bg-green);
        color: #fff;
    }
}


/* 공지사항 최근게시물 */
.main-notice-latest {
    position: relative;
    padding: 30px 20px;
}

.main-notice-latest:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(var(--black-white-rgb),0.15);
    content: '';
}

.main-notice-latest .notice-tit {
    text-align: center;
}

.main-notice-latest .notice-tit h2.main-tit {
    margin-bottom: 10px;
    color: var(--color-green-deep);
}

.main-notice-latest .notice-tit p {
    opacity: 0.7;
}

.main-notice-latest .notice-tit .btn-area {
    margin-top: 20px;
}

.main-notice-latest .notice-tit .btn-area .more-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 200px;
    height: 50px;
    padding: 0 25px;
    margin: 0 auto;
    border: 1px solid #8A9585;
    color: var(--color-green-deep);
    border-radius: 25px;
    font-size: 1.6rem;
    transition: .2s;
}

.main-notice-latest .notice-latest {
    margin-top: 30px;
}

.main-notice-latest .notice-latest ul li a {
    display: block;
    padding: 10px 0;
}

.main-notice-latest .notice-latest ul li a span.date {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    opacity: 0.5;
}

.main-notice-latest .notice-latest ul li:not(:first-child) {
    border-top: 1px dashed rgba(0,0,0,0.1);
}

@media screen and (min-width:639px) {
}

@media screen and (min-width:767px) {
    .main-notice-latest {
        padding: 40px 40px;
    }

    .main-notice-latest .notice-latest ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-notice-latest .notice-latest ul li a em {
        flex-grow: 1;
        width: 100%;
        font-size: 1.6rem;
    }

    .main-notice-latest .notice-latest ul li a span.date {
        flex-shrink: 0;
        width: 140px;
        text-align: right;
        font-size: 1.4rem;
    }
}

@media screen and (min-width:979px) {
    .main-notice-latest .respon {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .main-notice-latest .notice-tit {
        flex-shrink: 0;
        width: 30%;
        padding-top: 10px;
        text-align: left;
    }

    .main-notice-latest .notice-tit .btn-area .more-btn {
        height: 60px;
        padding: 0 30px;
        margin: 0;
        border-radius: 30px;
        font-size: 2rem;
    }

    .main-notice-latest .notice-tit .btn-area .more-btn {
        margin: 0;
    }

    .main-notice-latest .notice-latest {
        flex-grow: 1;
        width: 65%;
        margin-top: 0;
    }

    .main-notice-latest .notice-latest ul li a em {
        font-size: 1.8rem;
    }
}

@media screen and (min-width:1239px) {
    .main-notice-latest {
        padding: 100px 0;
    }

    .main-notice-latest:before {
        left: calc(50% - 700px);
        right: auto;
        width: 1400px;
    }

    .main-notice-latest h2.main-tit > em {
        font-size: 4rem;
    }

    .main-notice-latest .notice-tit {
        padding-top: 20px;
    }

    .main-notice-latest .notice-tit .btn-area {
        margin-top: 30px;
    }

    .main-notice-latest .notice-latest ul li a {
        padding: 20px 0;
    }

    .main-notice-latest .notice-latest ul li a em {
        font-size: 2rem;
    }

    .main-notice-latest .notice-latest ul li a span.date {
        font-size: 1.6rem;
    }

    .main-notice-latest .notice-latest ul li a:hover em {
        text-decoration: underline;
        color: var(--color-green);
    }

    .main-notice-latest .notice-tit .btn-area .more-btn:hover {
        background-color: var(--bg-green);
        color: #fff;
    }
}


/* 고객문의 최근게시물 */
.main-notice-latest.main-counsel-latest {
    background-color: #faf6ef;
}

.main-notice-latest.main-counsel-latest:before {
    display: none;
}

.main-notice-latest.main-counsel-latest .notice-tit .btn-area .more-btn:not(:hover) {
    background-color: var(--bg-white);
}

.main-notice-latest.main-counsel-latest .notice-latest ul li a span.state {
    display: inline-block;
    margin-top: 5px;
    height: 30px;
    line-height: 28px;
    padding: 0 15px;
    border: 1px solid rgba(0,0,0,0.2);
    background-color: var(--bg-white);
    font-size: 1.2rem;
    color: var(--color-light);
    border-radius: 15px;
}

.main-notice-latest.main-counsel-latest .notice-latest ul li a span.state.complete {
    background-color: var(--bg-green-deep);
    color: var(--color-white);
}

@media screen and (min-width:767px) {
    .main-notice-latest.main-counsel-latest .notice-latest ul li a span.state {
        flex-shrink: 0;
        margin-left: 20px;
        text-align: right;
        font-size: 1.4rem;
    }
}

@media screen and (min-width:1239px) {
    .main-notice-latest.main-counsel-latest .notice-latest ul li a span.state {
        height: 36px;
        line-height: 34px;
        font-size: 1.6rem;
        border-radius: 18px;
    }
}


/* 찾아오시는 길 */
.main-location {
    position: relative;
    padding-bottom: 30px;
}

.main-location .mapbox {
    font-size: 0;
}

.main-location .mapbox iframe {
    width: 100%;
    height: 300px;
}

.main-location .map-infobox {
    padding: 0 20px;
}

.main-location .map-infobox ul.jum-ul li {
    position: relative;
    padding: 5px 0 5px 15px;
}

.main-location .map-infobox ul.jum-ul li:before {
    position: absolute;
    top: 14px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #666;
    content: '';
    border-radius: 50%;
}

.main-location .map-infobox .loca-addr {
    padding: 15px 0;
    border-bottom: 1px solid rgba(var(--black-white-rgb),0.15);
}

.main-location .map-infobox .loca-addr dl dt {
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--color-green-deep);
    font-size: 2rem;
}

.main-location .map-infobox .loca-channel {
    margin-top: 30px;
}

.main-location .map-infobox .loca-channel .loca-channel-con:not(:first-child) {
    margin-top: 20px;
}

.main-location .map-infobox .loca-channel .loca-channel-con h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    font-size: 2rem;
    color: var(--color-green);
    font-weight: 500;
}

.main-location .map-infobox .loca-channel .loca-channel-con h3 span.ico {
    flex-shrink: 0;
    width: 25px;
    margin-right: 10px;
    text-align: center;
}

.main-location .map-infobox .loca-channel .loca-channel-con h3 em {
    flex-grow: 1;
}

.main-location .map-infobox .loca-channel .loca-channel-con ul {
    margin-left: 35px;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .main-location {
        padding-bottom: 50px;
    }

    .main-location .mapbox iframe {
        height: 350px;
    }

    .main-location .map-infobox {
        padding: 0 40px;
    }

    .main-location .map-infobox ul.jum-ul li {
        font-size: 1.6rem;
    }

    .main-location .map-infobox ul.jum-ul li:before {
        top: 15px;
    }

    .main-location .map-infobox .loca-addr dl {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .main-location .map-infobox .loca-addr dl dt {
        flex-shrink: 0;
        margin-right: 50px;
        margin-bottom: 0;
    }

    .main-location .map-infobox .loca-addr dl dd {
        flex-grow: 1;
    }
}

@media screen and (min-width: 979px) {
    .main-location {
        padding-bottom: 80px;
    }

    .main-location .mapbox iframe {
        height: 500px;
    }

    .main-location .map-infobox .loca-addr {
        padding: 25px 0;
    }

    .main-location .map-infobox .loca-addr dl dt {
        margin-right: 70px;
        font-size: 2.4rem;
    }

    .main-location .map-infobox .loca-addr dl dd ul.jum-ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .main-location .map-infobox .loca-addr dl dd ul.jum-ul li:not(:first-child) {
        margin-left: 50px;
    }

    .main-location .map-infobox .loca-channel {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 50px;
    }

    .main-location .map-infobox .loca-channel .loca-channel-con:not(:first-child) {
        margin-top: 0px;
    }

    .main-location .map-infobox .loca-channel .loca-channel-con {
        width: 48%;
    }

    .main-location .map-infobox .loca-channel .loca-channel-con h3 {
        margin-bottom: 20px;
        font-size: 2.4rem;
    }
}

@media screen and (min-width:1239px) {
    .main-location {
        padding-bottom: 100px;
    }

    .main-location .mapbox iframe {
        height: 600px;
    }

    .main-location .map-infobox ul.jum-ul li {
        font-size: 1.8rem;
    }
}




/* -------------------------------- */
@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:1339px) {
}

@media screen and (min-width:1439px) {
}

@media screen and (min-width:1639px) {
}

@media screen and (min-width:1839px) {
}