@charset "utf-8";

/*==================================================
スライダーのためのcss
===================================*/
.sliderFrame {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
.sliderLeft {
	width: 100%;
}
/*
.fixed-Right {
	width: 40%;
	background: url("../images/before/top/b-20.png") no-repeat center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
*/

.fixed-Right img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.fixed-Right p, .slider-item p {
	color: #fff;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 22px;
}

.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 70vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	width: 100%;
	/*overflow: hidden;*/
/*	padding-bottom: 50px;*/
}
.slick-slider {
	padding: 0!important;
	margin: 0!important;
}

ul li {
	list-style-type: none;
	padding-left: 0!important;
}
/*　背景画像設定*/
.slider-item01 {
    background:url("../images/before/sl-img01.png") no-repeat center; 
	background-size: cover;
}
.slider-item02 {
    background:url("../images/before/sl-img02.png") no-repeat center; 
	background-size: cover;
}
.slider-item03 {
    background:url("../images/before/sl-img03.png") no-repeat center; 
	background-size: cover;
}
.slider-item04 {
    background:url("../images/before/sl-img04.png") no-repeat center; 
	background-size: cover;
}
.slider-item05 {
    background:url("../images/before/sl-img05.png") no-repeat center; 
	background-size: cover;
}

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



/*
.slider-item::after {
	content: '';
	background-color: rgba(74,69,78,0.5);
	position: absolute;
	top: 0; right:  0; bottom: 0; left: 0;
	z-index: 4;
}
*/

@media screen and (min-width:320px) and (max-width:991.98px) {
	.slider {
		position:relative;
		z-index: 1;
		height: 30vh;
	}
	
	.slider-item {
		display: flex!important;
		justify-content: flex-end;
		align-items: flex-end;
		width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
		height: 35vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		background-repeat: no-repeat;/*背景画像をリピートしない*/
		background-position: center center;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	}
	.sliderLeft {
		width: 100%;
	}
	.fixed-Right {
		width: 100%;
		background: url("../images/top/sl-img06.jpeg") no-repeat center;
		background-size: cover;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 30vh;
	}
}

/*矢印の設定*/

.slick-prev, .slick-next {
    position: absolute;
	z-index: 3;
    top: 45%;
    cursor: pointer; /*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #eee;/*矢印の色*/
    border-right: 2px solid #eee;/*矢印の色*/
    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: 10;
    text-align:center;
	margin:10px 0 0 0;/*ドットの位置*/
}

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

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

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


/*------------------------------------*/
/*--- スライダー  ------*/
/*------------------------------------*/
/*----- 共通 -----*/
.slider-item01 p , .slider-item02 p , .slider-item03 p {
	font-weight: bold;
	color: #ffffff;
	z-index: 5;
	line-height: 1.3em;
	position: absolute;	
	margin: 0;
}

/* widthについて テキストver ：左、画像ver：右 */

/*----- スマホサイズ small -----*/
@media screen and (min-width: 320px) and (max-width:575.98px)  {

	.sliderLeft .slider-item {
		display: flex;
		align-items: center;
		justify-content: center;		
	}
	.fixed-Right {
		display: none;
	}
	.sliderFrame {
		flex-direction: column;
	}
}

/*----- スマホサイズ large -----*/
@media screen and (min-width: 576px) and (max-width:767.98px)  {
	.sliderLeft .slider-item {
		display: flex;
		align-items: center;
		justify-content: center;		
	}
	.fixed-Right {
		display: none;
	}
	.sliderFrame {
		flex-direction: column;
	}
}
/*----- tabletサイズ -----*/
@media screen and (min-width: 768px) and (max-width:991.98px){
	.sliderLeft {
		width: 52%;
	}
	.sliderLeft p {
		display: none;
	}
	.fixed-Right {
		width: 48%;
		height: 40vh;
	}
	.sliderFrame {
		flex-direction: row;
	}
}
/*----- PCサイズ -----*/
@media screen and (min-width: 992px) and (max-width:1399.98px){
	.sliderLeft {
		width: 55%;
	}
	.sliderLeft p {
		display: none;
	}
	.fixed-Right {
		width: 45%;
	}
	.fixed-Right p {
		font-size: 31px;
	}
}
/*----- 最大サイズ -----*/
@media screen and (min-width: 1400px) {
	.sliderLeft {
		width: 65%;
	}
	.sliderLeft p {
		display: none;
	}
	.fixed-Right {
		width: 35%;
	}
	.fixed-Right p {
		font-size: 32px;
	}
}
