@charset "UTF-8";

a:hover {
	opacity: 1;
}
/*----------------------------------
/concept
/----------------------------------*/
.concept {
	position: relative;
	z-index: 29;
  margin: 0 auto;
	padding: 0;
  max-width: 100%;
  background-color: #fff;
}
.concept img {
	position: relative;
  width: 100%;
  margin: 0 auto;
}
.desctext {
	max-width: 1040px;
  margin: 0 auto 30px;
  padding-top: 80px;
	font-size: 16px;
  line-height: 2;
}
article {
	margin: 0 auto;
	max-width: 1040px;
  background-color: #fff;
}

/*----------------------------------
/pickup
/----------------------------------*/
.pick {
  padding-top: 137px;
}
.pick h3 {
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
}
.pick h3:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background-color: #00A9EB;
  width: 40px;
  height: 1px;
  margin: 0 auto;
}
.pick-img {
	width: 340px;
	height: 240px;
  border: 1px solid #D5D5D5;
  background-color: #fff;
}
.pick-img img {
  width: 100%;
	height: 238px;
	object-fit: cover;
}
.pick ul {
  max-width: 1085px;
  margin: 53px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pick ul li {
  width: calc(33.3% - 30px *2/3);
}
.pick ul li:nth-child(n+2) {
  margin-left: 30px;
}
.pick ul li a {
  display: block;
}
.pick-content {
  margin-top: 40px;
}
.pick h4 {
  font-size: 1.8rem;
  font-weight: bold;
	line-height: 1.5;
}
.pick p {
  margin-top: 15px;
  line-height: 2;
}


/*----------------------------------
/movie
/----------------------------------*/
.movie {
	display: block;
	margin: 108px auto 0;
	width: 800px;
	height: 460px;
}
.movie iframe{
	width: 100%;
	height: 100%;
}


/*----------------------------------
/gallery
/----------------------------------*/
.gallery {
  max-width: 1085px;
  margin: 135px auto 0;
  padding-bottom: 120px;
}
.gallery h3 {
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
}
.gallery h3:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background-color: #00A9EB;
  width: 40px;
  height: 1px;
  margin: 0 auto;
}
.gallery-img {
  border: 1px solid #D5D5D5;
  background-color: #fff;
}
.gallery ul {
  margin-top: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery ul li {
	position: relative;
  width: calc(33.3% - 30px *2/3);
	height: 337px;
}
.gallery ul li:nth-child(n+2) {
  margin-left: 30px;
}
.gallery ul li:nth-child(3n+1) {
  margin-left: 0;
}
.gallery ul li:nth-child(n+4) {
  margin-top: 30px;
}
.gallery ul li a {
  display: block;
	height: 337px;
}
.gallery ul li a img {
  width:100%;
	height:100%;
	object-fit:cover;
}
.gallery-content {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery-content .gallery-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 650px;
          flex: 0 0 650px;
}
.gallery-content .gallery-left .gallery-left-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	padding: 15px 0;
	line-height: 1.6em;
  border-bottom: 1px solid #C9C9C9;
}
.gallery-content .gallery-left .gallery-left-item:first-child {
  border-top: 1px solid #C9C9C9;
}
.gallery-content .gallery-left .gallery-left-item .gallery-left-item-left {
  margin-left: 38px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
.gallery-content .gallery-left .gallery-left-item .gallery-left-item-right {
  margin-left: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.gallery-content .gallery-right {
  margin: 0;
  margin-left: 70px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.gallery-content .gallery-right-img {
	margin-bottom: 10px;
  width: 370px;
}
.gallery-content .gallery-right-img img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  
}
.gallery-content .gallery-right-img:nth-child(2) {
  margin-top: -6px;
}
.gallery-btn {
  color: #fff;
  border-radius: 18px;
  margin: 120px auto 0;
  height: 60px;
  line-height: 60px;
  width: 370px;
  text-align: center;
  position: relative;
}
.gallery-btn .btn-radius {
  position: absolute;
  padding: 0;
}
.gallery-btn .btn-radius::before {
  content: '';
  display: block;
  background-image: url(..../../../img/arrow-left-white.svg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 24px;
  width: 20px;
  height: 10px;
  transition: .8s;
}
.gallery-btn .btn-radius:hover::before{
  left: 14px;
}
.gallery-btn .btn-radius::after {
  display: none;
}
@media screen and (max-width: 1024px) {
	.desctext {
		margin: 0 auto;
		width: 900px;
		padding: 30px 0 0;
	}
	.pick {
		padding-top: 80px;
	}
	.pick ul {
		max-width: 900px;
		margin: 30px auto 0;
	}
	.pick ul li {
		width: calc(280px - 20px *2/3);
	}
	.pick ul li:nth-child(n+2) {
		margin-left: 40px;
	}
	.pick-img {
		width: 280px;
		height: 220px;
	}
	.pick-img img {
		width: 280px;
		height: 218px;
	}
	.pick-content {
		margin-top: 20px;
		width: 280px;
	}
	.gallery ul {
		margin: 30px auto 0;
		width: 900px;
  }
	.gallery ul li {
		height: 280px;
  }
  .gallery ul li a {
		height: 280px;
	}
	.gallery ul li a img {
		height: 280px;
	}
	.gallery-content {
  margin: 120px auto;
  width: 900px;
}
	.gallery-content .gallery-right-img {
		width: 300px;
	}
	.gallery-content .gallery-left {
		-webkit-box-flex: 0;
				-ms-flex: 0 0 540px;
						flex: 0 0 540px;
	}
	.gallery-content .gallery-right {
  	margin-top: 0px;
	}
	.gallery-btn {
		width: 300px;
	}
}
@media screen and (max-width: 896px) {
	.desctext {
		margin: 0 auto;
		width: 86%;
		padding: 30px 0 0;
	}
	.pick {
		padding: 60px 0;
	}
	.pick h3 {
		margin-bottom: 30px;
	}
  .pick ul {
    display: block;
		margin: 0 auto;
    padding: 0;
		width: 86%;
  }
  .pick ul li {
    width: 100%!important;
  }
  .pick ul li:nth-child(n+2) {
    margin-left: 0!important;
    margin-top: 50px;
  }
	.pick-img {
		width: 100%;
		height: auto;
		border: 1px solid #D5D5D5;
		background-color: #fff;
	}
	.pick-img img {
		display: block;
		margin: 0 auto;
		width: 100%;
		height: auto;
		object-fit: contain;
	}
	.pick-content {
		margin-top: 20px;
		width: 100%;
	}
	.movie {
		display: block;
		margin: 60px auto 0;
		width: 90%;
		height: 400px;
	}
  .gallery {
    margin-top: 60px;
    padding-bottom: 100px;
  }
  .gallery ul {
		margin: 30px auto 60px;
    padding: 0;
		width: 86%;
  }
  .gallery ul li {
    width: calc(50% - 30px * 1/2);
		height: 300px;
  }
  .gallery ul li + .gallery ul li {
    margin-left: 30px !important;
  }
  .gallery ul li:nth-child(2n+1) {
    margin-left: 0;
  }
  .gallery ul li:nth-child(4) {
    margin-left: 30px;
  }
  .gallery ul li:nth-child(n+3) {
    margin-top: 30px;
  }
  .gallery ul li a {
		display: block;
		height: 300px;
	}
	.gallery ul li a img {
		width:100%;
		height: 300px;
		object-fit:cover;
	}
  .gallery-content {
    margin: 0 auto 20px;
		padding: 0;
    display: block;
		width: 86%;
  }
  .gallery-content .gallery-left .gallery-left-item .gallery-left-item-left {
    margin-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .gallery-content .gallery-left .gallery-left-item .gallery-left-item-right {
    margin-left: 0;
  }
  .gallery-content .gallery-right {
    margin: 50px auto 0;
  }
  .gallery-content .gallery-right-img {
    width: 100%;
  }
	.gallery-content .gallery-left .gallery-left-item {
		padding: 10px 0;
		height: auto;
		line-height: 1.6em;;
	}
  .gallery-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  .gallery ul li {
		height: 150px;
  }
  .gallery ul li a {
		height: 150px;
	}
	.gallery ul li a img {
		height: 100%;
	}
	.movie {
		display: block;
		margin: 0 auto 0;
		width: 90%;
		height: 220px;
	}
}