@charset "UTF-8";

/*******************************

 ナビゲーション

 *******************************/

#navigation {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 98;
    width: 55px;
}
.menuBt {
    display: inline-block;
    position: fixed;
    top: 45px;
    right: 70px;
    z-index: 100;
    width: 55px;
    height: 60px;
    color: #000;
    vertical-align: middle;
    cursor: pointer;
    transition: transform .4s;
}

.menuBt span {
    display: inline-block;
    position: absolute;
    right: 0;
    left: 0;
    width: 55px;
    height: 2px;
    margin: auto;
    box-sizing: border-box;
    background-color: #000;
    transition: all .4s;
}

.home .menuBt span {
    background-color: #000;
}
.menuBt span:nth-of-type(1) {
    top: 0;
}

.menuBt.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
    background-color: #fff;
}

.menuBt span:nth-of-type(2) {
    top: 12px;
}

.menuBt.active span:nth-of-type(2) {
    opacity: 0;
}

.menuBt span:nth-of-type(3) {
    top: 24px;
}

.menuBt.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
    background-color: #fff;
}

.menuBt__text {
    position: absolute;
    top: 30px;
    width: 100%;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    text-align: center;
    text-align: center;
}

.menuBt .menuBt__text::before {
    letter-spacing: .2rem;
    content: "menu";
}

.menuBt.active .menuBt__text::before {
    content: "";
}

.menuList {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translate(100%);
    width: 100%;
    max-width: 500px;
    height: 100%;
    transition: all .5s;
}

.menuList.open {
    transform: translateY(0);
}

.menuList .inner {
    height: 100%;
    padding: 80px 10% 50px;
    overflow-y: auto;
    background: #000;

    -webkit-overflow-scrolling: touch;
}

.menuList .inner::-webkit-scrollbar {
    display: none;
}

.menuList ul.menu01 li {
    padding: 10px 0;
    text-align: left;
}

.menuList ul.menu01 li a {
    display: block;
    padding: 5px 0;
    color: #fff;
    letter-spacing: .1em;
}

.menuList ul.menu01 li a span {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 2rem;
}

.menuList ul.menu01 li p {
    color: #bebebe;
}

.menuList ul.menu01 li a:hover {
    opacity: .6;
}

.cover {
    display: block;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, .3);
    content: "";
    transition: opacity .5s;
}

.cover.open {
    opacity: 1;
    width: 100%;
    height: 100%;
}

/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (max-width:960px) {
    .menuBt {
        top: 15px;
    }
}

/*==== mobile タブレット用css ===*/
@media screen and (max-width: 600px) {
    #navigation {
        width: 40px;
    }
    .menuBt {
        top: 0;
        right: 20px;
        width: 40px;
        height: 60px;
    }

    .menuBt span {
        width: 40px;
    }

    .menuBt span:nth-of-type(1) {
        top: 10px;
    }

    .menuBt.active span:nth-of-type(1) {
        top: 20px;
        transform: translateY(8px) rotate(-45deg);
    }

    .menuBt span:nth-of-type(2) {
        top: 17px;
    }

    .menuBt.active span:nth-of-type(2) {
        opacity: 0;
    }

    .menuBt span:nth-of-type(3) {
        top: 24px;
    }

    .menuBt.active span:nth-of-type(3) {
        top: 35px;
        transform: translateY(-8px) rotate(45deg);
    }

    .menuBt__text {
        top: 26px;
    }

    .menuBt .menuBt__text::before {
        letter-spacing: 0;
        content: "menu";
    }

    .menuList .inner {
        padding: 30px 5%;
    }

    .menuList .menuWrap {
        margin-bottom: 100px;
    }

    .menuList ul.menu01 li a {
        padding: 0 0;
        font-size: 1rem;
    }

    .menuList ul.menu01 li a span {
        font-size: 1.6rem;
    }
}
