.mv {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 680px;
  overflow: hidden;
  background: #000;
  color: #fff;
  isolation: isolate;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv {
    min-height: 720px;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    min-height: 700px;
  }
}

.mv__slides,
.mv__slide {
  position: absolute;
  inset: 0;
}

.mv__slides {
  z-index: 0;
}

.mv__slide {
  opacity: 0;
  transition: opacity 240ms ease;
}

.mv__slide.is-active {
  opacity: 1;
}

.mv__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .mv__slide img {
    object-position: center top;
  }
}

.mv__intro-copy {
  position: absolute;
  z-index: 4;
  top: 45%;
  left: 50%;
  width: min(90%, 1000px);
  transform: translate(-50%, -50%);
  text-align: center;
  transition: opacity 300ms ease;
}

.mv__intro-copy.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.mv__intro-copy p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0px 0px 26px rgba(0, 0, 0, 0.8);
}

.mv__intro-copy p:first-child {
  font-size: clamp(13px, 1.35vw, 22px);
  letter-spacing: 0.22em;
}

.mv__intro-copy p:last-child {
  margin-top: 10px;
  font-size: clamp(42px, 7vw, 120px);
  font-style: italic;
  letter-spacing: 0.02em;
}

.mv__final-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms ease;
}

.mv__final-layout.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mv__content {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(74px);
  transition:
    opacity 320ms ease-out,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__content {}
}

@media screen and (max-width: 767px) {
  .mv__content {}
}

.mv__final-layout.is-visible .mv__content {
  opacity: 1;
  transform: translateY(0);
}

.mv__heading {
  margin: 0;
  color: #dbbd6d;
  font-size: clamp(30px, 4vw, 88px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

@media screen and (max-width: 767px) {
  .mv__heading {
    font-size: clamp(27px, 11vw, 40px);
    letter-spacing: 0.08em;
  }
}

.mv__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(100%, 560px);
  padding: 10px 30px;
  color: #fff;
  background: linear-gradient(135deg, #e4bd58 0%, #bd841f 52%, #9c6812 100%);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.3);
  transition:
    filter 180ms ease,
    box-shadow 180ms ease;
}

.mv__button:focus-visible {
  filter: brightness(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.44);
}

@media screen and (max-width: 767px) {
  .mv__button {
    min-height: 62px;
    font-size: 18px;
  }
}

.mv__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  width: 100%;
  padding: 16px clamp(22px, 3vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
}

.mv__footer img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__footer {
    min-height: 94px;
    gap: 18px;
    padding: 16px 28px;
  }
}

@media screen and (max-width: 767px) {
  .mv__footer {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "collab collab"
      "mlb rights";
    align-items: center;
    gap: 16px 12px;
    min-height: auto;
    padding: 16px;
  }
}

.mv__footer-collab {
  display: flex;
  align-items: center;
  gap: clamp(9px, 1vw, 18px);
}

.mv__footer-collab img {
  width: auto;
  max-width: 180px;
  max-height: 32px;
}

.mv__footer-collab span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 23px;
  font-weight: 300;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__footer-collab img {
    max-width: 132px;
    max-height: 27px;
  }
}

@media screen and (max-width: 767px) {
  .mv__footer-collab {
    grid-area: collab;
    justify-content: center;
  }

  .mv__footer-collab img {
    max-width: 96px;
    max-height: 22px;
  }

  .mv__footer-collab span {
    font-size: 16px;
  }
}

.mv__footer-mlb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.mv__footer-mlb img {
  display: block;
  flex: 0 0 auto;
  width: auto !important;
  max-width: 150px;
  height: 38px;
  max-height: 38px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__footer-mlb img {
    max-width: 112px;
    max-height: 32px;
  }
}

@media screen and (max-width: 767px) {
  .mv__footer-mlb {
    grid-area: mlb;
    justify-content: flex-start;
    gap: 8px;
  }

  .mv__footer-mlb img {
    max-width: 82px;
    max-height: 24px;
  }
}

.mv__footer-rights {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 18px;
}

.mv__collectible-badge {
  width: 76px;
  max-height: 92px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__collectible-badge {
    width: 58px;
  }
}

@media screen and (max-width: 767px) {
  .mv__collectible-badge {
    width: 38px;
  }
}

.mv__footer-rights p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  text-align: right;
  white-space: nowrap;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__footer-rights p {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .mv__footer-rights {
    grid-area: rights;
    gap: 9px;
  }

  .mv__footer-rights p {
    font-size: 8px;
    line-height: 1.5;
  }
}

.mv__loader {
  position: absolute;
  z-index: 30;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050505;
  color: #fff;
  transform: translateY(0);
  transition: transform 720ms cubic-bezier(0.76, 0, 0.24, 1);
}

.mv__loader.is-leaving {
  pointer-events: none;
  transform: translateY(-100%);
}

.mv__loader.is-hidden {
  visibility: hidden;
}

.mv__loader-main {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 40px 20px;
}

.mv__loader-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dbbd6d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 6vw, 92px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.mv__loader-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  text-shadow: none;
  animation: mv-loader-title-reveal 2.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * 75ms);
}

@media screen and (max-width: 767px) {
  .mv__loader-title {
    font-size: clamp(30px, 10vw, 48px);
    letter-spacing: 0.01em;
  }

  .mv__loader-title span {
    transform: translateY(11px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv__loader-title span {
    animation: none;
  }

  .mv__loader-title span {
    opacity: 1;
    transform: none;
  }
}

.mv__loader-title-space {
  width: 0.32em;
  animation: none !important;
}

@media screen and (max-width: 767px) {
  .mv__loader-title-space {
    width: 0.22em;
  }
}

.mv__loader-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  animation: mv-loader-label-pulse 1.8s ease-in-out infinite alternate;
}

.mv__loader-label {
  margin: 0;
  color: #dbbd6d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  animation: mv-loader-pulse 900ms ease-in-out infinite alternate;
}

@media screen and (max-width: 767px) {
  .mv__loader-label {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv__loader-label {
    animation: none;
  }
}

.mv__loader-footer {
  width: 100%;
}

.mv__footer--loader {
  min-height: 104px;
  border-top: 0;
  background: transparent;
  backdrop-filter: none;
}

.mv__footer--loader .mv__footer-collab,
.mv__footer--loader .mv__footer-mlb,
.mv__footer--loader .mv__footer-rights {
  animation: mv-loader-logo-pulse 1800ms ease-in-out infinite alternate;
}

.mv__footer--loader .mv__footer-mlb {
  animation-delay: 240ms;
}

.mv__footer--loader .mv__footer-rights {
  animation-delay: 480ms;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__footer--loader {
    min-height: 92px;
  }
}

@media screen and (max-width: 767px) {
  .mv__footer--loader {
    min-height: auto;
  }
}

.mv__loader-main {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 40px 20px;
}

.mv__loader-line {
  position: relative;
  width: min(100%, 620px);
  height: 1px;
  overflow: hidden;
  background: rgba(219, 189, 109, 0.18);
}

.mv__loader-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -42%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(219, 189, 109, 0.3) 15%,
      #dbbd6d 50%,
      rgba(219, 189, 109, 0.3) 85%,
      transparent 100%);
  box-shadow: 0 0 12px rgba(219, 189, 109, 0.65);
  animation: mv-loader-line-run 1.4s ease-in-out infinite;
}

.mv__loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
}

@media screen and (max-width: 767px) {
  .mv__loader-line {
    width: min(78vw, 300px);
  }
}

.mv__loader-status {
  position: relative;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
}

.mv__loader-status::after {
  content: "";
  animation: mv-loader-dots 1.2s steps(4, end) infinite;
}

@media screen and (max-width: 767px) {
  .mv__loader-status {
    font-size: 9px;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv__loader-status::after {
    animation: none;
    content: "...";
  }
}

.mv__final-layout {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 1;
  pointer-events: none;
  background: #000;
  transition: none;
}

.mv__final-layout.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mv__final-visual {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 70%;
  overflow: hidden;
  background: #000;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__final-visual {
    height: 70%;
    max-height:610px;
  }
}

@media screen and (max-width: 767px) {
  .mv__final-visual {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    height: 70%;
  }
}

.mv__final-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #111;
  opacity: 1;
  will-change: clip-path;
}

.mv__final-panel img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
}

.mv__final-panel.mv__final-panel--01 img {
  object-position: -14vw 50%;
}

.mv__final-panel.mv__final-panel--02 img {
  object-position: 25%;
}

.mv__final-panel.mv__final-panel--03 img {
  object-position: 75%;
}

.mv__final-panel.mv__final-panel--04 img {
  object-position: 108% center;
}

@media screen and (max-width: 767px) {
  .mv__final-panel img {
    object-fit: cover;
    object-position: center center;
  }

  .mv__final-panel.mv__final-panel--01 img {
    object-position: 50% 25%;
  }

  .mv__final-panel.mv__final-panel--02 img {
    object-position: center center;
  }

  .mv__final-panel.mv__final-panel--03 img {
    object-position: center center;
  }

  .mv__final-panel.mv__final-panel--04 img {
    object-position: center 18%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px){

  .mv__final-panel.mv__final-panel--01 img {
    object-position: -26vw 50%;
  }

  .mv__final-panel.mv__final-panel--02 img {
    object-position: 2%;
  }

  .mv__final-panel.mv__final-panel--03 img {
    object-position: center center;
  }

  .mv__final-panel.mv__final-panel--04 img {
    object-position: 132% center;
  }
}

@media screen and (max-width: 767px) {
  .mv__final-panel {
    position: relative;
    inset: auto;
    z-index: auto;
    min-height: 0;
    clip-path: inset(0 0 0 100%);
    will-change: clip-path;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv__final-panel {
    clip-path: none;
  }
}

.mv__final-panel--01 {
  z-index: 1;
  clip-path: polygon(20% 0, 20% 0, 16% 100%, 16% 100%);
}

.mv__final-panel--02 {
  z-index: 2;
  clip-path: polygon(40% 0, 40% 0, 36% 100%, 36% 100%);
}

.mv__final-panel--03 {
  z-index: 3;
  clip-path: polygon(60% 0, 60% 0, 56% 100%, 56% 100%);
}

.mv__final-panel--04 {
  z-index: 4;
  clip-path: polygon(80% 0, 80% 0, 76% 100%, 76% 100%);
}

.mv__final-layout.is-visible .mv__final-panel--01 {
  animation: mv-final-reveal-01 620ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
}

.mv__final-layout.is-visible .mv__final-panel--02 {
  animation: mv-final-reveal-02 620ms cubic-bezier(0.16, 1, 0.3, 1) 110ms both;
}

.mv__final-layout.is-visible .mv__final-panel--03 {
  animation: mv-final-reveal-03 620ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

.mv__final-layout.is-visible .mv__final-panel--04 {
  animation: mv-final-reveal-04 620ms cubic-bezier(0.16, 1, 0.3, 1) 330ms both;
}

@media screen and (max-width: 767px) {
  .mv__final-layout.is-visible .mv__final-panel--01 {
    animation: mv-final-row-reveal 460ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
  }

  .mv__final-layout.is-visible .mv__final-panel--02 {
    animation: mv-final-row-reveal 460ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both;
  }

  .mv__final-layout.is-visible .mv__final-panel--03 {
    animation: mv-final-row-reveal 460ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
  }

  .mv__final-layout.is-visible .mv__final-panel--04 {
    animation: mv-final-row-reveal 460ms cubic-bezier(0.16, 1, 0.3, 1) 270ms both;
  }
}

.mv__final-lines {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mv__final-lines--pc {
  display: block;
}

.mv__final-lines--pc line {
  stroke: #dbbd6d;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(219, 189, 109, 0.58));
}

@media screen and (max-width: 767px) {
  .mv__final-lines--pc {
    display: none;
  }
}

.mv__final-lines--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mv__final-lines--sp {
    display: block;
  }

  .mv__final-lines--sp span {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: #dbbd6d;
    box-shadow: 0 0 4px rgba(219, 189, 109, 0.58);
  }

  .mv__final-lines--sp span:nth-child(1) {
    top: 25%;
  }

  .mv__final-lines--sp span:nth-child(2) {
    top: 50%;
  }

  .mv__final-lines--sp span:nth-child(3) {
    top: 75%;
  }

  .mv__final-lines--sp span:nth-child(4) {
    display: none;
  }
}

.mv__final-overlay {
  position: absolute;
  z-index: 12;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.48) 42%,
      rgba(0, 0, 0, 0.96) 100%);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__final-overlay {
    height: 44%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.66) 34%,
        rgba(0, 0, 0, 0.97) 100%);
  }
}

@media screen and (max-width: 767px) {
  .mv__final-overlay {
    height: 18%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.58) 40%,
        rgba(0, 0, 0, 0.97) 100%);
  }
}

.mv__content {
  position: absolute;
  z-index: 20;
  inset: 0;
  display: block;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .mv__content {
    max-width: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__content {}
}

.mv__final-layout.is-visible .mv__content {
  pointer-events: auto;
}

.mv__message {
  position: absolute;
  bottom: clamp(132px, 13vh, 190px);
  display: grid;
  justify-items: center;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .mv__message {
    bottom: clamp(168px, 24vh, 210px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__message {
    bottom: clamp(262px, 12vh, 210px);
    left: 0;
  }
}

.mv__heading {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 8.8vw, 88px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.62),
    0 0 28px rgba(0, 0, 0, 0.42);
}

@media screen and (max-width: 767px) {
  .mv__heading {
    font-size: clamp(28px, 8.2vw, 42px);
    line-height: 1.16;
    letter-spacing: 0.04em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__heading {
    font-size: clamp(40px, 5.8vw, 62px);
    letter-spacing: 0.06em;
  }
}

.mv__product-name {
  position: relative;
  margin: clamp(16px, 1.8vw, 22px) 0 0;
  padding-top: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0.06em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.54);
}

.mv__product-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 520px);
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(219, 189, 109, 0.86) 50%,
      transparent 100%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .mv__product-name {
    margin-top: 12px;
    padding-top: 11px;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0.03em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__product-name {
    width: 100%;
    font-size: 4vw;
  }
}

.mv__purchase-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 96px;
  padding: 24px clamp(24px, 5vw, 72px);
  border-top: 1px solid rgba(219, 189, 109, 0.56);
  background: linear-gradient(90deg,
      rgba(5, 12, 24, 0.97) 0%,
      rgba(36, 27, 14, 0.96) 52%,
      rgba(92, 8, 24, 0.94) 100%);
  box-shadow:
    0 -18px 42px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

@media screen and (max-width: 767px) {
  .mv__purchase-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 150px;
    padding: 14px 16px 16px;
    background: linear-gradient(180deg,
        rgba(5, 12, 24, 0.98) 0%,
        rgba(36, 27, 14, 0.96) 48%,
        rgba(92, 8, 24, 0.94) 100%);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__purchase-bar {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 104px;
    padding: 18px 32px;
  }
}

.mv__purchase-info {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mv__purchase-info {
    display: grid;
    gap: 7px;
    justify-items: center;
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__purchase-info {
    display: grid;
    gap: 8px;
    text-align: center;
  }
}

.mv__seller,
.mv__period {
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.mv__seller {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.mv__period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid rgba(219, 189, 109, 0.58);
  color: #dbbd6d;
  background: rgba(0, 0, 0, 0.24);
  font-size: 18px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .mv__seller {
    font-size: 4vw;
    letter-spacing: 0.04em;
  }

  .mv__period {
    font-size: 5vw;
    white-space: normal;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px){
  .mv__period {
    font-size: 3vw;
    width: 100%;
  }
}
.mv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 225, 156, 0.9);
  color: #1a1304;
  background: linear-gradient(135deg, #f7dfa1 0%, #dbbd6d 44%, #a87518 100%);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 8px 20px rgba(0, 0, 0, 0.34);
  transition:
    filter 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

@media screen and (max-width: 767px) {
  .mv__button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 15px 24px;
    font-size: 16px;
    letter-spacing: 0.12em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__button {
    min-width: 220px;
    min-height: 56px;
    padding: 15px 28px;
    font-size: 17px;
  }
}

.mv__button:focus-visible {
  border-color: #fff0bc;
  filter: brightness(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 8px 25px rgba(0, 0, 0, 0.48);
}

.mv__heading,
.mv__product-name,
.mv__purchase-bar {
  opacity: 0;
  transform: translateY(18px);
}

@media screen and (max-width: 767px) {

  .mv__heading,
  .mv__product-name,
  .mv__purchase-bar {
    transform: translateY(14px);
  }
}

.mv__final-layout.is-visible .mv__heading {
  animation: mv-final-content-in 420ms cubic-bezier(0.22, 1, 0.36, 1) 960ms both;
}

.mv__final-layout.is-visible .mv__product-name {
  animation: mv-final-content-in 420ms cubic-bezier(0.22, 1, 0.36, 1) 1260ms both;
}

.mv__final-layout.is-visible .mv__purchase-bar {
  animation: mv-final-bar-in 460ms cubic-bezier(0.22, 1, 0.36, 1) 1580ms both;
}

@media (prefers-reduced-motion: reduce) {

  .mv__final-layout.is-visible .mv__heading,
  .mv__final-layout.is-visible .mv__product-name,
  .mv__final-layout.is-visible .mv__purchase-bar {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.mv__heading {
  opacity: 0;
  transform: translateY(18px);
}

.mv__heading {
  margin: 0;
  color: #dbbd6d;
  font-size: clamp(36px, 5.8vw, 84px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
}

@media screen and (max-width: 767px) {
  .mv__heading {
    font-size: clamp(27px, 8vw, 40px);
    line-height: 1.15;
    letter-spacing: 0.04em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__heading {
font-size: clamp(40px, 9.4vw, 98px);
  }
}

.mv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 500px);
  min-height: 66px;
  padding: 18px 40px;
  border: 1px solid rgba(255, 225, 156, 0.9);
  color: #1a1304;
  background: linear-gradient(135deg, #f7dfa1 0%, #dbbd6d 44%, #a87518 100%);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 9px 24px rgba(0, 0, 0, 0.34);
  transition:
    filter 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.mv__button:focus-visible {
  border-color: #fff0bc;
  filter: brightness(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 9px 28px rgba(0, 0, 0, 0.46);
}

@media screen and (max-width: 767px) {
  .mv__button {
    width: 100%;
    min-height: 56px;
    padding: 15px 24px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__button {
    width: 100%;
    min-height: 62px;
    font-size: 24px;
  }
}

.mv__final-layout.is-visible .mv__heading {
  animation: mv-final-content-in 360ms cubic-bezier(0.22, 1, 0.36, 1) 1040ms both;
}

.mv__final-layout.is-visible .mv__button {
  animation: mv-final-content-in 340ms cubic-bezier(0.22, 1, 0.36, 1) 1280ms both;
}

@media (prefers-reduced-motion: reduce) {

  .mv__final-layout.is-visible .mv__final-panel,
  .mv__final-layout.is-visible .mv__heading,
  .mv__final-layout.is-visible .mv__button {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .mv__final-panel {
    clip-path: inset(0 0 0 100%);
  }

  .mv__final-layout.is-visible .mv__final-panel {
    animation: mv-final-panel-reveal-sp 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .mv__final-layout.is-visible .mv__final-panel--01 {
    animation-delay: 0ms;
  }

  .mv__final-layout.is-visible .mv__final-panel--02 {
    animation-delay: 110ms;
  }

  .mv__final-layout.is-visible .mv__final-panel--03 {
    animation-delay: 220ms;
  }

  .mv__final-layout.is-visible .mv__final-panel--04 {
    animation-delay: 330ms;
  }
}

@keyframes mv-loader-title-reveal {

  0%,
  18% {
    opacity: 0;
    transform: translateY(16px);
    text-shadow: none;
  }

  30%,
  68% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 18px rgba(219, 189, 109, 0.34);
  }

  82%,
  100% {
    opacity: 0;
    transform: translateY(-16px);
    text-shadow: none;
  }
}

@keyframes mv-loader-label-pulse {
  from {
    opacity: 0.42;
  }

  to {
    opacity: 1;
  }
}

@keyframes mv-loader-pulse {
  from {
    opacity: 0.45;
  }

  to {
    opacity: 1;
  }
}

@keyframes mv-loader-logo-pulse {
  from {
    opacity: 0.52;
  }

  to {
    opacity: 1;
  }
}

@keyframes mv-loader-line-run {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(340%);
  }
}

@keyframes mv-loader-dots {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75%,
  100% {
    content: "...";
  }
}

@keyframes mv-final-row-reveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes mv-final-reveal-01 {
  to {
    clip-path: polygon(0 0, 20% 0, 16% 100%, 0 100%);
  }
}

@keyframes mv-final-reveal-02 {
  to {
    clip-path: polygon(20% 0, 40% 0, 36% 100%, 16% 100%);
  }
}

@keyframes mv-final-reveal-03 {
  to {
    clip-path: polygon(40% 0, 60% 0, 56% 100%, 36% 100%);
  }
}

@keyframes mv-final-reveal-04 {
  to {
    clip-path: polygon(60% 0, 80% 0, 76% 100%, 56% 100%);
  }
}

@keyframes mv-final-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mv-final-bar-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mv-final-content-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mv-final-panel-reveal-sp {
  from {
    clip-path: inset(0 0 0 100%);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}


.mv {
  height: var(--mv-height, 100vh);
  min-height: 680px;
}

@supports (height: 100svh) {
  .mv {
    height: 100svh;
  }
}

.mv__final-panel--01 {
  z-index: 1;
  clip-path: polygon(25% 0, 25% 0, 20.5% 100%, 20.5% 100%);
}

.mv__final-panel--02 {
  z-index: 2;
  clip-path: polygon(50% 0, 50% 0, 45.5% 100%, 45.5% 100%);
}

.mv__final-panel--03 {
  z-index: 3;
  clip-path: polygon(75% 0, 75% 0, 70.5% 100%, 70.5% 100%);
}

.mv__final-panel--04 {
  z-index: 4;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mv__final-layout.is-visible .mv__final-panel--01 {
  animation: mv-final-reveal-4-01 620ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
}

.mv__final-layout.is-visible .mv__final-panel--02 {
  animation: mv-final-reveal-4-02 620ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.mv__final-layout.is-visible .mv__final-panel--03 {
  animation: mv-final-reveal-4-03 620ms cubic-bezier(0.16, 1, 0.3, 1) 240ms both;
}

.mv__final-layout.is-visible .mv__final-panel--04 {
  animation: mv-final-reveal-4-04 620ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both;
}

.mv__final-lines--sp span:nth-child(1) {
  top: 25%;
}

.mv__final-lines--sp span:nth-child(2) {
  top: 50%;
}

.mv__final-lines--sp span:nth-child(3) {
  top: 75%;
}

.mv__final-lines--sp span:nth-child(4) {
  display: none;
}

@media screen and (max-width: 767px) {
  .mv {
    min-height: 700px;
  }

  .mv__final-visual {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .mv__final-panel--01,
  .mv__final-panel--02,
  .mv__final-panel--03,
  .mv__final-panel--04 {
    clip-path: inset(0 0 0 100%);
  }

  .mv__final-layout.is-visible .mv__final-panel--01 {
    animation: mv-final-panel-reveal-sp 520ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
  }

  .mv__final-layout.is-visible .mv__final-panel--02 {
    animation: mv-final-panel-reveal-sp 520ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
  }

  .mv__final-layout.is-visible .mv__final-panel--03 {
    animation: mv-final-panel-reveal-sp 520ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both;
  }

  .mv__final-layout.is-visible .mv__final-panel--04 {
    animation: mv-final-panel-reveal-sp 520ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both;
  }
}

@keyframes mv-final-reveal-4-01 {
  to {
    clip-path: polygon(0 0, 25% 0, 20.5% 100%, 0 100%);
  }
}

@keyframes mv-final-reveal-4-02 {
  to {
    clip-path: polygon(25% 0, 50% 0, 45.5% 100%, 20.5% 100%);
  }
}

@keyframes mv-final-reveal-4-03 {
  to {
    clip-path: polygon(50% 0, 75% 0, 70.5% 100%, 45.5% 100%);
  }
}

@keyframes mv-final-reveal-4-04 {
  to {
    clip-path: polygon(75% 0, 100% 0, 100% 100%, 70.5% 100%);
  }
}

/* COMMON.CSS の .btn 状態色より後で、MV購入ボタンだけを限定上書きする。 */
.mv .mv__button,
.mv .mv__button:visited {
  color: #08172d !important;
  background-color: #d9b65f !important;
  background-image: linear-gradient(135deg, #f7dfa1 0%, #dbbd6d 44%, #a87518 100%) !important;
  border-color: #d9b65f !important;
}

.mv .mv__button:hover,
.mv .mv__button:focus,
.mv .mv__button:focus-visible {
  color: #08172d !important;
  background-color: #efcf7d !important;
  background-image: linear-gradient(135deg, #ffe8ad 0%, #efcf7d 48%, #bd8b2f 100%) !important;
  border-color: #efcf7d !important;
}

.mv .mv__button:active {
  color: #08172d !important;
  background-color: #cfa84c !important;
  background-image: linear-gradient(135deg, #e7ca82 0%, #cfa84c 48%, #9b6d18 100%) !important;
  border-color: #cfa84c !important;
}

.mv .after-arrow {
  position: relative;
}

.mv .after-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 9px;
  height: 9px;
  border: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}