@media print{
@charset "utf-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
	list-style: none;
}
/*引用符の表示が出ないようにしています*/
blockquote, q {
	quotes: none;
}
/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
/*テキストに打ち消し線が付くようにしています*/
del {
	text-decoration: line-through;
}
/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
	vertical-align: middle;
}
nav ul {
	list-style: none;
}
ol, ul {
	list-style: none;
}
img {
	　　　font-size: 0;
	　　　line-height: 0;
}
/* ▼MacSafari bold有効用ハック */
* {
	/*\*/font-family: 'Hiragino Kaku Gothic Pro', Verdana, sans-serif;/* */
}
/* ▲MacSafari bold有効用ハック */
html {
	height: 100%;
	margin-bottom: 1px;
	font-family : 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'メイリオ', 'Meyryo', 'Verdana', 'Helvetica', 'Arial', 'ＭＳ Ｐゴシック', 'sans-serif';
	font-size: 85%;
	line-height: 160%;
}
/* ************************************************ 
 * ------------------------------------------------
 *	共通設定
 * ------------------------------------------------
 * ************************************************ */
body {
	text-align: center;
	color: #333;
	margin: 0px;
}
* html body {
	background: url(null) fixed;
}
#home {
	padding: 0px;
	margin: 0px;
}
#page {
	padding: 0px;
}
p {
	margin-top: 0px;
	margin-bottom: 10px;
	padding: 0px;
}
img {
	vertical-align: bottom;
}
a img {
	border: 0;
}
a:link, a:visited, a:active {
	color: #051c41;
	cursor: pointer;
	text-decoration: none;
}
a:hover {
	color: #051c41;
	text-decoration: underline;
}
address {
	font-style: normal;
}
.clear_both {
	height: 0px;
	margin: 0px;
	padding: 0px;
	font-size: 0%;
	line-height: 0%;
	clear: both;
}
/* ボックスをはみ出さないようにfloatをクリア */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* exlude MacIE5 \*/
* html .clearfix {
	height: 1%
}
.clearfix {
	display: block;
}
/* 汎用スタイル ---------------------------------------------------------------*/
/*使いまわせるものは基本を作って複数ものを組み合わせる。
例：fc（フォントカラー）、mt（マージントップ）など。
*/
.pa05 {
	padding: 5px;
}
.pa10 {
	padding: 10px;
}
.ma00 {
	margin: 0px;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mb00 {
	margin-bottom: 0px;
}
.mb05 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mr10 {
	margin-right: 10px;
}
.mr15 {
	margin-right: 15px;
}
.mr20 {
	margin-right: 20px;
}
.ml10 {
	margin-left: 10px;
}
.ml20 {
	margin-left: 20px;
}
.fs_xl {
	font-size: 150%;
}
.fs_l {
	font-size: 120%;
}
.fs_s {
	font-size: 85%;
	line-height: 1.6em;
}
.fs_xs {
	font-size: 70%;
	line-height: 1.1em;
}
.align_ce {
	text-align: center;
}
.align_ri {
	text-align: right;
}
.align_le {
	text-align: left;
}
.float_le {
	float: left;
}
.float_ri {
	float: right;
}
.opacity:hover img {
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}
.ttl_ma00 {
	margin: 0px;
	padding: 0px;
}
.ttl_mb10 {
	margin: 0px 0px 10px 0px;
	padding: 0px;
}
.ttl_mb15 {
	margin: 0px 0px 15px 0px;
	padding: 0px;
}
.fc_black {
	color: #333;
}
.fc_red {
	color: #CC0000;
}
.fc_orange {
	color: #D64A00;
}
.fc_blue {
	color: #5797A0
}
#contents.contentsBox01 .linkfc_green a {
	color: #390;
}
#contents .contentsBox01 .linkfc_green a:hover {
	color: #390;
}
#contents .contentsBox01 .linkfc_blue a {
	color: #39F;
}
#contents .contentsBox01 .linkfc_blue a:hover {
	color: #39F;
}
.linetop01 {
	padding-top: 10px;
	border-top: 1px dashed #CCCCCC;
}
.radius01 {
	border-radius: 5px;        /* CSS3草案 */
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 5px;   /* Firefox用 */	
	position:relative;
	behavior: url(/common/js/PIE.htc);
}
.radius02 {
	border-radius: 10px;        /* CSS3草案 */
	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 10px;   /* Firefox用 */	
	position:relative;
	behavior: url(/common/js/PIE.htc);
}
.shadow01 {
	box-shadow: 5px 5px 5px rgba(0,0,0,0.25);
	-webkit-box-shadow: 5px 5px 5px #ccc;
 　/* Safari,Google Chrome用 */  
	-moz-box-shadow: 5px 5px 5px #ccc;
}
/* ▼サイト基本枠======================================================== */
#container {
	color: #000;
	padding: 0px;
	margin: 10px 0 0 0;
	background-color: #FFF;
}
.word01 {
    word-wrap: break-word;
}
.border01 {
	border: 1px solid #051c41;
	margin-bottom: 15px;
}
.pc_hidden {
	display: none;
}  
footer .infoBox_footer {
	float: left;
	width: 500px;
	text-align: left;
}
/*===============================================
●共通
===============================================*/
#container {

}
#main {
	padding: 15px;
	border-bottom: 1px dotted #CCC;
}
.pdBox01 {
	padding: 10px;
}
.pdBox02 {
	padding: 20px;
}
.pdBox03 {
	padding: 10px;
}
.opacity00:hover img {
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}
/* ▽footer---------------------------------------------- */
#pagetop {
	display: none;
	position: fixed;
	bottom: 180px;
	margin: auto;
	right: 30px;
}
#pagetop a {
	display: block;
	height: 60px;
	width: 60px;
	text-decoration: none;
	position:relative;
}
#pagetop a:hover {
	color: #D7E0E6;
}
/* ▲サイト基本枠======================================================== */
.ttl01 {
	font-size: 150%;
	font-weight: bold;
	color: #051C41;
	text-shadow: 0px -1px 0px #ccc;
	margin-bottom: 10px;
	background: url(../img/bgttl01.gif) no-repeat left bottom #CAD53C;
	padding: 10px 10px 15px 35px;
}
.ttl02 {
	margin-bottom: 10px;
	padding: 5px 5px 3px 15px;
	font-size: 120%;
	font-weight: normal;
	color: #051C41;
	background: url(../img/bgttl02.png) no-repeat 3px 7px;
	border-bottom: 3px double #CAD53C;
}
.ttl03 {
	margin-bottom: 10px;
	padding: 5px 5px 3px 15px;
	font-size: 120%;
	font-weight: normal;
	color: #CAD53C;
	background: url(../img/bgttl03.png) no-repeat 3px 7px #051C41;
	border-bottom: 3px double #CAD53C;
}
h1 {
	padding: 0px;
	margin: 0px;
	float: left;
}
#header {
	font-size: 90%;
}
#header .infoBox address {
	display: inline;
}
#header .infoBox01 {
	font-size: 90%;
	text-align: right;
	padding: 5px;
	float: right;
	width: 600px;
}
#header .infoBox a {
	color: #d7e0e6;
}
#header #logo01 {
	margin: 0px;
	padding: 0px;
	float: left;
	width: 155px;
}
/* ▽keyvisual---------------------------------------------- */
/* △keyvisual---------------------------------------------- */
/* ▽glovalNavi------------------------------------*/


#globalNavi{
	background-color: #121317;
	padding: 2px 0;
	margin-bottom: 10px;
}
#globalNavi .list_gn01 {
	background-image: url(../img/bggn01.png);
	background-repeat: no-repeat;
	background-position: center top;
	margin: 0 auto;
	height: 48px;
	width: 1000px;
}
#globalNavi .list_gn01 li {
	margin: 0;
	padding: 0px;
	float: left;
}
/*-- △headerNavi-------------------------------------*/
.contentsBox01 {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
#contents {
	padding: 30px 0 0 0;
	text-align: left;
	background-color: #FFF;
}
#footer {
	color: #FFF;
	font-size: 90%;
	padding: 20px 0;
	background-color: #000;
	text-align: left;
	margin-top: 50px;
}
#footerNavi .fnBox01 {
	float: left;
	width: 255px;
	text-align: left;
}
#footer .ttl_footer01 {
	font-size: 120%;
	font-weight: normal;
	color: #CBD53E;
	margin-bottom: 10px;
}#footer .ttl_footer01 a {
	color: #73C2EE;
}
#footerNavi .list_fn01 {
	color: #73C2EE;
	margin-left: 20px;
	list-style-type: square;
}
#footerNavi li {
	margin-bottom: 10px;
}
#footer a {
	color: #C8D639;
}
#footer .fbBox01 {
	float: right;
	width: 510px;
	height: 210px;
	background-color: #FFF;
}
#footer .infoBox_footer .picBox {
	float: left;
	width: 103px;
}
#footer .infoBox_footer .txtBox {
	float: left;
	width: 340px;
	margin-left: 15px;
}
#footer .infoBox_footer ul li {
	margin: 0 0 5px 0;
	padding: 0px;
}
#footer .infoBox_footer #copyright {
	font-size: 85%;
	width: 340px;
	margin-top: -1.5em;
	margin-left: 118px;
}
#keyvisual01 .slider {
	position: relative;
}
#home .leftBox01 {
	float: left;
	width: 415px;
}
#home .rightBox01 {
	float: right;
	width: 555px;
}
.leftBox01 #newsBox {
	margin-bottom: 30px;
}
.leftBox01 #newsBox .headerBox01, .leftBox01 #itemBox .headerBox01 {
	background-color: #EF8B2A;
	padding: 5px;
	height: 25px;
}
.leftBox01 #newsBox .headerBox01 img, .leftBox01 #itemBox .headerBox01 img {
	height: 25px;
}
.headerBox01 .clearfix h2 {
	float: left;
}
.headerBox01 .linkBox01 {
	float: right;
	height: 25px;
	width: 55px;
	background-image: url(../img/btn_list01_on.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
.rightBox01 #greetingBox {
	margin-bottom: 30px;
}
.rightBox01 #greetingBox h2 {
	background-color: #CAD53C;
	padding: 5px;
	height: 25px;
}
.rightBox01 #greetingBox h2 img {
	height: 25px;
}
.leftBox01 .list_news01 .txt_title01 {
	display: block;
	background-image: url(../img/link01.gif);
	background-repeat: no-repeat;
	background-position: left 5px;
	padding-left: 10px;
	float: left;
	width: 280px;
}
.leftBox01 .list_news01 .txt_date01 {
	text-align: right;
	display: block;
	font-size: 80%;
	float: right;
	width: 100px;
}
.rightBox02 .list_news01 .txt_title01 {
	display: block;
	background-image: url(../img/link01.gif);
	background-repeat: no-repeat;
	background-position: left 5px;
	padding-left: 10px;
}
.rightBox02 .list_news01 .txt_date01 {
	text-align: right;
	display: block;
	font-size: 80%;
}
.list_news01 li {
	clear: both;
	margin-bottom: 10px;
	border-bottom: 1px dashed #051c41;
}
.leftBox01 #itemBox h3 {
	margin-bottom: 10px;
	border-bottom: 1px dashed #051c41;
}
.leftBox01 #itemBox .picBox01 {
	float: left;
	width: 110px;
}
.leftBox01 #itemBox .txtBox01 {
	float: right;
	width: 270px;
}
.link01 a {
	background-image: url(../img/link01.gif);
	background-repeat: no-repeat;
	background-position: left 5px;
	padding-left: 10px;
}
#bnrBox img {
	width: 270px;
}
#footer .mapBox {
	float: right;
	width: 500px;
}
#footer .txtBox01 {
	float: left;
	width: 450px;
}
#footer #copyright {
	width: 450px;
	margin-top: -1.6em;
}
/* ▽コンテンツページ------------------------------------*/
.page .rightBox02 {
	float: right;
	width: 270px;
}
.page .leftBox02 {
	float: left;
	width: 700px;
}
.rightBox02 #blogBox {
	margin-bottom: 15px;
}
.rightBox02 #blogBox .headerBox01 {
	background-color: #051C41;
	padding: 5px;
	height: 25px;
}
.rightBox02 #blogBox .headerBox01 img {
	height: 25px;
}
.rightBox02 #greetingBox {
	margin-bottom: 30px;
}
.rightBox02 #newsBox {
	margin-bottom: 15px;
}
.rightBox02 #newsBox .headerBox01, .rightBox02 #itemBox .headerBox01 {
	background-color: #EF8B2A;
	padding: 5px;
	height: 25px;
}
.rightBox02 #newsBox .headerBox01 img, .rightBox02 #itemBox .headerBox01 img {
	height: 25px;
}
.rightBox02 #greetingBox {
	margin-bottom: 30px;
}
.rightBox02 #greetingBox h2 {
	background-color: #CAD53C;
	padding: 5px;
	height: 25px;
}
.rightBox02 #greetingBox h2 img {
	height: 25px;
}
.rightBox02 #itemBox .picBox01 {
	float: left;
	width: 110px;
}
.rightBox02 #itemBox .txtBox01 {
	float: right;
	width: 130px;
	font-size: 90%;
	line-height: 1.5em;
}
.rightBox02 #bnrBox .list_bnr01 li {
	margin-bottom:10px;
}
/* ▽新着情報------------------------------------*/
.entry_news01 footer .entrydate01 {
	text-align: right;
	margin-top: 20px;
}
.entry_news01 {
	margin-bottom: 40px;
}
/* ▽サービス案内------------------------------------*/
.entry_service01 {
	margin-bottom: 50px;
}
.entry_service02 {
	margin-bottom: 20px;
}
.entrybody01 .picBox_service01 {
	padding: 2px;
	float: left;
	width: 190px;
	border: 2px double #CCC;
}
.entrybody01 .txtBox_service01 {
	float: right;
	width: 470px;
}
.entrybody01 .picBox_service02 {
	padding: 2px;
	float: left;
	width: 120px;
	border: 2px double #CCC;
}
.entrybody01 .txtBox_service02 {
	float: right;
	width: 540px;
}
/* ▽よくある質問------------------------------------*/
.list_faq01 li {
	list-style-position: inside;
	list-style-type: decimal;
	margin-bottom: 10px;
	border-bottom: 1px dashed #CAD53C;
}
.list_faq01 li a {
	display: block;
}
.list_faq01 li:hover, .list_faq01 li a:hover  {
	color: #CAD53C;
	text-decoration: none;
}
.list_faq02 li {
	list-style-position: inside;
	list-style-type: decimal;
	margin-bottom: 30px;
}
.table_form01 {
	width: 100%;
	border: 1px solid #051C41;
	border-collapse:collapse;
	margin-bottom: 10px;
}
.table_form01 .th01 {
	background-color: #F7F8DA;
	text-align: left;
	padding: 5px;
	border: 1px solid #051C41;
}
.table_form01 .td01 {
	text-align: left;
	padding: 5px;
	border: 1px solid #051C41;
}
.table_about01 {
	width: 100%;
	border-collapse:separate;
	border-spacing: 5px;
}
.table_about01 .th01 {
	text-align: left;
	padding: 5px;
	border-left: 3px solid #051C41;
	background-color: #FAFAFA;
}
.table_about01 .td01 {
	text-align: left;
	padding: 5px;
	background-color: #FAFAFA;
}
.home #bnrBox .list_bnr01 li:nth-child(odd) {
	float: left;
}
.home #bnrBox .list_bnr01 li:nth-child(even) {
	float: right;
}
}
