@charset "utf-8";

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	display: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: auto;
	position: static;
	text-align: center;
}
/*h1ロゴの設定*/
header h1 {
	padding-top: 15px;
	text-align: center;
	position: static;
}
header h1 img {
	width: 70%;
	height: auto;
}
/*電話番号のボックス設定*/
header p.toiawase {
	display: none;
}

/*サイトトップ・ブログページのメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu_top ul li {
	margin-right: 0;
	margin-bottom: 5px;
	width: 49%;
}
/*奇数番目のメニューの設定*/
nav#menu_top ul li:nth-child(odd) {
	margin-right:1%;
	width: 50%;
}
/*最後のメニューの設定*/
nav#menu_top ul li:last-child a {
	margin-bottom: 10px;
}
/*英語表記の設定*/
nav#menu_top ul li a span {
	display: none;
}

/*current（現在表示中のページのメニュー）*/
nav#menu_top ul li#current a {
	width: auto;
	border-top: none;
	border-right: none;
	border-left: none;
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	margin-right: 0;
	margin-bottom: 5px;
	width: 49%;
}
/*奇数番目のメニューの設定*/
nav#menu ul li:nth-child(odd) {
	margin-right:1%;
	width: 50%;
}
/*最後のメニューの設定*/
nav#menu ul li:last-child a {
	margin-bottom: 10px;
}
/*英語表記の設定*/
nav#menu ul li a span {
	display: none;
}
/*current（現在表示中のページのメニュー）*/
nav#menu ul li#current a {
	width: auto;
	border-top: none;
	border-right: none;
	border-left: none;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*サブコンテンツ　ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub article.box1 {
	font-size: 12px;	/*文字サイズ*/
	width: 100%;		/*ボックスの幅*/
	line-height: 1.6;	/*行間*/
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/*item.html（詳細ページ）
---------------------------------------------------------------------------*/
/*詳細ページではサブコンテンツを表示させない設定*/
#item #sub {
	display: none;
}
/*写真の設定*/
#item #main figure > img {
	width: 100%;
	height: auto;
}

/*contact.html（お問い合わせページ）
---------------------------------------------------------------------------*/
/*お問い合わせページではサブコンテンツを表示させない設定*/
#contact #sub {
	display: none;
}

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
#main img.wa {
	width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
