@charset "utf-8";

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

ul li {
	list-style-type: none;
	padding-left: 0!important;
}


.slider-item {
	display: flex!important;
	width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
	height: 650px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	background-repeat: no-repeat;/*背景画像をリピートしない*/
	background-position: center right!important;/*背景画像の位置を中央に*/
	background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	background-color: #ffffff!important;
}
/*　背景画像設定*/
.slider-item01 {
   background-image:url("../images/index-slider-03.jpg");
}

.slider-item02 {
    background-image:url("../images/index-slider-02.jpeg");
}
.slider-item02 .catch2 span,.slider-item03 .catch2 span {
	margin: 0;
	color: #ffffff;
}

.slider-item03 {
    background-image:url("../images/index-slider-01.jpeg");
}

/*
.slider-item09 {
    background-image:url("../images/top-sozai02.jpeg");
}
*/

.slider-item::after {
	content: '';
	position: absolute;
	top: 0; right:  0; bottom: 0; left: 0;
	z-index: 4;
}

/* .slick-slide img {
    position: absolute;
    object-fit: contain;
    object-position: right;
    width: 70vw;
    top: calc((100% - 500px) / 2);
    right: 0;
} */

@media screen and (max-width:767.98px) {
	.slider {
		position:relative;
		z-index: 1;
		height: 500px;
	}
	
	.slider-item {
		display: flex!important;
		width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
		height: 500px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		background-repeat: no-repeat;/*背景画像をリピートしない*/
		background-position: center center!important;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	}

}

@media screen and (max-width:991.98px) {
    
    .slider-item01 {
        background-image:url("../images/index-slider-03.jpg");
	    justify-content: center;
	    align-items: center;
}
    
    .slider-item02 {
        background-image:url("../images/index-slider-02.jpeg");
        justify-content: center;
        align-items: center;
        background-position: center;
}
    
    .slider-item03 {
    background-image:url("../images/index-slider-01.jpeg");
	justify-content: center;
	align-items: center;
	background-position: top;
}
    
/*
     .slider-item09 {
    background-image:url("../images/top-sozai02.jpeg");
	justify-content: center;
	align-items: center;
	background-position: top;
}
*/
    
    
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
    position: absolute;
    z-index: 3;
    top: 40%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    height: 20px;
    width: 20px;
}

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

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

/*ドットナビゲーションの設定*/
.slick-dots {
	position: relative;
	z-index: 10;
    text-align:center;
	margin:10px 0 0 0;/*ドットの位置*/
    padding: 0;
}

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

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

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

.top-tokucho {
	font-size: 12px;
	word-break: keep-all;
}


/*------------------------------------*/
/*--- スライダー  ------*/
/*------------------------------------*/
/*----- 共通 -----*/

.catch2 {
	font-size: 1.7rem;
	letter-spacing: 0.15em;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
    writing-mode: vertical-rl;
	position: absolute;
	left: 5vw;
	width: clamp(100px, 30vw ,250px);
	top: 10vw;
	background-color: rgba(255,255,255,0.7);
	height: 70%;
}

.slider-item01 .catch2, .catch3 {
    writing-mode: vertical-rl;
}
.slider-item01 .catch2 span {
/*	color: #feaa5f;*/
	color: #ffffff;
}
.slider-item03 .catch2 span {
	color: #ffffff;
/*	color: rgb(215,238,96);*/
}
.catch2 {/* padding: 230px 160px 30px 30px; */}

/*----- スマホサイズ small -----*/
@media screen and (min-width: 320px) and (max-width:575.98px)  {
	.catch2 {
		z-index: 5;
		position: absolute;
		right: 5%;
		top: 15%;
		font-size: 1.2rem;
		font-weight: 700;
	}

	.slick-slide img {
    	width: calc( 100vw - 250px );
		position: relative;
		display: none;
	}
}

/*----- スマホサイズ large -----*/
@media screen and (min-width: 576px) and (max-width:767.98px)  {
	.catch2 {
		z-index: 5;
		padding: 15px 40px;
		line-height: 1.5;
		color: #000;
		position: absolute;
		font-size: 1.6rem;
		font-weight: 700;
		height: 100%;
        left: 0;
		top: 0;
        width: 200px;
	}

	.slick-slide img {
    	width: calc( 100vw - 250px );
		position: relative;
		display: none;
	}
}
/*----- tabletサイズ -----*/
@media screen and (min-width: 768px) and (max-width:991.98px) {
	.catch2 {
		z-index: 5;
		padding: 15px 40px;
		line-height: 1.5;
		color: #000;
		position: absolute;
		font-size: 1.8rem;
		font-weight: 700;
		height: 100%;
        left: 0;
		top: 0;
        width: 250px;
	}	

	.slick-slide img {
    	width: calc( 100vw - 250px );
		position: relative;
		display: none;
	}

	.slider-item01, .slider-item02, .slider-item03 {
		background-position: right!important;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/		
	}
}
/*----- PCサイズ -----*/
@media screen and (min-width: 992px) and (max-width:1399.98px) {
	.catch2 {
		z-index: 5;
		padding: 15px 40px;
		line-height: 2.0;
		color: #000;
		position: absolute;
		font-size: 2.0rem;
		font-weight: 700;
		height: 100%;
        left: 0;
		top: 0;
        width: 25vw;
	}

	.slider-item {
		display: flex!important;
		background-repeat: no-repeat;/*背景画像をリピートしない*/
		background-position: center right!important;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
		justify-content: flex-end;
    	align-items: center;
	}

	.slick-slide img {
    	width: 75vw;
		position: relative;
	}
}
/*----- 最大サイズ -----*/
@media screen and (min-width: 1400px) {
	.catch2 {
		z-index: 5;
		padding: 15px 40px;
		line-height: 2.0;
		color: #000;
		position: absolute;
		font-size: 2.2rem;
		font-weight: 700;
		height: 100%;
        left: 0;
		top: 0;
        width: 20vw;
	}

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

	.slick-slide img {
		width: 80vw;
		position: relative;
	}
}