@charset "utf-8";

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	margin-bottom: 0px;
}

/*タブレット・スマホ専用メニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 20%;
	margin: 0px ;
}
nav#menubar ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;			/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
nav#menubar ul li a:hover {
	background-color: #dbdfff;	/*マウスオン時の背景色*/
}
/*最後のメニューの設定*/
nav#menubar ul li:last-child {
	margin-bottom: 20px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*gallery.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	float: none;
	width: 100%;
	height: auto;
	margin: 0px 0px 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*各ボックス内の画像設定*/
#main section.list article img {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像幅*/
	height: auto;
	margin-right: 20px;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
	margin-bottom: 5px;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 96%;
}

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
/*img.wa {
	width: 75%;
	height: auto;
}*/
#sub #submenu {
	display: none;
}
#menubar {
	display: block;
}

#navi ul {
	margin:0;
	padding:0;
	list-style-type:none;
        behavior: url("hcsshover.htc");/* IE6 */
}

#navi ul a {
        color: #fff;
        text-decoration: none;
}

#navi ul a {
        background: #ffc1d1;
}

#navi ul a:hover {
        background: #ff7d9e;
}

#navi ul li {
        width: 280px;
        height: 40px;
        font-weight: bold;
        line-height: 250%;
        float: left;
        border:solid #fff;
        border-width:1px 1px 1px 0;
}

#navi ul li.line {
        border-left:1px solid #fff;
}

#navi ul li a {
        display: block;
        height: 100%;
        font-size:120%;
        text-align: center;
}

#navi ul li ul li a {
        font-size:100%;
	border-bottom:1px solid #fff;
}

#navi ul li ul li {
        margin: 15;
        font-weight: normal;
        border-left:1px solid #fff;
        border-bottom:none;
        position:relative;
        left:-1px;
        float: none;
}

/* OFF */
#navi ul li ul {
        display: none;
}

/* ON */
#navi ul li:hover ul {
        display: block;
        position: absolute;
        z-index: 100;
}