/* ==========================================
   Override CSS
   style.min.css 上書き用
========================================== */

/* ------------------------------------------
   TOP MV
------------------------------------------ */

.p-mv {
  padding-top: 0;
  background-color: transparent;
}

.p-mv__inner {
  max-width: none;
  margin: 0;
  position: relative;
}

.p-mv__imgArea {
  width: 100%;
  max-width: none;
  height: calc(100vh - 8rem);
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: auto;
}

@media screen and (max-width: 768px) {
  .p-mv__imgArea {
    height: calc(100vh - 6rem);
  }
}

.p-mv__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* ------------------------------------------
   Footer banner
------------------------------------------ */


.l-footer__snsArea {
  padding-left: 0;
}

.l-footer__snsArea ul {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.l-footer__snsArea ul li img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-footer__snsArea ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem;
  }
}