@charset "utf-8";
/*==================================================
スライダーのためのcss
===================================*/
/*mainimg
---------------------------------------------------------------------------*/
#mainimg {
	width: 100%;
	position: relative;
}

/*キャッチコピー
------------------------------*/
.slide-catch{
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 5%;
 /* transform: translate(-50%, -50%);*/
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slide-catch img{
	height:500px;
}
/*ロゴ
------------------------------*/
.slide-logo{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15%;
 transform: translate(-50%, -50%);
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slide-logo img{
	height:300px;
}


/*スライドショー
-------------------------------*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 600px;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("../images/8.jpg");
}

.slider-item02 {
    background:url("../images/4.jpg");
}

.slider-item03 {
    background:url("../images/5.jpg");
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅*/
    height:600px;/*各スライダー全体の縦幅*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}




/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
	
/*キャッチコピー
------------------------------*/
.slide-catch{
  position: absolute;
  z-index: 2;
  top: 100px;
  right: 15%;
 /* transform: translate(-50%, -50%);*/
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slide-catch img{
	height:400px;
}
	
/*ロゴ
------------------------------*/
.slide-logo{
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 18%;
 transform: translate(-50%, 0%);
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slide-logo img{
	height:100px;
}
	
	
}