@charset "UTF-8";
/*
	Filename: home
	Version: 1.0.1
*/
.sticky {
  position: -webkit-sticky; /* Safariに対応する */
  position: sticky; /* 要素を固定/解除する */
  top: 0; /* 縦方向の閾値 */
  left: 0; /* 横方向の閾値 */
  z-index: 10;
}
/*-----------------------------------------------------
	#mv
------------------------------------------------------*/
#mv {
  position: relative;
  padding-top: 100px;
  border-radius: 10px;
}
.mv_text {
	position: absolute;
	top: 200px;
	left: 0;
	width: 100%;
	color: #135878;
	text-align: center;
}
.mv_text h2 {
	margin-bottom: 50px;
	font-size: 40px;
}
.mv_text p {
	font-size: 20px;
	line-height: 2;
}
.mv_img img {
	width: 100%;
	height: 747px;
	object-fit: cover;
	object-position: left center;
	border-radius: 10px;
}
.youtube-container {
  position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
  width: 588px;
  margin: -100px auto 0;
  aspect-ratio: 16 / 9;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.youtube-container iframe {
  position: absolute;
  inset: 0;
	left: 10px;
  width: calc(100% - 20px);
  height: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
  border: 0;
}
@media screen and (max-width: 1000px) {
  #mv {
    width: calc(100% + 20px);
    margin-left: -10px;
    padding-top: 70px;
    border-radius: 0;
  }
	.mv_img img {
		width: 100%;
		height: 500px;
		border-radius: 0;
	}
	.youtube-container {
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
		width: calc(100% - 20px);
		padding-top: 56.25%;
	}
}
@media screen and (max-width: 600px) {
	.mv_text h2 {
		margin-bottom: 8.333vw;
		font-size: 6.667vw;
	}
	.mv_text p {
		font-size: 3.333vw;
		line-height: 2;
	}
}
/*-----------------------------------------------------
	#about
------------------------------------------------------*/
#about {
  margin: 10px 0;
}
#about .flex {
  justify-content: flex-start;
  align-items: center;
}
.about_img {
  width: 50%;
}
.about_img img {
  width: 100%;
  height: auto;
}
.about_text {
  width: 47%;
  margin-left: 3%;
}
.about_text p {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.8;
}
.about_text .center {
  max-width: 250px;
}
.about_text .center a {
  display: block;
	width: 330px;
}
@media screen and (max-width: 1000px) {
  .about_img {
    width: 100%;
    margin-bottom: 30px;
  }
  .about_text {
    width: 100%;
    margin-left: 0;
  }
  .about_text .center {
    max-width: 100%;
  }
}
@media screen and (max-width: 750px) {
	.about_text .center a {
		width: 100%;
	}
}
/*-----------------------------------------------------
	#system
------------------------------------------------------*/
#system {
  margin: 10px 0;
}
#system .inner {
  background: url("../img/home/system_bg.png") no-repeat top center;
  background-size: cover;
}
#system .inner::before{
  display: none;
}
#system .flex {
  justify-content: flex-start;
	margin-bottom: 50px;
}
.system_l {
  width: 60%;
}
.system_l p {
  font-size: 16px;
  line-height: 2;
}
.system_r {
  width: 35%;
  margin-left: 5%;
}
.system_r img {
  width: 100%;
}
.system_r .center {
  max-width: 250px;
}
.system_r .center a {
  display: block;
}
@media screen and (max-width: 1000px) {
  .system_l {
    width: 100%;
		margin-bottom: 30px;
  }
  .system_r {
    width: 100%;
    margin-left: 0;
  }
  .system_r .center {
    max-width: 100%;
  }
}
/*-----------------------------------------------------
	#info
------------------------------------------------------*/
#info {
  position: relative;
  padding: 70px 0;
  background: #d2d2d2;
}
#info::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
  background: url("../img/common/right_cover.png")no-repeat 100% 0;
  background-size: 100% 100%;
  width: 1200px;
  height: 745px;
  pointer-events: none;
  mix-blend-mode: plus-lighter;
}
#info::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  background: url("../img/common/left_cover.png")no-repeat 100% 0;
  background-size: 100% 100%;
  width: 1200px;
  height: 745px;
  pointer-events: none;
  mix-blend-mode: plus-lighter;
}
#info h2.sticky {
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 30px;
  background: #d2d2d2;
}
#info ul li {
  width: 49%;
  margin-bottom: 20px;
}
#info ul li img {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  #info::before {
    width: 100%;
  }
  #info::after {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #info {
    padding: 0;
  }
  #info h2.sticky {
    padding-top: 90px;
    padding-bottom: 10px;
  }
  #info ul li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 414px) {
  #info ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}

