@charset "utf-8";

main {
    width: 100%;
}

/* 메인 section */
.main-area {
    position: relative;
    /* height: 100dvh; */
    height: 100vh;
    max-height: 1080px;
    background: #333;
    box-sizing: border-box;
}

.main-swiper {
    height: 100%;
    position: relative;
}

.main-swiper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 2;
}

.main-swiper .swiper-slide {
    position: relative;
}
.main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-con-wrap {
    width: 100%;
    max-width: 1680px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 40px;
    z-index: 3;
    color: #fff;
}

.main-text {
    color: #F3F3F3;
}
.main-text h1 {
    font-size: var(--f46);
    font-weight: 600;
    line-height: 1.3em;
}
.main-text p {
    margin-top: 28px;
    font-size: var(--f24);
    line-height: 1.5em;
}

.main-btn-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 10px;
    width: 234px;
}

.main-btn-list a {
    flex: 0 0 calc(50% - 5px);
    padding: 27px 0;
    background: rgba(0,0,0,0.6);
    text-align: center;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main-btn-list a:hover {
    background: rgba(23, 42, 136, 0.9);
    transition: all 0.3s;
}
.main-btn-list a span {
    display: block;
    margin: 9px auto 0;
}

/* .main-swiper-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}

.main-swiper-nav .swiper-btn-prev,
.main-swiper-nav .swiper-btn-next {
    cursor: pointer;
    margin-top: -3px;
}

.main-swiper-nav .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: auto;
    top: auto;
    width: auto;
}

.main-swiper-nav .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 1;
}

.main-swiper-nav .swiper-pagination-bullet-active {
    background-color: #fff;
    width: 30px;
    border-radius: 10px;
} */

/* 프로모션 스와이퍼 */
.promotion-swiper {
    position: relative;
    width: 100%;
    max-width: 1000px;
}

.promotion-swiper .swiper-slide {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.promotion-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.promotion-swiper-nav {
    display: flex;
    gap: 16px;
    align-items: center;
    position: absolute;
    top: 0;
    right: 48px;
    cursor: pointer;
}

.promotion-swiper-nav .swiper-button-disabled,
.promotion-swiper-nav .swiper-button-lock {
    display: block !important;
    opacity: 0.4;
    pointer-events: none;
}

/* 공지 */
.m-notice-area {
    background-color: #F5F5F5EE;
    padding: 124px 0;
}
.width-layout {
    max-width: 1680px;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin: 0 auto;
}

.m-notice-area .promotion {
    flex: 0 1 63%;
    min-width: 0;
    position: relative;
    width: 100%;
}

.main-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--f32);
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
}
.main-title a {
    display: inline-block;
    transition: transform 0.6s ease;
}
.main-title a:hover {
    transform: rotate(90deg);
}

.m-notice-area .notice {
    flex: 1;
}
.noti-tab {
    display: flex;
    gap: 16px;
    font-size: var(--f20);
    font-weight: 500;
    padding-bottom: 16px;
}
.noti-tab li {
    color: #666;
    cursor: pointer;
}
.noti-tab li.on {
    color: #222;
    font-weight: 700;
}

.noti-list {
    border-top: 2px solid #222;
}
.noti-list li {
    padding: 24px 0;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.noti-list li h2 {
    font-size: var(--f22);
    color: #000;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.noti-list li p {
    color: #231815;
    font-size: var(--f14);
    margin-top: 12px;
}
.noti-list li p span {
    margin-right: 8px;
}

/* 오시는길 */
.m-map {
    padding: 96px 0;
}

.m-map .map {
    flex: 1;
    max-width: 1084px;
}

.map-area {
    position: relative;
    border-radius: 32px;
}

#daumRoughmapContainer1766718126143 {
    width: 100%;
    height: 580px !important;
    position: relative;
}

.main-map {
    margin-top: 30px !important;
}

#daumRoughmapContainer1766718126143 > div,
#daumRoughmapContainer1766718126143 iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.root_daum_roughmap .map {
    border-radius: 32px;
}

.map_border {
    display: none;
}

.map-info {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 5;
    background-color: #fff;
    width: 432px;
    height: 153px;
    text-align: center;
    color: #212429;
    padding: 20px 0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 4px 0 #0000001A;
}

.map-info h2 {
    font-size: var(--f24);
    font-weight: 700;
}

.map-info p {
    margin-top: 12px;
    font-size: var(--f20);
    line-height: 1.5em;

}

.map-info a {
    margin-top: 32px;
    font-weight: 400;
    color: #C8A445;
    text-decoration: underline;
}

.bn-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-direction: column;
    margin-top: 58px;
    height: 580px;
}
.bn-list li {
    flex: 1;
    width: 100%;
    max-width: 442px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.bn-list li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    pointer-events: none;
}
.bn-list li p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: var(--f24);
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    padding: 0 30px;
    z-index: 3;
}
.bn-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}
.bn-list li:hover img {
    transform: scale(1.15);
    transition: transform 0.6s ease;
}

/* 박스컨텐츠 */
.box-wrap {
    display: flex;
    align-items: center;
}
.box-wrap a {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.box-wrap a figure {
    position: relative;
    height: 310px;
}
.box-wrap a figure:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
    pointer-events: none;
}
.box-wrap a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}
.box-wrap a:hover img {
    transform: scale(1.1);
    transition: all 0.6s ease-in-out;
}

.box-wrap a .text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0 30px;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}
.box-wrap a .text h1 {
    color: #F5F5F5;
    font-weight: 800;
    font-size: var(--f32);
    line-height: 1.8em;
}
.box-wrap a .text p {
    font-size: var(--f20);
    color: #ccc;
    margin-top: 20px;
}

/* 메인 팝업 */
.main-pop-wrap {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    gap: 10px;
    z-index: 120;
}

.main-pop {
    position: relative;
    width: 100%;
    max-width: 1676px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.pop-swiper {
    position: relative;
    width: 100%;
}

.pop-swiper .swiper-slide {
    position: relative;
}

.pop-swiper .swiper-slide img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.pop-bottom-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 33px;
}

.main-pop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.main-pop-nav .swiper-btn-prev,
.main-pop-nav .swiper-btn-next{
    cursor: pointer;
}

.main-pop-nav .swiper-pagination {
    flex: none;
    position: static;
    width: auto;
}

 .swiper-pagination-fraction {
    color: #fff;
     /*position: relative;
     top: auto !important;
     bottom: auto !important;
     left: auto !important;
     width: auto !important;*/
 }

.btn-pop-close {
    display: flex;
    gap: 8px;
    align-items: center;
}
.btn-pop-close button{
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    padding: 10px 24px;
}

.mini-pop{
    position: absolute;
    z-index: 55;
    top: 150px;
    left: 100px;
}

.mini-pop img{
    width: 250px;
}


@media (max-width: 1200px) {
    .width-layout {
        flex-direction: column;
        gap: 48px;
        padding: 0 16px;
    }

    .main-con-wrap {
        flex-direction: column;
        padding: 0 22px;
    }
    .main-text h1 {
        font-size: var(--f32);
    }
    .main-text h1 span {
        display: block;
    }
    .main-text p {
        margin-top: 13px;
        font-size: var(--f16);
    }

    .m-notice-area {
        padding: 56px 0;
    }
    .m-notice-area .notice {
        width: 100%;
    }

    .main-text {
        padding: 0 7px;
        width: 100%;
    }

    .m-map {
        padding: 56px 0;
    }

    .m-notice-area .promotion {
        flex: 0;
    }

    .noti-list li h2 {
        font-size: var(--f18);
    }

    .main-title {
        font-size: var(--f24);
    }

    .m-map .map {
        width: 100%;
        max-width: 100%;
    }
    #daumRoughmapContainer1766718126143 {
        height: 520px !important;
    }

    .main-btn-list {
        width: 100%;
        margin-top: 64px;
        gap: 16px 10px;
    }
    .main-btn-list a {
        height: 104px;
        flex: 0 0 calc(33.3% - 7px);
    }

    .main-area {
        min-height: 670px;
    }

    .map-info {
        left: 50%;
        transform: translateX(-50%);
        bottom: 25px;
        width: 93%;
        height: 134px;
    }

    .map-info h1 {
        font-size: var(--f24);
    }

    .map-info h2 {
        padding-bottom: 15px;
        font-size: var(--f20);
    }

    .map-info p {
        font-size: var(--f16);
        margin-top: 0;
    }

    .bn-list {
        margin-top: 0;
        height: 446px;
    }
    .bn-list li {
        flex: 0 1 100%;
        width: 100%;
        max-width: 100%;
    }
    .bn-list li p {
        font-size: var(--f20);
        font-weight: 700;
    }

    .box-wrap {
        flex-direction: column;
    }
    .box-wrap a {
        flex: 0 0 auto;
        width: 100%;
    }
    .box-wrap a .text h1 {
        font-size: var(--f24);
        line-height: 1.2em;
        font-weight: 700;
    }
    .box-wrap a .text p {
        font-size: var(--f14);
        line-height: 1.5em;
        margin-top: 8px;
    }
    .box-wrap a .text p span {
        display: block;
    }
    .box-wrap a figure {
        height: 180px;
    }
    .box-wrap a figure img {
        object-fit: fill;
    }

    /* 팝업 */
    .main-pop {
        gap: 0;
    }
    .pop-bottom-box {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 16px;
        flex-direction: column;
    }
    .swiper-pagination-fraction {
        font-size: var(--f14);
    }
    .btn-pop-close {
        flex-wrap: wrap;
        flex-direction: column;
        margin-top: 16px;
    }
    .btn-pop-close button {
        font-size: var(--f14);
    }
}

@media (max-width: 768px) {
    .m-bn-area ul {
        width: 100%;
        height: 790px;
        flex-direction: column;
    }

    .m-bn-area ul li {
        width: 100%;
        height: 390px;
    }

    .m-bn-area ul li h2 {
        font-size: var(--f28);
    }

    .m-bn-area ul li p {
        padding-bottom: 28px;
        line-height: 1.5em;
        font-size: var(--f16);
    }

    .m-bn-area ul li a {
        font-size: var(--f16);
        line-height: 34px;
    }

    .main-title-area p {
        max-width: 80%;
    }

    .mini-pop{
        display: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
