@charset "utf-8";
/* CSS Document */

#global-nav {
 width:        100%;
	background-color: rgba(24,27,57,1.0);
	z-index:5;
}
#global-nav.m_fixed {
 top:  0;
 left: 0;
 position: fixed;
}
#global-nav .inner {
 margin:         0 auto;
 max-width:      100%;
 padding-top:    0;
 padding-bottom: 0;
 width:          100%;
}
.global-list {
 height:     80px;
 list-style: none;
 margin:     0;
 padding:    0;
 
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 /* 左右中央寄せ */
 -webkit-box-pack:  space-between;
 -ms-flex-pack:     space-between;
 justify-content:   space-between;
 /* 上下中央寄せ */
 -webkit-box-align: center;
 -ms-flex-align:    center;
 align-items:       center;
}

@media screen and (min-width: 350px) { /*　画面サイズ 350pxから適用　*/
.global-item {
 /*
 border-left: 1px solid #FFF;
 width:       20%;
	text-align:  center;
 */
}
.global-item-head {
 margin-left:  20px;
 margin-right: 20px;
}
.global-item-sp {
 margin-left:  20px;
 margin-right: 20px;
}
.global-item-last {
 /*
 border-left:  1px solid #FFF;
 border-right: 1px solid #FFF;
 width:        20%;
	text-align:   center;
 */
}
.global-item a {
 /*
 display:         block;
 text-align:      center;
 text-decoration: none;
 color:           #000;
	font-size:       0.65em;
 */
}
.global-item-last a {
 /*
 display:         block;
 text-align:      center;
 text-decoration: none;
 color:           #FFF;
	font-size:       0.65em;
 */
}
}

@media screen and (min-width: 700px) {/*　画面サイズ 500pxから適用　*/
.global-item {
 border-left: 1px solid #FFF;
 width:       20%;
	text-align:  center;
}
.global-item-head {
 margin-left:  50px;
 margin-right: 50px;
}
.global-item-sp {
 margin-left:  50px;
 margin-right: 50px;
}
.global-item-last {
 border-left:  1px solid #FFF;
 border-right: 1px solid #FFF;
 width:        20%;
	text-align:   center;
}
.global-item a {
 display:         block;
 text-align:      center;
 text-decoration: none;
 color:           #FFF;
	font-size:       0.65em;
}
.global-item-last a {
 display:         block;
 text-align:      center;
 text-decoration: none;
 color:           #FFF;
	font-size:       0.65em;
}
}