/*============================
#mv
============================*/
:root {
  --mv-height: min(100vw / 375 * 400, 421px);
}

.en {
  font-family: "Roboto", sans-serif;
}

section#mv {
  height: var(--mv-height);
  background: url(../images/mv-bg1.png) left bottom / auto 100% no-repeat;
  background-color: var(--primary-container);
  position: relative;
  padding: 0 var(--padding-inline);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-20, 20px);
  align-self: stretch;
  justify-content: center;
}

section#mv::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  height: 100%;
  background: url(../images/mv-bg2.jpg) right center / cover;
}
section#mv div.mv__container {
  width: 100%;
  max-width: var(--width-md);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-20, 20px);
  align-self: stretch;
  z-index: 10;
  height: 100%;
  justify-content: center;
}

section#mv div.mv__container div.mv__subtitle {
  color: var(--primary, #003da7);
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}
section#mv div.mv__container div.mv__subtitle span {
  padding-bottom: var(--scale-8, 6px);
  justify-content: center;
  align-items: center;
  border-bottom: var(--scale-2, 2px) solid var(--primary, #003da7);
}
section#mv div.mv__container h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-8, 8px);
  color: var(--primary, #003da7);
  font-family: "Noto Sans JP";
  font-size: min(48px, 100vw / 375 * 32);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 62.4px */
}
section#mv div.mv__container h2 div.h2__first-row {
}
section#mv div.mv__container h2 div.h2__second-row {
  display: flex;
  align-items: center;
  gap: var(--scale-8, 8px);
  flex-wrap: wrap;
}
section#mv div.mv__container h2 div.h2__second-row div.h2__badge {
  display: flex;
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  gap: var(--scale-8, 8px);
  background: var(--secondary, #20b6bc);
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--scale-28, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 36.4px */
}
section#mv div.mv__container h2 div.h2__second-row div.h2__badge svg {
  width: min(100vw / 375 * 10, 12px);
}
section#mv
  div.mv__container
  h2
  div.h2__second-row
  div.h2__badge
  svg:nth-last-of-type(1) {
  transform: scale(-1, 1);
}
section#mv div.mv__container div.mv__features {
  display: flex;
  align-items: center;
  gap: min(20px, 100vw / 375 * 6);
}
section#mv div.mv__container div.mv__features div.features__feature {
  display: flex;
  width: min(100vw / 375 * 96, 120px);
  aspect-ratio: 1 / 1;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: var(--surface, #fff);
  color: var(--primary, #003da7);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 26px */
}
@media screen and (max-width: 1024px) {
  section#mv {
    background-image: none;
  }
  section#mv:before {
    background-position: right calc(0px - min(78px, (1024px - 100vw))) center;
  }
  section#mv div.mv__container {
    background: linear-gradient(
      90deg,
      #d3e6ff 55.77%,
      rgba(211, 230, 255, 0) 100%
    );
  }
}
