@charset "utf-8";

/* *********************************************************
Title: base.css
Created: 2013-11-07
Last Modified: 2013-11-07
********************************************************* */

/* Table Of Contents
------------------------------------------------------------
#01 GENERAL ELEMENTS
#02 naviHidden
#03 mac（丸数字など）
#04 contents
#05 section p figure
#06 ul ol normalList
#07 clearfix
#08 imgImitation
#09 textImitation
----------------------------------------------------------*/

/*----------------------------------------------------------
#01 GENERAL ELEMENTS
----------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',"メイリオ", Meiryo,"ＭＳ Ｐゴシック", "MS PGothic";
}
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary {
	display: block;
}
h1,h2,h3,h4,h5,h6 {
	font-family: inherit;/* 親要素から継承 */
	font-size: 1.0em;/* 相対単位 */
	font-weight: normal;
	line-height: inherit;
	text-decoration: none;
}


img {
	border: 0;
	vertical-align: top;
}
a:link,
a:visited {
	text-decoration: underline;
}
a:hover,
a:active {
	text-decoration: underline;
}

/*------------------------------------------------------------
#02 naviHidden
------------------------------------------------------------*/
.naviHidden {
	position: absolute;
	text-indent: -9999em;
	width: 1px;
	overflow: hidden;
}

/*----------------------------------------------------------
#03 mac（丸数字など）
----------------------------------------------------------*/
.mac {
	font-family: Osaka, "メイリオ", Meiryo,"ＭＳ Ｐゴシック", sans-serif;
}

/*----------------------------------------------------------
#04 contents 基本的な文字サイズ、文字幅はここで決める
----------------------------------------------------------*/
#contents {
	color: #212121;
	letter-spacing: 0.1em;
	line-height: 1.4em;
	padding: 0 15px;
	text-align: left;
}

#contents ul,ol {
	list-style: inside;
	margin-bottom: 6px;
	margin-top: 6px;
}

/*----------------------------------------------------------
#05 section p figure　
----------------------------------------------------------*/
section {
	clear: both;
	margin: 6px 0 32px 0;
}
p {
	margin: 6px 0;
}
figure {
	margin: 6px 0;
}

/*------------------------------------------------------------
#07 clearfix
------------------------------------------------------------*/
.clearfix:after {
	clear: both;
	content: url("./images/clearfix.gif");
	display: block;
	height: 0;
}
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
.clearfix { display: block; }
/* End hide from IE-mac */

/*----------------------------------------------------------
#08 imgImitation
----------------------------------------------------------*/
img .detailSite {
	vertical-align: middle;
}

/*----------------------------------------------------------
#09 textImitation
----------------------------------------------------------*/
/* 右寄せ \*/
.contentRight {
	text-align: right;
}
/* 中央寄せ \*/
.contentCenter {
	text-align: center;
}
/* 文字を大きく \*/
.big {
	font-size: 115%;
}
/* 文字を大きく強調 \*/
.largeStrong {
	font-size: large;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.4em; 
}
/* 文字を小さく \*/
.small {
	font-size: small;
}
/* 文字に下線 \*/
.textUnder {
	text-decoration: underline;
}
/* 赤字 \*/
.red {
	color: #cc0000;
}