body {
    font-family: "Noto Sans", sans-serif;
    text-align: justify;
    font-feature-settings: "palt";
}

main {
    overflow: hidden;
}

a {
    display: block;
    cursor: pointer;
    transition: 0.3s all;
}

a img {
    transition: 0.3s all;
}

a:hover img {
    filter: brightness(1.08);
}

.en_txt {
    font-family: "Braah One", sans-serif;
}

.disp-pc {
    display: block;
}

.disp-sp {
    display: none;
}

/* SPのみ */
@media screen and (max-width:730px) {
    .disp-pc {
        display: none;
    }

    .disp-sp {
        display: block;
    }
}


header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: 0.5s all;
}

.gnav_btn {
    display: none;
}

.gnav {
    max-width: 1110px;
    height: 60px;
    margin: 0 auto;
    background-image: url(../images/common/header_gnav_bg.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    padding-top: 0.7em;
}

.gnav ul {
    font-family: "Braah One", sans-serif;
    display: flex;
    justify-content: center;
    gap: 0 5em;
    color: #fff;
    font-size: clamp(16px,1.6vw,19px);
}

.gnav ul li {
    position: relative;
}

.gnav ul li:not(:last-child)::after {
    content: '';
    width: 1em;
    height: 1em;
    background-image: url(../images/common/header_gnav_deco.svg);
    position: absolute;
    translate: 100% -50%;
    top: 50%;
    right: -2em;
}

.gnav ul li a:hover {
    color: #e61673;
}

.gnav ul li.current {
    color: #e61673;
}

.gnav_close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.gnav_close span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    rotate: 45deg;
    top: 14px;
}

.gnav_close span:last-child {
    rotate: -45deg;
}

@media screen and (max-width:930px) {

    .gnav_btn {
        display: none;
        position: fixed;
        top: 10px;
        right: 10px;
        max-width: 70px;
        filter: drop-shadow(0 0 3px #d61f6d);
    }

    .gnav_btn.active {
        display: block;
        animation: gnavBtn 0.3s forwards;
    }

    @keyframes gnavBtn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .gnav {
        position: absolute;
        top: 10px;
        right: 10px;
        max-width: 220px;
        height: auto;
        margin: 0 0 0 auto;
        background: #000 url(../images/index/mv_nav_bg.webp);
        background-size: cover;
        padding: 30px;
        z-index: 1000;
        border-radius: 10px;
        scale: 0;
        transform-origin: top right;
        transition: 0.3s all;
    }

    .gnav.active {
        scale: 1;
    }

    .gnav ul {
        flex-direction: column;
        gap: 10px 0;
    }

    .gnav ul li:not(:last-child)::after {
        display: none;
    }
}


footer {
    background-image: url(../images/common/footer_bg03.png), url(../images/common/footer_bg02.png),url(../images/common/footer_bg02-02.png), url(../images/common/footer_bg.webp);
    background-size: auto 70px , 20% , 20% , cover;
    background-repeat: repeat-x , no-repeat , no-repeat , no-repeat;
    background-position: bottom , 100% 0 , 0 calc(100% - 80px) , top;
    padding: 5vw 0 120px;
    position: relative;
}

footer a:hover {
    opacity: 0.8;
}

footer::before {
    content: '';
    width: 100%;
    height: 34px;
    position: absolute;
    translate: 0 -50%;
    top: 0;
    left: 0;
    background-image: url(../images/common/footer_deco_pearl.png);
    background-repeat: repeat-x;
    background-size: auto 100%;
}


.footer_bnr_wrap {
    max-width: 700px;
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer_bnr_wrap li {
    width: calc(90%/3);
    filter: drop-shadow(0 0 3px #e61673);
}


footer .sns_btn_wrap {
    max-width: 200px;
    width: 70%;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

footer .sns_btn_wrap::before {
    content: '';
    width: 70%;
    height: 140%;
    position: absolute;
    translate: 0 -50%;
    top: 40%;
    left: -75%;
    background-image: url(../images/common/sns_btn_deco01.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
footer .sns_btn_wrap::after {
    content: '';
    width: 21%;
    height: 100%;
    position: absolute;
    translate: 100% -50%;
    top: 50%;
    right: 0;
    background-image: url(../images/common/sns_btn_deco02.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

footer .sns_btn_wrap li {
    width: 48%;
}

footer .copy {
    text-align: center;
    font-size: clamp(13px,1.5vw,15px);
    margin-top: 30px;
}


/* SPのみ */
@media screen and (max-width:730px) {

    footer {
        padding: 40px 0 30vw;
        background-size: auto 35px, 35%, 35%, cover;
        background-position: bottom, 100% 72%, 0 calc(100% - 40px), top;
    }

    footer::before {
        height: 15px;
    }

    .footer_bnr_wrap {
        width: 90%;
    }

    footer .sns_btn_wrap {
        width: 38%;
        margin-top: 30px;
    }

    footer .sns_btn_wrap::before {
        width: 70%;
        height: 140%;
        left: -67%;
    }

    footer .sns_btn_wrap::after {
        width: 23%;
        height: 90%;
        right: 0;
    }

}




@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        scale: 0;
    }

    100% {
        opacity: 1;
        scale: 1;
    }
}