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

/* css reset */

 /* /////  IE6対策　////   */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td{
	margin:0;
	padding:0;
}

table{
	border-collapse:collapse;
	border-spacing:0;
}  
fieldset,img{
	border:0;
}
address,caption,cite,code,dfn,em,strong,th,var{
	font-style:normal;
	font-weight:normal;
}
ol,ul{
	list-style:none;
}
caption,th{
	text-align:left;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight:normal;
}
q:before,q:after{
	content:'';
}
abbr,acronym{
	border:0;
}
body{
	font-family:"メイリオ","ＭＳ Ｐゴシック", Tahoma, Arial, sans-serif; 
	line-height: 1.7;
	color: #333;
	font-size: 14px;
	text-align: left;
}
/*-------------リセット完了-------------------*/




/*------------レイアウト設定-----------------*/

#header {
	width:100%;
	height:100px;
	background-color: #FFFFFF;
	text-align:left;
	}
#kaiseizan {
	width:150px;
        position : absolute ; top: 200px ; left: 300px;
	background-color: #FFFFFF;
	text-align:left;
	padding:0px;
	}
#map1  {
	width:155px;
	float:left;
	background-color: #FFFFFF;
	text-align:left;
	height:300px;
	margin-right:5px;
	}
#content {
	overflow: scroll: auto;   /* スクロール表示 */ 
        position : absolute ; top: 200px ; left: 680px;
        width:400px;
	border: thin solid #336600;
	float:right;　/***　３段組レイアウトのポイント@　フロート設定　コンテンツ部分を左側へ　***/
	background-color: blue;
	text-align:left;
	height:300px;
	}
#sidebar02 {
	width:160px;
	border: thin solid #336600;
	float:right;　/***　３段組レイアウトのポイントA　フロート設定　右側サイドバーを右側へ　***/
	background-color: #FFFFFF;
	text-align:left;
	height:300px;
	}
#footer {
	position : absolute;
        top: 500px; left: 270px;
        width:40%;
	height:50px;
	border: thin solid #336600;
	clear:both;
	background-color: blue;
	text-align:center;
        color: white;
	margin-top:5px;
 
	}










/*----------ドロップダウンメニュー------------*/

.dropmenu{
  *zoom: 1;
  list-style-type: none;
  width:1050px;
  margin: 30px auto 14px;
  padding: 0;
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
  width: 14%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  border-left: 1px solid white;
}
.dropmenu li a{
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  background: #FF818D;
  background: blue;
  color: white;
  font-size: 16px;
  font-weight:bold;
  line-height: 1;
  text-decoration: none;
}
.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.dropmenu li ul li{
  width: 100%;
}
.dropmenu li ul li a{
  padding: 13px 15px;
  border-top: 1px solid #7c8c0e;
  border-top: 1px solid #000000;
  background: blue;
  background: blue;
  text-align: left;
}
.dropmenu li:hover > a{
  background: blue;
  background: blue;
}
.dropmenu li a:hover{
  background: red;
  background: red;
}


/*====================================
１枚ずつ回転しながら表示
=====================================*/
.dropmenu li ul{
  visibility: hidden;
  perspective: 400px;
}
.dropmenu li:hover ul{
  visibility: visible;
}
.dropmenu ul li{
  transform: rotateY(90deg);
  transform-origin: 50% 0;
  transition: .2s;
}
.dropmenu li:hover li{
  transform: rotateY(0);
}
.dropmenu ul li:nth-child(2) {
  transition-delay: .1s;
}
.dropmenu ul li:nth-child(3) {
  transition-delay: .2s;
}
.dropmenu ul li:nth-child(4) {
  transition-delay: .3s;
}
.dropmenu ul li:nth-child(5) {
  transition-delay: .4s;
}
.dropmenu ul li:nth-child(6) {
  transition-delay: .5s;
}
.dropmenu ul li:nth-child(7) {
  transition-delay: .6s;
}
.dropmenu ul li:nth-child(8) {
  transition-delay: .7s;
}