/* -----------------------------------------------
 アイコン
----------------------------------------------- */

/* ノーマル矢印 */
.iconArrow {
	display: block;
	padding: 0 0 0 15px;
	background: url(../img/parts/ic_arrow_right_m.png) no-repeat left 0.3em;
}

/* PDF */
.iconPdf {
	padding: 0 20px 0 0;
	background: url(../img/parts/ic_pdf.png) no-repeat right center;
}

/* ワード */
.iconWord {
	padding: 0 20px 0 0;
	background: url(../img/parts/ic_word.png) no-repeat right center;
}

/* エクセル */
.iconExcel {
	padding: 0 20px 0 0;
	background: url(../img/parts/ic_excel.png) no-repeat right center;
}

.data {
	font-size: 90%;
}

.iconBlank {
	margin-right: 5px;
	padding-right: 20px;
	background: url(../img/parts/ic_newwin.png) no-repeat right center;
}

.iconBlankSharp {
	margin-right: 5px;
	padding-right: 20px;
	background: url(../img/parts/ic_newwin_sharp.png) no-repeat right center;
}

.iconBlankSharpWhite {
	margin-right: 5px;
	padding-right: 20px;
	background: url(../img/parts/ic_newwinw_sharp.png) no-repeat right center;
}

.iconBlankWhite {
	margin-right: 5px;
	padding-right: 20px;
	background: url(../img/parts/ic_newwinw.png) no-repeat right center;
}


/*  ------------------------------------------------------------------
	汎用 ul
---------------------------------------------------------------------*/

ul.ulType01 {
	padding-left: 25px;
}

@media screen and (min-width: 769px){
	ul.ulType01.twoRowList li {
		float: left;
		width: 47%;
	}
	ul.ulType01.twoRowList li:nth-child(even){
		margin-left: 6%;
	}
}

ul.ulType01.flList li {
	list-style: disc;
	float: left;
	padding-right: 2.5em;
}

ul.ulType01 li {
	list-style: disc;
	margin-bottom: 10px;
}

ul.ulType01 li span{
	color: #333;
}



/*  nest <ul> 
-----------------------------------*/
ul.ulType01 ul {
	margin-left: 25px;
	padding: 15px 0 3px;
}
ul.ulType01 ul li {
	list-style: disc;
	margin-bottom: 10px;
}
/*  nest <ul><ul> 
-----------------------------------*/
ul.ulType01 ul ul li {
	list-style: circle;
}
/*  nest <ol>
-----------------------------------*/
ul.ulType01 ol {
	margin-left: 22px;
	padding: 15px 0 3px;
}
ul.ulType01 ol li {
	list-style: decimal;
	margin-bottom: 10px;
}
/*  ブレットがいらない時
-----------------------------------*/
ul.ulType01 li.bulNone {
	list-style: none;
}

/*  ------------------------------------------------------------------
	汎用 ul_02（ブレットなし）
---------------------------------------------------------------------*/
ul.ulType02 {
	padding-left: 5px;
}
ul.ulType02 li {
	margin-bottom: 10px;
}
ul.ulType02 ul {
	padding-top: 10px;
	padding-left: 20px;
}
/*  ブレットがほしい時
-----------------------------------*/
ul.ulType02 li.bul {
	list-style: square;
	list-style-position: inside;
}


/*  ------------------------------------------------------------------
	汎用 ul_03（ブレットなし）
---------------------------------------------------------------------*/
ul.ulType03 {}

ul.ulType03 li {
	float: left;
	margin-right: 0.5em;
}

/*  ------------------------------------------------------------------
	汎用 ul_04（大文字アルファベット）
---------------------------------------------------------------------*/
ul.ulType04 {
	margin-left: 25px;
	padding: 15px 0 3px;
}
ul.ulType04 li {
	list-style: upper-latin;
	margin-bottom: 10px;
}
/*  nest <ul> 
-----------------------------------*/
ul.ulType04 ul {
	padding: 15px 0 3px;
}
ul.ulType04 ul li {
	list-style: none;
	margin-bottom: 10px;
}
/*  nest <ul> 
-----------------------------------*/
ul.ulType04 ol {
	margin-left: 25px;
	padding: 10px 0 3px;
}
ul.ulType04 ol li {
	list-style: decimal ;
	margin-bottom: 10px;
}

/*  ブレットがいらない時
-----------------------------------*/
ul.ulType04 li.bulNone {
	list-style: none;
}

/*  ------------------------------------------------------------------
	汎用 ol
---------------------------------------------------------------------*/
ol.olType01 {
	margin-bottom: 1.6em;
	padding-left: 0.5em;
    counter-reset: li;    /* li のカウンタを 0 にセット */ 
    list-style: none;
}

td ol.olType01,
td ol.olType01 li:last-child {
	margin-bottom: 0 !important;
}

@media screen and (min-width: 769px){
	ol.olType01.twoRowList li {
		float: left;
		width: 43%;
	}
	
	ol.olType01.twoRowList li:nth-child(even){
		margin-left: 6%;
	}
}

ol.olType01.roma {
	list-style-type: lower-alpha;/* ローマ字 */
}
ol.olType01 li {
	margin-bottom: 0.2em !important;
	text-indent: -1.3em;
	padding-left: 1.5em;
}
ol.olType01 li.num:before {
    color: #333333;
    font-weight: bold;
    counter-increment: li;   /* li の数を一つずつ増加 */
    content: counter(li) ". ";          /* 数を表示 */
}

ol.olType01.blackNum li.num:before {
    color: #464646;
}

.noListNum li {
	margin-bottom: 0.2em !important;
	text-indent: -1.3em;
	padding-left: 1.5em;
}

.noListNum span {
    color: #a256b8;
    font-weight: bold;
}

/*  nest <ol>
-----------------------------------*/
ol.olType01 ol {
	margin-left: 22px;
	padding: 10px 0 3px;
}
ol.olType01 ol li {
	margin-bottom: 10px;
}

ol.olType01 ol li.numNest{
	list-style: decimal;
}


/*  nest <ul>
-----------------------------------*/
ol.olType01 ul {
	margin-left: 15px;
	padding: 10px 0 3px;
}
ol.olType01 ul li,
ol.olType01.roma ul li{
	list-style: square;
}
ol.olType01 ul ul li {
	list-style: circle;
}
ol.olType01 ul.nonStyle,
ol.olType01 ol.nonStyle {
	margin-left: 0;
	padding-top: 5px;
}
ol.olType01 ul.nonStyle li {
	list-style: none;
	padding: 0;
}


/*  ------------------------------------------------------------------
	デザイン ol
---------------------------------------------------------------------*/
ol.olTypeDes {
    counter-reset:li; /* Initiate a counter */
	margin: 0 0 0 0.5em;
    padding:0;
    list-style:none; /* Disable the normal item numbering */
}

ol#fifthStart {
    counter-reset:li 4; /* Initiate a counter */
}


ol.olTypeDes li {
    position:relative; /* Create a positioning context */
    margin:0 0 6px 0; /* Give each list item a left margin to make room for the numbers */
    padding:2px 30px 6px 30px;
}
ol.olTypeDes.unLine li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #CCC;
}

ol.olTypeDes li:last-child {
    margin:0; /* Give each list item a left margin to make room for the numbers */
}
ol.olTypeDes li:before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;/*ここで円の大きさが変えれます*/
	height: 24px;/*ここで円の大きさが変えれます*/
	text-align: center;
	line-height: 25px;
	border-radius: 100%;
	font-weight: bold;
	color: white;
	background: #333333;/*ここで色変えれます*/
}

@media screen and (max-width: 640px){
	ol.olTypeDes li:before {
		top: 5px;
	}
}

ol.olTypeDes.bule li:before {
	background: #4a9eb6;/*ここで色変えれます*/
}



/*  ------------------------------------------------------------------
	ナンバリングdl
	（olに似ているが番号をIE7でスタイリング出来ないのでdlで代用）
---------------------------------------------------------------------*/
dl.number {
	padding: 0 15px 15px 5px;
	zoom: 1;
}
dl.number dt {
	padding: 0 0 9px;
	margin-bottom: -39px;
	width: 55px;
	font-weight: bold;
	zoom: 1;
}
dl.number dd {
	padding: 10px 0 10px 35px;
}


/*	テーブル設定
 ------------------------------------------------------------------ */
.normalTable {}
.smallTable {
	font-size: 73%;
}
.xsmallTable {
	font-size: 65% !important;
}
.bigTable {
	font-size: 100% !important;
}
.tableSmallText th,
.tableSmallText td{
	padding: 2px 5px !important;
	font-size: 85%;
	word-wrap:break-all !important;
}

.tdCenter td {
	text-align: center !important;
}

.tdRight td {
	text-align: right !important;
}

.normalTable table{
	width: 100%;
	border-collapse: collapse;
}
.normalTable th,
.normalTable td{
	box-sizing:border-box;
	background: #ffffff;
	padding: 10px;
	border-top: 1px #cbcbcb solid;
	border-left: 1px #cbcbcb solid;
	border-right: 1px #cbcbcb solid;
	border-bottom: 1px #cbcbcb solid;
	word-wrap:break-all !important;
}
/*thead 指定-----------------------------*/
.normalTable table thead{
	width: 100%;
	color: #FFF;
}
.normalTable table thead th{
	background: #727272;
	border-bottom: 1px #cbcbcb solid;
}

/*tbody 指定-----------------------------*/
.normalTable table tbody{
	background: #FFF;
	width: 100%;
}

/*tbody th 指定------------------*/
.normalTable table tbody th{
	background: #d7ebf5;
}

/*tbody th 偶数行　指定------------------*/
.normalTable table tbody .odd th{  
	background: #a2a2a2;
} 

/*tbody th 奇数行　指定------------------*/
.normalTable table tbody .even th{  
	background: #a2a2a2;
}

/*tbody th 奇数行　指定------------------*/
.normalTable table tbody th.pinkTh{background: #fce7e7 !important; color:#464646; text-align: left;}

/*　指定なし　th 指定　*/
.normalTable table tbody th.gakubuTh {background: #8a8989;}
.normalTable table tbody th.gakkaTh {background: #bababa;}


/*tbody td 偶数行　指定------------------*/
.normalTable table tbody .odd td{  
	background: #F0F0F0;
}  

/*tbody td 奇数行　指定------------------*/
.normalTable table tbody .even td{  
	background: #FFF;
}  

/*tbody td 奇数行　指定------------------*/
.normalTable table tbody .even td{  
	background: #FFF;
}  

/*tbody ゼブラなし　指定------------------*/
.nonZebraTable table tbody .odd td, 
.nonZebraTable table tbody .even td{
	background: #FFF;
}


.normalTable table tbody .rowTtl,
.normalTable table tbody .rowTtl02 {
	background: #474646 !important;
	color: #FFF;
}

/*小計 指定-----------------------------*/
.normalTable table .subTotal{}

.normalTable table .subTotal th{
	background: #fffcf1 !important;
}

.normalTable table .subTotal td{
	background: #fffcf1 !important;
}


table .sunTh {
	background-color: #fedbd7 !important;
}	
table .satTh {
	background-color: #e6f3fc !important;
}
table .normalTh {
	background-color: #fafafa !important;
}


/*tfoot 指定-----------------------------*/
.normalTable table tfoot{
	width: 100%;
}

.normalTable table tfoot th{
	background: #fff3c3;
}

.normalTable table tfoot td{
	background: #fff8de;
}

/* 右上Line削除 */
.normalTable table .tlc {
	background: none !important;
	border-left: none !important;
	border-top: none !important;
}
/* 左下Line削除 */
.normalTable table .brg {
	background: none !important;
	border-right: none !important;
	border-bottom: none !important;
}

@media screen and (max-width: 640px) {
	.scrollTable table {
		word-wrap:break-all;
		table-layout:fixed;
		display: block;
		width: auto;
		position: relative;
		overflow-x: auto;
		white-space: nowrap;
	}
	.scrollTable table th {
		padding: 10px;
		word-wrap:break-all;
	}
	.scrollTable table td {
		padding: 10px;
		word-wrap:normal;
		word-wrap:break-all;
	}
	
	.scrollTable:after {
		font-size: 85%;
		content: '表は横スクロールで閲覧できます。';
	}
	
}


/*	ボタン 指定
 ------------------------------------------------------------------ */
.pageBtnWrap {
	margin-top:20px;
}

/*ボタン 包括-----------------------------*/
.pageBtnWrap {
	margin-top:10px;
}

.pageBtnWrap .normalBtn {
	width: 80%;
	margin: 0 auto;
	display: block;
	clear: both;
}

.pageBtnWrap .normalBtn a {
	background-color: #57a7d1;
	background-image: url(../img/parts/ic_btn_arrow.png);
	background-position: 97% center;
	background-repeat: no-repeat;
	color: #FFF;
	padding: 20px 20px 20px 20px;
	text-align: center;
	display: block;
	line-height: 1.3;
}

.pageBtnWrap .normalBtn a:hover {
	color: #FFF;
	background-color: #57a7d1;
	opacity: 0.7;
}


@media screen and (max-width: 641px) {
	.pageBtnWrap .normalBtn {
		width: 100%;
		margin: 0 auto;
		display: block;
		clear: both;
	}
	.pageBtnWrap .normalBtn a {
		padding: 10px 20px 10px 20px;
	}
}


/*	引用文 指定
 ------------------------------------------------------------------ */
.wrapQuote {
	padding: 20px;
	box-sizing: border-box;
	border-left: 5px solid #e1e1e1;
	background-color: #f2f2f2;
}

/*	関連情報など　ベタボックス
 ------------------------------------------------------------------ */
.wrapSimpleBox {
	padding: 20px;
	box-sizing: border-box;
	background-color: #f2f2f2;
}