@charset "utf-8";

/*========================

プライバシーポリシー

========================*/

/*------------------------
常にインクルードするCSS
------------------------*/

@import "reset.css";
@import "base.css";



/*------------------------

レイアウト

------------------------*/

.in_left{
	width:400px;
	margin:0;
	padding:0;
	float:left;
	}
	
.in_right{
	width:400px;
	margin:0;
	padding:0;
	float:right;
	}

/*------------------------

テキスト右寄せ

------------------------*/

.text_right{
	width:856px;
	margin:0 auto 5px;
	padding:0;
	text-align:right;
	}

/*------------------------

テキストボックス

------------------------*/	

.text_box{
	width:830px;
	margin:0 auto 15px;
	padding:10px;
	background-color:#efefef;
	border:solid #ccc 1px;
	}

/*------------------------

勧誘方針

------------------------*/

.mb-0 {
  margin-bottom: 0 !important;
}

.text_soliciting {
  width:856px; 
	margin:0 auto;
	padding:0;
	line-height:140%;
}
 
.text_soliciting p {
  margin-bottom:12px;
}
.list-num {
  counter-reset: number 0;
}
.list-num li {
  position: relative;
  padding-left:2em;
  margin-bottom:12px;
}
.list-num li::before {
  counter-increment: number 1;
  content: counter(number) "."; /* 表示形式を指定 */
  position: absolute;
  top: 0;
  left: 0;
  color: #32aeea;
  font-weight: bold;
}
	