@charset "utf-8";



/*--------------------*/
/*　以下メニューCSS　*/
/*--------------------*/

nav.globalMenuSp {
    position: fixed;
    z-index: 990;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.4s;
    width: 100%;
}

nav.globalMenuSp ul {
    background: #ccc;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #333;
}

/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

/* -------------------------*/
/*   メニューボタン         */
/*------------------------- */
.navToggle {
    display: block;
    position: fixed;
    right: 13px;
    top: 15px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 999;
    background: #105b89;
    text-align: center;
}

.navToggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .3s ease-in-out;
    left: 6px;
}
.navToggle span:nth-child(1) {
    top: 9px;
}
.navToggle span:nth-child(2) {
    top: 19px;
}
.navToggle span:nth-child(3) {
    top: 29px;
}

.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}


.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.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:811px){
	/* PCでメニュボタン非表示 */
	.navToggle{display:none;}
	
	/*　PCでメニュー常時表示　*/
	nav.globalMenuSp{
		position: static;
		transform:none;
        background-color: transparent;
        width: 50%;
        max-width: 660px;
	}
    nav.globalMenuSp ul{
        display: flex;
        flex-wrap:wrap;
        background-color: transparent;
    }
	nav.globalMenuSp ul li {
		padding: 0;
		width: auto;
        flex-grow: 1;/* 余白を子要素に振り分ける */
		border-bottom: none;
        border-right: solid 1px #1da1f2;
	}
    nav.globalMenuSp ul li:first-child{
        border-left: solid 1px #1da1f2;
        
    }
    nav.globalMenuSp ul li.sp{
        display: none;
    }
	
    nav.globalMenuSp ul li a {
        line-height: 1.2em;
        padding: 0.5em 0;
    }
    nav.globalMenuSp ul li a:hover,
    nav.globalMenuSp ul li.stay a{
        color: #1da1f2;
    }


}

@media (max-width:1000px) and (min-width:811px){
    nav.globalMenuSp ul li {
        font-size: 1.7vw;
    }
}











