@charset "UTF-8";


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

#container{ background-color: #fff; }


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

body{ color: #333; }

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

a:link,
a:visited{ color: #1111cc; }
a:hover,
a:active{ color: #f60; }

a.tel-link:link,
a.tel-link:visited{
	color: #F30;
	font-weight: bold;
}
a.tel-link:hover,
a.tel-link:active{ color: #F30; }


/*--------------------------------------------------------
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;
	margin-bottom: 1em;
}

#header-in{ padding: 1em 0; }

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

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


/*●ヘッダーロゴテキスト*/
.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: 30%; /*・1行の幅はwidthの値を変更*/
	color: #333;
}

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


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

#global-nav{
	background: #66cc00;
	background: -moz-linear-gradient(top, #66cc00 0%, #4A9500 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#66cc00),
	color-stop(100%,#4A9500)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #66cc00 0%,#4A9500 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #66cc00 0%,#4A9500 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #66cc00 0%,#4A9500 100%); /* IE10+ */
	background: linear-gradient(to bottom, #66cc00 0%,#4A9500 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66cc00', endColorstr='#4A9500',GradientType=0 ); /* IE6-9 */
} /*メニュー下のラインの設定*/

#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.1em;
	text-align: center;
}

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

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

#global-nav #menu li .gnav-li-p{
	font-size: 0.9em;
	font-weight: normal;
}

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

/*メニューのデザイン*/
#global-nav #menu li a{
	display: block;
	padding: 0.8em 1.3em;
	color: #fff; /* メニューのフォントの色  */
	text-decoration: none;
	background: #66cc00;
	background: -moz-linear-gradient(top, #66cc00 0%, #4A9500 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#66cc00),
	color-stop(100%,#4A9500)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #66cc00 0%,#4A9500 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #66cc00 0%,#4A9500 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #66cc00 0%,#4A9500 100%); /* IE10+ */
	background: linear-gradient(to bottom, #66cc00 0%,#4A9500 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66cc00', endColorstr='#4A9500',GradientType=0 ); /* IE6-9 */
}

#global-nav #menu li a:link,
#global-nav #menu li a:visited{ background-color: #D5ECBD; } /*すでに訪れたリンクの背景色*/
#global-nav #menu li a:hover,
#global-nav #menu li a:active{ 
    background-color: #8aff00;
	background: #4A9500;
	background: -moz-linear-gradient(top, #4A9500 0%, #66cc00 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4A9500), color-stop(100%,#66cc00)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #4A9500 0%,#66cc00 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #4A9500 0%,#66cc00 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #4A9500 0%,#66cc00 100%); /* IE10+ */
	background: linear-gradient(to bottom, #4A9500 0%,#66cc00 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4A9500', endColorstr='#66cc00',GradientType=0 ); /* IE6-9 */
} /*マウスカーソルを乗せた時の背景色*/

#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;
	left: 1.5em;
	color: #060;
	font-size: 5em;
	top: 1.2em;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


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

#breadcrumbs ol{
	margin-right: 15px!important;;
	margin-left: 15px!important;;
}

#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;
}

#breadcrumbs .last a{
	padding-right: 0;
	background: none;
}


/*●トップ更新情報*/
#news{
	clear: both;
	margin-bottom: 1.5em;
	font-size: 1.5em;
	margin-left: 15px;
}

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

#news a{
	padding-right: 15px;
}


/*●トップナビ*/

.box-wrap .box-3l{
	float: left;
	width: 30%;
	margin: 0 5% 1.5em 0;
	border: 1px none #CCC;
}

.box-wrap .box-3m{
	float: left;
	width: 30%;
	margin: 0 5% 1.5em 0;
	border: 1px none #CCC;
}

.box-wrap .box-3r{
	float: right;
	width: 30%;
	margin: 0 0 1.5em 0;
	border: 1px none #CCC;
}

.box-wrap .box-3l p{
	font-size: 1.8em;
	line-height: 150%;
	padding: 1em 0 2em 1em;
	color: #000;
}

.box-wrap .box-3m p{
	font-size: 1.8em;
	line-height: 150%;
	padding: 1em 0 2em 1em;
	color: #000;
}

.box-wrap .box-3r p{
	font-size: 1.8em;
	line-height: 150%;
	padding: 1em 0 2em 1em;
	color: #000;
}

#top-navi{
	float:left;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 5em;
	margin-left: 10px;
}

#top-navi .top-box-l{
	float: left;
	width: 49%;
	border: 1px solid #CCC; /*boxの枠線の指示*/
	background-color: #F4FFF4;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
	padding-bottom: 15px;
	padding-top: 10px;
}

#top-navi .top-box-r{
	float: right;
	width: 49%;
	border: 1px solid #CCC;
	background-color: #F4FFF4;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
	padding-bottom: 15px;
	padding-top: 10px;
}

#top-navi .title{
	background-color: #009;
	margin-right: 20px;
	margin-left: 20px;
	padding-top: 1px;
	padding-bottom: 1px;
	margin-bottom: 20px;
}

#top-navi h2{
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 2.2em;
	margin-left: 20px;
	margin-top: 10px;
	margin-right: 20px;
	padding-bottom: 0px;
	padding-left: 5px;
	color: #FFF;
}

#top-navi p{
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-left: 25px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	font-size: 1.8em;
	line-height: 2em;
	float: none;
}


/*●トップご予約*/
.top-contents-tel{
	clear: both;
	margin-bottom: 2em;
	font-size: 2.5em;
	text-align: center;
	margin-top: 1em;
	font-weight: bold;
	background-color: #FFF;
	color: #003300;
	border: 5px solid #F60;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 1em;
	padding-left: 1em;
}

.top-contents-tel h3{
	font-size: 1em;
	font-weight: bold;
	color: #060;
}

.top-contents-tel p{
	margin: 0;
	padding: 0;
	font-size: 0.8em;
	color: #060;
	text-align: center;
	font-weight: normal;
}

.top-contents-tel .top-contents-tel-link{
	padding: 0;
	font-size: 1.5em;
	font-weight: bold;
	color: #F30;
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 0;
	margin-left: 15px;
}
.top-contents-tel p img{
	padding: 0;
	vertical-align: -10%;
	margin-right: 1px;
}

#news a{
	padding-right: 15px;
}


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

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

#main-contents .contents{
	margin-bottom: 3.5em;
	background-color: #FFF;
	margin-top: 0em;
	padding-top: 1.5em;
	padding-right: 10px;
	padding-bottom: 1em;
	padding-left: 10px;
}

#main-contents .text-contact{
	padding: 1em;
	border: 5px solid #F60;
	margin-top: 2em;
	margin-right: 0em;
	margin-bottom: 2em;
	margin-left: 0em;
}

#main-contents .text-contact p{
	margin: 0;
	padding: 0;
	font-size: 1.2em;
	color: #060;
	text-align: center;
}
#main-contents .text-contact p b.contact01{
	padding: 0;
	font-size: 1.6em;
	color: #F30;
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 0;
	margin-left: 15px;
}
#main-contents .text-contact p b.contact01 img.tel-icon{
	padding: 0;
	vertical-align: 1%;
	margin-right: 5px;
}
#main-contents .text-contact p b.contact02{
	margin: 0;
	padding: 0;
	font-size: 1.2em;
	color: #060;
}


/*●H2タグ*/
#main-contents h2{
	font-size: 1.5em;
	font-weight: bold;
	background-color: #4A9500;
	background-position: left top;
	color: #FFFFFF;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 0.5em;
	padding-left: 2em;
	border-radius: 30px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	text-decoration: none;
}


#main-contents h2.top-h2{
	margin: 0 0 1em;
	padding: 0.1em 0.5em 0;
	background: none;
	background-color: #FFF;
	font-size: 1.8em;
	font-weight: bold;
	color: #333;
	font-family: "HGP明朝E";
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #090;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}

#main-contents h2.top-h2:first-letter{
	font-size: 1.3em;
	font-weight: bold;
	margin-right: 3px;
	color: #F00;
	font-family: "HGP明朝E";
}

#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{
	font-size: 1.4em;
	font-weight: bold;
	color: #030;
	border-bottom-width: 3px;
	border-left-width: 8px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #4A9500;
	border-left-color: #4A9500;
	margin-top: 2em;
	margin-right: 5px;
	margin-bottom: 1.5em;
	margin-left: 5px;
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0em;
	padding-left: 0.5em;
}

#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;
}

#main-contents h3.col1{
	margin: 0 0 0.3em;
	padding: 0 1.0em;
	border: none;
	font-size: 1.3em;
	font-weight: bold;
	color: #063;
}
#main-contents h3.col1:first-letter{
	margin-right: 3px;
	font-size: 1.5em;
	font-style: oblique;
	font-weight: bold;
	color: #C03;
}


/*●H4タグ*/
#main-contents h4{
	font-size: 1.3em;
	font-weight: bold;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #4A9500;
	margin-top: 1em;
	margin-right: 10px;
	margin-bottom: 2em;
	margin-left: 10px;
	padding-left: 0.5em;
	font-size: 1.2em;
	color: #030;
}

#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{
	color: #000033;
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 0;
	margin-right: 1em;
	margin-bottom: 1.5em;
	margin-left: 1em;
}

#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: 2em;
	margin-right: 1em;
	margin-left: 1em;
	font-size: 1.2em;
	line-height: 2em;
}

#main-contents p.intro{
	border: solid 1px #060;
	background-color: #F0FFF0;
	line-height: 2em;
	padding-top: 1em;
	padding-bottom: 1em;
	padding-right: 1.2em;
	padding-left: 1.2em;
	margin-right: 0px;
	margin-left: 0px;
}


/*●リストタグ*/
#main-contents ul{
	padding: 0;
	margin-top: 0;
	margin-right: 2.5em;
	margin-bottom: 2em;
	margin-left: 3em;
}

#main-contents ol{
	padding: 0;
	margin-top: 0;
	margin-right: 2.5em;
	margin-bottom: 2em;
	margin-left: 4em;
}

#main-contents li{
	margin-bottom: 0.5em;
	line-height: 2em;
	font-size: 1.2em;
}

#main-contents ul.list-block,
#main-contents ol.list-block{
	margin: 0 1.0em 1.5em 1.0em;
	padding: 2em 1.5em 1em 2.5em;
	border: 1px dashed #060;
}

#main-contents li.list-block{
	margin: 0 0.5em 1em 0.5em;
	line-height: 1.5em;
}


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

#main-contents blockquote{
	overflow: auto;
	border: 1px dashed #030;
	color: #444;
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: 1em;
	margin-bottom: 1.5em;
	margin-left: 1em;
	padding-top: 2em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
}

#main-contents blockquote h4{
	border: none;
	margin-top: 0;
	margiright: 0;
	margin-bottom: 0.5em;
	padding-top: 0;
}

#main-contents blockquote .block-title{
	border: none;
	margin-top: 0;
	margiright: 0;
	margin-bottom: 0.5em;
	padding-top: 0;
	font-weight: bold;
	color: #000;
}


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

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

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

#main-contents th{
	background-color: #D9D9FF;
	font-weight: bold;
	text-align: left;
	border: 1px solid #006;
}


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


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

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


/*●最新情報（定義タグ）*/
#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;
}

/*●最新情報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{
	clear: none;
	width: auto;
}

#main-contents dl.news dd{
	clear: both;
	padding: 0 1em 0.8em 1em;
}*/

#main-contents dl.news dd.cat,
#main-contents dl.news02 dd.cat{ font-weight: bold; }
#main-contents dl.news dd.cat.color01,
#main-contents dl.news02 dd.cat .color01{ background: #4784bf; }
#main-contents dl.news dd.cat.color02,
#main-contents dl.news02 dd.cat .color02{ background: #dd6673; }
#main-contents dl.news dd.cat.color03,
#main-contents dl.news02 dd.cat .color03{ background: #39a869; }
#main-contents dl.news dd.cat.color04,
#main-contents dl.news02 dd.cat .color04{ background: #e8ac51; }
#main-contents dl.news dd.cat.color05,
#main-contents dl.news02 dd.cat .color05{ background: #a55b9a; }
#main-contents dl.news dd.cat.color06,
#main-contents dl.news02 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;
}


/*●定義タグ トップ更新情報*/
#main-contents  dl.top-renewal{
	margin-bottom: 1.5em;
	background-color: #FFF;
	margin-top: 0px;
	padding-top: 0.5em;
	padding-right: 20px;
	padding-bottom: 0.5em;
	padding-left: 20px;
	font-size: 1.2em;
}

#main-contents dl.top-renewal dt{
	margin: 0;
	font-weight: bold;
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0em;
	padding-left: 0em;
}

#main-contents dl.top-renewal dd{
	margin: 0;
	background-color: #fff;
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 1em;
	padding-left: 0em;
}


/*●定義タグ スタイル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 7px no-repeat;
}
.link-back a{
	padding: 3px 0 3px 15px;
	background: url(../images/icon/icon-arrow_l.png) 0 7px no-repeat;
}

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


/*●段組み*/
.box-wrap .box-large{
	float: left;
	width: 100%;
	margin: 0 0 1.5em;
	border: 1px solid #060; /*boxの枠線の指示*/
	background-color: #F4FFF4;
}

.box-wrap .box-l{
	float: left;
	width: 48%;
	margin: 0 0 1.5em;
	border: 1px solid #006; /*boxの枠線の指示*/
	background-color: #F4FFF4;
}

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


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

#main-contents .box-wrap .title h3{
	margin-top: 0.5em;
	margin-bottom: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-width: 5px;
	padding-bottom: 0px;
	margin-right: 15px;
	margin-left: 15px;
	font-size: 1.3em;
	color: #030;
}

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

#main-contents .contents-box{
	margin-bottom: 1em;
	background-color: #F4FFF4;
	margin-top: 0em;
	padding-top: 1.5em;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}


/*●ランキング（リストタグ）*/
#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; }


#main-contents .shoshiki{
	border: 1px solid #006;
	padding-top: 1.5em;
	padding-right: 1em;
	padding-left: 1em;
	margin-bottom: 3em;
	margin-right: 1em;
	margin-left: 1em;
}


/*●ページネーション スタイル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 .pagenavi{
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 0em;
	margin-bottom: 3.5em;
	margin-top: 0px;
}


/*●下向き矢印*/
#main-contents .arrow{
	margin-bottom: 3em;
	text-align: center;
	margin-top: 0px;
	padding-top: 0px;
}

/*●サイトマップページ*/
#main-contents .sitemap-contents{
	background-color: #fff;
}

#main-contents .sitemap-contents h3{
	font-size: 1.2em;
	font-weight: bold;
	color: #003300;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #4A9500;
	margin-top: 0;
	margin-right: 1em;
	margin-bottom: 1.5em;
	margin-left: 1em;
	padding-top: 0em;
	padding-right: 0.5em;
	padding-bottom: 0em;
	padding-left: 0.5em;
	border-left-style: none;
}

#main-contents .sitemap-contents h4{
	font-weight: bold;
	color: #003300;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 1em;
	margin-top: 0;
	margin-right: 0em;
	margin-bottom: 0em;
	margin-left: 0em;
	padding-top: 0em;
	padding-right: 1em;
	padding-bottom: 0.8em;
	padding-left: 1.5em;
}

#main-contents .sitemap-contents .sitemap-box{
	width: 31%;
	float: left;
	margin-right: 1%;
	margin-left: 1%;
}


#main-contents .sitemap-contents .sitemap-box .box-s{
	background-color: #F4FFF4;
	padding-top: 1em;
	margin-bottom: 2em;
	border: 1px solid #003300;
}


#main-contents .sitemap-contents .sitemap-box ul{
	padding-right: 0;
	padding-left: 0.9em;
	font-size: 0.9em;
}


/*●サイトマップデフォルト*/
#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 6px 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;
}


/*●サブインデックスト*/
#main-contents .subindex-contents{
	background-color: #D5ECBD;
}


#main-contents .subindex-contents h3{
	font-size: 1.2em;
	font-weight: bold;
	color: #4A9500;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #4A9500;
	margin-top: 0;
	margin-right: 1em;
	margin-bottom: 1.5em;
	margin-left: 1em;
	padding-top: 0em;
	padding-right: 0.5em;
	padding-bottom: 0em;
	padding-left: 0.5em;
	border-left-style: none;
}


#main-contents .subindex-contents .subindex-box-large{
	width: 98%;
	float: left;
	margin-right: 1%;
	margin-left: 1%;
	background-color: #D5ECBD;
}

#main-contents .subindex-contents .subindex-box-large .subindex-box-large-small{
	background-color: #FFF;
	padding-top: 1em;
	margin-bottom: 2em;
	border: 1px solid #4A9500;
	padding-bottom: 1em;
}


#main-contents .subindex-contents .subindex-box-large ul{
	padding-right: 1.1em;
	padding-left: 1.1em;
}


#main-contents .subindex-contents .subindex-box{
	width: 48%;
	float: left;
	margin-right: 1%;
	margin-left: 1%;
	background-color: #D5ECBD;
}

#main-contents .subindex-contents .subindex-box .subindex-box-small{
	background-color: #FFF;
	padding-top: 1em;
	margin-bottom: 2em;
	border: 1px solid #4A9500;
	padding-bottom: 1em;
}


#main-contents .subindex-contents .subindex-box .subindex-box-small ul{
	padding-right: 1.1em;
	padding-left: 1.1em;
}


/*●広告ページ*/

#main-contents .contents .sell-h3{
	font-size: 1.5em;
	font-weight: bold;
	color: #000033;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 1.5em;
	margin-left: 10px;
	padding-top: 0em;
	padding-right: 1em;
	padding-bottom: 0em;
	padding-left: 1em;
	border: 5px solid #006;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}

#main-contents .contents .sell-p{
	margin-bottom: 2em;
	margin-right: 1.2em;
	margin-left: 1.2em;
	font-size: 1.5em;
	line-height: 2.2em;
}

#main-contents .contents .sell-ul{
	border: 1px dashed #006;
	background-color: #FFFFCC;
	list-style-position: inside;
	margin-top: 0;
	margin-right: 1.2em;
	margin-left: 1.2em;
	font-size: 1.2em;
	padding-top: 2em;
	padding-right: 2em;
	padding-bottom: 1em;
	padding-left: 2em;
	list-style-image: url(../images/icon/arrow-sidelink.gif);
	font-weight: bold;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}

#main-contents .contents .sell-ul li{
	line-height: 2em;
}

#main-contents .contents .sell-shiryou-ul{
	border: 1px dashed #006;
	list-style-position: inside;
	margin-top: 0;
	margin-right: 1.2em;
	margin-left: 1.2em;
	font-size: 1.2em;
	padding-top: 2em;
	padding-right: 2em;
	padding-bottom: 1em;
	padding-left: 2em;
}

#main-contents .contents .sell-shiryou-ul li{
	line-height: 2em;
}

/*●セルページご予約*/
#main-contents .sell-contents-tel{
	margin-bottom: 5em;
	font-size: 1em;
	text-align: center;
	margin-top: 0em;
	font-weight: bold;
	background-color: #FFF;
	color: #003300;
	border: 5px solid #F60;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 1em;
	padding-left: 1em;
}

#main-contents .sell-contents-tel h3{
	font-weight: bold;
	color: #060;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 2em;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
}

#main-contents .sell-contents-tel p{
	margin: 0;
	padding: 0;
	font-size: 1.8em;
	color: #060;
	text-align: center;
	font-weight: normal;
}

#main-contents .top-contents-tel .top-contents-tel-link{
	padding: 0;
	font-size: 1.5em;
	font-weight: bold;
	color: #F30;
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 0;
	margin-left: 15px;
}

#main-contents .top-contents-tel p img{
	padding: 0;
	vertical-align: -10%;
	margin-right: 1px;
}


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

#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;
	background-color: #FFF;
	border: 1px solid #000066;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}

.sub-column hr{ clear: both; }

.sub-column h3{
	padding: 0.7em;
	color: #006600; /*見出し文字の色*/
	font-weight: bold;
}

.sub-column .contents h3{
	margin-bottom: 0.5em;
	font-size: 1.5em;
	color: #006600;
	font-weight: bold;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #009900;
	margin-top: 0em;
	margin-right: 0.5em;
	margin-left: 0.5em;
	padding-bottom: 0px;
}

.sub-column .contents h3:first-letter{
	font-size: 1.2em;
	color: #000099;
	margin-right:2px;
}



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

.sub-column .profile-txt p{
	margin-bottom: 1em;
	margin-right: 1.5em;
	margin-left: 1.5em;
	font-size: 1.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.calendar tbody td{ text-align: center; }

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

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

.sub-column table.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-top: 0;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
}

.sub-column .contact .text-contact{
	overflow: hidden;
	font-size: 2em;
	font-weight: bold;
	color: #F00;
	margin-top: 0px;
	padding-top: 0px;
	vertical-align: top;
}


/*●サイドメニュー*/
.sub-column .side-menu{
	margin-top: 0;
	margin-right: 1em;
	margin-bottom: 0;
	margin-left: 1em;
	padding-top: 0px;
}

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

.sub-column .side-menu li a{
	display: block;
	padding: 12px 10px 12px 20px;
	background: url(../images/icon/arrow-sidelink.gif) 2px 15px 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; }


/*●メールマガジン*/
.sub-column .mailmagazine{
	margin-top: 2em;
	padding-top: 0px;
	padding-right: 10%;
	padding-left: 10%;
}


/*●ランキング*/
.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: 15px;
	margin-top: 1.5em;
}

.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: #fff;
	background: -moz-linear-gradient(top, #fff 0%, #4A9500 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#4A9500)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fff 0%,#4A9500 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fff 0%,#4A9500 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fff 0%,#4A9500 100%); /* IE10+ */
	background: linear-gradient(to bottom, #fff 0%,#4A9500 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#4A9500',GradientType=0 ); /* IE6-9 */
	color: #000;
	font-size: 1.2em;
}

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

#footer h3{
	margin-bottom: 1em;
	background-color: #4A9500;
	color: #FFF;
	font-weight: bold;
	padding-top: 0.8em;
	padding-right: 2em;
	padding-bottom: 0.8em;
	padding-left: 2em;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	font-size: 1.5em;
}

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

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

#footer .area02{
	float: right;
	width: 60%;
	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: 42%;
	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: #4A9500;
	color: #FFF;
	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 #4A9500;
	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{
	padding: 0;
	border: 5px solid #090;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 3.5em;
	margin-left: 0;
}

#main-contents .sb h3{
	font-size: 1.4em;
	font-weight: bold;
	color: #006;
	margin-top: 20px;
	margin-right: 10px;
	margin-bottom: 1.5em;
	margin-left: 10px;
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0em;
	padding-left: 0.5em;
	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;
}

#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; }


/*コメントナビ*/
.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
	background-color: #FFF
}


/*------------------------------------------------------------
　template created by web-rider
-------------------------------------------------------------*/
#main-contents ul ul {
	list-style-type: disc;
	padding-left: 0px;
	margin-left: 1em;
	font-size: 80%;
	margin-top: 0.5em;
	margin-bottom: 0px;
	padding-bottom: 0px;
	margin-right: 0px;
}
