﻿@charset "utf-8";
/*===========================================
title:common.css
create:2010-08-09
update:2010-08-09
---------------------------------------------
INDEX
---------------------------------------------
1.Common set
2.Layout set
===========================================*/


/* 1.Common Set
********************************************/

/*-------------------------------------------
Font set (62.5% = 10px)
下でサイズリセットをするのでCSS内で文字サイズ指定を
する際は文字サイズ10px =1em、12px=1.2em、14px=1.4emになります。
------------------------------------------ */
html {
     font-size: 62.5%;
}

body {
	background:#FFF;
	color: #333;
	font-size: 1em;  /* 10px */
	/*font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;*/
	line-height: 1.8;
}

#wrapper {
	width:100%;
}


/*-------------------------------------------
Link set
------------------------------------------ */
a:link {
	text-decoration:underline;
	color:#50769b;
}

a:visited {
	text-decoration:none;
	color:#50769b;
}

a:hover {
	text-decoration:none;
	color:#e72627;
}

a:active {
	text-decoration:none;
	color:#50769b;
}

/*-------------------------------------------
Clearfix
------------------------------------------ */
.clearfix:after { /* clearfix */
	clear: both;
	content: "."; 
	display: block; 
	height: 0; 
	visibility: hidden;
}
.clearfix {
	display: inline-table;
	min-height: 1%; /* for IE 7*/
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */

/*-------------------------------------------
common
------------------------------------------ */
.m-t10 {
	margin-top:10px;
}

.m-b10 {
	margin-bottom:10px;
}

.m-t20 {
	margin-top:20px;
}

.m-r50 {
	margin-right:50px;
}

.m-b20 {
	margin-bottom:20px;
}

.m-b25 {
	margin-bottom:25px;
}

.m-t30 {
	margin-top:30px;
}

.m-b30 {
	margin-bottom:30px;
}

.m-b40 {
	margin-bottom:40px;
}

.m-b50 {
	margin-bottom:50px;
}

.left {
	float:left;
}

.right {
	float:right;
}

.clear {
	clear:both;
}

.center {
	text-align:center;
}

.red {
	color:#CC0000;
}

/* 2.Layout set
********************************************/

/*-------------------------------------------
header
------------------------------------------ */
#header {
	position:relative;
	width:100%;
	height:60px;
	border-bottom:#666666 3px solid;
}

#header .logo{
	position:absolute;
	left:20px;
	padding:10px 0;
}

#header h1{
	position:absolute;
	top:22px;
	left:150px;
	font-weight:normal;
	color:#666666;
}


/*-------------------------------------------
nav
------------------------------------------ */
#header #nav {
	position:absolute;
	top:10px;
	right:20px;
}

#header #nav li {
	float:left;
	background-color:#fff4f4;
	margin-right:20px;
	text-align:center;
	font-size:1.2em;
}

#header #nav li .navi-arr {
	background:url(../img/ico-navi_arr_red.png) left no-repeat;
	padding-left:10px;
}

#header #nav li a {
	display:block;
	width:160px;
	height:30px;
	padding-top:10px;
	text-decoration:none;
}

#header #nav li.last-lst {
	margin-right:0;
}

#header #nav li a {
	display:block;
}

.title01 {
	position:relative;
	background-color:#f8f8f8;
	width:100%;
	height:84px;
	margin-bottom:30px;
	border-bottom:#999999 2px solid;
}

h2.page-title {
	position:absolute;
	top:30px;
	left:40px;
	font-size:2.4em;
	line-height:1;
}

.pankuzu {
	position:absolute;
	right:40px;
	bottom:20px;
	font-size:1.1em;
	color:#666666;
}


/*-------------------------------------------
main
------------------------------------------ */
#main {
	position:relative;
	padding:0 40px;
}

#main .main-title {
	position:relative;
	height:34px;
	margin-bottom:20px;
	border-bottom:#999999 2px solid;
}

#main h3 {
	float:left;
	font-size:1.4em;
	font-weight:bold;
}
	
#main .main-title-right {
	float:right;
}

.base-tbl {
	border:0;
	width:100%;
}

.base-tbl tr {
	border:#CCCCCC 1px solid;
}

.base-tbl th {
	background-color:#f2f2f2;
	font-size:1.0em;
	font-weight:bold;
	padding:5px 10px;
}

.base-tbl td {
	background-color:#ffffff;
	font-size:1.4em;
	padding:20px 10px;
}

.col-stt {
	width:50px;
}

.col-edit {
	width:80px;
}

/*-------------------------------------------
footer
------------------------------------------ */
#footer {
	width:100%;
	background-color:#CCCCCC;
	padding:10px 0;
}

#footer address {
	color:#666666;
}


/*TOPへ戻るボタン ************************/
#back-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
}


