/*******************************************************************/
/* 全体の設定 */
* {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

body{
	word-break: break-all;
	font-size: 14px;						/* 文字サイズ */
}
/*******************************************************************/


/*******************************************************************/
/* 全体の外枠 */
#container {
	width: 99%;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFFFFF;
	border-width: 1px;
	border-style: solid;
	border-color: #CCCCCC;
	line-height: 190%;
}

@media (min-width: 768px) {
	#container {
		width: 768px;
		_width: 788px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* ソフト情報 */
#soft_info{
	width: 100%;
	top: 0px;
	height: 90px;
	border-width: 1px;
	border-style: solid;
	border-color: #CCCCCC;
	background-color: #FFFFCC;
}

.soft_name{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #FFCC33;
	margin-top: 30px;
	margin-left: 10px;
}

@media (min-width: 768px) {
	.soft_name {
		font-size: 40px;
	}
}

.soft_version{
	text-align: right;
	font-size: 14px;
	color: #FFCC33;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 0px;
}
/*******************************************************************/


/*******************************************************************/
/* メインメニュー */
#content {
	width: 810px;
	_width: 830px;
	float: left;
	border-width: 1px;
	border-style: solid;
	border-color: #CCCCCC;
}
/*******************************************************************/


/*******************************************************************/
/* 1カラムメニュー */
#one_column {
	width: 100%;
	bottom: 0px;
	left: 0px;
	border-width: 1px;
	border-style: solid;
	border-color: #CCCCCC;
}

/*
#one_column{
}

#one_column table tr td th{
	border: 1px #808080  solid;
	border-collapse: collapse;
	padding-left: 5px;
	padding-right: 5px;
	height: 20px;
}

#one_column tr {
	vertical-align: top;
}
*/

/*******************************************************************/


/*******************************************************************/
/* ログイン */
#login-form{
	display: table;
	border-collapse: collapse;
	max-width: 768px;
	margin: 0 auto;
}

#login-form .koumoku {
	width: 75px;
	display:table-cell;
}

#login-form .inputbox {
	display:table-cell;
}

#login-form .button{
	text-align: right;
}
/*******************************************************************/


/*******************************************************************/
/* 2カラムメニュー */
#two_column {
	width: 100%;
	border-width: 1px;
	border-style: solid;
	border-color: #CCCCCC;
	overflow:hidden;
}
/*******************************************************************/


/*******************************************************************/
/* 左メニュー */
#left_menu {
	z-index: 99;
	float: left;
	width: 190px;
	_width: 210px;
	padding: 5px;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}

.left_1{
	margin-top: 5px;
	background-color: powderblue;
	line-height: 150%;
	padding: 5px;
}

.left_2{
	margin-left: 5px;
	background-color: azure;
}

/* ここはPCファースト */
@media (max-width: 767px) {
	/* モバイルだけ画面上部へ背景色を付けて表示 */
	#left_menu {
		width: 70px;
		height: 20px;
		position: fixed;
		top: 0px;
		background-color: #bfefdf;
	}
}
/*******************************************************************/


/*******************************************************************/
/* メニューを左に隠しておく */
/* 隠しチェックボックスを置いてチェックの有り無しで表示非表示を切り替える */

/* ここはPCファースト */
/* PCではクリックでメニュー表示のエレメント類を無効にする */

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

/* クリックでメニュー表示 */
#left-open {
	display:none;
}

/* インデックスの中身 */
#left-content {
	padding-bottom: 20px;
}

/* Close非表示 */
#left-close-x {
	display: none;
}

@media (max-width: 767px) {
	/* インデックス格納部分 */
	#left-drawer {
		position: relative;
	}
	
	/* チェックボックス等非表示 */
	.left-unshown {
		display:none;
	}
	
	/* クリックでメニュー表示 */
	#left-open {
		display: inline-block;
		height: 20px;
		color: #FFFFFF;
		cursor: pointer;
	}
	
	#left-open::before {
		content: 'メニュー';
		color: #FFFFFF;
		font-size: 15px;
	}
	
	/* メニュー後ろの薄黒カバークリックでメニュー非表示 */
	#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;
	}
	
	/* Close表示 */
	#left-close-x {
		display: block;
		width: 90%;
		font-size: 16px;
		font-weight: bold;
		color: #006DAF;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 15px;
		border-bottom: 25px;
	}
	
	/* メニューの中身 */
	#left-content {
		/* ↓もともとはauto iOSでのスクロールをチェックするためscrollにして-webkit-overflow-scrollingを入れている */
		/*overflow: auto;*/
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
		/* ↑ */
		
		position: fixed;
		top: 0;
		left: 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%);	/*左に隠しておく*/
	}
	
	/* チェックが入ったら表示 */
	#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);
	}
	
	/* Closeクリックでメニュー非表示 */
	#left-input:checked ~ #left-close-x {
		display: block;
		opacity: .5;
	}
}
/*******************************************************************/


/*******************************************************************/
/* 左メニュー各商品の項目の表示・非表示切り替え */

/* 商品名ラベル（チェックボックスのラベル表示） */
.itembox label {
	display: block;
	cursor :pointer;
	transition: all 0.5s;
}

/* チェックボックスは隠す */
.itembox input {
	display: none;
}

/* 中身は非表示にしておく */
.itembox .itemshow {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.1s;
}

/* クリックで中身表示 */
.itemchk:checked + label + .itemshow {
	height: auto;
	opacity: 1;
}

/* 中身を表示する（特定の商品編集時、リロードでメニューを開いておく） */
.itembox .itemunshow {
	height: auto;
	padding: 0;
	overflow: hidden;
	opacity: 1;
	transition: 0.1s;
}

/* クリックで中身非表示（特定の商品編集時） */
.itemchk:checked + label + .itemunshow {
	height: 0;
	opacity: 0;
}

/* 商品名の前に */
.itembox label:before {
	content: '(+) ';
	font-size: 11px;
}

.itemcate {
	font-size: 10px;
/*	color: #2b470e;	#8dc7aa	*/
	margin-top: 15px;
	background-color: #aad5bf;
	line-height: 150%;
}
/*******************************************************************/


/*******************************************************************/
/* 右メニュー */
#right_menu {
}

@media (min-width: 768px) {
	#right_menu {
		width: 530px;
		_width: 550px;
		margin-left: 220px;
		padding-left: 5px;
		text-align: left;
	}
}
/*******************************************************************/


/*******************************************************************/
/* 右メニューのテーブル */
#right_menu table {
	font-size: 14px;
	border: 1px #808080  solid;
	border-collapse: collapse;
	padding-left: 5px;
	padding-right: 5px;
	height: 20px;
}

#right_menu tr {
	border: 1px #808080  solid;
	border-collapse: collapse;
	padding-left: 5px;
	padding-right: 5px;
	height: 20px;
}

#right_menu td {
	border: 1px #808080  solid;
	border-collapse: collapse;
	padding-left: 5px;
	padding-right: 5px;
 }

#right_menu th {
	background-color: #D6D6D6;
	border: 1px #808080  solid;
	border-collapse: collapse;
	padding-left: 5px;
	padding-right: 5px;
	height: 20px;
}

/* モバイルではテーブルを1カラム化*/
@media (max-width: 599px) {
	#right_menu table {
		width: 280px;
		border: none;
		margin-left: 10px;
	}
	
	#right_menu tr {
		border: none;
	}
	
	#right_menu td {
		/*background-color: #D6D6D6;*/
	}
	
	#right_menu th {
		border: none;
	}
	
	/* 1番目の子要素 */
	.responsive td:nth-child(1) {
		margin-top:20px;
		background-color: #D6D6D6;
	}
	
	.responsive {
		border-collapse: collapse;
		border-spacing: 0px 20px;
	}
	
	.responsive thead {
		display: none;
	}
	
	.responsive td {
		width: 100%;
		border: none;
		display: block;
		/*box-sizing: border-box;*/
	}
	
	.responsive td.cell-left {
		float: left;
		width: 50%;
	}
	
	.responsive td.cell-right {
		float: right;
		width: 40%;
	}
	
	.responsive td:before {
		content: attr(data-title) " ";
	}
	
	.responsive .clear {
		clear: both;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_admin.php */
/* 管理情報 */
#adminf_idpw .koumoku {
	width: 110px;
}

#adminf_idpw #userid{
	width: 200px;
}

#adminf_idpw #userpw{
	width: 200px;
}

@media (max-width: 599px) {
	#adminf_idpw .koumoku {
		width: 100%;
	}
	
	#adminf_idpw #userid{
		width: 200px;
	}
	
	#adminf_idpw #userpw{
		width: 180px;
	}
}

#adminf_insurl .koumoku {
	width: 140px;
}

#adminf_insurl #insurl{
	width: 350px;
}

@media (max-width: 599px) {
	#adminf_insurl .koumoku {
		width: 100%;
	}
	
	#adminf_insurl #insurl{
		width: 250px;
	}
}

#adminf_licence .koumoku {
	width: 120px;
}

#adminf_licence #sei{
	width: 100px;
}

#adminf_licence #mei{
	width: 100px;
}

#adminf_licence #key{
	width: 200px;
}

@media (max-width: 599px) {
	#adminf_licence .koumoku {
		width: 100%;
	}
	
	#adminf_licence #sei{
		width: 100px;
	}
	
	#adminf_licence #mei{
		width: 100px;
	}
	
	#adminf_licence #key{
		width: 200px;
	}
}

#adminf_enter .koumoku {
	width: 80px;
}

#adminf_enter #enter{
}

@media (max-width: 599px) {
	#adminf_enter .koumoku {
		width: 100%;
	}
}

#adminf_spath #spath{
	width: 400px;
}

@media (max-width: 599px) {
	#adminf_spath #spath{
		width: 250px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_affinfo.php */
/* アフィリエイト編集 */
#affinfo .mailadd{
	width: 320px;
}

#affinfo .subject{
	width: 320px;
}

#affinfo .url{
	width: 320px;
}

#affinfo .col{
	width: 100px;
}

#affinfo .ppadd{
	width: 350px;
}

#affinfo .pptoken{
	width: 400px;
}

#affinfo .ppapiname{
	width: 320px;
}

#affinfo .ppapipw{
	width: 200px;
}

#affinfo .ppsignature{
	width: 380px;
}

#affinfo .kingaku{
	width: 100px;
}

@media (max-width: 599px) {
	#affinfo .mailadd{
		width: 250px;
	}
	
	#affinfo .subject{
		width: 250px;
	}
	
	#affinfo .url{
		width: 250px;
	}
	
	#affinfo .col{
		width: 250px;
	}
	
	#affinfo .ppadd{
		width: 250px;
	}
	
	#affinfo .pptoken{
		width: 250px;
	}
	
	#affinfo .ppapiname{
		width: 250px;
	}
	
	#affinfo .ppapipw{
		width: 200px;
	}
	
	#affinfo .ppsignature{
		width: 250px;
	}
	
	#affinfo .kingaku{
		width: 100px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_rakutenbcsv.php */
/* 楽天銀行csv */
#rakutenb_item {
}

#rakutenb_out .dt {
	width: 150px;
}

#rakutenb_start .dt {
	width: 150px;
}

#rakutenb_cronstart .day {
	width: 40px;
}
/*******************************************************************/


/*******************************************************************/
/* admin_fileedit.php */
/* ファイル編集 */
#fileedit textarea {
	width: 310px;
	height: 500px;
}

@media (min-width: 600px) {
	#fileedit textarea {
		width: 600px;
		height: 700px;
	}
}

.tikanlist {
	display: none;
}

@media (min-width: 600px) {
	.tikanlist {
		display: block;
		padding-left: 20px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_affterlist.php */
/* アフィリエイター一覧 */

/* 登録・検索 */
#afflistf .sei{
	width: 80px;
}

#afflistf .mei{
	width: 80px;
}

#afflistf .mail{
	width: 250px;
}

/* リスト */
#affterlist .kaiinid {
	width: 70px;
}

#affterlist .name {
	display: none;
}

#affterlist .sei {
	width: 50px;
}

#affterlist .mei {
	width: 50px;
}

#affterlist .mail {
/*	width: 310px;*/
}

#affterlist .dt {
	width: 90px;
}

#affterlist .edit {
	width: 30px;
}

#affterlist tr:nth-child(even) {
	background: #e9e9e9;
}

#affterlist tr.off {
	background-color: #BDDCFB;
/* !important*/
}

#affterlist tr:hover {
/*	background: #ffe4e1;*/
	background: #CCFFCC;
}

@media (max-width: 599px) {
	#affterlist .kaiinid {
		width: 100px;
	}
	
	#affterlist .name {
		display: block;
	}
	
	#affterlist .sei {
		display: none;
	}
	
	#affterlist .mei {
		display: none;
	}
	
	#affterlist tr:nth-child(even) {
		background: #FFFFFF;
	}
	
	#affterlist tr:hover {
		background: #FFFFFF;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_affiliater.php */
/* アフィリエイター情報変更 */
#affter .koumoku {
	width: 180px;
}

#affter #No{
}

#affter #kaiinid{
}

#affter #sei{
	width: 100px;
}

#affter #mei{
	width: 100px;
}

#affter #rerakumail{
	width: 300px;
}

#affter #pw{
	width: 200px;
}

#affter #ppmail{
	width: 300px;
}

#affter #ppmid{
	width: 200px;
}

#affter #bankno{
	width: 200px;
}

#affter #shitenno{
	width: 200px;
}

#affter #syumoku{
}

#affter #kouzano{
	width: 200px;
}

#affter #kouzaname{
	width: 200px;
}

#affter .inputtext{
	width: 200px;
}

#affter .inputarea{
	width: 280px;
	height: 100px;
}

#affter .inputselect{
}

#affter .inputchk{
}

@media (max-width: 599px) {
	#affter .koumoku {
		width: 100%;
	}
	
	#affter #No{
		width: 320px;
	}
	
	#affter #kaiinid{
		width: 200px;
	}
	
	#affter #sei{
		width: 100px;
	}
	
	#affter #mei{
		width: 100px;
	}
	
	#affter #rerakumail{
		width: 250px;
	}
	
	#affter #pw{
		width: 200px;
	}
	
	#affter #ppmail{
		width: 250px;
	}
	
	#affter #ppmid{
		width: 200px;
	}
	
	#affter #bankno{
		width: 200px;
	}
	
	#affter #shitenno{
		width: 200px;
	}
	
	#affter #syumoku{
	}
	
	#affter #kouzano{
		width: 200px;
	}
	
	#affter #kouzaname{
		width: 200px;
	}
	
	#affter .inputtext{
		width: 250px;
	}
	
	#affter .inputarea{
		width: 250px;
		height: 100px;
	}
	
	#affter .inputselect{
	}
	
	#affter .inputchk{
	}
}

/* アフィリエイト登録 */
#entitem .item{
}

#entitem .affurl{
	width: 300px;
}

#entitem .comid {
	width: 90px;
}

#entitem .specialrice {
	width: 90px;
}

#entitem .del{
	width: 30px;
}
/*******************************************************************/


/*******************************************************************/
/* admin_itemnew.php */
/* 商品登録 */
#itemnewf_itemid .koumoku {
	width: 80px;
}

#itemnewf_itemid #itemname{
	width: 200px;
}

@media (max-width: 599px) {
	#itemnewf_itemid .koumoku {
		width: 100%;
	}
	
	#itemnewf_itemid #itemname{
		width: 200px;
	}
}

#itemnewf_itemname .koumoku {
	width: 80px;
}

#itemnewf_itemname #itemname{
	width: 320px;
}

@media (max-width: 599px) {
	#itemnewf_itemname .koumoku {
		width: 100%;
	}
	
	#itemnewf_itemname #itemname{
		width: 250px;
	}
}

/* カテゴリ登録 */

#catelist .catenum{
	width: 50px;
}

#catelist tr:nth-child(even) {
	background: #e9e9e9;
}

#catelist tr.off {
	background-color: #BDDCFB;
/* !important*/
}

#catelist tr:hover {
/*	background: #ffe4e1;*/
	background: #CCFFCC;
}

@media (max-width: 599px) {
	#catelist tr:nth-child(even) {
		background: #FFFFFF;
	}
	
	#catelist tr:hover {
		background: #FFFFFF;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_item.php */
/* 商品変更 */
#itemedit .koumoku {
	width: 50px;
}

#itemedit #itemid{
	width: 200px;
}

#itemedit #itemname{
	width: 320px;
}

#itemedit #itemcate{
	width: 320px;
}

#itemedit .price{
	width: 250px;
}

#itemedit .mailadd{
	width: 320px;
}

#itemedit .subject{
	width: 400px;
}

#itemedit .url{
	width: 350px;
}

#itemedit .stepcode{
	width: 80px;
}

#itemedit .stepnum{
	width: 50px;
}

#itemedit .stepfilter{
	width: 200px;
}

@media (max-width: 599px) {
	#itemedit .koumoku {
		width: 50px;
	}
	
	#itemedit #itemid{
		width: 200px;
	}
	
	#itemedit #itemname{
		width: 250px;
	}
	
	#itemedit .price{
		width: 200px;
	}
	
	#itemedit .mailadd{
		width: 250px;
	}
	
	#itemedit .subject{
		width: 250px;
	}
	
	#itemedit .url{
		width: 250px;
	}
	
	#itemedit .stepcode{
		width: 80px;
	}
	
	#itemedit .stepnum{
		width: 50px;
	}
	
	#itemedit .stepfilter{
		width: 200px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_affurl.php */
/* アフィリエイトURL */
#affurlhtml_ins textarea {
	width: 300px;
	height: 80px;
}

#affurlhtml_upd textarea {
	width: 290px;
	height: 80px;
}

@media (min-width: 600px) {
	#affurlhtml_ins textarea {
		width: 450px;
		height: 80px;
	}
	
	#affurlhtml_upd textarea {
		width: 450px;
		height: 80px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_itemaff.php */
/* 商品ごとアフィリエイターリスト */

/* 検索 */
#itemafff .sei {
	width: 80px;
}

#itemafff .mei {
	width: 80px;
}

#itemafff .mail {
	width: 250px;
}

/* リスト */
#itemafflist .name {
	display: none;
}

#itemafflist .sei {
}

#itemafflist .mei {
}

#itemafflist .mail {
}

#itemafflist .dt {
}

#itemafflist .acc {
}

#itemafflist .comid {
	width: 90px;
}

#itemafflist .upd {
	width: 30px;
}

#itemafflist .del {
	width: 30px;
}

#itemafflist tr:nth-child(even) {
	background: #e9e9e9;
}

#itemafflist tr.off {
	background-color: #BDDCFB;
/* !important*/
}

#itemafflist tr:hover {
/*	background: #ffe4e1;*/
	background: #CCFFCC;
}

@media (max-width: 599px) {
	#itemafflist .name {
		display: block;
	}
	
	#itemafflist .sei {
		display: none;
	}
	
	#itemafflist .mei {
		display: none;
	}
	
	#itemafflist tr:nth-child(even) {
		background: #FFFFFF;
	}
	
	#itemafflist tr:hover {
		background: #FFFFFF;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_itemater.php */
/* スペシャル料金 */
#specialprice .koumoku {
	width: 150px;
}

#specialprice .url{
	width: 320px;
}

@media (max-width: 599px) {
	#specialprice .koumoku {
		width: 150px;
	}
	
	#specialprice .url{
		width: 250px;
	}
}

/* ボーナス追加 */

/* ボーナス（成約）リスト */

/* リスト */
#listbonus .No {
}

#listbonus .price {
}

#listbonus .dt {
}

#listbonus .result {
	width: 85px;
}

#listbonus .edit {
	width: 30px;
}

#listbonus tr:nth-child(even) {
	background: #e9e9e9;
}

#listbonus tr.off {
	background-color: #BDDCFB;
/* !important*/
}

#listbonus tr.err {
	background-color: #FFC0CB;
/*	#ffe4e1*/
}

#listbonus tr:hover {
/*	background: #ffe4e1;*/
	background: #CCFFCC;
}

#listbonus .payed {
/*	display:none;*/
}

@media (max-width: 599px) {
	#listbonus tr:nth-child(even) {
		background: #FFFFFF;
	}
	
	#listbonus tr:hover {
		background: #FFFFFF;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_seilist.php */
/* 成約リスト */

/* 検索 */
#seilistf .sei {
	width: 80px;
}

#seilistf .mei {
	width: 80px;
}

#seilistf .mail {
	width: 200px;
}

/* リスト */
#seiyakulist .name {
	display: none;
}

#seiyakulist .sei {
	width: 40px;
}

#seiyakulist .mei {
	width: 40px;
}

#seiyakulist .mail {
}

#seiyakulist .price {
}

#seiyakulist .dt {
	width: 90px;
}

#seiyakulist .edit {
	width: 30px;
}

#seiyakulist tr:nth-child(even) {
	background: #e9e9e9;
}

#seiyakulist tr.off {
	background-color: #BDDCFB;
/* !important*/
}

#seiyakulist tr.err {
	background-color: #FFC0CB;
/*	#ffe4e1*/
}

#seiyakulist tr:hover {
/*	background: #ffe4e1;*/
	background: #CCFFCC;
}

@media (max-width: 599px) {
	#seiyakulist .name {
		display: block;
	}
	
	#seiyakulist .sei {
		display: none;
	}
	
	#seiyakulist .mei {
		display: none;
	}
	
	#seiyakulist tr:nth-child(even) {
		background: #FFFFFF;
	}
	
	#seiyakulist tr:hover {
		background: #FFFFFF;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_itemsei.php */
/* 成約 */
#seiyakuf #payid {
	width: 300px;
}

@media (max-width: 599px) {
	#seiyakuf #payid {
		width: 250px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_itembuy.php */
/* 決済時 */
#itembuyf .price{
	width: 250px;
}

#itembuyf .mailadd{
	width: 320px;
}

#itembuyf .subject{
	width: 400px;
}

#itembuyf .url{
	width: 350px;
}

#itembuyf .stepcode{
	width: 80px;
}

#itembuyf .stepnum{
	width: 50px;
}

#itembuyf .stepfilter{
	width: 200px;
}

@media (max-width: 599px) {
	#itembuyf .price{
		width: 100px;
	}
	
	#itembuyf .mailadd{
		width: 250px;
	}
	
	#itembuyf .subject{
		width: 250px;
	}
	
	#itembuyf .url{
		width: 250px;
	}
	
	#itembuyf .stepcode{
		width: 80px;
	}
	
	#itembuyf .stepnum{
		width: 50px;
	}
	
	#itembuyf .stepfilter{
		width: 200px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_makeform.php */
/* フォーム作成 */

/* アフィリエイト登録 */
#touroku .tag{
	width: 700px;
	height: 250px;
}

@media (max-width: 599px) {
	#touroku .tag{
		width: 300px;
		height: 500px;
	}
}

/* スタンダード */
#stdkessai .tag{
	width: 700px;
	height: 250px;
}

@media (max-width: 599px) {
	#stdkessai .tag{
		width: 300px;
		height: 200px;
	}
}

/* Express Checkout */
.eckessai{
	width: 800px;
	height: 400px;
}

@media (max-width: 599px) {
	.eckessai{
		width: 300px;
		height: 500px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_itemdl.php */
/* フォーム作成 */

/* DLページの設定 */
#dllogin #url{
	width: 320px;
}

#dllogin #id{
	width: 150px;
}


#dllogin #pw{
	width: 150px;
}

@media (max-width: 599px) {
	#dllogin #url{
		width: 250px;
	}
	
	#dllogin #id{
		width: 150px;
	}
	
	#dllogin #pw{
		width: 150px;
	}
}

/* DLファイル登録 */
.dlfile .dlurl{
	width: 300px;
}

@media (max-width: 599px) {
	.dlfile .dlurl{
		width: 200px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_buyerlist.php */
/* 購入者一覧 */

/* 検索 */
#buyerlistf .sei {
	width: 80px;
}

#buyerlistf .mei {
	width: 80px;
}

#buyerlistf .mail {
	width: 200px;
}

/* リスト */
#buyerlist .name {
	display: none;
}

#buyerlist .sei {
	width: 40px;
}

#buyerlist .mei {
	width: 40px;
}

#buyerlist .mail {
}

#buyerlist .dt {
	width: 160px;
}

#buyerlist tr:nth-child(even) {
	background: #e9e9e9;
}

#buyerlist tr.off {
	background-color: #BDDCFB;
/* !important*/
}

#buyerlist tr:hover {
/*	background: #ffe4e1;*/
	background: #CCFFCC;
}

@media (max-width: 599px) {
	#buyerlist .name {
		display: block;
	}
	
	#buyerlist .sei {
		display: none;
	}
	
	#buyerlist .mei {
		display: none;
	}
	
	#buyerlist tr:nth-child(even) {
		background: #FFFFFF;
	}
	
	#buyerlist tr:hover {
		background: #FFFFFF;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_couponlist.php */
/* クーポン一覧 */
#entcouponf #couponcode {
	width: 150px;
}

#entcouponf #couponname {
	width: 300px;
}

@media (max-width: 599px) {
	#entcouponf #couponcode {
		width: 150px;
	}
	
	#entcouponf #couponname {
		width: 250px;
	}
}
/*******************************************************************/


/*******************************************************************/
/* admin_coupon.php */
/* クーポン設定 */
#couponf #couponname {
	width: 250px;
}

#couponf #couponprice {
	width: 100px;
}

#couponf #couponday {
	width: 50px;
}

#couponf #couponhour {
	width: 30px;
}

#couponf #couponmin {
	width: 30px;
}

/*
@media (max-width: 599px) {
	#couponf #couponname {
		width: 250px;
	}
	
	#couponf #couponprice {
	width: 100px;
	}
	
	#couponf #couponday {
		width: 50px;
	}
	
	#couponf #couponhour {
		width: 30px;
	}
	
	#couponf #couponmin {
		width: 30px;
	}
}
*/
/*******************************************************************/


/*******************************************************************/
/* admin_couponuse.php */
/* クーポン使用確認 */
#usecouponf #id {
	width: 40px;
}

#usecouponf #itemname {
/*	width: 100px;*/
}

#usecouponf #orderid {
	width: 150px;
}

#usecouponf #name {
	width: 100px;
}

#usecouponf #dt {
	width: 90px;
}

/*
@media (max-width: 599px) {
	#usecouponf #id {
		width: 250px;
	}
	
	#usecouponf #id {
		width: 250px;
	}
	
	#usecouponf #itemname {
		width: 250px;
	}
	
	#usecouponf #orderid {
		width: 250px;
	}
	
	#usecouponf #name {
		width: 250px;
	}
	
	#usecouponf #dt {
		width: 250px;
	}
}
*/
	pre {
		width: 250px;
	}

@media (max-width: 599px) {
	pre {
		width: 250px;
	}
}

/*******************************************************************/


/*******************************************************************/
/* 共通 */
/* ボタンを左右に並列表示 */
.heiretsu {
	display: table;
	width: 100%;
	margin-top: 10px;
}

.button1 {
	display:table-cell;
	text-align: left;
}

.button2 {
	display:table-cell;
	text-align: right;
}

h1{
	text-align: center;
	font-size: 16px;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 5px;
	background-color: salmon;
}

h2{
	font-size: 12px;
	font-weight: normal;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 20px;
	margin-bottom: 7px;
	margin-right: 5px;
	background-color: pink;
}

h3{
	font-size: 12px;
	font-weight: normal;
	background-color: #CCCCCC;
}

.setsumei{
	font-size: 12px;
	margin-right: 10px;
}

.attention{
	font-size: 12px;
	color:red;
}

.migiyose{
	text-align: right;
	margin-right: 20px;
	margin-bottom: 10px;
}

.input{
	background-color: mistyrose;
	margin-right: 5px;
}

.stripe {
	background-color: #EFEEEE;
}

.off {
	background-color: #BDDCFB;
}

.err {
	background-color: #FFC0CB;
/*	#ffe4e1*/
/*	background-color: #BDDCFB;*/
}

.title{
	text-align: center;
	font-size: 16px;
	padding: 5px;
}

.text_left {
	text-align: left;
}

.text_right {
	text-align: right;
}

.text_center{
	text-align: center;
}

.center {
	align: center;
}

#left{
	float: left;
}

#right{
	float: right;
}

/*
#non_border table {
	border: 0px;
}

#non_border tr {
	border: 0px;
}

#non_border td {
	border: 0px;
}

#waku {
	width: 1000px;
	_width: 1020px;
}
*/
