@charset "utf-8";

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: auto;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	width: 100%;
	overflow: hidden;
}
.slick-slider {
	padding: 0!important;
	margin: 0!important;
}

/*---------------------------------------------*/
/* sliderサイズ設定
============================================== */

@media screen and (min-width:320px) and (max-width:767.98px) {
	.slider {
		position:relative;
		z-index: 1;
	}
	
	.slider-item {
		width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
		background-repeat: no-repeat;/*背景画像をリピートしない*/
		background-position: top;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	}
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
	.slider {
		position:relative;
		z-index: 1;
		height: auto;
	}
	.slider-item {
		width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
		height: auto;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		background-repeat: no-repeat;/*背景画像をリピートしない*/
		background-position: top;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	}
}

.moveBackground-header .inner-img1, .moveBackground-footer .inner-img1 {
	height: 50px;
	background: url("../images/slider_icon.svg");
	background-repeat: repeat-x;
	background-size: contain;
	margin: 10px 5px 5px;
}
.slider-item .inner-img2 {
	height: 380px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: linear-gradient(-60deg,#4077EB,#024793,#0298D1);
	padding: 40px;
}
.slider-item .inner-img2 img {
	height: auto;
	max-height: 280px;
	width: 100%
}
.slider-item .slider-shamei {
	width: 100%;
	height: 50px;
	color: #024793;
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	margin: 30px 0 0 0;
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
   /*height: 570px;各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: top;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
/*
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
*/
}
/*
.slider-item::after {
	content: '';
	background-color: rgba(210,224,198,0.50);
	position: absolute;
	top: 0; right:  0; bottom: 0; left: 0;
	z-index: 4;
}
*/
/*------------------------------------*/
/*--- 詳細設定  ------*/
/*------------------------------------*/

/*----- スマホサイズ small -----*/
@media screen and (min-width: 320px) and (max-width:449.98px)  {
	.moveBackground-header .inner-img1, .moveBackground-footer .inner-img1 {
		height: 25px;
		margin: 10px;
	}
	.slider-item .inner-img2 {
		height: 180px;
		padding: 30px;
	}
	.slider-item .inner-img2 img {
		width: 100%;
		height: auto;
	}
	.slider-item .slider-shamei {
		height: 30px;
		font-size: 24px;
	}
/*
	.slider-item {
		height: 260px;
	}
	.slider {
		height: 260px;
	}
*/
}
/*----- スマホサイズ small -----*/
@media screen and (min-width: 450px) and (max-width:575.98px)  {
	.moveBackground-header .inner-img1, .moveBackground-footer .inner-img1 {
		height: 25px;
		margin: 10px;
	}
	.slider-item .inner-img2 {
		height: 240px;
		padding: 30px;
	}
	.slider-item .inner-img2 img {
		width: 100%;
		height: auto;
	}
	.slider-item .slider-shamei {
		font-size: 24px;
	}
/*
	.slider-item {
		height: 320px;
	}
	.slider {
		height: 320px;
	}
*/
}
/*----- スマホサイズ large -----*/
@media screen and (min-width: 576px) and (max-width:767.98px)  {
	.moveBackground-header .inner-img1, .moveBackground-footer .inner-img1 {
		height: 30px;
		margin: 10px;
	}
	.slider-item .inner-img2 {
		height: 240px;
		padding: 30px;
	}
	.slider-item .inner-img2 img {
		width: 100%;
		height: auto;
	}
	.slider-item .slider-shamei {
		height: 30px;
		font-size: 28px;
	}
/*
	.slider-item {
		height: 380px;
	}
	.slider {
		height: 380px;
	}
*/
}
/*----- tabletサイズ -----*/
@media screen and (min-width: 768px) and (max-width:991.98px){
	.moveBackground-header .inner-img1, .moveBackground-footer .inner-img1 {
		height: 40px;
		margin: 10px;
	}
	.slider-item .inner-img2 {
		height: 270px;
		padding: 30px;
	}
	.slider-item .inner-img2 img {
		width: 100%;
		max-width: 780px;
		height: auto;
	}
	.slider-item .slider-shamei {
		height: 50px;
		font-size: 24px;
	}
/*
	.slider-item {
		height: 410px;
	}
	.slider {
		height: 410px;
	}
*/
}
/*----- PCサイズ -----*/
@media screen and (min-width: 992px) and (max-width:1399.98px){
	.moveBackground .inner-img1 {
		height: 50px;
		margin: 10px;
	}
	.slider-item .inner-img2 {
		height: 310px;
		padding: 30px;
	}
	.slider-item .inner-img2 img {
		width: 100%;
		max-width: 900px;
		height: auto;
	}
	.slider-item .slider-shamei {
		height: 50px;
		font-size: 28px;
	}
/*
	.slider-item {
		height: 440px;
	}
	.slider {
		height: 440px;
	}
*/
}
/*----- 最大サイズ -----*/
@media screen and (min-width: 1400px) {

}





/*------------------------------------
矢印・ドット設定  
------------------------------------*/
/*矢印の設定*/

.slick-prev, .slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    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: -20px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 10px;/*ドットボタンのサイズ*/
    height: 10px;/*ドットボタンのサイズ*/
    display:block;
    background:#ffffff;/*ドットボタンの色*/
	border: none;
}

.slick-dots .slick-active button{
    background:#000000 ;/*ドットボタンの現在地表示の色*/
}

@media screen and (max-width: 767.98px) {
	/*矢印の設定*/

	.slick-prev, .slick-next {
		position: absolute;
		z-index: 3;
		top: 42%;
		cursor: pointer; /*マウスカーソルを指マークに*/
		outline: none;/*クリックをしたら出てくる枠線を消す*/
		border-top: 2px solid #eee;/*矢印の色*/
		border-right: 2px solid #eee;/*矢印の色*/
		height: 12px;
		width: 12px;
	}
	.slick-prev {/*戻る矢印の位置と形状*/
		left:2.5%;
		transform: rotate(-135deg);
	}
	.slick-next {/*次へ矢印の位置と形状*/
		right:2.5%;
		transform: rotate(45deg);
	}

}


