/* マニュアルスタイル */

/*******************************************************************/
/* マニュアル */
#manual {
	line-height: 300%;
/*	font-size: 12px;*/
	font-size: 14px;
	margin: 3px;
	padding-top: 20px;
}

@media (min-width: 768px) {
	#manual {
		line-height: 300%;
/*		font-size: 12px;*/
		font-size: 14px;
		margin: 20px;
		padding-top: 30px;
	}
}

/* base.css を上書きしている */
@media (min-width: 900px) {
	#container {
		width: 900px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* 目次の項目 */
#index {
/*	font-size: 13px;*/
	font-size: 14px;
	font-weight: bold;
	line-height: 150%;
}

#index h1 {
	font-size: 18px;
	padding: 10px;
	line-height: 200%;
}

#index .indent1 {
	color: #006DAF;
	padding-left: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#index .indent2 {
	color: #006DAF;
	padding-left: 35px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#index .indent3 {
	color: #006DAF;
	padding-left: 55px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#index .indent4 {
	color: #006DAF;
	padding-left: 75px;
	padding-top: 5px;
	padding-bottom: 5px;
}
/*******************************************************************/


/*******************************************************************/
/* 項目 */
#manual h1 {
	font-size: 18px;
}

#manual h2 {
	font-size: 14px;
	color: #FFFFFF;
	line-height: 150%;
	/*height: 35px;*/
	padding-top: 8px;
	padding-bottom: 4px;
	padding-left: 5px;
	margin-top: 20px;
	margin-bottom: 5px;
	background-color: #0079c2;
}

#manual h3 {
	font-size: 14px;
	color: #003A75;
	/*line-height: 110%;*/
	margin-top: 30px;
	padding-left: 5px;
	border-left: 8px solid #0079c2;
	border-bottom: 2px solid #0079c2;
}

#manual h4 {
	font-size: 14px;
	color: #003A75;
	margin-top: 25px;
	margin-bottom: 10px;
	padding-left: 5px;
	background-color: #f5f5f5;
	/*#d3d3d3 #f5f5f5 #add8e6 #f0ffff #f5fffa #fffff0 #f0f8ff #f0ffff*/
}

#manual h5 {
/*	font-size: 13px;*/
	font-size: 14px;
	color: #003A75;
	margin-top: 25px;
	padding-left: 5px;
}

#manual h6 {
/*	font-size: 13px;*/
	font-size: 14px;
	color: #6699FF;
	margin-top: 25px;
	padding-left: 5px;
}

@media (min-width: 768px) {
	#manual h2 {
		height: 35px;
		padding-left: 25px;
		background: url(img/title_bar_type1_1.gif) no-repeat;
	}
	
	#manual h3 {
		font-size: 14px;
		color: #003A75;
		margin-top: 30px;
		padding-left: 25px;
		border: none;
		background: url(img/title_bar_type1_2.jpg) no-repeat;
	}
}
/*******************************************************************/


/*******************************************************************/
/* 検索 */
#search{
	position: relative;
	line-height: 100%;
	font-size: 10px;
	padding-top: 20px;
	padding-right: 10px;
	text-align: right;
}

.word{
	width: 250px;
	height: 20px;
}

@media (min-width: 768px) {
	#search{
		line-height: 100%;
		font-size: 10px;
		padding-top: 20px;
		padding-right: 10px;
		text-align: right;
	}
	
	.word{
		width: 400px;
	}
}

.searchresult{
	padding-top: 20px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.searchlink{
	font-size: 14px;
}

.searchchara{
	line-height: 150%;
	font-size: 11px;
	padding-left: 15px;
}
/*******************************************************************/


/*******************************************************************/
/* 画像 */
/*
#manual img {
	max-width: 95%;
	height: auto;
	border: 1;
	align: center;
	vertical-align: middle;
}

@media (min-width: 768px) {
	#manual img {
		border: 1;
		align: center;
		vertical-align: middle;
	}
}
*/
/*******************************************************************/


/*******************************************************************/
/* リスト */
#manual ul {
	margin-left: 30px;
}

#manual ol {
	margin-left: 30px;
}
/*******************************************************************/


/*******************************************************************/
/* テーブル */
#manual table{
	width: 98%;
	border: 1px #808080 solid;
	border-collapse: collapse;
}

@media (min-width: 768px) {
	#manual table{
		width: 90%;
		border: 1px #808080 solid;
		border-collapse: collapse;
		margin-left: 30px;
	}
}

#manual thead{
	background-color: #d9d9d9;
}

#manual th{
	background-color: #d9d9d9;
	border: 1px #808080 solid;
	text-align: center;
}

#manual tr{
	border: 1px #808080 solid;
}

/* 偶数行に色を付ける*/
/*
tr:nth-child(even) {
	background: #d9d9d9;
}
*/

#manual td{
	border: 1px #808080 solid;
	line-height: 200%;
/*	font-size: 12px;*/
	font-size: 14px;
}
/*******************************************************************/


/*******************************************************************/
/* モバイルではテーブルを1カラム化*/
/* https://qiita.com/zaru/items/b521d7e2cff708dc074a */
@media (max-width: 599px) {
	.responsive {
		border-collapse: separate;
		border-spacing: 0  20px;
	}
	
	.responsive thead {
		display: none;
	}
	
	.responsive tr {
	}
	
	.responsive td {
		border: none;
		display: block;
		width: 100%;
		box-sizing: border-box;
		border-bottom: 1px solid #dddddd;
	}
	
	.responsive td.background {
		background-color: #d9d9d9;
	}
	
	.responsive td.txt-left {
		float: left;
	}
	
	.responsive td.txt-right {
		text-align: right;
	}
	
	.responsive td:before {
		content: attr(data-title) " ";
	}
	
	.responsive .clear {
		clear: both;
	}
}
/*******************************************************************/


/*******************************************************************/
/* 楽アフィリのテーブル */
/* kessai.html */
/* 名前、メールアドレスなどをWebページに表示 */
@media (max-width: 599px) {
	#ppa_t_wpcins .iti {
		width: 55px;
	}
	
	#ppa_t_wpcins .mei {
		width: 100px;
	}
}

/* data.html */
/* 決済時のデータ */
#ppa_t_paydata .koumoku {
	width: 160px;
}

@media (max-width: 599px) {
	#ppa_t_paydata .koumoku {
		width: auto;
	}
}

/* data.html */
/* 報酬支払時のデータ */
#ppa_t_shiharai .koumoku {
	width: 150px;
}

@media (max-width: 599px) {
	#ppa_t_shiharai .koumoku {
		width: auto;
	}
}

/* err.html */
/* 決済時エラーメッセージ */
#ppa_t_payerrmsg .msg {
	width: 160px;
}

@media (max-width: 599px) {
	#ppa_t_payerrmsg .msg {
		width: auto;
	}
}

/* pay.html */
/* ペイアウトcron設定説明 */
#ppa_t_paycron .sentakuti {
	width: 80px;
}

@media (max-width: 599px) {
	#ppa_t_paycron .sentakuti {
		width: auto;
	}
}

/* 支払結果 */
#ppa_t_kekka .koumoku {
	width: 110px;
}

@media (max-width: 599px) {
	#ppa_t_kekka .koumoku {
		width: auto;
	}
}

/* 全銀cron設定説明 */
#ppa_t_zengincron .sentakuti {
	width: 90px;
}

@media (max-width: 599px) {
	#ppa_t_zengincron .sentakuti {
		width: auto;
	}
}

/* 全銀vsv項目説明 */
.ppa_t_zencsvkoumoku .koumokuno {
	width: 30px;
}

.ppa_t_zencsvkoumoku .koumokumei {
	width: 160px;
}

@media (max-width: 599px) {
	.ppa_t_zencsvkoumoku .koumokuno {
		width: auto;
	}
	
	.ppa_t_zencsvkoumoku .koumokumei {
		width: auto;
	}
}
/*******************************************************************/


/*******************************************************************/
/* 羅針盤のテーブル */
/* bklog.html */
/* エラーメッセージ一覧 */
#cmp_t_log .msg {
	width: 240px;
}

@media (max-width: 599px) {
	#cmp_t_log .msg {
		width: auto;
	}
}
/*******************************************************************/


/*******************************************************************/
/* オートメールのテーブル */
/* install.html */
/* 購入者ファイル */
#ppm_t_insbuyer .koumoku {
	width: 100px;
}

/* item.html */
/* 商品登録 */
#ppm_t_itement .koumoku {
	width: 90px;
}

/* item.html */
/* メール送信設定 */
#ppm_t_mail .koumoku {
	width: 100px;
}

/* data.html */
/* 購入者データの確認 */
#ppm_t_buyer .koumoku {
	width: 120px;
}

/* err.html */
/* エラーメッセージ一覧 */
#ppm_t_errlist .msg {
	width: 130px;
}
/*******************************************************************/


/*******************************************************************/
/* 毎度メールのテーブル */
/* install.html */
/* 購入者ファイル */
#mai_t_cycle .koumoku {
	width: 130px;
}

/* item.html */
/* 商品登録 */
#mai_t_itement .koumoku {
	width: 90px;

}

/* item.html */
/* 支払情報 */
#mai_t_itemid .koumoku {
	width: 100px;
}

/* item.html */
/* メール送信基本設定 */
#mai_t_bsendset .koumoku {
	width: 100px;
}

/* item.html */
/* メール送信設定 */
#mai_t_sendset .koumoku {
	width: 90px;
}
/*******************************************************************/


/*******************************************************************/
/* 銀行メールのテーブル */
/* item.html */
/* 商品登録 */
#bank_t_itement .koumoku {
	width: 50px;
}

/* item.html */
/* メール送信設定 */
#bank_t_tmail .koumoku {
	width: 90px;
}
/*******************************************************************/


/*******************************************************************/
/* 横スクロール */
/* https://webliker.info/02035/ */
.table-scroll{
	overflow-x : auto
}

/* テーブル構造とタグの関係がわかりやすい */
/* http://www.htmq.com/html5/thead.shtml */
/*******************************************************************/


/*******************************************************************/
/* ページナビ */
#page_navi {
	width: 100%;
/*	font-size: 12px;*/
	font-size: 14px;
	text-align: center;
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	#page_navi {
	}
}

#page_navi p {
/*	font-size: 12px;*/
	font-size: 14px;
	color: #FFFFFF;
}

#page_navi a {
	color: #000077;
	text-decoration: none;
}
/*******************************************************************/


/*******************************************************************/
/* トップメニュー */
#top_bar {
	z-index: 99;	/* モバイル時フッタが上に来るのを防ぐため */
	clear: both;
	width: 100%;
	position: absolute;  
/*	font-size: 13px;*/
	font-size: 14px;
	text-align: left;
	background-color: #7C97AE;
	padding-bottom: 2px;
	border-bottom: 1px solid #CCCCCC;
}

@media (min-width: 768px) {
	#top_bar {
		width: 95%;	/*スクロール時上に固定するため*/
	}
}

@media (min-width: 900px) {
	#top_bar {
		width: 900px;
	}
}

/* 画面最上部までスクロール後固定 */
/* javaScriptからfixedクラスを設定 */
/* https://webdesignday.jp/inspiration/technique/css/4166/ */
#top_bar.fixed{
	position: fixed;
	top: 0;
}

#top_bar a {
}

.bar_link {
	/*padding-left: 25px;*/
	font-size: 14px;
	font-weight: bold;
	color: #006DAF;
	
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	border-bottom: 25px;
}

.select {
	background-color: #b0e0e6;
}

.top_nav {
	margin-left: 20px;
	margin-right: 20px;
	color: #FFFFFF;
	font-size: 14px;
}

.top_nav a {
	color: #FFFFFF;
	text-decoration: none;
}

.top_nav a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
/*******************************************************************/


/*******************************************************************/
/* マニュアルインデックス */
/* メニューを左に隠しておく */
/* 隠しチェックボックスを置いてチェックの有り無しで表示非表示を切り替える */
/* https://saruwakakun.com/html-css/reference/nav-drawer */
/* base.cssにあるのはマニュアル以外の左メニューのcss */
/* 動きが違うのでマニュアル用のcssはここmanual.cssで上書きする */

/* インデックス格納部分 */
#left-drawer {
	position: relative;
	padding-left: 10px;
}

/* チェックボックス等非表示 */
.left-unshown {
	display:none;
}

/* クリックでメニュー表示 */
#left-open {
	display: inline-block;
	height: 22px;
	vertical-align: middle;
	
	color: #FFFFFF;
	padding-top: 8px;
	padding-left: 30px;
	cursor: pointer;
	background: url(img/ya_small_right.png);
	background-repeat: no-repeat;
	background-position: left center;
}

/* メニュー後ろの薄黒カバークリックでメニュー非表示 */
#left-close {
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;	/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
	
/* ×表示 */
#left-close-x {
	display: block;
	width: 90%;
	font-size: 16px;
	font-weight: bold;
}	

/* インデックスの中身 */
#left-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;	/*最前面に*/
	width: 90%;	/*右側に隙間を作る*/
	max-width: 330px;	/*最大幅*/
	height: 100%;
	background: #FFFFFF;	/*背景色*/
	transition: .3s ease-in-out;	/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);	*左に隠しておく*/
}

#left-content a {
	color: #006DAF;
}

/* チェックが入ったら表示 */
#left-input:checked ~ #left-close {
	display: block;	/*カバーを表示*/
	opacity: .5;
}

#left-input:checked ~ #left-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);	/*中身を表示*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/* ×クリックでメニュー非表示 */
#left-input:checked ~ #left-close-x {
	display: block;
	opacity: .5;
}
/*******************************************************************/


/*******************************************************************/
/* ページの文章構造 */
/* メニューを右に隠しておく */
/* 隠しチェックボックスを置いてチェックの有り無しで表示非表示を切り替える */
/* スクロールに合わせて現在の位置に該当するヘッダの背景を変える */

/* ページの文章構造格納部分 */
#right-drawer {
	position: relative;
	float: right;
	padding-right: 10px;
	text-align: left;
}

/* チェックボックス等非表示 */
.right-unshown {
	display:none;
}

/* クリックでメニュー表示 */
#right-open {
	display: inline-block;
	height: 22px;
	color: #FFFFFF;

	padding-top: 8px;
	padding-right: 30px;
	cursor: pointer;
	background: url(img/ya_small_left.png);
	background-repeat: no-repeat;
	background-position: right center;
}

/* メニュー後ろの薄黒カバークリックでメニュー非表示 */
#right-close {
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;	/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
	
/* ×表示 */
#right-close-x {
	display: block;
	width: 90%;
	font-size: 16px;
	font-weight: bold;
	text-align: right;
}	

/* 構造の中身 */
#right-content {
	overflow: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;	/*最前面に*/
	width: 90%;	/*左側に隙間を作る*/
	max-width: 330px;	/*最大幅*/
	height: 100%;
	background: #fff;	/*背景色*/
	transition: .3s ease-in-out;	/*滑らかに表示*/
	
	-webkit-transform: translateX(105%);
	transform: translateX(105%);	/*右に隠しておく*/
}

#right-content a {
	color: #006DAF;
}

/* チェックが入ったら表示 */
#right-input:checked ~ #right-close {
	display: block;	/*カバーを表示*/
	opacity: .5;
}

#right-input:checked ~ #right-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);	/*中身を表示*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/* ×クリックでメニュー非表示 */
#right-input:checked ~ #left-close-x {
	display: block;
	opacity: .5;
}

/* スクロールに合わせてメニューの背景を変える */
/*#index-content span.current {*/
#right-content a.current {
	background-color: #b0e0e6;
	
}

/* 各項目のリンクのインデント */
#right-content .indent1 {
	font-size: 14px;
	font-weight: bold;
	color: #006DAF;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	border-bottom: 25px;
}

#right-content .indent2 {
	font-size: 14px;
	font-weight: bold;
	color: #006DAF;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 35px;
	border-bottom: 25px;
}

#right-content .indent3 {
	font-size: 14px;
	font-weight: bold;
	color: #006DAF;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 55px;
	border-bottom: 25px;
}

#right-content .indent4 {
	font-size: 14px;
	font-weight: bold;
	color: #006DAF;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 75px;
	border-bottom: 25px;
}
/*******************************************************************/


/*******************************************************************/
.tag {
	 line-height:150%;
}

#more {
	display :none;
}
/*******************************************************************/
