@charset "UTF-8";
/* CSS Document */


/* Table Of Contents
----------------------------------------
#00 margin/padding reset
#01 font Size
#02 font Color
#03 img
#04 Layout
#05 float clear
----------------------------------------*/


/* #00 margin/padding reset
---------------------------------------------------------------------------- */

body, h1, h2, h3, h4, p, ul, ol,li,table,tr,td,tbody,form {
	padding:0px;
	margin:0px;
}
/* #01 font size
---------------------------------------------------------------------------- */
.fs_8 {
	font-size: .8rem;
}

/* #02 font Color
---------------------------------------------------------------------------- */
.imp_red {
	color:#ff0000;
}
.imp_pink {
	color:#F668B2;
}
.imp_heart {
	color:#FF3366;
}
.imp_violet {
	color:#bc6987;
}
.imp_blue {
	color:#0000FF;
	font-weight: bold;
}
.imp_orange {
	color:#FF6600;
	font-weight: bold;
}
.imp_kai {
	color: #d85d5d;
}
/* #03 IMG
---------------------------------------------------------------------------- */

img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
/* #04 Layout
---------------------------------------------------------------------------- */

/* #05 float clear
---------------------------------------------------------------------------- */
/* Clearfix */  
.clearfix:after {  
    content: ".";   
    display: block;   
    height: 0;   
    clear: both;   
    visibility: hidden;  
}  
.clearfix {  
    display: inline-block;  
    min-height: 1%;  
}  
/* Hides from IE-mac \*/  
* html .clearfix {  
    height: 1%;  
}  
.clearfix {  
    display: block;  
}  
/* End hide from IE-Mac */
.clearLeft {
	clear:left;
}
.clearRight {
	clear:right;
}
.clearBoth {
	clear:both;
	visibility:hidden;
	height: 0;
}
.cleartext {
	display:block;
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}