﻿@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------------
cssの初期化
--------------------------------------------------------------------*/

html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, img, abbr, acronym, address, big, cite, code,
del, dfn, em, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	font-family:"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"Lucida Grande","Lucida Sans Unicode","ＭＳ Ｐゴシック",Helvetica,Arial,Verdana,sans-serif;
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

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

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

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

input, textarea{
	margin: 0;
	padding: 0;
}

ol, ul{
    list-style:none;
}

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

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

header:after,footer:after,section:after,article:after,aside:after,div:after,dl:after,ul:after {
	content : "";
	display : block;
	height : 0;
	clear : both;
}

br {
	letter-spacing:0;
}

/*共通使用部分*/

body {
	font-size:small;
	letter-spacing:0.1em;
	line-height:1.6em;
}

img {
	vertical-align:bottom;
}

.clear {
	clear:both;
}

/*文字色のスタイル*/

a:link,a:visited {
	overflow:hidden;
	color:#0033CC;
	text-decoration:none;
}

a:hover {
	text-decoration:none;
	color:#FF0000;
}

/*--------------------------------------------------------------------
ここより下は、最初から必要ならば加えておく
--------------------------------------------------------------------*/

/*clearのスタイル*/
.clear {
	clear:both;
}

/*floatのスタイル*/
.left {
	float:left;
}

.right {
	float:right;
}

/*hoverのスタイル*/
.fade {
	-webkit-transition: 0.3s ease-in-out;  
	-moz-transition: 0.3s ease-in-out;  
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
} 
 
.fade:hover {  
	opacity: 0.6;  
	filter: alpha(opacity=60);  
}

/*margin-bottomのスタイル*/

.bottom5 {
	margin-bottom:5px;
}

.bottom10 {
	margin-bottom:10px;
}

.bottom15 {
	margin-bottom:15px;
}

.bottom20 {
	margin-bottom:20px;
}

.bottom25 {
	margin-bottom:25px;
}

.bottom30 {
	margin-bottom:30px;
}

.bottom40 {
	margin-bottom:40px;
}

.bottom50 {
	margin-bottom:50px;
}

.bottom60 {
	margin-bottom:60px;
}