#hamburger-menu {
    display: none;
}
/* =========
SPスタイル
========= */
@media screen and (max-width: 1024px) {
    /* ハンバーガーメニューアイコン */
    /* Sp */
    #hamburger-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #fcfcfc;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: all .5s;
        z-index: 10;
		opacity:0;
    }
    .open #hamburger-menu {
        left: 100%;
        opacity: 1;
    }
    #hamburger-menu .ham-inner {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        /* font-size: 20px; */
    }
    .ham-inner ul {
        margin-top: 45px;
        width: 250px;
    }
    .list-sp > .link {
        margin: 5px 0;
    }
    .ham-inner li {
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .ham-inner li, .ham-inner a {
        color: #333;
        font-size: 16px;
    }
    .ham-trigger {
        display: block;
        position: fixed;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        transition: all .5s;
        cursor: pointer;
        z-index: 100;
    }
    .sp-nav {
        align-items: center;
    }
    .sp-nav li {
        padding-bottom: 10px;
    }
    .sp-contact {
        background-color: #63BAAB;
        width: 100%;
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ライン */
    .hamburger__line {
        display: block;
        position: absolute;
        left: 0;
        width: 30px;
        height: 3px;
        background-color: #63BAAB;
        border-radius: 2px;
        transition: all .5s;
    }
    .hamburger__line:nth-of-type(1) {
        top: 14px;
    }
    .hamburger__line:nth-of-type(2) {
        top: 23px;
    }
    .hamburger__line:nth-of-type(3) {
        top: 32px;
    }
    /* メニューオープン時 */
    #btn-hm.open .hamburger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
    }
    #btn-hm.open .hamburger__line:nth-of-type(2) {
    opacity: 0;
    }
    #btn-hm.open .hamburger__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
    }

    .hamburger-nav {
        justify-content: space-evenly;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #999;
        box-shadow: 2px 0 4px rgba(0,0,0,.1);
        transform: translateX(-100%);
        transition: transform .4s;
        z-index: 999;
        box-sizing: border-box;
    }

    .hamburger-nav.open {
    transform: translateX(0);
    }


    .hamburger-trigger {
        top: 10px;
        right: 10px;
    }
}