/*
 * 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;
}

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

.navbar {
  padding: 0;
  border: 0px #FFFFFF solid;
  background-image: -webkit-linear-gradient(#6355a2, #6355a2 60%, #6355a2);
  background-image: -o-linear-gradient(#6355a2, #6355a2 60%, #6355a2);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6355a2), color-stop(60%, #6355a2), to(#6355a2));
  background-image: linear-gradient(#6355a2, #6355a2 60%, #6355a2);
  background-repeat: no-repeat;
  -webkit-filter: none;
  filter: none;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); }
  .navbar .nav {
    margin: 0;
    display: table; }
    .navbar .nav li a {
      font-weight: bold;
      font-family:"Meiryo","arial";
      text-align: left;
      color: #ffffff;
}


.navbar .nav {
	margin: 0;
	display: table;
}

.navbar .nav li {
	/* display: table-cell;
	float: none; */
}

.navbar .nav li a {
	font-weight: bold;
	font-family:"Meiryo","arial";
	text-align: left;
	/* text-align: center; */
}

.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;
}

/*
 * 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: #6355a2;
  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: #ffffff;
}
a.list-group-item .list-group-item-heading {
  color: #ffffff;
}
a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  color: #555555;
  background-color: #f5f5f5;
}
.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: 273px;
	margin: 0 auto;
}

.modal-content2 {
  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;
  /* position: fixed; */
  height: 100%;

}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  /* -webkit-overflow-scrolling: touch; */
  -webkit-overflow-scrolling: auto;
  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;
}

.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: 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;
  }
}
@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;
}
