@charset "UTF-8";


/*--------------------------------------------------------
1、サイト全体の背景設定
------------------------------------------------------*/

#container{ background-color: #fff; }


/*--------------------------------------------------------
2、サイト全体の共通設定
-------------------------------------------------------*/

body{ color: #000; }

/*●リンク文字*/
a{ text-decoration: underline; }

a:link,
a:visited{ color: #4169e1; }
a:hover,
a:active{ color: #f60; }


/*--------------------------------------------------------
3、エリアの設定
--------------------------------------------------------*/

#container{
	position: relative;
	padding-top: 25px;
}


/*--------------------------------------------------------
トップ
--------------------------------------------------------*/

#top{
	position: absolute;
	top: 0;
	background-color: #fff;
	font-size: 1.2em;
}

#top-in{
	position: relative;
	padding: 5px 0;
}

#top-menu{ text-align: right; }

#top-menu li{
	display: inline;
	margin-left: 1em;
	list-style: none;
}

#top-menu li a{
	padding-left: 12px;
	background: url(./images/icon/icon-arrow01.png) left center no-repeat;
}


/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/

#header{
	background-color: #fff;
	font-size: 1.2em;
}

#header-in{ padding: 1em 0; 
background: url(./images/header.gif) right center no-repeat; }

/*●ヘッダーロゴ（メインタイトル）*/
#header #header-title{
	float: left;
	width: 59.5%; /*ロゴ（メインタイトル）下の<h1>の1行の幅はこちらのwidthの値を変更*/
}

#header .header-logo{
	margin-bottom: 0.2em;
	font-size: 3em;
}


/*●ヘッダーロゴテキスト*/
.header-logo a{ text-decoration: none; }

.header-logo a:link,
.header-logo a:visited{ color: #333; }
.header-logo a:hover,
.header-logo a:active{ color: #f60; }


/*●ヘッダーテキスト・右上の文章*/
#header-in #header-text{
	float: right;
	width: 40%; /*・1行の幅はwidthの値を変更*/
	color: #333;
}

#header h1{
	margin-bottom: 1em;
	font-size: 1.167em;
}


/*--------------------------------------------------------
グローバルナビ
--------------------------------------------------------*/

#global-nav{
	background-color: #fff;
	border-bottom: 4px solid #000;
} /*メニュー下のラインの設定*/

#global-nav dl{
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
}

#global-nav dt,
#global-nav dd{ 
	margin: 0;
	padding: 0;
}


/*●メニューボタンを非表示*/
#global-nav .btn-gnav{ display:none; }


/*●グローバルメニュー*/
#global-nav .menu-wrap{ display: block; }

#menu{
	padding-bottom: 5px;
	font-size: 1.2em;
}

#global-nav #menu li{
	position: relative;
	float: left;
	margin: 0;
	border-right: solid 1px #000; /*右側のボーダーの色*/
	list-style: none;
	font-weight: bold;
}

#global-nav #menu li.first{ border-left: solid 1px #000; } /*一番左のメニューだけに追加指示*/

#global-nav #menu li{ white-space: nowrap; }

/*メニューのデザイン*/
#global-nav #menu li a{
	display: block;
	padding: 0.8em 2em;
	color: #333; /* メニューのフォントの色*/
	text-decoration: none;
}

#global-nav #menu li a:link,
#global-nav #menu li a:visited{ background-color: #fff; } /*すでに訪れたリンクの背景色*/
#global-nav #menu li a:hover,
#global-nav #menu li a:active{ background-color: #efefef; } /*マウスカーソルを乗せた時の背景色*/

#global-nav #menu li ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 12em;
}

/*ドロップダウンメニューのデザイン*/
#global-nav #menu li ul li{
	margin: 0;
	padding: 0;
	width: 12em;
	background-color: #eaeaea;
	border-top: 0;
	border-right: 0;
	white-space: normal;
}

#global-nav #menu li ul li a{
	display: block;
	padding: 0.8em 2em;
}

#global-nav #menu li ul ul{
	top: 0;
	left: 100%;
}

#global-nav .showMenu{ display: block!important; }


/*--------------------------------------------------------
コンテンツ全体
--------------------------------------------------------*/

#main-in{ padding-top: 1.5em; }


/*●メイン画像*/
#main-image{
	padding-top: 1.5em;
}

#main-image-in{
	position: relative;
	padding-bottom: 1.5em;
}

#main-image img{
	width: 100%;
	height: auto;
}

#main-image .catch-copy{
	position: absolute;
	top: 1em;
	left: 1em;
	color: #fff;
	font-size: 3em;
}


/*●パン屑ナビ*/
#breadcrumbs{
	clear: both;
	margin-bottom: 1.5em;
	font-size: 1.2em;
}

#breadcrumbs li{
	display: inline;
	margin-right: 0.5em;
	line-height: 1.8;
	text-align: right;
	list-style: none;
}

#breadcrumbs li a{
	padding-right: 15px;
	background: url(./images/icon/icon-brc.gif) center right no-repeat;
}


/*--------------------------------------------------------
メインコンテンツ（本文）
--------------------------------------------------------*/

#main-contents{ font-size: 1.4em; }

#main-contents .contents{
	margin-bottom: 3.5em;
	padding: 0 10px;
}


/*●H2タグ*/
#main-contents h2{
    position: relative;
    margin: 0 0 1.5em;
    padding: 0.6em 0 0.4em 1.8em;
    font-size: 1.6em;
    font-weight: bold;
    border: 2px solid #333333;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -o-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -ms-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
#main-contents h2:before{
	content:''; 
	border-radius:30px;
	-webkit-border-radius:30px;
	-moz-border-radius:30px; 
	height:15px; 
	width:15px; 
	display:block; 
	position:absolute; 
	top:27px; 
	left:15px; 
	background-color:#666666;
	box-shadow: 0 0 2px 2px rgba(255,255,255,0.2) inset;
	filter:alpha(opacity=50);
	-moz-opacity:0.50;
	-khtml-opacity: 0.50;
	opacity:0.50;
	z-index: 1;
}
 
#main-contents h2:after{
	content:''; 
	border-radius:30px;
	-webkit-border-radius:30px;
	-moz-border-radius:30px; 
	height:18px; 
	width:18px; 
	display:block; 
	position:absolute; 
	top:16px; 
	left:7px; 
	background-color:#000000;
	box-shadow: 0 0 2px 2px rgba(255,255,255,0.2) inset
}

#main-contents h2 a:link,
#main-contents h2 a:visited{ color: #333; }

#main-contents h2 a:hover,
#main-contents h2 a:active{ color: #f60; }

#main-contents h2.img-title{
	margin: 0 0 1.5em;
	padding: 0;
	border: 0;
	background: none;
}


/*●H3タグ*/
#main-contents h3{
    position: relative;
    margin: 2em 0.5em 1.5em;
    padding: 0.6em 0 0.4em 1.5em;
    border: 2px solid #333333;
    font-size: 1.45em;
    font-weight: bold;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
#main-contents h3:before{
    content: "";
    position: absolute;
    background: #333333;
    top: 50%;
    left: 0.5em;
    margin-top :-15px;
    height: 30px;
    width: 8px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

#main-contents h3 a:link,
#main-contents h3 a:visited{ color: #333; }

#main-contents h3 a:hover,
#main-contents h3 a:active{ color: #f60; }

#main-contents h3.img-title{
	margin: 0 0 1.5em;
	padding: 0;
	border: 0;
	background: none;
}


/*●H4タグ*/
#main-contents h4{
    position: relative;
	margin: 1em 0.5em 1.5em;
    padding: 0.8em 0 0.5em 1.5em;
    border-bottom:1px dashed #ccc;  
	font-weight: bold;
    font-size: 1.2em;
}
#main-contents h4:before{
    content: "";
    position: absolute;
    background: #333333;
    top: 50%;
    left: 0.5em;
    margin-top :-10px;
    height: 20px;
    width: 6px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

#main-contents h4 a:link,
#main-contents h4 a:visited{ color: #333; }

#main-contents h4 a:hover,
#main-contents h4 a:active{ color: #f60; }

#main-contents h4.img-title{
	margin: 0 0 1.5em;
	padding: 0;
	border: 0;
	background: none;
}


/*●H5タグ*/
#main-contents h5{
	margin: 0 0 1.5em;
	padding: 0 0.8em 0.5em;
	border-bottom: 2px solid #414141;
	font-weight: bold;
}

#main-contents h5.img-title{
	margin: 0 0 1.5em;
	padding: 0;
	border: 0;
	background: none;
}

#main-contents h5 a:link,
#main-contents h5 a:visited{ color: #333; }

#main-contents h5 a:hover,
#main-contents h5 a:active{ color: #f60; }


/*●段落タグ*/
#main-contents p{ margin-bottom: 1.5em; }


/*●リストタグ*/
#main-contents ul,
#main-contents ol{
	margin: 0 0.8em 1.5em 1.7em;
	padding: 0;
}

#main-contents li{
	margin-bottom: 0.5em;
	line-height: 1.5em;
}


/*●引用タグ*/
#main-contents q{
	margin: 0 2px;
	padding: 0 8px;
	background: #efefef;
}

#main-contents blockquote{
	overflow: auto;
	margin: 0 1em 1.5em;
	padding: 1em;
	border: 3px solid #ddd;
	background: #efefef;
	color: #444;
}


/*●テーブルタグ*/
#main-contents table{
	margin-bottom: 1.5em;
	padding: 0;
	border-top: 1px solid #959595;
	border-left: 1px solid #959595;
}

/*「table」の1行目に「colspan」を利用する場合は「auto」を指定する*/
/*#main-contents table{ table-layout: auto; }*/

#main-contents th,
#main-contents td{
	padding: 0.5em;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
}

#main-contents th{
	background-color: #f0f0f0;
	font-weight: bold;
	text-align: left;
}


/*●テーブルタグ スタイル01*/
#main-contents table.table-style01 th,
#main-contents table.table-style01 td{
	text-align: left;
	vertical-align: top;
}


/*●最新情報（リストタグ）*/
#main-contents ul.news{
	margin: 0 0 3.5em;
	padding: 0;
	padding-bottom: 0;
}

#main-contents ul.news li{
	margin-bottom: 1em;
	padding: 0 1em 1em;
	border-bottom: 1px dotted #414141;
	line-height: 1.4em;
	list-style: none;
}


/*●最新情報（定義タグ）*/
#main-contents dl.news{
	margin: 0;
	margin-bottom: 3.5em;
	padding: 0;
}

#main-contents dl.news dt{
	float: left;
	width: 9em;
	margin: 0;
	padding: 0;
	padding-left: 1em;
}

/*最新情報のアイコン設定*/
#main-contents dl.news dd.cat{
	float: left;
	overflow: hidden;
	width: 6em;
	height: 1.5em;
	padding: 0.1em 0.3em 0;
	border-bottom: none;
	background: #333;
	color: #fff;
	font-size: 0.858em;
	text-align: center;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}

#main-contents dl.news dd{
	margin: 0 0 10px 0;
	padding: 0 1em 0.8em 16.5em;
	border-bottom: 1px dotted #414141;
}

/*カテゴリの文字数が多い場合はコメントアウトを解除*/
/*#main-contents dl.news dd.cat{
	clear: none;
	width: auto;
}

#main-contents dl.news dd{
	clear: both;
	padding: 0 1em 0.8em 1em;
}*/
/*●最新情報2（定義タグ）*/
#main-contents dl.news02{
	margin: 0;
	margin-bottom: 3.5em;
	padding: 0;
}

#main-contents dl.news02 dt{
	display: block;
	margin: 0 0 0.5em 0;
	padding: 0;
	padding-left: 1em;
	font-weight: bold;
}

#main-contents dl.news02 dd{
	margin: 0 0 0.5em 0;
	padding: 0 1em 0.8em 1em;
	border-bottom: 1px dotted #414141;
}

#main-contents dl.news02 dd.cat{
	margin: 0;
	padding: 0 1em 0.5em 1em;
	border: 0;
}

#main-contents dl.news02 dd.cat ul{
	margin: 0;
	padding: 0;
	/zoom : 1;
}

#main-contents dl.news02 dd.cat ul:after{ content : ''; display : block; clear : both; height:0; }

#main-contents dl.news02 dd.cat li{
	clear: none;
	overflow: hidden;
	float: left;
	height: 1.5em;
	margin-right: 0.5em;
	padding: 0.1em 0.3em 0;
	background: #333;
	color: #fff;
	font-size: 0.858em;
	text-align: center;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}


#main-contents dl.news dd.cat{ font-weight: bold; }
#main-contents dl.news dd.cat.color01{ background: #4784bf; }
#main-contents dl.news dd.cat.color02{ background: #dd6673; }
#main-contents dl.news dd.cat.color03{ background: #39a869; }
#main-contents dl.news dd.cat.color04{ background: #e8ac51; }
#main-contents dl.news dd.cat.color05{ background: #a55b9a; }
#main-contents dl.news dd.cat.color06{ background: #aac863; }


/*●定義タグ スタイル01*/
#main-contents dl.dl-style01{
	margin: 0 0 3.5em;
	padding: 0;
}

#main-contents dl.dl-style01 dt{
	float: left;
	width: 9em;
	margin: 0;
	padding: 0 0 0 1em;
}

#main-contents dl.dl-style01 dd{
	margin: 0 0 10px 0;
	padding: 0 1em 0.8em 10em;
	border-bottom: 1px dotted #414141;
}


/*●定義タグ スタイル02*/
#main-contents  dl.dl-style02{
	margin-bottom: 1.2em;
	padding: 0;
	border: 1px solid #777;
	border-top: 0;
	background-color: #ddd;
}

#main-contents dl.dl-style02 dt{
	margin: 0;
	padding: 0.5em;
	border-top: 1px solid #777;
	border-bottom: 1px solid #777;
	font-weight: bold;
}

#main-contents dl.dl-style02 dd{
	margin: 0;
	padding: 0.8em 1.0em;
	background-color: #fff;
}


/*●チェックリスト（リストタグ）*/
#main-contents ul.checklist{
	margin: 0 0 1.5em;
	padding: 1em;
	padding-bottom: 0;
	border: 1px solid #414141;
}

#main-contents ul.checklist li{
	margin-bottom: 1.5em;
	padding-top: 5px;
	padding-left: 24px;
	background: url(./images/icon/icon-check01-red.png) left top no-repeat;
	list-style-type: none;
}


/*●戻る＆進むリンク*/
.link-next,
.link-back,
.link-next02,
.link-back02{ clear: both; }

.link-next,
.link-next02{ text-align: right; }

.link-back,
.link-back02{ text-align: left; }

.link-next a{
	padding: 3px 0 3px 15px;
	background: url(./images/icon/icon-arrow_r.png) 0 5px no-repeat;
}
.link-back a{
	padding: 3px 0 3px 15px;
	background: url(./images/icon/icon-arrow_l.png) 0 5px no-repeat;
}

.link-next02 a{
	padding: 3px 0 3px 15px;
	background: url(./images/icon/icon-arrow_r-red.png) 0 5px no-repeat;
}
.link-back02 a{
	padding: 3px 0 3px 15px;
	background: url(./images/icon/icon-arrow_l-red.png) 0 5px no-repeat;
}


/*●段組み*/
.box-wrap .box-l{
	float: left;
	width: 48%;
	margin: 0 0 1.5em;
	border: 1px solid #aaa; /*boxの枠線の指示*/
}

.box-wrap .box-r{
	float: right;
	width: 48%;
	margin: 0 0 1.5em;
	border: 1px solid #aaa;
}

#main-contents .box-wrap .title{
	margin-bottom: 1.5em;
	background-color: #999; /*boxのタイトルの背景色*/
}

#main-contents .box-wrap .title p{
	margin: 0 10px;
	padding: 5px 0;
	color: #fff;
	font-weight: bold;
}


/*●ランキング（リストタグ）*/
#main-contents .box-wrap .ranking{
	margin: 0 0 15px;
}

#main-contents .ranking li{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #aaa; /*区切り線の指示*/
	background: none;
	list-style: none;
}

#main-contents .ranking li.end{
	padding-bottom: 0;
	border-bottom: none;
}

#main-contents .ranking p{ margin: 0 0 10px; }


/*●ページネーション スタイル01*/
#main-contents .cont-menu01{
	position: relative;
	overflow: hidden;
	width: 100%;
}

#main-contents .cont-menu01 ul{
	position: relative;
	left: 50%;
	float: left;
	margin-left: 10px;
}

#main-contents .cont-menu01 li{
	position: relative;
	left: -50%;
	float: left;
	margin-right: 10px;
	list-style: none;
}

#main-contents .cont-menu01 li:last-child{ margin-right: 0; }

#main-contents .cont-menu01 li.cur{
	padding: 3px 10px;
	border: 1px solid #ccc;
	background-color: #959595;
	color: #fff;
	font-weight: bold;
}

#main-contents .cont-menu01 li a{
	display: block;
	padding: 3px 10px;
	border: 1px solid #ccc;
}

#main-contents .cont-menu01 li a:link,
#main-contents .cont-menu01 li a:visited{ background-color: transparent; }

#main-contents .cont-menu01 li a:hover,
#main-contents .cont-menu01 li a:active{
	background-color: #959595;
	color: #fff;
}

#main-contents .text-field{ width: 90%; }


/*●ページネーション スタイル02*/
#main-contents .cont-menu02{
	position: relative;
	overflow: hidden;
	width: 100%;
}

#main-contents .cont-menu02 ul{
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}

#main-contents .cont-menu02 li{
	max-width: 50%;
	list-style: none;
}

* html #main-contents .cont-menu02 li{ white-space: nowrap; } /* IE6 */

#main-contents .cont-menu02 li.prev{ float: left; }

#main-contents .cont-menu02 li.next{ float: right; }

#main-contents .cont-menu02 li a{
	display: block;
	padding: 3px 10px;
	border: 1px solid #ccc;
}

#main-contents .cont-menu02 li a:link,
#main-contents .cont-menu02 li a:visited{ background-color: transparent; }

#main-contents .cont-menu02 li a:hover,
#main-contents .cont-menu02 li a:active{
	background-color: #959595;
	color: #fff;
}


/*●サイトマップ*/
#main-contents .sitemap li{ list-style: none; }

#main-contents .sitemap li a{
	display: block;
	padding: 3px 0 3px 20px;
	background: url(./images/icon/icon-arrow_r.png) 0 5px no-repeat;
}

#main-contents .sitemap ul{ margin-top: 1em; }

#main-contents .sitemap li li a{
	padding: 0 0 0 15px;
	border-left: none;
	background: url(./images/icon/icon-menu02.png) 0 6px no-repeat;
}



/*--------------------------------------------------------
サブコンテンツ / サイドバー
--------------------------------------------------------*/

#sub-contents,
#sidebar,
#sidebar-in,
#sub-contents-in{
	margin: 0;
	padding: 0;
}

* html #sub-contents,
* html #sidebar{ overflow: hidden; }

#sub-contents .sub-contents-btn,
#sidebar .sidebar-btn{ display: none; }

.sub-column{ font-size: 1.2em; }

.sub-column li{ list-style: none; }


/*●コンテンツ*/
.sub-column .contents{
	margin-bottom: 1.5em;
	padding: 0.5em;
}

.sub-column hr{ clear: both; }
.sub-column h3{
    position: relative;
    padding: 0.6em 0 0.5em 2.2em;
	border: 1px solid #666; /*サイドバー見出しの枠線*/
	color: #fff; /*見出し文字の色*/
	font-weight: bold;
	font-size: 1.2em;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -o-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -ms-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background-color: #666;
}

.sub-column .contents h3{
	margin: -0.5em;
	margin-bottom: 0.8em;
}
.sub-column h3:before{
    content: "□";
    font-size: 130%;
    position: absolute;
    color: #fff;
    top: 0.1em;
    left: 0.5em;
    height: 12px;
    width: 12px;
}
 
.sub-column h3:after{
    content: "□";
    font-size: 130%;
    position: absolute;
    color: #f5f5f5;
    top: 0.4em;
    left: 0.2em;
    height: 12px;
    width: 12px;
}


/*●プロフィール*/
.sub-column .profile-img img{
	display: block;
	margin: auto;
	margin-bottom: 10px;
}

.sub-column .profile-txt p{ margin-bottom: 1em; }

.col1 .sub-column .profile-img,
.col2 #sub-contents .profile-img,
.col2r #sub-contents .profile-img{
	float: left;
	padding-right: 20px;
}


/*●テーブルタグ*/
.sub-column table caption{
	font-weight: bold;
	text-align: center;
}

.sub-column table{
	width: 90%;
	margin: auto;
	margin-bottom: 1.5em;
	padding: 0;
	border-top: 1px solid #959595;
	border-left: 1px solid #959595;
}

.sub-column table th,
.sub-column table td{
	padding: 0.5em 0.2em;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
}

.sub-column table th{
	background: #f0f0f0;
	font-weight: bold;
	text-align: center;
}


/*●カレンダー*/
.sub-column table#wp-calendar tbody td{ text-align: center; }

.sub-column table#wp-calendar tfoot td{ border-right: none; }

.sub-column table#wp-calendar tfoot td#next{
	border-right: 1px solid #959595;
	text-align: right;
}

.sub-column table#wp-calendar tbody td a{ display: block; }


/*●検索ボックス*/
.sub-column dl.search-box{
	margin: 0 0 16px;
	width: 100%;
}

.sub-column dl.search-box dt{
	display: block;
	float: left;
	width: 63%;
	margin: 0;
	padding: 0;
	padding-right: 5px;
}

.sub-column dl.search-box dt input{
	width: 95%;
	height: 1.4em;
	padding: 2px;
	border: 1px solid #aaa;
	color: #aaa;
	line-height: 1.4em;
}

.sub-column dl.search-box dt input.onfocus{ color: #333; }

.sub-column dl.search-box dd{
	float: left;
	margin: 0;
	padding: 0;
}

.sub-column dl.search-box dd input{
	height: 2em;
	padding: 0.1em 1em;
	line-height: 1.4em;
}


/*●お問い合わせ*/
.sub-column .contact .icon-contact{
	float: left;
	padding: 0 10px 10px 0;
}

.sub-column .contact .text-contact{ overflow: hidden; }


/*●サイドメニュー*/
.sub-column .side-menu{ margin: 0; }

.sub-column .side-menu li{ list-style: none; }

.sub-column .side-menu li a{
	display: block;
	padding: 12px 10px 12px 22px;
	background: url(./images/icon/icon-arrow_r.png) 2px 10px no-repeat;
}

.sub-column .side-menu li a:active,
.sub-column .side-menu li a:hover{
	background-color: #fc6;
	color: #fff;
}

.sub-column .side-menu ul{
	padding: 0;
	margin: 0;
}

.sub-column .side-menu ul ul{ padding: 0; }

.sub-column .side-menu li li{
	width: 95%;
	margin-bottom: 0;
	padding-left: 5%;
	border: 0;
}

.sub-column .side-menu li li a:link,
.sub-column .side-menu li li a:visited{
	padding: 6px 10px 6px 15px;
	border-left: none;
	background: url(./images/icon/icon-menu02.png) 2px 12px no-repeat;
}

.sub-column .side-menu li li a:active,
.sub-column .side-menu li li a:hover{ background: url(./images/icon/icon-menu02.png) 2px 12px no-repeat #fc6; }


/*●ランキング*/
.ranking{
	margin: 0;
	padding: 5px 8px;
}

.ranking li{
	margin-bottom: 10px;
	padding: 0;
	border-bottom: 1px dotted #7070ba;
	background: none;
	font-weight: normal;
}

.ranking li p{ margin-bottom: 10px; }
.ranking li.end{ border-bottom: none; }

.ranking .no01 .item-name,
.ranking .no02 .item-name,
.ranking .no03 .item-name{
	color: #fe8528;
	font-size: 1.167em;
}

.ranking .no01 .item-name, .ranking .no02 .item-name,
.ranking .no03 .item-name, .ranking .no04 .item-name,
.ranking .no05 .item-name, .ranking .no06 .item-name,
.ranking .no07 .item-name, .ranking .no08 .item-name,
.ranking .no09 .item-name, .ranking .no10 .item-name{
	padding: 4px 0 4px 30px;
	font-weight: bold;
}

.no01 .item-name{ background: url(./images/icon/icon-rank01-01.png) left top no-repeat; }
.no02 .item-name{ background: url(./images/icon/icon-rank01-02.png) left top no-repeat; }
.no03 .item-name{ background: url(./images/icon/icon-rank01-03.png) left top no-repeat; }
.no04 .item-name{ background: url(./images/icon/icon-rank01-04.png) left top no-repeat; }
.no05 .item-name{ background: url(./images/icon/icon-rank01-05.png) left top no-repeat; }
.no06 .item-name{ background: url(./images/icon/icon-rank01-06.png) left top no-repeat; }
.no07 .item-name{ background: url(./images/icon/icon-rank01-07.png) left top no-repeat; }
.no08 .item-name{ background: url(./images/icon/icon-rank01-08.png) left top no-repeat; }
.no09 .item-name{ background: url(./images/icon/icon-rank01-09.png) left top no-repeat; }
.no10 .item-name{ background: url(./images/icon/icon-rank01-10.png) left top no-repeat; }

.ranking .no01 .item-name{ background: url(./images/icon/icon-rank01-01.png) left top no-repeat; }
.ranking .no02 .item-name{ background: url(./images/icon/icon-rank01-02.png) left top no-repeat; }
.ranking .no03 .item-name{ background: url(./images/icon/icon-rank01-03.png) left top no-repeat; }
.ranking .no04 .item-name{ background: url(./images/icon/icon-rank01-04.png) left top no-repeat; }
.ranking .no05 .item-name{ background: url(./images/icon/icon-rank01-05.png) left top no-repeat; }
.ranking .no06 .item-name{ background: url(./images/icon/icon-rank01-06.png) left top no-repeat; }
.ranking .no07 .item-name{ background: url(./images/icon/icon-rank01-07.png) left top no-repeat; }
.ranking .no08 .item-name{ background: url(./images/icon/icon-rank01-08.png) left top no-repeat; }
.ranking .no09 .item-name{ background: url(./images/icon/icon-rank01-09.png) left top no-repeat; }
.ranking .no10 .item-name{ background: url(./images/icon/icon-rank01-10.png) left top no-repeat; }

.ranking .item-img{ text-align: center; }


.col1 .ranking .item-img,
.col2 #sub-contents .ranking .item-img,
.col2r #sub-contents .ranking .item-img{
	float: left;
	padding-right: 20px;
}


/*●バナーエリア*/
.sub-column .banner{ margin-bottom: 10px; }

.sub-column .banner li{
	margin-bottom: 18px;
	list-style: none;
	text-align: center;
}

.col1 .sub-column .banner li,
.col2 #sub-contents .banner li,
.col2r #sub-contents .banner li{
	display: inline;
	margin-right: 8px;
}


/*--------------------------------------------------------
フッター
--------------------------------------------------------*/

#footer{
	clear: both;
	padding-top: 30px;
	padding-bottom: 10px;
	background: #555;
	color: #fff;
	font-size: 1.2em;
}

#footer a:link,
#footer a:visited{ color: #fff; }
#footer a:hover,
#footer a:active{ color: #f60; }

#footer h3{
	margin-bottom: 1em;
	padding: 0.8em;
	background-color: #fff;
	color: #333;
	font-weight: bold;
}

#footer-in li{ list-style: none; }

#footer .area01{
	float: left;
	width: 26%;
	padding-bottom: 20px;
}

#footer .area02{
	float: right;
	width: 73%;
	padding-bottom: 20px;
}

/*●アクセス情報*/
#footer .access{ padding: 0 1em; }

#footer .access p{ margin-bottom: 1em; }

p.accessmap{
	padding: 0px 0 3px;
	padding-left: 25px;
	background: url(./images/icon/icon-arrow02.png) left center no-repeat;
}


/*●フッターメニュー*/
#footer .footer-menu{
	overflow: hidden;
	width: 100%;
	padding: 0;
}

#footer .footer-menu ul{
	float: left;
	width: 26%;
	margin-right: 5%;
	padding: 1%;
}

#footer .footer-menu ul ul{
	float: none;
	width: auto;
	margin-top: 1em;
	margin-right: 0;
}

.footer-menu li{
	margin-bottom: 5px;
	padding: 0px 0 3px;
	padding-left: 25px;
	background: url(./images/icon/icon-arrow02.png) left top no-repeat;
}

.footer-menu li li{
	padding-left: 15px;
	padding-top: 0;
	background: url(./images/icon/icon-arrow03.png) left 5px no-repeat;
}


/*●フッターバナー*/
#footer-banner{
	clear: both;
	padding: 20px 0;
	border-top: 1px solid #ccc;
}

#footer-banner li{
	display: inline;
	list-style: none;
}


/*●コピーライト*/
.copyright{
	padding: 15px 0;
	background: #eaeaea;
	font-size: 1.2em;
	text-align: center;
}


/*--------------------------------------------------------
ページトップ
--------------------------------------------------------*/

.page-top{
	position: fixed;
	right: 0;
	bottom: 20px;
	z-index: 99;
	width: 182px;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	text-align: left;
}

* html .page-top{ display: none; }

.page-top a{
	display: block;
	padding: 10px;
	padding-left: 42px;
	border: 1px solid #fff;
	border-right: 0;
	text-decoration: none;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-bottomleft: 8px;
}

.page-top a:link,
.page-top a:visited{
	background: url(./images/common/bg-pagetop.gif) 14px center no-repeat #999;
	color: #fff;
}

.page-top a:hover,
.page-top a:active{
	background: url(./images/common/bg-pagetop.gif) 14px center no-repeat #fc6;
	color: #f60;
}


/*------------------------------------------------------------
ソーシャルボタン
-------------------------------------------------------------*/

#main-contents .sb{
	width:100%;
	margin: 0;
	padding: 0;
}

#main-contents .sb li{
	display: inline-block;
	margin-right: 5px;
	vertical-align: top;
	list-style: none;
}

* html #main-contents .sb li{
	float: left;
	width: 130px;
	list-style: none;
} /* IE6 */

*+html #main-contents .sb li{
	display: inline;
	list-style: none;
} /* IE7 */

#main iframe.twitter-share-button{ width: 100px!important; }


/*------------------------------------------------------------
WordPress用
-------------------------------------------------------------*/

#main-contents  h2.post-title{
	margin-bottom: 2.5em;
}

#main-contents .contents h3{
	margin: 0 -10px 1.5em;
}

.archive-title{
	margin-bottom: 2em;
	padding: 1em;
	background-color: #333;
	color: #fff;
	font-weight: bold;
}

/*●ウィジェットメニュー*/
.sub-column .widget-conts ul{ margin: 0; }

.sub-column .widget-conts ul li{
	padding: 12px 10px 12px 22px;
	background: url(./images/icon/side-icon.gif) 2px 11px no-repeat;
	font-weight: bold;
}

.sub-column .widget-conts ul li li{
	padding: 6px 10px 6px 15px;
	background: url(./images/icon/icon-menu02.png) 2px 12px no-repeat;
}

.sub-column .widget_recent_entries ul li,
.sub-column .widget_recent_entries ul li li,
.sub-column .widget_pages ul li,
.sub-column .widget_pages ul li li,
.sub-column .widget_nav_menu ul li,
.sub-column .widget_nav_menu ul li li,
.sub-column .widget-conts .ranking li,
.sub-column .widget-conts .ranking li li,
.sub-column .widget-conts .banner li,
.sub-column .widget-conts .banner li li{
	padding: 0;
	background: none;
	list-style: none;
}

.sub-column .widget_recent_entries ul li a,
.sub-column .widget_pages ul li a,
.sub-column .widget_nav_menu ul li a{
	display: block;
	padding: 12px 10px 12px 22px;
	background: url(./images/icon/side-icon.gif) 2px 11px no-repeat;
}

.sub-column .widget_recent_entries ul li a:active,
.sub-column .widget_recent_entries ul li a:hover,
.sub-column .widget_pages ul li a:active,
.sub-column .widget_pages ul li a:hover,
.sub-column .widget_nav_menu ul li a:active,
.sub-column .widget_nav_menu ul li a:hover{
	background-color: #fc6;
	color: #fff;
}

.sub-column .widget_recent_entries ul ul,
.sub-column .widget_pages ul ul,
.sub-column .widget_nav_menu ul ul{
	padding: 0;
	margin: 0;
}

.sub-column .widget_recent_entries ul ul ul,
.sub-column .widget_pages ul ul ul,
.sub-column .widget_nav_menu ul ul ul{ padding: 0; }

.sub-column .widget_recent_entries ul li li,
.sub-column .widget_pages ul li li,
.sub-column .widget_nav_menu ul li li{
	width: 95%;
	margin-bottom: 0;
	padding-left: 5%;
	border: 0;
}

.sub-column .widget_recent_entries ul li li a:link,
.sub-column .widget_recent_entries ul li li a:visited,
.sub-column .widget_pages ul li li a:link,
.sub-column .widget_pages ul li li a:visited,
.sub-column .widget_nav_menu ul li li a:link,
.sub-column .widget_nav_menu ul li li a:visited{
	padding: 6px 10px 6px 15px;
	border-left: none;
	background: url(./images/icon/icon-menu02.png) 2px 12px no-repeat;
}

.sub-column .widget_recent_entries ul li li a:active,
.sub-column .widget_recent_entries ul li li a:hover,
.sub-column .widget_pages ul li li a:active,
.sub-column .widget_pages ul li li a:hover,
.sub-column .widget_nav_menu ul li li a:active,
.sub-column .widget_nav_menu ul li li a:hover{ background: url(./images/icon/icon-menu02.png) 2px 12px no-repeat #fc6; }

.sub-column .rss-date,
.sub-column cite{
	display: block;
	margin: 0.5em 0;
}

.sub-column .widget_links li{ overflow: hidden; }

.sub-column .widget_links li img{
	display: block;
}

.sub-column .banner{ margin-bottom: 10px; }

.sub-column .banner li{
	margin-bottom: 18px;
	list-style: none;
	text-align: center;
}

.col1 .sub-column .banner li,
.col2 #sub-contents .banner li,
.col2r #sub-contents .banner li{
	display: inline;
	margin-right: 8px;
}

#main .sub-column ul.banner li a{
	display: inline;
	padding-left: 0;
	background: none;
}

#main .sub-column ul.banner li a:link,
#main .sub-column ul.banner li a:visited{ color: #39f; }
#main .sub-column ul.banner li a:hover,
#main .sub-column ul.banner li a:active{ color: #f60; }


/*●メインコンテンツ内での検索*/
#main-contents dl.search-box{
	margin: 0 0 16px;
	width: 100%;
}

#main-contents dl.search-box dt{
	display: block;
	float: left;
	width: 63%;
	margin: 0;
	padding: 0;
	padding-right: 5px;
}

#main-contents dl.search-box dt input{
	width: 95%;
	height: 1.4em;
	padding: 2px;
	border: 1px solid #aaa;
	color: #aaa;
	line-height: 1.4em;
}

#main-contents dl.search-box dt input.onfocus{ color: #333; }

#main-contents dl.search-box dd{
	float: left;
	margin: 0;
	padding: 0;
}

#main-contents dl.search-box dd input{
	height: 2em;
	padding: 0.1em 1em;
	line-height: 1.4em;
}

#main-contents .post-tag{
	padding: 1em;
	background-color: #f3f3f3;
}

#main-contents .post-tag p{
	margin-bottom: 0;
}

#main-contents .sb{
	text-align: right;
}


/*コメントフォーム*/
#main-contents .trackback-url{ width: 70%; }

#main-contents p textarea{ width: 70%; }

#main-contents #submit{ padding: 0.3em 1em; }

#main-contents #author,
#main-contents #email,
#main-contents #url{
	width: 50%;
	padding: 0.3em;
}

#main-contents .comment-body em{
	font-weight: bold;
}

#main-contents .commentlist,
#main-contents .commentlist ul{
	margin-right: 0!important;
	margin-left: 0!important;
	padding: 0;
}

#main-contents .commentlist{ padding: 10px; }

#main-contents .commentlist li{
	margin-bottom: 2.5em;
	padding-bottom: 1em;
	border-bottom: 1px solid #ccc;
	list-style: none;
}

#main-contents .commentlist li li{
	margin-top: 10px;
	margin-bottom: 0;
	padding-top: 10px;
	padding-bottom: 0;
	border-top: 1px solid #ccc;
	border-bottom: none;
}

#main-contents .comment-author,
#main-contents .comment-meta{ margin-bottom: 1em; }

#main-contents .reply{ clear: both; }

#main-contents .reply a{
	padding-left: 17px;
	background: url(./images/icon/icon-arrow_r.png) 0 4px no-repeat;
}


/*画像の回り込み*/
img.alignleft{
	float: left;
	padding-right: 30px;
}

img.alignright{
	float: right;
	padding-left: 30px;
}

img.aligncenter{
	display: block;
	margin: auto;
}


/*PS Auto Sitemap基本デザイン*/
ul#sitemap_list,
ul#sitemap_list ul{ margin: 0; }

#sitemap_list li{
	list-style: none;
	padding: 3px 10px 3px 20px;
	background: url(./images/icon/icon-arrow_r.png) 2px 8px no-repeat;
}

#sitemap_list li ul{
	margin-top: 0.5em;
	margin-bottom: 0;
}

#sitemap_list li li{
	padding: 6px 10px 6px 15px;
	border-left: none;
	background: url(./images/icon/icon-menu02.png) 2px 12px no-repeat;
}



/*●ページネーション WP用*/
#main-contents .cont-menu-wp{
	position: relative;
	overflow: hidden;
	width: 100%;
	/zoom : 1;
}

#main-contents .cont-menu-wp:after{ content : ''; display : block; clear : both; height:0; }

#main-contents .cont-menu-wp ul{
	overflow: hidden;
	width: 100%;
	margin: 0;
	margin-bottom: 1.5em;
	padding: 0;
}

#main-contents .cont-menu-wp li{
	max-width: 50%;
	list-style: none;
}

* html #main-contents .cont-menu-wp li{ white-space: nowrap; } /* IE6 */

#main-contents .cont-menu-wp li.nav-prev{ float: right; }

#main-contents .cont-menu-wp li.nav-next{ float: left; }

#main-contents .cont-menu-wp li.nav-next a{
	padding: 3px 0 3px 15px;
	background: url(./images/icon/icon-arrow_l.png) left 7px no-repeat;
}

#main-contents .cont-menu-wp li.nav-prev a{
	padding: 3px 15px 3px 0;
	background: url(./images/icon/icon-arrow_r.png) right 7px no-repeat;
}


/*コメントナビ*/
.navigation .alignright{
	float: right;
}
.navigation .alignleft{
	float: left;
}

.navigation:after{ content : ''; display : block; clear : both; height:0; }
.navigation{
	margin-bottom: 30px;
	/zoom : 1;
}


/*------------------------------------------------------------
floatの回り込みを解除
-------------------------------------------------------------*/

#top-in:after,
#header-in:after,
#global-nav-in #menu:after,
#main-in:after,
#main-and-sub:after,
.contents:after,
#main-contents dl.dl-style01:after,
.box-wrap:after,
dl.search-box:after,
#footer-in:after,
#main-contents .sb:after,
.contact:after,
#main-contents .cont-menu01:after,
#main-contents .cont-menu02:after,
.clearfix:after{ content : ''; display : block; clear : both; height:0; }

#top-in,
#header-in,
#global-nav-in #menu,
#main-in,
#main-and-sub,
.contents,
#main-contents dl.dl-style01,
.box-wrap,
dl.search-box,
#footer-in,
#main-contents .sb,
.contact,
#main-contents .cont-menu01,
#main-contents .cont-menu02,
.clearfix{ /zoom : 1; }


/*------------------------------------------------------------
　template created by web-rider
-------------------------------------------------------------*/

label {
    background: #696969;
    color: #fff;
    padding: 10px;
    display: block;
    margin: 0;
    border: 1px solid #fff;
}
 label:hover{
    background: #ff6347;
    }
input[type="checkbox"].on-off{
    display: none;
}

.syosai ul {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
}

.syosai li {
    padding: 5px;
}

input[type="checkbox"].on-off + ul{
    height: 0;
    overflow: hidden;
}

input[type="checkbox"].on-off:checked + ul{
    height: 200px;
}

input[type="checkbox"].on-off + div{
display: none;
    overflow: hidden;
}


input[type="checkbox"].on-off:checked + div{
    padding: 10px;
    display: block;
}



.box-wrap2 .box-l{
	float: left;
	width: 28%;
	margin: 0 0 1.5em;
}

.box-wrap2 .box-r{
	float: right;
	width: 68%;
	margin: 0 0 1.5em;
}


#main-contents table.kyoka{
	table-layout: fixed;
	padding: 0;
	margin: 0px auto 10px;
}

#main-contents table.kyoka th{
	color: #fff;
	width: 25%;
	background-color: #228b22;
	text-align: center;
}
#main-contents table.kyoka th.th1{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}
#main-contents table.kyoka th.th2{
	font-size: 90%;
	width: 55%;
	border-right: 1px solid #959595;
	text-align: center;
	
}

#main-contents table.kyoka td{
	color: #000000;
	width: 25%;
	background-color: #ffffe0;
	text-align: center;
}
#main-contents table.kyoka td.td1{
	font-size: 90%;
	width: 20%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #000;
	
}
#main-contents table.kyoka td.td2{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	
}
#main-contents table.kyoka td.td3{
	font-size: 100%;
	width: 100%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	border-bottom: 3px double #959595;
	padding: 10px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	
}

#main-contents table.kyoka2{
	table-layout: fixed;
	padding: 0;
	margin: 0px auto 10px;
}

#main-contents table.kyoka2 th{
	color: #fff;
	width: 25%;
	background-color: #a0522d;
	text-align: center;
}
#main-contents table.kyoka2 th.th1{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}
#main-contents table.kyoka2 th.th2{
	font-size: 90%;
	width: 55%;
	border-right: 1px solid #959595;
	text-align: center;
	
}

#main-contents table.kyoka2 td{
	color: #000000;
	width: 25%;
	background-color: #ffffe0;
	text-align: center;
	border-bottom: 3px double #959595;
}
#main-contents table.kyoka2 td.td1{
	font-size: 90%;
	width: 20%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #000;
	border-bottom: 3px double #959595;
	
}
#main-contents table.kyoka2 td.td2{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	border-bottom: 3px double #959595;
	
}
#main-contents table.kyoka2 td.td3{
	font-size: 100%;
	width: 100%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	border-bottom: 3px double #959595;
	padding: 10px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	
}

#main-contents table.kyoka2 td.last{
	color: #000000;
	width: 25%;
	background-color: #ffffe0;
	text-align: center;
	border-bottom: 1px solid #959595;
}
#main-contents table.kyoka2 td.td1last{
	font-size: 90%;
	width: 20%;
	color: #000;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
	
}
#main-contents table.kyoka2 td.td2last{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	border-bottom: 1px solid #959595;
	
}


#main-contents table.kyoka3{
	table-layout: fixed;
	padding: 0;
	margin: 0px auto 10px;
}

#main-contents table.kyoka3 th{
	color: #fff;
	width: 25%;
	background-color: #b22222;
	text-align: center;
}
#main-contents table.kyoka3 th.th1{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}
#main-contents table.kyoka3 th.th2{
	font-size: 90%;
	width: 55%;
	border-right: 1px solid #959595;
	text-align: center;
	
}

#main-contents table.kyoka3 td{
	color: #000000;
	width: 25%;
	background-color: #ffffe0;
	text-align: center;
	border-bottom: 3px double #959595;
}
#main-contents table.kyoka3 td.td1{
	font-size: 90%;
	width: 20%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #000;
	
}
#main-contents table.kyoka3 td.td2{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	
}
#main-contents table.kyoka3 td.td3{
	font-size: 100%;
	width: 100%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	border-bottom: 3px double #959595;
	padding: 10px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	
}

#main-contents table.kyoka3 td.last{
	color: #000000;
	width: 25%;
	background-color: #ffffe0;
	text-align: center;
	border-bottom: 1px solid #959595;
}
#main-contents table.kyoka3 td.td1last{
	font-size: 90%;
	width: 20%;
	color: #000;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
	
}
#main-contents table.kyoka3 td.td2last{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	border-bottom: 1px solid #959595;
	
}
#main-contents h3.home{
	margin: 60px 0 30px;
	padding: 0 0 2px 35px;
	border-bottom: 1px solid #909090;
	border-left: none;
	border-right: none;
	border-top: none;
	font-weight: bold;
	font-size: 1.7em;
	background: url(./images/icon/h3.gif) left center no-repeat;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius:0px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#main-contents h3.home:before{
    visibility: hidden;
}
#main-contents dl.dl-style03{
	
    padding: 20px;
    background: #fff;
    border: 1px #ccc solid;
    box-shadow: 0 2px 3px 0 #ddd;
    -moz-box-shadow: 0 2px 3px 0 #ddd;
    -webkit-box-shadow: 0 2px 3px 0 #ddd;
}

#main-contents dl.dl-style03 dt{
	float: left;
	width: 35%;
	margin: 0;
	padding: 0 ;
}

#main-contents dl.dl-style03 dd{
	margin: 1em;
	padding: 0 1em ;
}

#main-contents .col2-wrap{
	margin: 0 0 1em;


}
#main-contents .col2-wrap .col{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	margin-left: 2%;
}
#main-contents .col2-wrap .col2{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: right;
	margin-left: 2%;
}
#main-contents .col2-wrap .col:first-child{
	margin-left: 0;
}
#main-contents .col2-wrap .col{
	width: 45%;
}
#main-contents .col2-wrap .col2{
	width: 53%;
}

#main-contents table.age-navi{
	table-layout: fixed;
	padding: 0;
	margin: 0 0 1em;
    padding: 0.8em;
    background: #fff;
    border: 1px #ccc solid;
    box-shadow: 0 2px 3px 0 #ddd;
    -moz-box-shadow: 0 2px 3px 0 #ddd;
    -webkit-box-shadow: 0 2px 3px 0 #ddd;
}

#main-contents table.age-navi th{
	color: #fff;
	width: 35%;
	background-color: #ffffff;
	text-align: left;
    padding: 0;
	border: none;
}

#main-contents table.age-navi td{
	color: #000000;
	width: 65%;
	background-color: #ffffff;
	text-align: left;
	vertical-align: top;
	border: none;
    padding: 1em 0 0;
}

#main-contents .kyozai-info{
    padding: 20px 20px 0px;
	margin: 0 0 2em;
    background: #fff;
    border: 1px #ccc solid;
    box-shadow: 0 2px 3px 0 #ddd;
    -moz-box-shadow: 0 2px 3px 0 #ddd;
    -webkit-box-shadow: 0 2px 3px 0 #ddd;
    border-radius: 8px;
}


#main-contents table.kyozai-syosai{
	table-layout: fixed;
	padding: 0;
	margin: 0 0 1em;
}

#main-contents table.kyozai-syosai th{
	color: #fff;
	width: 35%;
	text-align: center;
    padding: 0.2em;
    background: #228b22; /* IE6-9 */
}

#main-contents table.kyozai-syosai td{
	color: #000000;
	width: 65%;
	background-color: #ffffff;
	text-align: left;
	vertical-align: top;
    padding: 0.75em 0.1em 0.75em 0.75em;
}



#main-contents table.kyozai-course{
	table-layout: fixed;
	padding: 0;
	margin: 0 0 1em;
}

#main-contents table.kyozai-course th{
	color: #fff;
	width: 35%;
	text-align: center;
    padding: 0.9em 0.2em 0.75em;
    background: #ff8370; /* Old browsers */
background: -moz-linear-gradient(top, #ff8370 1%, #ff1a00 100%, #fc0004 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ff8370), color-stop(100%,#ff1a00), color-stop(100%,#fc0004)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ff8370 1%,#ff1a00 100%,#fc0004 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ff8370 1%,#ff1a00 100%,#fc0004 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ff8370 1%,#ff1a00 100%,#fc0004 100%); /* IE10+ */
background: linear-gradient(to bottom, #ff8370 1%,#ff1a00 100%,#fc0004 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8370', endColorstr='#fc0004',GradientType=0 ); /* IE6-9 */
}
#main-contents table.kyozai-course th.th1{
	color: #000;
	width: 35%;
	text-align: center;
    padding: 0.9em 0.2em 0.75em;
	font-size: 90%;
    background: #fff;
}

#main-contents table.kyozai-course th.th2{
	color: #fff;
	width: 35%;
	text-align: center;
    padding: 0.9em 0.2em 0.75em;
    background: #b4ddb4; /* Old browsers */
background: -moz-linear-gradient(top, #b4ddb4 0%, #83c783 0%, #52b152 20%, #008a00 64%, #008a00 64%, #005700 100%, #002400 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b4ddb4), color-stop(0%,#83c783), color-stop(20%,#52b152), color-stop(64%,#008a00), color-stop(64%,#008a00), color-stop(100%,#005700), color-stop(100%,#002400)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #b4ddb4 0%,#83c783 0%,#52b152 20%,#008a00 64%,#008a00 64%,#005700 100%,#002400 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #b4ddb4 0%,#83c783 0%,#52b152 20%,#008a00 64%,#008a00 64%,#005700 100%,#002400 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #b4ddb4 0%,#83c783 0%,#52b152 20%,#008a00 64%,#008a00 64%,#005700 100%,#002400 100%); /* IE10+ */
background: linear-gradient(to bottom, #b4ddb4 0%,#83c783 0%,#52b152 20%,#008a00 64%,#008a00 64%,#005700 100%,#002400 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4ddb4', endColorstr='#002400',GradientType=0 ); /* IE6-9 */
}

#main-contents table.kyozai-course th.th3{
	color: #fff;
	width: 35%;
	text-align: center;
    padding: 0.9em 0.2em 0.75em;
    background: #6db3f2; /* Old browsers */
background: -moz-linear-gradient(top, #6db3f2 0%, #54a3ee 16%, #3690f0 51%, #1e69de 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6db3f2), color-stop(16%,#54a3ee), color-stop(51%,#3690f0), color-stop(100%,#1e69de)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #6db3f2 0%,#54a3ee 16%,#3690f0 51%,#1e69de 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #6db3f2 0%,#54a3ee 16%,#3690f0 51%,#1e69de 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #6db3f2 0%,#54a3ee 16%,#3690f0 51%,#1e69de 100%); /* IE10+ */
background: linear-gradient(to bottom, #6db3f2 0%,#54a3ee 16%,#3690f0 51%,#1e69de 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6db3f2', endColorstr='#1e69de',GradientType=0 ); /* IE6-9 */
}

#main-contents table.kyozai-course th.th4{
	color: #fff;
	width: 35%;
	text-align: center;
    padding: 0.9em 0.2em 0.75em;
    background: #aebcbf; /* Old browsers */
background: -moz-linear-gradient(top, #aebcbf 0%, #6e7774 27%, #0a0e0a 99%, #0a0809 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#aebcbf), color-stop(27%,#6e7774), color-stop(99%,#0a0e0a), color-stop(100%,#0a0809)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #aebcbf 0%,#6e7774 27%,#0a0e0a 99%,#0a0809 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #aebcbf 0%,#6e7774 27%,#0a0e0a 99%,#0a0809 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #aebcbf 0%,#6e7774 27%,#0a0e0a 99%,#0a0809 100%); /* IE10+ */
background: linear-gradient(to bottom, #aebcbf 0%,#6e7774 27%,#0a0e0a 99%,#0a0809 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aebcbf', endColorstr='#0a0809',GradientType=0 ); /* IE6-9 */
}
#main-contents table.kyozai-course td{
	color: #000000;
	width: 65%;
	background-color: #ffffff;
	text-align: left;
	vertical-align: top;
    padding: 0.9em 0.75em 0.75em 0.75em;
    font-weight: bold;
}

#main-contents table.course{
	table-layout: fixed;
	padding: 0;
	margin: 1px auto 15px;
}

#main-contents table.course th{
	color: #fff;
	width: 23%;
	background-color: #228b22;
	text-align: center;
}
#main-contents table.course th.th1{
	font-size: 90%;
	width: 30%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}

#main-contents table.course td{
	color: #000000;
	width: 23%;
	background-color: #ffffff;
	text-align: center;
}
#main-contents table.course td.td1{
	font-size: 90%;
	width: 30%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	text-align: left;
	color: #000;
	
}


.point1{
	padding: 7px 0 7px 47px!important;
	background: url(./images/icon/point1.gif) left top no-repeat;
	font-size: 130%;
	font-weight:bold;
	color: #ff0000;
}

.point2{
	padding: 7px 0 7px 47px!important;
	background: url(./images/icon/point2.gif) left top no-repeat;
	font-size: 130%;
	font-weight:bold;
	color: #ff0000;
}

.point3{
	padding: 7px 0 7px 47px!important;
	background: url(./images/icon/point3.gif) left top no-repeat;
	font-size: 130%;
	font-weight:bold;
	color: #ff0000;
}

.point4{
	padding: 7px 0 7px 47px!important;
	background: url(./images/icon/point4.gif) left top no-repeat;
	font-size: 130%;
	font-weight:bold;
	color: #ff0000;
}

.point5{
	padding: 7px 0 7px 47px!important;
	background: url(./images/icon/point5.gif) left top no-repeat;
	font-size: 130%;
	font-weight:bold;
	color: #ff0000;
}

#main-contents .item-info{
    border: 1px solid #CCCCCC;
    margin: 10px 1px;
    padding: 15px 5px;	
}

#main-contents .item-info-l{
	float:left;
	width: 46%;
	padding:0 15px 0 0;
	text-align: center;
	vertical-align: middle;
}

#main-contents .item-info-r{
	float: right;
	width: 51%;	
}




#main-contents table.item-cost{
	table-layout: fixed;
	padding: 0;
	margin: 10px auto 15px;
}


#main-contents table.item-cost th{
	color: #fff;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 25%;
	background-color: #228b22;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost th.th1{
	color: #fff;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 33%;
	background-color: #228b22;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost td{
	font-size: 90%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 25%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #ff0000;
	font-weight:bold;
	text-align: center;
	
}
#main-contents table.item-cost td.td1{
	font-size: 90%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 25%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #0000cd;
	font-weight:bold;
	text-align: center;
	
}
#main-contents table.item-cost td.td2{
	font-size: 90%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 25%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #ff0000;
	font-weight:bold;
	text-align: center;
	
}
#main-contents table.item-cost td.td3{
	font-size: 90%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 25%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #0000cd;
	font-weight:bold;
	text-align: center;
	
}

#main-contents .item-name1{ 
font-weight: bold ;
  font-size: 170% ; 
  border-bottom:3px double #dc143c;
  }
  

#main-contents .item-name2{ 
font-weight: bold ;
  font-size: 170% ; 
  border-bottom:3px double #008000;
  }
#main-contents .item-name3{ 
font-weight: bold ;
  font-size: 170% ; 
  border-bottom:3px double #0000cd;
  }
#main-contents .item-name4{ 
font-weight: bold ;
  font-size: 170% ; 
  border-bottom:3px double #696969;
  }
#main-contents .evaluation{
    padding: 20px;
	margin: 0 0 2em;
    background: #fff;
    border: 1px #800000 solid;
    box-shadow: 0 2px 3px 0 #ddd;
    -moz-box-shadow: 0 2px 3px 0 #ddd;
    -webkit-box-shadow: 0 2px 3px 0 #ddd;
    border-radius: 8px;
}

#main-contents table.age-course{
	table-layout: fixed;
	padding: 0;
	margin: 10px auto 15px;
	border: none;
}


#main-contents table.age-course th{
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 45%;
	border: none;
	text-align: center;
	vertical-align: top;
	background-color: #ffffff;
}
#main-contents table.age-course td{
	font-size: 100%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 55%;
	background-color: #ffffff;
	border: none;
	color: #000;
	text-align: left;
	vertical-align: top;
	
}


#main-contents table.kyoka4{
	table-layout: fixed;
	padding: 0;
	margin: 0px auto 10px;
}

#main-contents table.kyoka4 th{
	color: #fff;
	width: 25%;
	background-color: #000;
	text-align: center;
}
#main-contents table.kyoka4 th.th1{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}
#main-contents table.kyoka4 th.th2{
	font-size: 90%;
	width: 55%;
	border-right: 1px solid #959595;
	text-align: center;
	
}

#main-contents table.kyoka4 td{
	color: #000000;
	width: 25%;
	background-color: #ffffff;
	text-align: center;
	border-bottom: 3px double #959595;
}
#main-contents table.kyoka4 td.td1{
	font-size: 90%;
	width: 20%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #dc143c;
	
}
#main-contents table.kyoka4 td.td2{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	
}
#main-contents table.kyoka4 td.td3{
	font-size: 100%;
	width: 100%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	border-bottom: 3px double #959595;
	padding: 10px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	
}

#main-contents table.kyoka4 td.last{
	color: #000000;
	width: 25%;
	background-color: #ffffff;
	text-align: center;
	border-bottom: 1px solid #959595;
}
#main-contents table.kyoka4 td.td1last{
	font-size: 90%;
	width: 20%;
	color: #dc143c;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
	
}
#main-contents table.kyoka4 td.td2last{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	border-bottom: 1px solid #959595;
	
}



#main-contents table.kyoka5{
	table-layout: fixed;
	padding: 0;
	margin: 0px auto 10px;
}

#main-contents table.kyoka5 th{
	color: #fff;
	width: 25%;
	background-color: #000;
	text-align: center;
}
#main-contents table.kyoka5 th.th1{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}
#main-contents table.kyoka5 th.th2{
	font-size: 90%;
	width: 25%;
	border-right: 1px solid #959595;
	text-align: center;
	
}
#main-contents table.kyoka5 th.th3{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	
}

#main-contents table.kyoka5 td{
	color: #000000;
	width: 25%;
	background-color: #ffffff;
	text-align: center;
	border-bottom: 3px double #959595;
}
#main-contents table.kyoka5 td.td1{
	font-size: 90%;
	width: 20%;
	color: #dc143c;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	
}
#main-contents table.kyoka5 td.td2{
	font-size: 90%;
	width: 25%;
	background-color: #ffffff;
	text-align: center;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	color: #000;
	
}
#main-contents table.kyoka5 td.td3{
	font-size: 100%;
	width: 20%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 10px;
	
}

#main-contents table.kyoka5 td.last{
	color: #000000;
	width: 25%;
	background-color: #ffffff;
	text-align: center;
	border-bottom: 1px solid #959595;
}
#main-contents table.kyoka5 td.td1last{
	font-size: 90%;
	width: 20%;
	color: #dc143c;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
	
}
#main-contents table.kyoka5 td.td2last{
	font-size: 90%;
	width: 25%;
	background-color: #ffffff;
	text-align: center;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	color: #000;
	border-bottom: 1px solid #959595;
	
}
#main-contents table.kyoka5 td.td3last{
	font-size: 100%;
	width: 20%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 10px;
	border-bottom: 1px solid #959595;
	
}


#main-contents table.item-cost2{
	table-layout: fixed;
	padding: 0;
	margin: 10px auto 50px;
}


#main-contents table.item-cost2 th{
	color: #fff;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 25%;
	background-color: #dc143c;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost2 th.th1{
	color: #fff;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 33%;
	background-color: #008000;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost2 th.th2{
	color: #fff;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 33%;
	background-color: #0000cd;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost2 th.th3{
	color: #fff;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 33%;
	background-color: #696969;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost2 td{
	font-size: 90%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 25%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #000;
	font-weight:bold;
	text-align: center;
	
}
#main-contents table.item-cost2 td.td1{
	font-size: 110%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 25%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #0000cd;
	font-weight:bold;
	text-align: center;
	
}


#main-contents h3.cost{
	margin: 10px 0 20px;
	padding: 12px 0 2px 40px;
	border-bottom: 1px solid #909090;
	border-left: none;
	border-right: none;
	border-top: 1px solid #909090;
	font-weight: bold;
	font-size: 1.7em;
	background: url(./images/icon/h3-cost.gif) left center no-repeat #f5f5f5;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius:0px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#main-contents h3.cost:before{
    visibility: hidden;
}
#main-contents table.item-cost3{
	table-layout: fixed;
	padding: 0;
	margin: 20px auto 10px;
	width: 85%;
	
}


#main-contents table.item-cost3 th{
	color: #000;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 37.5%;
	background-color: #f0ffff;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost3 th.th4{
	color: #000;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 37.5%;
	background-color: #fff0f5;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost3 th.th5{
	color: #000;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 18.75%;
	background-color: #f0ffff;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost3 th.th6{
	color: #000;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 56.25%;
	background-color: #fff0f5;
	border-right: 1px solid #959595;
	text-align: center;
}
#main-contents table.item-cost3 th.th1{
	color: #006400;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 25%;
	font-size: 150%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	border-bottom: 3px double #959595;
	text-align: center;
	font-weight:bold;
}
#main-contents table.item-cost3 th.th2{
	color: #000;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 18.75%;
	background-color: #ffffff;
	border-right: 1px dotted #959595;
	text-align: center;
	border-bottom: 3px double #959595;
}
#main-contents table.item-cost3 th.th7{
	color: #000;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 18.75%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	text-align: center;
	border-bottom: 3px double #959595;
}
#main-contents table.item-cost3 th.th3{
	color: #000;
	padding: 0.7em 0.2em 0.5em 0.2em;
	width: 18.75%;
	background-color: #f5f5f5;
	border-right: 1px solid #959595;
	text-align: center;
	border-bottom: 3px double #959595;
}
#main-contents table.item-cost3 td{
	font-size: 90%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 25%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #000;
	font-weight:bold;
	text-align: center;
	
}
#main-contents table.item-cost3 td.td1{
	font-size: 90%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 18.75%;
	background-color: #ffffff;
	border-right: 1px dotted #959595;
	color: #0000cd;
	font-weight:bold;
	text-align: center;
	
}
#main-contents table.item-cost3 td.td2{
	font-size: 90%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 18.75%;
	background-color: #f5f5f5;
	border-right: 1px solid #959595;
	color: #cd5c5c;
	font-weight:bold;
	text-align: center;
	
}

#main-contents table.item-cost3 td.td3{
	font-size: 110%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 25%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	border-top: 3px double #959595;
	color: #000;
	font-weight:bold;
	text-align: center;
	
}

#main-contents table.item-cost3 td.td4{
	font-size: 110%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 18.75%;
	background-color: #ffffff;
	border-right: 1px dotted #959595;
	border-top: 3px double #959595;
	color: #0000cd;
	font-weight:bold;
	text-align: center;
	
}
#main-contents table.item-cost3 td.td5{
	font-size: 110%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 18.75%;
	background-color: #f5f5f5;
	border-right: 1px solid #959595;
	border-top: 3px double #959595;
	color: #cd5c5c;
	font-weight:bold;
	text-align: center;
	
}

#main-contents table.item-cost3 td.td6{
	font-size: 110%;
	padding: 1.2em 0.2em 1em 0.2em;
	width: 18.75%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #0000cd;
	font-weight:bold;
	text-align: center;
	
}



.dot{
	position: relative;
	padding-top: 5px;
}

.dot:before{
	position: absolute;
	top: 0;
	left: 50%;
	width: 0.2em;
	height: 0.2em;
	margin-left: -.1em;
	background: #333;
	border-radius: 50%;
	content: "";
}

#footer .areaplus{
 float: left;
 width: 30%;
 padding-bottom: 20px;
}


a {
-webkit-transition: 0.2s ease-in-out;
-moz-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}

a img {
-moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
}


a:hover img{
opacity: 0.7;
filter: alpha(opacity=70);
-ms-filter: "alpha(opacity=70)";
}


#npcatch li{
	overflow:hidden;
	clear:both;
	margin:0px 0px 0px;
}

#npcatch img{
	float:left;
	padding:5px 10px;
}

#npcatch .title{
	width:120px;
	float:right;
	padding:5px 5px 5px 0px;
}

#npcatch li:hover{
}

#npcatch li:hover .title{
}

#npcatch li:hover .title a{
}

#npcatch li:hover .date{
}

#npcatch li{
    overflow: hidden;
    background: none;
    clear: both;
    margin: 0;
    padding: 0 0 1.0em 0;
}

#main-contents table.kyozai-syosai2{
	table-layout: fixed;
	padding: 0;
	margin: 0 0 1em;
}

#main-contents table.kyozai-syosai2 th{
	color: #fff;
	width: 35%;
	text-align: center;
    padding: 0.2em;
    background: #b22222; /* IE6-9 */
}

#main-contents table.kyozai-syosai2 td{
	color: #000000;
	width: 65%;
	background-color: #ffffff;
	text-align: left;
	vertical-align: top;
    padding: 0.75em 0.1em 0.75em 0.75em;
}

#main-contents table.kyozai-syosai3{
	table-layout: fixed;
	padding: 0;
	margin: 0 0 1em;
}

#main-contents table.kyozai-syosai3 th{
	color: #fff;
	width: 35%;
	text-align: center;
    padding: 0.2em;
    background: #a0522d; 
}

#main-contents table.kyozai-syosai3 td{
	color: #000000;
	width: 65%;
	background-color: #ffffff;
	text-align: left;
	vertical-align: top;
    padding: 0.75em 0.1em 0.75em 0.75em;
}

.point_no1{
	padding: 7px 0 7px 47px!important;
	background: url(./images/icon/point1-a.gif) left top no-repeat;
	font-size: 130%;
	font-weight:bold;
	color: #0000cd;
}

.point_no2{
	padding: 7px 0 7px 47px!important;
	background: url(./images/icon/point2-a.gif) left top no-repeat;
	font-size: 130%;
	font-weight:bold;
	color: #0000cd;
}

.point_no3{
	padding: 7px 0 7px 47px!important;
	background: url(./images/icon/point3-a.gif) left top no-repeat;
	font-size: 130%;
	font-weight:bold;
	color: #0000cd;
}

#main-contents table.kyozai-cost{
	table-layout: fixed;
	padding: 0;
	margin: 0 0 4em;
	border-bottom: none;
	border-right: none;
	border-left: none;
	border-top: 1px dotted #959595;
}

#main-contents table.kyozai-cost th{
	color: #000;
	width: 30%;
	text-align: center;
    padding: 0.3em;
    background: #fff; /* IE6-9 */
	border-bottom: 1px dotted #959595;
	border-right: none;
	font-weight:bold;
	font-size: 120%;
    
}

#main-contents table.kyozai-cost td{
	color: #ff0000;
	width: 70%;
	background-color: #fff;
	text-align: left;
	vertical-align: top;
    padding: 0.75em;
	border-bottom: 1px dotted #959595;
	border-right: none;
	vertical-align: middle;
}
#main-contents table.comparison{
	table-layout: fixed;
	margin: 0 auto 20px;
	padding: 0;
	font-size: 90%;
	width: 98%;
	border-spacing: 5px;
	border: none;

}

#main-contents table.comparison th{
	padding: 0.5em 0.2em;
	font-size: 140%;
	width: 35%;
	background-color: #fff;
	border: none;
	border-bottom: 2px double #000;
	color: #000;
	text-align: center;
	vertical-align: middle;
}
#main-contents table.comparison th.th1{
	padding: 0.5em 0.2em;
	font-size: 140%;
	width: 30%;
	background-color: #fff;
	border: none;
	border-bottom: 2px double #000;
	color: #2e8b57;
	text-align: center;
	vertical-align: middle;
}
#main-contents table.comparison th.th2{
	padding: 0.5em 0.2em ;
	font-size: 120%;
	width: 30%;
	background-color: #2e8b57;
	border: none;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px dotted #000;
}
#main-contents table.comparison td{
	padding: 0.3em 0 0.3em;
	color: #000;
	text-align: center;
	border: none;
	border-bottom: 1px dotted #000;
	width: 35%;
	font-size: 110%;
	vertical-align: middle;
}


#main-contents table.comparison2{
	table-layout: fixed;
	margin: 0 auto 20px;
	padding: 0;
	font-size: 90%;
	width: 98%;
	border-spacing: 5px;
	border: none;

}

#main-contents table.comparison2 th{
	padding: 0.5em 0.2em;
	font-size: 140%;
	width: 35%;
	background-color: #fff;
	border: none;
	border-bottom: 2px double #000;
	color: #000;
	text-align: center;
	vertical-align: middle;
}
#main-contents table.comparison2 th.th1{
	padding: 0.5em 0.2em;
	font-size: 140%;
	width: 30%;
	background-color: #fff;
	border: none;
	border-bottom: 2px double #000;
	color: #b22222;
	text-align: center;
	vertical-align: middle;
}
#main-contents table.comparison2 th.th2{
	padding: 0.5em 0.2em ;
	font-size: 120%;
	width: 30%;
	background-color: #b22222;
	border: none;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px dotted #000;
}
#main-contents table.comparison2 td{
	padding: 0.3em 0 0.3em;
	color: #ff0000;
	text-align: center;
	border: none;
	border-bottom: 1px dotted #000;
	width: 35%;
	font-size: 110%;
	vertical-align: middle;
}


#main-contents table.comparison3{
	table-layout: fixed;
	margin: 0 auto 20px;
	padding: 0;
	font-size: 90%;
	width: 98%;
	border-spacing: 5px;
	border: none;

}

#main-contents table.comparison3 th{
	padding: 0.5em 0.2em;
	font-size: 140%;
	width: 35%;
	background-color: #fff;
	border: none;
	border-bottom: 2px double #000;
	color: #000;
	text-align: center;
	vertical-align: middle;
}
#main-contents table.comparison3 th.th1{
	padding: 0.5em 0.2em;
	font-size: 140%;
	width: 30%;
	background-color: #fff;
	border: none;
	border-bottom: 2px double #000;
	color: #4169e1;
	text-align: center;
	vertical-align: middle;
}
#main-contents table.comparison3 th.th2{
	padding: 0.5em 0.2em ;
	font-size: 120%;
	width: 30%;
	background-color: #4169e1;
	border: none;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px dotted #000;
}
#main-contents table.comparison3 td{
	padding: 0.3em 0 0.3em;
	color: #000;
	text-align: center;
	border: none;
	border-bottom: 1px dotted #000;
	width: 35%;
	font-size: 95%;
	vertical-align: middle;
}

.check1{
	margin: 0 0 -5px 0!important;
	padding: 7px 0 7px 45px!important;
	background: url(./images/icon/check1.gif) left top no-repeat;
	font-size: 150%;
	font-weight:bold;
	color: #ff3366;
}


.check2{
	margin: 0 0 -5px 0!important;
	padding: 7px 0 7px 45px!important;
	background: url(./images/icon/check2.gif) left top no-repeat;
	font-size: 150%;
	font-weight:bold;
	color: #006400;
}

.check3{
	margin: 0 0 -5px 0!important;
	padding: 7px 0 7px 45px!important;
	background: url(./images/icon/check3.gif) left top no-repeat;
	font-size: 150%;
	font-weight:bold;
	color: #3366cc;
}


#main-contents table.rank{
	table-layout: auto;
	margin: 20px auto 20px;
	padding: 0;
	width: 98%;
	border-bottom: 1px solid #000;

}

#main-contents table.rank th{
	padding: 0.2em 0.2em 0.5em;
	width: 33%;
	background-color: #fff;
	border-bottom: 3px double #000;
	border-right: 1px solid #000;
	color: #000;
	text-align: center;
	vertical-align: middle;
}
#main-contents table.rank td{
	padding: 0.3em 0 0.5em;
	color: #000;
	text-align: center;
	border: none;
	width: 12%;
	font-size: 100%;
	vertical-align: middle;
}
#main-contents table.rank td.td1{
	padding: 1em 0 0.3em;
	color: #000;
	text-align: center;
	border-right: 1px solid #000;
	border-bottom: 1px dotted #000;
	width: 21%;
	font-size: 100%;
	vertical-align: middle;
}
#main-contents table.rank td.td2{
	padding: 1.2em 0 0.3em;
	color: #000;
	text-align: center;
	border-right: 1px solid #000;
	border-bottom: 1px dotted #000;
	width: 21%;
	font-size: 130%;
	vertical-align: middle;
	font-weight:bold;
}


#main-contents  h3.age{
	margin: 60px 0 30px;
	padding: 12px 18px 5px;
	background:#fff;
	color: #000;
	font-size: 1.75em;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
	
}
#main-contents h3.age:before{
    display: none;
}



#main-contents table.kyoka-age{
	table-layout: fixed;
	padding: 0;
	margin: 10px auto 0;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#main-contents table.kyoka-age th{
	color: #fff;
	width: 25%;
	background-color: #228b22;
	text-align: center;
}
#main-contents table.kyoka-age th.th1{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}
#main-contents table.kyoka-age th.th2{
	font-size: 90%;
	width: 55%;
	border-right: 1px solid #959595;
	text-align: center;
	
}

#main-contents table.kyoka-age td{
	color: #000000;
	width: 25%;
	background-color: #ffffe0;
	text-align: center;
}
#main-contents table.kyoka-age td.td1{
	font-size: 90%;
	width: 20%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #000;
	
}
#main-contents table.kyoka-age td.td2{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	
}


#main-contents table.kyoka-age2{
	table-layout: fixed;
	padding: 0;
	margin: 10px auto 0;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#main-contents table.kyoka-age2 th{
	color: #fff;
	width: 25%;
	background-color: #b22222;
	text-align: center;
}
#main-contents table.kyoka-age2 th.th1{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}
#main-contents table.kyoka-age2 th.th2{
	font-size: 90%;
	width: 55%;
	border-right: 1px solid #959595;
	text-align: center;
	
}

#main-contents table.kyoka-age2 td{
	color: #000000;
	width: 25%;
	background-color: #ffffe0;
	text-align: center;
}
#main-contents table.kyoka-age2 td.td1{
	font-size: 90%;
	width: 20%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #000;
	
}
#main-contents table.kyoka-age2 td.td2{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	
}



#main-contents table.kyoka-age3{
	table-layout: fixed;
	padding: 0;
	margin: 10px auto 0;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#main-contents table.kyoka-age3 th{
	color: #fff;
	width: 25%;
	background-color: #a0522d;
	text-align: center;
}
#main-contents table.kyoka-age3 th.th1{
	font-size: 90%;
	width: 20%;
	border-right: 1px solid #959595;
	text-align: center;
	font-weight:bold;
	
}
#main-contents table.kyoka-age3 th.th2{
	font-size: 90%;
	width: 55%;
	border-right: 1px solid #959595;
	text-align: center;
	
}

#main-contents table.kyoka-age3 td{
	color: #000000;
	width: 25%;
	background-color: #ffffe0;
	text-align: center;
}
#main-contents table.kyoka-age3 td.td1{
	font-size: 90%;
	width: 20%;
	background-color: #ffffff;
	border-right: 1px solid #959595;
	color: #000;
	
}
#main-contents table.kyoka-age3 td.td2{
	font-size: 90%;
	width: 55%;
	background-color: #ffffff;
	text-align: left;
	border-right: 1px solid #959595;
	padding: 15px 10px 0px 10px;
	
}



#main-contents table.age-ichiran{
	table-layout: fixed;
	padding: 0;
	width: 98%;
	margin: 50px auto 20px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	border: none;
}

#main-contents table.age-ichiran th{
	width: 100%;
	background-color: #fff;
	padding-bottom: 30px;
	text-align: center;
	border: none;
}

#main-contents table.age-ichiran td{
	color: #000000;
	width: 33%;
	text-align: center;
	border: none;
}

.dotted_under_line{
  font-weight: bold ;
  font-size: 15px ;
  color: #000;
  border-bottom:1px dotted;
}

.dotted_under_line_red{
  font-weight: bold ;
  font-size: 15px ;
  color: #ff0000;
  border-bottom:1px dotted;
}


.dotted_under_line_blue{
  font-weight: bold ;
  font-size: 15px ;
  color: #0000ff;
  border-bottom:1px dotted;
}


#review-statistics h2:before{
visibility: hidden;
}
#review-statistics h2:after{
visibility: hidden;
}
#review-statistics h3:before{
visibility: hidden;
}

#main-contents  h3.rr_title{
	margin: 1px;
	padding: 1px;
	background:#fff;
	color: #000;
	font-size: 1.1em;
	border: none;
	border-bottom: 2px solid #000;	
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    font-style: oblique; 
    text-align: center;
}
#main-contents h3.rr_title:before{
    display: none;
}




.no001{
	padding: 8px 0 4px 60px;
	font-weight: bold;
	 background: url(./images/icon/no1.gif) left top no-repeat; 
	font-size: 1.85em;
	 }
.no002{
	padding: 1px 0 4px 40px;
	font-weight: bold;
	 background: url(./images/icon/no2.gif) left top no-repeat; 
	font-size: 1.45em;}
.no003{
	padding: 1px 0 4px 40px;
	font-weight: bold;
	 background: url(./images/icon/no3.gif) left top no-repeat; 
	font-size: 1.45em;}
	
	
	
#main-contents table.blog1{
	table-layout: fixed;
	padding: 0;
	margin: -5px auto 15px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#main-contents table.blog1 th{
	color: #000;
	width: 25%;
	background-color: #fffafa;
	text-align: center;
}

#main-contents table.blog1 td{
	color: #000000;
	width: 25%;
	background-color: #ffffff;
	text-align: center;
}



#main-contents table .blog2{
	table-layout: fixed;
	padding: 0;
	margin: 5px auto;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#main-contents table.blog2 thead th{
	color: #000;
	width: 33%;
	font-size: 120%;
	background-color: #00bfff;
	text-align: center;
}
#main-contents table.blog2 tbody th{
	color: #000;
	width: 16.5%;
	background-color: #f0f8ff;
	text-align: center;
	font-weight: normal;
}
#main-contents table.blog2 tbody th.th1{
	color: #000;
	width: 16.5%;
	background-color: #f0f8ff;
	text-align: center;
	font-weight: normal;
}

#main-contents table.blog2 td{
	color: #000000;
	width: 33%;
	background-color: #ffffff;
	text-align: center;
	font-weight: bold;
}


#main-contents table.blog3{
	table-layout: fixed;
	padding: 0;
	width: 100%;
	margin: 0px auto 25px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#main-contents table.blog3 thead th{
	padding: 10px 1px 5px;
	color: #000;
	width: 32%;
	font-size: 100%;
	background-color: #f5f5f5;
	text-align: center;
	font-weight: normal;
}
#main-contents table.blog3 thead th.th1{
	color: #000;
	width: 17%;
	font-size: 100%;
	background-color: #f5f5f5;
	text-align: center;
}
#main-contents table.blog3 thead th.th2{
	color: #000;
	width: 68%;
	font-size: 100%;
	background-color: #f5f5f5;
	text-align: center;
}
#main-contents table.blog3 tbody th{
	padding: 10px 5px 5px;
	color: #000;
	width: 32%;
	background-color: #f0f8ff;
	text-align: left;
	font-weight: bold;
}

#main-contents table.blog3 td{
	padding: 10px 1px 5px;
	color: #000000;
	width: 17%;
	background-color: #ffffff;
	text-align: center;
	font-weight: bold;
}


.blog-info {
	border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px; 
    padding: 15px 15px 5px;
	margin: 1em 0;
} 