@charset "utf-8";
/* CSS Document */

/*/////////////////////////////////////////////////////////
file name: default.css
description: デフォルト指定用スタイルシート

1.基本
2.レイアウト
3.hタグ、em、pなどの指定
4.リンク
5.リスト
6.テーブル
7.画像
///////////////////////////////////////////////////////// */

/* ===========  1.基本  =========== */
*{
	margin: 0;
	padding: 0;
}

article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ', meiryo, Arial, Helvetica,'ＭＳ Ｐゴシック'!important;
	font-size: 87.5%;
	color: #000;
}

html>/**/body {
    font-size: 14px;
}

table {font-size:inherit;font:100%;}
select, input, textarea {
	font: 99%;
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ', meiryo, Arial, Helvetica,'ＭＳ Ｐゴシック'!important;
}
pre, code {font:115% monospace;*font-size:100%;}
body * {line-height:1.4em;}


/* ===========  2.レイアウト  =========== */
body {
	color: #000;
	text-align: center;
	margin-bottom: 0;
	padding-bottom: 0;
}
div{
	text-align: left;
}


/* ===========  3.hタグ、em、pなどの指定  =========== */

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: normal;
	line-height: 1.1;
}

h1 {
	font-size: 100%;
}

h2 {
	font-size: 100%;
}

h3 {
	font-size: 100%;
}

h4 {
	font-size: 100%;
}

h5 {
	font-size: 100%;
}

h6 {
	font-size: 100%;
}

p{
	padding-bottom: 10px;
	line-height: 1.4;
}

em {
	font-style: normal;
	font-weight: normal;
}


/* ===========  4.リンク  =========== */

a {
	overflow: hidden;
}

a:link {
	color: #00a0e9;
	font-weight: normal;
	text-decoration: none;
}

a:visited {
	color: #00a0e9;
	font-weight: normal;
	text-decoration: none;
}

a:active {
	color: #005de9;
	font-weight: normal;
	text-decoration: underline;
}

a:hover {
	color: #005de9;
	font-weight: normal;
	text-decoration: underline;
}

a.str {
	overflow: hidden;
	font-weight: bold;
}

a:link.str {
	color: #00a0e9;
	font-weight: bold;
	text-decoration: none;
}

a:visited.str {
	color: #00a0e9;
	font-weight: bold;
	text-decoration: none;
}

a:active.str {
	color: #005de9;
	font-weight: bold;
	text-decoration: underline;
}

a:hover.str {
	color: #005de9;
	font-weight: bold;
	text-decoration: underline;
}


/* ===========  5.リスト  =========== */

li li,
li p,
li pre,
li dt,
li dd,
dd li,
dd p,
dd pre,
dd dt,
dd dd {
	font-size:100%;
}

ol {
	margin-left: 20px;
	_margin-left: 25px;
}

/* ===========  6.テーブル  =========== */

th{
	text-align: left;
}


/* ===========  7.画像  =========== */

img {
	border: none;
	vertical-align: bottom;
}


/*599px以下スマホ縦横*/
@media screen and (max-width: 599px) {
/*/////////////////////////////////////////////////////////
file name: default.css
description: 基本セッティング
///////////////////////////////////////////////////////// */

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,
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;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	/*safari環境での縦横時の文字拡大禁止*/
	-webkit-text-size-adjust: none;
}

body {
	line-height: 1.4;
	/*iPhone用フォント指定（defaultだと文字が明朝→ゴシックに変換）*/
	font-family:Helvetica, sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	color:#333;
}

/*	リンク
--------------------------------------*/

a,a:visited {
	color: #026fca;
	text-decoration: none;}
a:hover,a:active {
	color: #026fca;
	text-decoration: none;}


/*	テーブル設定
--------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*	p 行間
--------------------------------------*/
p {
	line-height: 1.4;
	padding-bottom: 10px;
}


/*===========================================================
＊ フロート解除
===========================================================*/


/*	クリアフィックス - CLEAR FIX -
--------------------------------------*/
.clearfix:before,
.clearfix:after { content:""; display:table;} 
.clearfix:after { clear:both;}
.clearfix { zoom:1;}


/* overflo クリア
--------------------------------------*/
.c-fix{
	overflow:hidden;
	_zoom:1;}


/*------------------------------------------ End */
}