@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: reset.css
 * Summary:   ブラウザデフォルトスタイルのリセット
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * Suggested Order:
 *     [表示に関するプロパティ]
 *         display
 *         list-style
 *             list-style-type
 *             list-style-image
 *             list-style-position
 *         overflow
 *         clip
 *         visibility
 *         opacity
 *
 *     [配置に関するプロパティ]
 *         position
 *         top
 *         right
 *         bottom
 *         left
 *         float
 *         clear
 *         z-index
 *         transform
 *
 *     [ボックスモデルに関するプロパティ]
 *         width
 *         min-width
 *         max-width
 *         height
 *         min-height
 *         max-height
 *         margin (top, right, bottom, left)
 *         padding (top, right, bottom, left)
 *         border (top, right, bottom, left)
 *             border-width
 *             border-color
 *             border-style
 *         border-radius
 *         border-image
 *         box-sizing
 *         box-shadow
 *
 *     [背景に関するプロパティ]
 *         background
 *             background-color
 *             background-image
 *             background-repeat
 *             background-attachment
 *             background-position
 *         background-clip
 *         background-origin
 *         background-size
 *
 *     [テキストとフォントに関するプロパティ]
 *         color
 *         font
 *             font-family
 *             font-style
 *             font-variant
 *             font-weight
 *             font-size
 *         line-height
 *         text-indent
 *         text-decoration
 *         text-align
 *         vertical-align
 *         letter-spacing
 *         word-spacing
 *         word-break
 *         white-space
 *         text-transform
 *         text-shadow
 *
 *     [表・テーブルに関するプロパティ]
 *         caption-side
 *         table-layout
 *         border-collapse
 *         border-spacing
 *         empty-cells
 *
 *     [内容の追加に関するプロパティ]
 *         content
 *         quotes
 *         counter-reset
 *         counter-increment
 *
 *     [ユーザーインターフェースに関するプロパティ]
 *         outline
 *             outline-width
 *             outline-color
 *             outline-style
 *         cursor
 *         resize
 *
 *     [アニメーションに関するプロパティ]
 *         transition
 *             transition-property
 *             transition-duration
 *             transition-timing-function
 *             transition-delay
 *         animation
 *             animation-name
 *             animation-duration
 *             animation-timing-function
 *             animation-iteration-count
 *             animation-direction
 *             animation-play-state
 *             animation-delay
 *             animation-fill-mode
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    reset style
 *       =1-1    common style
 *       =1-2    link style
 *       =1-3    list style
 *       =1-4    table style
 *       =1-5    form style
 *       =1-6    quote style
 *       =1-7    other style
 *
 * ===============================================================
*/



/** =1
 * ========================================
 * reset style
 * ========================================
 */

	/** =1-1
	 * common style
	 * ----------------------------------
	 */

	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: none;
		background: transparent;
		font-family: inherit;

		font-style: normal;
		font-size: 100%;
		vertical-align: baseline;
		outline: none;
	}
	img {
		vertical-align: bottom;
	}

	article, aside, canvas, details, figcaption, figure,
	footer, header, hgroup, menu, nav, section, summary
	{
		display: block;
	}

	:focus {
		outline: none;
	}


	/** =1-2
	 * link style
	 * ----------------------------------
	 */

	a, a:link, a:visited, a:hover, a:active {
		margin: 0;
		padding: 0;
		font-size: 100%;
		text-decoration: none;
		vertical-align: baseline;
		outline: 0;
		cursor: pointer;
	}


	/** =1-3
	 * list style
	 * ----------------------------------
	 */

	ol, ul {
		list-style: none;
	}


	/** =1-4
	 * table style
	 * ----------------------------------
	 */

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	caption, th, td {
		text-align: left;
	}


	/** =1-5
	 * form style
	 * ----------------------------------
	 */

	fieldset {
		border: none;
	}

	input, select, textarea {
		font-family: inherit;
		font-size: 100%;
	}

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

	textarea {
		overflow: auto;
	}

	label, button {
		cursor: pointer;
	}


	/** =1-6
	 * quote style
	 * ----------------------------------
	 */

	blockquote, q {
		quotes: none;
	}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}


	/** =1-7
	 * other style
	 * ----------------------------------
	 */

	abbr[title], dfn[title] {
		border-bottom: 1px dotted;
		cursor: help;
	}

	del {
		text-decoration: line-through;
	}

	ins {
		background-color: #FFFFBB;
		color: #000000;
		text-decoration: none;
	}

	mark {
		background-color: #FFFFBB;
		color: #000000;
		text-decoration: none;
	}

	hr {
		display: block;
		height: 1px;
		margin: 1em 0;
		padding: 0;
		border: none;
		border-top: 1px solid #CCCCCC;
	}
