@charset "utf-8";

/* 基本デザイン */
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
	margin: 0px;
	padding: 0px;
	background-color: #CCC;
/*	background-color: #CCC; */
}
.pagebody {
	background-color: #FFF;
	padding: 0px;
	width: 700px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 200%;
	margin: 0px;
}
h2 {
	font-size: 120%;
	margin: 0px;
}
h3 {
	margin: 0px;
	text-indent: -9999px;
}
p {
	margin: 0px;
	font-size: 90%;
	line-height: 1.3em;
}
address {
	font-size: 70%;
	font-style: normal;
	text-align: center;
}
a {
	color: #06F;
	text-decoration: none;
}
img {
	padding: 0px;
	float: left;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.article {
	padding: 5px;
	min-height: 50px;
	border: 1px solid #CCC;
	width: 92%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
.article.noboder {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	min-height: 0px;
}

.article:after {
	content: ".";
	display: block;
	clear: both;
	height: 0px;
	visibility: hidden;
}
.nav {
	background-color: #bbb;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	clear: both;
}
.nav ul {
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 2px;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: right;
}
.nav ul li {
	display: inline-block;
	width: 100px;
	text-align: center;
	padding: 3px 10px;
	border-radius: 3px;
	background-image: -webkit-linear-gradient(#999999, #666666);
	background-image: linear-gradient(#999999, #666666);
	font-weight: bold;
	font-size: 90%;
	box-shadow: inset 1px 1px rgba(255,255,255,0.7), inset -1px -1px rgba(0,0,0,0.1), 1px 1px 6px #bbb;
	text-shadow: 0 -1px rgba(0,0,0,0.4), 0 1px rgba(255,255,255,0.7);
}
.nav ul li:last-child {
	margin-right: 10px;
}
.nav ul li a {
	color: #FFF;
}
.nav ul li#now {
	background-image: -webkit-linear-gradient(#0155ff, #003399);
	background-image: linear-gradient(#0155ff, #003399);
}
.subnav ul {
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	margin: 0px;
	padding: 0px;
	text-align: right;
	list-style-type: none;
	font-size: 80%;
}
.subnav ul li {
	display: inline-block;
	background-image: url(../image/arrow_r_gry.gif);
	background-repeat: no-repeat;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 7px;
	background-position: left center;
	margin-right: 5px;
}

.header1 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: medium;
	background-color: #FFF;
	height: 50px;
	line-height: 50px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: -13px;
	margin-left: 0px;
}
.subnav {
	height: 13px;
}

.header1 h1 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: medium;
}
.footer {
	clear: both;
	text-align: center;
}
.midbody {
	width: 95%;
	margin-right: auto;
	margin-left: auto;
}
.small-b {
	font-size: 80%;
	line-height: 1.2em;
}
.small-red {
	font-size: 80%;
	line-height: 1.2em;
	color: #F00;
}
/* 点滅 */
.blinking{
	-webkit-animation:blink 1s ease-in-out infinite alternate;
    -moz-animation:blink 1s ease-in-out infinite alternate;
    animation:blink 1s ease-in-out infinite alternate;
	color: #F00;

}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}