@charset "utf-8";
@import "heading.css";

/**
 * 共通スタイル
 * base.css
 *
 */

* {
	margin: 0;
	padding: 0;
}

html {
	overflow-y: scroll;
}

body {
	font-size: small;
	font-family: sans-serif;
	text-align: center;
	color: gray;
}

p {
	margin: 0 0 1em;
}

img {
	border: 0;
}

/**
 * コンテナー構造
 *
 * |<--            800px            -->|
 *  -----------------------------------
 * | container                         |
 * | --------------------------------- | ---
 * ||header                           ||  |
 * ||                                 ||  | 140px 
 * ||                                 ||  |
 * | --------------------------------- | ---
 * ||menu         |contents           ||
 * ||<-- 200px -->|<--    600px    -->||
 * ||             |                   ||
 * | -------------|                   ||
 * |              |                   ||
 * |               ------------------ || ---
 * |              |footer             ||  | 20px
 * | --------------------------------- | ---
 *  -----------------------------------
 */
#container {
	position: relative;
	width: 800px;
	margin: 0 auto;
	text-align: left;
}

#header {
	/*position: fixed;*/
	position: relative;
	z-index: 10;
	width: 800px;
	height: 140px;
	background: #FFFFFF url(https://v.rentalserver.jp/www.kimono-aoki.jp/counter/daycount.cgi?gif) no-repeat 200% 50%;
	padding-top: 10px;
	text-align: center;
}

#header table {
	width: 800px;
	height: 100px;
}

#header ul,
#header ul li {
	display: inline;
	list-style: none;
}

#header ul {
	float: left;
	padding: 0 10px;
	width: 780px;
}

#header li {
	padding: 10px 0;
	font-size: 0.9em;
}

#header ol.topic_path {
	margin: 0;
}

#header ol.topic_path li {
	display: inline;
	float: left;
	font-size: 0.8em;
	line-height: 0.8em;
	list-style: none;
}

#header ol.topic_path li a {
	padding-right: 10px;
	background: url(../images/glue.gif) no-repeat right center;
}

#header a,
#header a:link,
#header a:visited {
	padding: 0 4px;
	color: gray;
	font-size: 1.1em;
	text-decoration: none;
}

#header a:hover {
	color: black;
}

#contents {
	position: relative;
	float: right;
	width: 600px;
}

#menu {
	position: relative;
	float: left;
	width: 200px;
}

#menu ul {
	margin-bottom: 10px;
}

#menu ul,
#menu ul li {
	list-style: none;
}

#menu li.main {
	width: 180px;
	height: 20px;
	margin-left: 5px;
	padding-left: 15px;
	background: url(../images/m_bg1.gif) no-repeat;
}

#menu li.sub {
	width: 180px;
	height: 20px;
	margin-left: 5px;
	padding-left: 15px;
}

#footer {
	clear: both;
	position: relative;
	width: 600px;
	margin-top: 20px;
	text-align: right;
}


