@charset "utf-8";

.invisible-style{
  display: none!important;
}

:root {
    --vw: 1vw;
    --font-main: "Noto Sans JP", sans-serif;
    --font-en: "Barlow", sans-serif;
}

html {
    font-size: 1px;
    margin: 0;
}

@media screen and (min-width: 1024px) {
    html {
        font-size: clamp(0.625px, calc(100vw / 1920), 1px);
    }
}

@media (max-width: 1023px) {
    html {
        font-size: 1.5px;
    }
}

@media (max-width: 767px) {
    html {
        font-size: clamp(0.625px, calc(100vw / 390), 1px);
    }
}

body {
    font-family: var(--font-main);
}

a {
    cursor: pointer;
}

a:hover {
    text-decoration: none;

}

body.no-scroll {
    overflow: hidden;
    height: 100%;
    position: relative;
}


body.no-scroll::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(216, 239, 250, 0.6);
    z-index: 10;
}

.img-wrap img {
    width: 50%;
    height: auto;
    display: block;
}

.w1344 {
    max-width: 1344rem;
    width: 90%;
    margin: 0 auto;

    @media (max-width: 767px) {
        max-width: 358rem;
        width: 100%;
    }
}


.sec-title {
    display: flex;
    flex-direction: column;

    .tit-en {
        font-family: var(--font-en);
        font-weight: bold;
        font-size: 72rem;
        letter-spacing: 0.08em;
        color: #01a0ea;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .tit-ja {
        font-family: var(--font-main);
        font-weight: 600;
        font-size: max(16px, 20rem);
        letter-spacing: 0.08em;
        color: #313131;
    }

    .catch {
        font-family: var(--font-main);
        font-weight: 600;
        font-size: 32rem;
        letter-spacing: 0.08em;
        line-height: 56rem;
        color: #313131;
    }

    .desc {
        font-family: var(--font-main);
        font-weight: normal;
        font-size: max(14px, 16rem);
        letter-spacing: 0.08em;
        line-height: calc((32 / 16) * 1em);
        color: #313131;
    }
}

@media (max-width: 1023px) {

    .sec-title {
        display: flex;
        flex-direction: column;

        .tit-en {
            font-size: 40rem;
        }

        .tit-ja {
            font-size: 14rem;
        }

        .catch {
            font-size: 22rem;
            line-height: 40rem;
        }

        .desc {
            font-size: 16rem;
            line-height: 32rem;
        }
    }
}

.secbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    background: #e6006d;
    border: 1px solid #e6006d;
    transition: all .4s ease;

    p {
        color: #fff;
        font-family: var(--font-main);
        font-weight: bold;
        font-size: max(16px, 18rem);
        letter-spacing: 0.08em;
        text-align: center;
        transition: all .4s ease;
    }
}

@media (max-width: 1023px) {
    .secbtn {
        border-radius: 50px;

        p {
            font-size: 18rem;
        }
    }
}

.secbtn:hover {
    background-color: #FFF;
    transition: all .4s ease;

    p {
        color: #e6006d;
        transition: all .4s ease;
    }
}

@keyframes animatedBackground {
    to {
        background-size: 100% 100%;
    }
}

@keyframes slow-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.gjs-dashed {
    .cta {
        .w1344 {
            .btns {
                .item {
                    a {
                        z-index: -1 !important;
                    }
                }
            }
        }
    }
}