@charset "utf-8";



/*--------------------*/
/*　以下メニューCSS　*/
/*--------------------*/

nav.globalMenuSp {
    position: fixed;
    z-index: 22;
    top: 0;
    left: 0;
/*    background: #fff;*/
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.5em;
}

nav.globalMenuSp ul {
    background-color: rgba(17,17,17,0.8);
    margin: 0 auto;
    padding: 0;
    width: 100%;
    padding-bottom: 20px;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #fff
}
/*nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}*/

nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

/* -------------------------*/
/*   メニューボタン         */
/*------------------------- */
.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 20px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 23;
    background: #111;
    text-align: center;
}

.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}

.navToggle span:nth-child(1) {
    top: 10px;
}
.navToggle span:nth-child(2) {
    top: 19px;
}
.navToggle span:nth-child(3) {
    top: 28px;
}
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}

.navToggle.active {
    background: #999;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


@media screen and (min-width:911px){
	/* PCでメニュボタン非表示 */
	.navToggle{display:none;}
	
	/*　PCでメニュー常時表示　*/
	nav.globalMenuSp{
        width: auto;
		position: static;
		transform:none;
        margin-left: auto;
        background-color: transparent;
        font-size: 20px;
        line-height: 1.2em;
        padding-right: 1em;
    }
	nav.globalMenuSp ul{
        padding: 0;
        display: flex;
        justify-content: flex-end;
        align-items:center;
        background-color: transparent;
	}
	nav.globalMenuSp ul li {
		padding: 0;
		width: auto;
		border-bottom: none;
        margin-right: 2em;
	}
	
    nav.globalMenuSp ul li.sp{
        display: none;
    }
    nav.globalMenuSp ul li a{
        color: #fff;
        padding: 0.7em 0;
        position: relative;
        transition: 0.3s;
    }
    nav.globalMenuSp ul li a:after{
        position: absolute;
        left: calc(50% - 30px);
        bottom: 0;
        width: 60px;
        height: 1px;
        background-color: #fff;
        opacity: 0;
        transition: 0.5s;
        content: "";
    }
    nav.globalMenuSp ul li a:hover:after{
        bottom: 5px;
        opacity: 1;
    }

    
	
}

@media (max-width:1300px) and (min-width:911px){
    nav.globalMenuSp{
        font-size: 1.5vw;
        line-height: 1.2em;
        padding-right: 0;
    }
    nav.globalMenuSp ul li {
        margin-right: 1.5em;
    }
    
    nav.globalMenuSp ul li a:after{
        left: calc(50% - 2.3vw);
        width: 4.6vw;
    }


}











