/* MVセクション */

.mv {
  position: relative;
}

.mv__container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.mv__image {
  background-image: url('../images/mv.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
}

@media (min-width: 768px) {
  .mv__image {
    height: 760px;
  }
}

.mv__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 30px 34px 30px;
}

@media (min-width: 768px) {
  .mv__content {
    align-items: flex-start;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--base-white);
    border-radius: 0 60px 0 0;
    padding: 60px 50px 20px 80px;
  }
}

@media screen and (min-width: 1441px) {
  .mv__content {
    left: calc((100vw - 1360px) / 2);
  }
}

.mv__subtitle {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .mv__subtitle {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

.mv__logo {
  width: 200px;
}

@media screen and (min-width: 768px) {
  .mv__logo {
    width: 227px;
  }
}

.mv__stat {
  font-size: 20px;
  color: var(--brand-blue);
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .mv__stat {
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

.mv__stat--highlight {
  font-family: Roboto, sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: bold;
}

.mv__stat--highlight2 {
  font-family: Roboto, sans-serif;
  font-size: 56px;
  line-height: 1.6;
}

.mv__stat--highlight3 {
  font-size: 10px;
}
.mv__circleIcons {
  display: flex;
  gap: 12px;
}

@media screen and (min-width: 768px) {
  .mv__circleIcons {
    gap: 0;
  }
}

.mv__circleIcon {
  display: flex;
  font-weight: bold;
  width: 80px;
  height: 80px;
  background-color: var(--point-yellow);
  color: var(--brand-blue);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .mv__circleIcon {
    position: absolute;
    width: 100px;
    height: 100px;
  }
}

@media screen and (min-width: 768px) {
  .mv__circleIcon1 {
    bottom: 160px;
    right: -100px;
    transform: translateX(-50%);
  }
}


@media screen and (min-width: 768px) {
  .mv__circleIcon2 {
    bottom: 60px;
    right: -100px;
    transform: translateX(-50%);
  }
}


.mv__cta {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 32px;
}

.mv__note {
  margin-top: 12px;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .mv__note {
    margin-top: 0;
  }
}

.sensorImages {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 150px;
  height: 100px;
  top: 187px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

@media screen and (min-width: 768px) {
  .sensorImages {
    gap: clamp(20px, 2.78vw, 40px);
    width: clamp(200px, 21.67vw, 312px);
    height: clamp(260px, 28.68vw, 413px);
    top: unset;
    left: unset;
    bottom: clamp(-40px, -4.17vw, -60px);
    right: clamp(20px, 2.08vw, 30px);
    transform: unset;
  }
}

@media screen and (min-width: 1441px) {
  .sensorImages {
    right: calc((100vw - 1360px) / 2 + 30px);
  }
}

.wifi {
  width: 120px;
}

@media screen and (min-width: 768px) {
  .wifi {
    width: 100%;
  }
}

.mv__break {
  display: block;
}

@media screen and (min-width: 540px) and (max-width: 767px) {
  .mv__break {
      display: none;
    }
  }