@charset "utf-8";
/* リセット */
body {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

/* ヘッダーナビ */
.nav {
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 1000;
}
.nav__inner {
  width: 80%;
  height: inherit;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
}
.nav__items {
  display: flex;
  gap: 20px;
}
.nav__item {
}

/* スライダー */
.mv-slider-wrapper {
  display: flex;
  position: relative;
}

.swiper {
  width: 50%;
  height: 100vh;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
#slide-img-position{
  object-position: 65% 90%;
}

/* MVタイトルロゴ */
.mv-logo {
  width: 90%;
  max-width: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.mv-logo img {
  width: 100%;
  height: auto;
}

/* メディアクエリ */
@media screen and (max-width: 600px) {
  .mv-slider-wrapper {
    display: block;
  }
  .swiper {
    width: 100%;
    height: 50vh;
  }

  .nav__items {
    display: none;
  }
}
