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

/* ****************************************************
Title: style.css
Created: 2013.09.11
Last Modified: 2015.02.13
Editor: Hayakawa
Last Editor: Hayakawa
***************************************************** */


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


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

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

.fs_12em {
	font-size:1.2em;
}
.fs_11em {
	font-size:1.1em;
}
.fs_1em {
	font-size:1em;
}
.fs_09em {
	font-size:0.9em;
}
.fs_08em {
	font-size:0.8em;
}
.fs_07em {
	font-size:0.7em;
}
.fs_06em {
	font-size:0.6em;
}
.fs_05em {
	font-size:0.5em;
}
.fs_04em {
	font-size:0.4em;
}
.fs_03em {
	font-size:0.3em;
}
/* #02 font Color
---------------------------------------------------------------------------- */
.important_red {
	color:#ff0000;
}
.important_pink {
	color:#F668B2;
}
.important_heart {
	color:#FF3366;
}
.important_violet {
	color:#bc6987;
}
/* #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;
}
.img_txt {
	display:block;
	text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
}
/* #04 Layout
---------------------------------------------------------------------------- */
.margin_b100 {
	margin-bottom:100px;
}
.margin_b90 {
	margin-bottom:90px;
}
.margin_b80 {
	margin-bottom:80px;
}
.margin_b70 {
	margin-bottom:70px;
}
.margin_b60 {
	margin-bottom:60px;
}
.margin_b50 {
	margin-bottom:50px;
}
.margin_b40 {
	margin-bottom:40px;
}
.margin_b30 {
	margin-bottom:30px;
}
.margin_b20 {
	margin-bottom:20px;
}
.margin_b15 {
	margin-bottom:15px;
}
.margin_b10 {
	margin-bottom:10px;
}
.margin_l5 {
	margin-left:5px;
}
.margin_b1em {
	margin-bottom:1em;
}
.margin_b1.5em {
	margin-bottom:1.5em;
}
.margin_l10 {
	margin-left:10px;
}
.margin_l15 {
	margin-left:15px;
}
.padding_b10 {
	padding-bottom:10px;
}

/* #05 float clear
---------------------------------------------------------------------------- */
.clearfix {
	display: inline-table;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearLeft {
	clear:left;
}
.clearRight {
	clear:right;
}
.clearBoth {
	clear:both;
}

/* #06 topic Path
---------------------------------------------------------------------------- */
.topicpath ol li {
        /* liを横並び＆ブレットを消す */
        display: inline;
        list-style-type: none;
}

.topicpath ol li:before {
        /* liの前に記号追加 */
        content: " > ";
}

.topicpath ol li:first-child:before {
        /* 最初のliだけcontentを消す */
        content: none;
}