@charset "utf-8";
/* CSS Document */

header.fix { position: fixed; left: 0; top: 0; width: 100%; z-index: 1000; }
#mv { position: relative; background: #f5f5ee; overflow-x: hidden; }

#mv .swiper-vision { width: 100%; height: 100vh; }
#mv .swiper-slide-vision { background: #f5f5ee; }

#mv .mainCopy h2 { color: #fff; word-break: keep-all; ffont-style: normal; line-height: 1.4; margin-bottom: 10px; }
#mv .mainCopy h3 { margin-bottom: 20px; line-height: 1.7; color: #fff; }
#mv .mainCopy h6 { margin-bottom: 0px; font-size: 0.9rem; color: #fff; font-family:'Roboto Condensed', sans-serif; font-weight:bold; line-height: 1; opacity: 0.0; }

#mv .mainCopy h6.fadeup { opacity: 0; }
#mv .mainCopy h6.fadeup.add-show {
	animation-name: fadeupAnime02;/*アニメーションの定義名*/
	animation-duration:.8s;/*アニメーション変化時間 ※デフォルト*/
	animation-fill-mode:forwards;/*アニメーションの開始と終了時の状態を指定*/
}
/*アニメーションの開始から終了までを指定する*/
@keyframes fadeupAnime02{
  from {
	  opacity: 0;
	  transform: translateY(100px);
  }
  to {
	  opacity: 0.5;
	  transform: translateY(0);
  }
}

@media screen and (max-width: 599px) {
	#mv .mainCopy { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 10; width: 96%; margin: 0 auto; }
	#mv .mainCopy h2 { font-size: 1.8rem; text-align: center; margin-bottom: 20px; }
	#mv .mainCopy h3 { font-size: 0.9rem; text-align: center; margin-bottom: 40px; }
	
	.mvList { display: flex; justify-content: center; max-width: 1000px; margin: 0 auto;}
	.mvList li { margin: 0 1%; }
	.mvList li h4 { color: #fff; text-align: center; font-size: 0.9rem; font-weight: bold; }
	.mvList li h5 { color: #fff; text-align: center; font-size: 0.7rem; font-weight: normal; margin-bottom: 10px; }
	.mvList li div { max-width: 30px; margin: 0 auto 10px; width: 100%; }
}
@media screen and (min-width: 600px) {
	#mv .mainCopy { position: absolute; top: 45%; left: 50%; transform: translate(-50%,-50%); z-index: 10; width: 90%; margin: 0 auto; }
	
	#mv .mainCopy h2 { text-align: center; }
	#mv .mainCopy h3 { text-align: center; margin-bottom: 40px; }
	#mv .mainCopy h6 { text-align: center; }
	
	.mvList { display: flex; justify-content: center; max-width: 1000px; margin: 0 auto;}
	.mvList li { margin: 0 3%; }
	.mvList li h4 { color: #fff; text-align: center; font-size: 1.2rem; font-weight: bold; }
	.mvList li h5 { color: #fff; text-align: center; font-size: 0.9rem; font-weight: normal; }
	.mvList li div { max-width: 50px; margin: 0 auto 10px; width: 100%; }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
	#mv .mainCopy h2 { font-size: 2.4rem; }
	#mv .mainCopy h3 { font-size: 1.05rem; }
	#mv .mainCopy h6 { font-size: 3.0rem; }
	
	.mvList li h4 { font-size: 1.1rem; }
	.mvList li h5 { font-size: 0.8rem; }
	.mvList li div { max-width: 40px; }
}
@media screen and (min-width: 900px) and (max-width: 1079px) {
	#mv .mainCopy h2 { font-size: 2.7rem; }
	#mv .mainCopy h3 { font-size: 1.1rem; }
	#mv .mainCopy h6 { font-size: 3.5rem; }
	
	.mvList li h4 { font-size: 1.15rem; }
	.mvList li h5 { font-size: 0.85rem; }
	.mvList li div { max-width: 40px; }
}
@media screen and (min-width: 1080px) and (max-width: 1199px) {
	#mv .mainCopy h2 { font-size: 3.0rem; }
	#mv .mainCopy h3 { font-size: 1.15rem; }
	#mv .mainCopy h6 { font-size: 4.0rem; }
}
@media screen and (min-width: 1200px) and (max-width: 1479px) {
	#mv .mainCopy h2 { font-size: 3.3rem; }
	#mv .mainCopy h3 { font-size: 1.2rem; }
	#mv .mainCopy h6 { font-size: 4.5rem; }
}
@media screen and (min-width: 1480px) {
	#mv .mainCopy h2 { font-size: 3.6rem; }
	#mv .mainCopy h3 { font-size: 1.25rem; }
	#mv .mainCopy h6 { font-size: 5.0rem; }
}

#mv .swiper-parentDiv .swiper-pagination { display: flex; justify-content: flex-end; width: 98%; }
#mv .swiper-pagination-bullet { border-radius: 0px; width: 30px; height: 2px; background: #fff; margin: 10px 1px; }


/*フワッと表示*/
.swiper-slide-active .mv-fadeup { opacity: 0; }
.swiper-slide-active .mv-fadeup.add-show {
	animation-name: mvfadeupAnime;/*アニメーションの定義名*/
	animation-duration:.8s;/*アニメーション変化時間 ※デフォルト*/
	animation-fill-mode:forwards;/*アニメーションの開始と終了時の状態を指定*/
}
/*アニメーションの開始から終了までを指定する*/
@keyframes mvfadeupAnime{
  from {
	  opacity: 0;
	  transform: translateX(-100px);
  }
  to {
	  opacity: 1;
	  transform: translateX(0);
  }
}
.swiper-slide-active .mv-fadeup-R { opacity: 0; }
.swiper-slide-active .mv-fadeup-R.add-show {
	animation-name: mvfadeupAnimeR;/*アニメーションの定義名*/
	animation-duration:.8s;/*アニメーション変化時間 ※デフォルト*/
	animation-fill-mode:forwards;/*アニメーションの開始と終了時の状態を指定*/
}
/*アニメーションの開始から終了までを指定する*/
@keyframes mvfadeupAnimeR{
  from {
	  opacity: 0;
	  transform: translateX(100px);
  }
  to {
	  opacity: 1;
	  transform: translateX(0);
  }
}
/*-- Scroll Down -------------------------------------------------------------*/
.scroll-down {
  position:fixed; left:1%; bottom:2%; z-index:5;
  height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.scroll-down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg,rgba(#fff, 0) 0, rgba(#fff, .8) 80%, rgba(#fff, .8) 100%);
  }

.scroll-down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 11px;
  font-family:'Roboto Condensed', sans-serif;
  font-weight:bold;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  margin: auto;
}

.scroll-down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #ddd;
}

.scroll-down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #000;
}

.scroll-down a:hover {
  opacity: .5;
}

@media screen and (max-width: 899px) {
	.scroll-down a { font-size: 10px; margin: 0; color: #fff; }
}

#mvScrl a:after {
  animation: mvScrl01 2.0s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes mvScrl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}







