@charset "UTF-8";

/*初期化==================================================================================*/
html{
	height: 100%;
	overflow-y:scroll;/*--スクロールバーを常に表示させる--*/
}
*{
	margin:0px;
	padding:0px;
}
img{
	border:0px;
}
p,h1,h2,h3,h4,h5,div{/*大画面スマホ*/
	background-image: url();
}
ul, li{
	list-style-type: none;
}
table{
	border-collapse: collapse;
}
table th,
table td {
	vertical-align: top;
	text-align: left;
}
table th {
	white-space: nowrap;
}

a{
	color: #00aadd;
	text-decoration: none;
}
a:hover{
	color: #00aadd;
	text-decoration: underline;
}

/*汎用==================================================================================*/
/*ボタン*/
div#prev_page_btn a,
div#next_page_btn a,
a.btn1{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	border: solid 1px #cccccc;
	-webkit-border-radius: 4px; /* Chrome,Safari */
	-moz-border-radius: 4px;    /* Firefox */
	border-radius: 4px;         /* CSS3 */
	padding: 5px 10px;

	background: #eeeeee; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #dddddd 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#dddddd)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#dddddd 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#dddddd 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#dddddd 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#dddddd 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dddddd',GradientType=0 ); /* IE6-9 */

	font-size: 12px;
	line-height: 20px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	color: #333333;
	white-space: nowrap;
}
div#prev_page_btn a:hover,
div#next_page_btn a:hover,
a.btn1:hover{
	border-color: #bbbbbb;
	background: #dddddd; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #cccccc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#cccccc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#cccccc 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#cccccc 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
}
.cx_smartphoneview div#prev_page_btn a:hover,
.cx_smartphoneview div#next_page_btn a:hover,
.cx_smartphoneview a.btn1:hover{
	border-color: #cccccc;
	background: #eeeeee; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #dddddd 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#dddddd)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#dddddd 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#dddddd 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#dddddd 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#dddddd 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dddddd',GradientType=0 ); /* IE6-9 */
}
div#prev_page_btn a,
div#next_page_btn a{
	display: block;
}

/*ボタン文字追加*/
a.go:after{
	content: "\00a0\226B";
	font-weight: bold;
}
a.back:before{
	content: "\226A\00a0";
	font-weight: bold;
}
a.up:after{
	content: "\00a0\2191";
	font-weight: bold;
}
a.down:after{
	content: "\00a0\2193";
	font-weight: bold;
}
a.open:after{
	content: "\00a0\25BC";
	font-weight: bold;
}
a.close:after{
	content: "\00a0\25B2";
	font-weight: bold;
}
a.batsu:before{
	content: "\00D7\00a0";
	font-weight: bold;
}
a.plus:before{
	content: "\002B\00a0";
	font-weight: bold;
}


/*フロート*/
.f_r{
	float: right;
	margin: 0 0 10px 10px;
}
.f_l{
	float: left;
	margin: 0 10px 10px 0;
}

/*フロートクリア*/
div.clear_float{
	visibility: hidden;
	height: 0;
	font-size: 0;
	line-height: 0;
	clear: both;
}
div.clear_left{
	visibility: hidden;
	height: 0;
	font-size: 0;
	line-height: 0;
	clear: left;
}
div.clear_right{
	visibility: hidden;
	height: 0;
	font-size: 0;
	line-height: 0;
	clear: right;
}

/*テキストをリストで並べる*/
ul.float_txt,
ul.float_txt2,
ul.float_txt3{
	zoom: 1;
}
ul.float_txt:after,
ul.float_txt2:after,
ul.float_txt3:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:left;
}
ul.float_txt li,
ul.float_txt2 li,
ul.float_txt3 li{
	float: left;
	vertical-align: bottom;
}

ul.float_txt2 li:after{
	content: "／";
	padding: 0 0.2em;
	color: #999999;
}
ul.float_txt3 li:after{
	content: "・";
	padding: 0 0.1em;
	color: #999999;
}

ul.float_txt2 li:last-child:after,
ul.float_txt3 li:last-child:after{
	content: "" !important;
	padding: 0 !important;
}

/*※マーク*/
.kome{
	padding-left: 1.2em;
	position: relative;
	/*line-height: 1.5em;*/
}
.kome:before{
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}

/*■マーク*/
.shikaku{
	padding-left: 1.2em;
	position: relative;
	/*line-height: 1.5em;*/
}
.shikaku:before{
	content: "\25AA";
	position: absolute;
	left: 0;
	top: 0;
}

/*●マーク*/
.maru{
	padding-left: 1.2em;
	position: relative;
	/*line-height: 1.5em;*/
}
.maru:before{
	content: "\25CF";
	position: absolute;
	left: 0;
	top: 0;
}

/*インデント*/
.indent{
	padding-left: 1.2em;
}

/*テーブル*/
table.table1 > tbody > tr > td,
table.table2 > tbody > tr > td,
table.table3 > tbody > tr > td{
	word-break:break-all;
}

table.table1 > tbody > tr > th,
table.table1 > tbody > tr > td{
	border: none !important;
}

table.table1,
table.table2,
table.table3{
	font-size: 12px;
	line-height: 15px;
}

table.table1 > tbody > tr > th,
table.table1 > tbody > tr > td{
	padding: 0 10px 5px 0;
}

table.table2{
	border-collapse: separate !important;
	border-spacing: 0;
	border-bottom: solid 1px #dddddd;
}
table.table2 > tbody > tr > th,
table.table2 > tbody > tr > td{
	padding:5px 9px;
	border-top: solid 1px #dddddd;
}
table.table2 > tbody > tr > th{
	background-color: #eeeeee;
}
table.table3 > tbody > tr > td{
}

table.table3{
	border-collapse: separate !important;
	border-spacing: 1px;
}
table.table3 > tbody > tr > th,
table.table3 > tbody > tr > td{
	padding:5px 9px;
}
table.table3 > tbody > tr > th{
	background-color: #eeeeee;
}
table.table3 > tbody > tr > td{
}

/*枠*/
.waku{
	border: solid 1px #dddddd;
	padding: 4px 9px;
}

/*ライン*/
.line_t{
	border-top: solid 1px #dddddd;
}
.dotline_t{
	border-top: dotted 1px #dddddd;
}
.line_b{
	border-bottom: solid 1px #dddddd;
}
.dotline_b{
	border-bottom: dotted 1px #dddddd;
}

/*ざぶ*/
.round{
	display: inline-block;
	color: #ffffff;
	background: #11aadd;
	padding: .25em 1em;
	border-radius:			1em;
	-moz-border-radius:		1em;
	-webkit-border-radius:	1em;
}
.zabu{
	color: #ffffff;
	background: #11aadd;
	padding: .25em .7em;
}


/*色*/
.color_cyan{
	color: #11aadd;
}
.color_pink{
	color: #ff66aa;
}
.color_red{
	color: #cc3333;
}
.color_blue{
	color: #3366cc;
}
.color_black{
	color: #000000;
}
.color_orange{
	color: #ff9933;
}
.color_gray{
	color: #999999;
}
.color_white{
	color: #ffffff;
}
.bg_cyan{
	color: #ffffff;
	background: #11aadd;
}
.bg_pink{
	color: #ffffff;
	background: #ff66aa;
}
.bg_red{
	color: #ffffff;
	background: #cc3333;
}
.bg_blue{
	color: #ffffff;
	background: #3366cc;
}
.bg_orange{
	color: #ffffff;
	background: #ff9933;
}
.bg_black{
	color: #ffffff;
	background: #000000;
}
.bg_gray{
	color: #ffffff;
	background: #999999;
}
.bg_white{
	color: #333333;
	background: #ffffff;
}
.bd_cyan{
	border-color: #11aadd;
}
.bd_pink{
	border-color: #ff66aa;
}
.bd_red{
	border-color: #cc3333;
}
.bd_blue{
	border-color: #3366cc;
}
.bd_orange{
	border-color: #ff9933;
}
.bd_black{
	border-color: #000000;
}
.bd_gray{
	border-color: #999999;
}
.bd_white{
	border-color: #ffffff;
}


/*文字サイズ*/
.size20{font-size: 20px  !important;line-height: 24px !important;font-weight: normal !important;}
.size20b{font-size: 20px !important;line-height: 24px !important;font-weight: bold !important;}
.size18{font-size: 18px !important;line-height: 24px !important;font-weight: normal !important;}
.size18b{font-size: 18px !important;line-height: 24px !important;font-weight: bold !important;}
.size16{font-size: 16px !important;line-height: 24px !important;font-weight: normal !important;}
.size16b{font-size: 16px !important;line-height: 24px !important;font-weight: bold !important;}
.size14{font-size: 14px !important;line-height: 20px !important;font-weight: normal !important;}
.size14b{font-size: 14px !important;line-height: 20px !important;font-weight: bold !important;}
.size13{font-size: 13px !important;line-height: 20px !important;font-weight: normal !important;}
.size13b{font-size: 13px !important;line-height: 20px !important;font-weight: bold !important;}
.size12{font-size: 12px !important;line-height: 20px !important;font-weight: normal !important;}
.size12b{font-size: 12px !important;line-height: 20px !important;font-weight: bold !important;}
.size11{font-size: 11px !important;line-height: 18px !important;font-weight: normal !important;}
.size11b{font-size: 11px !important;line-height: 18px !important;font-weight: bold !important;}
.size10{font-size: 10px !important;line-height: 15px !important;font-weight: normal !important;}
.size10b{font-size: 10px !important;line-height: 15px !important;font-weight: bold !important;}
.size8{font-size: 8px !important;line-height: 12px !important;font-weight: normal !important;}
.size8b{font-size: 8px !important;line-height: 12px !important;font-weight: bold !important;}
.size0{font-size: 0;line-height: 0;}

/*キャプション*/
.caption{
	color: #666666;
	margin-top: 0.3em;
	text-align: left;
	font-size: 11px;
	line-height: 14px;
}

/*文字配置*/
.left{
	text-align: left;
}
.right{
	text-align: right;
}
.center{
	text-align: center;
}

/*文字スタイル*/
.bold{
	font-weight: bold;
}
.smaller{
	font-size: smaller;
}
.larger{
	font-size: larger;
}
strong{
	font-weight: bold;
}


/*スペーサ*/
div.space2{ height: 2px; font-size: 0; line-height: 0;}
div.space5{ height: 5px; font-size: 0; line-height: 0;}
div.space8{ height: 8px; font-size: 0; line-height: 0;}
div.space10{ height: 10px; font-size: 0; line-height: 0;}
div.space15{ height: 15px; font-size: 0; line-height: 0;}
div.space20{ height: 20px; font-size: 0; line-height: 0;}
div.space30{ height: 30px; font-size: 0; line-height: 0;}

.p_l0{ padding-left: 0 !important;}
.p_l5{ padding-left: 5px;}
.p_l10{ padding-left: 10px;}
.p_l15{ padding-left: 15px;}
.p_l20{ padding-left: 20px;}
.p_l30{ padding-left: 30px;}

.p_r0{ padding-right: 0 !important;}
.p_r5{ padding-right: 5px;}
.p_r10{ padding-right: 10px;}
.p_r15{ padding-right: 15px;}
.p_r20{ padding-right: 20px;}
.p_r30{ padding-right: 30px;}

.p_t0{ padding-top: 0 !important;}
.p_t5{ padding-top: 5px;}
.p_t10{ padding-top: 10px;}
.p_t15{ padding-top: 15px;}
.p_t20{ padding-top: 20px;}
.p_t30{ padding-top: 30px;}

.p_b0{ padding-bottom: 0 !important;}
.p_b5{ padding-bottom: 5px;}
.p_b10{ padding-bottom: 10px;}
.p_b15{ padding-bottom: 15px;}
.p_b20{ padding-bottom: 20px;}
.p_b30{ padding-bottom: 30px;}

.m_l0{ margin-left: 0 !important;}
.m_l5{ margin-left: 5px;}
.m_l10{ margin-left: 10px;}
.m_l15{ margin-left: 15px;}
.m_l20{ margin-left: 20px;}
.m_l30{ margin-left: 30px;}

.m_r0{ margin-right: 0 !important;}
.m_r5{ margin-right: 5px;}
.m_r10{ margin-right: 10px;}
.m_r15{ margin-right: 15px;}
.m_r20{ margin-right: 20px;}
.m_r30{ margin-right: 30px;}

.m_t0{ margin-top: 0 !important;}
.m_t5{ margin-top: 5px;}
.m_t10{ margin-top: 10px;}
.m_t15{ margin-top: 15px;}
.m_t20{ margin-top: 20px;}
.m_t30{ margin-top: 30px;}

.m_b0{ margin-bottom: 0 !important;}
.m_b5{ margin-bottom: 5px;}
.m_b10{ margin-bottom: 10px;}
.m_b15{ margin-bottom: 15px;}
.m_b20{ margin-bottom: 20px;}
.m_b30{ margin-bottom: 30px;}

.pdg0{padding: 0px !important;}
.pdg5{padding: 5px;}
.pdg10{padding: 10px;}
.pdg20{padding: 20px;}
.pdg30{padding: 30px;}

.mgn0{margin: 0px !important;}
.mgn5{margin: 5px;}
.mgn10{margin: 10px;}
.mgn20{margin: 20px;}
.mgn30{margin: 30px;}


/*PC スマホのみ表示*/
.only_pc{
	display: block;
}
.only_sm{
	display: none;
}
.cx_smartphoneview .only_pc{
	display: none;
}
.cx_smartphoneview .only_sm{
	display: block;
}
.only_ipad{
	display: none;
}

/*スマホのみ改行*/
.cx_smartphoneview span.sm{
}
.cx_smartphoneview span.sm:after{
	content: "\000A";
	white-space: pre;
}

/*コメント*/
.cmnt{
	display: none;
}

/*インラインブロック*/
.ib{
	display: inline-block;
}
/*改行*/
.no_wrap{
	white-space: nowrap;
}
.word_break_all{
	word-break:break-all;
}
.word_normal{
	word-break:normal;
}

