@charset "UTF-8";

/* CSS Information;
---------------------------------------------------------------;
File name:		layout.css
Summary:		base styles
Created:		2009-12-1
Last update:	2009-12-1 by Sadaoka
Author:			Sadaoka(admin), Kaito
Copyright:		(C) 2009 dabhand Inc.
--------------------------------------------------------------- */

/* Basis */
/* ------------------------------------------------------------ */
body {
	background: #d0e1f7;
	font-family: "ヒラギノ丸ゴ Pro W4", "HiraMaruPro-W4", "MS UI Gothic", Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.02em;
	line-height: 1.5;
	color: #646464;
	margin: 0;
	padding: 0;
}

div,
p,
span,
a,
img,
ul,
ol,
li,
dl,
dt,
dd {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 0px #f00 solid;
}

br {
	letter-spacing: 0;
}

/* テキストを表示させない */
/* ------------------------------------------------------------ */
.none { display: none; }

/* インデント１文字分 */
/* ------------------------------------------------------------ */
.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* Font size H_type */
/* ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	margin: 0;
	padding: 0;
	border: 0px #f00 solid;
}

.txt_9p {
	font-size: 75%; /* 標準で9pt相当 */
}

.txt_10p {
	font-size: 83%; /* 標準で10pt相当 */
}

.txt_11p {
	font-size: 92%; /* 標準で11pt相当 */
}

.txt_14p {
	font-size: 117%; /* 標準で14pt相当 */
}

/* Link */
/* ------------------------------------------------------------ */
a:link, a:visited {
	color: #002d5d;
	text-decoration: none;
}

a:hover, a:active {
	color: #002d5d;
	text-decoration: underline;
}

/* Float */
/* ------------------------------------------------------------ */
.f_left {
	float: left;
}

.f_right {
	float: right;
}

/* Center */
/* ------------------------------------------------------------ */
.f_center {
	text-align: center;
}

/* Margin */
/* ------------------------------------------------------------ */
.t_mgn5 {
	margin-top: 5px;
}

.t_mgn10 {
	margin-top: 10px;
}

.t_mgn15 {
	margin-top: 15px;
}

.t_mgn20 {
	margin-top: 20px;
}

.t_mgn30 {
	margin-top: 30px;
	border: 0px #f00 solid;
}

.t_mgn50 {
	margin-top: 50px;
}

.t_mgn100 {
	margin-top: 100px;
}

.r_mgn14 {
	margin-right: 14px;
}

/* Container */
/* ------------------------------------------------------------ */
#container {
	background: #fff;
	text-align: left;
	width: 848px;
	margin: 0px auto;
	padding: 0px;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

/* Header */
/* ------------------------------------------------------------ */
#header {
	background-color: #346db5;
	width: 848px;
	height: 100px;
	display: block;
	position: relative;
	border: 0px #0f0 solid;
}

#header h1 {
	display: block;
	position: absolute;
	z-index: 0;
	left: 20px;
	top: 45px;
	border: 0px #f00 solid;
}

#header h2 {
	color: #fff;
	text-align: left;
	display: block;
	position: absolute;
	z-index: 1;
	left: 20px;
	top: 10px;
	border: 0px #f00 solid;
}

#header .menu1 a {
	background: url(../images/header_menu1.gif) left top no-repeat;
	width: 168px;
	height: 39px;
	display: block;
	position: absolute;
	z-index: 2;
	right: 195px;
	top: 44px;
	border: 0px #f00 solid;
}

#header .menu1 a:hover {
	background: url(../images/header_menu1.gif) left bottom no-repeat;
}

#header .menu2 a {
	background: url(../images/header_menu2.gif) left top no-repeat;
	width: 168px;
	height: 39px;
	display: block;
	position: absolute;
	z-index: 2;
	right: 20px;
	top: 44px;
	border: 0px #f00 solid;
}

#header .menu2 a:hover {
	background: url(../images/header_menu2.gif) left bottom no-repeat;
}

/* Header Menu */
/* ------------------------------------------------------------ */
.header_menu {
	clear: both;
	background: url(../images/header_menu_bg.gif) left top repeat-x;
	width: 848px;
	height: 37px;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

.header_menu li {
	list-style-type: none;
	float: left;
	display: block;
	border: 0px #f00 solid;
}

.header_menu li a {
	background-image: url(../images/header_menu.gif);
	height: 0 !important;
	height /**/: 37px;
	padding-top: 37px;
	display: block;
	overflow: hidden;
}

/* ------------------------------------------------------------ */
/* 通常 */
.header_menu .menu1 a { width: 105px; height: 37px; background-position: 0 0; }
.header_menu .menu2 a { width: 105px; height: 37px; background-position: -105px 0; }
.header_menu .menu3 a { width: 118px; height: 37px; background-position: -210px 0; }

/* オンマウス */
.header_menu .menu1 a:hover { background-position:  0 -37px; }
.header_menu .menu2 a:hover { background-position: -105px -37px; }
.header_menu .menu3 a:hover { background-position: -210px -37px; }

/* 現在位置 */
.header_menu .menu1 a.select { background-position:  0 -74px; }
.header_menu .menu2 a.select { background-position: -105px -74px; }
.header_menu .menu3 a.select { background-position: -210px -74px; }

/* Body */
/* ------------------------------------------------------------ */
#body {
	clear: both;
	width: 848px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

/* Body Menu */
/* ------------------------------------------------------------ */
.main_menu {
	background: url(../images/mainvisual.jpg) left top no-repeat;
	width: 848px;
	height: 606px;
	display: block;
	position: relative;
	border: 0px #f00 solid;
}

.main_menu .info {
	width: 302px;
	height: 160px;
	display: block;
	overflow: hidden;
	position: absolute;
	z-index: 0;
	left: 273px;
	top: 180px;
	border: 0px #f00 solid;
}

.main_menu .date {
	text-align: left;
}

.main_menu .title {
	color: #0072df;
}

.main_menu .menu1 a {
	background: url(../images/body_menu1.gif) left top no-repeat;
	width: 230px;
	height: 60px;
	display: block;
	position: absolute;
	z-index: 0;
	left: 144px;
	top: 394px;
	border: 0px #f00 solid;
}

.main_menu .menu1 a:hover {
	background: url(../images/body_menu1.gif) left bottom no-repeat;
}

.main_menu .menu2 a {
	background: url(../images/body_menu2.gif) left top no-repeat;
	width: 230px;
	height: 60px;
	display: block;
	position: absolute;
	z-index: 0;
	right: 144px;
	top: 394px;
	border: 0px #f00 solid;
}

.main_menu .menu2 a:hover {
	background: url(../images/body_menu2.gif) left bottom no-repeat;
}

.details {
	width: 700px; /* ボックスの幅を指定 */
	margin-left: auto;
	margin-right: auto;
}

.details table {
	width: 100%;
	margin: 0px;
	padding: 0px;
	empty-cells: hide;
	border-collapse: collapse;
	border: 1px #fff solid;
}

.details th {
	background-color: #002d5d;
	color: #fff;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	font-size: 12px;
	white-space: nowrap;
	width: 100px;
	padding: 5px 10px;
	border: 1px #fff solid;
}

.details td {
	background-color: #e5f0ff;
	text-align: left;
	vertical-align: middle;
	font-size: 12px;
	padding: 5px 10px;
	border: 1px #fff solid;
}

.details ol {
	margin-left: 2em;
	border: 0px #f00 solid;
}

.body_menu2 {
	width: 350px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	overflow: hidden;
	border: 0px #0f0 solid;
}

.body_menu2 li {
	list-style-type: none;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

.body_menu2 .menu1 a {
	background: url(../images/body_menu2_1.gif) left top no-repeat;
	width: 168px;
	height: 39px;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

.body_menu2 .menu1 a:hover {
	background: url(../images/body_menu2_1.gif) left bottom no-repeat;
}

.body_menu2 .menu2 a {
	background: url(../images/body_menu2_2.gif) left top no-repeat;
	width: 168px;
	height: 39px;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

.body_menu2 .menu2 a:hover {
	background: url(../images/body_menu2_2.gif) left bottom no-repeat;
}

/* Box */
/* ------------------------------------------------------------ */
.float_layout {
	clear: both;
	width: 700px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

.w535 {
	width: 535px;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

.w455 {
	width: 455px;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

.staff_name {
	color: #346db5;
	font-size: 117%;
}

/* Footer */
/* ------------------------------------------------------------ */
#footer {
	clear: both;
	background-color: #346db5;
	color: #fff;
	text-align: center;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

#footer h2 {
	color: #fff;
	padding: 15px 0px 0px;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

#footer address {
	text-align: center;
	font-style: normal;
	letter-spacing: 0.1em;
	padding: 10px 0px 15px;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

