@charset "UTF-8";

.Screen {
	width: 100%;
	overflow: hidden;
	background-color: #000000;
}

.Screen video {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.Screen .topBox {
	width: 100%;
	height: 100vh;
}

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

.Screen .topBox .topMessageBox {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.Screen .topBox .topMessageBox .logos {
  opacity: 0; /* 初期状態を非表示 */
  animation: fadeIn 1s ease-in forwards;
  animation-delay: 1s; /* 1秒後にフェードイン開始 */
	width: 40%;
	margin: 0 auto 70px auto;
}

.Screen .topBox .topMessage ul li {
	text-align: center;
	color: #ffffff;
}

.Screen .readMessage {
	padding: 100px 0 300px 0;
	text-align: center;
	display: block;
	color: #ffffff;
	font-size: 140%;
	line-height: 1.8em;
}

/** テキストアニメーション **/
.TextAnimation{
    display: inline-block;
}

.TextAnimation ul {
    display: block;
	list-style: none;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
}

.TextAnimation ul li {
    white-space: nowrap;
	visibility: hidden;
	text-align: center;
	line-height: 2.5em;
}

.TextAnimation ul li p {
	display: inline;
}

.TextAnimation ul li span {
    animation: text_anime_on 0.5s ease-out forwards;
    display: inline-block;
    opacity: 0;
	font-size: calc(100vw * 0.03);
	text-shadow: 5px 0 5px rgb(0, 0, 0, 0.8), 
		-5px 0 5px rgb(0, 0, 0, 0.8), 
		0 5px 5px rgb(0, 0, 0, 0.8), 
		0 -5px 5px rgb(0, 0, 0, 0.8),
		5px 0 5px rgb(0, 0, 0, 0.8);
	
	font-family: 'Noto Serif JP', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

@keyframes text_anime_on {
    0% {
        opacity: 0;
	transform: scale(1.8);
    }
    100% {
        opacity: 1;
	transform: scale(1);
    }
}

.topLogo {
	display: inline-block;
	white-space: nowrap;
}

.topLogo img {
	height: 80vh;
	display: inline-block;
	border: rgba(255,255,255,0.5) solid;
	border-width: 0 5px 0 0;
	padding: 0 20px 0 0;
}

/** テキストアニメーションここまで **/

br.topbr {
	display: none;
}

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

}


/* ------------------------------------------------------ */
@media only screen and (max-width : 1250px) {
/* ------------------------------------------------------ */
.Screen .readMessage {
	font-size: 120%;
}

br.topbr {
	display: inline;
}

}


/* ------------------------------------------------------ */
@media only screen and (max-width : 820px) {
/* ------------------------------------------------------ */
.Screen .topBox .topMessageBox {
    top: 35%;
	}

.Screen .readMessage {
	text-align: left;
	padding:  0  25px;
	position: absolute;
	top: 75%;
	transform: translateY(-50%);
}

.Screen .readMessage br {
	display: none;
}

}


/* ------------------------------------------------------ */
@media only screen and (max-width : 768px) {
/* ------------------------------------------------------ */
.Screen .topBox .topMessageBox .logos {
	width: 80%;
}

.TextAnimation ul li span {
	font-size: calc(100vw * 0.06);
}

.Screen .topBox {
	height: 100vh;
}

}

/* ------------------------------------------------------ */
@media only screen and (max-width : 500px) {
/* ------------------------------------------------------ */
.Screen .readMessage {
	font-size: 100%;
}

.Screen .topBox .topMessageBox .logos {
	margin: 0 auto 50px auto;
}

}

/* ------------------------------------------------------ */
@media only screen and (max-width : 320px) {
/* ------------------------------------------------------ */
.Screen .topBox .topMessageBox .logos {
	margin: 0 auto 20px auto;
}

.Screen .topBox .topMessageBox {
    top: 23%;
	}

.Screen .readMessage {
	top: 68%;
}


}