/*------------------------------------------
  First View
------------------------------------------*/
.top-first-view {
	display: flex;
	flex-flow: wrap row;
	justify-content: space-between;
	align-items: stretch;
	height: 900px;
  max-width: 1920px;
  margin-inline: auto;
}
.top-first-view .overview {
	width: 770px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
  background: linear-gradient(180deg, #D9D9D9 0%, #C4F1FC 0.01%, #FFF 96.15%);
	position: relative;
}
.top-first-view .overview .txt01 {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.5;
}
.top-first-view .overview .txt02 {
  margin: 3rem 0 5rem;
}
.top-first-view .overview .m-button01 {
	margin: 0 auto;
}
.top-first-view .slider {
	width: calc(100% - 770px);
}
.top-first-view .slider li img {
	height: 100%;
	object-fit: cover;
}
.top-first-view .slick-list,
.top-first-view .slick-track {
	height: 100%;
}
@media only screen and (max-width: 1400px) {
	.top-first-view .overview {
		width: 680px;
	}
	.top-first-view .slider {
		width: calc(100% - 680px);
	}
}
@media only screen and (max-width: 1024px) {
	.top-first-view {
		flex-flow: wrap column-reverse;
		justify-content: flex-end;
		height: auto;
padding-top: 95px;
margin-inline: 0;
    background: linear-gradient(180deg, #D9D9D9 0%, #C4F1FC 0.01%, #FFF 96.15%);
	}
	.top-first-view .overview {
		width: 100%;
		background-size: contain;
		padding: 5rem 0 5rem;
    background: none;

	}
	.top-first-view .overview .txt02 {
  	margin: 3rem;
	}
	.top-first-view .slider {
		width: 90%;
		height: 660px;
    margin-left: auto;
	}
	.top-first-view .slider li img {
		width: 100%;
    border-radius: 5px 0 0 5px;
	}
}
@media only screen and (max-width: 600px) {
	.top-first-view .overview .txt01 {
		font-size: 22px;
	}
  .top-first-view .slider {
height: 300px;

	}
}


/*------------------------------------------
  Main
------------------------------------------*/
/* banner */
.banner-content .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem 20px;
}
.banner-content .col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.banner-content .col h2 {
  font-size: 24px;
  font-weight: 500;
}
.banner-content .col .txt {
  margin: 2rem 0;
}
.banner-content .col .img {
  position: relative;
  margin-top: auto;
}
.banner-content .col .img .m-button01 {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.banner-content .col .img .m-button01 a {
  border-color: #fff;
}
.banner-content .col .img .m-button01 a:hover {
  background: #fff;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .banner-content .col .img .m-button01 {
    right: 2%;
  }
}
@media only screen and (max-width: 600px) {
  .banner-content .inner {
    flex-direction: column;
  }
}


/* News */
.news-content {
  background: #FAF7F0;
  padding-block: 129px;
}
.news-content .inner {
	display: flex;
	flex-flow: wrap row;
	justify-content: space-between;
	align-items: stretch;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
.news-content .left {
	width: 35.156%;
	min-height: 200px;
	border-right: 1px solid #000;
	padding: 3rem 0;
	position: relative;
}
.news-content .left .m-button01 {
	position: absolute;
	left: 0;
	bottom: 3rem;
}
.news-content .right {
	width: 64.844%;
}
@media only screen and (max-width: 1024px) {
	.news-content .left {
		width: 100%;
		min-height: auto;
		border-right: none;
		border-bottom: 1px solid #000;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 1.5rem 0;
	}
	.news-content .left .m-button01 {
		position: static;
	}
	.news-content .right {
		width: 100%;
	}
}
@media only screen and (max-width: 600px) {
	.news-content .left .m-button01 {
		max-width: 178px;
	}
	.news-content .left .m-button01 a {
		height: 45px;
		line-height: 43px;
	}
}