@charset "UTF-8";

/* mv */
.mv {
  position: relative;
}

.mv::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .05);
  z-index: 4;
}

.mv .mv_title {
  position: absolute;
  content: '';
  display: block;
  bottom: 5%;
  left: 20%;
  transform: translate(-50%, 0);
  display: block;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  z-index: 5;
}

.mv_image {
  width: 100%;
  height: 650px;
  /* mv画像はこちらを調節 */
  object-fit: cover;
}


/* concept */

.concept {
  margin-top: 80px;
}

.concept_wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 100px;
}



.concept_wrapper:last-of-type {
  margin-bottom: 100px;
}

.concept_wrapper_re {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-direction: row-reverse;
  margin-top: 100px;
}


.catch_text {
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  display: block;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3% 3% 6%;
  width: 50%;
}

.concept_image {
  width: 60%;
}

.concept_image .image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.concept_wrapper_re .catch_text {
  left: inherit;
  right: 0;

}

.catch_text span {
  font-family: 'Raleway', sans-serif;
  font-size: 42px;
  line-height: 1.1;
  display: block;
  margin-bottom: .2em;
}


.catch_coment {
  font-size: 16px;
  font-weight: 400;
  margin-top: 1.6em;
}

/* about */
/* .about_wrapper {
  position: relative;
}

.about_image {
  width: 60%;
  margin-left: auto;
}

.about_image .image {
  object-fit: cover;
  width: 100%;
  height: 400px;
}

.about .section_button {
  position: relative;
  z-index: 3;
  margin-left: 6%;
} */

.concept_btn {
  color: #fff;
  background-color: var(--base-color);
  text-align: center;
  padding: .5em;
  margin-top: 2em;
  border-radius: 5px;
  width: 60%;
  transition: .4s;
}

.concept_btn:hover {
  opacity: .4;
}

/* works */

.works_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.works_container .item {
  width: 32%;
}

.works_container .item:nth-of-type(n+4) {
  margin-top: 60px;
}

.works_container .image {
  width: 100%;
  box-shadow: 0 1px 3px 0px #9e9e9e;
}

.works_title {
  font-weight: 600;
  text-align: center;
  margin-top: .5em;
}

/* contact */

.contact_text {
  text-align: center;
  margin-top: 30px;
}

@media (max-width:600px) {
  .mv_image {
    height: 300px;
  }

  .concept_image {
    width: 80%;
  }

  /* catch */
  .catch_text {
    left: initial;
    bottom: inherit;
    position: relative;
    width: 100%;
  }

  .catch_text span {
    font-size: 30px;
  }

  .catch_coment {
    font-size: 14px;
  }

  .concept_wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .concept_wrapper_re {
    flex-direction: column-reverse;
    align-items: center;
  }

  .concept_wrapper_re .catch_text {
    left: initial;
    bottom: inherit;
    position: relative;
    width: 100%;
  }


  .concept_wrapper .item,
  .concept_wrapper_re .item {
    margin-top: 32px;
  }

  .concept_btn {
    margin: 32px auto 0;
  }

  /* works */
  .works {
    padding-top: 110px;
  }

  .works_container {
    flex-direction: column;
  }

  .works_container .item {
    width: 100%;
    margin-top: 1em;
  }

}