* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.grecaptcha-badge {
    visibility: hidden;
}

img {
    display: block;
    max-width: 100%;
}

li {
    list-style: none;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

.lp_wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp_bg {
    display: block;
    position: fixed;
    inset: 0;
    background: url("../img/lp/lp_bg.png") center center / cover no-repeat;
    z-index: 0;
}

.lp_frame {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp_slider {
    height: 100vh;
    width: calc((100vh * 9 / 16) + 48px);
    max-width: 100vw;
    overflow: visible;
}

.lp_slider .slick-list {
    height: 100vh;
    overflow: visible;
}

.lp_slider .slick-track {
    height: 100vh;
    display: flex;
    align-items: center;
}

.lp_slide {
    height: 100vh;
    padding: 0 6px;
    opacity: 0.45;
    filter: blur(3px);
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.lp_slide.slick-current {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.02);
}


/* 今表示中だけはっきり */

.lp_slide.slick-current {
    opacity: 1;
}

.lp_slide>div {
    height: 100%;
}


/* ここ少し追加 */

.lp_slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* 矢印なし */

.slick-prev,
.slick-next {
    display: none !important;
}

.swipe_hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.swipe_hint_text {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #fff;
}

.swipe_hint_arrow {
    width: 18px;
    height: 10px;
    position: relative;
}

.swipe_hint_arrow {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.swipe_hint_arrow--left {
    transform: rotate(-135deg);
    animation: swipeLeft 1.6s ease-in-out infinite;
}

.swipe_hint_arrow--right {
    transform: rotate(45deg);
    animation: swipeRight 1.6s ease-in-out infinite;
}

@keyframes swipeLeft {
    0% {
        transform: translateX(0) rotate(-135deg);
    }
    50% {
        transform: translateX(-6px) rotate(-135deg);
    }
    100% {
        transform: translateX(0) rotate(-135deg);
    }
}

@keyframes swipeRight {
    0% {
        transform: translateX(0) rotate(45deg);
    }
    50% {
        transform: translateX(6px) rotate(45deg);
    }
    100% {
        transform: translateX(0) rotate(45deg);
    }
}

@media screen and (max-width: 768px) {
    html,
    body {
        height: auto;
        overflow: initial;
    }
    .lp_wrap {
        height: auto;
        overflow: initial;
    }
    .lp_slide img {
        height: auto;
        object-fit: initial;
    }
    .lp_slider {
        overflow: initial;
        height: auto;
    }
    .lp_frame {
        height: auto;
    }
    .lp_slider .slick-list,
    .lp_slider .slick-track {
        height: auto;
    }
    .lp_slide {
        height: auto;
        padding: 0;
    }
    .lp_slide>div {
        height: auto;
    }
}
