body,
html {
    width: 100%;
    margin: 0;
    padding: 0;
    /* background-color: #eeebe6; */
}


/*頁面*/

.main {
    width: 100%;
    min-height: 49vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: img-ani 7s ease;
    animation-fill-mode: forwards;
}

@keyframes img-ani {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.title {
    position: absolute;
    left: 7vw;
    top: 40vw;
    color: #fff;
}

.title-pic {
    width: 9vw;
    position: absolute;
    left: -4vw;
    top: -3vw;
}

.title h2 {
    font-size: 1.2vw;
    font-weight: normal;
    letter-spacing: 0.25vw;
    line-height: 1.6vw;
    margin: 0 0 0.5vw 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.title h4 {
    font-size: 2.8vw;
    letter-spacing: 0.3vw;
    margin: 0 0 1.4vw 0;
    font-weight: normal;
    font-family: "GARNET-CAPITALS-BOLD";
}

.banner {
    width: 81vw;
    height: auto;
    position: absolute;
    left: 25vw;
    top: 10.2vw;
    z-index: 9;
}

.banner .swiper-container .swiper-slide {
    width: 25% !important;
    height: 28.5vw;
    box-sizing: border-box;
    cursor: pointer;
}

.banner-bg {
    width: 94%;
    height: 91%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: all 0.5s ease;
    display: block;
}

.banner-img {
    width: 96.5%;
    margin: 0.35vw auto 0 auto;
    height: 73%;
    position: relative;
    box-sizing: border-box;
    background-color: #033b60;
    overflow: hidden;
    transition: all 0.5s linear;
}

.banner-img img {
    transform: scale(1);
    transition: all 0.5s linear;
}

.banner-bg:hover .banner-img img {
    mix-blend-mode: screen;
    transform: scale(1.1);
}

.banner .swiper-button-next {
    background-image: none;
    width: 8vw !important;
    height: 0.9vw !important;
    right: 9vw;
    top: 30vw;
    z-index: 998 !important;
    margin-top: 0 !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: fixed;
    overflow: hidden;
}

.banner .next-ani {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../img/02-1/arrow-r.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.5s ease;
    animation: next-ani 1.5s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes next-ani {
    0% {
        right: 0;
    }
    50% {
        right: -100%;
    }
    51% {
        right: 100%;
    }
    100% {
        right: 0;
    }
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.more {
    position: absolute;
    left: 1.2vw;
    bottom: 0.5vw;
    font-family: "Core Sans D 55 Bold W01 Regular";
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    color: #505050;
    transition: all 0.3s linear;
    display: block;
}

.more::after {
    content: "";
    position: absolute;
    width: 1vw;
    height: 1px;
    background-color: #505050;
    position: absolute;
    left: -1.2vw;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s linear;
}

.banner-bg:hover .more::after {
    width: 0;
}

.banner-bg:hover .more {
    opacity: 0.5;
}

.banner-txt {
    width: 92%;
    font-size: 1vw;
    font-weight: normal;
    letter-spacing: 0.02vw;
    line-height: 1.6vw;
    margin: 0.7vw 0 0 1.2vw;
    font-family: 'Noto Sans JP', sans-serif;
    color: #0b5c93;
}

.date {
    color: #0b5c93;
    position: absolute;
    right: 0.6vw;
    bottom: 0.5vw;
}

.date::after {
    content: "";
    clear: both;
    display: block;
}

.date h1 {
    font-size: 1.6vw;
    font-weight: bold;
    letter-spacing: 0.02vw;
    line-height: 1.6vw;
    margin: 0;
    text-align: right;
    font-family: "Futura-Std-Heavy";
}

.date h2 {
    width: fit-content;
    margin: 0;
    font-size: 0.7vw;
    font-weight: normal;
    letter-spacing: 0.02vw;
    margin: 0;
    float: right;
    font-family: "Futura-Std-Book";
}

.date h3 {
    width: fit-content;
    margin: 0;
    font-size: 0.7vw;
    font-weight: normal;
    letter-spacing: 0.02vw;
    margin: 0 0 0 0.2vw;
    float: right;
    font-family: "Futura-Std-Book";
}