/* ヘッダー */
.header {
    padding: 35px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
}

.header.js-scroll {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
}

.header-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-ttl {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.header-ttl img {
    display: block;
}

.header-ttl.js-scroll {
    max-width: 260px;
}

.header-nav {
    margin-right: 80px;
}

.nav-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.nav-flex li a {
    font-family: 'field-gothic-condensed', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2rem;
}

.nav-flex li a:hover {
    opacity: 0.7;
}

.header .global-nav {
    width: 100vw;
    height: 100vh;
    border-left: 0 none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    transition: .3s;
    opacity: 0;
    margin-top: 0;
    pointer-events: none;
}

.header .global-nav__wrap {
    height: auto;
    padding: 90px 15px;
    height: 100%;
    /* max-height: unset; */
    overflow: scroll;
    background: #011464;
}

.header__hamburger {
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.header__hamburger span {
    background-color: #011464;
    width: 30px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: .3s;
    border-radius: calc(infinity* 1px);
}

.header__hamburger span::before {
    top: -10px;
}

.header__hamburger span::after {
    bottom: -10px;
}

.header__hamburger span::before,
.header__hamburger span::after {
    content: '';
    background-color: #011464;
    width: 30px;
    height: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
    border-radius: calc(infinity* 1px);
}

.header__hamburger.js-open span {
    background-color: transparent;
    transition: .3s;
}

.header__hamburger.js-open span::before {
    top: 1px;
    transition: .3s;
    transform: translateX(-50%) rotate(45deg);
    background-color: #fff;
}

.header__hamburger.js-open span::after {
    bottom: -1px;
    width: 30px;
    left: 50%;
    transition: .3s;
    transform: translateX(-50%) rotate(-45deg);
    background-color: #fff;
}

.header .global-nav.js-open {
    pointer-events: all;
    transition: .3s;
    opacity: 1;
}

.global-nav__list li {
    text-align: center;
    margin-bottom: 20px;
}

.global-nav__list li a {
    color: #fff;
    font-family: 'field-gothic-condensed', sans-serif;
    font-weight: 600;
    font-size: 2rem;
}


@media only screen and (max-width:1399px) {
    .header-nav {
        margin-right: 10px;
    }

    .nav-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .header-ttl {
        max-width: 180px;
        width: 100%;
        height: auto;
    }

    .header-ttl.js-scroll {
        max-width: 150px;
    }

    .header.js-scroll {
        background-color: #fff;
        padding: 15px 20px;
        box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
    }
}





/* フッター */
footer {
    background-color: #011464;
    padding: 45px 80px 40px;
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 220px;
}

footer::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 35px;
    background: url(../img/footer-img.png) bottom right / contain no-repeat;
    width: 637px;
    height: 235px;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-ttl figure {
    max-width: 340px;
    width: 100%;
    margin-bottom: 45px;
}

.footer-ttl img {
    display: block;
}

.footer-info p {
    color: #fff;
    font-size: 1.6rem;
}

.footer-info p.footer-copy {
    font-family: 'field-gothic-condensed', sans-serif;
    font-size: 1.5rem;
    margin-top: 135px;
}


.footer-info a {
    color: #fff;
}

.footer-nav .nav-flex li a {
    font-family: 'field-gothic-condensed', sans-serif;
    font-size: 1.6rem;
    color: #fff;
}

.footer-info {
    width: 50%;
}

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

    footer {
        background-color: #011464;
        padding: 45px 80px 40px;
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 100px;
    }

    footer::after {
        opacity: 0.3;
    }
}

@media only screen and (max-width: 767px) {
    footer {
        background-color: #011464;
        padding: 45px 20px 20px;
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 100px;
    }

    .footer-ttl figure {
        max-width: 230px;
        width: 100%;
        margin-bottom: 45px;
        margin: 0 auto 40px;
    }

    .footer-info p {
        color: #fff;
        font-size: 1.4rem;
    }

    .footer-nav .nav-flex {
        display: block;
        text-align: center;
        margin-top: 30px;
    }

    .footer-nav .nav-flex li {
        margin-bottom: 15px;
    }

    .footer-info p.footer-copy {
        font-family: 'field-gothic-condensed', sans-serif;
        font-size: 1.5rem;
        margin-top: 70px;
        text-align: center;
    }

    .footer-nav .nav-flex li a {
        font-family: 'field-gothic-condensed', sans-serif;
        font-size: 2rem;
        color: #fff;
    }

    footer::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 35px;
        background: url(../img/footer-img.png) bottom right / contain no-repeat;
        width: 300px;
        height: 235px;
    }

    .footer-info {
        width: 100%;
        text-align: center;
    }
}