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

.main .mv {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-image: url('/assets/image/top/top_mvbg_2x.png');
  position: relative;
  height: 100vh;
}

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

/* ==== scroll ==== */
.mv .scroll {
  display: none;
}

/* ==== ページネーション ==== */
.mv .pagination {
  position: absolute;
  width: 18.133333333333333vw;
  aspect-ratio: 1 / 1;
  right: 3vw;
  top: 128.3vw;
  z-index: 20;
}
.mv .pagination svg {
  width: 100%;
}
.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: 1.3333333333333333vw;
  height: 2.4vw;
  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 .inner {
  padding-inline: 5.333333333333333vw;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
}
.mv .inner-contents {
  height: inherit;
  min-height: calc(var(--mv-sliderheight) - 28vw);
  padding-top: 48.6vw;
  position: relative;
}
.mv .inner-contents .text {
  position: relative;
  z-index: 2;
  font-family: var(--mincho);
  font-weight: bold;
  font-size: 2.933333333333333vw;
  letter-spacing: 0.1em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 88.8vw;
  height: 30.933333333333334vw;
  margin-left: 0;
  margin-top: 36.9vw;
  padding-top: 15.6vw;
}

.mv .inner-contents .text::before {
  content: '';
  display: block;
  background-image: url('../../image/top/mv/text_2x.png');
  width: 0;
  height: 30.933333333333334vw;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 88.8vw 30.933333333333334vw;
  background-position: center;
  animation-name: mvtext;
  animation-duration: 1000ms;
  animation-delay: 600ms;
  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: 88.8vw;
    transform: skew(0) translateX(0em);
    opacity: 1;
  }
}
/* 青い線 */
.mv .inner-contents .text::after {
  content: '';
  background-color: rgb(56, 100, 147);
  opacity: 0.702;
  height: 4vw;
  width: 100vw;
  position: absolute;
  left: 17vw;
  bottom: -3vw;
  z-index: 1;
}

/* 文章 */
.mv .inner-contents .text2 {
  font-size: 3.2vw;
  line-height: 1.9;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-top: 6.9vw;
  padding-left: 0;
  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;
  font-feature-settings: 'palt';
}
@keyframes mvp {
  0% {
    transform: skew(-15deg);
    opacity: 0;
  }
  100% {
    transform: skew(0);
    opacity: 1;
  }
}

/* ==== ニュース ==== */
.mv .news {
  position: absolute;
  left: 0;
  background: #181818;
  top: 150.7vw;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}
.mv .news h2 {
  flex-shrink: 0;
  background: #181818;
  text-align: center;
  height: 100%;
  width: 17.333333333333332vw;
}
.mv .news h2 a {
}
.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_2x.png');
  width: 10.133333333333333vw;
  height: 2.6666666666666665vw;
}
.mv .news .newsList {
  /* background: #fff; */
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mv .news .newsList .swiper-slide {
  padding: 3.5vw 4.7vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: white;
  justify-content: flex-start;
}
.mv .news .newsList time {
  display: block;
  color: #747474;
  padding-bottom: 1vw;
  font-size: 2.933333333333333vw;
  position: relative;
  width: 87%;
  margin-bottom: 3vw;
}
.mv .news .newsList time::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #eaeaea;
  width: 100%;
  height: 1px;
}
.mv .news .newsList p {
  font-size: 2.933333333333333vw;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.6;
}
.mv .news .newsList .navi {
  position: absolute;
  right: 6vw;
  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: -4px;
  cursor: pointer;
  transition: opacity 0.2s ease-in;
}
.mv .news .newsList .navi .news-prev {
  transform: rotate(180deg);
  top: 23%;
}
.mv .news .newsList .navi .news-next {
  bottom: 17%;
}
