/* Opening
-----------------------------------------*/
.Opening {
	position:relative;
}
.container-fluid.slideshow ul {
	margin: 0;
}
.Opening ul li{
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.Opening ul li img.Opening__text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform:translate(-50%, -50%);
  z-index: 9;
  opacity: 0.9;
}
.Opening ul li p.Opening__btn {
	position: absolute;
 	top: 80%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	-webkit-transform:translate(-50%, -50%);
  	z-index: 10;
}
.Opening ul li p.Opening__btn a {
	padding: 10px 0px;
	border-radius: 100px;
	font-size: 1.2em;
	text-decoration: none;
	width: 300px;
	display: block;
	font-weight: bold;
	letter-spacing: 0.1em;
	box-shadow:0px 0px 5px 0px rgba(106, 107, 117, 0.1) inset;
	background-color: rgba(255,255,255,0.7);
	color: #0B50A2;
}
.Opening ul li p.Opening__btn a:hover {
	background-color: rgba(41,112,192,0.7);
	color: #FFF;
}

.Opening ul li span {
}
.Opening ul li span img.Opening__img{
  max-width: inherit;
  width: 100%;
}
/* Slide and Push Menu */
.cbp-spmenu {
	position: fixed;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: bold;
}
.cbp-spmenu a:hover {
	text-decoration: none;
}
.cbp-spmenu h3 {
	color: #afdefa;
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #0d77b6;
}
.cbp-spmenu li {
	border-bottom: 1px dotted #CCCCCC;
}
.cbp-spmenu li:last-child {
	border-bottom: none;
}
.cbp-spmenu li a {
	display: block;
	font-weight: bold;
	line-height: 2.8rem;
	color: #333;
}
.cbp-spmenu li a:link {
	color: #333;
}
.cbp-spmenu li a:hover {
	background: #EEEEEE;
}
.cbp-spmenu li a:active {
	background: #212E41;
	color: #FFF;
}
.cbp-spmenu li.logout a {
	border: 1px solid #333333;
	margin: 15px;
	text-align: center;
}
.list-unstyled li a {
	color: #CCCCCC;
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	height: 100%;
	top: 0;
	z-index: 1000;
	overflow: auto;
}

.cbp-spmenu-vertical a {
	padding: 0.5em 1.5em;
}
.cbp-spmenu-vertical a.title {
	padding: 0 5px;
}

.cbp-spmenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.cbp-spmenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
	width: 240px;//鈴木追加
}

.cbp-spmenu-right {
	right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -150px;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 240px;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: #FFFFFF;
}
.cbp-spmenu a.logout {
	display: block;
}

/* Example media queries */

@media screen and (max-width: 55.1875em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}

	.cbp-spmenu-top {
		top: -110px;
	}

	.cbp-spmenu-bottom {
		bottom: -110px;
	}

}

@media screen and (max-height: 26.375em){
}


/* 横多数画像のスライド　*/
    html, body {
      margin: 0;
      padding: 0;
    }

    * {
      box-sizing: border-box;
    }

    .slider {
        width: 100%;
        margin: 0 auto;
    }

    .slick-slide {
      margin: 0px;
    }

    .slick-slide img {
      width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
      color: black;
    }


    .slick-slide {
      transition: all ease-in-out .3s;
      opacity: .2;
    }
    
    .slick-active {
      opacity: .5;
    }

    .slick-current {
      opacity: 1;
    }
