﻿@charset "utf-8";


/*
ま～まれぇどブラウザ初期化用CSS
Ver.1.52-130214版
DWCS6デザインビュー対応

ブラウザごとの差異を埋めるためのスタイルシートです。

基本的にこのスタイルは弄りません。
全てのページに適用するので
特定の色や装飾のスタイルはできるだけ記入しないでください。
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}
body {
    line-height: 1;
	height:100%;
}
ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
 
/*以下は必要に応じて別途指定してください */
:focus {
    outline: 0;
}
 
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
 
/*テーブル初期化*/

table{
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
}
caption{
	text-align: left;
}
th{
	vertical-align: top;
	font-weight: normal;
	text-align: left;
}
td{
	vertical-align: top;
}

/*基本設定*/
body{
	text-align:center;
	line-height:1.6;
	font-size:14px;
	font-family:'Hiragino Kaku Gothic Pro', 'Meiryo', 'Verdana';
}


/*CSSを使ったボタンを作るとき内部のテキストを消すのに使用
	使用例: <a href="#"><span>ボタン1</span></a>
*/
a span{
	display:none;
}



/*IEでボックス内のmarginが親要素に影響してずれる危険があるときに使用*/
.spacer{
	background-image:url(../css/pixel.gif);
	height:1px;
	width:1px;
}


/*
clearfix
float対策
*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
 
.clearfix {
  min-height: 1px;
}
 
* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}