/* Main CSS */
@charset "utf-8";

/* ------------------------------------ Common */
body{
  padding-top: 37px;
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color : #222;
  min-width: 420px;
}
h1 {
  font-size: 20px;
}
h2 {
  font-size: 20px;
  margin-top:0px;
}
h4 {
  font-size: 18px;
  margin-top:0px;
  line-height: 14px;
}
#contents{
  padding-top: 15px;
}
.contentsWrapper{
  padding-top: 20px;
}

@media (max-width: 768px) {
  .contentsWrapper{
    padding: 0px;
    padding-top: 20px;
    padding-right: 1px;
  }
}

/* リンク */
a {
  color: #005395;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #006fc8;
  text-decoration: underline;
}

/* jQueryValidateのエラー */
span.validateError{
  margin-left: 10px;
  color:red;
}
@media (max-width: 768px) {
  span.validateError{
    display: block;
    margin-left: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    color:red;
  }
}

/* 幅 */
.width-xs {
  width: 80px;
}
.width-ssm {
  width: 120px;
}
.width-sm {
  width: 160px;
}
.width-md {
  width: 240px;
}
.width-lg {
  width: 360px;
}
.width-xl {
  width: 480px;
}
.width-xxl {
  width: 638px;
}
.width-auto {
  width: auto;
}

.width-date {
  width: 150px;
}
.width-zip {
  width: 100px;
}


/* マージン */
.mt20{
  margin-top: 20px;
}
.mt40{
  margin-top: 40px;
}
.ml10i{
  margin-left: 10px !important;
}
.ml5{
  margin-left: 5px;
}
.ml10{
  margin-left: 10px;
}
.mr10{
  margin-right: 10px;
}
.mb15{
  margin-bottom: 15px;
}
.mb20{
  margin-bottom: 20px;
}

/* パディング */
.pr10{
  padding-right: 10px;
}

.nodata{
  margin-top: 18px;
  margin-bottom: 20px;
}

/* ------------------------------------ print */
@media print {
 a[href]:after {
 content: "" !important;
 }

 abbr[title]:after {
 content: "" !important;
 }
}

/* ------------------------------------ Header */
.navbar-header img.logo1{
  width: 70px;
}
.navbar-header img.logo2{
  width: 100px;
}

/* ------------------------------------ Footer */
#footer p{
  margin-bottom: 4px;
}
#footer p small{
  font-size: 11px;
}

/* ------------------------------------ SideMenu */
.list-group-item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  background-color: #005395;
  border-color: #003762;
}


/* ------------------------------------ Label */
.label {
  border-radius: 2px;
  font-weight: normal;
  padding: 3px 6px 1px 6px;
  font-size: 12px;
}

/* ------------------------------------ pager */
.pagerRow{
  padding-top: 10px;
  padding-right: 0px;
  padding-left: 0px;
  padding-bottom: 5px;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0 0;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 4px 8px;
  font-size: 11px;
  margin-left: 2px;
  line-height: 1.42857143;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 0px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-radius: 0px;

}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #ddd;
  border-color: #f5f5f5;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  cursor: default;
  color: #aaa;
  background-color: #333;
  border-color: #555;
}

/* ------------------------------------ block */
#scBlock {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 3000;
}
#scBlock > .background {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.50;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}

#scBlock img {
  position:absolute;
  top:50%;
  left:50%;
  margin-left: -24px;
  z-index: 3020;
}

/* ------------------------------------ Icon */
.miniIcon{
 font-size: 12px;
}
.alertIcon{
 font-size: 16px;
}
.pagerIcon{
 font-size: 10px;
}
.sortIcon{
 font-size: 12px;
}
/* ------------------------------------ List */

.sortIconPadding{
  padding-right: 16.5px;
}
.sortIconPaddingC{
  padding-left: 8.25px;
  padding-right: 8.25px;
}
.sortIconPaddingR{
  padding-left: 16.5px;
}

/* ------------------------------------ Table */
.detaiTablel th{
  width: 140px;
  text-align: right;
}
@media (max-width: 768px) {
  .detaiTablel th{
    width: auto;
    text-align: left;
  }
}
.detaiTablel td{
  padding-left: 200px;
}

.formTable{
  margin-bottom: 20px;
}
.formTable tr{
  height: 46px;
}
.formTable tr.textarea th,
.formTable tr.textarea td{
  padding-top: 6px;
  padding-bottom: 6px;
}
.formTable th{
  width: 136px;
  padding-right: 20px;
  text-align: right;
}
.formTable input[type=radio]{
  position: relative;
  top: 2px;
  margin-right: 4px;
}
.formTable .radioarea label{
  margin-right: 20px;
  cursor: pointer;
}
.formTable tr.checkboxArea{
  height: 36px;
  color: #333;
  vertical-align: top;
}
.formTable tr.checkboxArea .form-check-label{
  font-weight: normal;
}
.formTable tr.checkboxArea .form-check-label{
  font-weight: normal;
}
.formTable input[type=checkbox]{
  position: relative;
  top: 2px;
}


.selectionTable{
  margin-bottom: 20px;
}
.selectionTable tr{
  height: 46px;
}
.selectionTable th{
  width: 100px;
  padding-right: 20px;
  text-align: right;
}
.selectionTable tr.textarea th,
.selectionTable tr.textarea td{
  padding-top: 6px;
  padding-bottom: 6px;
}
.selectionTable textarea{
  width: 440px;
  resize: none;
}

.innerFormTable{
}
.innerFormTable tr{
  height: 46px;
}
.innerFormTable th{
  width: 60px;
  padding-right: 14px;
  text-align: right;
  font-weight: normal;
  font-size: normal;
}

.innerSelectionsTableTh{
  width: 240px;
}
.innerSelectionsTable td{
  padding-bottom: 4px;
}
.innerSelectionsTable td.name{
  width: 180px;
}

/* PC/SmartPhoneのみ表示 */
.table .onlyPc{
  display: table-cell;
}
.table .onlySP{
  display: none;
}
.table .onlyPcTr{
  display: table-row;
}
.table .onlySPTr{
  display: none;
}
@media (max-width: 768px) {
  .table .onlyPc{
    display: none;
  }
  .table .onlySP{
    display: table-cell;
  }
  .table .onlyPcTr{
    display: none;
  }
  .table .onlySPTr{
    display: table-row;
  }

}

.formTable .updateCheckbox input{
  top: -1px;
}
.formTable .notice{
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 12px;
}

.table-condensed > tbody > tr > td.rightAlignCell{
  padding-right: 20px;
}

/* ------------------------------------ Column */
.colSide{
  width: 200px;
  margin-right: -200px;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}
.colMain{
  width: 100%;
  float: right;
}
.colMainContents{
  margin-left: 200px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .colSide{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 15px;
  }
  .colMain{
    width: 100%;
  }
  .colMainContents{
    margin-left: 0px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* ------------------------------------ Alert */
.autoHide{
  float: none;
}

/* ------------------------------------ AlertBox */
.scAlertColumn{
  width: 50%;
  min-width: 360px;
  margin: 0 auto;
}
.scAlertColumn i.warning{
  color:#FDB82F;
}
.scAlertColumn i.error{
  color:#e31d1a;
}
.jconfirm.white .jconfirm-box {
  border-radius: 2px;
}
.jconfirm .jconfirm-box div.title {
  font-size: 18px;
  font-weight: normal;
  color:#eee;
  margin-bottom: 23px;
  padding:5px 12px;
  display:block;
  background-color:#005395;
  letter-spacing:2px;
  border-radius: 2px 2px 0px 0px;
}
.btnBorder{
  border: 1px solid #adadad !important;
}


/* ------------------------------------ Button */
.btn{
  border-radius: 2px;
}
.btn-top {
  width: 100%;
  height: 80px;
  margin-bottom: 20px;
  padding: 10px 16px;
  font-size: 24px;
  line-height: 1.33;
  border-radius: 3px;
}
.btn-top:hover {
  border:solid 1px #999;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 2px;
}

.btn-primary{
  background-color: #005395;
  border-color: #005395;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #006fc8;
  border-color: #006fc8;

}
.btn-primary:active,
.btn-primary.active {
  background-color: #006fc8;
  border-color: #006fc8;
}

.btn-gray{
  background-color: #c0c0c0;
  border-color: #c0c0c0;
}
.btn-gray:hover,
.btn-gray:focus {
  background-color: #dadada;
  border-color: #dadada;

}
.btn-gray:active,
.btn-gray.active {
  background-color: #dadada;
  border-color: #dadada;
}

.btn-margin{
  margin-left: 8px;
  margin-right: 8px;
}

.tokyoBtn{
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-size:18px 18px;
}

/* ------------------------------------ Form */
.form-control {
  display: inline;
}
.form-control {
  border-radius: 2px;
}
.error {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.error:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}

.input-xs {
  height: 24px;
  padding: 2px 3px;
  font-size: 11px;
  line-height: 1.2;
  border-radius: 2px;
}
select.input-xs {
  height: 24px;
  line-height: 24px;
}


.searchForm{
  padding: 12px 12px 8px 12px;
  margin-bottom: 10px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 2px;
  line-height: 28px;
}
.searchForm table{
  width: 100%;
}
.searchForm input,
.searchForm select {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.searchForm select {
  height: 30px;
  padding: 4px 7px;
  font-size: 13px;
}
.searchFormItem{
  float: left;
}
.searchFormItemR{
  float: right;
}
.searchForm .btn-sm {
  margin-bottom: 4px;
}
.searchFormItemR .btn-sm {
  margin-left: 10px;
}


.categoryAddForm{
  margin-bottom: 10px;
  line-height: 28px;
}
.categoryAddForm table{
  width: 100%;
}
.categoryAddForm input,
.categoryAddForm select {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.categoryAddFormItem{
  float: left;
}
.categoryAddFormItemR{
  float: right;
}
.categoryAddForm .btn-sm {
  margin-bottom: 4px;
}
.categoryAddFormItemR .btn-sm {
  margin-left: 10px;
}

input[type="file"] {
  display: inline-block;
}

/* ------------------------------------ GoogleMAP */
#contentsMap{
  padding-top: 0px;
}

.mapHeader{
}

.mapSearchForm{
  padding: 6px 0;
  padding-right: 20px;
  float: left;
}
.mapSearchForm input{
    border:0;
    padding:4px;
    font-family:Arial, sans-serif;
    border:solid 1px #aaa;
    width:200px;

    -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: inner 0 0 3px rgba(0, 0, 0, 0.2);
}
.mapSearchForm input:focus {
    border:solid 1px #006fc8;
}
.mapSearchForm input:hover {
    border:solid 1px #006fc8;
}
.mapSearchForm button{
  position: relative;
  top: -1px;
}

.mapViewForm{
  float: left;
  line-height: 43px;
}


.btn-map,
.btn-group-map > .btn {
  padding: 3px 5px 2px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}

.myMapRow{
  margin-right: -30px;
  margin-left: -30px;
}

#myMap {
    width: 100%;
    height: 600px;
    padding: 0px;
    margin-bottom: 15px;
    border-bottom: 1px solid #006fc8;
}
#myBoringMap {
    width: 100%;
    height: 500px;
    padding: 0px;
    margin-bottom: 15px;
    border: 1px solid #006fc8;
}
#detailMap {
    width: 60%;
    height: 300px;
    padding: 0px;
    border: 1px solid #ddd;
    margin-bottom: 4px;
}
.mapBlock{
    width: 100%;
    height: 100%;
    background-color: #ddd;
    display: table;
    text-align: center;
}
.mapLoading{
    vertical-align: middle;
    display: table-cell;
    font-size: 12px;
}

.infoWindowTable{
  max-width: 400px;
}

.infoWindowTable th{
  font-weight: normal;
  text-align: right;
  vertical-align: top;
  width: 80px;

}
.infoWindowTable td{
  vertical-align: top;
}

.infoWindowTableForBoring{
  max-width: 400px;
}

.infoWindowTableForBoring th{
  font-weight: normal;
  text-align: right;
  vertical-align: top;
  width: 54px;

}
.infoWindowTableForBoring td{
  vertical-align: top;
}

#keyword{
  border: 1px solid #ddd;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 13px;
}
#keyword:focus{
  border: 1px solid #aaa;
}

.btnTypeSwitch{
  background-color: #fff;
  border: 2px solid #fff;
  opacity: 0.75;
}
.btnTypeSwitch:hover{
  background-color: #EBEBEB;
  border: 2px solid #EBEBEB;
  opacity: 0.95;
}

.btnTypeSwitch.red{
  background-color: #E7242E;
  border: 2px solid #E7242E;
}
.btnTypeSwitch.red > div{
  color: #fff;
}

.btnTypeSwitch.blue{
  background-color: #014099;
  border: 2px solid #014099;
}
.btnTypeSwitch.blue:hover{
  background-color: #014099;
  border: 2px solid #014099;
}
.btnTypeSwitch.blue > div{
  color: #fff;
}

.btnTypeSwitch.yellow{
  background-color: #FFDE00;
  border: 2px solid #FFDE00;
}
.btnTypeSwitch.yellow:hover{
  background-color: #FFDE00;
  border: 2px solid #FFDE00;
}
.btnTypeSwitch.yellow > div{
  color: #222;
}

.btnTypeSwitch.green{
  background-color: #12923C;
  border: 2px solid #12923C;
}
.btnTypeSwitch.green:hover{
  background-color: #12923C;
  border: 2px solid #12923C;
}
.btnTypeSwitch.green > div{
  color: #fff;
}

.btnTypeSwitch.purple{
  background-color: #922D8D;
  border: 2px solid #922D8D;
}
.btnTypeSwitch.purple:hover{
  background-color: #922D8D;
  border: 2px solid #922D8D;
}
.btnTypeSwitch.purple > div{
  color: #fff;
}

.btnTypeSwitch.pink{
  background-color: #E9536B;
  border: 2px solid #E9536B;
}
.btnTypeSwitch.pink:hover{
  background-color: #E9536B;
  border: 2px solid #E9536B;
}
.btnTypeSwitch.pink > div{
  color: #fff;
}

.btnTypeSwitch.brown{
  background-color: #846138;
  border: 2px solid #846138;
}
.btnTypeSwitch.brown:hover{
  background-color: #846138;
  border: 2px solid #846138;
}
.btnTypeSwitch.brown > div{
  color: #fff;
}

.btnTypeSwitch.lightblue{
  background-color: #00B0EC;
  border: 2px solid #00B0EC;
}
.btnTypeSwitch.lightblue:hover{
  background-color: #00B0EC;
  border: 2px solid #00B0EC;
}
.btnTypeSwitch.lightblue > div{
  color: #fff;
}

.btnTypeSwitch.orange{
  background-color: #F0831D;
  border: 2px solid #F0831D;
}
.btnTypeSwitch.orange:hover{
  background-color: #F0831D;
  border: 2px solid #F0831D;
}
.btnTypeSwitch.orange > div{
  color: #fff;
}

.btnTypeSwitch.black{
  background-color: #32302F;
  border: 2px solid #32302F;
}
.btnTypeSwitch.black:hover{
  background-color: #32302F;
  border: 2px solid #32302F;
}
.btnTypeSwitch.black > div{
  color: #fff;
}

.btnTypeSwitch.white{
  background-color: #eee;
  border: 2px solid #eee;
}
.btnTypeSwitch.white:hover{
  background-color: #fff;
  border: 2px solid #fff;
}
.btnTypeSwitch.white > div{
  color: #222;
}

.btnListSwitch{
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 16px;
  padding: 1px;
  color: #555;
  cursor: pointer;
}

.estatesListArea{
}

.deleteTokyoBoring{
  cursor: pointer;
  color: #CC0000;
}
.deleteTokyoBoring:hover,
.deleteTokyoBoring:focus {
  color: #ff0000;
  text-decoration: underline;
}

/* ------------------------------------ Estate Add Complete */
/* ------------------------------------ Estate Edit Complete */
.estateCompleteTitle{
  font-size: 18px;
  margin-bottom: 20px;
}
.estateCompleteDesc{
  margin-bottom: 50px;
}


/* ------------------------------------ UserAdd UserEdit */
.limit_date{
  float: left;
}
.limit_time{
  margin-left: 20px;
  float: left;
}


/* ------------------------------------ UserCategory */
#categoryAddButton{
}

/* ------------------------------------ CreateComplete */
.createCompleteTitle{
  font-size: 18px;
}
.createCompleteMenu ul{
  margin-top: 15px;
  padding-left: 20px;
  list-style:none;
  font-size: 18px;
  line-height: 32px;
}

/* ------------------------------------ Century21 Add */
.formTable .onlyMansion{
  display: none;
}
.formTable .onlyHouse{
  display: none;
}






/* ------------------------------------ ExamList */
.examListTitle{
  font-size: 16px;
  padding-bottom: 10px;
}
.examListContents{

}
.examListButton{
  padding-bottom: 4px;
}

.examListImage {
/*
  width: 68px;
  text-align: center;
  border: 1px solid #cdcdcd;
  background-color: #fff;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
*/
}
.examListImage img {
  border: 1px solid #cdcdcd;
  max-width: 66px;
  max-height: 66px;
}
.unSelection{
  color: red;
  font-weight: bold;
}

/* ------------------------------------ ExamDetail */
.examDetalContents{
  font-family:"Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.examDetalContents .sentence{
}
.examDetalContents .image{
  padding-top: 20px;
}
.examDetalContents .image img{
  max-width: 360px;
  max-height: 360px;
}

/* ------------------------------------ ExamUpdate */
.examUpdate .image{
  padding-top: 10px;
  padding-bottom: 10px;
}
.examUpdate .image img{
  max-width: 360px;
  max-height: 360px;
}
.history_error{
  padding-top:1px;
}


/* ------------------------------------ System */
.systemNotice{
  margin-bottom: 10px;
}


/* ------------------------------------ Modal */
.modal-header {
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #005395;
    color: #fff;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-topright: 2px;
     border-top-left-radius: 2px;
     border-top-right-radius: 2px;
 }
.modal-body {
}


/* ------------------------------------ Header */
#header{
  min-width: 420px;

}
#header .title{
    display: inline-block;
    white-space: nowrap;
}
#header img.logo{
  height: 40px;
  float: left;
  margin-top: 5px;
  margin-left: 15px;
}
@media (min-width: 768px) {
  #header img.logo{
    margin-left: 0px;
    margin-right: 15px;
  }
}
#header .titlelogo{
  letter-spacing: 1.5px;
}

/* スリムヘッダーメニュー */
.navbar {
  min-height: 36px !important
}
.navbar-brand {
  height: 36px;
  padding: 8px 13px;
}
.navbar-nav > li > a {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
@media (min-width: 768px) {
  .navbar-nav > li > a {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 4px 6px;
  margin-top: 6px;
  margin-right: 15px;
  margin-bottom: 6px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
}
/* /スリムヘッダーメニュー */

div.navbar-name-wrap{
  float: right;
  margin-right: 10px;
}
div.navbar-name{
  color: #eee;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  height: 36px;
  line-height: 120%;
}


.navbar-brand {
  font-size: 18px;
  line-height: 20px;
}
.navbar-default {
  background-color: #005395;
  border-color: #005395;
}
.navbar-default .navbar-brand {
  color: #eee;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #eee;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #eee;
}

.navbar-default .navbar-nav > li > a {
  color: #eee;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #aaa;
  background-color: #006fc8;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #333;
  background-color: #b4deff;
}
.navbar-default .navbar-link {
  color: #eee;
}
.navbar-default .navbar-link:hover {
  color: #aaa;
}

.navbar-default .navbar-toggle {
  border-color: #b4deff;
  background-color: #b4deff;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #b4deff;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #005395;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #aaa;
  background-color: #006fc8;
}

/* ------------------------------------ 見出し */
/* 基礎罫線 */
.border {
    color: #333333;
    margin: 0 0 10px;
    padding: 8px 8px;
    background-color: #ffffff;
}

.gray {
    color: #333333;
    background-color: #ffffff;
    border-color: #005395;
}

/* 下線 */
.bottomline {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
/* 左線 */
.leftline {
    border-left-width: 1px;
    border-left-style: solid;
}
.leftline1 {
    border-left-width: 1px;
    border-left-style: solid;
}
.leftline2 {
    border-left-width: 2px;
    border-left-style: solid;
}
.leftline3 {
    border-left-width: 3px;
    border-left-style: solid;
}
.leftline4 {
    border-left-width: 4px;
    border-left-style: solid;
}
.leftline5 {
    border-left-width: 5px;
    border-left-style: solid;
}
.leftline6 {
    border-left-width: 6px;
    border-left-style: solid;
}
.leftline7 {
    border-left-width: 7px;
    border-left-style: solid;
}
.leftline-solid {
    border-left-width: 1px;
    border-left-style: solid;
}
.leftline1-solid {
    border-left-width: 1px;
    border-left-style: solid;
}
.leftline2-solid {
    border-left-width: 2px;
    border-left-style: solid;
}
.leftline3-solid {
    border-left-width: 3px;
    border-left-style: solid;
}
.leftline4-solid {
    border-left-width: 4px;
    border-left-style: solid;
}
.leftline5-solid {
    border-left-width: 5px;
    border-left-style: solid;
}
.leftline6-solid {
    border-left-width: 6px;
    border-left-style: solid;
}
.leftline7-solid {
    border-left-width: 7px;
    border-left-style: solid;
}
.leftline-dashed {
    border-left-width: 1px;
    border-left-style: dashed;
}
.leftline1-dashed {
    border-left-width: 1px;
    border-left-style: dashed;
}
.leftline2-dashed {
    border-left-width: 2px;
    border-left-style: dashed;
}
.leftline3-dashed {
    border-left-width: 3px;
    border-left-style: dashed;
}
.leftline4-dashed {
    border-left-width: 4px;
    border-left-style: dashed;
}
.leftline5-dashed {
    border-left-width: 5px;
    border-left-style: dashed;
}
.leftline6-dashed {
    border-left-width: 6px;
    border-left-style: dashed;
}
.leftline7-dashed {
    border-left-width: 7px;
    border-left-style: dashed;
}

/* ------------------------------------ ページトップ */
#pageTop {
  position: fixed;
  bottom: 4px;
  right: 15px;
  font-size: 26px;
  display: none;
}
#pageTop a {
  background: #000;
  text-decoration: none;
  color: #fff;
  padding: 10px 12px 2px 12px;
  text-align: center;
  display: block;
  border-radius: 1px;
  opacity: 0.60;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}
#pageTop a:hover {
  text-decoration: none;
  background: #444;
}

/* ------------------------------------ bootstrap Custom */
.table-striped-reverse > tbody > tr:nth-of-type(odd) {
  background-color: transparent;
}
.table-striped-reverse > tbody > tr:nth-of-type(even) {
  background-color: #f9f9f9;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #005395;
  border-color: #005395;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #005395;
  border-color: #005395;
}


/* ------------------------------------ bootstrap-datepicker Custom */
.datepicker td,
.datepicker th {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #005395;
  background-image: -moz-linear-gradient(top, #005395, #005395);
  background-image: -ms-linear-gradient(top, #005395, #005395);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#005395), to(#005395));
  background-image: -webkit-linear-gradient(top, #005395, #005395);
  background-image: -o-linear-gradient(top, #005395, #005395);
  background-image: linear-gradient(top, #005395, #005395);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005395', endColorstr='#005395', GradientType=0);
  border-color: #005395 #005395 #005395;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #005395;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #005395;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #005395;
  background-image: -moz-linear-gradient(top, #005395, #005395);
  background-image: -ms-linear-gradient(top, #005395, #005395);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#005395), to(#005395));
  background-image: -webkit-linear-gradient(top, #005395, #005395);
  background-image: -o-linear-gradient(top, #005395, #005395);
  background-image: linear-gradient(top, #005395, #005395);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005395', endColorstr='#005395', GradientType=0);
  border-color: #005395 #005395 #005395;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #005395;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #005395 \9;
}
