header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 60px 15px 40px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #fff;
    border-bottom: 1px solid #ececec;
}
.head-title {
    width: 390px;
    display: block;
}

.head-nav {
    width: 595px;
    max-width: 47%;
}

.head-nav ul {
    display: flex;
    justify-content: space-between;

}

header li {
    font-size: .16rem;
    list-style: none;
}

header li a {
    text-decoration: none;
    color: #000;
}


@media screen and (max-width:1050px) {
    .head-nav {
        display: none;
    }

    .head-title {
        width: 256px;
    }

    header {
    padding: 21px 20px 16px 13px;
}
}





.hamburger {
    display: none;
}

.hamburger.show {
    display: block;
}

#toggle {
    position: fixed;
    top: 50px;
    right: 40px;
}

#toggle-box {
    position: relative;
    width: 36px;
    height: 20px;
    cursor: pointer;
}

#toggle-box>span {
    width: 80%;
    height: 1px;
    left: 0;
    display: block;
    background: #000000;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box>span:nth-child(1) {
    top: 0;
}

#toggle-box>span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}

#toggle-box>span:nth-child(3) {
    bottom: 0;
}

#toggle {
    z-index: 1000;
}

#main {
    position: relative;
    z-index: 990;
}

#nav-content {
    z-index: 900;
    overflow: auto;
    width: 100%;
    height: 100%;
    background-image: url(../images/common/sp-nav-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#nav-content ul {
    list-style: none;
}

#nav-content nav a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 12.5px 0;
    transition: opacity .6s ease;
    font-family: 'M PLUS 1p', sans-serif;
    font-size: .16rem;
    border: solid 1px #fff;
    border-radius: 5px;
    margin-bottom: 35px;
}

#nav-content a:hover {
    opacity: 0.6;
}

.is-open {
    overflow: hidden;
}

.is-open #toggle-box>span {
    background: #fff;
}

#toggle-box>span:nth-child(3) {

    display: none;
}

.is-open #toggle-box>span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box>span:nth-child(3) {
    width: 0;
}

.is-open #toggle-box>span:nth-child(2) {
    top: 50%;
    transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
    z-index: 999;
    transform: translateX(0);
}

.hamburger {
    font-size: .20rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

#nav-content ul li p {
    text-align: center;
    padding: 12px 0;
    font-size: .15rem;
}

#nav-content ul li:nth-child(1) {
    margin-top: 100px;
}

/* #nav-content li span {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    color: #ffffff;
    text-decoration: none;
} */

#nav-content li span {
    font-size: .16rem;
    margin-left: 20px;
}

#nav-content li a {
    font-weight: 400;
    text-align: center;
}

#nav-content nav {
    width: 200px;
    margin: 0 auto;
    text-align: left;
}

#nav-content {
    vertical-align: middle;
    padding-bottom: 50px;
}


.nav-contact {}

#nav-content .nav-contact div a {
    display: flex;
    padding: 0;
    font-size: .16rem;
}


#toggle {
    position: fixed;
    top: 30px;
    right: 26px;
}


header nav>a img {
    width: 86px;
    margin-bottom: 0;
}

#toggle-box {
    width: 50px;
    height: 19px;
}

#toggle-box>span {
    width: 100%;
}



.sp-nav-link a {
    width: 200px;
    margin: 0 auto 16px;
    display: block;
}

.head-nav-link li:hover a {
    color: #fff;
    opacity: 1;
}

@media screen and (max-width:1050px) {
    .hamburger {
        display: block;
    }

}