/*! #######################################################################

MeanMenu　Basic CSS

####################################################################### */


html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: aliased;
}


/* ※要注意下記bodyを外すとアンドロイドで不具合が発生する 2018/06/18　22:19確認 */
body {
	margin: 0;
	padding: 0;
	font: 16px/1.5 "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

header {
	padding-top: 8px;
}


header nav {
	text-align: center;
	background: #efefef;
	
}

header nav ul {
	margin: 0;
	padding: 1em;
	list-style-type: none;
	
	/* 2018/06/25　23:08　アイフォンとアンドロイド端末で応募フォームをクリックした際に各メニューが一瞬表示される不具合を解消　*/
	display:none!important;
	
}

header nav ul li {
	display: inline;
	margin-left: 1em;
	
	/* 2018/06/25　23:08　アイフォンとアンドロイド端末で応募フォームをクリックした際に各メニューが一瞬表示される不具合を解消　*/
	display:none!important;

}

header nav ul li:first-child {
	margin-left: 0;
}

header nav ul li ul {
	display: none;
}


a, a:hover {
	-o-transition: color 0.25s ease-in!important;	
	-webkit-transition: color 0.25s ease-in!important;	
	-moz-transition: color 0.25s ease-in!important;	
	transition: color 0.25s ease-in!important;	
}

section, article, header {
	display: block;
	float: left;
	width: 100%;
}

article {
	width: 96%;
	padding: 3em 2%;
}

header #logo {
	display: block;
	z-index: 999999;

	padding-left: 10px;
	
/*	width: 30%; */	
	position: fixed!important;	
    top: 6px;
    top: 10px;
    top: 7px!important;
    left: 5px;
		
　/* 2018年7月6日10:29追加 */
    left: 5px;
    z-index:99;
}


header #entry {
	display: block;
	z-index: 999999;
/*	width: 30%; */	
	position: fixed!important;	
    top: 7px; 
    left: 200px;
    z-index:99;
}

@media only screen and (min-width:321px) {
	header #entry {
    left: 200px;
	}
}