/* UTF-8 */
@charset "utf-8";

/*共用CSS*/
*{
	font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック', Osaka,sans-serif;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
}

body {
	background-color:#ffffff;
}

/*-------ログインフォーム-------*/
#login ul {
	margin-top: 2em;
	list-style-type: none;
}
#login ul li {
	list-style-type: none;
	text-align: center;
	color: #ff0000;
	font-weight: bold;
}
#login_form{
	width:320px;
	margin:40px auto 0 auto;
	padding:1em;
}

#login_form fieldset{
	background-color:#ffffff;
	border-color:#ffffff;
	border-radius:4px;
	padding : 0 1em;
}

ul.form-txt{
	list-style-type: none;
	padding-left: 0;
}
ul.form-txt li{
	margin: 1em 0;
}
ul.form-txt li label{
	display: block;
	width: 100%;
	color:#666666;
}

ul.form-txt li input[type="text"], ul.form-txt li input[type="password"]{
	width: 98%;
	font-size:24px;
}
.btn-submit{
	margin: 1em 0;
}

.btn-submit input[type="submit"]{
	width: 100%;
	padding: 0.4em;
	color:#ffffff;
	background-color:#0075c2;
	border:solid 1px #0075c2;
	border-radius:4px;
}

/*メインメニュー画面*/

header{
	background-color:#0075c2;
	min-width: 1000px;
}

#header-container{

	width: 1000px;
	height: 80px;
	margin:auto;

	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header-left{
	display:flex;
	align-items: center;
}

#logo {
	font-size: 24px;
/*	font-size: 1.5em;*/
	font-weight:bold;
/*	line-height:2em;*/
}

#logo a {
	text-decoration:none;
	color:#ffffff;
}


#menu{

	height:60px;
	margin:0 auto;

	line-height:1em;
}

#header-left #menu{
	margin-left:1em;
}

#menu li{
	display:inline-block;
}
#menu li a{
	display:table-cell;
	width:120px;
	height:60px;
	margin: 0 auto;
	padding-bottom:4px;

	font-size:14px;
	line-height:1em;
	text-align:center;
	vertical-align:bottom;

	background-color:#00558E;
	background-repeat:no-repeat;
	font-family:san-serif;
	font-weight:bold;
	color:#ffffff;
	text-decoration:none;

	border-radius: 5px;			/* CSS3草案 */
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
}

#menu li a:hover{
	background-color:#0064A8;
}

#menu li a i {
	display: block;
	font-size: 2.5em;
	margin-bottom: 4px;
}

#menu #logout a{
	background-image:url('../img/ico_logout_m.png');
	background-position: 42px 6px;
}

.header_h2{
    font-size: 2em;
    font-weight: bold;
    line-height: 2em;
}

/*全画面共通*/
#login-id {
	width: 1000px;
	margin: 0.5em auto;
	text-align:right;
	font-size: 20px;
}

#container {
	width: 1000px;
	margin: -40px auto 0 auto;
}
.return {
	text-align: right;
	margin-bottom: 1em;
}
