.mch_wrapper * {
  box-sizing: border-box;
  font-family: foxtrot, sans-serif, serif;
  line-height: 1.5;
}

.mch_image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.mch_desktop {
  display: block;
}

.mch_mobile {
  display: none;
}

.mch_sup {
  display: inline;
  font-size: clamp(8px, 1vw, 14px);
  vertical-align: super;
}

.mch_video {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.mch_text-bold {
  font-weight: 700;
}

.mch_title {
  font-size: clamp(14px, 2.5vw, 40px);
}

.mch_subtitle {
  font-size: clamp(12px, 2vw, 30px);
}

.mch_caption {
  font-size: clamp(10px, 1.5vw, 26px);
}

.mch_empty {
  font-size: clamp(8px, 1.2vw, 22px);
}

.mch_section {
  width: 100%;
  position: relative;
}

.mch_section-first-content {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.mch_section-first-item {
  position: relative;
  color: #fff;
}

.mch_section-first-box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  max-width: 40%;
  padding: 3%;
}

.mch_section-first-logo {
  max-width: 30%;
}

.mch_section-first-items {
  padding: 0 3% 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
  text-align: center;
}

.mch_section-first-block {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: calc(33.3% - 2vw);
}

.mch_section-first-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #002554;
}

@media screen and (max-width: 768px) {
  .mch_section-first-block {
    width: calc(50% - 2vw);
  }
}

@media screen and (max-width: 480px) {
  .mch_desktop {
    display: none;
  }

  .mch_mobile {
    display: block;
  }

  .mch_section-first-box {
    -webkit-transform: none;
    transform: none;
    top: initial;
    bottom: 15%;
    max-width: 50%;
    right: 5%;
  }

  .mch_section-first-block {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .mch_section-first-box {
    -webkit-transform: none;
    transform: none;
    top: initial;
    bottom: 10%;
    max-width: 50%;
    right: 5%;
  }

  .mch_section-first-box .mch_title {
    font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  .mch_image-container-flex {
    display: flex;
  }

  .mch_image-container-flex > p {
    display: flex;
  }

  .mch_image--cover {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 320px) {
  .mch_section-first-box {
    max-width: 63%;
  }
}