@charset 'utf-8';

/*--------------------------------------------------------
mvv
--------------------------------------------------------*/
.mvv_overview {
  margin-top: 5rem;
  padding: 5rem 0;
  background: var(--color1);
}

.mvv_ttl h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
}

.mvv_ttl p {
  margin-top: 2rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.mvv_img {
  width: 100%;
  margin-top: 3rem;
  text-align: center;
}

.mvv_img img {
  width: 80%;
}

.mvv_details {
  padding: 5rem 0;
  background: #eaeaea;
}

.mvv_details_ttl h2 {
  color: var(--color1);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.mvv_details_list {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

@media screen and (max-width: 1000px) {
  .mvv_ttl h2 {
    font-size: min(8cqw, 4rem);
  }

  .mvv_ttl p {
    font-size: min(4cqw, 1.5rem);
    line-height: 1.75;
  }
}

@media screen and (max-width: 580px) {
  .mvv_img {
    margin-top: 1rem;
  }

  .mvv_img img {
    width: 95%;
  }

  .mvv_details_ttl h2 {
    font-size: min(7cqw, 2rem);
    line-height: 1.5;
  }

}

/*--------------------------------------------------------
mvv_card
--------------------------------------------------------*/
.card_list {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

.card {
  width: 30%;
  height: 600px;
  perspective: 2000;
}

.card__inner {
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
}

.card__inner.is-flipped {
  transform: rotateY(180deg);
}

.card__face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  border-radius: 30px;
  background: #eaeaea;
  box-shadow: 15px 15px 30px #bebebe,
             -15px -15px 30px #ffffff;
}

.card__face--front,
.card_face--back {
  position: relative;
}

.card__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.card_face--front h2 {
  color: var(--color3);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
}

.card_face--front span {
  position: relative;
  display: block;
  width: fit-content;
  margin: 3rem auto 0;
  color: var(--color1);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
}

.card_face--front span::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -25%;
  display: block;
  background-image: url('../img/click_icon.png');
  background-size: cover;
  width: 30px;
  height: 27px;
}

.card_face--back {
  transform: rotateY(180deg);
}

.card_face--back h2 {
  color: var(--color1);
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}

.card_face--back span {
  display: block;
  margin-top: 2rem;
  color: var(--color8);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.card_face--back p {
  margin-top: 2rem;
  color: var(--color3);
  font-size: 0.9rem;
  line-height: 1.75;
}

@media screen and (max-width: 1000px) {
  .card_list {
    display: block;
  }

  .card {
    width: 80%;
    height: 450px;
    margin: 0 auto;
    perspective: 2000;
  }

  .card:nth-of-type(n + 2) {
    margin-top: 3rem;
  }

  .card_face--back span {
    margin-top: 1rem;
  }

  .card_face--back p {
    margin-top: 1rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 580px) {
  .card_list {
    margin-top: 3rem;
  }

  .card {
    width: 90%;
    height: 400px;
    margin: 0 auto;
    perspective: 2000;
  }

  .card_face--back h2 {
    font-size: min(9cqw, 3rem);
  }

   .card_face--back span {
    font-size: min(5cqw, 1.5rem);
  }

  .card_face--back p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}
/*--------------------------------------------------------
company_info
--------------------------------------------------------*/
section.company_info {
  background: #eaeaea;
}

.company_info_ttl h2 {
  color: var(--color1);
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
}

.company_info_ttl span {
  display: block;
  margin-top: 1rem;
  color: var(--color3);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.company_info_body {
  margin-top: 5rem;
}

.company_info_table {
  width: 100%;
}

.company_info_table th,
.company_info_table td {
  padding: 3rem;
  border-bottom: 1.5px solid #aaa;
  font-size: 1.25rem;
  vertical-align: middle;
  letter-spacing: 0.1rem;
}

.company_info_table th {
  width: 40%;
  color: var(--color1);
  font-weight: 700;
}

.company_info_table td {
  width: 60%;
  color: #828282;
  font-weight: 700;
}

.business_block:nth-of-type(2) {
  margin-top: 1.5rem;
}

.element_title {
  display: block;
  font-weight: 500;
}

.element_body {
  display: block;
  margin-top: 0.5rem;
}

.office_block:nth-of-type(2) {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color4);
}

@media screen and (max-width: 850px) {
  .company_info_table th,
  .company_info_table td {
    display: block;
    box-sizing: border-box;
  }

  .company_info_table th {
    width: 100%;
    padding: 1rem;
    border-top: none;
    border-bottom: none;
    background: var(--color1);
    color: #fff;
  }

  .company_info_table td {
    width: 100%;
    padding: 1rem 1.5rem 2rem 1.5rem;
    border-top: none;
    border-bottom: none;
  }
}

@media screen and (max-width: 580px) {
  .company_info_body {
    margin-top: 3rem;
  }

  .company_info_ttl h2 {
    font-size: 11cqw;
  }

  .company_info_ttl span {
    margin-top: 1rem;
    font-size: 5cqw;
  }

  .company_info_table th,
  .company_info_table td {
    font-size: min(4cqw, 1.15rem);
    font-weight: 500;
  }

  .element_title {
    font-weight: 700;
  }
}