﻿@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*                                                                      */
/* 更新日：2014.11.15（土）                                             */
/* リセットCSS                                                          */
/* 各ブラウザのデフォルトスタイルをリセット                             */
/*                                                                      */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


/* ==================================================================== */
/* ブラウザの設定をクリア                                               *⁄
/* ==================================================================== */

/* ブラウザ間で差異を無くすために各要素をリセット *⁄
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
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, 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, input,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	background: transparent;
}

/* 新規追加要素はインライン要素のため、ブロック要素へ変更 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

/* 行の高さをフォントサイズと同サイズに設定 *⁄
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

/* 引用符を非表示 *⁄
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
blockquote, q {
	quotes: none;
}

/* blockquote要素・q要素の前後にコンテンツを追加しない *⁄
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* テーブルのリセット *⁄
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
table{
	border-collapse: collapse;
	border-spacing: 0;
}

/* 画像の下にできる隙間をなくす *⁄
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
img {
	vertical-align: bottom;
}

/* 必ず【strong】タグが反映されるように設定 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
strong {
	font-weight: bold;
}

/* テキストに打ち消し線が付く */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
del {
	text-decoration: line-through;
}

/* IEで下線表示、マウスオーバー時にヘルプカーソルの表示 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

/* 立体的な罫線に見えなくする */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
hr {
	display: block;
	height: 1px;
	border: 0;  
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

/* 縦方向の揃え位置を中央揃えに指定 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
input, select {
	vertical-align: middle;
}

/* mark要素のデフォルトをセット（文書内検索で該当フレーズをハイライト） */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

/* ins要素のデフォルトをセット */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}


/* clearfix *⁄
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.clearfix {
	min-height: 1%;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
* html .clearfix {
	height: 1%;
	height: auto;
	overflow: hidden;
}




/* ==================================================================== */
/* ブラウザ特有の表示をクリア                                           *⁄
/* ==================================================================== */

/* FireFox リンク選択時の点線を消す */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a {
	overflow: hidden;
	outline: none;
}

/* Chrome リンク選択時の枠線を消す */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
input[type="image"], input[type="password"],
textarea, select {
	outline: none;
}
