/*
 *
 *	index.css for index.html
 *	2020.03.08, codedd by T.Mashimo
 *
*/

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}
img{
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
    border: 0px solid white;
}
h1 {
	font-size: 1.0em;
}
html, body {
	width: 100%;
	height: 100%;
	margin:auto;
	font-family: 'Noto Sans JP', sans-serif;
}
html {
	background-color: #000015;
}
body {
	font-size: 16px;
	color: white;
}
a {
	opacity: 1.0;
	transition: all 0.15s ease-in-out;
}
a:hover {
	opacity: 0.7;
}

/* Main UIs */
main {
	margin: auto;
	width:100%;
	height:100%;
	min-height: 720px;
	text-align: center;
}
main > div {
	display: inline-block;
}
main div {
	margin: auto;
}
#rogo {
	width: 300px
}
#button_make {	
	width: 250px
}
#button_archive {
	width: 250px
}
#button_teaser {
	width: 180px;
}
#notation {
	width: 280px
}
/*
hr {
	border: 1px solid rgba(255,255,255,0.3);
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 10px;
	width: 200px;
	text-align: center;
}
*/
#relation  {
	position: fixed;
	right: 20px;
	top: 20px;
}
#relation img {
	height: 60px;
	/*background-color: #000000;*/
}
[data-mu-elementloader] {
	visibility: hidden;
}
#sns {
	display: none;
	position: fixed;
	right: 20px;
	bottom: 20px;
	text-align: right;
	transform-origin: right center;
	transform: scale(0.75);
}
.pc {
	display:none;
}

/* Mobile */
@media screen and (max-width: 640px) {
	main {
		min-height: initial;
	}
	#rogo {
		width: 200px
	}
	#button_make {	
		width: 160px
	}
	#button_archive {
		width: 160px
	}
	#button_teaser {
		width: 130px;
	}
	#notation {
		width: 200px
	}
	#relation  {
		position: fixed;
		right: 6px;
		top: 6px;
	}
	#relation img {
		height: 40px;
		background-color: #000000;
	}
	#sns {
		right: 5px;
		bottom: 5px;
		transform-origin: right center;
		transform: scale(0.75);
	}
	.pc {
		display:initial;
	}
}


/* Teaser youtube controls */
#teaser {
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: #000015;
	transition: opacity 1.0s ease-in-out;
}
#teaser > span {
	display: inline-block;
	color: rgba(255,255,255, 0.8);
	margin: 30px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 1.0s ease-in-out;
}
#teaser > span:hover {
	color: rgba(255,255,255, 1.0);
}
#teaser iframe {
	display: block;
	height: 80%;
	max-width: 95%;
	margin-top: 5%;
	margin-left: auto;
	margin-right: auto;
	visibility: hidden;
	opacity: 0;
	/*border: 1px solid rgba(0,0,255,0.2);*/
	box-shadow: 0px 0px 20px 20px rgba(255,255,255,0.05);
}

