/*============================
#mv
============================*/
section#mv {
  height: min(560px, 100vw / 768 * 340);
  background: url(../images/mv-bg.jpg) center center/ auto 100% no-repeat;
  padding-top: min(100vw / 375 * 16, 72px);
  font-feature-settings: "palt";
  font-weight: bold;
  padding-inline: var(--padding-inline, 24px);
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(100vw / 768 * 8, 16px);
}

section#mv div.mv__year {
  display: flex;
  width: min(100vw / 768 * 80, 120px);
  font-size: min(100vw / 768 * 13, 24px);

  aspect-ratio: 1 / 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 1000px;
  background: #fff;
  color: var(--on-surface, #4d4848);
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}

section#mv div.mv__year svg {
  width: min(40px, 100vw / 768 * 20);
  aspect-ratio: 10/7;
}

section#mv div.mv__subtitle {
  font-size: min(100vw / 768 * 24, 40px);
  display: flex;
  padding: var(--scale-8, 8px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  border-radius: var(--scale-4, 4px);
  border: var(--scale-2, 2px) solid var(--primary, #c37e81);
  background: #fff;
  color: var(--on-surface, #4d4848);
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  position: relative;
}

section#mv div.mv__subtitle:before {
  position: absolute;
  left: calc(var(--scale-2, 2px) * -1);
  top: calc(var(--scale-2, 2px) * -1);
  content: "";
  width: var(--scale-8, 8px);
  height: 8px;
  aspect-ratio: 1/1;
  border-radius: var(--scale-4, 4px) 0 0 0;
  background: var(--surface, #fff);
}
section#mv div.mv__subtitle:after {
  position: absolute;
  right: calc(var(--scale-2, 2px) * -1);
  bottom: calc(var(--scale-2, 2px) * -1);
  content: "";
  width: var(--scale-8, 8px);
  height: 8px;
  aspect-ratio: 1/1;
  border-radius: 0 0 var(--scale-4, 4px) 0;
  background: var(--surface, #fff);
}

section#mv h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-4, 4px);
}
section#mv h1 div.h1__row {
  font-size: min(100vw / 768 * 48, 64px);
  display: flex;
  padding: var(--scale-8, 8px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  border-radius: var(--scale-4, 4px);
  background: rgba(195, 126, 129, 0.9);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 64px */
}

@media screen and (max-width: 768px) {
  section#mv {
    background: url(../images/mv-bg-sp.jpg) center center/ auto 100% no-repeat;
    height: calc(100vw / 375 * 460);
  }
  section#mv div.mv__year {
    width: min(100vw / 375 * 96, 120px);
    font-size: min(100vw / 375 * 16, 24px);
  }

  section#mv div.mv__year svg {
    width: min(40px, 100vw / 375 * 32);
  }
  section#mv div.mv__subtitle {
    font-size: min(100vw / 375 * 24, 40px);
  }
  section#mv h1 div.h1__row {
    font-size: min(100vw / 375 * 32, 64px);
  }
}
