.p-header__itemWrapper {
    display: none;
}

.p-top-content__btn {
    margin-top: 75px;
    background: #fff;
    border-radius: 50px;
}

.p-top-mv {
    position: relative;
    height: 300vh;
}

@media screen and (max-width: 767px) {
    .p-top-mv {
        /* height: 205vh; */
    }
}

.p-top-mv__bg {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.p-top-mv__wrapper::before {
    position: absolute;
    content: "";
    top: 60vh;
    left: 0;
    width: 100%;
    height: 40vh;
    background: #4180FF;
}

@media screen and (max-width: 767px) {
    .p-top-mv__wrapper::before {
        top: 67vh;
        height: 33vh;
    }
}

.p-top-mv__wrapper {
    max-width: 100%;
    overflow: hidden;
    height: 100vh;
    top: 0;
    position: sticky;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .js-kvswiper {
        height: 40vh;
    }
}

@media screen and (max-width: 767px) {
    .p-top-mv__wrapper .swiper-pagination {
        display: none;
    }
}

.js-kvswiper {
    z-index: 1;
}

.js-kvswiper .swiper-wrapper {
    position: relative;
    width: 100%;
    -webkit-transition-timing-function: cubic-bezier(0, 0.57, 0.32, 1.07);
    transition-timing-function: cubic-bezier(0, 0.57, 0.32, 1.07);
}

.js-kvswiper .swiper-slide {
    aspect-ratio: 750/420;
    border-radius: 6px;
    overflow: visible;
}

.js-kvswiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    border-radius: 6px;
}


.js-kvswiper .swiper-slide {
    position: relative;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="6" /></filter></svg>#filter');
    -webkit-filter: blur(6px);
    filter: blur(6px);
}

@media screen and (max-width: 767px) {
    .js-kvswiper .swiper-slide {
        aspect-ratio: 247/380;
    }
}

.js-kvswiper .swiper-slide .img {
    transform: scale(0.95);
    transition: transform 2s ease;
    height: 100%;
}

@media screen and (max-width: 767px){
    .js-kvswiper .swiper-slide .img img,
    .js-kvswiper .swiper-slide .img picture{
        height: 100%;
        aspect-ratio: 247/260;
        object-fit: cover;
        object-position: top;
        margin-inline: auto;
    }
}

.js-kvswiper .swiper-slide.swiper-slide-next .img,
.js-kvswiper .swiper-slide.swiper-slide-active .img,
.js-kvswiper .swiper-slide.swiper-slide-prev .img {
    transform: scale(1);
    transition: transform 2s ease;
}

.js-kvswiper .swiper-slide.swiper-slide-active {
    -webkit-filter: none;
    filter: none;
}

.js-kvswiper .swiper-slide.swiper-slide-active {
    position: relative;
}

.js-kvswiper .swiper-slide.swiper-slide-active::before {}

/* .js-kvswiper .swiper-slide::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 50vh;
    background-color: rgba(65, 128, 255, 0.7);
    mix-blend-mode: multiply;
    top: 74%;
    right: 50%;
    transform: translateX(50%);
    height: 42vh;
    z-index: -1;
    transform: translateX(50%);
    mix-blend-mode: overlay;
    transition: all;
    transition-delay: 2s;
}

.js-kvswiper .swiper-slide.swiper-slide-active::before {
    transition-delay: 2s;
}

.js-kvswiper .swiper-slide:not(.swiper-slide-active)::before {
    transition-delay: 2s;
    opacity: 0;
} */


.swiper-pagination-bullet-active {
    background-color: #F8FAFF;
}

.p-top-mv__text {
    position: absolute;
    top: 80vh;
    left: 1.875rem;
    width: 100%;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .p-top-mv__text {
        left: 0;
        top: 70vh;
    }
}

.p-top-mv__text.hide {
    opacity: 0;
}

.p-top-mv__text .text01 {
    font-weight: 700;
    font-size: 37px;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .p-top-mv__text .text01 {
        font-size: 20px;
        margin-top: 30px;
    }
}

.p-top-mv__text .text02 {
    width: 920px;
    max-width: 100%;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .p-top-mv__text .text02 {
        width: 90%;
        margin-top: 0;
    }
}

.p-top-mv__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: ease;
    transition: ease;
    width: 100vw;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}

.p-top-mv__zoom.zoom {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4180FF;
    opacity: 0;
    z-index: 5;
    -webkit-transition: opacity 1s linear;
    transition: opacity 1s linear;
}

.overlay.appear {
    opacity: 0.7;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.p-top-mv__second {
    height: 70vh;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    margin-top: 130vh;
}

.p-top-mv__second .text {
    width: 585px;
    font-weight: 500;
    color: #fff;
    font-size: 24px;
    line-height: 2.5;
    margin-inline: auto;
    letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
    .p-top-mv__second .text {
        font-size: 18px;
        line-height: 2.2222222222;
        width: 100%;
        padding-right: 20px;
    }
}

.p-top-mv__scrolldown {
    position: absolute;
    /* top: 43%; */
    bottom: 40vh;
    left: 1.875rem;
    padding-bottom: 6.25rem;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .p-top-mv__scrolldown {
        left: auto;
        right: 1.25rem;
        bottom: 33vh;
        /* top: 43%; */
    }
}

.p-top-mv__scrolldown span {
    font-size: 11px;
    font-weight: bold;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    line-height: 1;
    position: relative;
    right: -1px;
}

.p-top-mv__scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #4180FF;
    z-index: 1;
    -webkit-animation: circlemove 1.6s ease-in-out infinite;
    animation: circlemove 1.6s ease-in-out infinite;
}

@-webkit-keyframes circlemove {
    0% {
        bottom: 4.375rem;
    }

    100% {
        bottom: -5px;
    }
}

@keyframes circlemove {
    0% {
        bottom: 4.375rem;
    }

    100% {
        bottom: -5px;
    }
}

.p-top-mv__scrolldown::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1px;
    height: 4.375rem;
    background: rgba(60, 60, 60, .2);
    z-index: 1;
}

.p-top-news {
    padding-bottom: 13.125rem;
}

@media screen and (max-width: 767px) {
    .p-top-news {
        padding-bottom: 9.375rem;
    }
}

.l-top-news {
    margin-top: 8.4375rem;
}

@media screen and (max-width: 767px) {
    .l-top-news {
        margin-top: 5.625rem;
    }
}

.p-top-news__body {
    display: grid;
    grid-template-columns: 25% 1fr;
    position: relative;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

@media screen and (max-width: 767px) {
    .p-top-news__body {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .p-top-news__contents {
        margin-top: 4.6875rem;
    }
}

.p-top-mv__btn {
    position: fixed;
    top: 0;
    right: 1.875rem;
    z-index: 999;
    transform: translateY(92vh);
}

@media screen and (max-width: 767px) {
    .p-top-mv__btn {
        transform: translateY(7px);
        right: 15px;
    }
}

.p-top-mv__menu {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #4180FF;
    border-radius: 6px;
    padding: 2.5rem 1.5625rem 6.875rem;
    width: 180px;
    opacity: 1;
    display: block;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

@media screen and (max-width: 767px) {
    .p-top-mv__menu {
        display: none;
    }
}

.p-top-mv__menu.is-hide {
    width: 0;
    opacity: 0;
}

.p-top-mv__menu .cats-menu {
    margin-bottom: 0.9375rem;
}

.p-top-mv__menu .cats-menu li+li {
    margin-top: 10px;
}

.p-top-mv__menu .cats-menu li a {
    display: block;
    color: #f4f5f2;
    font-size: 18px;
    font-weight: 700;
}

.p-top-mv__menu .link {
    display: block;
    color: #f4f5f2;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    margin-top: 15px;
}

.p-header__nav-items {
    opacity: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.p-header__nav-items.is-hide {
    opacity: 0;
}