@charset "utf-8";
/*------------------------------------------------------
　リスト
-------------------------------------------------------*/
dl{
	margin:0 0 1em 0;
}
dt{
	margin:0 0 0.1em 0;
	font-weight:bold;
}
dd{
	margin:0 0 0.5em 0.5em;
}
/*ノーマル*/
.page_content ul{
	margin-bottom: 1em;
}
.page_content ul li{
	list-style-type: disc;
	margin-bottom:3px;
	margin-left: 1.5em;
}
.page_content ol {
	margin-bottom: 1em;
}
.page_content ol li {
	list-style: outside decimal;
	margin-left: 1.5em;
}

/*--横並びリスト--*/
/*table_list*/
ul.list_table {
	list-style: none;
	display: table;
}
ul.list_table li {
	list-style: none;
	display: table-cell;
}
/*inline-block*/
ul.list_inline {
	text-align: center;
	list-style: none;
}
ul.list_inline li {
	display: inline-block;
	vertical-align: top;
}
@media screen and (max-width:768px){
	ul.list_inline li {
		display: block;
		margin: 0 auto 1em;
	}
}

/*スマホ時も保つ*/
ul.list_inline_sp {
	text-align: center;
	list-style: none;
}
ul.list_inline_sp li {
	display: inline-block;
	vertical-align: top;
}
/*左寄せ*/
ul.list_inline_left {
	text-align: left;
	list-style: none;
}
ul.list_inline_left li {
	display: inline-block;
	vertical-align: top;
}

/*チェックマーク*/
ul.list_check li {
  position: relative;
	list-style: none;
}
ul.list_check li::after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 8px;
  height: 3px;
  border-left: 2px solid #FF9393;
  border-bottom: 2px solid #FF9393;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*カッコつきリスト*/ 
ol.list_brackets li{
	list-style-type: none;
	list-style-position: outside;
	counter-increment: cnt;
	margin-left: 0;
	padding-left: 1.8em;
	text-indent: -1.8em;
}
ol.list_brackets li:before{
	display: marker;
	content: "(" counter(cnt) ") ";
}

/*矢印*/
ul.arrow01 li {
	position: relative;
	list-style: none;
}
ul.arrow01 li:after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 6px;
	height: 6px;
	border-right: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*円の上に矢印*/
ul.arrow02 li {
	position: relative;
	list-style: none;
}
ul.arrow02 li:after,
ul.arrow02 li:before {
	display: block;
	content: '';
	position: absolute;
}
ul.arrow02 li:after {
	top: .35em;
	left: -1.2em;
	width: 14px;
	height: 14px;
	background-color: #3498db;
	border-radius: 100%;
}
ul.arrow02 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);
}


@media screen and (max-width:768px){
ul.arrow01 li {
	margin: 0.5em;
}
ul.arrow01 li:after,
ul.arrow01 li:before {
	display: block;
	content: '';
	position: absolute;
}
ul.arrow01 li:after {
	width: 0;
	height: 0;
}
ul.arrow01 li:before {
	width: 0;
	height: 0;
	border-right: none;
	border-bottom: none;
	-webkit-transform: none;
	transform: none;
}
ul.arrow01 li a {
	padding: 0.5em;
	border: solid 1px #CCCCCC;
	background: #0479BF url(../img/common/btn_bg02.jpg) repeat-x top;
	overflow: hidden;
	display: block;
	border-radius: 6px;
	color: #FFFFFF;
	text-decoration: none;
}
ul.arrow01 li a:over {
	padding: 0.5em;
	border: solid 1px #CCCCCC;
	background: #BDD7E1;
}
	
	
ul.arrow02 li {
	margin: 0.5em;
}
ul.arrow02 li:after,
ul.arrow02 li:before {
	display: block;
	content: '';
	position: absolute;
}
ul.arrow02 li:after {
	width: 0;
	height: 0;
}
ul.arrow02 li:before {
	width: 0;
	height: 0;
	border-right: none;
	border-bottom: none;
	-webkit-transform: none;
	transform: none;
}
ul.arrow02 li a {
	padding: 0.5em;
	border: solid 1px #CCCCCC;
	background: url(../img/temp/navi_back.jpg) repeat-x top;
	overflow: hidden;
	display: block;
}
ul.arrow02 li a:over {
	padding: 0.5em;
	border: solid 1px #CCCCCC;
	background: #BDD7E1;
}
}
