@charset "UTF-8";

/*
	Site Name:  www.enjoy.JP
	Description: Common Stylesheet
	Version: 0.1
	Author: edion
*/

/*
===== default.css ========================================

	01. universal reset 
	02. Body and Base setting
	03. General parameter setting
	04. Phrase elements styles
	05. Link setting
	06. clearfix hack

==========================================================
*/


/* 01. universal reset */

body , h1 , h2 , h3 , h4 , h5 , h6 , div , p , pre , table , th , td , caption , address , form , blockquote , del , ins , code , var {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
}
h1 , h2 , h3 , h4 , h5 , h6 {
	font-size: 100%;
}
em , strong {
	font-style: normal;
}

/* 02. Body and Base setting */

html {
}
body {
	color: #000000;
	font-size: 14px;
}
* html body {
	font-size: 14px;
}
*:first-child+html body {
	font-size: 14px;
}

/* 03. General parameter setting */

h1 , h2 , h3 , h4 , h5 , h6 {
	line-height: 150%;
}
p , pre , ul , ol , dl , dt , dd , th , td , address , form , blockquote {
	line-height: 150%;
}
ul,ol,li,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
table {
	border-collapse: collapse;
	empty-cells: show;
}
th , td{
	text-align: left;
}
img {
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	border: none;
}

/* 04. Phrase elements styles */

em {
	font-weight: bold;
}
strong {
	/*color: #ff0000;*/
	font-weight: bold;
}
pre {
	margin: 10px 0;
}

/* 05. Link setting */

a:link{
	color: #0000CD;
	text-decoration: none;
}
a:visited{
	color: #0000CD;
	text-decoration: none;
}
a:hover{
	color: #FF3300;
	text-decoration: none;
}
a:active{
	color: #FF3300;
	text-decoration: none;
}

/* 06. clearfix hack */

/* ==1: clearfix hack */

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
	overflow: hidden;
}

/* ==2: cIE hack (except macIE) */

/* Hides from IE-mac \*/

* html .clearfix {
	height: 1%;
}
.clearfix{
	display: block;
}

/* End hide from IE-mac */


