@charset "utf-8";
/* CSS Document */

#slider {
	width: 100%;
    overflow-x: hidden;
}

.slideshow .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: none;
  background-size: cover;
  background-position: center center;
  margin: 0;
  padding: 0;
}

.in {
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2; 
}
.out {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
  -webkit-transition: 4s;
  transition: 4s linear;
  z-index: 1;
}

.cap_text {
	z-index:50; position:absolute; top:80%; right:5%; padding:15px 30px; background-color:rgba(0,0,0,0.6); color:#FFF; font-size:11px;
}

.wrap {
  position: relative;
}

.scroll-btn-wrap {
	position: absolute;
	display: block;
	bottom:40px;
	left:50%;
	right:50%;
	width:46px;
	height:46px;
}

.scroll-btn {
  position:relative;
  z-index: 3;
}
.scroll-btn span {
  position: absolute;
  background-image: url(../images/mainimg_scroll.png);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-left: -23px;
  box-sizing: border-box;
}

/*
.scroll-btn span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-left: -23px;
  border: 2px solid #fff;
  border-radius: 100%;
  box-sizing: border-box;
  background-color: rgba(14,34,79,0.8);
}
.scroll-btn span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
*/

@media screen and (min-width: 769px){

.slideshow {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px 30px;
	/* background-color: rgba(0,0,0,0.6); */ 
	color: #fff;
	text-align: center;
	width: 650px;
	z-index:4;
}

}

@media screen and (max-width: 768px){

.scroll-btn-wrap {
	display: none !important;
}

.slideshow {
  position: relative;
  width: 100vw;
  height: 50vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.title {
	position: absolute;
	box-sizing: border-box;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px 30px;
	/* background-color: rgba(0,0,0,0.6); */ 
	color: #fff;
	text-align: center;
	width: 100%;
	z-index:4;
}

.title img {
	width:100%;
	max-width: 549px;
}

}

