@charset "UTF-8";
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/****************************************************
[library]
・全ての箇所で使用するような、汎用的なスタイルを記載する
****************************************************/
/****************************************************/
/* ボタン */
/****************************************************/
.formStyle, .btn {
  background-color: #88b4c6;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: white;
  font-family: inherit;
  padding: 7px 14px;
  border: 1px solid #6b8387;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.formStyle span, .btn span {
  font-size: 14px;
}

.btn {
  min-width: 18px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: 0.15s background-color;
  -moz-transition: 0.15s background-color;
  -o-transition: 0.15s background-color;
  transition: 0.15s background-color;
}
.btn span {
  font-size: 14px;
}
.btn:hover {
  background-color: #aacad7;
  text-decoration: none;
}
.btn.disable {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  background-color: #7b9fad !important;
}
.btn.disable:hover {
  background-color: #7b9fad !important;
  cursor: default;
}
.btn.red {
  background-color: #dd3535;
  border: 1px solid #bf2020;
  color: white;
}
.btn.red:hover {
  background-color: #e87676;
}
.btn.green {
  background-color: #16be12;
  border: 1px solid #118f0e;
  color: white;
}
.btn.green:hover {
  background-color: #19da15;
}
.btn.blue {
  background-color: #1a70d9;
  border: 1px solid #1558ab;
  color: white;
}
.btn.blue:hover {
  background-color: #5598eb;
}
.btn.sizeS {
  font-size: 12px;
}

.noMragin {
  margin: 0 !important;
  vertical-align: 0;
}

/****************************************************/
/* input(text),textarea */
/****************************************************/
.input_t {
  font-size: 100%;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 3px 3px;
  width: 200px;
  border: 1px solid #6b8387;
  background-color: #fff;
  background-repeat: no-repeat;
  font-family: inherit;
  color: #545157;
  line-height: normal;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.input_t.disable {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  background-color: #aaaaaa;
}

/*サイズ変更*/
.input_t.fs14 {
  font-size: 14px;
}

.input_t.fs12 {
  font-size: 12px;
}

.input_t.fs10 {
  font-size: 10px;
}

/****************************************************/
/* select,radio,checkbox */
/****************************************************/
/*
▼select--------------
<div class="select_wrp">
  <select name="" id="">
    <option value="subStation1"><span>A1</span></option>
    <option value="subStation2"><span>A2</span></option>
  </select>
</div>
▼radio---------------
<input type="radio" name="hoge" value="テキスト" checked id="radio01" />
<label for="radio01" class="radio"><span>テキスト</span></label>
▼checkbox------------
<input type="checkbox" name="" value="テキスト" checked id="checkbox01" />
<label for="checkbox01" class="checkbox"><span>テキスト</span></label>
*/
.select_wrp {
  position: relative;
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
  padding: 4px 3px;
  vertical-align: middle;
  border: 1px solid #6b8387;
  background-color: white;
  background-repeat: no-repeat;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.select_wrp.disable {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  background-color: #aaaaaa;
}
.select_wrp.disable select {
  background-color: #aaaaaa;
}
.select_wrp:before {
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border-top: 6px solid #545157;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

select {
  cursor: pointer;
  color: #545157;
  margin: 0;
  padding: 2px 0;
  padding-right: 20px;
  font-family: inherit;
  vertical-align: middle;
  box-sizing: content-box;
  font-size: 16px;
}

/*サイズ変更*/
.select_wrp.fs12 select {
  font-size: 12px;
}

.select_wrp.fs10 select {
  font-size: 10px;
}

input[type=radio], input[type=checkbox] {
  display: none;
}

.radio, .checkbox {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 16px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.radio span, .checkbox span {
  padding: 0 6px;
  vertical-align: 1px;
  font-size: 14px;
}
.radio:after, .checkbox:after {
  position: absolute;
  top: 50%;
  display: block;
  content: '';
  opacity: 0;
}
.radio:hover:before, .checkbox:hover:before {
  border-color: #b1bfc1;
}
.radio:before, .checkbox:before {
  background-color: white;
  position: absolute;
  top: 50%;
  left: -1px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 1px solid #6b8387;
  content: '';
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.radio.disable, .checkbox.disable {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  cursor: auto;
}
.radio.disable:before, .radio.disable:after, .checkbox.disable:before, .checkbox.disable:after {
  cursor: auto;
}
.radio.disable:hover:before, .checkbox.disable:hover:before {
  border-color: #6b8387;
}
.radio.disable:hover:after, .checkbox.disable:hover:after {
  border-color: #6b8387;
}

.radio:after {
  left: 3px;
  margin-top: -6px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  background-color: #6b8387;
}
input[type=radio]:checked + .radio:after {
  opacity: 1;
}
.radio:hover:after {
  background-color: #b1bfc1;
}

.checkbox:after {
  left: 5px;
  margin-top: -8px;
  width: 4px;
  height: 8px;
  border-right: 3px solid #6b8387;
  border-bottom: 3px solid #6b8387;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:after {
  opacity: 1;
}
.checkbox:hover:after {
  border-color: #b1bfc1;
}

/****************************************************/
/* テーブル */
/****************************************************/
.table_style, table, table tr, table th, table td {
  border-collapse: collapse;
  border: solid 1px #a2b3b6;
  padding: 4px;
  line-height: 1;
  color: #545157;
}

table {
  font-size: 16px;
  margin: 16px 0;
}
table th, table td {
  text-align: center;
  min-width: 60px;
}
table thead th {
  font-size: 12px;
}
table thead th, table tbody th {
  font-weight: bold;
  text-align: center;
  background: #6b8387;
  color: #FFF;
  line-height: 1.4;
}
table tr {
  background-color: #fff;
}

/****************************************************/
/* ページリストstyle */
/****************************************************/
/****************************************************/
/* その他汎用style */
/****************************************************/
.floatL {
  display: inline-block;
  float: left;
}

.floatR {
  display: inline-block;
  float: right;
}

.cf {
  overflow: hidden;
  *zoom: 1;
}

.even {
  background-color: #F4F4F4;
}

/****************************************************
[layout]
・全コンテンツで使用する共通部分のレイアウトを記載する
****************************************************/
/****************************************************/
/* Base */
/****************************************************/
html, body {
  height: 100%;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Helvetica, Arial, Sans-Serif;
}

body {
  font-size: 100%;
  color: #545157;
  margin: 0 auto;
  padding: 0;
  background: #fafafa url("../images/bg-dc2c.jpg") 98% bottom no-repeat fixed;
}

a {
  color: #1a70d9;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

/****************************************************/
/* container */
/****************************************************/
.container {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  *zoom: 1;
}

/****************************************************/
/* Header */
/****************************************************/
.header {
  height: 31px;
  border-bottom: 2px solid #a1a1a1;
  position: relative;
}
.header h1.icon {
  position: absolute;
}
.header h1.icon:before {
  content: "";
  display: block;
  width: 62px;
  height: 56px;
  background: url("../images/icon-dc2c.jpg") 0 0 no-repeat;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 4px;
  left: 4px;
  cursor: default;
}
.header h1.icon span {
  display: block;
  text-indent: -9999px;
  background: url("../images/logo.png") 0 0 no-repeat;
  width: 120px;
  height: 15px;
  background-size: cover;
  position: absolute;
  top: 8px;
  left: 76px;
}
.header .ver {
  font-weight: bold;
  color: #545157;
  padding-left: 74px;
  line-height: 11px;
  letter-spacing: 0.4pt;
  position: absolute;
  right: 8px;
  top: 3px;
}
.header .ver .t:after {
  content: " : ";
}
.header .ver span {
  font-size: 10px;
}

/****************************************************/
/* contents(全コンテンツ共通) */
/****************************************************/
.contents {
  margin-left: 202px;
  height: 100%;
  min-height: 100%;
  overflow: auto;
}
.contents.login {
  /* login */
  margin-left: auto;
  height: auto;
  min-height: auto;
}
.contents .contentsBox {
  padding: 16px;
  margin-top: 50px;
}
.contents p {
  padding: 16px 0;
}
.contents p span {
  font-size: 14px;
}
.contents .omnibus_box {
  border: solid 1px #a2b3b6;
  padding: 1px;
  display: inline-block;
}
.contents .omnibus_box .tit, .contents .omnibus_box .cont {
  display: table-cell;
  vertical-align: middle;
}
.contents .omnibus_box .tit {
  color: #fff;
  padding: 0 12px;
  background-color: #819599;
}
.contents .omnibus_box .tit span {
  font-size: 14px;
}
.contents .omnibus_box .cont {
  padding: 4px 10px;
}
.contents .omnibus_box .unit {
  padding: 0 8px;
}
.contents .omnibus_box .clear {
  margin: 6px 0;
  border-bottom: 1px dotted #999999;
}
.contents h1 {
  margin-left: 202px;
  padding: 14px 0;
  position: fixed;
  background-color: #FAFAFA;
  top: 0;
  z-index: 1000;
  left: 0;
  width: 100%;
 border-bottom: 1px solid #6B8387;
}
.contents h1 .btn_area {
	position: absolute;
	top: 4px;
	right: 220px;
}
.contents h1 span {
  font-size: 20px;
}
.contents h1 span.c {
	margin-left: 12px;
}
.contents h1 span.p:before {
  content: " > ";
}
.contents h2 {
  padding: 12px 0;
}
.contents h2 span {
  font-size: 14px;
}
.contents h2:before {
  content: "■";
}

/****************************************************/
/* side_menu */
/****************************************************/
.side_menu {
  height: 100%;
  min-height: 100%;
  float: left;
  width: 200px;
  border-right: 2px solid #819599;
  background-color: #6b8387;
  position: relative;
}
.side_menu h1.icon {
  background-color: #fafafa;
  position: relative;
  height: 31px;
  z-index: 2;
}
.side_menu h1.icon:before {
  content: "";
  display: block;
  width: 62px;
  height: 56px;
  background: url("../images/icon-dc2c.jpg") 0 0 no-repeat;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 4px;
  left: 4px;
  cursor: default;
}
.side_menu h1.icon span {
  display: block;
  text-indent: -9999px;
  background: url("../images/logo.png") 0 0 no-repeat;
  width: 120px;
  height: 15px;
  background-size: cover;
  position: absolute;
  top: 8px;
  right: 7px;
}
.side_menu .ver {
  font-weight: bold;
  color: #fff;
  padding-left: 74px;
  line-height: 1;
  letter-spacing: 0.4pt;
  padding-bottom: 7px;
  background-color: #6b8387;
  position: relative;
  z-index: 1;
}
.side_menu .ver .t:after {
  content: " : ";
}
.side_menu .ver span {
  font-size: 10px;
}
.side_menu .menu_list {
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  top: 0;
  overflow: auto;
  height: 100%;
  z-index: 0;
  width: 100%;
}
.side_menu .menu_list .list:first-child {
  padding-top: 70px;
}
.side_menu .menu_list .list .category {
  background-color: #819599;
  padding: 7px;
  font-weight: bold;
}
.side_menu .menu_list .list .category:before {
  content: '';
  display: inline-block;
  border-left: 8px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  padding-right: 4px;
}
.side_menu .menu_list .list .link a {
  padding: 10px 0px 10px 15px;
  display: block;
  color: #fff;
  background-color: transparent;
  -webkit-transition: 0.15s background-color;
  -moz-transition: 0.15s background-color;
  -o-transition: 0.15s background-color;
  transition: 0.15s background-color;
}
.side_menu .menu_list .list .link a:hover {
  background-color: #9dadb0;
  text-decoration: none;
}
.side_menu .menu_list .list .link a.selected {
  color: #66FF66;
}
.side_menu .menu_list .list .link a.selected:before {
  content: '';
  background-color: #66FF66;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

/****************************************************/
/* Footer */
/****************************************************/
.footer {
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.footer span.copy {
  font-size: 0.625em;
}
.footer.login {
  width: 100%;
  text-align: center;
  right: 0;
}
