/*
 * bootstrap_custom.css
 * copyright (c) HCC 2017
 */

/* bootstrap grid size
.col-xs- : <=  768px (mobile)
.col-sm- : <   992px (tablet)
.col-md- : <  1200px (pc)
.col-lg- : >= 1200px (pc)
*/

.container-fluid {
    background-color: #f0eef9;

}

.container {
}

.navbar-default {
    margin: 0px;
    background-color: #2fa4e7;
    border-color: #1995dc;
}

.navbar .navbar-inner {
	padding: 0;
}

.navbar {
    padding: 0;
    border: 0px #fff5bf solid;
    background-image: none;
    background-color: #fff5bf;
}

.navbar .nav li a {
    font-size: 105%;
    font-weight: bold;
    font-family:"Meiryo","arial";
    text-align: left;
    color: #343434;
}

.navbar .nav li a:hover,
.navbar .nav li a:focus {
    text-decoration: none;
    border: 0px #ffffff solid;
    background-color: #3d1700;
    color: #ffffff;
}

/* �n���o�[�K�[(default)*/
.navbar-default .navbar-toggle {
  background-color: #ab6032;
}

/* �n���o�[�K�[��I�������Ƃ� */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #3d1700;
}


.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #3d1700;
  color: #ffffff;
}

.dropdown-menu {
  color: #ffffff;
  background-color: #fff5bf;
}

.dropdown-menu li a {
      font-weight: bold;
      font-family:"Meiryo","arial";
      text-align: left;
      color: #343434;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #3d1700;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #3d1700;
}


.col-md-4,
.col-lg-4 {
	padding-left: 1px;
}

.col-md-8,
.col-lg-8 {
	padding-right: 1px;
}

.col-xs-12, col-sm-12 {
	padding-left: 1px;
	padding-right: 1px;
}

#titleText {
  /*background: url("../img/title.png") no-repeat left center;*/
  background-size: contain;
  pointer-events : none;
}

/*
 * Off Canvas
 * --------------------------------------------------
 */
@media screen and (max-width: 767px) {
  .row-offcanvas {
    position: relative;
    -webkit-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

  .row-offcanvas-right {
    right: 0;
  }

  .row-offcanvas-left {
    left: 0;
  }

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -50%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -50%; /* 6 columns */
  }

  .row-offcanvas-right.active {
    right: 50%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 50%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 52%; /* 6 columns */
  }
}

.list-group {
  margin-bottom: 20px;
  padding-left: 0;

}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff5bf;
  border: 1px solid #dddddd;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item {
  color: #343434;
  font-weight: bold;
  font-family:"Meiryo","arial";
  text-align: left;
}
a.list-group-item .list-group-item-heading {
  color: #ffffff;
}
a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #3d1700;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #999999;
  cursor: not-allowed;
}

/* modalwindow */
.modal-content{
	width: 248px;
	margin: 0 auto;
}

.modal-content.list {
	width: auto;
}
.modal-content.legend {
	width: auto;
}
.modal-content.zoomMap {
	width: auto;
}
.modal-content.manual {
	width: auto;
}

.modal-content2 {
   position: relative;
   top:0px;
   right:0px;
   bottom:0px;
   left:0px;
   margin:auto auto;
   width: 300px;

  /* position: relative; */
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  outline: 0;
}

.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.3;
  filter: alpha(opacity=50);
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 20px;
  margin: 5px auto;
}
.modal-image {
  margin: 5px;
}


.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 340px) {
  .modal-list {
    margin: 30px auto;
    width: 340px;
  }
  .modal-legend {
    margin: 30px auto;
    width: 340px;
  }
}
@media (min-width: 640px) {
  .modal-manual {
    margin: 30px auto;
    width: 640px;
  }
}

@media (min-width: 800px) {
  .modal-zoomMap {
    margin: 30px auto;
    width: 800px;
  }
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }

  .modal-list {
    width: 340px;
  }
  .modal-legend {
    width: 340px;
  }
  .modal-zoomMap {
    width: 800px;
  }
  .modal-manual {
    width: 640px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.modal-header {
  padding: 8px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}

.modal-header .close {
  margin-top: -4px;
}

.modal-footer {
  padding: 6px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.close {
  float: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

h5,
.h5 {
  font-size: 16px;
}


