@charset "utf-8";

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


/*　背景画像設定*/
/*
.slider-item01 {
    background:url("../images/slider-1.jpg");
}
.slider-item02 {
    background:url("../images/slider-6.jpg");
}

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

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

.slider-item02, .slider-item03 {
	background-position: top center;
}
/*
.slider-item::after {
	content: '';
	background-color: rgba(0,0,0,0.20);
	position: absolute;
	top: 0; right:  0; bottom: 0; left: 0;
	z-index: 4;
}
*/
@media screen and (min-width:320px) and (max-width:767.98px) {
	.slider {
		position:relative;
		z-index: 1;
		height: 400px;
	}
	
	.slider-item {
		width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
		height: 400px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		background-repeat: no-repeat;/*背景画像をリピートしない*/
		background-position: top;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	}
}

/*矢印の設定*/

.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: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;/*ドットボタンの現在地表示の色*/
}

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

/*---------------------------------------------*/
/* sliderBox
============================================== */
.sliderBox {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.sliderBox .inner-left, .sliderBox .inner-right {
	width: 50%;
	height: 550px;
}
.sliderBox .inner-left img {
	object-fit: cover;
	width: 100%;
	height: 550px;
}
.sliderBox .inner-right .dan:nth-of-type(odd) {
	width: 100%;
	height: calc( 550px * 0.4 );
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sliderBox .inner-right .dan:nth-of-type(even) {
	width: 100%;
	height: calc( 550px * 0.2 );
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
/*	background-color: #0092f5;*/
	background-color: #004997;
}
.sliderBox .inner-right .dan h1 {
	font-size: 1.8vw;
	font-weight: bold;
	color: #fff;
/*	background-color: #0092f5;*/
	background-color: #004997;
	margin: 0;
	padding: 0;
	line-height: 1.5em;
}
.sliderBox .inner-right .dan div {
	width: 50%;
}
.sliderBox .inner-right .dan img {
	height: calc( 550px * 0.4 );
	width: 100%;
	object-fit: cover;
}
@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);
	}
	
	.sliderBox .inner-left {
		display:none;
	}
	.sliderBox .inner-right {
		width: 100%;
		display: column;
		flex-wrap: wrap;
		height: 400px;
	}
	.sliderBox .inner-right .dan {
		height: calc( 400px / 3 );
	}
	.sliderBox .inner-right .dan img {
		height: calc( 400px * 0.35 )!important;
		width: 100%;
		object-fit: cover;
	}
	.sliderBox .inner-right .dan:nth-of-type(odd) , .sliderBox .inner-right .dan div {
		height: calc( 400px * 0.35 )!important;
	}
	.sliderBox .inner-right .dan:nth-of-type(even) {
		height: calc( 400px * 0.3 )!important;
	}
	.sliderBox .inner-right .dan h1 {
		font-size: 3.5vw;
		color: #ffffff;
		margin: 0;
		background-color: #004997;
	}
}

/*------------------------------------*/
/*--- スライダー  ------*/
/*------------------------------------*/
/*----- 共通 -----*/
.slider-item01 p , .slider-item02 p , .slider-item03 p {
	
	color: #ffffff;
	position: absolute;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #0092f5;
	font-family: 'Zen Kaku Gothic Antique', "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"!important;
	font-weight: 900;
	z-index: 5;
}
/*----- スマホサイズ small -----*/
@media screen and (min-width: 320px) and (max-width:575.98px)  {
	.slider-item01 p ,.slider-item02 p ,.slider-item03 p {
		font-size: 1.7em;
		padding: 1em 0;
		width: 100%;
		max-width:14em;
		top: 47%;
		left: 50%;
		
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		}
	
}
/*----- スマホサイズ large -----*/
@media screen and (min-width: 576px) and (max-width:767.98px)  {
	.slider-item01 p ,.slider-item02 p ,.slider-item03 p {
		font-size: 2em;
		padding: 0em;
		width:14em;
		top: 47%;
		left: 50%;
		
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		}
	
}
/*----- tabletサイズ -----*/
@media screen and (min-width: 768px) and (max-width:991.98px){
	.slider-item01 p ,.slider-item02 p ,.slider-item03 p {
		font-size: 2.5em;
		padding: 0em;
		width:14em;
		top: 47%;
		left: 50%;
		
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		}
	
}
/*----- PCサイズ -----*/
@media screen and (min-width: 992px) and (max-width:1399.98px){
	.slider-item01 p ,.slider-item02 p ,.slider-item03 p {
		font-size: 2.8em;
		padding: 0em;
		width: 14em;
		top: 45%;
		left: 50%;
		
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		}
}
/*----- 最大サイズ -----*/
@media screen and (min-width: 1400px) {
	.slider-item01 p ,.slider-item02 p ,.slider-item03 p {
		font-size: 2.8em;
		padding: 0.5em 0em;
		width: 25em;
		top: 43%;
		left: 50%;
		
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		}	
}
