﻿@charset "utf-8";
/*
  各エレメント（タグ）固有の設定を再設定
=================================================================*/
/*Reset: basic propaty setting ----------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	outline:0;
	vertical-align: baseline;
	background: transparent;
}

/*Set: display propaty ------------------------------------------*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display: block;
}

/*Reset: border propaty -----------------------------------------*/
abbr,acronym,fieldset,img {
	/*デフォルトでボーダー（枠線）が表示されるエレメントの解除*/
	border: 0;
}

/*Reset: table element ------------------------------------------*/
table {
	/*セルとセルの間のスペースを解除*/
	 border-collapse: collapse; border-spacing: 0;
}
table,th,td {
	/*テーブル関連タグのマージンとパディングを0に設定*/
	margin: 0; padding: 0;
}
caption,th,td {
	/*テーブル関連タグの横方向のそろえを左揃えに*/
	text-align: left;
}
	
/*Reset: List element ------------------------------------------*/
nav ol, nav ul {
	/*箇条書、連番リスト冒頭のマークを非表示*/
	list-style: none;
}

/*Reset: Quotation ----------------------------------------------*/
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

/*Reset: Form parts ---------------------------------------------*/
input, select {
    vertical-align:middle;
}

/*Reset: Text highlights ----------------------------------------*/
mark {
	/* add to suit your needs */
}

del {
	/* add to suit your needs */
}
ins {
	/* add to suit if you need */
}


abbr[title], dfn[title] {
	/* add to suit your needs */
    cursor:help;
}


/*
  フォントの基本設定
=================================================================*/
/*Reset: font size propaty --------------------------------------*/
body {
	/*ブラウザのデフォルトフォントサイズを16pxと前提して相対サイズで指定*/
	font-size: 75%;   /* 約12px */
}
h1,h2,h3,h4,h5,h6 {
	font-size: 1.2em; /* 約14px */
}
div,p,li,dt,dd {
	font-size: 1.0em; /* 約12px */
}
table,caption,th,td {
	font-size: 1.0em; /* 約12px */
}

/*Reset: line height propaty
  行間の指定 -----------------------------------------------------*/
body,h1,h2,h3,h4,h5,h6,ul,li,dt,dd {
	line-height: 1.0;
}
div,p,table,caption,th,td {
	line-height: 1.6;
}

/*Reset: font family propaty ------------------------------------*/
body {
	font-family:
	"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


/* clearfix hack */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix{
	display:inline-block;
}

/* hide macie \*/
*html .clearfix {
	height: 1%;
}

.clearfix{
	display: block;
}

/* end hide */
/* end clearfix hack */

/*
Text Mawarikomi
*/
.pre {
	white-space: pre;           /* CSS 2.0 */
	white-space: pre-wrap;      /* CSS 2.1 */
	white-space: pre-line;      /* CSS 3.0 */
	white-space: -pre-wrap;     /* Opera 4-6 */
	white-space: -o-pre-wrap;   /* Opera 7 */
	white-space: -moz-pre-wrap; /* Mozilla */
	white-space: -hp-pre-wrap;  /* HP Printers */
	word-wrap: break-word;      /* IE 5+ */
}

/*
  Firefoxの右側スクロールバーの表示
=================================================================*/
html {
	overflow-y: scroll;
}
ul {list-style-type:none}