@charset "utf-8";

/* ---------------------------------------------------------
 　■ html5doctor.com リセットCSS【改】
--------------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/* === 要素のフォントサイズやマージン・パディングをリセット === */
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;
    vertical-align:baseline;
    background:transparent;
}

/* === padding と border の幅を要素の幅と高さに含める === */
/* === ※ IE6・IE7非対応のため、要ハック。 === */
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
/* === 新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更 === */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
/* === ol・ulのマーカーを表示を none に指定 === */
ol, ul {
	list-style: none;
}
/* === 垂直型リストで画像を並べた時の隙間を消すための処理 === */
img {
	vertical-align: top;
	font-size:0;
	line-height: 0;
}
/* === 引用符の表示を none に指定 === */
blockquote, q {
    quotes:none;
}
/* === blockquote要素、q要素の前後にコンテンツを追加しないように指定 === */
blockquote:before,
blockquote:after,
q:before,
q:after {
    content:'';
    content:none;
}
/* === a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃える === */
a {
    margin:0;
    padding:0;
    vertical-align:baseline;
    background:transparent;
}
/* === ins要素のデフォルトをセット（色を変える場合はここで変更） === */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* === mark要素のデフォルトをセット（色やフォントスタイルを変える場合はここで変更）
       ※mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するらしい === */
mark {
	font-weight: bold;
	font-style: normal;
	color: #000;
	background-color: #ff9;
}
/* === テキストに打ち消し線が付くように === */
del {
    text-decoration: line-through;
}
/* === IEではデフォルトで点線を下線表示する設定ではないので、下線がつくように
       また、マウスオーバー時にヘルプカーソルの表示が出るように === */
abbr[title],
dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
/* === セルのボーダー設定 === */
table {
	border-collapse:collapse;
	border-spacing:0;
}
/* === 立体的な水平罫線を見えなくする === */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #CCCCCC;
    margin: 0;
    padding: 0;
	clear: both;
	visibility: hidden;
}

/* === 縦方向の揃え位置を中央揃えに指定 === */
input, select {
    vertical-align:middle;
}
/* === FFでスクロールバーがある時とない時でセンター位置がズレるのを防止 === */
html{
	overflow-y: scroll;
}

/* ---------------------------------------------------------
 　■ yuilibrary.com YUIフォントサイズCSS【改】
--------------------------------------------------------- */
/*
YUI 3.5.0 (build 5089)
Copyright 2012 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
http://yuilibrary.com/yui/docs/cssfonts/cssfonts-size.html
*/
/* === 全てのブラウザの表示フォントサイズを13pxに設定する
       フォントサイズを％指定した場合のブラウザ間の微妙な違いはこれで修正 === */
body{
	font:13px/1.231 sans-serif;
}
html.ie6 body,
html.ie7 body{
	font-size:small; font:x-small;
}
select,input,button,textarea{
	font:99% arial,helvetica,clean,sans-serif;
}
table{
	font-size:inherit;
	font:100%;
}
pre,code,kbd,samp,tt {
	font-family:monospace;
	line-height:100%;
}
html.ie6 pre, html.ie6 code, html.ie6 kbd, html.ie6 samp, html.ie6 tt,
html.ie7 pre, html.ie7 code, html.ie7 kbd, html.ie7 samp, html.ie7 tt{
	font-size:108%;
}
/* === safariのフォントサイズ調整 === */
html.safari {
	font-size: 80%;
}


