@charset "utf-8";

/*---------------------------------------------------------
   mv
---------------------------------------------------------*/
.mv-wrapper {
  width: 100%;
  height: 500px;
  position: relative;
}

.mv-wrapper picture img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .mv-wrapper {
    width: 100%;
    height: 53.333vw;
  }

  .mv-wrapper picture img {
    width: 100%;
    height: 53.333vw;
    object-fit: cover;
  }
}

/*---------------------------------------------------------
   mv h1
---------------------------------------------------------*/
.mv-wrapper h1 {
  /* width: 850px;
  height: 180px; */
  width: 680px;
  height: 145px;
  position: absolute;
  top: 57%;
  left: 45%;
  transform : translate(-43%,-55%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-wrapper h1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .mv-wrapper h1 {
    width: 73.333vw;
    height: 16vw;
    top: 50%;
    left: 50%;
    transform : translate(-50%,-50%);
  }
}

.l-container-wrapper {
  width: 100%;
  padding-bottom: 70px;
}

.sub_ttl_wrapper {
  margin-top: 120px;
  text-align: center;
}

.sub_ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media only screen and (max-width: 768px) {
  .sub_ttl_wrapper {
    width: 90%;
    margin: 0 auto;
    margin-top: 10vw;
    text-align: center;
  }
  
  .sub_ttl {
    display: inline;
    font-size: 18px;
    font-weight: 500;
    margin-top: 13.333vw;
    text-align: left;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

.img-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 125px;
}

.img-list li {
  width: 330px;
  height: 270px;
  margin-bottom: 80px;
}

.img-list li:not(:nth-of-type(3n)) {
  margin-right: 55px;
}

.img-list li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.img-list li a img {
  display: block;
  width: 330px;
  height: 240px;
  aspect-ratio: 661 / 481;
  object-fit: cover;
}

.img-list li .img_ttl_hover .img_ttl {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}


@media only screen and (max-width: 768px) {
  .img-list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 13.333vw;
  }

  .img-list li {
    width: 100%;
    height: auto;
    margin-bottom: 10.667vw;
  }

  .img-list li:not(:nth-of-type(3n)) {
    margin-right: 0;
  }

  .img-list li a img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 661 / 481;
    object-fit: cover;
  }

  .img-list li .img_ttl_hover .img_ttl {
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    margin-top: 1.333vw;
  }
}


