/*No1*/
@keyframes slide1 {
	0% {opacity: 0;}
	10% {opacity: 1;}
	30% {opacity: 1;}
	40% {opacity: 0;}
	100% {opacity: 0;}
}

/*No2*/
@keyframes slide2 {
	0% {opacity: 0;}
	30% {opacity: 0;}
	40% {opacity: 1;}
	60% {opacity: 1;}
	70% {opacity: 0;}
	100% {opacity: 0;}
}

/*No3*/
@keyframes slide3 {
	0% {opacity: 0;}
	60% {opacity: 0;}
	70% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}

body {
	background-repeat: repeat-y;
	background-position: top;
	background-image: url(back.jpg);
}

#back {
	height: auto;
	width: 900px;
}
#onlineform {
	height: auto;
	width: 450px;
	font-size: 12px;
	text-align: center;
}

#header {
	height: 150px;
	width: 100%;
}#header_top {
	background-image: url(header.jpg);
	height: 150px;
	width: 100%;
}

#footer {
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
	height: 50px;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #333;
	color: #FFF;
}

/*画像ブロック*/
#mainimg {
	clear: none;
	width: 100%;
	height: auto;
	position: relative;
}

/*３枚画像の共通設定*/
#slide1,#slide2,#slide3 {
	-webkit-animation-duration: 20s;	/*実行する時間。「s」は秒の事。*/
	animation-duration: 20s;			/*同上*/
	-webkit-animation-iteration-count:infinite;	/*実行する回数。「infinite」は無限に繰り返す意味。*/
	animation-iteration-count:infinite;			/*同上*/
}

/*No1*/
#slide1 {
	-webkit-animation-name: slide1;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-name: slide1;				/*同上*/
	position: relative;
	width: 850px;
	height: 350px;
}

/*No2*/
#slide2 {
	-webkit-animation-name: slide2;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-name: slide2;				/*同上*/
	position: absolute;
	left: 25px;
	top: 0px;
	width: 850px;
	height: 350px;
}

/*No3*/
#slide3 {
	-webkit-animation-name: slide3;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-name: slide3;				/*同上*/
	position: absolute;
	left:25px;
	top:0px;
	width: 850px;
	height: 350px;
}

#navib {
	height: 50px;
	width: 100%;
}
#navib a:link {
	text-decoration: none;
	color: #4d4d4d;
	height: 40px;
	width: 158px;
	font-size: 12px;
	display: block;
	text-align: center;
	font-weight: bold;
	position: relative;
	float: left;
	line-height: 40px;
	background-color: #E4E4E4;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}
#navib a:visited {
	text-decoration: none;
	color: #4d4d4d;
	height: 40px;
	width: 158px;
	font-size: 12px;
	display: block;
	text-align: center;
	font-weight: bold;
	position: relative;
	float: left;
	line-height: 40px;
	background-color: #A6FFFF;
		-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}
#navib a:hover {
	text-decoration: none;
	color: #FFFFFF;
	height: 40px;
	width: 158px;
	font-size: 12px;
	display: block;
	text-align: center;
	font-weight: bold;
	position: relative;
	float: left;
	line-height: 40px;
	background-color: 0080FF;
	-webkit-transition: all 0.6s ease 0.5s;
	-moz-transition: all 0.6s ease 0.5s;
	-ms-transition: all 0.6s ease 0.5s;
	-o-transition: all 0.6s ease 0.5s;
	transition: all 0.6s ease 0.5s;
}
#navib_ul {
	height: 50px;
	width: 100%;
	position: absolute;
	z-index: 100;
}
#navib_ul a:link {
	text-decoration: none;
	color: #4d4d4d;
	height: 0px;
	width: 158px;
	font-size: 12px;
	text-align: center;
	font-weight: bold;
	position: absolute;
	float: left;
	line-height: 40px;
	background-color: #E4E4E4;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
	visibility: hidden;
	overflow: hidden;
	z-index: 100;
	display: none;
}
#navib_ul a:visited {
	text-decoration: none;
	color: #4d4d4d;
	height: 0px;
	width: 158px;
	font-size: 12px;
	text-align: center;
	font-weight: bold;
	position: absolute;
	float: left;
	line-height: 40px;
	background-color: #E4E4E4;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
	visibility: hidden;
	overflow: hidden;
	z-index: 100;
	display: none;
}
#navib_ul a:hover {
	text-decoration: none;
	color: #FFFFFF;
	height: 40px;
	width: 158px;
	font-size: 12px;
	text-align: center;
	font-weight: bold;
	float: left;
	line-height: 40px;
	background-color: 0080FF;
	-webkit-transition: all 0.6s ease 0.05s;
	-moz-transition: all 0.6s ease 0.05s;
	-ms-transition: all 0.6s ease 0.05s;
	-o-transition: all 0.6s ease 0.05s;
	transition: all 0.6s ease 0.05s;
	overflow: visible;
	visibility: visible;
	z-index: 10;
	display: block;
}

#main {
	width: 100%;
	height: auto;
}
#mainback {
	height: auto;
	width: 100%;
}
#chapter_1 {
	font-size: 15px;
	width: 70%;
	color: #000;
	height: 40px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FF4040;
	margin-left: 50px;
}
#chapter_new {
	font-size: 15px;
	width: 60%;
	color: #000;
	height: 40px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999;
	margin-left: 50px;
}
#chapter_owner {
	font-size: 15px;
	width: 90%;
	color: #000;
	height: 40px;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #006443;
	background-color: #81CFB8;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #C4E8DD;
	margin-right: auto;
	margin-left: auto;
}
#list {
	font-size: 13px;
	color: #333333;
	height: 20px;
	width: 65%;
	text-indent: 20px;
	border: 1px solid #CCC;
	margin-left: 100px;
}
#formlist {
	font-size: 12px;
	width: 100%;
	text-indent: 20px;
	vertical-align: middle;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	height: 25px;
	text-align: center;
}
#ownerlist {
	font-size: 14px;
	color: #333333;
	height: 26px;
	width: 75%;
	text-indent: 0px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	margin-left: 100px;
}
#greetinglist {
	font-size: 14px;
	color: #333333;
	height: 26px;
	width: 65%;
	text-indent: 20px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	margin-left: 100px;
}

#newlist {
	font-size: 13px;
	color: #333333;
	height: 25px;
	width: 73%;
	text-indent: 20px;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #F00;
	margin-left: 110px;
	background-color: #F1F1F1;
}
#company_list {
	height: 30px;
	width: 65%;
	margin-left: 95px;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #F00;
}
#mail_list {
	height: auto;
	width: 65%;
	margin-left: 100px;
}
#business_list {
	height: 25px;
	width: 80%;
	margin-left: 100px;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #F00;
}
#list_l {
	font-size: 13px;
	color: #333333;
	width: 20%;
	text-align: center;
	background-color: #EAEAEA;
}
#list_s {
	font-size: 13px;
	color: #333333;
	width: 30%;
	border: 1px solid #CCC;
	text-align: center;
}
#list_r {
	font-size: 13px;
	color: #333333;
	width: auto;
	text-indent: 20px;
	text-align: left;
	padding-top: 4px;
	padding-bottom: 4px;
	border-top-style: dashed;
	border-bottom-style: dotted;
	border-top-color: #CCC;
	border-bottom-color: #CCC;
	border-top-width: 0.5px;
	border-bottom-width: 0.5px;
}
#bizlist_l {
	font-size: 13px;
	color: #333333;
	width: 25%;
	border: 1px solid #CCC;
	text-align: center;
}
#bizlist_r {
	font-size: 13px;
	color: #333333;
	width: auto;
	text-indent: 20px;
	border: 1px solid #CCC;
	text-align: left;
	padding-top: 4px;
	padding-bottom: 4px;
}
#inquirylist {
	font-size: 20px;
	width: 100%;
	border-top: 1px #999999;
	border-right: 1px #999999;
	border-bottom: 1px dotted #999999;
	border-left: 1px #999999;
	text-indent: 20px;
	vertical-align: middle;
	padding-top: 5px;
	padding-bottom: 5px;
}
#piclist {
	width: 100%;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	height: auto;
}
#maplist {
	font-size: 13px;
	color: #333333;
	height: 20px;
	width: 80%;
	text-indent: 20px;
	margin-right: auto;
	margin-left: auto;
}
#map {
	height: auto;
	width: auto;
	margin-left: 100px;
}
#toppic {
	height: 330px;
	width: 500px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-right: 100px;
}
#blankspace {
	height: 8px;
	width: 80%;
	font-size: 8px;
}
#side {
	font-size: 11px;
	height: auto;
	width: 100%;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
	vertical-align: middle;
}
#navi ul{
  margin:0;
  padding:0;
}
#navi ul li {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	float: left;
	position: relative;
	width: 150px;/*親メニューの幅*/
	height: 40px;/*親メニューの高さ*/
	line-height: 40px;
	background: #e4e4e4;/*親メニューの背景色*/
	color: #4D4D4D;/*親メニューの文字色*/
	text-align: center;
	font-weight: bold;
}
#navi ul li a {
  color: #4D4D4D;
  display: block;
  text-decoration: none;
}
#navi ul li:hover, #navi ul li a:hover {
	color: #fff;/*ホバー時の親メニューの文字色*/
	background-color: #2693FF;
}
#navi ul li ul {
  position: absolute;
  top: 40px;/*親メニューの高さと同じにする*/
  width: 150px;
  z-index: 100;
}
#navi ul li ul li {
	visibility: hidden;
	overflow: hidden;
	width: 150px;/*サブメニューの幅*/
	height: 0;/*サブメニューの背景色*/
	background-color: #F3F3F3;
}
#navi ul li ul li:hover, #navi ul li ul li a:hover {
	background-color: #8EC7FF;
}
#navi ul li:hover ul li, #navi ul li a:hover ul li{
  visibility: visible;
  overflow: visible;
  height:40px;/*サブメニューの高さ*/
  z-index: 10;
}
#navi * {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
