@charset "utf-8";
/* =======================================
	Base css（絶対パス）
========================================== */
/*-----------------------------------------------------------
		1.Browser Reset
			1-1.base-set

		2.Heading

		3.Others
			3-1.box-sizing
			3-2.clear
			3-3.width
			3-4.links
			3-5.align
			3-6.padding
			3-7.margin
			3-8.text-indent
			3-9.text-decoration
			3-10.page-top
			3-11.font-setting

		4.Tables

		5.List
		6.Float
-------------------------------------------------------------*/
/* -------------------------------------
	1.Browser Reset
------------------------------------- */

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,
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,
main {
	margin: 0;
	padding: 0;
	font-size: 100%;
	background: transparent;
	border: 0;
	vertical-align: baseline;
	outline: 0;
}
body { line-height: 1; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section { display: block; }
blockquote,
q { quotes: none; }
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	background: transparent;
	vertical-align: baseline;
	outline:none;
}

/* change colours to suit your needs */

ins {
	color: #000;
	font-weight: bold;
	text-decoration: none;
	background-color: #ff9;
}
/* change colours to suit your needs */
em {
	font-family: 'Times New Roman','ヒラギノ明朝 Pro W6', 'Hiragino Mincho Pro', 'ＭＳ Ｐゴシック', serif;
	font-style: italic;
}
mark {
	color: #000;
	font-style: italic;
	font-weight: bold;
	background-color: #ff9;
}
del { text-decoration: line-through; }

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table { border-spacing: 0; }
caption,
th,
td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

/* change border colour to suit your needs */

hr {
	display: block;
	height: 1px;
	padding: 0;
	margin: 1em 0;
	border: 0;
	border-top: 1px solid #cccccc;
}
hr.double {
	border-top: 3px double #cccccc;
}
input,
select { vertical-align: middle; }
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
textarea {
	background: none;
	border: none;
	outline: none;
}
input[type=submit],
input[type=reset],
input[type=button],
button[type=submit],
button[type=button],
button[type=reset] {
	background: none;
	border: none;
	cursor: pointer;
}
img { vertical-align: top; }
address { font-style: normal; }
/* 1-1.base-set
--------------------------------------------------------- */

html {
	font-size: 62.5%;
	background: #2b2b2b;
}
body {
	color: #010101;
	font-size: 1.3rem;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
body,
input,
select,
textarea { font-family: 'Helvetica Neue', Helvetica, Arial, Roboto, 'Droid Sans', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', sans-serif; }
input { font-size: 100%; }
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
}
.blockskip {
    z-index: 9999;
    overflow: visible;
    width: 100%;
    padding: 0;
    margin: 0;
}
.blockskip a {
    display: block;
    overflow: hidden;
    height: 1px;
    margin: -1px 0 0;
}

.blockskip a:focus {
    overflow: visible;
    height: 20px;
    font-size: 1.6rem;
    text-align: center;
}

/* -------------------------------------
	2.Heading
------------------------------------- */

h1 {
	margin: 0 0 1em;
	font-size: 2.4rem;
	line-height: 1.3;
}
h2 {
	clear: both;
	margin: 1.66em 0;
	font-size: 1.8rem;
	line-height: 1.5;
}
h3 {
	margin: 1.87em 0 .8em;
	font-size: 1.6rem;
	line-height: 1.5;
}
h4 {
	margin: 2.14em 0 .93em;
	font-size: 1.4rem;
	line-height: 1.5;
}
h5 {
	margin: 2.14em 0 .93em 2em;
	font-size: 1.4rem;
	line-height: 1.5;
}
h6 { margin: 2.3em 0 1em; }
p { margin: 1em 0; }
/* -------------------------------------
	3.Others
------------------------------------- */
/* 3-1.box-sizing
--------------------------------------------------------- */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* 3-2.clear
--------------------------------------------------------- */

.clfix::after {
	content: "";
	display: block;
	clear: both;
}
.clear { clear: both; }
/* 3-3.width
--------------------------------------------------------- */

.w1em { width: 1em; }
.w2em { width: 2em; }
.w3em { width: 3em; }
.w4em { width: 4em; }
.w5em { width: 5em; }
.w6em { width: 6em; }
.w7em { width: 7em; }
.w8em { width: 8em; }
.w9em { width: 9em; }
.w10em { width: 10em; }
.w5 { width: 5%; }
.w10 { width: 10%; }
.w12 { width: 12%; }
.w13 { width: 13%; }
.w14 { width: 14%; }
.w15 { width: 15%; }
.w20 { width: 20%; }
.w25 { width: 25%; }
.w30 { width: 30%; }
.w33 { width: 33%; }
.w35 { width: 35%; }
.w40 { width: 40%; }
.w45 { width: 45%; }
.w50 { width: 50%; }
.w55 { width: 55%; }
.w60 { width: 60%; }
.w65 { width: 65%; }
.w70 { width: 70%; }
.w75 { width: 75%; }
.w80 { width: 80%; }
.w85 { width: 85%; }
.w90 { width: 90%; }
.w95 { width: 95%; }
.w100 { width: 100%; }
.ws5 { width: 5%; }
.ws10 { width: 10%; }
.ws15 { width: 15%; }
.ws20 { width: 20%; }
.ws25 { width: 25%; }
.ws30 { width: 30%; }
.ws33 { width: 33%; }
.ws35 { width: 35%; }
.ws40 { width: 40%; }
.ws45 { width: 45%; }
.ws50 { width: 50%; }
.ws55 { width: 55%; }
.ws60 { width: 60%; }
.ws65 { width: 65%; }
.ws70 { width: 70%; }
.ws75 { width: 75%; }
.ws80 { width: 80%; }
.ws85 { width: 85%; }
.ws90 { width: 90%; }
.ws95 { width: 95%; }
/* 3-4.links
--------------------------------------------------------- */

a { color: #00679d; }
a:focus,
a:hover { 
    color: #0055ff;/* 2022JIS修正前 #00bdff  */
    outline: thin dotted #333;
}
.dropmenu li.nav08 ul.sub-nav li .sub-menu .menu-box07 > a:hover,
.dropmenu li.nav08 ul.sub-nav li .sub-menu .menu-box07 > a:focus{
    text-decoration: underline;
}
.h-box .h-item li.lang a:focus,
.h-box .h-item li.lang a:hover,
.h-box .searchbox a:focus,
.h-box .searchbox a:hover,
nav.g-nav ul.dropmenu a:focus,
nav.g-nav ul.dropmenu a:hover,
.main-contents .top-column .top-market a:focus,
.main-contents .top-column .top-market a:hover,
.top-column2 .news-box .headline a:focus,
.top-column2 .news-box .headline a:hover,
.top-link_box li a:focus,
.top-link_box li a:hover,
.top-column2 .top-related_sites a:focus,
.top-column2 .top-related_sites a:hover,
.top-column2 .top-read li a:focus,
.top-column2 .top-read li a:hover,
p.non-scroll a:focus,
p.non-scroll a:hover,
.right-contents .side-nav a:focus,
.right-contents .side-nav a:hover,
.index-box dd.clone ul li a:focus,
.index-box dd.clone ul li a:hover,
.box p.lang a:focus,
.box p.lang a:hover,
ul#statistics-tab a:focus,
ul#statistics-tab a:hover,
.list-history li > a,
.column-search li a,
.h-nav a,
.list-release li p a
{
outline: none;
}
a:focus img,
a:hover img {
	opacity: 0.7;
	outline: 1px dotted #333;
}
a[href=""] {
	cursor: text;
}
a[href^="http"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_external.png) no-repeat 0 50%;
}
a[href^="http://www.boj.or.jp/"],
a[href^="http://www.imes.boj.or.jp/"],
a[href^="http://www3.boj.or.jp/"],
a[href^="http://www4.boj.or.jp/"],
a[href^="http://www5.boj.or.jp/"],
a[href^="http://www.stat-search.boj.or.jp/"],
a[href^="https://www.boj.or.jp/"],
a[href^="https://www.imes.boj.or.jp/"],
a[href^="https://www3.boj.or.jp/"],
a[href^="https://www4.boj.or.jp/"],
a[href^="https://www5.boj.or.jp/"],
a[href^="https://www.stat-search.boj.or.jp/"]
{
	padding: 0;
	margin-right: 0;
	background: none;
}
a.img[href^="http"] {
	padding: 0;
	margin-right: 0;
	background: none;
}
a[href$=".pdf"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_pdf.png) no-repeat 0 50%;
}
a[href$=".zip"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_downloadicon.png) no-repeat 0 50%;
}
a[href$=".lzh"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_downloadicon.png) no-repeat 0 50%;
}
a[href$=".csv"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_csv.png) no-repeat 0 50%;
}
a[href$=".txt"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_text.gif) no-repeat 0 50%;
}
a[href$=".xls"],
a[href$=".xlsx"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_excel.png) no-repeat 0 50%;
}
a[href$=".doc"],
a[href$=".docx"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_word.png) no-repeat 0 50%;
}
a[href$=".ppt"],
a[href$=".pptx"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_ppt.png) no-repeat 0 50%;
}
a[href$=".mpeg"],
a[href$=".mpg"],
a[href$=".avi"] {
	padding: 2px 0 2px 20px;
	margin-left: .1em;
	background: url(/common/images/icon_video.png) no-repeat 0 50%;
}
/* 3-5.align
--------------------------------------------------------- */

.txt-center { text-align: center!important; }
.txt-left { text-align: left!important; }
.txt-right { text-align: right!important; }
.valign-m { vertical-align: middle !important; }
.valign-t { vertical-align: top !important; }
.valign-b { vertical-align: bottom !important; }
.justify { text-align-last: justify;
-moz-text-align-last:justify;}
/* 3-6.padding
--------------------------------------------------------- */
/*left*/

.pl1em { padding-left: 1em !important; }
.pl2em { padding-left: 2em !important; }
.pl3em { padding-left: 3em !important; }
.pl4em { padding-left: 4em!important;}
.pl5em { padding-left: 5em!important;}
.pl6em { padding-left: 6em!important;}
.pl7em { padding-left: 7em!important;}
.pl8em { padding-left: 8em!important;}
.pl9em { padding-left: 9em!important;}

.p-left1 {
	display: block!important;
	padding-left: 1em!important;
}
.p-left2 {
	display: block!important;
	padding-left: 2em!important;
}
.p-left3 {
	display: block!important;
	padding-left: 3em!important;
}
/* 3-7.margin
--------------------------------------------------------- */
/*top*/
.mt0 { margin-top: 0!important; }
.mt1em { margin-top: 1em!important; }
.mt15em { margin-top: 1.5em!important; }
.mt2em { margin-top: 2em!important; }
.mt3em { margin-top: 3em!important; }
/*bottom*/
.mb0 { margin-bottom: 0!important; }
/*left*/
.ml1em { margin-left: 1em!important; }
.ml2em { margin-left: 2em!important; }
.ml25em { margin-left: 2.5em!important; }
.ml3em { margin-left: 3em!important; }
/* 3-8.text-indent
--------------------------------------------------------- */

.indent-line {
	padding-left: 35px !important;
	margin-left: 1em;
	background: url(/common/images/indent.gif) no-repeat 0 10px;
}
.indent0 {
	margin-left: 0 !important;
	text-indent: 0 !important;
}
.indent1 {
	margin-left: 1em !important;
	text-indent: -1em !important;
}
.indent15 {
	margin-left: 1.5em !important;
	text-indent: -1.5em !important;
}
.indent2 {
	margin-left: 2em !important;
	text-indent: -2em !important;
}
.indent25 {
	margin-left: 2.5em !important;
	text-indent: -2.5em !important;
}
.indent3 {
	margin-left: 3em !important;
	text-indent: -3em !important;
}
.indent35 {
	margin-left: 3.5em !important;
	text-indent: -3.5em !important;
}
.indent4 {
	margin-left: 4em !important;
	text-indent: -4em !important;
}
.indent45 {
	margin-left: 4.5em !important;
	text-indent: -4.5em !important;
}
.indent5 {
	margin-left: 5em !important;
	text-indent: -5em !important;
}
.indent55 {
	margin-left: 5.5em !important;
	text-indent: -5.5em !important;
}
.indent6 {
	margin-left: 6em !important;
	text-indent: -6em !important;
}
.indent65 {
	margin-left: 6.5em !important;
	text-indent: -6.5em !important;
}
.indent7 {
	margin-left: 7em !important;
	text-indent: -7em !important;
}
.indent75 {
	margin-left: 7.5em !important;
	text-indent: -7.5em !important;
}
.indent8 {
	margin-left: 8em !important;
	text-indent: -8em !important;
}
.indent85 {
	margin-left: 8.5em !important;
	text-indent: -8.5em !important;
}
.indent9 {
	margin-left: 9em !important;
	text-indent: -9em !important;
}
.indent95 {
	margin-left: 9.5em !important;
	text-indent: -9.5em !important;
}
.indent10 {
	margin-left: 10em !important;
	text-indent: -10em !important;
}
.indent10-5 {
	margin-left: 10.5em !important;
	text-indent: -10.5em !important;
}
.indent11 {
	margin-left: 11em !important;
	text-indent: -11em !important;
}
.indent11-5 {
	margin-left: 11.5em !important;
	text-indent: -11.5em !important;
}
.indent12 {
	margin-left: 12em !important;
	text-indent: -12em !important;
}
.indent12-5 {
	margin-left: 12.5em !important;
	text-indent: -12.5em !important;
}
.indent13 {
	margin-left: 13em !important;
	text-indent: -13em !important;
}
.indent13-5 {
	margin-left: 13.5em !important;
	text-indent: -13.5em !important;
}
.indent14 {
	margin-left: 14em !important;
	text-indent: -14em !important;
}
.indent14-5 {
	margin-left: 14.5em !important;
	text-indent: -14.5em !important;
}
.indent15-0 {
	margin-left: 15em !important;
	text-indent: -15em !important;
}
.indent15-5 {
	margin-left: 15.5em !important;
	text-indent: -15.5em !important;
}
/* 3-9.text-decoration
--------------------------------------------------------- */

sup { color: #cc0000; }
sup.sup-black { color: #010101; }
.red {
	display: inline !important;
	color: #cc0000;
}
p.red {
	display: inherit !important;
	color: #cc0000;
}
.red-b {
	color: #cc0000;
	font-weight: bold;
}
.nowrap { white-space: nowrap; }
img.border { border: 1px solid #000; }
.txt-underline {
	text-decoration: underline;
}
.thinline {
    font-weight: normal;
}
/* 3-10 .page-top
--------------------------------------------------------- */

#page-top {
	position: fixed;
	bottom: 60px;
	right: 18px;
	z-index: 10;
}
#page-top a {
	display: block;
	overflow: hidden;
	height: 73px;
	width: 73px;
	background: url(/common/images/pagetop.png);
	text-indent: 100%;
	white-space: nowrap;
}
#page-top a:hover,
#page-top a:focus { opacity: .8; }

/* 3-11 font-setting
--------------------------------------------------------- */
.f18rem {
font-size: 1.8rem;
}
.f16rem {
font-size: 1.6rem;
}
.f14rem {
font-size: 1.4rem;
}

.txt-hide {
position: absolute!important;
clip: rect(1px, 1px, 1px, 1px)!important;
}



/* -------------------------------------
	4.Tables
------------------------------------- */

table {
	width: 100%;
	margin: 2.3em 0 1em;
	border-bottom: 1px solid #c0c0c0;
	border-right: 1px solid #c0c0c0;
}
caption {
	padding: 0 0 0 .61em;
	margin: 0 0 .61em;
	border-left: 5px solid #ccc;
}
.non-caption {
	padding: 0;
	margin: 0;
	font-size: 0;
	border: none;
}
.unit { border: none; }
.unit span { display: block; }
.unit span:first-child {
	padding: 0;
	margin: 0;
	font-size: 0;
	border: none;
}
.unit2 {
	padding: 0 0 0 .61em;
	margin: 0 0 .61em -.61em;
	border-left: none;
}
.unit2 span {
	display: block;
	text-align: right;
}
.unit2 span:first-child {
	padding: 0 0 0 .61em;
	border-left: 5px solid #ccc;
	text-align: left;
}
th {
	padding: .54em .92em;
	background: #f2f2f2;
	border-top: 1px solid #c0c0c0;
	border-left: 1px solid #c0c0c0;
	text-align: center;
}
tbody th { text-align: left; }
.tbl01 th { background: none; }
td {
	padding: .54em .92em;
	border-top: 1px solid #c0c0c0;
	border-left: 1px solid #c0c0c0;
}
.bst { border-top: none; }
.bsb { border-bottom: none; }
.bsl { border-left: none; }
.bsr { border-right: none; }
.bt2 { border-top: 2px solid #000;}
.br2 { border-right: 2px solid #000;}
.bb2 { border-bottom: 2px solid #000;}
.bl2 { border-left: 2px solid #000;}

/*上破線罫線*/
.bt-dashed { border-top: 1px dashed #2c4b6d!important;}
/*下破線罫線*/
.bb-dashed { border-bottom: 1px dashed #2c4b6d!important;}
/*上実線罫線*/
.bt-1px { border-top: 1px solid #2c4b6d!important;}
/*下実線罫線*/
.bb-1px { border-bottom: 1px solid #2c4b6d!important;}
/*上太罫線*/
.bt-bold { border-top: 2px solid #2c4b6d!important;}
/*下太罫線*/
.bb-bold { border-bottom: 2px solid #2c4b6d!important;}
/*上二重罫線*/
.bt-double { border-top: 4px double #2c4b6d!important;}
/*下二重罫線*/
.bb-double { border-bottom: 4px double #2c4b6d!important;}
/*2色のテーブル*/
.duotone {
    border-top: 1px solid #c0c0c0;
    border-left: 1px solid #c0c0c0;
}
.duotone caption {
    border-left: 5px solid #4988d0;
}
.duotone thead tr th,
.duotone thead tr td {
    background-color: #8DB4E2;
}
.duotone thead tr th {
    border-left: 1px solid #fefefe;
}
.duotone tr th,
.duotone tr td {
    border-left: none;
    border-top: none;
}
.duotone tbody tr:nth-child(odd) th {
    background-color: #DCE6F1;
}
.duotone tbody tr:nth-child(odd) td {
    background-color: #edf2f8;
}
.duotone tbody tr:nth-child(even) th {
    background-color: #f5f5f5;
}
.duotone tbody tr td {
    vertical-align: bottom;
    border-left: 1px dashed #c0c0c0!important;
}
.duotone tbody tr td:nth-of-type(1) {
    border-left: none!important;
}

/*
.duotone tbody tr td:nth-of-type(1)[colspan] {
    border-left: none;
}
*/



table ul { margin: 0 0 0 1em; }
table .no-list,
table .link-list01 { margin: 0; }
table ol { margin: 0 0 0 1em; }
table .number,
table .number-en { margin-left: 0 !important; }
table .number-en li { margin-left: 1.5em !important; }
table .pl1em { padding-left: 1.92em !important; }
table .pl2em { padding-left: 2.92em !important; }
table .pl3em { padding-left: 3.92em !important; }
table .p1-indent15 {
	padding-left: 3.42em;
	margin-left: 1.5em !important;
	text-indent: -1.5em !important;
}
table .indent1 { display: block; }
table .indent15 { display: block; }
table .indent2 { display: block; }
table .indent25 { display: block; }
table .indent3 { display: block; }
table .indent35 { display: block; }
table td.indent1 {
	display: table-cell;
	padding-left: 1.92em;
	margin-left: 1em !important;
	text-indent: -1em !important;
}
table td.indent15 {
	display: table-cell;
	padding-left: 2.42em;
	margin-left: 1.5em !important;
	text-indent: -1.5em !important;
}
table td.indent2 {
	display: table-cell;
	padding-left: 2.92em;
	margin-left: 2em !important;
	text-indent: -2em !important;
}
table td.indent25 {
	display: table-cell;
	padding-left: 3.42em;
	margin-left: 2.5em !important;
	text-indent: -2.5em !important;
}
table .shadow { background: #d0d0d0; }
.no-bg {
 background: none;
}
.gray-bg {
 background-color: #f2f2f2;
}
/*----tbl-box----*/
.tbl-box {
	overflow: auto;
}
.tbl-box table { width: 663px; }

/*---- table_like list ----*/

ul.table_like {
margin: 0 0 1em
}
ul.table_like li {
display: table;
margin: 0;
padding: 0;
width: 100%;
}
ul.table_like li:first-child {
border: 1px solid #c0c0c0;
}
ul.table_like li:not(:first-child) {
border-right: 1px solid #c0c0c0;
border-bottom: 1px solid #c0c0c0;
border-left: 1px solid #c0c0c0;
}
ul.table_like li span {
display: table-cell;
vertical-align:top;
padding: .8em;
}

ul.kawase.table_like li span:first-child,
ul.kawase.table_like li span:nth-child(3) {
width: 10%;
}
ul.kawase.table_like li span:nth-child(2) {
width: 45%;
}
ul.kawase.table_like li span:nth-child(4) {
width: 15%;
padding-left: 1.5em;;
}
ul.kawase.table_like li span:last-child {
width: 20%;
}
ul.kawase.table_like li span:first-child {
text-align: right;
padding-right: 2em;
}
ul.kawase.table_like li span:nth-child(3),
ul.kawase.table_like li span:last-child {
text-align:center;
}
span.ditto {
font-size: 0;
}
span.ditto::after {
position:relative;
content: "\3003";
font-size: 1.5rem;
top: 0;
}
.tbl-box>ul.table_like {
width: 663px;
}

ul.table_like li span:not(:first-child) {
border-left: 1px solid #c0c0c0;
padding: 0.5em;
margin-top: 0;
}
ul.kawase.table_like li span:not(:first-child) {
border: none;
}
p.caption {
 border-left: 5px solid #ccc;
 text-indent: .6em;
}

/* -------------------------------------
	5.List
------------------------------------- */

ul { margin: 0 1em 1em 2em; }
ul ul { margin: .5em 0 .5em 2em; }
ul ul ul { margin: .5em 0 .5em 2em; }
.no-list {
	list-style: none;
	margin: 0 0 1em 1em;
}
ul .no-list { margin: .5em 0 .5em 1em; }
.caution .link-list01 { margin: .5em 0; }
.caution .link-list01 li { margin: .5em 0; }
.caution .link-list01 li::before { content: ""; }
ol { margin: 0 0 1em 2.5em; }
ol ol { margin: .5em 0 .5em 2em; }
ol ol ol { margin: .5em 0 .5em 2em; }
ol .number,
ol .no-list { margin: .5em 0; }
ol .red-number,
ol .asterisk-red,
ol .number-alphabet-en,
ol .caution { margin: .5em 0 !important; }
ol .kana { margin: .5em 0; }
.kana ol { margin: .5em 0; }
.kana ul { margin: .5em 0; }
.kana ul li { margin: 0 0 .5em 1.3em; text-indent: 0; }
.number-alphabet ul { margin: .5em 0 .5em 1em; }
.number-alphabet .list-notes { margin: .5em 0; }
.number-alphabet .list-notes li {
	margin: 0 0 .5em 3.5em;
	text-indent: -3.5em;
}
.number-alphabet-en ul { margin: .5em 0 .5em 1em; }
.number-alphabet-en ul li { margin-left: 0; text-indent: 0; }
ol ul { list-style: disc; }
.list-notes ul {
	list-style: disc;
	margin: .5em 0 .5em 1.5em;
	text-indent: 0;
}
.indent1 ul { margin: .5em 0 .5em 1.5em; }
.indent15 ul { margin: .5em 0 .5em 1em; }
li { margin: 0 0 .5em; }
.info-item { margin: 1em 0 1em 1em; }
.info-item::after {
	content: "";
	clear: both;
	display: block;
}
.info-item ol { margin: 0 0 .5em 1.5em; }
.info-item .number-en { margin: .5em 0; }
.info-item ul { margin:.5em 0; }
ol .disc {
	list-style: disc;
	margin: .5em 0 .5em 1em;
}
ol p { padding: 0 !important; }
ul .caution { margin: .5em 0; }
.list-info .caution { margin: .5em 2em .5em 0 !important; }
.info-item dt,
.info-item dd {
	float: left;
	margin: 0 0 .5em;
}
.info-item dt { clear: both; }
.info-item .indent1 {
	padding-left: 1em !important;
	margin: 0 !important;
}
ul li .indent-line {
	display: block;
	padding-left: 35px !important;
	margin: .5em 0 !important;
	background: url(/common/images/indent.gif) no-repeat 0 7px;
}
ol .info-item {
	padding-left: 2.5em;
	margin: .5em 0;
}

/* -------------------------------------
	6.Float
------------------------------------- */
.fl {
    float: left;
}
.fr {
    float: right;
}
.fl-img,
.fl-img_b,
.fl-txt {
	float: left;
	margin-bottom: 0;
}
.clfix .fl-img,
.clfix .fl-img_b,
.clfix .fl-txt {
	float: left;
	margin: 0;
}
.fr-img,
.fr-img_b,
.fr-txt {
	float: right;
	margin: 0;
}
.fl-img_b img,
.fr-img_b img { border: 1px solid #c0c0c0; }
.col50 {
	float: left;
	width: 48.5%;
}
.col50:last-child {
	float: right;
	width: 48.5%;
}
@media only screen and (max-width: 959px) {
.tbl-box {
	-webkit-overflow-scrolling: touch;
}
.tbl-box table { min-width: 100%; width: auto; }
.tbl-box .table_like { min-width: 100%; width: auto; }
.tbl-box::-webkit-scrollbar {
 height: 5px;
}
.tbl-box::-webkit-scrollbar-track {
 background: #F1F1F1;
}
.tbl-box::-webkit-scrollbar-thumb {
 background: #BCBCBC;
}
}
@media only screen and (max-width: 767px) {
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
}
.info-item dt,
.info-item dd {
	float: none;
	width: 100%;
}
.info-item dd .mt15em { margin-top: 0; }
.info-item .txt-right { text-align: left; }
.tbl-box table { width: 706px; }
}
@media only screen and (max-width: 600px) {
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
}
.col50 {
	float: none;
	width: 100%;
}
.col50:last-child {
	float: none;
	width: 100%;
}
}
@media only screen and (max-width: 480px) {
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
}
.fl-img,
.fr-img,
.fl-img_b,
.fr-img_b {
	float: none;
	margin: 1em 0;
	text-align: center;
}
.clfix .fl-img,
.clfix .fr-img,
.clfix .fl-img_b,
.clfix .fr-img_b {
	float: none;
	margin: 1em 0;
	text-align: center;
}
.fl-txt,
.fr-txt {
	float: none;
	margin: 1em 0;
}
.clfix .fl-txt,
.clfix .fr-txt {
	float: none;
	margin: 1em 0;
}
.fl-txt li,
.fr-txt li { margin-left: 1em; }
.ws5 { width: auto; }
.ws10 { width: auto; }
.ws15 { width: auto; }
.ws20 { width: auto; }
.ws25 { width: auto; }
.ws30 { width: auto; }
.ws33 { width: auto; }
.ws35 { width: auto; }
.ws40 { width: auto; }
.ws45 { width: auto; }
.ws50 { width: auto; }
.ws55 { width: auto; }
.ws60 { width: auto; }
.ws65 { width: auto; }
.ws70 { width: auto; }
.ws75 { width: auto; }
.ws80 { width: auto; }
.ws85 { width: auto; }
.ws90 { width: auto; }
.ws95 { width: auto; }
.undefined {
	padding: 0 0 0 .61em !important;
	margin: 0 0 .61em !important;
	border-left: 5px solid #ccc;
}
}
@media only screen and (max-width: 320px) {
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
}
}
