#video-wrp {
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 4;
}

#video-wrp video {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    pointer-events: none;
}

main {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner {
    align-items: center;
    background: #000000;
    color: #dfdfdf;
    display: flex;
    height: 65px;
    line-height: 65px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    z-index: 1;
    text-decoration: none;
}

.banner ul {
    animation: flowing 45s linear infinite;
    font-size: 22px;
    transform:translateX(100%);
    margin: 0;
    padding: 0;
    -webkit-animation: flowing 45s linear infinite;
}

.banner:hover > ul {
    animation-play-state: paused;
}

.banner ul li {
    display: inline-block;
    padding-right: 60px;
}

@keyframes flowing {
    0% { transform:translateX(0); }
    100% { transform:translateX(-100%); }
}

.contents {
    width: 60%;
    padding: 0;
    margin: 0;
    margin-top: 150px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#top {
    margin-top: 80px;
    width: 100%;
}

.swiper {
    width: 100%;
    margin-bottom: 80px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
}

.wp-block-embed {
    width: 100%;
    margin: 0;
    padding: 0;
}

.wp-block-embed__wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-embed__wrapper iframe {
    width: 65%;
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 40px;
}

.contents-top {
    width: 100%;
    padding: 0;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h2 {
    margin: 0;
    margin-left: 20px;
    padding: 0;
    color: #cf1031;
    font-weight: bold;
    font-size: 1.8em;
}

.view-all {
    margin: 0;
    padding: 0;
    text-decoration: none;
    background: #1a1a1a;
    padding:8px 25px;
    color: #ffffff;
    font-size: 1.2em;
}

.view-all:hover {
    opacity: 0.7;
}

#news {
    margin-top: 20vmin;
}

#news-contents {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: #727272 1px solid;
}

.news-content {
    width: 100%;
    padding: 0;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    border-top: #727272 1px solid;
    text-decoration: none;
}

.news-content a {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
}

.news-content a:hover {
    opacity: 0.7;
}

.news-date {
    width: 120px;
    padding: 0;
    margin: 0;
    margin-left: 20px;
    margin-right: 30px;
}

.news-date p {
    color: #777777;
    font-size: 1.2em;
}

.news-category {
    width: 110px;
    padding: 0;
    margin: 0;
    margin-right: 30px;
    font-size: 1.2em;
}

.news-category p {
    width: min-content;
    color: #ffffff;
    background-color: #414141;
    padding: 3px 12px;
    margin: 0;
}

.news-container p {
    margin: 0;
}

.news-text {
    width: 70%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2em;
}

.news-text p {
    width: 100%;
    line-break: normal;
    white-space: pre-line;
}

#profile {
    position: relative;
    margin: 0;
    margin-top: 20vmin;
    margin-bottom: 10vmin;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#members {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 1;
}

#members a {
    width: 28%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
    text-decoration: none;
    color: #000000;
}

#members a:hover {
    opacity: 0.7;
}

#members a p {
    margin: 0;
    margin-top: 10px;
    padding: 0;
    font-size: 1.5em;
}

#members a img {
    width: 100%;
    padding: 0;
    margin: 0;
}

@media screen and (max-width:1000px) {
    .banner {
        height: 55px;
        line-height: 55px;
    }
    .banner ul {
        font-size: 1.1em;
    }
    .wp-block-embed__wrapper iframe {
        width: 95%;
    }

    h2 {
        font-size: 1.7em;
        margin-left: 0;
    }

    .view-all {
        font-size: 1.1em;
        padding: 7px 12px;
    }

    .contents {
        width: 90%;
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .news-content {
        width: 100%;
        padding: 3px 10px;
    }

    .news-content a {
        flex-wrap: wrap;
        justify-content: start;
    }

    .news-date {
        width: 6em;
        margin: 5px 0px;
        margin-right: 1rem;
    }

    .news-date p {
        color: #777777;
        font-size: 1em;
        margin: 5px 0;
    }

    .news-category {
        width: auto;
        margin-right: 30px;
        font-size: 1em;
    }

    .news-category p {
        padding: 1px 12px;
    }

    .news-text {
        width: 100%;
        font-size: 1.1em;
    }

    .news-text p {
        margin: 7px 0;
    }

    #profile {
        width: 100%;
        margin-top: 50px;
    }

    #profile .contents-top {
        width: 90%;
    }

    #members {
        margin-bottom: 100px;
        justify-content: space-evenly;
    }

    #members a {
        width: 45%;
        padding: 0;
        margin: 0;
        margin-bottom: 30px;
    }

    #members a:hover {
        opacity: 0.7;
    }

    #members a p {
        margin: 0;
        margin-top: 10px;
        padding: 0;
        font-size: 1.5em;
    }

    #members a img {
        width: 100%;
        padding: 0;
        margin: 0;
    }
}