﻿@charset "UTF-8";

html[lang="ja"] .top-mv {
  position: relative;
  overflow: hidden;
}

html[lang="ja"] .top-mv-slide {
  aspect-ratio: 1920 / 700;
  position: relative;
}

html[lang="ja"] .top-mv-slide > li {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 3.0s, scale 1.5s, -webkit-filter 1.5s;
  transition: opacity 3.0s, scale 1.5s, -webkit-filter 1.5s;
  transition: opacity 3.0s, scale 1.5s, filter 1.5s;
  transition: opacity 3.0s, scale 1.5s, filter 1.5s, -webkit-filter 1.5s;
}

html[lang="ja"] .top-mv-slide > li.on {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}



html[lang="ja"] .top-mv-card {
  position: relative;
  width: 100%;
  height: 100%;
}

html[lang="ja"] .top-mv-card-bg {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

html[lang="ja"] .top-mv-card-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

html[lang="ja"] .top-mv-card.movie {
  background-color: #000;
}

html[lang="ja"] .top-mv-card.movie video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

html[lang="ja"] .top-mv-pager {
  gap: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  opacity: 0;
}

html[lang="ja"] .top-mv-pager.on {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 1.0s;
  transition: 1.0s;
}

html[lang="ja"] .top-mv-pager-prev, html[lang="ja"] .top-mv-pager-next {
  width: 8px;
  cursor: pointer;
}

html[lang="ja"] .top-mv-pager-dot {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

html[lang="ja"] .top-mv-pager-dot > li {
  aspect-ratio: 1;
  width: 16px;
  border: 1px solid #A3A3A3;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

html[lang="ja"] .top-mv-pager-dot > li.on {
  border-color: #0075C1;
  background-color: #0075C1;
  pointer-events: none;
}



@media screen and (max-width: 767px) {
  html[lang="ja"] .top-mv-slide {
    /*aspect-ratio: 750 / 1170;*/
	aspect-ratio: 750 / 750;
  }
  html[lang="ja"] .top-mv-slide > li.on .top-mv-card-bg img {
    scale: none;
    -webkit-filter: none;
    filter: none;
    opacity: 1;
  }
  html[lang="ja"] .top-mv-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  html[lang="ja"] .top-mv-card-bg {
    aspect-ratio: 750 / 820;
    height: auto;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
  html[lang="ja"] .top-mv-card-bg img {
    scale: 1.15;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
    -webkit-transition: scale 1.5s, opacity 1.5s, -webkit-filter 1.5s;
    transition: scale 1.5s, opacity 1.5s, -webkit-filter 1.5s;
    transition: scale 1.5s, opacity 1.5s, filter 1.5s;
    transition: scale 1.5s, opacity 1.5s, filter 1.5s, -webkit-filter 1.5s;
  }
}

@media screen and (min-width: 768px), print {
  html[lang="ja"] .top-mv {
    container-type: inline-size;
    min-width: 960px;
  }
  html[lang="ja"] .top-mv-slide {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
  html[lang="ja"] .top-mv-slide > li:not(:has(.movie)) {
    scale: 1.1;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  html[lang="ja"] .top-mv-slide > li.on {
    scale: none;
    -webkit-filter: none;
    filter: none;
  }

}


