@charset "utf-8";

/**
 * ハンバーガーメニューの設定
 */
#hamburger {
    position: fixed;
    top: 5px;
    right: 5px;
    background: #006400;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    z-index: 1000;
}

/*ボタン内側*/
#hamburger .hamburger-area {
    transition: all .6s; /*アニメーションの設定*/
    width: 50px;
    height: 50px;
}

#hamburger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
}

#hamburger span:nth-of-type(1) {
    top: 15px;
}

#hamburger span:nth-of-type(2) {
    top: 23px;
}

#hamburger span:nth-of-type(3) {
    top: 31px;
}

/*activeクラスが付与されると .hamburger-areaが360度回転し、その中の線が回転して×に*/
#hamburger.active .hamburger-area {
    transform: rotate(360deg);
}

#hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

#hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

#hamburger.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/**
 * ハンバーガーメニューを開いたときのメニュー設定
 */
nav.globalMenu {
    position: fixed;
    top: 60px;
    right: 5px;
    color: #fff;
    text-align: center;
    width: 150px;
    z-index: 1000;
}

nav.globalMenu.active {
    background-color: #dc3545;
    visibility: visible;
    z-index: 1000;
}

nav.globalMenu ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    z-index: 1000;
}

nav.globalMenu ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
    background-color: #378D5C;
    z-index: 1000;
}

nav.globalMenu ul li:last-child {
    padding-bottom: 0;
    z-index: 1000;
}

nav.globalMenu ul li:hover {
    background-color: #FFFFFF;
    z-index: 1000;
}

nav.globalMenu ul li:hover a {
    color: #000000;
    z-index: 1000;
}

nav.globalMenu ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
    z-index: 1000;
}
