.hamburger__text {
    position: absolute;
    top: 50px; /* large screen default */
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #002060;
    white-space: nowrap;
    pointer-events: none;
    z-index: 400;
}

/* Adjust MENU text for smaller screens */
@media only screen and (max-width:432px) {
    .hamburger__text {
        top: 30px;  /* move up for scaled lines */
        font-size: 10px;
        color: red;
    }
}

@media only screen and (max-width:390px) {
    .hamburger__text {
        top: 22px;
        font-size: 8px;
        color: red;
    }
}

@media only screen and (max-width:375px) {
    .hamburger__text {
        top: 22px;
        font-size: 8px;
        color: red;
    }
}


@media only screen and (max-width:2560px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 18px;
    }
    .hamburger__line--3 {
        top: 36px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /* sp-nav(ナビ)=================================== */
    .sp-nav {
        position: fixed;
        right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
        top: 0;
        width: 30%; /* 出てくるスライドメニューの幅 */
        height: 100vh;
        background-color: #B4CF9E;
        transition: all 0.5s;
        z-index: 200;
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        opacity: 0.9;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 30px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 60px;
        margin-top: 120px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 40px;
        font-weight: bold;
    }
}
@media only screen and (max-width:1920px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 18px;
    }
    .hamburger__line--3 {
        top: 36px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /* sp-nav(ナビ)=================================== */
    .sp-nav {
        position: fixed;
        right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
        top: 0;
        width: 30%; /* 出てくるスライドメニューの幅 */
        height: 100vh;
        background-color: #B4CF9E;
        transition: all 0.5s;
        z-index: 200;
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        opacity: 0.9;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 25px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 70px;
        margin-top: 120px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 30px;
        font-weight: bold;
    }
}
@media only screen and (max-width:1536px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 18px;
    }
    .hamburger__line--3 {
        top: 36px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /* sp-nav(ナビ)=================================== */
    .sp-nav {
        position: fixed;
        right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
        top: 0;
        width: 30%; /* 出てくるスライドメニューの幅 */
        height: 100vh;
        background-color: #B4CF9E;
        transition: all 0.5s;
        z-index: 200;
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        opacity: 0.9;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 25px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 70px;
        margin-top: 90px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 27px;
        font-weight: bold;
    }
}
@media only screen and (max-width:1440px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 18px;
    }
    .hamburger__line--3 {
        top: 36px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /* sp-nav(ナビ)=================================== */
    .sp-nav {
        position: fixed;
        right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
        top: 0;
        width: 30%; /* 出てくるスライドメニューの幅 */
        height: 100vh;
        background-color: #B4CF9E;
        transition: all 0.5s;
        z-index: 200;
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        opacity: 0.9;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 25px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 70px;
        margin-top: 80px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 27px;
        font-weight: bold;
    }
}
@media only screen and (max-width:1366px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 18px;
    }
    .hamburger__line--3 {
        top: 36px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /* sp-nav(ナビ)=================================== */
    .sp-nav {
        position: fixed;
        right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
        top: 0;
        width: 30%; /* 出てくるスライドメニューの幅 */
        height: 100vh;
        background-color: #B4CF9E;
        transition: all 0.5s;
        z-index: 200;
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        opacity: 0.9;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 23px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 60px;
        margin-top: 80px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 25px;
        font-weight: bold;
    }
}
@media only screen and (max-width:1280px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 18px;
    }
    .hamburger__line--3 {
        top: 36px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /* sp-nav(ナビ)=================================== */
    .sp-nav {
        position: fixed;
        right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
        top: 0;
        width: 30%; /* 出てくるスライドメニューの幅 */
        height: 100vh;
        background-color: #B4CF9E;
        transition: all 0.5s;
        z-index: 200;
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        opacity: 0.9;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 20px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 50px;
        margin-top: 80px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 21px;
        font-weight: bold;
    }
}
@media only screen and (max-width:810px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 18px;
    }
    .hamburger__line--3 {
        top: 36px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /* sp-nav(ナビ)=================================== */
    .sp-nav {
        position: fixed;
        right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/    
        top: 0;    
        width: 40%; /* 出てくるスライドメニューの幅 */    
        height: 100vh;
        background-color: #B4CF9E;
        transition: all 0.5s;
        z-index: 200;    
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        opacity: 0.9;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 20px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 50px;
        margin-top: 80px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 21px;
        font-weight: bold;
    }
}
@media only screen and (max-width:768px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 18px;
    }
    .hamburger__line--3 {
        top: 36px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /* sp-nav(ナビ)=================================== */
    .sp-nav {
        position: fixed;
        right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/    
        top: 0;    
        width: 40%; /* 出てくるスライドメニューの幅 */    
        height: 100vh;
        background-color: #B4CF9E;
        transition: all 0.5s;
        z-index: 200;    
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        opacity: 0.9;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 14px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 40px;
        margin-top: 60px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 15px;
        font-weight: bold;
    }
}
@media only screen and (max-width:432px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 5px;
        top: 10px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
        transform: scale(0.4);
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 10px;
    }
    .hamburger__line--3 {
        top: 20px;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 13px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 40px;
        margin-top: 30px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 14px;
        font-weight: bold;
    }
}
@media only screen and (max-width:390px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 5px;
        top: 10px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
        transform: scale(0.4);
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 10px;
    }
    .hamburger__line--3 {
        top: 20px;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 13px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 30px;
        margin-top: 30px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 14px;
        font-weight: bold;
    }
}
@media only screen and (max-width:375px) {
    /* hamburger(ハンバーガーアイコン)=================================== */
    .hamburger {
        position: absolute;
        left: 5px;
        top: 10px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 50px;
        height: 10px;
        right: 0;
        background-color: #002060;
        transition: all 0.5s;
        border-radius: 17px;
        transform: scale(0.4);
    }
    .hamburger__line--1 {
        top: 1px;
    }
    .hamburger__line--2 {
        top: 10px;
    }
    .hamburger__line--3 {
        top: 20px;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /*ハンバーガーがクリックされたら右からスライド*/
    .open .sp-nav {
        left: 0;
    }
    /* black-bg(ハンバーガーメニュー解除用bg)=================================== */
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #002060;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    /*ハンバーガーメニューの細かい修正*/
    .sp-nav li {
        padding-top: 40px;
        font-size: 12px;
        letter-spacing: 0.3em;
        text-decoration: none;
    }
    .sp-nav ul {
        margin-left: 40px;
        margin-top: 40px;
    }
    .sp-nav a {
        text-decoration: none;
        color: black;
    }
    /*ハンバーガーメニュー（カーソル）*/
    .sp-nav ul :hover{
        color: gray;
        font-size: 14px;
        font-weight: bold;
    }
}
