@charset "UTF-8";
/*グローバルメニュー------------------------------------------------*/

#menuber {
    width: 100%;
    clear: both;
    border-top: thin solid #E4E4E4;
}

/*global-nav------------------------------------------------*/
.global-nav {
    margin-top: 0;
    /* [disabled]margin-bottom: 30px; */
    font-size: 16px;
    list-style-type: none;
    margin-right: auto;
    margin-left: auto;
    max-width: 639px;
}
/*clearfix*/
.global-nav:after {
  content: "";
  clear: both;
  display: block;
}
.global-nav li {
	float: left;
	width: 50%;
	text-align: center;
	border-top: thin solid #E4E4E4;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*.global-nav li:nth-child(-n+3) {
	border-bottom-style: none;
}*/

/*2と4番目のli要素に適応*/
.global-nav li:nth-child(2) {
border-left: thin solid #E4E4E4;
}
.global-nav li:nth-child(4) {
border-left: thin solid #E4E4E4;
}
.global-nav a {
	display: block;
	color: #000;
	text-decoration: none;
	line-height: 60px;
}
.global-nav a:hover {
    color: #8D262C;
    background-image: url(../images/br-check30.png);
}



/*横幅1280px以上に適応*/
@media screen and (min-width: 640px) {
.global-nav li:nth-child(2) {
   border-left: thin solid #E4E4E4;
}
.global-nav li:nth-child(4) {
    border-left: thin solid #E4E4E4;
    border-right: thin solid #E4E4E4;
}
.global-nav {
	display: table;
	table-layout: fixed;
	width: 100%;
	border-top: none;
    max-width: 1200px;
}
.global-nav li {
	float: none;
	display: table-cell;
	width: 100%;
	background-position: 0% center;
    border-left: thin solid #E4E4E4;
    border-top: none;
}
}
/*global-nav　ここまで------------------------------------------------*/

