@charset "UTF-8";

/** TOP Slider **/
.top_photo01 {background-image: url("../img/toppc_img01.jpg");}
.top_photo02 {background-image: url("../img/toppc_img02.jpg");}
.top_photo03 {background-image: url("../img/toppc_img03.jpg");}
.top_photo04 {background-image: url("../img/toppc_img04.jpg");}
.top_photo05 {background-image: url("../img/toppc_img05.jpg");}

#slide {
    position: absolute;
	overflow: hidden;
	padding: 0;
	margin: 0;
	width: 100%;
	background-color: #000000;
}

#slide .photo {
    position: relative;
	background-size: cover;
	background-position: center;
	height: 100%;
	width: 100%;
}

/* JSの秒数に合わせる + 4秒 */
.top_zoom {
    animation: top_zoom_animation 13s;
}

@keyframes top_zoom_animation {
  0% {
    transform: scale(1);
      transform-origin: 50% 50%;
	  filter: blur(19px) saturate(0%) brightness(0%);
  }
	15%{
	  filter: blur(0) saturate(0%) brightness(100%);
	}
	
	30%{
	  filter: blur(0) saturate(100%) brightness(100%);
	}
	
	80%{
	  filter: blur(0) saturate(100%) brightness(100%);
	}
	
  100% {
    transform: scale(1.1);
	  filter: blur(19px) saturate(0%) brightness(0%);
  }
}
 
/** テキストアニメーションここから **/

#TopPage ul {
	list-style: none;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: 10vw;
	left: 50%;
	transform: translateY(-50%);
	text-align: center;
}

#TopPage ul li {
	display: none; /* 切替用にliは非表示 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	background: rgba(0,0,0,0.5);
	color: #ffffff;
	padding: 20px 40px;
	border-radius: 5px;
	overflow: hidden; /* 横幅0のとき文字を隠す */
	width: 0;         /* 最初は幅ゼロ */
	transition: width 1s ease; /* 幅を伸ばすアニメーション */
	line-height: 1em;
}

.cat_en, .cat_ja {
	display: inline-block;
	opacity: 0;
	font-family: "Shippori Mincho", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 400;
}

.cat_en {
	position: relative;
	right: -200px;
	transition: all 1s ease;
	letter-spacing: 0.05em;
	font-size: calc(100vw * 0.015);
}

.cat_ja span {
	opacity: 0;
	transition: opacity 0.3s;
	font-family: "Shippori Mincho", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	margin: 0 0.025em;
	font-size: calc(100vw * 0.013);
}
/** テキストアニメーションここまで **/

/* ------------------------------------------------------ */
@media only screen and (max-width : 1336px) {
/* ------------------------------------------------------ */

}


/* ------------------------------------------------------ */
@media only screen and (max-width : 1250px) {
/* ------------------------------------------------------ */

.cat_en {
	font-size: calc(100vw * 0.031);
}

.cat_ja span {
	font-size: calc(100vw * 0.03);
}

}


/* ------------------------------------------------------ */
@media only screen and (max-width : 880px) {
/* ------------------------------------------------------ */
}

/* ------------------------------------------------------ */
@media only screen and (max-width : 600px) {
/* ------------------------------------------------------ */
.top_photo01 {background-image: url("../img/topsp_img01.jpg");}
.top_photo02 {background-image: url("../img/topsp_img02.jpg");}
.top_photo03 {background-image: url("../img/topsp_img03.jpg");}
.top_photo04 {background-image: url("../img/topsp_img04.jpg");}
.top_photo05 {background-image: url("../img/topsp_img05.jpg");}

.cat_en {
	font-size: calc(100vw * 0.042);
}

.cat_ja span {
	font-size: calc(100vw * 0.041);
}

#TopPage ul li { 
	padding: 10px 20px;
}

}
