﻿html, body {height: 100%;}  /*高さ100%に指定*/
body {
	margin: 0;
	padding: 0;
	position: relative;
	min-width: 1000px;  /*中央配置するボックスの横幅*/
	min-height: 800px;  /*中央配置するボックス縦幅*/
	background-color: #FFFFFF;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
    color: #696969;
}


/*html{
	width: 100%; 
	height: 100%;
	margin: 0 auto; 
	padding: 0;
	background-color: #ffffff;
    display: table;
}*/

/*body   
{
    min-height: 100%;
    background: #FFFFFF;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
    margin: 0 auto;
    padding: 0;
    color: #696969;
    display: table-cell;
    vertical-align: middle;
}*/

a:link, a:visited
{
    color: #034af3;
}

a:hover
{
    color: #1d60ff;
    text-decoration: none;
}

a:active
{
    color: #034af3;
}

/* メニュー
----------------------------------------------------------*/
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: #fff;
}
ul.menu li{
    float: left;
    position: relative;
    margin: 0;
    padding: 5px;
    width: 200px;
    background-color: #166678;  /*メニューの色*/
    display: block;
    color:#FFFFFF;
    font-weight:bold;
    text-decoration:none;
    text-align:center;
    z-index:100;
    border-right:1px solid #FFFFFF;
    border-bottom:1px solid #FFFFFF;
}

ul.menu li:first-child {
    border-left:1px solid #FFFFFF;
}

ul.menu li a {
    color: #FFFFFF;
    text-decoration:none;
}
ul.sub{
    display: none;
    position: absolute;
    margin-left: -5px;
    padding: 0;
}
ul.sub li{
    background-color: #7DB9B3;  /*メニュープルダウンの色*/
    border-left:1px solid #FFFFFF;
    border-right:1px solid #FFFFFF;
    border-bottom:1px solid #FFFFFF;
    text-align:left;
}
ul.sub li:first-child {
    border-top:1px solid #FFFFFF;
}

ul.sub li a{
    padding: 5px 10px;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -5px;
    display: block;
    color: #FFFFFF;
}
li a:hover{
	filter:alpha(opacity=70);
	opacity:0.7;	
}

.menuItem
{
    margin:3px;
}

/* LOGIN Manager
----------------------------------------------------------*/

.loginArea
{
    position:relative; /* 絶対配置の基準点 */
    /*text-align:center;*/ /* インライン要素の中央揃え */

    width: 350px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #555;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 10px #488a9e;
    -moz-box-shadow: 0px 1px 10px #488a9e;
    box-shadow: 0px 1px 10px #488a9e;
    /*border: solid #0E2E3B 1px;*/
    border: solid #4eb4c2 1px;
    
    background: #fafafa;
}


.loginTitle{
    font-family: Arial;
    font-size: 30px;
    color: #4eb4c2;
    /*color: #0E2E3B;*/
    text-align: center;
    padding-bottom: 6px;
    border-bottom: 2px solid #4eb4c2;
    /*border-bottom: 2px solid #0E2E3B;*/
    margin-bottom: 20px;
}

.loginArea p
{
    color: #077685;
    font-weight: bold;
    margin : 0;
}

.loginBtn{
    text-align:right;
    padding-top: 20px;
}

/* LOGIN Placement
----------------------------------------------------------*/

.loginAreaPlacement
{
    position:relative; /* 絶対配置の基準点 */
    /*text-align:center;*/ /* インライン要素の中央揃え */

    width: 650px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #555;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 10px #488a9e;
    -moz-box-shadow: 0px 1px 10px #488a9e;
    box-shadow: 0px 1px 10px #488a9e;
    /*border: solid #0E2E3B 1px;*/
    border: solid #4eb4c2 1px;
    
    background: #fafafa;
}


/* FORM ELEMENTS   
----------------------------------------------------------*/
div.headerManager
{
    padding:0;
    margin:0;
}

div.menuPlacement
{
	position: absolute;
	top: 0%; 
	margin-top: 0px;
    width: 100%;
    height: 30px;
    background-color: #5B0929;
}

div.menuManager
{
	/*position: absolute;*/
	top: 0%; 
	margin: 0px;
    padding: 0px;
    width: 100%;
    height: 38px;
    background-color: #166678;  /*メニューの色*/
}

div.mainContent{
    position:relative; /* 絶対配置の基準点 */
    width:1024px; /* max-width以下は幅いっぱいに広げる */
    margin:0 auto; /* ブロック要素の中央揃え */
    padding-top:20px;
    /*text-align:center;*/ /* インライン要素の中央揃え */

	/*position: absolute;
	top: 45%; 
    left: 50%;
	margin-top: -350px; 
    margin-left: -500px;
	width: 1000px;*/ 
    /*display:table-cell;*/
    /*overflow:auto;*/
}

div.mainContent.main
{
    position:absolute; /* 絶対配置 */
    top:30%;
    left:50%; /* 左から半分 */
    width:100%; /* 大枠と同じ幅に */
}

div.border{
	width: 900px; 
	border: 3px solid #CCCCCC;
	border-radius: 10px;
	padding: 10px;
}

div.title
{
	text-align:left;
    vertical-align:middle;
	/*color:#FFFFFF;*/
	font-weight:bold;
	font-size:20px;
    /*border-bottom:solid;*/
	/*border-radius: 5px;*/
    /*background-color: #00679A;*/
    /*background-color: #0F2942;*/
    float:left;
}

.contentHeader {
    width : 100%;
    overflow: hidden;
}

/* clearfix */
.contentHeader:before,
.contentHeader:after {
    content: "";
    display: table;
}


div.contentHeader:after
{
    clear:both;
}

div.titleManager
{
	font-weight:bold;
	font-size:25px;
    float:left;
}

div.returnButton
{
    text-align:right;
    padding-right:10px;
}
div.returnButton2
{
    text-align:right;
}

div.section, div.sectionP
{
    height : 1px;
    border-bottom:solid;
    /*background-color : #a19d9d;*/
    /*color : #FFFFFF;*/
    font-weight : bold;
    padding-bottom : 5px;
}
div.sectionDashed
{
    height : 1px;
    border-bottom:dashed;
    color : silver;
    font-weight : bold;
    padding-bottom : 5px;
    width : 990px;
}

div.sectionP
{
    width : 1024px;
}

div.section
{
    width : 990px;
}

div.sectionDot
{
    width : 990px;
    height : 1px;
    color : #a19d9d;
    font-weight : bold;
    padding : 0px 5px 5px 5px;
    border-bottom-style:dotted;
}

div.sectionFooter
{
    width : 990px;
    height : 1px;
    /*background-color : #a19d9d;*/
    border-bottom:solid;
    padding : 5px;
}

div.buttonArea
{
    width : 990px;
    padding : 5px;
    text-align:right;
}

div.buttonAreaCenter
{
    width : 990px;
    padding : 5px;
    text-align:center;
}

div.buttonArea table, div.buttonAreaCenter table
{
    width : 100%;
    margin-top : 5px;
}

div.searchArea
{
    margin-top : 5px;
    margin-bottom : 3px;
    margin-right: auto;
    margin-left : auto;
    width : 1000px;
}

div.content, div.contentWide
{
    margin-top : 10px;
    margin-bottom : 10px;
    margin-right: auto;
    margin-left : auto;
}

div.content
{
    width:800px;
}

div.contentWide
{
    width:990px;
}

div.contentCenter, div.contentCenter2, div.contentCenter3, div.contentCenterSmall
{
    position:relative; /* 絶対配置の基準点 */
    width:100%; /* max-width以下は幅いっぱいに広げる */
    height:250px; /* 高さの指定 */
    margin:0 auto; /* ブロック要素の中央揃え */
    text-align:center; /* インライン要素の中央揃え */
    background:#fff; /* 背景色 */

}

div.contentCenter 
{
    max-width:700px; /* 最大幅の指定 */
}

div.contentCenter2 
{
    max-width:800px; /* 最大幅の指定 */
}

div.contentCenter3
{
    max-width:980px; /* 最大幅の指定 */
}

div.contentCenterSmall
{
    max-width:400px; /* 最大幅の指定 */
}

div.contentCenter table,div.contentCenter2 table,div.contentCenterSmall table
{
    position:absolute; /* 絶対配置 */
    top:30%;
    left:50%; /* 左から半分 */
    width:100%; /* 大枠と同じ幅に */
    margin:-1.5em 0 0 -50%; /* 要素の大きさの半分引く */
}


div.contentCenter3 table
{
    position:absolute; /* 絶対配置 */
    top:20%;
    left:50%; /* 左から半分 */
    width:100%; /* 大枠と同じ幅に */
    margin:-1.5em 0 0 -50%; /* 要素の大きさの半分引く */
}

div.part
{
    margin: 10px 10px 10px 10px;
}

div.partRequired
{
    margin: 10px 10px 10px 0px;
}

div.rightButton
{
    margin: 10px 10px 10px 10px;
    text-align:right;
}

div.redMsg
{
    color:red;
    font-weight:bold;
}

div.boldMsg
{
    font-weight:bold;
}

input.textEntry ,input.textEntryBr, input.textEntryBr2, input.textEntrySide, input.textEntrySideFirst, input.loginInput, input.uploadValue
{
    border: 3px solid #ccc;
    height: 25px;
    padding: 5px;
    font-size: 15px;
	border-radius: 4px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

input.textEntry 
{
    /*テキストボックスのマージン　上右下左*/
    margin: 10px 10px 10px 10px;
}

input.textEntryBr
{
    /*テキストボックスの下のマージン０ 上右下左*/
    margin: 10px 10px 0px 10px;
}

input.textEntryBr2
{
    /*テキストボックスの上のマージン０*/
    margin: 0px 10px 10px 10px;
}

input.textEntrySide
{
    /*テキストボックスの左右のマージン０*/
    margin: 10px 0px 10px 0px;
}

input.textEntrySideFirst
{
    margin: 10px 0px 10px 10px;
}

input.loginInput
{
    /*テキストボックスの左右のマージン０*/
    margin: 0px 0px 0px 0px;

}

textarea.textEntry
{
    border: 3px solid #ccc;
    height: 120px;
    padding: 5px;
    font-size: 15px;
	border-radius: 4px;
    margin: 10px 10px 10px 10px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

/*ドロップダウンリスト*/
.select, .selectSmall, .selectTime {
    /*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;*/
    border: 3px solid #ccc;
    border-radius: 4px;
    text-indent: 1em;
    background: #FFFFFF url(select_arrow.jpg) no-repeat right;
    /*background-size:20px 10px;*/
    background-position: right center;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    vertical-align: middle;
}

.selectSmall {
    width:50px;
}

.selectTime {
    width:50px;
    margin: 10px;
}

.select {
    min-width:150px;
    margin: 10px;
}

/*チェックボックス*/
label.checkbox {
	cursor     : pointer;
	width      : 20px;
	height     : 20px;
	border     : 3px solid #ccc;
	background : #fff;
	overflow   : hidden;
	position   : relative;
	display    : inline-block;
	box-sizing : border-box;
    margin  : 15px 0px 15px 15px;
}
label.checkbox input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	margin     : 0;
	padding    : 0;
	position   : absolute;
	left       : 20px;
	width      : 20px;
	height     : 20px;
	left       : -40px;
	box-shadow : 39px 0px #FFFFFF;
	z-index    : 2;
}
label.checkbox input[type="checkbox"]:checked {
	box-shadow : none;
}
label.checkbox input[type="checkbox"]:checked:focus {
	box-shadow : 39px 0px #FFFFFF;
	opacity    : 0.1;
}
label.checkbox input[type="checkbox"]:focus {
	box-shadow : 39px 0px #FFFFFF;
}
label.checkbox:after {
	content           : '';
	position          : absolute;
	top               : 40%;
	left              : 5px;
	display           : block;
	margin-top        : -10px;
	width             : 4px;
	height            : 12px;
	border-right      : 3px solid #166678;
	border-bottom     : 3px solid #166678;
	transform         : rotate(45deg);
	-webkit-transform : rotate(45deg);
	-moz-transform    : rotate(45deg);
	z-index           : 1;
}

label.checkboxname{
	cursor     : pointer;
	height     : 20px;
	background : #fff;
	overflow   : hidden;
	display    : inline-block;
    margin-bottom:15px;
}

/*必須*/
span.required {
    font-weight:bold;
    color : red;
}

table.itemDetail
{
    border-collapse:collapse;
}
tr.item
{
    /*trに下線を表示する*/
    border-bottom:1px dashed #ccc;
} 

td.label,td.labelLeft,td.labelRight
{
	font-weight:bold;
    padding: 5px 20px 5px 10px;
}

td.labelshort
{
	font-weight:bold;
    padding: 5px 5px 5px 10px;
}

td.labelLeft
{
    text-align:left;
}

td.labelRight
{
    text-align:right;
}

td.rightButton
{
    text-align:right;
}

td.centerButton
{
    text-align:center;
    padding: 20px 20px 20px 20px;
}

.submitButton, .displayButton, .detailButton, .updateButton
{
	font-weight:bold;
    background-color: #0E2E3B;  /*ボタンの色*/
	border: 1px solid #DDD;
	border-radius: 5px;
	color: #FFF;
	padding: 10px 0;
}

.submitButton:hover, .displayButton:hover, .detailButton:hover, .updateButton:hover, .deleteButton:hover, .imageButton:hover, .downloadButton:hover
{
	filter:alpha(opacity=70);
	opacity:0.7;	
}
.disableButton
{
    font-weight:bold;
    background-color: #0E2E3B;  /*ボタンの色*/
	border: 1px solid #DDD;
	border-radius: 5px;
	color: #FFF;
	padding: 10px 0;
    filter:alpha(opacity=70);
	opacity:0.7;
    width : 75px;
}

.submitButton
{
    width : 200px;
}
.displayButton
{
    width : 100px;
}
.detailButton
{
    width : 75px;
}
.updateButton
{
    width : 100px;
}
.deleteButton
{
	font-weight:bold;
    background-color: #41A186;  /*ボタンの色*/
	border: 1px solid #DDD;
	border-radius: 5px;
	color: #FFF;
	padding: 10px 0;
    width : 100px;
    /*background-color:#077685;*/
}

.downloadButton
{
	font-weight:bold;
    background-color: #ED7D31;  /*ボタンの色*/
	border: 1px solid #DDD;
	border-radius: 5px;
	color: #FFF;
	padding: 10px 0;
    width : 400px;  
}

.gridHeader{
    color: #FFFFFF;
    font-weight:bold;
    background-color: #166678;  /*グリッドヘッダの色*/
}

.gridRow {
    background-color: #e8f2f1; /*表の交互の色7DB9B3*/
    padding:0;
}

.gridRowAlignLeft {
    text-align:left;
    padding-left : 5px;
}

.gridRowAlignCenter {
    text-align:center;
}

.gridCellPadding0
{
    padding : 0px;
}

/* ページング */
.pagerStyle span
{
text-decoration: none;
color:#FFFFFF;
background-color:#166678;
padding-left: 4px;
padding-right: 4px; 
}
.pagerStyle a
{
text-decoration: none;
padding-left: 4px;
padding-right: 4px; 
}
.pagerStyle a:hover
{
color:#FFFFFF;
background-color:#7DB9B3;
padding-left: 4px;
padding-right: 4px; 
}

/* ファイル参照 */
.uploadButton {
    /*display:inline-block;*/
    position:relative;
    overflow:hidden;
    text-align:center;
    padding: 5px;
    line-height:25px;
    width:90px;
    cursor:pointer;
    margin: 10px 0px 10px 0px;
}

.uploadButton, .fileClearButton {
    border-radius:5px;
    background:#166678;
    color:#fff;
	font: 12px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

.uploadButton:hover {
    background:#0aa;
}
.uploadButton input[type=file] {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;    
    cursor:pointer;
    opacity:0;
}
.uploadValue {
    width: 415px;
    margin: 10px 0px 10px 23px;
}
.fileClearButton
{
	border: 1px solid #DDD;
    width:90px;
    height:37px;
}

.fileClearButton:hover
{
    background:#0aa;
}

