@charset "UTF-8";

/**
 * A sylesheet for: http://www.santaclaus-embassy.com/
 * Title: Initializer
 * Author: Satoshi Soma
 * Description: HTML 要素やクラスの基本的なスタイルが記述されています。
 * Last update: 2011-11-10
 */

* {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 1.2;
	font-style: normal; /* normal以外は個別に指定すること */
}

html, body {
	width: 100%;
	height: 100%;
}

p {
	padding-bottom: 1em;
}

ul, ol, dl {
	list-style-type: disc;
	padding-bottom: 1em;
	padding-left: 1.5em;
}

ul[id], ul[class],
ol[id], ol[class],
dl[id], dl[class] {
	list-style-type: none;
	padding-left: 0;
}

img, a img{ /* テキストなどと並べた際に天地がずれるのを解消 */
	vertical-align: bottom;
	border: none;
	background: transparent;
}

object {
	vertical-align: top;
}

fieldset {
	border: none;
}

table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
}

th, td {
	vertical-align: top;
	border: solid 1px;
	font-weight: normal;
	text-align: left;
}

caption {
	text-align:left;
}

dt {
	font-weight: bold;
}

em, q {
	/*font-style: italic;*/
}

code,
samp,
kbd {
	font-family: "Courier New", monospace;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:focus,
a:active {
	outline: none;
}

q {
	quotes: "“" "”"; /* 引用符
		"open-quote" "close-quote"
	*/
}

q:before {
	content: open-quote;
}

q:after {
	content: close-quote;
}

*[lang="ja"] q,
q[lang="ja"] {
	quotes: "“" "”" "「" "」"; /* 引用符
		"open-quote" "close-quote"(セットで複数記述すると入れ子の引用符を指定できる)
	*/
}

.column {
	float: left;
}

.main_column {
	float: left;
	width: 62%;
}

.sub_column {
	float: left;
	width: 38%;
}

.clear {
	visibility:hidden;
	display: block;
	height: 0;
	clear: both;
}

.clearfix:after,
.columns:after {
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
	content: ".";
}

.signature {
	text-align: right;
	font-weight: bold;
}

.signature:before {
	content: "- ";
}

.for_ie6,
.for_ie7,
.for_ie8 {
	display: none;
}

.hidden_overlay {
	visibility: hidden;
	display: none;
}

.overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}

.overlay div {
	margin-left: auto;
	margin-right: auto;
}
