﻿@charset "utf-8";

@import url("reset.css");
@import url("header.css");
@import url("body.css");
@import url("footer.css");
@import url("module/block.css");
@import url("module/div.css");
@import url("module/form.css");
@import url("module/inline.css");
@import url("module/list.css");
@import url("module/table.css");

/*  Common Elements
---------------------------------------------------------- */

* {
	font-family: "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

html {
	overflow-y: scroll;
}

body {
	background-color: #fff;
	color: #333;
	text-align: center;
}

a:link,
a:visited {
	color: #0073cf;
}
a:active,
a:hover {
	color: #f30;
}

img {
	border: 0;
	vertical-align: text-bottom;
}

hr {
	display: none;
}

strong {
	font-weight: bold;
}

sup {
	line-height: 1.0;
	vertical-align: top;
	*vertical-align: super;
}

sub {
	line-height: 1.0;
	vertical-align: bottom;
	*vertical-align: sub;
}

blockquote {
	padding: 15px;
}

table th,
table td,
table caption {
	line-height: 1.5;
}

/*  Common id, class
---------------------------------------------------------- */

.pending {
	color: #c00;
}

.clear {
	clear: both;
}

.f-left {
	float: left;
}

.f-right {
	float: right;
}

.hidden {
	display: none;
}

.no-border {
	border: none !important;
}

.no-margin {
	margin: 0 !important;
}

.no-bg {
	background: 0 !important;
}

