@charset "utf-8";
/* CSS Document */

/*======================================

全体

=======================================*/
html {
	overflow-x: hidden
}
body, td, th {
	font-family: "Lucida Sans Unicode", "Lucida Sans", arial, sans-serif;
	font-size: 13px;
	color: #666666;
}
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #F0F0F0;
}
/*======================================

共通設定

=======================================*/
header, nav, article, section, aside, footer {
	display: block
}
/*======================================

ヘッダー

=======================================*/
#header {
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#111), to(#333));
	width: 100%;
	height: 45px;
	-webkit-box-shadow: 0px 5px 10px #ccc;
	-moz-box-shadow: 0px 5px 10px #ccc;
}
header {
	width: 900px;
	margin: 0 auto;
	color: #eee;
}
header a {
	color: #CC99FF
}

/*======================================

サイト名

=======================================*/
h1 {
	width: 48%;
	font-size: 25px;
	float: left;
	margin: 0;
	line-height: 40px;
	font-weight: normal;
	text-shadow: 0px 0px 2px #777;
	padding-left: 15px;
}
h1 .de {
	font-size: 12px;
	padding-left: 15px;
}
h1 .jp {
	vertical-align: super;
	font-size: 12px;
	color: #FF9933
}
/*======================================

ナビゲーション

=======================================*/
nav {
	width: 48%;
	float: right;
}
nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
nav ul li {
	float: left;
	-webkit-transition: background-color 0.5s linear;
	background-color: #444;
	text-align: center;
	margin: 0px 5px;
}
nav ul li:hover {
	background-color: #777;
	color: #FF33CC;
}
nav ul li a {
	display: block;
	line-height: 45px;
	width: 90px;
	text-decoration: none;
	text-shadow: 0px 0px 4px #000;
}
nav ul li a:hover {
	color: #FF33CC;
}
/*======================================

キーフレーム

=======================================*/
 @-webkit-keyframes mainco {
 0% {
 background-color: #FF33CC;
}
 15% {
 background-color: #663399;
}
 30% {
 background-color: #0099FF;
}
 45% {
 background-color: #009966;
}
 60% {
 background-color: #66CC33;
}
 75% {
 background-color: #FFCC00;
}
 100% {
 background-color: #FF6666;
}
}
/*======================================

メインアニメ

=======================================*/
#mainco {
	width: 900px;
	margin: 40px auto;
	-webkit-box-shadow: 0px 0px 10px #ccc;
	-moz-box-shadow: 0px 0px 10px #ccc;
	line-height: 150px;
	color: #FFFFFF;
	font-size: 25px;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#111), to(#333));
	text-align: center;
	border: 3px solid #999
}
#mainco:hover {
	-webkit-animation-name: mainco;
	-webkit-animation-duration: 10s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	background: none !important;
	border: 3px solid #fff
}
/*======================================

コンテンツ

=======================================*/
#contents {
	width: 860px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 20px;
	-moz-border-radius: 5px;  /* Firefox */
	-webkit-border-radius: 5px;  /* Safari */
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 10px #ccc;
	-moz-box-shadow: 0px 0px 10px #ccc;
	background-color: #FFFFFF;
}
section h2 {
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFFF), to(#D6D6D6), color-stop(.6, #F2F2F2));
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #E4E4E4;
	border-right-color: #E4E4E4;
	border-bottom-color: #E4E4E4;
	border-left-color: #0099FF;
	font-size: 15px;
	padding: 7px;
	letter-spacing: .1em;
	margin: 0px;
	-moz-border-radius: 2px;  /* Firefox */
	-webkit-border-radius: 2px;  /* Safari */
	border-radius: 2px;
	text-shadow: 0px 0px 1px #ccc;
}
section p {
	padding-top: 10px;
	padding-right: 20px;
	padding-left: 20px;
	margin: 0px;
	padding-bottom: 20px;
	letter-spacing: 1px;
	line-height: 165%;
}
section p.shadow {
	text-shadow: 1px 1px 3px #ccc;
}
section .shadow strong {
	text-align: right;
	display: block;
	font-size: .9em;
}
section div {
	margin: 20px auto
}
/*======================================

アニメーションその１

=======================================*/
.anio {
	-webkit-transition: all 1s ease-in-out;
	-webkit-transform-origin: 50% 50%;
	font-size: 3em;
	width: 80%;
	height: 100px;
	padding: 20px;
	text-align:center;
	line-height: 100px
}
.anio:hover {
	-webkit-transform: translate(0%, 10px) scale(-2) rotate(-540deg);
}
/*======================================

アニメーションその２

=======================================*/
.anit {
	-webkit-transition: all 1s ease-in-out;
	-webkit-transform-origin: 50% 50%;
	font-size: 3em;
	width: 80%;
	height: 100px;
	padding: 20px;
	text-align:center;
	line-height: 100px;
}
.anit:hover {
	-webkit-transform: translate(5px, 100px) scale(-0) rotate(1000deg);
}
/*======================================

アニメーションその３

=======================================*/
.anis {
	-webkit-transition: opacity 1s linear;
	opacity: 1;
	width:300px;
	line-height: 70px;
	border: #ccc 2px solid;
	-moz-border-radius: 5px;  /* Firefox */
	-webkit-border-radius: 5px;  /* Safari */
	border-radius: 5px;
	text-shadow: 0px 0px 1px #ccc;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E6E6E6), to(#919191));
	color: #fff;
	font-size: 1.5em;
	-webkit-box-shadow: 0px 0px 10px #ccc;
	-moz-box-shadow: 0px 0px 10px #ccc;
	text-align:center;
}
.anis:hover {
	opacity: 0;
}
/*======================================

背景沢山

=======================================*/
.background {
	background-image: url(1.png), url(2.gif), url(3.gif);
	background-position: 250px 10px, 40px 20px, left top;
	background-repeat: no-repeat, no-repeat, no-repeat;
	width: 600px;
	height: 150px;
}
.uim {
	width: 50px;
	height: 50px;
	margin: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}
/*======================================

フッター

=======================================*/
#footer {
	width: 100%;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#333), to(#111));
	-webkit-box-shadow: 0px -5px 10px #ccc;
	-moz-box-shadow: 0px -5px 10px #ccc;
	line-height: 80px;
	text-align:center
}
footer {
	width: 900px;
	margin: 0 auto
}


/*======================================

ハック

=======================================*/

html>/**/body #header, html>/**/body #mainco, html>/**/body #footer {
	background-color: #000;
}
#mainco, x:-moz-any-link {
background: url(zannen.png) !important;
text-indent:-9999px
}
.nokit {
	background: url(zannen.png);
	width: 900px;
	margin: 40px auto;
}
#an, x:-moz-any-link {
 display:none;
}