﻿@charset "utf-8";


/* ================================================================================
	1:Reset Css
================================================================================ */

/* 1:AllRest
================================================*/

html, body, address, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul, dd, dt, li, tbody, td, tfoot, th, thead, tr, button, map,
a, b, br, em, i, img, small, span, strong, sub, sup, legend, fieldset, input,
article, aside, details, figcaption, figure, footer, header, menu, nav, section, main {
	margin: 0;
	padding: 0;
}


/* 2:HTML5ブロック要素化
================================================*/

article, aside, details, figcaption, figure, footer, header, menu, nav, section, main { 
    display: block;
}

img {
	border: 0;
	vertical-align: top;
}

ul,ol {
	list-style: none;
}

strong {
	font-weight: normal;
}

em {
	font-style: normal;
}

form, text, textarea {
	outline:none;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th, td {
    text-align: left;
}


/* 3:A要素
================================================*/

a {
	color: #5e5e5e;
	text-decoration: none;
	transition: all 0.6s ease 0s;
}

a:hover {
	color: #5e5e5e;
	text-decoration: underline;
	transition: all 0.6s ease 0s;
}

a img {
	filter: Alpha(opacity=100);
	opacity: 1;
	transition: opacity 0.6s ease 0s;
} 

a img:hover {
	transition: opacity 0.6s ease 0s;
	filter: Alpha(opacity=80);
	opacity:0.8;
}


/* 4:Body要素
================================================*/

body {
	background-color: #fff;
	font: 14px/1.6  "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333333;
}


/* ================================================================================
	1:Module Css
================================================================================ */

.inner {
	width: 960px;
	margin: 0 auto;
}

.lb {
	float: left;
}

.rb {
	float: right;
}

.wrap {
	overflow: hidden;
}

.cf:before,
.cf:after {
    content: "";
    display: table;
}
 
.cf:after {
    clear: both;
}

.pc-none {
	display: none;
}