@charset "UTF-8";

/* ================================================ */
/* ZoomSight　共通CSS 　　　　                      */
/* ================================================ */

/* ========== 全体構造 ========== */
* {
	margin:0;
	padding:0;
}

html {
	
}

body {
	width: 100%;
	color: #000000;
	font-family: "Verdana", "ＭＳＰ　ゴシック", "ヒラギノ角ゴ Pro W3", Osaka, sans-serif;
	background-color: #F9F9F9;
}




/* ========== htmlタグ定義 ========== */

/* ----- リンク ----- */

A:link{
	color: #08427C;
	text-decoration: underline;
}

A:visited{
	color: #551A8B;
	text-decoration: underline;
}

A:hover{
	color: #890000;
	text-decoration: none;
}

A:active{
	color: #890000;
	text-decoration: none;
}



/* ----- テキスト ----- */
p {
	
}

/* 文字装飾 */
strong {
	font-weight: bold;
}

strong.red {
	color: #CC0101;
	font-weight: bold;
}

strong.blue {
	color: #0000ff;
	font-weight: bold;
}

/* ガイダンス */
span.guidance {
	margin-left: 6px;
}


/* ----- 画像 ----- */
img {
	border: 0px;
}

img.picture-frame {
	border: solid 1px #CDCDCD;
}

img.f-left {
	margin-right: 12px;
	margin-bottom: 4px;
	margin-top: 4px;
}

img.f-right {
	margin-left: 12px;
	margin-bottom: 4px;
	margin-top: 4px;
}

img.space {
	margin: 0 3px;
	vertical-align: middle;
}


/* ----- リスト ----- */
/* 構造化リスト */
dl {
	
}

/* 項番つきリスト */
ol {
	margin-left: 28px;
}

/* 通常リスト */
ul {
	list-style: none;
	padding-left: 7px;
}

li {
	line-height: 130%;
	margin-bottom: 7px;
}

/* リスト（ドットマーカー） */
ul.dot li,
li.dot {
	padding-left: 10px;
	background: transparent url('../images/common_contents_li_marker_dot.png') no-repeat 0 0.5em;
}

/* リスト（ドットマーカー） */
ul.icon li,
li.icon {
	padding-left: 15px;
	padding-bottom: 5px;
	margin-right: 15px;
	background: transparent url('../images/common_contents_li_marker_icon.png') no-repeat 0 0.5em;
	border-bottom: dotted 1px #CCC; 
}



/* リスト（番号付き） */
ul.number li span.head-number,
li.number span.head-number {
	padding-left: 5px;
	display: inline-block;
	width: 2em;
	/display: inline;
	/zoom: 1;
}

/* リスト（注意書き） */
ul.note li span.head-note,
li.note span.head-note,
p.note span.head-note {
	display: inline-block;
	width: 3.5em;
	/display: inline;
	/zoom: 1;
}

/* システム内リンク */
ul.innerlink li,
li.innerlink {
	padding-left: 20px;
	background: transparent url('../images/common_icon_link.png') no-repeat left center;	
}
a.innerlink {
	display: inline-block;
	padding-left: 20px;
	background: transparent url('../images/common_icon_link.png') no-repeat left center;	
	/display: inline;
	/zoom: 1;
}



/* リンクリスト（ページジャンプ） */
ul.innerjump li,
li.innerjump {
	padding-left: 20px;
	background: transparent url('../images/common_contents_li_marker_innerjump.png') no-repeat 0 0.2em;
}
a.innerjump {
	display: inline-block;
	padding-left: 18px;
	background: transparent url('../images/common_contents_li_marker_innerjump.png') no-repeat 0 0.2em;
	/display: inline;
	/zoom: 1;
}

/* 新規ウィンドウ */
/*kame-s*/
/*p.new-window{*/
p.new-window, span.new-window{
/*kame-e*/
	padding-left: 18px;
	background: transparent url('../images/common_icon_link.png') no-repeat left center;
}

p.new-window a{
    display: inline-block;
    padding-right: 18px;
    background: transparent url('../images/common_icon_new-window.png') no-repeat right 0.2em;
    /display: inline;
    /zoom: 1;
}

/*kame-s*/
span.new-window a{
    display: inline;
    padding-right: 18px;
    background: transparent url('../images/common_icon_new-window.png') no-repeat right 0.2em;
    /display: inline;
    /zoom: 1;
}
/*kame-e*/


/* ----- 境界線 ----- */
hr {
	border-width: 1px 0 0 0;
	border-style: dotted;
	border-color: #999999;
	height: 1px;
}




/* ========== 汎用クラス ========== */
/* クリアフィックス */
.clearfix,
#contents,
#contents div.vertical,
#contents div.main-action,
#contents div.section-container,
#contents div.explain_box_abled
 {

	/zoom: 1;
}

.clearfix:after,
#contents:after,
#contents div.vertical:after,
#contents div.main-action:after,
#contents div.section-container:after,
#contents div.explain_box_abled:after
 {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}


/* 文字サイズ90％ */
.t-small {
	font-size: 90%;
}


/* 文字サイズ80％ */
.t-xsmall {
	font-size: 80%;
}


/* 文字サイズ70％ */
.t-xxsmall {
	font-size: 70%;
}


/* 改行禁止 */
.t-nowrap {
	white-space: nowrap;
}


/* 中央寄せ */
.t-center {
	text-align: center;
}


/* 右寄せ */
.t-right {
	text-align: right;
}


/* 上寄せ */
.v-top {
	vertical-align: top;
}


/* 中寄せ */
.v-middle {
	vertical-align: middle;
}


/* 下寄せ */
.v-bottom {
	vertical-align: bottom;
}


/* 中心寄せ */
.center {
	text-align: center !important;
	vertical-align: middle !important;
}


/* ----- 表示調整 ----- */
.no-display {
	display: none;
}


.block {
	display: block;
}


.inline-block {
	display: inline-block;
	/display: inline;
	/zoom: 1;
}


.f-right{
	float: right;
}


.f-left{
	float: left;
}

.mar-t-30{
	margin-top: 30px !important;
}

.mar-t-20{
	margin-top: 20px !important;
}

.mar-t-10{
	margin-top: 10px !important;
}

.mar-t-0{
	margin-top: 0px !important;
}

.mar-b-30{
	margin-bottom: 30px !important;
}

.mar-b-20{
	margin-bottom: 20px !important;
}

.mar-b-10{
	margin-bottom: 10px !important;
}

.mar-b-0{
	margin-bottom: 0px !important;
}

.half-size{
	width: 50% !important;
}

/* ----- 音声読み上げガイダンス ----- */
p.asc-guidance {
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 1px;
	margin: 0 !important;
	padding: 0 !important;
	text-indent: -9999px;
}

p.asc-guidance a {
	display: block;
}

p.show {
	text-indent: 0;
	padding: 3px!important;
	font-size: 100%;
	line-height: 120%;
	width: auto;
	height: 1em;
	display: inline-block;
	background: #333333;
	text-align: center;
	z-index: 9999;
	/display: inline;
	/zoom: 1;
}

p.show a,
p.show a:link,
p.show a:hover,
p.show a:visited {
	color: #FFFFFF;
}




/* ========== 全体のコンテナエリア ========== */
#container {
	width: 100%;
	min-width: 766px;
	_width: expression(document.body.clientWidth < 752? "750px" : "100%");
	background: #F9F9F9 url('../images/common_container_bg.png') repeat-x 0 top;
	_zoom:1;
	text-align: center;
	font-size: 90%;	/* 14px相当 */
	line-height: 150%;
}


/* ========== ヘッダエリア ========== */
#header {
	position: relative;
	width: 100%;
	height: 44px;
	margin-bottom: 19px;
	padding: 0;
	color: #FFFFFF;
	background: url('../images/common_header_bg.jpg') no-repeat left top;
	text-align: left;
}

#header h1{
	margin: 1px 6px 0 140px;
	vertical-align: middle;
	font-size: 120%;
	display: inline-block;

}

#header img.header_logo {
	position: absolute;
	top: 13px;
	left: 12px;
	/zoom: 1;
}


#header a.button-back {
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 9px;
	width: auto;
	padding: 1px 6px;
	background: #FFFFFF url('../images/common_contents_button_normal_bg.png') repeat-x left 0px;
	border: solid 1px #AEA897;
	font-weight: bold;
	cursor: pointer;
	color: #333333;
	text-decoration: none;
	text-align: center;
	font-size: 90%;
}

#header a.button-back:hover{
	background: #FFFFFF url('../images/common_contents_button_normal_bg.png') repeat-x left -75px;
}


#header a.long {
	width: 150px;
}



/* ========== コンテンツエリア ========== */
#contents {
	padding: 10px 10px 0 10px;
	width: 730px;
	text-align: left;
	color: #333333;
	margin: 0 auto;
}


#contents_main {
    min-height: 350px;
    height: auto !important;
    height: 350px;
}

/* ----- 見出し ----- */
#contents h1 {
	margin: 0 0 15px 0;
	padding: 3px 0 6px 20px;
	background: transparent url('../images/common_contents_h1.png') no-repeat left 0.12em;
	font-size: 120%;
	font-weight: bold;
}

#contents h2{
	margin: 20px 0 8px 0;
	padding: 4px 0 2px 18px;
	background: transparent url('../images/common_contents_h2.png') no-repeat left center;
	font-weight: bold;
	font-size: 100%;
}

#contents h3{
	margin: 20px 0 8px 0;
	padding: 4px 0 2px 15px;
	background: transparent url('../images/common_contents_h3.png') no-repeat left 0.7em;
	font-weight: bold;
	font-size: 100%;
}

#contents h4 {
	font-weight: bold;
	font-size: 100%;
}



/* ----- 文章 ----- */
#contents p {
	margin: 0 0 12px 0;
}

/* ----- 画像表示 ----- */
/* 画像とキャプション（単数） */
#contents p.img-center {
	text-align: center;
	margin: 6px 0 5px;
}

#contents p.img-center img {
	margin-bottom: 2px;
}

#contents p.img-center span {
	display: block;
}

#contents li img {
	margin: 0px 2px;
}

/* ----- リスト ----- */
#contents ol {
	margin-bottom: 12px;
}

#contents ul {
	margin-bottom: 12px;
}

/* 並列リスト */
#contents ul.horizontal {
	
}

#contents ul.horizontal li {
	float: left;
	display: inline-block;
	/*width: 14em;*/
	margin-bottom: 5px;
	margin-right: 15px;
	padding-top: 0px;
	vertical-align: top;
	white-space: nowrap;
	/display: inline;
	/zoom: 1;
}

/* 二段組みリスト */
#contents ul.horizontal-list li {
	float: left;
	display: inline-block;
	margin-bottom: 5px;
	margin-right: 15px;
	padding-top: 2px;
	vertical-align: top;
	/display: inline;
	/zoom: 1;
}

#contents ul.long li {
	width: 22em;
}

#contents ul.short li {
	width: 12em;
}


#contents ul.vertical-link li a {
	display: block;
}
*:first-child+html #contents ul.horizontal li { /* IE7限定処理 */
	display: inline;
	zoom: 1;
}


/* 強調文章*/
#contents div.emphasis {
	margin: 12px 0 12px 0;
	padding: 8px 8px 8px 8px;
	border: solid 1px #999999;
	background-color: #FDFBF0;
}

/* ----- テーブル ----- */
#contents table {
	width: 98%;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 12px;
}


/* テーブルヘッダ */
#contents th {
	background-color: #F8F3D1;
	border: 1px solid #999999;
	vertical-align: top;
	font-weight: normal;
	padding: 3px 6px 3px 6px;
	text-align: left;
}

/* テーブルデータ */
#contents td {
	background-color: #FFFFFF;
	border: 1px solid #999999;
	margin: 0;
	padding: 2px 4px;
	text-align: left;
}

#contents caption {
	text-align: left;
	font-size: 100%;
	font-weight: normal;
}

#contents table span.caution {
	margin-left: 4px;
	color: #920000;
	white-space: nowrap;
}

#contents table span.guidance {
	margin-right: 6px;
	margin-left: 6px;
}


/* リスト（縦方向）テーブル */
#contents table.list {
	
}

#contents table tr.odd td {
	background-color: #FFFFFF;
}

#contents table tr.even td {
	background-color: #F7F4EE;
}

#contents table td.num {
	text-align: right;
}

#contents table td.action {
	text-align: center;
}


/* 横方向テーブル */
#contents table.row {

}

#contents table.row th {
	width: 120px;
}


#contents label img{
	vertical-align: middle;
}

/*テーブル内部ul要素*/
#contents td ul {
	margin-bottom: 5px;
}


/* ----- コマンドボタン ----- */

/*コマンドボタンエリア（メインボタン）*/
#contents div.main-action {
	margin-top: 16px;
}

#contents div.main-action p.f-left a {
	margin: 0 10px 10px 0;
}

#contents div.main-action p.f-right a {
	margin: 0 0 10px 10px;
}

#contents div.main-action a.button-normal {
	padding: 5px 0;
}

#contents div.main-action a.button-important {
	padding: 5px 0;
}

/*コマンドボタン（優先度低）*/
#contents a.button-normal {
	display: inline-block;
	width: 110px;
	padding: 3px 5px 3px 5px;
	background: #FFFFFF url('../images/common_contents_button_normal_bg.png') repeat-x left top;
	color: #333333;
	border: solid 1px #AEA897;
	font-weight: bold;
	cursor: pointer;
	/padding-top: 5px;
	text-decoration: none;
	text-align: center;
	font-size: 90%;
}

#contents a.button-normal:hover{
	background: #FFFFFF url('../images/common_contents_button_normal_bg.png') repeat-x left -75px;
}


/*コマンドボタン（優先度高）*/
#contents a.button-important {
	display: inline-block;
	width: 110px;
	padding: 3px 5px 3px 5px;
	background: #FFFFFF url('../images/common_contents_button_important_bg.png') repeat-x left top;
	border: solid 1px #333333;
	color: #FFFFFF;
	font-weight: bold;
	cursor: pointer;
	/padding-top: 5px;
	text-decoration: none;
	text-align: center;
	font-size: 90%;
}

#contents a.button-important:hover{
	background: #FFFFFF url('../images/common_contents_button_important_bg.png') repeat-x left -75px;
}


/*ボタンのサイズ（小）*/
#contents a.short {
	width: 80px;
}

/*ボタンのサイズ（大）*/
#contents a.long {
	width: 200px;
}

/*ボタンのサイズ（自動）*/
#contents a.auto{
	width: auto;
}

/* ----- セクションボックス ----- */
#contents div.section-container {
	margin-top: 8px;
	margin-right: -16px;
	margin-bottom: 0px;
}

/* セクションボックス要素 */
#contents div.section-container div.section {
	float: left;
}

/* 2分割時 */
#contents div.two div.section {
	width: 49.9%;
}

/* セクションボックスの内部要素 */
#contents div.section-container div.section div.section-inner {
	position: relative;
	padding-right: 16px;
}


/* ----- ページトップ ----- */
#contents p.pagetop {
	margin-top: 20px;
	text-align: right;
}

#contents p.pagetop a {
	padding-left: 18px;
	background: transparent url('../images/common_contents_li_marker_top.png') no-repeat 0 0.1em;
}


/* ========== フッタエリア ========== */
#footer {
	margin: 0;
	padding: 0;
}

#footer address {
	padding: 2px 15px;
	margin: 15px 50px 20px 30px;
	text-align: center;
	font-size: 75%;
	font-style: normal;
	color: #333;
	border-top: solid 1px #999;
}



/* ========== ダイアログ画面用 ========== */
#contents_dialog {
	width: 400px;
    min-height: 200px;
    height: auto !important;
    height: 200px;
	margin: 80px 165px;
}

#contents_dialog h1{
	margin-left: 70px;
	padding: 0;
	background: none;
}

#contents_dialog p.dialog_caution_txt,
#contents_dialog p.dialog_error_txt{
	margin: 20px 30px;
}

#contents_dialog div.main-action p{
	width: 200px;
}

#contents_dialog div.main-action p.f-left{
	width: 200px;
	text-align: right;
}

#contents_dialog div.main-action p.f-right{
	width: 200px;
	text-align: left;
}



/* ========== PDF画面用 ========== */
/*ハイライト表示用DIV*/
.zs_read_div {
	position:absolute;
	z-index:1000;
	background-image:url(data:image/png;base64,AAAA);
}
.pdfContainer {
	margin: 0px;
	height: 1000px;
	background-color: rgb(250,250,250);
}
.zs_pdf_img{
    position:absolute;
    border:1px black solid;
    z-index:0;
}



/* ========== 印刷用CSS ========== */
@media print {
	#container {

	}
}

/* =========スマホ========= */

#menu_button a{
    text-align: center;
    border-radius: 7px;
    padding:2px 5px;
    color: #FFF;
    float: right;
    height: 25px;
    background: url('../../help/images/help_navi_bg_top_current.png') no-repeat scroll left top;
    text-decoration: none
}

#iphone{
    display: block;
    position: fixed;
    float: right;
    right: 10px;

}
