@charset "utf-8";
/*-----------------------------------------------------
 common style color
-----------------------------------------------------*/

.txt_red { color: #F33; }
.txt_blue { color: #09F; }
.txt_green { color:#063; }

/*-----------------------------------------------------
 common style font-size
-----------------------------------------------------*/

.fs1 { font-size: 80%; }
.fs2 { font-size: 90%; }
.fs3 { font-size: 110%; }
.fs4 { font-size: 140%; }
.fs5 { font-size: 220%; }

/*-----------------------------------------------------
 common style font-weight
-----------------------------------------------------*/

.fw1 { font-weight: bold; }

/*-----------------------------------------------------
 common style txt_img aline
-----------------------------------------------------*/

.txt_left { text-align: left; }
.txt_cent {	text-align: center; }
.txt_right { text-align: right; }
.img_cent {	text-align: center; display:block; margin:auto; }
.img_right { display:block;margin-left:auto; }
.img_adright { display: block; margin-left: auto; padding-right: 30px; }


/*-----------------------------------------------------
 common style margin & padding
-----------------------------------------------------*/

.marB5 { margin-bottom: 5px; }
.marB10 { margin-bottom: 10px; }
.marB15 { margin-bottom: 15px; }
.marB20 { margin-bottom: 20px; }
.marB25 { margin-bottom: 25px; }
.marB30 { margin-bottom: 30px; }
.marB35 { margin-bottom: 35px; }
.marB35 { margin-bottom: 35px; }
.marB40 { margin-bottom: 40px; }
.marB45 { margin-bottom: 45px; }
.marB50 { margin-bottom: 50px; }

.marT5 { margin-top: 5px; }
.marT10 { margin-top: 10px; }
.marT15 { margin-top: 15px; }
.marT20 { margin-top: 20px; }
.marT25 { margin-top: 25px; }
.marT30 { margin-top: 30px; }
.marT35 { margin-top: 35px; }
.marT45 { margin-top: 45px; }

.marL5 { margin-left: 5px; }
.marL10 { margin-left: 10px; }
.marL15 { margin-left: 15px; }
.marL20 { margin-left: 20px; }
.marL25 { margin-left: 25px; }
.marL30 { margin-left: 30px; }
.marL35 { margin-left: 35px; }

.marR5 { margin-right: 5px; }
.marR10 { margin-right: 10px; }
.marR15 { margin-right: 15px; }
.marR20 { margin-right: 20px; }
.marR25 { margin-right: 25px; }
.marR30 { margin-right: 30px; }
.marR35 { margin-right: 35px; }

.padT5 { padding-top: 5px; }
.padT10 { padding-top: 10px; }
.padT15 { padding-top: 15px; }
.padT20 { padding-top: 20px; }
.padT25 { padding-top: 25px; }
.padT30 { padding-top: 30px; }
.padT35 { padding-top: 35px; }

.padB5 { padding-bottom: 5px; }
.padB10 { padding-bottom: 10px; }
.padB15 { padding-bottom: 15px; }
.padB20 { padding-bottom: 20px; }
.padB25 { padding-bottom: 25px; }
.padB30 { padding-bottom: 30px; }
.padB35 { padding-bottom: 35px; }
.padB40 { padding-bottom: 40px; }
.padB45 { padding-bottom: 45px; }
.padB50 { padding-bottom: 50px; }
/*-----------------------------------------------------
 common style width
-----------------------------------------------------*/

.w20 { width:20px; }
.w60 { width:60px; }
.w80 { width:80px; }
.w100 { width:100px; }
.w120 { width:120px; }
.w200 { width:200px; }
.w300 { width:300px; }
.w455 { width:455px; }

/*-----------------------------------------------------
Link Button
-----------------------------------------------------*/
.linkpdf a {
	background: url(/icjs/common/img/icon_pdf.gif) no-repeat left center;
	padding-left: 20px;
	margin-left: 5px;
}

.linkmail a {
	background: url(/icjs/common/img/icon_mail.gif) no-repeat left center;
	padding-left: 20px;
	margin-left: 5px;
}

.linkie a {
	background: url(/icjs/common/img/icon_ie.gif) no-repeat left center;
	padding-left: 20px;
	margin-left: 5px;
}

.linkword a {
	background: url(/icjs/common/img/icon_word.gif) no-repeat left center;
	padding-left: 20px;
	margin-left: 5px;
}

.linkxls a {
	background: url(/icjs/common/img/icon_excel.gif) no-repeat left 1px;
	padding-left: 20px;
	margin-left: 5px;
}

/*-----------------------------------------------------
List Style Basic
-----------------------------------------------------*/
/* line */

ul.type1 {
	margin-left: 20px;
}

ul.type1 li {
	position: relative;
}

ul.type1 li::after {
	display: block;
	content: '';
	position: absolute;
	top: .7em;
	left: -1em;
	width: 8px;
	height: 1px;
	background-color: #666;
}

/* arrow 01 */
ul.type2 {
	margin-left: 20px;
}

ul.type2 li {
	position: relative;
}

ul.type2 li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 6px;
	height: 6px;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* arrow 02 */
ul.type3 {
	margin-left: 20px;
}


ul.type3 li {
	position: relative;
}

ul.type3 li::after,
ul.type3 li::before {
	display: block;
	content: '';
	position: absolute;
}

ul.type3 li::after {
	top: 8px;
	left: -1em;
	width: 6px;
	height: 6px;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

ul.type3 li::before {
	top: 11px;
	left: -1.025em;
	width: 8px;
	height: 1px;
	background-color: #666;
}

/* original disc 01 */
ul.type4 {
	margin-left: 20px;
}


ul.type4 li {
	position: relative;
}

ul.type4 li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 6px;
	height: 6px;
	background-color: #666;
	border-radius: 100%;
}

/* original disc 02 */
ul.type5 {
	margin-left: 20px;
}

ul.type5 li {
	position: relative;
}

ul.type5 li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 5px;
	height: 5px;
	background-color: #fff;
	border: 1px solid #3498db;
	border-radius: 100%;
}

/* arrow x disc */
ul.type6 {
	margin-left: 20px;
}

ul.type6 li {
	position: relative;
}

ul.type6 li::after,
ul.type6 li::before {
	display: block;
	content: '';
	position: absolute;
}

ul.type6 li::after {
	top: .35em;
	left: -1.2em;
	width: 14px;
	height: 14px;
	background-color: #3498db;
	border-radius: 100%;
}

ul.type6 li::before {
	z-index: 2;
	top: .625em;
	left: -.975em;
	width: 4px;
	height: 4px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* diamond */
ul.type7 {
	margin-left: 20px;
}

ul.type7 li {
	position: relative;
}

ul.type7 li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 6px;
	height: 6px;
	background-color: #3498db;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* check mark */
ul.type8 {
	margin-left: 20px;
}


ul.type8 li {
	position: relative;
}

ul.type8  li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 8px;
	height: 3px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*-----------------------------------------------------
h1 Style Basic
-----------------------------------------------------*/
h1.type1 {
	padding-bottom: 0.5em;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}
h1.type1:first-letter {
	margin-right: .1em;
	font-size: 1.5em;
}

h1.type2 {
	padding: .25em 0 .25em .75em;
	border-left: 6px solid #ccc;
	margin-bottom: 20px;
}

h1.type3 {
	position: relative;
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #3498db;
	margin-bottom: 20px;
}

h1.type3::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #ccc;
}

h1.type4 {
	padding: .5em .75em;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 20px;
}

h1.type5 {
	padding: 1em;
	border: 3px solid #ccc;
	border-radius: 3em .7em 2em .7em/.7em 2em .7em 3em;
	margin-bottom: 20px;
}

h1.type6 {
	position: relative;
	padding: .75em 1em .75em 1.5em;
	border: 1px solid #ccc;
	margin-bottom: 20px;
}

h1.type6::after {
	position: absolute;
	top: .5em;
	left: .5em;
	content: '';
	width: 6px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	background-color: #3498db;
	border-radius: 4px;
}

h1.type7 {
	padding: .5em .75em;
	background-color: #f6f6f6;
	border-radius: 6px;
	margin-bottom: 20px;
}

h1.type8 {
	padding: .5em .75em;
	background-color: #f6f6f6;
	border-left: 6px solid #ccc;
	margin-bottom: 20px;
}

h1.type9 {
	position: relative;
	padding-bottom: .5em;
	border-bottom: 4px solid #ccc;
	margin-bottom: 20px;
}

h1.type9::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 4px;
	background-color: #3498db;
}

h1.type10 {
	position: relative;
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #ccc;
	margin-bottom: 20px;
}

h1.type10::before {
	position: absolute;
	left: -6px;
	bottom: 0;
	content: '';
	width: 6px;
	height: 50%;
	background-color: #3498db;
}

h1.type10::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #ccc;
}

h1.type11 {
	position: relative;
	padding: .5em .75em;
	background-color: #f0f0f0;
	border-radius: 6px;
	margin-bottom: 20px;
}

h1.type11::after {
	position: absolute;
	top: 100%;
	left: 30px;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 15px solid #f0f0f0;
}

h1.type12 {
	position: relative;
	padding: .5em .75em;
	background-color: #f0f0f0;
	border-radius: 6px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, .1) inset;
	margin-bottom: 20px;
}

h1.type12::after {
	position: absolute;
	top: 100%;
	left: 30px;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 15px solid #f0f0f0;
}

h1.type13 {
	position: relative;
	padding: .5em .75em;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	margin-bottom: 20px;
}

h1.type13::before,
h1.type13::after {
	position: absolute;
	top: 100%;
	left: 30px;
	content: '';
	height: 0;
	width: 0;
	border: 10px solid transparent;
}

h1.type13::before {
	border-top: 15px solid #ccc;
}

h1.type13::after {
	margin-top: -2px;
	border-top: 15px solid #fff;
}

h1.type14 {
	position: relative;
	padding: 1em;
	background-color: #f6f6f6;
	margin-bottom: 20px;
}

h1.type14::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 0;
	border-width: 0 16px 16px 0;
	border-style: solid;
	border-color: #fff #fff #ddd #ddd;
	box-shadow: -1px 1px 2px rgba(0, 0, 0, .1);
}

h1.type15 {
	position: relative;
	padding: 1em 4em 1em 1em;
	-webkit-background: linear-gradient(-155deg, rgba(0, 0, 0, 0) 1.5em, #f6f6f6 0%);
	background: linear-gradient(-155deg, rgba(0, 0, 0, 0) 1.5em, #f6f6f6 0%);
	border-radius: 6px;
	margin-bottom: 20px;
}

h1.type15::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 1.65507em;
	height: 3.5493em;
	background: -webkit-linear-gradient(to left bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .2));
	background: linear-gradient(to left bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .2));
	border-bottom-left-radius: 6px;
	box-shadow: -.2em .2em .3em -.1em rgba(0, 0, 0, .15);
	-webkit-transform: translateY(-1.89424em) rotate(-40deg);
	transform: translateY(-1.89424em) rotate(-40deg);
	-webkit-transform-origin: bottom right;
	transform-origin: bottom right;
}

h1.type16 {
	position: relative;
	padding: 0 .4em .1em;
	margin-bottom: 20px;
}

h1.type16::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 100%;
	height: 10px;
	background-color: #b6f0fc;
}

h1.type17 {
	padding: .5em .75em;
	background: -webkit-linear-gradient(top, #69b4e6 0%, #3498db 100%);
	background: linear-gradient(to bottom, #69b4e6 0%, #3498db 100%);
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
	margin-bottom: 20px;
}

h1.type18 {
	padding: .5em .75em;
	background: -webkit-repeating-linear-gradient(45deg, #3498db, #3498db 5px, #69b4e6 5px, #69b4e6 10px);
	background: repeating-linear-gradient(45deg, #3498db, #3498db 5px, #69b4e6 5px, #69b4e6 10px);
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
	margin-bottom: 20px;
}

h1.type19 {
	position: relative;
	padding-bottom: .5em;
	margin-bottom: 20px;
}

h1.type19::before,
h1.type19::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	height: 4px;
}

h1.type19::before {
	z-index: 2;
	width: 15%;
	background-color: #444;
}

h1.type19::after {
	width: 100%;
	background: -webkit-repeating-linear-gradient(45deg, #fff, #fff 2px, #aaa 2px, #aaa 4px);
	background: repeating-linear-gradient(45deg, #fff, #fff 2px, #aaa 2px, #aaa 4px);
}

h1.type20 {
	padding: .75em 1em;
	border: 1px solid #ccc;
	border-top: 3px solid #3498db;
	background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
	background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
	margin-bottom: 20px;
}

h1.type21 {
	position: relative;
	padding: .75em 1em .75em 2em;
	border: 1px solid #ccc;
	border-top: 3px solid #3498db;
	background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
	background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
	margin-bottom: 20px;
}

h1.type21::after {
	position: absolute;
	top: 1em;
	left: .6em;
	z-index: 2;
	content: '';
	width: 10px;
	height: 10px;
	border: 3px solid #3498db;
	border-radius: 100%
}

/*-----------------------------------------------------
 オリジナルファイル（共通）
-----------------------------------------------------*/

table.textbook {
	border-collapse: collapse;
	width: 100%;
    margin-bottom:20px;
}

table.textbook th {
	background-color: #f3f3f3;
	padding: 8px;
	border: 1px solid #CCC;
	text-align: center;
white-space: nowrap;
	vertical-align: middle;
}

table.textbook td {
	padding: 8px;
	border: 1px solid #CCC;
    	vertical-align: middle;
}

ul.list_01 {
margin-bottom:35px;
}

ul.list_01 li {
  position: relative;
margin-left:20px;
margin-bottom:7px;
}
ul.list_01 li::after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 6px;
  height: 6px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);

}

.tbl_01 {
	width: 100%;
	margin: 5px 0px 20px;
	border-collapse: collapse;
}

.tbl_01 th {
	width: 15%;
	text-align: left;
	padding: 10px 5px 5px 25px;
	border: 1px solid #e3e3e3;
	font-weight: normal;
	vertical-align: middle;
	background-color: #f6f6f6;
}

.tbl_01 td {
	vertical-align: middle;
	background: #FFF;
	padding: 10px 5px 5px 25px;
	border: 1px solid #e3e3e3;
}



.indexreadmore {
color:#AC718B;
}

/*ページ分割*/
.pagenate {
text-align:center;
font-size:90%;
font-family: Arial, Helvetica, sans-serif;
}
.pagenate ul {
/*blog.css で ul に margin-left 30px が設定されているため*/
margin-left:0;
}
.pagenate ul li {
list-style-type : none;
display:inline;
background-color:#fff;
}
.pagenate  ul li a {
text-decoration:none;
border:1px solid #ccc;
padding:7px 7px;
color:#AC718B;
}
.pagenate  ul li a:hover {
background-color:#AC718B;
color:#fff;
border:1px solid #ccc;
}
.pagenate  ul li a:visited {
/*必要なら*/
}
.pagenate  ul span.current_page {
padding:1px 5px;
color:#000;

}

