@charset "UTF-8";
/* CSS Document */



/*----------------------------------------------
↓↓↓スライドショー↓↓↓
-----------------------------------------------*/

/* スライダー全体 */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
	position: relative;
	z-index: 1;
	max-height: 600px;
}

/* スライド3枚のグループ */
.slider {
  animation: scroll-left 80s infinite linear .1s both;
  display: flex; /* スライド3枚を横並び */
}
/* スライド */
.slide {
  width: calc(100vw / 1); /* 3はスライドの枚数 */
}
/* スライドの画像 */
.slide img {
  display: block;
  width: 100%;
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}



/*----------------------------------------------
↓↓↓news↓↓↓
-----------------------------------------------*/

.news_culumn{
	width: calc(100% - 140px);
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	margin: 0 20px 0 120px;
	box-sizing: border-box;
}

.news_culumn a{
	width: calc(25% + 1px);
	max-width: 300px;
	margin-top: -1px;
	margin-left: -1px;
}

.newsBox{
	width: 100%;
	height: auto;
	padding: 20px;
	border: thin solid #000;
	box-sizing: border-box;
	position: relative;
}

.newsThum{
	width: 100%;
	height: 180px;
	display: flex;
	justify-content:center;
	align-items:center;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 10px;
}

.newsThum img{
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.newsDay{
	width: 100%;
	position: relative;
	padding-left: 10px;
}
.newsDay::before{
content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.newsTxt{
	width: 100%;
	height: 45px;
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* ブラウザがサポートしていない場合のフェールセーフ */
}

/*----------------------------------------------
↓↓↓特徴↓↓↓
-----------------------------------------------*/


/* スライダー全体 */
.pointSlider-wrapper{
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
	position: relative;
	height: 250px;
	margin: 20px 0;
	z-index: 1;
}

/* スライド3枚のグループ */
.pointSlider {
  animation: scroll-left 80s infinite linear .1s both;
  display: flex; /* スライド3枚を横並び */
}
/* スライド */
.pointSlider li{
  width: 500px;
	height: 250px;
	overflow: hidden;
	position: relative;
	text-align: center;
	z-index: 2;
	box-sizing: border-box;
	display: flex;
	justify-content:center;
	align-items:center;
}
/* スライドの画像 */
.pointSlider li img {
  display: block;
  width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top:0;
	object-fit: cover;
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.pointSlider li p{
	position: relative;
	display: flex;
	justify-content:center;
	align-items:center;
	background-color: #000;
	z-index: 3;
	color: #fff;
	width: 200px;
	height: 40px;
	box-sizing: border-box;
}





@media (max-width: 960px) {
    
    
/*----------------------------------------------
↓↓↓スライドショー↓↓↓
-----------------------------------------------*/

/* スライダー全体 */
.slider-wrapper {
	padding-top: 80px;
}


/*----------------------------------------------
↓↓↓news↓↓↓
-----------------------------------------------*/

.news_culumn{
	width: calc(100% - 40px);
	margin: 0 20px 0 20px;
}
	

.news_culumn a{
	width: 50%;
	max-width: 350px;
}
	
    
/*----------------------------------------------
↓↓↓特徴↓↓↓
-----------------------------------------------*/


/* スライダー全体 */
.pointSlider-wrapper{
  display: block; /* スライドのグループを横並び */
	height: auto;
}

/* スライド3枚のグループ */
.pointSlider {
  animation:none ;
  display: flex; /* スライド3枚を横並び */
flex-wrap:wrap;
	}
	
.pointSlider:last-child {
	display: none;
	}
	
/* スライド */
.pointSlider li{
  width: 50%;
	height: 200px;
	overflow: hidden;
	position: relative;
	text-align: center;
	z-index: 2;
	box-sizing: border-box;
	display: flex;
	justify-content:center;
	align-items:center;
}
	
	
	
	
}



@media (max-width: 640px) {
	
	
.newsThum{
	height: 130px;
}

.pointSlider li p{
	width: 140px;
}




	
	
}
    
