@charset "utf-8";
/* CSS Document */
/*=======================================
 共通のcss
=======================================*/
body{
  width: 100vw;
  height: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
  background-color: #f1f1f1;
  overflow-x: hidden;
}
a{
	text-decoration: none;
}
li{
	list-style: none;
}
p{
	margin: 0;
}
.flex{
		display: flex;
}
.shadow{
	text-shadow: 1px 1px 1.5px rgba(0, 0, 0, 0.4);
}
.black{
	color: #000;
}
@media screen and (min-width: 769px){
	.sp{
		display: none;
	}
}
@media screen and (max-width: 768px){
	.pc{
		display: none;
	}
}
/*=======================================
 ローディングアニメーション
=======================================*/
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fff;
  text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 130px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/*=======================================
 header
=======================================*/
/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/
#header{
    /*fixedで上部固定*/
	position: fixed;
	height: 70px;
	width:100vw;
    z-index: 99;/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 10px
}

/*　上に上がる動き　*/

#header.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
h1 img{
	width: 100px;
	margin-top: 20px;
}
nav{
	position: absolute;
	  top: 30px;
	  right: 100px;
}
nav ul{
	display: flex;
	justify-content: flex-end;
}
nav ul li a{
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	color: #fff;
	padding:10px;
	font-size: 1.3rem;
}
@media screen and (max-width: 768px){
	#header{
		padding: 10px;
	}
	h1 img{
		width: 70px;
	}
	nav{
		position: absolute;
		  top: 30px;
		  right: 20px;
}
	nav ul li a{
		font-size: 1rem;
	}
}

/*　下に下がる動き　*/

#header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
/*=======================================
 main
=======================================*/
#top,
#second,
#third,
#fourth,
#fifth{
  	width: 100vw;
	height: 100vh;
	position: relative;
}
/*　bg　*/
#top{
	background-image: url("../img/header01.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom right;
}
#second{
	background-image: url("../img/header02.gif");
	background-size: cover;
	background-repeat: no-repeat;
}
#third{
	background-image: url("../img/header03.gif");
	background-size: cover;
	background-repeat: no-repeat;
}
#fourth{
	background-image: url("../img/header04.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
}
#fifth{
	background-image: url("../img/header05.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
}

/*=======================================
 文字アニメーション
=======================================*/
/*一文字ずつ*/
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

/*　文字のcss　*/
.catch h2{
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  line-height: 1.4;
  color: #fff;
  text-shadow: 1px 1px 1.5px rgba(0, 0, 0, 0.4);
}
.catch h2 span{
	font-size: 60px;
}
section.catch p{
	font-size: 35px;
	margin-bottom: 0;
	width: 800px;
	z-index: 3;
	color: #fff;
}
main p{
	color: #fff;
}
p.jp{
	font-size: 1.3rem;
}
/*　文字位置*/
@media screen and (min-width: 769px){
	section.catch{
		position: absolute;
		top: 30%;
		left: 13%;
	}
	#second p.jp,
	#third p.jp,
	#fourth p.jp,
	#fifth p.jp{
		position: absolute;
		  bottom: 50px;
		  right: 50px;
	}
	#second p.english{
		font-size: 1.2em;
		position: absolute;
		  bottom: 50px;
		  left: 50px;
	}
	#third p.english,
	#fourth p.english,
	#fifth p.english{
		font-size: 1.2em;
		position: absolute;
		  top: 50px;
		  right: 50px;
	}
}	
	
@media screen and (max-width: 768px) {
	h2{
		font-size: 1em;
	}
	h2 span{
		font-size: 1.3rem;
	}
	section.catch{
		position: absolute;
		 top: 50%;
		 left: 50%;
		 transform: translate(-50%, -50%);
		width: 90%;
	}	
	section.catch p{
		font-size: 2em;
		color: #fff;
		width: 100%;
	}
	#second p.jp,
	#fourth p.jp,
	#fifth p.jp{
		width: 90%;
		position: absolute;
		  bottom: 15px;
		  right: 15px;
	}
	#third p.jp{
		width: 90%;
		position: absolute;
		  bottom: 15px;
		  right: 15px;
	}
	#second p.english,
	#third p.english,
	#fourth p.english,
	#fifth p.english{
		width: 90%;
		position: absolute;
		  top: 15px;
		  right: 15px;
	}
	#third p.english,
	#fourth p.english,
	#fifth p.english{
		line-height: 1.5;
	}
}

/*=======================================
 footer-nav
=======================================*/
#footer{
	text-align: center;
	width: 100vw;
}
#footer-nav{
	width: 60vw;
	padding: 20px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}
#footer-nav li a{
	color: #000;
	font-weight: 700;
	font-size: 1.2rem;
}
@media screen and (max-width: 768px){
	#footer-nav{
		width: 80%;
		padding: 10px 0;
		justify-content: center;
		gap: 20px;
	}
	#footer-nav li a{
		font-size: 1rem;
	}
}
/*=======================================
 About
=======================================*/
.black-nav li a{
	color: #000;
}
#about{
	background-image: url("../img/about.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom left;
	width: 100vw;
	height: 120vh;
	position: relative;
}
#about section{
		font-weight: 500;
	}
.content{
	text-align: center;
	background: rgba(255, 255, 255, 0.3);
	padding: 20px;
}
.content h2{
	margin-bottom: 50px;
	font-size: 1.5rem;	
}
.content p{
	color: #000;
}
@media screen and (min-width: 769px){
	.content{
		position: absolute;
		  top: 50%;
		right: 50px;
		transform: translateY(-50%);
}
}
@media screen and (max-width: 768px){
	#about{
		background-image: url("../img/about_sp.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: bottom center;
	}
	.content{
		position: absolute;
		  top: 50%;
		  left: 50%;
		  transform: translate(-50%, -50%);
		width: 90%;
		background: rgba(255, 255, 255, 0.5);
		padding: 10px 10px 50px;
	}
	.content h2{
		margin-bottom: 30px;
		padding-top: 50px;
	}
	.content h2,
	.content p{
		color: #000;
	}
}
@media screen and (max-width: 480px){
	.content{
		width: 100%;
	}
}
/*=======================================
 FACT
=======================================*/
#fact{
	font-weight: 500;
}
#fact01,
#fact02,
#fact03,
#fact04{
	width: 100vw;
	height: 100vh;
	position: relative;
}
#fact01{
	background-image: url("../img/fact01.jpg");
	background-size: cover;
	background-position: center center;
}
#fact01 p{
	position: absolute;
	  bottom: 50px;
	  left: 50%;
	  transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.4);
	border-radius: 10px;
	padding: 30px;
	color: #000;
}
#fact02{
	background-image: url("../img/fact02.jpg");
	background-size: cover;
	background-position: center center;
}
#fact03{
	background-image: url("../img/fact03.jpg");
	background-size: cover;
	background-position: center center;
}
#fact03 p{
	position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	padding: 30px;
	color: #000;
}
#fact04{
	background-image: url("../img/fact04.jpg");
	background-size: cover;
	background-position: center top;
}
#fact04 p{
	background: rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	padding: 30px;
	color: #000;
}
@media screen and (min-width: 769px){
	#fact02 p{
		width: 25%;
		position: absolute;
		  bottom: 5%;
		  right: 3%;
	}
	#fact04 p{
		position: absolute;
		  top: 50px;
		  left: 50%;
		transform: translateX(-50%);
	}
	#fact01 p,
	#fact04 p{
		width: 80%;
	}
}
@media screen and (max-width: 768px){
	#fact01{
		background-image: url("../img/fact01_sp.jpg");
		background-size: cover;
		background-position: center center;
	}
	#fact02{
		background-image: url("../img/fact02_sp.jpg");
		background-size: cover;
		background-position: center center;
	}
	#fact02 p{
		position: absolute;
		  top: 50%;
		  left: 50%;
		  transform: translate(-50%, -50%);
		background: rgba(255, 255, 255, 0.6);
		border-radius: 10px;
		padding: 30px;
		color: #000;
	}
	#fact03{
		background-image: url("../img/fact03_sp.jpg");
		background-size: cover;
		background-position: center center;
	}
	#fact03 p{
		background: rgba(255, 255, 255, 0.5);
	}
	#fact04{
		background-image: url("../img/fact04_sp.jpg");
		background-size: cover;
		background-position: center center;
	}
	#fact04 p{
		position: absolute;
		  top: 50px;
		  left: 50%;
		transform: translateX(-50%);
	}
	#fact01 p,
	#fact04 p{
		width: 90%;
		padding: 10px;
	}
	#fact02 p,
	#fact03 p{
		width: 95%;
		padding: 10px;
	}
}