@charset "utf-8";

/*==================================================
スライダーのためのcss
===================================*/
#mainImg .wrapper .slider {
	position: relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	/*height: 60vh;スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		height: 60rem;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*　背景画像設定　*/

#mainImg .wrapper .slider-item01 {
    background:url(../img/img_01.jpg);
}

#mainImg .wrapper .slider-item02 {
    background:url(../img/img_02.jpg);
}

#mainImg .wrapper .slider-item03 {
    background:url(../img/img_03.jpg);
}

#mainImg .wrapper .slider-item04 {
    background:url(../img/img_04.jpg);
}

#mainImg .wrapper .slider-item05 {
    background:url(../img/img_05.jpg);
}

#mainImg .wrapper .slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    /*height:60vh;各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
				height:60rem;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

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

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

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

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

#mainImg .wrapper .slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;/*ドットの位置*/
}

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

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

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


/*========= レイアウトのためのCSS ===============*/
#mainImg .wrapper ul{
	margin:0;
	padding: 0;
	list-style: none;
}

#mainImg .wrapper a{
	color: #fff;
}

#mainImg .wrapper a:hover,
#mainImg .wrapper a:active{
	text-decoration: none;
}

#mainImg .wrapper h1{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size:6vw;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

#mainImg .wrapper{
	position: relative;
}

#mainImg .container{
	background:#555;
}

#mainImg .container p{
	padding: 300px 0;	
	text-align: center;
	color: #fff;
}



/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 767px) {


#mainImg .wrapper .slider {
	position: relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	/*height: 60vh;スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		height: 50rem;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

#mainImg .wrapper .slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    /*height:60vh;各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
				height:50rem;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}
}
