.bnr-mj__box {
  max-width: 730px;
  width: calc(100% - 5px);
  margin: 0 auto 3em;
  display: block;
}

.bnr-mj__box_sp {
  width: 100%;
  margin: 2em auto;
}
.bnr-mj__box_sp img {
  width: 100%;
}

.bnr-mj {
  position: relative;
  display: block;
  width: 730px;
  max-width: 100%;
  aspect-ratio: 5.0344827586;
  background: #fff;
  border: 1px solid #e3e3e3;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  border-radius: 1em;
}
.bnr-mj__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 315px;
  height: 100%;
}
.bnr-mj__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: auto;
  display: block;
}
.bnr-mj__cta {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-size: 12px;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.bnr-mj__cta img {
  width: 14px;
  height: auto;
  display: block;
}
.bnr-mj__photo {
  position: absolute;
  top: 0;
  left: 315px;
  width: 415px;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.bnr-mj__photo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
  animation: bnr-mj-pan 8s linear infinite;
}
.bnr-mj:hover .bnr-mj__photo img {
  animation-play-state: paused;
}

@keyframes bnr-mj-pan {
  0% {
    -o-object-position: 50% 0%;
       object-position: 50% 0%;
    opacity: 0;
  }
  8% {
    -o-object-position: 50% 4%;
       object-position: 50% 4%;
    opacity: 1;
  }
  84% {
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
    opacity: 1;
  }
  96%, 100% {
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bnr-mj__photo img {
    animation: none;
    opacity: 1;
    -o-object-position: 50% 35%;
       object-position: 50% 35%;
  }
}/*# sourceMappingURL=bnr-mj.css.map */