/* pc버전 유지용도 */
/* html { min-width: 1280px; } */

.white {
    color: #ffffff !important;
}

.notice_txt {
    font-size: 20px;
    color: #ee4545;
    margin-top: 60px;
    text-align: center;
}

/* [base] end */


/* [.fixed-icon] start */
.fixed-icon {
    position: fixed;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 20px;
    bottom: 70px;
    right: 40px;
}

@media (max-width: 768px) {
    .fixed-icon {
        bottom: 20px;
        right: 10px;
        gap: 10px;
    }

    .fixed-icon a {
        width: 80px;
        height: 80px;
    }
}

/* [.fixed-icon] end */


/* [.section] start */
.section {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* section 공통 타이틀 */
section.section h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2em;
}

section.section h2 span {
    display: block;
    margin-bottom: 15px;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    color: var(--c-pri);
    line-height: 0;
}


@media (max-width: 1500px) {
    .section {
        min-height: 960px;
    }
}

@media (max-width: 768px) {
    nav.gnb {
        display: none;
    }

    .section {
        min-height: auto;
    }

    .notice_txt {
        font-size: 14px;
        margin-top: 30px;
    }

    section.section .container {
        width: 100%;
        padding: 0 20px;
    }

    section.section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    section.section h2 span {
        font-size: 18px;
        margin-bottom: 10px;
    }

}

/* [.section] end */



/* sec01 - 메인비주얼 start */
.section.sec01 {
    position: relative;
    height: 100vh;
    background: url(/img/therace/visual.webp) no-repeat center / cover;
    overflow: hidden;
}

.section.sec01 .titel-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.section.sec01 .pc-logo {
    display: block;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.section.sec01 .mobile-logo {
    display: none;
}

.section.sec01 .event-info {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.4;
    padding: 0px 20px 30px 20px;
}

.section.sec01 .event-info span {
    display: block;
    font-size: 38px;
    font-weight: 600;
}

.section.sec01 .btn_wrap {
    position: static;
    display: flex;
    gap: 30px;
}

.section.sec01 .btn_wrap a {
    display: inline-block;
    padding: 15px 90px;
    border-radius: 10px;
    background: var(--c-pri);
    color: #fff;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    transition: transform .3s ease, box-shadow .3s ease;
}

.section.sec01 .btn_wrap a:nth-child(2) {
    background: #fff;
    color: var(--c-pri);
}

.section.sec01 .btn_wrap a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #ffffffaa;
}

/* 1920px 이상 */
@media (min-width: 1920px) {
    .section.sec01 .pc-logo {
        max-width: 1400px;
    }
}


/* 1920px 이상 */
@media (min-width: 1440px) {
    .section.sec01 .pc-logo {
        max-width: 1100px;
    }
}

/* tablet */
@media (max-width: 1280px) {
    .section.sec01 {
        height: 90vh;
        width: 100%;
        min-width: 100%;
        background-size: cover;
        max-height: 860px;
    }

    .section.sec01 .titel-wrap {
        gap: 20px;
        margin-top: 30px;
    }

    .section.sec01 .pc-logo {
        max-width: 760px;
    }

    .section.sec01 .event-info {
        font-size: 18px;
    }

    .section.sec01 .event-info span {
        font-size: 32px;
    }

    .section.sec01 .btn_wrap a {
        font-size: 20px;
        padding: 12px 60px;
    }
}

/* mobile */
@media (max-width: 768px) {
    .section.sec01 .pc-logo {
        display: none;
    }

    .section.sec01 .mobile-logo {
        display: block;
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

    .section.sec01 .titel-wrap {
        gap: 10px;
    }

    .section.sec01 .event-info {
        font-size: 16px;
        padding: 0px 20px 10px 20px;
    }

    .section.sec01 .event-info span {
        font-size: 26px;
    }

    .section.sec01 .btn_wrap {
        flex-direction: column;
        width: calc(100% - 40px);
        max-width: 320px;
        gap: 10px;
    }

    .section.sec01 .btn_wrap a {
        width: 100%;
        font-size: 16px;
        padding: 12px 20px;
    }
}

/* sec01 - 메인비주얼 end */


/* sec02 - 스폰서 & 인트로 start */
.section.sec02 {
    background: url(/img/therace/sec01-bg.webp) no-repeat center bottom;
    background-size: cover;
    min-height: 60vh;
}

/* sponsor */
.section.sec02 .spon_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px 50px;
    background: #fffffff5;
    border-radius: 0 0 30px 30px;
}

.section.sec02 .spon_wrap h6 {
    font-size: 22px;
    font-weight: 800;
}

.section.sec02 .con-txt {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 180px 0 150px;
    width: 1170px;
}

.section.sec02 .con-txt .txt p {
    font-size: 24px;
    color: #e5e5e5;
}

.section.sec02 .con-txt .txt p b {
    font-size: 30px;
    font-weight: 700;
}

.section.sec02 .con-txt .txt h6 {
    margin-top: 20px;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
}

.section.sec02 .con-txt .txt h6 b {
    position: relative;
    font-size: 48px;
    font-weight: 800;
    color: var(--c-pri);
}

.section.sec02 .con-txt .txt h6 b::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: var(--c-pri);
}

/* mobile/tablet */
@media (max-width: 1200px) {
    .section.sec02 .con-txt {
        flex-direction: column;
        gap: 30px;
        padding: 80px 0;
        width: auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section.sec02 .spon_wrap {
        flex-direction: column;
        gap: 10px;
        padding: 20px 30px;
    }

    .section.sec02 .spon_wrap h6 {
        font-size: 18px;
    }

    .section.sec02 .spon_wrap .bx-controls.bx-has-controls-direction {
        display: none;
    }

    .section.sec02 .con-txt .txt p {
        font-size: 14px;
    }

    .section.sec02 .con-txt .txt p b {
        font-size: 18px;
    }

    .section.sec02 .con-txt .txt h6 {
        font-size: 20px;
    }

    .section.sec02 .con-txt .txt h6 b {
        font-size: 24px;
    }
}

/* sec02 - 스폰서 & 인트로 end */


/* sec03 - 대회안내 start */
.section.sec03 {
    background: var(--bg-d);
    background-image: url(/img/therace/sec02-bg.webp);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 120px 0;
}

.section.sec03 .tit {
    text-align: center;
}

.section.sec03 .tit img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}


.section.sec03 .info-txt {
    width: 900px;
    margin: 60px auto 0;
}

.section.sec03 .info-txt .list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}
.section.sec03 .info-txt .list:nth-child(4) {
    align-items: flex-start;
}

.section.sec03 .info-txt .list.award {
    align-items: flex-start;
}

.section.sec03 .info-txt .min_tit {
    width: 150px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    background: var(--c-pri);
    border-radius: 50px;
}

.section.sec03 .info-txt .min_tit span {
    display: inline-block;
    padding: 5px 20px;
    font-weight: 700;
}

.section.sec03 .info-txt .txt {
    font-size: 20px;
    color: #fff;
    line-height: 2em;
}

.section.sec03 .info-txt .txt span {
    color: #ee4545;
}

.section.sec03 .info-txt .txt b{
    font-size: 22px;
}

.section.sec03 .info-txt .spon {
    display: flex;
    align-items: center;
    gap: 30px;
}

.section.sec03 .info-txt .souvenir_wrap,
.section.sec03 .info-txt .mc_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* 1500 중복 제거 대신 sec03 특이 케이스만 남김 */
@media (max-width: 1500px) {
    .sec03 .box {
        width: 100% !important;
        display: flex;
    }
}

@media (max-width: 768px) {
    .section.sec03 {
        background-image: none !important;
        padding: 80px 0;
    }

    .section.sec03 .tit img {
        margin-bottom: 60px;
    }

    .section.sec03 .tit {
        scale: 0.8;
    }

    .section.sec03 .info-txt {
        width: 100%;
        margin: 30px auto 0;
    }

    .section.sec03 .info-txt .min_tit {
        width: 130px;
        font-size: 14px;
    }

    .section.sec03 .info-txt .txt {
        font-size: 14px;
        text-align: center;
    }

    .section.sec03 .info-txt .list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .section.sec03 .info-txt .list.award {
        align-items: center;
    }

    .section.sec03 .info-txt .list:nth-child(4) {
        align-items: center;
    }
    .section.sec03 .info-txt .txt b{
        font-size: 16px;
    }
    .section.sec03 .info-txt .spon{
        margin-top: 10px;
    }
}

/* sec03 - 대회안내 end */


/* sec05 - 타임테이블 start */
.section.sec05 {
    padding: 120px 0 220px;
    background: url(/img/therace/sec05-bg.webp) no-repeat bottom;
    background-size: cover;
}

.section.sec05 table {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.137);
}

.section.sec05 table thead th {
    font-size: 26px;
    color: var(--txt-inv);
    background: var(--ln-d);
    text-align: center;
    padding: 15px;
    border-right: 2px solid #ececec;
    font-weight: 900;
}

.section.sec05 table tbody tr {
    line-height: 3;
}

.section.sec05 table tbody td {
    font-size: 20px;
    color: #1c1c1c;
    background: #ffffffd0;
    border-bottom: #ececec 2px solid;
    text-align: center;
    border-right: 2px solid #ececec;
}

.section.sec05 table tbody td:last-child {
    border-right: 0;
}


.section.sec05 table tbody td:last-child {
    border-right: 0;
}


.section.sec05 table tbody tr.highlight td {
    color: #fff;
    background: var(--c-pri);
}

.section.sec05 table tbody tr.highlight td:last-child {
    border-right: 0;
}

.section.sec05 table tbody tr.highlight td small {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    opacity: .9;
}

.section.sec05 table.all-day-table thead th {
    background: var(--ln-d);
    font-size: 24px;
}

.section.sec05 table.all-day-table tbody td {
    background: #ffffffd0;
    color: #1c1c1c;
    font-size: 20px;
}

.section.sec05 .sub-title {
    font-size: 32px;
    font-weight: 900;
    margin: 60px 0 30px;
    text-align: center;
    color: var(--txt-s);
}



@media (max-width: 768px) {
    .section.sec05 {
        padding: 80px 0;
    }

    .section.sec05 .schedule-table {
        margin-bottom: 40px;
    }

    .section.sec05 table thead th {
        font-size: 16px;
        padding: 10px;
    }

    .section.sec05 table tbody td {
        font-size: 16px;
        line-height: 1.6;
        padding: 10px 5px;
    }

    .section.sec05 table tbody tr.highlight td small {
        font-size: 12px;
    }

    .section.sec05 .sub-title {
        font-size: 20px;
        margin: 30px 0 15px;
    }

    .section.sec05 table.all-day-table thead th {
        font-size: 16px;
    }

    .section.sec05 table.all-day-table tbody td {
        font-size: 16px;
    }
}

/* sec05 - 타임테이블 end */


/* sec06 - 코스 start */
.section.sec06 {
    padding: 120px 0;
    background: url(/img/therace/sec06-bg.webp) no-repeat center;
    background-size: cover;
}

.section.sec06 h2 {
    color: #fff;
}

.section.sec06 .tab_wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.section.sec06 .tab_wrap .tab_btn {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 70px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    cursor: pointer;
}

.section.sec06 .tab_wrap .tab_btn.on {
    background: var(--c-pri);
    border-color: var(--c-pri);
}

.section.sec06 .tab_con_wrap {
    text-align: center;
}

.section.sec06 .tab_con {
    display: none;
}

.section.sec06 .tab_con.on {
    display: block;
}

@media (max-width: 768px) {
    .section.sec06 {
        padding: 80px 0;
    }

    .section.sec06 .tab_wrap {
        gap: 10px;
        margin-bottom: 20px;
    }

    .section.sec06 .tab_wrap .tab_btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}

/* sec06 - 코스 end */


/* sec07 - 참가신청안내 start */
.section.sec07 {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: var(--bg-mid) url(../img/therace/sec07_bg.webp) center no-repeat;
}

.section.sec07 h2 {
    color: #fff;
}

.section.sec07 .con {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section.sec07 .con ul {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.section.sec07 .con .entry-box {
    max-width: 500px;
    padding: 50px 70px;
    background: #fff url(../img/therace/sec07_img01.png) center no-repeat;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.section.sec07 .con .entry-title {
    font-size: 62px;
    font-weight: 900;
    color: #222;
    margin-bottom: 10px;
}

.section.sec07 .con .entry-line {
    width: 240px;
    height: 2px;
    background-color: #222;
    border: none;
    margin: 0 auto 20px;
}

.section.sec07 .con .entry-label {
    font-size: 24px;
    color: #222;
    margin-bottom: 5px;
}

.section.sec07 .con .entry-date {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.section.sec07 .con .whitebox {
    background: var(--c-pri) url(../img/therace/sec07_img02.png) center no-repeat;
}

.section.sec07 .con .white-line {
    background-color: #f8f8f8;
}

.section.sec07 .btn_wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 80px;
}

.section.sec07 .btn_wrap a {
    width: 250px;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 20px;
    border: 2px solid #f8f8f8;
    border-radius: 10px;
    text-align: center;
    transition: all 0.2s;
    background: #f8f8f8;
    color: #000;
}

.section.sec07 .btn_wrap a:nth-child(2) {
    background: none;
    color: #f8f8f8;
}

.section.sec07 .btn_wrap a:hover {
    background: var(--c-pri);
    border-color: #ffffffcb;
    color: #f8f8f8;
}

.section.sec07 .ani_wrap {
    position: absolute;
    top: 35%;
    left: 0;
    display: flex;
    width: max-content;
    animation: flow 50s linear infinite;
}

.section.sec07 .ani_text {
    white-space: nowrap;
    font-size: 200px;
    font-weight: 900;
    padding-right: 80px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .section.sec07 {
        padding: 80px 0;
    }

    .section.sec07 ul {
        gap: 10px;
        flex-direction: column;
    }

    .section.sec07 .btn_wrap {
        display: grid;
        gap: 10px;
        margin-top: 30px;
    }

    .section.sec07 .btn_wrap a {
        font-size: 16px;
        padding: 12px 20px;
        width: 320px;
    }

    .section.sec07 .ani_text {
        display: none;
    }

    .section.sec07 .con .entry-box,
    .section.sec07 .con .whitebox {
        padding: 50px;
        background-size: 80%;
    }

    .section.sec07 .con .entry-icon img{
        scale: 0.8;
    }

    .section.sec07 .con .entry-title {
        font-size: 40px;
    }

    .section.sec07 .con .entry-line {
        width: 220px;
    }

    .section.sec07 .con .entry-label {
        font-size: 16px;
    }

    .section.sec07 .con .entry-date {
        font-size: 14px;
    }
}

/* sec07 - 참가신청안내 end */


/* sec08 - 공지사항 start */
.section.sec08 {
    padding: 120px 0;
    min-height: auto;
}

.section.sec08 .con {
    display: flex;
    align-items: center;
    gap: 70px;
}

.section.sec08 .board {
    width: 600px;
}

.section.sec08 .board .btn-more {
    text-align: right;
    margin-bottom: 15px;
}

.section.sec08 .board .btn-more a {
    font-size: 19px;
    color: #1b1b1b;
}

.section.sec08 .board ul {
    border-top: 2px solid #1b1b1b;
    width: 100%;
}

.section.sec08 .board ul li a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    align-items: center;
    border-bottom: 1px solid #1b1b1b;
    padding: 15px 30px;
    color: #1b1b1b;
}

.section.sec08 .board ul li .tag {
    padding: 8px 25px;
    border-radius: 20px;
    color: #fff;
    background: var(--c-pri);
    font-size: 14px;
    font-weight: 700;
}

.section.sec08 .board ul li p {
    font-size: 19px;
    margin: 0;
    width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section.sec08 .board ul li .date {
    position: absolute;
    right: 30px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section.sec08 {
        padding: 80px 0;
    }

    .section.sec08 .con {
        flex-direction: column;
        gap: 20px;
    }

    .section.sec08 .con .img {
        text-align: center;
    }

    .section.sec08 .con .img img {
        width: 60%;
    }

    .section.sec08 .board {
        width: 100%;
    }

    .section.sec08 .board ul li a {
        padding: 10px;
        gap: 10px;
    }

    .section.sec08 .board ul li .tag {
        padding: 5px 10px;
        font-size: 12px;
    }

    .section.sec08 .board ul li p {
        font-size: 14px;
        width: 50%;
    }

    .section.sec08 .board ul li .date {
        font-size: 12px;
        right: 10px;
    }

    .section.sec08 .board .btn-more a {
        font-size: 14px;
    }
}

/* sec08 - 공지사항 end */


/* sec09 - 자주묻는질문 start */

.section.sec09 {
    position: relative;
    min-height: 100vh;
    height: auto;
    padding: 120px 0;
    background: url(/img/therace/sec09-bg.webp) no-repeat center;
    background-size: cover;
    background-attachment: fixed; 
}

.section.sec09 h2 {
    color: #fff;
}

.section.sec09 .con .sch_box,
.section.sec09 .con .board_paging {
    display: none;
}

.section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table li {
    background: rgba(0, 0, 0, 0.45);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr {
    border-bottom: 0;
}

.section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.title span {
    font-weight: 700;
}

.section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table {
    border-top: 0;
}

.section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .content .n_tr {
    border-bottom: 0;
    background: none;
    border-top: 1px solid #acacac;
}

.section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td {
	color: #eeeeee;
}

.section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody li.active .n_td.title {
    color: var(--c-pri) !important;
}

.section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.arrow .arrow_icon {
    width: 26px;
    height: 15px;
    background: url(/img/therace/board-arrow.png);
}

@media (max-width: 1024px) {
    .section.sec09 {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .section.sec09 {
        padding: 80px 0;
    }

    .section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.arrow .arrow_icon {
        width: 20px;
        height: 8px;
        background-size: contain;
        background-repeat: no-repeat;
        padding-left: 20px;
    }

    .section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.title {
        font-size: 16px;
    }

    .section.sec09 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .content .n_tr .n_td.txt {
        font-size: 14px;
    }
}

/* sec09 - 자주묻는질문 end */


/* sec10 - 찾아오시는길 start */
.section.sec10 {
    overflow: hidden;
    padding: 120px 0 200px;
}

.section.sec10 .con {
    display: flex;
    gap: 40px;
}

.section.sec10 .con .map #daumRoughmapContainer1769417973874 {
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.section.sec10 .con .map #daumRoughmapContainer1769417973874 .cont {
    display: none !important;
}

.section.sec10 .con .txt h6 {
    display: inline-block;
    background: var(--c-pri);
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.section.sec10 .con .txt h6 b {
    font-size: 20px;
     font-weight: 700;
    margin-right: 10px;
}

.section.sec10 .con .txt h6 img {
    padding-right: 10px;
}

.section.sec10 .con .txt .min-tit {
    font-size: 20px;
    font-weight: 700;
}

.section.sec10 .con .txt1 {
    margin: 20px 0;
}

.section.sec10 .con .txt1 p {
    font-size: 18px;
    line-height: 2;
}

.section.sec10 .con .txt1 .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    background: #f06a00;
    font-weight: 700;
    font-size: 16px;
}

.section.sec10 .con .txt1 .num.two {
    background: #3042a7;
}

.section.sec10 .con .txt2 .min-tit {
    margin-bottom: 10px;
}

.section.sec10 .con .txt2 p {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.7em;
}

.section.sec10 .con .txt2 p span {
    color: #fff;
    background: #0064ff;
    border-radius: 3px;
    padding: 0px 5px;
}

.section.sec10 .con .txt2 p span.green {
    background: #00c24e;
}

.section.sec10 .con .txt2 p span.red {
    background: #ff0000;
}

.section.sec10 .ani_wrap {
    position: absolute;
    bottom: -80px;
    left: 0;
    transform: translateX(-50%);
    display: flex;
    width: max-content;
    animation: flow 50s linear infinite;
}

.section.sec10 .ani_text {
    white-space: nowrap;
    font-size: 200px;
    padding-right: 80px;
     font-weight: 700;
    color: #f0f0f0;
}

@media (max-width: 1024px) {
    .section.sec10 {
        padding: 80px 0;
    }

    .section.sec10 .con {
        flex-direction: column;
    }

    .section.sec10 .con .map {
        display: flex;
        justify-content: center;
    }

    .section.sec10 .con .txt h6 {
        display: block;
        text-align: center;
    }

    .section.sec10 .ani_text {
        display: none;
    }
}

@media (max-width: 768px) {
    .section.sec10 {
        padding: 80px 0;
    }

    .section.sec10 .con {
        flex-direction: column;
    }

    .section.sec10 .con .txt h6 {
        display: block;
        text-align: center;
    }

    .section.sec10 .con .txt h6 b {
        font-size: 18px;
    }

    .section.sec10 .con .txt1 p {
        font-size: 14px;
    }

    .section.sec10 .con .txt1 .num {
        padding: 0 6px;
    }

    .section.sec10 .con .txt2 p {
        font-size: 14px;
    }

    .section.sec10 .con .map #daumRoughmapContainer1737522187121 {
        width: 100% !important;
    }

    .section.sec10 .con .map #daumRoughmapContainer1737522187121 .wrap_map {
        height: 200px !important;
    }

    .section.sec10 .ani_text {
        display: none;
    }
}

/* sec010 - 찾아오시는길 end  */


/* [.footer] start */
.footer {
    height: auto;
    min-height: auto;
}

.footer .copy {
    width: 100%;
    height: auto;
    background-color: #181818;
    padding: 48px 0;
}

.footer .copy .wrap {
    margin: 0 auto;
    position: relative;
}

.footer .copy .wrap .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer .copy .wrap .top .ft_logo {
    color: #ededed;
    font-size: 28px;
    font-weight: 900;
}

.footer .copy .wrap p {
    font-size: 16px;
    font-weight: 300;
    color: #999;
    line-height: 1.6;
}

.footer .copy .wrap p a {
    color: #999;
}

.footer .copy .wrap .human {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 16px;
    font-weight: 300;
    color: #999;
}

/* Swiper 컨테이너의 너비를 부모에 맞게 꽉 채웁니다 */
.main-banner {
    width: 100%;
    overflow: hidden; 
}

/* 슬라이드 내부 이미지 설정 */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;      
    height: auto;   
    max-width: 100%; 
    object-fit: contain; 
}

@media (max-width: 768px) {
    .footer .copy {
        height: auto;
        padding: 48px 20px;
    }

    .footer .copy .wrap {
        width: 100%;
        text-align: center;
    }

    .footer .copy .wrap p {
        font-size: 14px;
    }

    .footer .copy .wrap .human {
        position: static;
        font-size: 14px;
        text-align: center;
    }

    .footer .copy .wrap .top {
        flex-direction: column;
        gap: 10px;
    }

    .footer .copy .wrap .top .ft_logo {
        font-size: 20px;
    }
}

/* [.footer] end */