/*
 	CSS for "茶プロジェクト"
	author: Chafumi Touji
	date: 2019/12/16 ver1.00
*/

#main{
	display:none;
}

#loading {
	width: 100vw;
	height: 100vh;
	color: #ffffff;
}

.back_ground_no_anim{
	width:100%;
	height:100%;
	margin-left:auto;
	margin-top:23%;
	position:fixed;
}

.fadeIn {
	animation-name: fadeInAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes fadeInAnime{
0% {
	opacity: 0;
}

100%{
	opacity: 1;
	}
}

.zoomIn {
	display:inline;
	overflow: visible;
	width:100%;
	height:100%;
}

.zoomIn img{
	display:inline;
	transition-duration: 0.2s;
}

.zoomIn img:hover{
	transform: scale(1.15,1.15);
	transition-duration: 0.2s;
}

.zoomIn img:active{
	transform: scale(1,1);
	transition-duration: 0.1s;
}

.fadeRight{
	animation-name:fadeRightAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	width:90%;
	opacity:0;
}

@keyframes fadeRightAnime{
from{
	opacity: 0;
	transform: translateX(10%);
}

to{
	opacity: 1;
	transform: translateX(0);
	}
}

.fadeDown{
	animation-name:fadeDownAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	width:90%;
	opacity:0;
}

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

to{
	opacity: 1;
	transform: translateY(0);
	}
}

.headline{
	font-style:bold;
	font-size:30px;
	color:#774444;
	margin-left:10%;
}

.chapter{
	font-style:bold;
	font-size:25px;
	color:#774444;
	margin-left:10%;
}

table{
	border: 2px #ccaaaa solid;
	border-collapse:  collapse;
	margin-left: 50px;
	margin-right: 50px;
}

tr, td{
	opacity:0.8;
	border: 2px #ccaaaa solid;
	background-color: #ffffff;
	padding: 10px 10px 10px 10px;
}

.td_color1{
	background-color: #aa7777;
	color: #ffffff;
}

.td_color2{
	background-color: #eedddd;
}

.td_color3{
	background-color: #ffcccc;
}

.normal_text{
	font-style:normal;
	font-size:20px;
	color:#774444;
	margin-left:12%;
	margin-right:12%;
}

.alert_text{
	font-style:normal;
	font-size:20px;
	color:#ff2222;
	margin-left:12%;
	margin-right:12%;
}

.table_text{
	font-style:normal;
	font-size:15px;
	color:#332222;
	margin-left:10%;
	margin-right:10%;
}

.normal_text2{
	font-style:normal;
	font-size:20px;
	color:#aa4444;
	margin-left:15%;
	margin-right:15%
}

#text_span input{
	display:none;
	height:0px;
	border: 3px solid #aa7744;
}

#text_span input+div{
	height:0px;
	font-style:normal;
	border: 3px solid #aa7744;
	font-size:20px;
	opacity:0;
	margin-left:12%;
	margin-right:12%;
	background:#ffeecc;
	pointer-events:none;
	transform: scale(0.8);
}

#text_span input:checked+div{
	height:auto;
	transition:0.8s;
	border: 3px solid #aa7744;
	opacity:0.8;
	font-style:normal;
	font-size:20px;
	margin-left:12%;
	margin-right:12%;
	color:#774444;
	background:#ffeecc;
	pointer-events:auto;
	transform: scale(1);
}

.profile_text{
	font-style:bold;
	font-size:30px;
	color:#774444;
	margin-left:12%;
}

.profile_table{
	color:#774444;
	margin-left:10%;
	margin-right:10%;
}

.profile_cell_1{
	font-size:25px;
	font-style:normal;
	width:30%;
	padding: 20px 10px;
}

.profile_cell_2{
	font-size:25px;
	font-style:normal;
	width:70%;
	padding: 20px 10px;
}

.copy{
	font-style:normal;
	font-size:30px;
	color:#665555;
}

.no_script{
	font-style:normal;
	font-size:25px;
	color:#aa4444;
	width:500px;
}

a{
	color: #cc9999;
}

a:hover {
 	color: #ffcccc;
}

audio {
	width: 250px;
	height: 25px;
}


body {
  -webkit-text-size-adjust: 150%;
}