.anw-hamburger {
    position: fixed;
    top: 50px;
    right: 50px;
    cursor: pointer;
    height: 42px;
    z-index: 9999;
    width: 60px;
}

@media (max-width: 1000px) {
    .anw-hamburger {
        top: calc(100vw * 28 / 1440);
        right: calc(100vw * 40 / 1440);
        height: calc(100vw * 42 / 1440);
        width: calc(100vw * 60 / 1440);
    }
}

@media (max-width: 750px) {
    .anw-hamburger {
        top: calc(100vw * 29 / 750);
        right: calc(100vw * 28 / 750);
        height: calc(100vw * 42 / 750);
        width: calc(100vw * 60 / 750);
    }
}

.anw-hamburger span {
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #333;
    width: 100%;
    z-index: 10;
}

@media (max-width: 1000px) {
    .anw-hamburger span {
        height: calc(100vw * 2 / 1440);
    }
}

@media (max-width: 750px) {
    .anw-hamburger span {
        height: calc(100vw * 2 / 750);
    }
}

.anw-hamburger.open span {
    background-color: #ffffff;
}

.anw-hamburger span:nth-of-type(1) {
    top: 0px;
}

.anw-hamburger span:nth-of-type(2) {
    top: 20px;
}

@media (max-width: 1000px) {
    .anw-hamburger span:nth-of-type(2) {
        top: calc(100vw * 20 / 1440);
    }
}

@media (max-width: 750px) {
    .anw-hamburger span:nth-of-type(2) {
        top: calc(100vw * 20 / 750);
    }
}

.anw-hamburger span:nth-of-type(3) {
    top: 40px;
}

@media (max-width: 1000px) {
    .anw-hamburger span:nth-of-type(3) {
        top: calc(100vw * 40 / 1440);
    }
}

@media (max-width: 750px) {
    .anw-hamburger span:nth-of-type(3) {
        top: calc(100vw * 40 / 750);
    }
}

.anw-hamburger.open span:nth-of-type(1) {
    top: 20px;
    transform: rotate(45deg);
}

@media (max-width: 1000px) {
    .anw-hamburger.open span:nth-of-type(1) {
        top: calc(100vw * 20 / 1440);
    }
}

@media (max-width: 750px) {
    .anw-hamburger.open span:nth-of-type(1) {
        top: calc(100vw * 20 / 750);
    }
}

.anw-hamburger.open span:nth-of-type(2) {
    opacity: 0;
}

.anw-hamburger.open span:nth-of-type(3) {
    top: 20px;
    transform: rotate(-45deg);
}

@media (max-width: 1000px) {
    .anw-hamburger.open span:nth-of-type(3) {
        top: calc(100vw * 20 / 1440);
    }
}

@media (max-width: 750px) {
    .anw-hamburger.open span:nth-of-type(3) {
        top: calc(100vw * 20 / 750);
    }
}

#anw-header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 673px;
    /* height: 717px; */
    height: 0;
    z-index: 10;
    background-color: rgba(82, 179, 220, 0.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: height .5s ease, opacity .5s ease, visibility 0s linear .5s;
    will-change: opacity;
}

@media (max-width: 1000px) {
    #anw-header-nav {
        width: calc(100vw * 673 / 1440);
        /* height: calc(100vw * 717 / 1440); */
    }
}

@media (max-width: 750px) {
    #anw-header-nav {
        width: 100%;
        /* height: calc(100vw * 1070 / 750); */
        overflow-y: hidden;
    }

    /* @supports (height: 100vh) {
        @media screen and (max-height: calc(100vw * 1070 / 750)) {
            #anw-header-nav {
                height: 100vh;
                overflow-y: auto;
            }
        }
    } */
}

#anw-header-nav.open {
    opacity: 1;
    height: 717px;
    visibility: visible;
    pointer-events: auto;
    transition: height .5s ease, opacity .5s ease, visibility 0s linear 0s;
}

@media (max-width: 1000px) {
    #anw-header-nav.open {
       height: calc(100vw * 717 / 1440);
    }
}

@media (max-width: 750px) {
    #anw-header-nav.open {
        height: calc(100vw * 1070 / 750);
    }
    @supports (height: 100vh) {
        @media screen and (max-height: calc(100vw * 1070 / 750)) {
            #anw-header-nav.open {
                height: 100vh;
                overflow-y: auto;
            }
        }
    }
}

.anw-header-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease, visibility 0s linear 1s;
    will-change: opacity;
    padding-top: 105px;
    /* margin-bottom: 51px; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 1000px) {
    .anw-header-menu {
        padding-top: calc(100vw * 105 / 1440);
        gap: calc(100vw * 10 / 1440);
    }
}

@media (max-width: 750px) {
    .anw-header-menu {
        padding-top: calc(100vw * 101 / 750);
        padding-bottom: calc(100vw * 123 / 750);
        gap: calc(100vw * 18 / 750);
    }
}

.anw-header-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 1s ease, visibility 0s linear 0s;
}

.anw-header-menu a:last-child {
    padding-bottom: 0px !important;
}

.anw-header-menu a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    font-family: "oswald", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.333 !important;
    opacity: 0;
    transition: opacity 1.5s ease;
    will-change: opacity;
}

.anw-header-menu.open a {
    opacity: 1;
}

@media (max-width: 1000px) {
    .anw-header-menu a {
        font-size: calc(100vw * 30 / 1440);
    }
}

@media (max-width: 750px) {
    .anw-header-menu a {
        font-size: calc(100vw * 54 / 750);
    }
}

.anw-header-menu a span {
    font-family:
        "游ゴシック体", "Yu Gothic", "YuGothic",
        "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        Meiryo, "Noto Sans JP",
        -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    /* font-feature-settings: "palt" 1; */
    transform: translateY(-5px);
    line-height: 1.875 !important;
    letter-spacing: 0.05em;
}

 @media (max-width: 1000px) {
    .anw-header-menu a span {
        font-size: calc(100vw * 16 / 1440);
        transform: translateY(calc(100vw * -5 / 1440));
    }
}

@media (max-width: 750px) {
    .anw-header-menu a span {
        font-size: calc(100vw * 28.8 / 750);
        transform: translateY(calc(100vw * -8 / 750));
    }
}

/* #header .contact-social {
    padding-left: 182px; */
    /* display: flex;
    justify-content: center; */
    /* grid-template-columns: min(calc(100vw * 108 / 1440), 108px) min(calc(100vw * 111 / 1440), 111px);
    gap: min(calc(100vw * 89.3 / 1440), 89.3px); */
/* }

@media (max-width: 1000px) {
    #header .contact-social {
        padding-left: calc(100vw * 182 / 1440);
    }
}

@media (max-width: 750px) {
    #header .contact-social {
        padding-left: calc(100vw * 92 / 750);
    }
}

#header .contact-social__block {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#header .contact-social__block--contact {
    margin-right: 81px;
}

@media (max-width: 1000px) {
    #header .contact-social__block--contact {
        margin-right: calc(100vw * 81 / 1440);
    }
}

@media (max-width: 750px) {
    #header .contact-social__block--contact {
        margin-right: calc(100vw * 150 / 750);
    }
}

#header .contact-social__title {
    font-size: 24px;
    font-family: "oswald", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.667 !important;
}

@media (max-width: 1000px) {
    #header .contact-social__title {
        font-size: calc(100vw * 24 / 1440);
    }
}

@media (max-width: 750px) {
    #header .contact-social__title {
        font-size: calc(100vw * 43.2 / 750);
    }
}


#header .contact-social__list {
    display: flex;
    gap: 12px;
    margin: 14px 0 0;
}

@media (max-width: 1000px) {
    #header .contact-social__list {
        gap: calc(100vw * 12 / 1440);
        margin: calc(100vw * 14 / 1440) 0 0;
    }
}

@media (max-width: 750px) {
    #header .contact-social__list {
        margin: calc(100vw * 23 / 750) 0 0;
    }
    #header .contact-social__block--contact .contact-social__list {
        gap: calc(100vw * 22 / 750);
    }
    #header .contact-social__block--social .contact-social__list {
        gap: calc(100vw * 23 / 750);
    }
}

#header .contact-social__icon {
    display: block;
    width: 47.74px;
    height: 47.74px;
    border-radius: 50%;
    background: #000;
    position: relative;
}

@media (max-width: 1000px) {
    #header .contact-social__icon {
        width: calc(100vw * 47.74 / 1440);
        height: calc(100vw * 47.74 / 1440);
    }
}

@media (max-width: 750px) {
    #header .contact-social__icon {
        width: calc(100vw * 86 / 750);
        height: calc(100vw * 86 / 750);
    }
}

#header .contact-social__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#header .contact-social__icon--mail img {
    width: 26px;
}

@media (max-width: 1000px) {
    #header .contact-social__icon--mail img {
        width: calc(100vw * 26 / 1440);
    }
}

@media (max-width: 750px) {
    #header .contact-social__icon--mail img {
        width: calc(100vw * 47 / 750);
    }
}

#header .contact-social__icon--phone img {
    width: 19px;
}

@media (max-width: 1000px) {
    #header .contact-social__icon--phone img {
        width: calc(100vw * 19 / 1440);
    }
}

@media (max-width: 750px) {
    #header .contact-social__icon--phone img {
        width: calc(100vw * 34 / 750);
    }
} */

#header .anw-logo-header {
    display: inline-block;
    position: fixed;
    top: 23px;
    left: 36px;
    z-index: 1000;
}

@media (max-width: 1000px) {
    #header .anw-logo-header {
        top: calc(100vw * 23 / 1440);
        left: calc(100vw * 36 / 1440);
    }
}

@media (max-width: 750px) {
    #header .anw-logo-header {
        top: calc(100vw * 20.9 / 750);
        left: calc(100vw * 23 / 750);
    }
}

#header .anw-logo-header img {
    width: 149px;
}

@media (max-width: 1000px) {
    #header .anw-logo-header img {
        width: calc(100vw * 149 / 1440);
    }
}

@media (max-width: 750px) {
    #header .anw-logo-header img {
        width: calc(100vw * 155.08 / 750);
    }
}
/* 
#header .contact-social__icon--instagram img {
    width: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
    #header .contact-social__icon--instagram img {
        width: calc(100vw * 28 / 1440);
    }
}

@media (max-width: 750px) {
    #header .contact-social__icon--instagram img {
        width: calc(100vw * 49 / 750);
    }
}

#header .contact-social__icon--facebook img {
    width: 46px;
}

@media (max-width: 1000px) {
    #header .contact-social__icon--facebook img {
        width: calc(100vw * 46 / 1440);
    }
}

@media (max-width: 750px) {
    #header .contact-social__icon--facebook img {
        width: calc(100vw * 86 / 750);
    }
} */

/* @media (max-width: 750px) {
    #header .contact-social__icon--instagram img {
        width: min(calc(100vw * 28 / 750), 28px);
    }

    #header .contact-social__icon--facebook img {
        width: min(calc(100vw * 86 / 750), 86px);
    }
} */

/* 
#main {
    position: relative;
}

.cover {
    position: absolute;
    opacity: 0.4;
    z-index: 30;
    inset: 0 auto auto 50%;
    transform: translateX(-50%);
    image-rendering: -webkit-optimize-contrast;
}
 */




.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}






/* トップ：ロゴローダー */
.p-fontloader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: #fff;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity .7s ease, visibility .7s ease;
}

.p-fontloader__logo {
    width: 240px;
    height: auto;
}

@media (max-width: 1000px) {
    .p-fontloader__logo {
        width: calc(100vw * 240 / 1440);
    }
}

@media (max-width: 750px) {
    .p-fontloader__logo {
        width: calc(100vw * 125 / 750);
    }
}

html.wf-active .p-fontloader,
html.wf-inactive .p-fontloader {
    transition-delay: .2s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* トップ：本文は長め＋少し遅らせる（上書き確定） */
html.wf-active body.front-page .l-main {
    visibility: visible;
    opacity: 1;
    transition: opacity .7s ease;
    transition-delay: .25s;
}

