#top-slider {
    padding-top: 30px;
}
#top-slider .slick-track {
    padding-bottom: 15px;
}
#top-slider .item-link {
    margin: 0 20px;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}

.top-news {
    padding: 60px 0;
}
.top-news .news-upper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.top-news .news-upper .top-title {
    font-size: 2.2rem;
    font-weight: 600;
}
.top-news .news-upper .more-link {
    font-size: 1.4rem;
    color: #050b25;
    text-decoration: underline;
}
.top-news .news-upper .more-link .fa-solid {
    margin-right: 10px;
}
.top-news .news-tab-buttons {
    display: flex;
    background-color: #eeeeed;
}
.top-news .news-tab-buttons li {
    font-size: 1.6rem;
    padding: 15px 35px;
    cursor: pointer;
}
.top-news .news-tab-buttons li.active {
    background-color: #003f85;
    color: #fff;
}
.top-news .news-tab-buttons li:not(:first-child) {
    border-left: 1px solid #fff;
}
.top-news .news-list li {
    border-bottom: solid 1px #c5c9c9;
    padding: 25px 0;
}
.top-news .news-list li a {
    color: #003f85;
    display: flex;
    align-items: center;
}
.top-news .news-list li time {
    color: #003f85;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 15px;
}
.top-news .news-list li a .news-title {
    color: #003f85;
    text-decoration: underline;
}

.news-tab-contents .news-tab-content {
    display: none;
}
.news-tab-contents .news-tab-content.active {
    display: block;
}

@media screen and (max-width:640px) {
    .top-news {
        padding: 30px 0;
    }
    .top-news .news-upper .top-title {
        font-size: 1.8rem;
    }
    .top-news .news-upper .more-link {
        font-size: 1.2rem;
    }
    .top-news .news-tab-buttons {
        display: flex;
        flex-wrap: wrap;
    }
    .top-news .news-tab-buttons li {
        width: 50%;
        font-size: 1.4rem;
        text-align: center;
        border-top: solid 1px #fff;
    }
    .top-news .news-tab-buttons li[data-target="all"] {
        width: 100%;
    }
    .top-news .news-tab-buttons li:nth-child(even) {
        border-right: solid 1px #fff;
    }
    .top-news .news-tab-buttons li:not(:first-child) {
        border-left: none;
    }
    .top-news .news-list li a {
        flex-direction: column;
        align-items: flex-start;
    }
    .top-news .news-list li time {
        margin-bottom: 10px;
    }
}

.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1000;
}
.popup-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.popup-inner {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 550px;
    margin: 10% auto;
    padding: 60px 30px;
    z-index: 1001;
    text-align: center;
}
.popup-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
#popup h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
#popup .main-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}
#popup .caution {
    color: #686868;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 20px 0;
}
#popup .btn-close {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 30px;
    text-align: center;
    color: #fff;
    background-color: #050b25;
    border-radius: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

@media screen and (max-width:640px) {
    .popup-inner {
        margin-top: 30%;
    }
}