@charset "UTF-8";

/* Toppage CSS Document */

/*=================================
　4-1-5　ロゴアウトラインアニメーション
===================================*/

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
		fill-opacity: 0;/*最初は透過0で見えない状態*/
		transition: fill-opacity .5s;/*カラーがつく際のアニメーション0.5秒で変化*/
		fill: none;/*塗りがない状態*/
		stroke: #fff;/*線の色*/
	}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path{
	  fill: #fff;/*塗りの色*/
	  fill-opacity: 1;/*透過1で見える状態*/
	  stroke: none;/*線の色なし*/
	}

/*==================================================
　4-2-1　背景色が伸びる（上から下）
===================================*/

/*画面遷移アニメーション*/
.splashbg{
	display: none;
}

body.appear .splashbg{
    display: block;
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:top;
		transform:scaleY(0);
	}
	50% {
		transform-origin:top;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:bottom;
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
  position: relative;
  z-index: 1;
	opacity: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*==================================================
　5-3-2　中心から外に線が伸びる（中央）
===================================*/
#menu li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

#menu li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 34px;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background: #fff;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*=================================
　セクション毎の表現
===================================*/


section {
/*  box-sizing: border-box;
  display: block;
  align-items: center;
  justify-content: center;*/
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

/*.Section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}*/

.Section__Inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  clip: rect(0, auto, auto, 0);
	display: table;
}

.Section-Image {
  position: fixed;
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}

.Section-Content {
  width: 100%;
  height: 100%;
  justify-content: center;
  padding: 32px;
	display: table-cell;
  vertical-align: middle;
}

@media only screen and (max-width:768px) {
.Section-Content {
  padding: 32px 20px;
}
}


/*scroll snap スクロールで上部で止まる*/

.container {
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  height: 100vh;
}
.area {
  scroll-snap-align: start;
  height: 100vh;
}


/*each fixed background pics*/
.img-bg-01 {
}
.img-bg-02 {
	background-image: url("../img/about_bg.jpg");
}
.img-bg-03 {
  background-image: url("../img/page3_bg.png");
}
.img-bg-04 {
  background-image: url("../img/page4_bg.png");
}
.img-bg-05 {
  background-image: url("../img/page5_bg2.png");
}
.img-bg-06 {
  background-image: url("../img/page6_bg.png");
}
.img-bg-07 {
  background-image: url("../img/contact_bg2.jpg");
}
@media only screen and (max-width:768px) {
.img-bg-02 {
	background-image: url("../img/about_bg_sp.png");
}
}



/*ここからしたは未検証*/





/* page 1
 * --------------------------------------- */

/*#page1 h2{
	color: #fff;
	position: absolute;
  top: 50%;
  left: 50%;
	-ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
	width:680px;
	height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}
#page1 img{
	width: 100%;
}
*/
/*BgMV*/
/*メインビジュアル*/
.mv{
	position: relative;
}
.mv video{
	width:100%;
	overflow: hidden;
}
/*.mv h2{
	position: absolute;
	top:0;
	left:0;
}*/

/*#myVideo {
  position: relative;
  right: 0;
  top:0;
  min-width: 100%;
  min-height: 100%;
}*/

/*header設定*/
#mv{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
} 
#mv h2{
	width:50%;
	margin: 0 auto;
	position: absolute;
	top: 43%;
	left:50%;
	-ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
	overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*見出し設定*/
/*video h2{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color:#fff;
    text-shadow: 0 0 15px #666;
}*/
@media only screen and (max-width:768px) {
#mv h2{
	width:100%
	}
#mv h2 img{
	width: 80%;
}
}
/*========= レイアウトのためのCSS ===============*/

/*ScrollBar*/
.s-dwn {
  display: inline-block;
  position: absolute;
  right: 48%;
  bottom: 10px;
  z-index: 2;
  padding: 10px 10px 124px;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
.s-dwn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
}
.s-dwn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, .4);
}
.s-dwn::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  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%;
  }
}

/* page 2
 * --------------------------------------- */
/*#page2{
	background-color: #000;
	height: 100vh;
}*/
.sub_ttl1{
	font-size:20px;
	font-weight:200;
	color: #fff;
	text-align: right;
	margin-top: -30px;
	letter-spacing: .2rem;
}
.sub_ttl2{
	font-size:20px;
	font-weight:200;
	color: #fff;
	text-align: left;
	margin-top: -30px;
	letter-spacing: .2rem;
}
.about_p {
    color: #fff;
    text-align: left;
	  font-size: 15px;
    font-weight: 200;
	  line-height: 1.6;
    padding: 0 0 20px;
}

.abouth2_1 {
    font-size: 60px;
	  line-height:50px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .8rem;
    color: #fff;
	  text-align: right;
	  margin-right: -10px;
   }
.abouth2_2{
    font-size: 60px;
	  line-height:50px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .8rem;
    color: #fff;
	  text-align: left;
	  margin-left: -10px;
   }
.about_section {
	width: 100%;
	height:80%;
	max-width: 1200px;
	margin: 1em auto 0;
	padding: 6em 0 1em;
	list-style-type: none;
	display: flex;
	position: relative;
}
.about_section:before {
	position: absolute;
	left: 50%;
	content: '';
	display: block;
	width: 1.6px;
	height: 80%;
	margin-left: -3px;
	background: #fff;
	z-index: 5;
}
.about_section div{
	margin: 1% 5%;
	width:50%;
}

.abouth2_1:before {
	position: absolute;
	right: 49.65%;
	content: ' ';
	display: block;
	width: 13px;
	height: 13px;
	margin-top: 3px;
	background: #fff;
	border-radius: 13px;
	z-index: 10;
}
.abouth2_2:before {
	position: absolute;
	left: 49.4%;
	content: ' ';
	display: block;
	width: 13px;
	height: 13px;
	margin-top: 3px;
	background: #fff;
	border-radius: 13px;
	z-index: 10;
}
@media only screen and (max-width:768px) {
	section{
		height:100vh;
	}
	#about{
		height:100vh;
	}
	
	.about_section{
		display: block;
		height: 50%;
		padding: 0 0 1em;
	}
	
	.about_section:before {
	left: 5%;
		display:none;
 }
	.about_section div{
	margin:0 auto;
	width:100%;
}
	.abouth2_1{
	text-align: left;
		font-size: 28px;
		letter-spacing: 0.6rem;
		margin-right: 0;
}
	.abouth2_2{
		font-size: 28px;
		letter-spacing: 0.6rem;
		margin-left: 0;
}
	.sub_ttl1 {
	text-align: left;
	}
	.abouth2_1:before {
		left: 3.6%;
		display:none;
	}
	.abouth2_2:before {
		left: 3.6%;
		display:none;
	}
	.about_section:before {
    top: 15%;
    height: 70%;
}
/*	#page2{
		height:100vh;
	}*/
	#LB1 button{
		/*position: absolute;*/
		text-align: center;
		/*bottom:40px;*/
	}
}

/*#page2 h1,
#page p{
	z-index: 3;
}
#page2 #colors{
	right: 60px;
	bottom: 0;
	position: absolute;
	height: 413px;
	width: 258px;
	background-image: url(imgs/colors.gif);
	background-repeat: no-repeat;
}*/

/* page 3
 * --------------------------------------- */
/*#page3{
	background-image:url("../img/page3_bg.png");
	background-size: cover;
	height: 100vh;
}*/


/*Swiper画面幅*/
.swiper{
  max-width: 1000px;
  max-height: 40%;
  margin:0 auto;
	height:30%;
}

.swiper-slide{
	position: relative;/*相対配置*/
}

.swiper-slide p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
	width: 100%;
	text-transform: uppercase;
	font-size: 26px;
	font-weight: 400;
  letter-spacing: .2rem;
	text-shadow:  2px 2px 6px #666;
  }

.swiper-slide p span{
	font-size: 14px;
	font-weight:500;
}

.swiper-slide img{
	filter: grayscale(50%);
	transition: .3s ease-in-out;
}
.swiper-slide img:hover{
	/*filter: blur(2px);*/
  transform: scale(1.1);
	filter: grayscale(0%);
}
@media only screen and (max-width:1000px) {
	.swiper{
		max-width: 800px;}
	}
@media only screen and (max-width:800px) {
	.swiper{
		max-width: 600px;}
	}
@media only screen and (max-width:600px) {
	.swiper{
		max-width: 400px;
	}
	.swiper-slide img{
		width: 80%;
	}
	}
@media only screen and (max-width:400px) {
	.swiper{
		max-width: 300px;
	  height: 140px;
		paddiing: 0 30px;
	}
	.swiper-slide{
		height: 140px;
		width: 76%;
	}
	.swiper-slide img{
		width: 100%;
	}
	}








