@charset "utf-8";
/* ------------------------------------------------------
	block element centering style.
------------------------------------------------------ */

* { margin: 0; padding: 0; }

html {
	display: table;
	width: 100%;
	height: 100%;
	background: url(images/yoshida_bg.gif) ;
/*	background-color:blue;*/
	}

body {
	font: 12px/1.5 "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
	display: table-cell;
	vertical-align: middle;
}


h1 {
font-size:10pt;
font-weight:bold;
color:blue;
}


a {
text-decoration:none;
}

a:link {
/**a:link/a_link_text/リンク文字色**/
color: #333333;
text-decoration:none;
}

a img {
border: 1px solid;
/*border-style:none; */
}

a:visited {
/*border: 0px*/
/**a:visited/a_visited_text/訪問済みリンク文字色**/	color: #555555;
border-style:none;
}
a:hover[href] {
position:relative; top:0px; left:0px;
border-style:none;
/**a:hover/a_hover_text/オンマウス時リンク文字色**/	color: #3333ff;
text-decoration:none;
}
a:hover[type]  {
position:relative; top:-2px; left:0px;
border-style:none;

text-decoration:none;
}
form {
margin: 0px;
}



#news_block {
	text-align: left;
	position:absolute;
	top:293px;
	left:303px;
	margin:0;
	border:1px #000000 solid;
	background-color  #000000;
	padding: 15px;
	width: 100px;
	height: 100px;
	overflow: auto;
}

#moji_block {
	text-align: left;
	margin:0;
	border:0px #000000 solid;
	background-color  #000000;
	padding: 15px;
	width: 600px;
	height: 400px;
	overflow: auto;
}

.leftdot{
/*float:left;*/
margin:10px;
padding: 15px;
border-left:1px dotted blue;
}


.ablock{
width:640px;
height:20px;
margin:1px;
border-collapse:collapse;
line-height:30px;
text-align:center;
overflow:hidden;
font-size:8pt;
}

.ablock td{
 line-height:30px;
 padding:0px; border:1px solid silver;
    }

.ablock dl{
line-height:30px;
padding:2px; border:1px solid silver;
    }

.ablock a {
display:block;
/*width:100%;
height:100%;*/
/*margin:1px 0;*/
/*padding:2px; */
background-color:#bbbbbb;
color:blue;
border-style:none;
text-decoration:none;
}

/* animetion */
.main-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #999;
}
.dummy {
  width: 100%;
  height: 100%;
	vertical-align: bottom;
}
.building {
  position: absolute;
  width: 100%;
  top: -35%;
  left: 0;
  animation-name: building;
  -webkit-animation-name: building;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  animation-delay: 4.5s;
  -webkit-animation-delay: 4.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.start {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
	height: 101%;
	background-color: #fff;
  animation-name: start;
  -webkit-animation-name: start;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  animation-delay: 4.5s;
  -webkit-animation-delay: 4.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.start .spin {
  position: absolute;
  top: 39%;
  right: 72%;
  width: 12%;
  animation-name: spin;
  -webkit-animation-name: spin;
  animation-duration: 4s;
  -webkit-animation-duration: 4s;
}
.start .yoshida {
  position: absolute;
  opacity: 0;
  top: 40%;
  right: 20%;
  width: 50%;
  animation-name: yoshida;
  -webkit-animation-name: yoshida;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-delay: 3.5s;
  -webkit-animation-delay: 3.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.end {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
	height: 101%;
	background: #fff;
  animation-name: end;
  -webkit-animation-name: end;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  animation-delay: 10.5s;
  -webkit-animation-delay: 10.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.end .cat_dog {
  position: absolute;
  top: 24%;
  left: 53%;
  width: 29%;
}
.end .paragraph {
  position: absolute;
  left: 20%;
  top: 38%;
  font-size: 1.9em;
  font-weight: bold;
	text-align: left;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  color: #040067;
}


@keyframes spin{
  0% {
    right: 0;
    transform: rotate(0);
  }
  100% {
    right: 72%;
    transform: rotate(-1080deg);
  }
}
@-webkit-keyframes spin{
  0% {
    right: 0;
    -webkit-transform: rotate(0);
  }
  100% {
    right: 72%;
    -webkit-transform: rotate(-1080deg);
  }
}
@keyframes yoshida {
  0% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 1;
    top: 40%;
  }
}
@-webkit-keyframes yoshida {
  0% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 1;
    top: 40%;
  }
}
@keyframes start {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes start {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes building {
  0% {
    top: -45%;
  }
  100% {
    top: -100%;
  }
}
@-webkit-keyframes building {
  0% {
    top: -45%;
  }
  100% {
    top: -100%;
  }
}
@keyframes end {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes end {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* end of animation */

.ablock a:hover{
text-underline-position:10px;
	text-decoration: underline;
   background-color:#ffffcc;
   /*color:#fff;*/
    }

.timeblock td{
        padding:0px; border:1px solid silver;
    }


#blockCentering {
display:block;
	text-align: left;
	margin: 0 auto;
/*	border:1px #000000 solid;*/
	padding: 15px;
	width: 640px;
	height: 475px;
		background-color:white;
}

/* for IE6 */
* html body {
	text-align: center;
	height: 100%;
}

* html #blockCentering {
	display: inline;
	vertical-align: middle;
	zoom: 1;
}

* html #dummy {
	width: 0;
	height: 100%;
	vertical-align: middle;
	display: inline-block;
}

/* for IE7 */
*:first-child+html body {
	text-align: center;
	height: 100%;
}

*:first-child+html #blockCentering {
	display: inline;
	vertical-align: middle;
	zoom: 1;
}

*:first-child+html #dummy {
	width: 0;
	height: 100%;
	vertical-align: middle;
	display: inline-block;
}
/* over here */
