@charset "UTF-8";
/* =====================
  MV
===================== */
:root {
  /* スライド画像の高さ */
  --mv-sliderheight: 1021px;
}

.main .mv {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-image: url('/assets/image/top/top_mvbg.png');
  width: 100%;
  min-height: 900px;
  position: relative;
}

/* ==== スライダー単体 ==== */
.mv-slider {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: var(--mv-sliderheight);
  width: 801px;
  pointer-events: none;
}
.mv-slider .swiper-slide {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100% bottom;
}
.mv-slider .swiper-slide[data-id='1'] {
  background-image: url('../../image/top/mv/01.png');
  width: 801px;
}
.mv-slider .swiper-slide[data-id='2'] {
  background-image: url('../../image/top/mv/02.png');
  width: 801px;
}
.mv-slider .swiper-slide[data-id='3'] {
  background-image: url('../../image/top/mv/03.png');
  width: 801px;
}

/* ==== scroll ==== */
.mv .scroll {
  z-index: 2;
  position: absolute;
  left: 40px;
  bottom: 101px;
  pointer-events: none;
}
.mv .scroll .scroll-unit::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../../image/top/mv/scroll.png');
  width: 9px;
  height: 53px;
}
.mv .scroll-unit .scroll-item {
  display: block;
  position: relative;
  top: 7px;
}
.mv .scroll-unit .scroll-item::before {
  content: '';
  display: block;
  width: 1px;
  background: white;
  height: 60px;
  margin-inline: auto;
}
.mv .scroll-unit .scroll-item::after {
  animation-delay: 0ms;
  animation-direction: normal;
  animation-duration: 1500ms;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  animation-name: scroll;
  animation-play-state: running;
  animation-timing-function: linear;
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: 50%;
  opacity: 1;
  content: '';
  left: 50.61%;
  position: absolute;
  transform: translateX(-50%) scale(1);
  width: 7px;
  z-index: 2;
  top: 0px;
}
.mv .scroll-circle {
  width: 7px;
  display: block;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: 2;
}
@keyframes scroll {
  0% {
    top: 0px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  10% {
    top: 0px;
    opacity: 1;
  }
  34% {
    opacity: 1;
    top: 100%;
  }
  35% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    top: 100%;
  }
  40% {
    opacity: 0.5;
    top: 100%;
  }
  80% {
    transform: translateX(-50%) scale(4);
    opacity: 0;
    top: 100%;
  }
  100% {
    opacity: 0;
    top: 100%;
  }
}

/* ==== ページネーション ==== */
.mv .pagination {
  position: absolute;
  width: 140px;
  aspect-ratio: 1 / 1;
  right: 29px;
  bottom: 22px;
  z-index: 20;
}
.mv .swiper-pagination {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
  pointer-events: none;
  opacity: 0;
}
.mv .swiper-pagination .swiper-pagination-current {
  font-size: 125%;
  margin-right: 0.1em;
}
.mv .swiper-pagination-circle,
.mv .swiper-pagination-circle2 {
  pointer-events: none;
}
.mv .swiper-pagination-circle svg,
.mv .swiper-pagination-circle2 svg {
  transform: rotate(90deg);
}
.mv .swiper-pagination-circle circle,
.mv .swiper-pagination-circle2 circle {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 308;
  stroke-dashoffset: 308;
}
.mv .swiper-pagination-circle.anim-start circle,
.mv .swiper-pagination-circle2.anim-start circle {
  animation: rotate-circle 4s ease-in-out forwards;
}
.mv .swiper-pagination-circle.anim-end circle,
.mv .swiper-pagination-circle2.anim-end circle {
  animation: rotate-circle-end 1s ease-in-out;
}
.mv .swiper-pagination-circle2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.mv .swiper-pagination-circle2 circle {
  stroke-dashoffset: 0 !important;
}
.mv .swiper-button-prev,
.mv .swiper-button-next {
  width: 9px;
  height: 17px;
  background: no-repeat 50% 50%/100% auto;
  cursor: pointer;
  transition: opacity 0.2s ease-in;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}
.mv .swiper-button-prev::after,
.mv .swiper-button-next::after {
  display: none;
}
.mv .swiper-button-prev {
  background-image: url('../../image/top/mv/arrow.svg');
  left: 28%;
  right: auto;
}
.mv .swiper-button-next {
  background-image: url('../../image/top/mv/arrow.svg');
  transform: translateY(-50%) scale(-1, 1);
  right: 28%;
  left: auto;
}
@keyframes rotate-circle {
  0% {
    stroke-dashoffset: 308;
  }
  1% {
    stroke-dashoffset: 308;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes rotate-circle-end {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 308;
  }
}

/* =====================
  コンテンツ
===================== */
.main {
  overflow: hidden;
}
.mv-u-contents {
}
.mv .inner {
  width: 1300px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.mv .inner-contents {
  height: inherit;
  min-height: calc(var(--mv-sliderheight) - 208px);
  padding-top: 208px;
  position: relative;
}
.mv .inner-contents .text {
  position: relative;
  z-index: 2;
  font-family: var(--mincho);
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 714px;
  height: 243px;
  margin-left: 2px;
  margin-top: 109px;
  padding-top: 119px;
  padding-left: 1px;
}

.mv .inner-contents .text::before {
  content: '';
  display: block;
  background-image: url('../../image/top/mv/text.png');
  width: 0;
  height: 243px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  animation-name: mvtext;
  animation-duration: 1000ms;
  animation-delay: 300ms;
  transform: skew(-15deg) translateX(-6em);
  animation-timing-function: var(--easeOutExpo);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
}
@keyframes mvtext {
  0% {
    width: 0;
    transform: skew(-15deg) translateX(-6em);
    opacity: 0;
  }
  100% {
    width: 714px;
    transform: skew(0) translateX(0);
    opacity: 1;
  }
}
/* 青い線 */
.mv .inner-contents .text::after {
  content: '';
  background-color: rgb(56, 100, 147);
  opacity: 0.702;
  height: 32px;
  width: 100vw;
  position: absolute;
  left: 140px;
  bottom: -19px;
  z-index: 1;
}

/* 文章 */
.mv .inner-contents .text2 {
  font-size: 15px;
  line-height: 2;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-top: 65.6px;
  padding-left: 60.2px;
  animation-name: mvp;
  animation-duration: 500ms;
  animation-delay: 1400ms;
  animation-timing-function: var(--easeOutExpo);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  transform: skew(-15deg);
  opacity: 0;
}
@keyframes mvp {
  0% {
    transform: skew(-15deg);
    opacity: 0;
  }
  100% {
    transform: skew(0);
    opacity: 1;
  }
}

/* ==== ニュース ==== */
.mv .news {
  position: absolute;
  left: 0;
  bottom: -53px;
  width: 790px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.mv .news h2 {
  flex-shrink: 0;
}
.mv .news h2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  width: 140px;
  height: 100px;
}
.mv .news h2 a::before {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../../image/top/mv/news.png');
  width: 58px;
  height: 16px;
}
.mv .news .newsList {
  background: #fff;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mv .news .newsList .swiper-slide {
  padding: 1em 2.5em 1em 1.8em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.mv .news .newsList time {
  display: block;
  margin-bottom: 2em;
  color: #747474;
  font-size: 13px;
  position: relative;
}
.mv .news .newsList time::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1em;
  background: #386493;
  width: 35px;
  height: 1px;
}
.mv .news .newsList p {
  font-size: 14px;
  color: #000;
}
.mv .news .newsList .navi {
  position: absolute;
  right: 30px;
  top: 0;
  height: 100%;
  z-index: 100;
}
.mv .news .newsList .navi div {
  width: 14px;
  height: 8px;
  background: url('../../image/top/mv/ico_chevron.png') no-repeat 50% 50%/100% auto;
  position: absolute;
  left: -14px;
  cursor: pointer;
  transition: opacity 0.2s ease-in;
}
.mv .news .newsList .navi .news-prev {
  transform: rotate(180deg);
  top: 25%;
}
.mv .news .newsList .navi .news-next {
  bottom: 25%;
}
