@charset "utf-8";
/* CSS Document */

iframe {
	margin: 0px;
	padding:0px;
	width: 100%;
	height: 1500px;
}


/* =======================================================================
	全体(ページ全体の共通設定)
   ======================================================================= */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* リストマーカー非表示（表示する場合は個別に設定） */
	list-style: none;
}

body {
	-webkit-user-select: none;
	/* スマホ回転対策 */
	-webkit-text-size-adjust: 100%;
}

img {
	/* 画像枠線非表示（IE対策・表示する場合は個別に設定） */
	border: none;
}

/* ------------------------------------------------------------------
	文字設定
   ------------------------------------------------------------------ */

body,body a {
	font-family: 'メイリオ', Meiryo,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	color: #575757;
	font-size: 15px;
	letter-spacing: 0.7px;
	line-height: 26px;
	text-decoration: none;
}

/* =======================================================================
	ヘッダー <header>~</header>内部
   ======================================================================= */

header {
	width:100%;
	background-color: #fff;
	border-bottom: 1px #cecece solid;
	z-index:1000;
	position: fixed;
	top: 0;
	left:0;
}

/* =======================================================================
	メイン <main>~</main>内部
   ======================================================================= */

main {
	width: 100%;	
	/* <main>タグにブロック属性付与（IE対策） */
	display: block;
	/* 高さの最低値 */
	min-height: 50vh;
}

.main-support {
	background-color: #DFE6CF;
}
.main-support2 {
	background-color: #faf0e6;
}


/* ------------------------------------------------------------------
	字ヘッダー
   ------------------------------------------------------------------ */

/* 文字 */
.child-title {
	color: #fff;
	font-weight: normal;
	letter-spacing: 24px;
}

/* 背景 */
.child-head,
.child-head-terms {
	width: 100%;
}
.child-head {
	background-color: #1b74c9; 
}

.child-head-terms {
	background-color: #B40431; 
}


/* ------------------------------------------------------------------
	見出し
   ------------------------------------------------------------------ */
h2 {
	font-size: 15px;
	font-weight: normal;
}

/* ------------------------------------------------------------------
	P余白
   ------------------------------------------------------------------ */

.p-margin {
	margin-bottom: 20px;
}

/* ------------------------------------------------------------------
	リンク
   ------------------------------------------------------------------ */

/*リンク下線 */
.link {
	color:#1B74C9;
	text-decoration: underline;
}
.link:hover {
	color:#0094dd;
	text-decoration: none;
}

/* ------------------------------------------------------------------
	テーブル
   ------------------------------------------------------------------ */

table.list-normal {
	margin:0 auto;									/* 位置調整(中心) */
}

table.list-normal th {
	background:#ECECEC;								/* 灰色 */
	text-align: left;								/* 左寄せ */
}

/* ------------------------------------------------------------------
	ナンバー
   ------------------------------------------------------------------ */

.list-number {
	float: left;
}

table th span:not(.list-number):not(.br-in-block-com) {
	display: block;
	margin-left: 25px;
}

/* ------------------------------------------------------------------
	リスト
   ------------------------------------------------------------------ */

ul.terms-list-number-only li
{
	list-style-type: decimal; 
}

ul.terms-list-number-only li:not(:first-child) {
	margin-top:20px; 
}

ul.terms-list-number li {
	list-style-type:none;
	list-style-position:inside;
	counter-increment: cnt;
}
ul.terms-list-number li:not(:first-child) {
	margin-top:7px; 
}
ul.terms-list-number li:before{
	display: marker;
	content: "(" counter(cnt) ") ";
}
ul.terms-list-number {
	letter-spacing: 0px;
}
ul.terms-list-number li {
	text-indent: -1.8em;
    margin-left: 1.8em;
}

ul.terms-list-number li:nth-child(n+10) {
	text-indent: -2.4em;
    margin-left: 2.4em;
}

ul.terms-list-number-definition li:not(:first-child) {
	margin-top:10px; 
}
span.font-bold {
	font-weight: bold;
}


/* ------------------------------------------------------------------
	サイン
   ------------------------------------------------------------------ */

.sign {
	text-align: right;
	letter-spacing: 3px;
}

/* =======================================================================
	フッター <footer>~</footer>内部
   ======================================================================= */

footer {
	width: 100%;
	background: #000;
	color: #e6e6e6;
	font-size: 13px;
	line-height: 20px;
}

/* ------------------------------------------------------------------
	コピーライト
   ------------------------------------------------------------------ */

.foot-copyright {
	padding: 20px 0px;
	text-align: center;
}
