﻿@charset "utf-8";
/* リセット */
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
.clearfix::after{
	content:"";
	display:block;
	clear:both;
}
.clear{
	clear:both;
}
/* 全体の設定 */
body{
	font-family:"メイリオ", "ＭＳ Ｐゴシック",sans-serif;
	font-size:16px;
	color:#111;
}
a {
	text-decoration: none;
	outline: none;
}

/* ここからヘッダー */
#header{
	margin:0 auto;
	width:980px;
	background:#210000;
}
h1{
	margin:8px auto 16px;
	width:160px;
	height:160px;
	padding-top:16px;
}
h1 img{
	width:160px;
	height:160px;
}
#nav{
	position:relative;
	width:980px;
}
#nav ul{
	float:left;
	position:relative;	
	left:50%;
	line-height:14px;
	margin:16px auto 8px;
}
#nav li{
	float:left;
	position:relative;
	left:-50%;
	text-decoration:none;
	list-style:none;
	width:104px;
	text-align:center;
	color:#fff;
	border-radius:25px;
}
#nav li a{
	color:#fff;
	display:block;
	border-radius:25px;
	padding-top:3px;
}
#nav li:hover {
	color: #210000;
	background-color: #fff;
}
#nav li a:hover {
	color: #210000;
}
#nav li br{
  line-height: initial;
  line-height:14px;
}
.nav-alp{
	font-size:16px;
	text-align:center;
}
.nav-ja{
	font-size:10px;
	text-align:center;
}
/* 	ここからトップ画像 */
.top-images{
	width:980px;
	height:auto;
	margin:0 auto;
	background:#fff;
}
#stage{
	position: relative;
	max-width:980px;
	margin: 0 auto;
	background:#fff;

}
.pic {
	position: absolute;
}
.pic img {
	width: 100%;
	height: auto;
	opacity:0;
	-moz-animation: imgTrans 20s infinite;
	-webkit-animation: imgTrans 20s ease-in infinite;
	animation: imgTrans 20s infinite;
}
#photo1 img {
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
#photo2 img {
	-moz-animation-delay: 4s;
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}
#photo3 img {
	-moz-animation-delay: 8s;
	-webkit-animation-delay: 8s;
	animation-delay: 8s;
}
#photo4 img{
	-moz-animation-delay: 12s;
	-webkit-animation-delay: 12s;
	animation-delay: 12s;
}
#photo5 img {
	-moz-animation-delay: 16s;
	-webkit-animation-delay: 16s;
	animation-delay: 16s;
}
@-webkit-keyframes imgTrans {
	0% { opacity:0; }
	7% { opacity:1; }
	18% { opacity:1; }
	25% { opacity:0; }
	100% { opacity:0; }
}
@-moz-keyframes imgTrans {
	0% { opacity:0; }
	7% { opacity:1; }
	18% { opacity:1; }
	25% { opacity:0; }
	100% { opacity:0; }
}
@keyframes imgTrans {
	0% { opacity:0; }
	7% { opacity:1; }
	18% { opacity:1; }
	25% { opacity:0; }
	100% { opacity:0; }
}
/* ここからフッター */
#footer{
	margin:0 auto;
	width:980px;
	text-align:center;
	font-size:12px;
	overflow:hidden;
	position:rilative;
}
.fnav ul{
	float:left;
	position:relative;
	left:50%;
}
.fnav li{
	float:left;
	position:relative;
	left:-40%;
	list-style:none;
	margin:8px 24px 8px;
	padding:0 10px;
	text-align:center;
}
#footer li a{
	color:#111;
}
#footer li a:hover{
	color:#777;
	font-weight:bold;
}
#footer p{
	font-size:11px;
	text-align:center;
	margin-bottom:32px;
}
/* フッターここまで */

