@charset "utf-8";

/*各cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*一覧ページ用css*/
/* @import url(css/list.css); */



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #a17ccc;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*マウスオン時の画像*/
a:hover img {
	opacity: 0.8;	/*80%色がついた状態*/
}
a.info {
	color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;      /* リンクの下線を消し、次の行の設定を有効にする。 */
	border-bottom: 1px dashed;
}
a.info:hover {
	color: #ffb521;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}
a.neat {
	color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;      /* リンクの下線を消し、次の行の設定を有効にする。 */
}
a.neat:hover {
	color: #ffb521;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/* 意味説明用の下線 */
.meaning {
    border-bottom: dotted 1px #ccc0d9;
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #fff;	/*背景色*/
	height: 100px;		/*高さ*/
	color: #333;		/*文字色*/
}
/*ロゴ画像*/
header #logo {
	width: 550px;		/*ロゴ画像の幅*/
	float: left;		/*左に回り込み*/
	margin-top: 14px;	/*ロゴの上にあける余白。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	margin-left: 1%;	/*ロゴの左側にあける余白。*/
}

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .login a {
	display: inline-block;text-decoration: none;
	float: right;		/*右に回り込み*/
	margin-right: 3%;	/*右に空けるスペース*/
	margin-top: 30px;	/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	border: 1px solid #fe7200;	/*枠線の幅、線種、色*/
	background: #fe7200;/*背景色（古いブラウザ用）*/
	background: #fe7200 url(images/icon_login.png) no-repeat 20px 11px / 12px;/*背景色、アイコンの読み込み。左から25px、上から11pxの場所に配置。画像幅は12px。*/
	color: #fff;	/*文字色*/
	padding: 5px 30px 5px 50px;	/*上、右、下、左へのボタン内の余白*/
	border-radius: 4px;		/*角丸のサイズ*/
	font-size: 14px;		/*文字サイズ*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる指定*/
}
/*マウスオン時*/
header .login a:hover {
	background-color: #fe9b00;	/*背景色だけ変更する*/
	color: #fff;	/*も地色*/
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	height: 60px;		/*メニューの高さ。下の「#menubar ul li a」の「height」と「padding-top」の数字を合計した数字に合わせる。★75->60px */
	text-align: center;	/*文字を中央に*/
	background: #a17ccc;	/*背景色*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.66%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	text-decoration: none;display: block;
	line-height: 1.6;	/*行間を少し狭く*/
	color: #fff;		/*文字色*/
	height: 50px;		/*高さ ★60->50px*/
	padding-top: 10px;	/*上に追加する余白 ★15->10px*/
	border-right: 1px solid #fff;	/*メニューの右側の線の幅、線種、色（古いブラウザ用）*/
	border-right: 1px solid rgba(255,255,255,0.5);	/*右の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #fff;	/*メニューの線の幅、線種、色（古いブラウザ用）*/
	border-left: 1px solid rgba(255,255,255,0.5);	/*左の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*飾り文字*/
#menubar li span {
	display: block;
	font-size: 9px;			/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	opacity: 0.5;			/*透明度50％*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #bfa3e0;	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;padding-top: 1px;
	width: 16.66%;		/*幅。上の「#menubar li」と合わせる。*/
	font-size: 12px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;
	border: none;	/*線を一旦リセット*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	color: #fff;		/*文字色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*ドロップダウンメニュー内の見出し*/
#menubar ul.ddmenu li.title a {
	background: #a17ccc;	/*背景色*/
	cursor: default;		/*カーソルをリンク用でなくデフォルトの矢印にしておく*/
	padding: 3px 0;			/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #000;	/*背景色*/
}
/*見出しのマウスオン時*/
#menubar ul.ddmenu li.title a:hover {
	background: #a17ccc;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed-menu header {
	margin-bottom: 75px;	/*メニューの高さを指定。menubarのborderが1px分ありますが大差ないので75でOKです。*/
}
/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header {
	margin-bottom: 75px;
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	padding-top: 30px;		/*上に空けるボックス内の余白 ★40->30*/
	padding-bottom: 20px;	/*下に空けるボックス内の余白 ★40->20*/
}

/*contents-in（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;	/*左に回り込み*/
	width: 80%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #contents-in {
	float: none;
	width: auto;
}

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 18px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	background: #a17ccc;	/*背景色*/
	position: relative;		/*★右にアイコンを配置するために追加*/
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 20px;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	background: #ebe1f5;	/*背景色★追加*/
	position: relative;		/*★右にアイコンを配置するために追加*/
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter {
	border-left: 3px solid #a17ccc;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh4タグ設定★追加*/
#main h4 {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 20px;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	position: relative;
}
/*h4タグの１文字目への追加設定★追加*/
#main h4::first-letter {
	border-left: 3px solid #a17ccc;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*装飾用画像の土台設定*/
#main h2::after, #main h3::after, #main h4::after {
	display: block;
	position: absolute;
	right: 0px;	/*h4タグに対して右から0pxの場所に配置*/
	top: -20px;	/*h4タグに対して上から-20pxの場所に配置*/
}
/*装飾用画像（バカラ）*/
#main h2.baccarat::after, #main h3.baccarat::after, #main h4.baccarat::after {
	content: url(images/h234/baccarat.svg);
}
/*装飾用画像（ブラックジャック）*/
#main h2.bj::after, #main h3.bj::after, #main h4.bj::after {
	content: url(images/h234/bj.svg);
}
/*装飾用画像（ポーカー）*/
#main h2.poker::after, #main h3.poker::after, #main h4.poker::after {
	content: url(images/h234/poker.svg);
}
/*装飾用画像（脱線）*/
#main h2.derailment::after, #main h3.derailment::after, #main h4.derailment::after {
	content: url(images/h234/derailment.svg);
}
/*装飾用画像（シック・ボー）*/
#main h2.sic_bo::after, #main h3.sic_bo::after, #main h4.sic_bo::after {
	content: url(images/h234/sic_bo.svg);
}
/*装飾用画像（宝くじ・ロト）*/
#main h2.takarakuji::after, #main h3.takarakuji::after, #main h4.takarakuji::after {
	content: url(images/h234/takarakuji.svg);
}
#main h2.takarakuji_loto::after, #main h3.takarakuji_loto::after, #main h4.takarakuji_loto::after {
	content: url(images/h234/takarakuji_loto.svg);
}
/*装飾用画像（ポンツーン）*/
#main h2.pontoon::after, #main h3.pontoon::after, #main h4.pontoon::after {
	content: url(images/h234/pontoon.svg);
}
/*装飾用画像（競馬）*/
#main h2.horse_racing::after, #main h3.horse_racing::after, #main h4.horse_racing::after {
	content: url(images/h234/horse_racing.svg);
}
/*装飾用画像（競馬今昔物語）*/
#main h2.konjaku::after, #main h3.konjaku::after, #main h4.konjaku::after {
	content: url(images/h234/konjaku.svg);
}
/*装飾用画像（テーブルゲーム）*/
#main h2.table_games::after, #main h3.table_games::after, #main h4.table_games::after {
	content: url(images/h234/table_games.svg);
}
/*装飾用画像（警官）*/
#main h2.policeman::after, #main h3.policeman::after, #main h4.policeman::after {
	content: url(images/h234/policeman.svg);
}
/*カジノ*/
#main h2.casino::after, #main h3.casino::after, #main h4.casino::after {
	content: url(images/h234/casino.svg);
}


/*装飾用画像（アルファベット）*/
#main h2.alpha_a::after, #main h3.alpha_a::after, #main h4.alpha_a::after {
	content: url(images/h234/alpha_a_250x90.svg);
}
#main h2.alpha_b::after, #main h3.alpha_b::after, #main h4.alpha_b::after {
	content: url(images/h234/alpha_b_250x90.svg);
}
#main h2.alpha_c::after, #main h3.alpha_c::after, #main h4.alpha_c::after {
	content: url(images/h234/alpha_c_250x90.svg);
}
#main h2.alpha_d::after, #main h3.alpha_d::after, #main h4.alpha_d::after {
	content: url(images/h234/alpha_d_250x90.svg);
}
#main h2.alpha_e::after, #main h3.alpha_e::after, #main h4.alpha_e::after {
	content: url(images/h234/alpha_e_250x90.svg);
}
#main h2.alpha_f::after, #main h3.alpha_f::after, #main h4.alpha_f::after {
	content: url(images/h234/alpha_f_250x90.svg);
}
#main h2.alpha_g::after, #main h3.alpha_g::after, #main h4.alpha_g::after {
	content: url(images/h234/alpha_g_250x90.svg);
}
#main h2.alpha_h::after, #main h3.alpha_h::after, #main h4.alpha_h::after {
	content: url(images/h234/alpha_h_250x90.svg);
}
#main h2.alpha_i::after, #main h3.alpha_i::after, #main h4.alpha_i::after {
	content: url(images/h234/alpha_i_250x90.svg);
}
#main h2.alpha_j::after, #main h3.alpha_j::after, #main h4.alpha_j::after {
	content: url(images/h234/alpha_j_250x90.svg);
}
#main h2.alpha_k::after, #main h3.alpha_k::after, #main h4.alpha_k::after {
	content: url(images/h234/alpha_k_250x90.svg);
}
#main h2.alpha_l::after, #main h3.alpha_l::after, #main h4.alpha_l::after {
	content: url(images/h234/alpha_l_250x90.svg);
}
#main h2.alpha_m::after, #main h3.alpha_m::after, #main h4.alpha_m::after {
	content: url(images/h234/alpha_m_250x90.svg);
}
#main h2.alpha_n::after, #main h3.alpha_n::after, #main h4.alpha_n::after {
	content: url(images/h234/alpha_n_250x90.svg);
}
#main h2.alpha_o::after, #main h3.alpha_o::after, #main h4.alpha_o::after {
	content: url(images/h234/alpha_o_250x90.svg);
}
#main h2.alpha_p::after, #main h3.alpha_p::after, #main h4.alpha_p::after {
	content: url(images/h234/alpha_p_250x90.svg);
}
#main h2.alpha_q::after, #main h3.alpha_q::after, #main h4.alpha_q::after {
	content: url(images/h234/alpha_q_250x90.svg);
}
#main h2.alpha_r::after, #main h3.alpha_r::after, #main h4.alpha_r::after {
	content: url(images/h234/alpha_r_250x90.svg);
}
#main h2.alpha_s::after, #main h3.alpha_s::after, #main h4.alpha_s::after {
	content: url(images/h234/alpha_s_250x90.svg);
}
#main h2.alpha_t::after, #main h3.alpha_t::after, #main h4.alpha_t::after {
	content: url(images/h234/alpha_t_250x90.svg);
}
#main h2.alpha_u::after, #main h3.alpha_u::after, #main h4.alpha_u::after {
	content: url(images/h234/alpha_u_250x90.svg);
}
#main h2.alpha_v::after, #main h3.alpha_v::after, #main h4.alpha_v::after {
	content: url(images/h234/alpha_v_250x90.svg);
}
#main h2.alpha_w::after, #main h3.alpha_w::after, #main h4.alpha_w::after {
	content: url(images/h234/alpha_w_250x90.svg);
}
#main h2.alpha_x::after, #main h3.alpha_x::after, #main h4.alpha_x::after {
	content: url(images/h234/alpha_x_250x90.svg);
}
#main h2.alpha_y::after, #main h3.alpha_y::after, #main h4.alpha_y::after {
	content: url(images/h234/alpha_y_250x90.svg);
}
#main h2.alpha_z::after, #main h3.alpha_z::after, #main h4.alpha_z::after {
	content: url(images/h234/alpha_z_250x90.svg);
}
#main h2.alpha_numbers::after, #main h3.alpha_numbers::after, #main h4.alpha_numbers::after {
	content: url(images/h234/alpha_numbers_250x90.svg);
}
#main h2.alpha_signs::after, #main h3.alpha_signs::after, #main h4.alpha_signs::after {
	content: url(images/h234/alpha_signs_250x90.svg);
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
	line-height: 1.8em;
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 30px;
}

/* ページ内リンクの位置調整 */
a.jump_point {height: 1px;
display: block;
padding-top: 115px;
margin-top: -115px;
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22.5%;	/*ブロックの幅*/
}

/*sideコンテンツ（右側のブロック）
---------------------------------------------------------------------------*/
#side {
	float: right;	/*右に回り込み*/
	width: 18%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #side {
	display: none;	
}

/*sub,side共通設定
---------------------------------------------------------------------------*/
/*h2見出しタグ設定*/
#sub h2,
#side h2 {
	text-align: center;		/*文字をセンタリング*/
	padding: 8px 0px;		/*上下、左右への余白*/
	color: #fff;			/*文字色*/
	background: #9d9980;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#9d9980, #8c876c);	/*背景グラデーション*/
}
/*段落タグ（p）設定*/
#sub p,#side p {
	line-height: 1.6;	/*行間を少し狭く*/
}
/*管理者おすすめサイト設定★追加*/
#side h4 {
	margin-top: 8px;	/*サイト名の上にあけるスペース*/
	font-weight: bold;
}

/*box1設定（sub,sideで使っています）
---------------------------------------------------------------------------*/
/*box1設定*/
#sub .box1,
#side .box1 {
	border: 1px solid #8c876c;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下にあけるスペース*/
	background: #f1f0ec;	/*背景色*/
}
/*box1の中にsubmenuがある場合の下のmarginをなくす*/
.box1 .submenu {
	margin-bottom: 0 !important;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub .submenu,
#side .submenu {
	margin-bottom: 20px;		/*メニューブロックの下にあけるスペース*/
	border-top: 1px solid #8c876c;	/*上の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	text-decoration: none;display: block;
	padding: 10px 10px 8px 10px;		/*「上」・「右」・「下」・「左」のボックス内の余白*/
	border: 1px solid #8c876c;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線を消す設定*/
	background: #fff;		/*背景色*/
	line-height: 1.2em;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #a17ccc;	/*背景色*/
	font-size: 85%;			/*文字サイズ*/
	color: #fff;			/*文字色*/
}
footer a, footer a:hover {
	color: #fff;	/*リンクテキスト、マウスオン時の文字色*/
}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
	font-size: 12px;	/*文字サイズを少し小さく*/
}
/*１列分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は5列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0 10px;	/*上下、左右への余白*/
}
/*見出し*/
#footermenu li.title {
	font-weight: bold;	/*太字にする*/
	background: rgba(0,0,0,0.1);	/*背景色*/
	border-radius: 2px;	/*角丸のサイズ*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%色がでた状態の事。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;	/*透明度。100%色がでた状態の事。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {text-decoration: none;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	// border-bottom: 1px solid #ccc;	/*下線の幅、線種、色 ★下線非表示*/
}

/*ギャンブル用語辞典 用語リスト
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#word-list dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#word-list dt {
	float: left;
	width: 5em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#word-list dd {
	padding-left: 5em;
	// border-bottom: 1px solid #ccc;	/*下線の幅、線種、色 ★下線非表示*/
}

/*ギャンブル用語辞典「同義語・類語、関連語、反対語」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#rwords dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 50px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#rwords dt {
	float: left;
	width: 9em;
	text-indent: 0.8em;
	letter-spacing: 0.1em;
	background-color: #ebe1f5;
	border: 1px solid #fff;	/*下線の幅、線種、色、下線表示*/
	border-collapse: collapse;
	// border-collapse: separate;
}
/*記事設定*/
#rwords dd {
	padding-left: 9em;
	text-indent: 0.8em;
	background-color: #f3f3f3;
	border: 1px solid #fff;	/*下線の幅、線種、色、下線表示*/
	border-collapse: collapse;
	// border-collapse: separate;
}

/*「目次」ブロック
---------------------------------------------------------------------------*/
/*目次全体の囲み*/
div.contents{
	border: 2px solid #e6daf2;
	margin-left: 20px;
	margin-right: 20px;
	padding-bottom: 0.5em;
}
/*「目次」の文字タイトル*/
p.contents-title{
	margin-top: 0.5em;
	margin-bottom: -1.1em;
  // padding-top: 1em;
}
dl.contents {
	padding: 0px 20px 0px 30px;	/*上右下左へのブロック内の余白*/
	margin-top: 0em;	/*ブロックの上(外側)に空ける余白*/
	margin-bottom: 0em;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
dt.contents {
	float: left;
	width: 3em;
	letter-spacing: 0.1em;
}
/*記事設定*/
dd.contents {
	padding-left: 3em;
	// border-bottom: 1px solid #ccc;	/*下線の幅、線種、色 ★下線非表示*/
}

/*イメージ中央配置用ブロック
---------------------------------------------------------------------------*/
/*左右20px空け*/
div.imgframe{
	border: 0px solid #e6daf2;
	margin-left: 20px;
	margin-right: 20px;
}
/*左右50px空け*/
div.imgframe-50{
	border: 0px solid #e6daf2;
	margin-left: 50px;
	margin-right: 50px;
}
/*左右100px空け*/
div.imgframe-100{
	border: 0px solid #e6daf2;
	margin-left: 100px;
	margin-right: 100px;
}
/*左右150px空け*/
div.imgframe-150{
	border: 0px solid #e6daf2;
	margin-left: 150px;
	margin-right: 150px;
}
/*左右200px空け*/
div.imgframe-200{
	border: 0px solid #e6daf2;
	margin-left: 200px;
	margin-right: 200px;
}
/*左右250px空け*/
div.imgframe-250{
	border: 0px solid #e6daf2;
	margin-left: 200px;
	margin-right: 200px;
}

/* 広告用のイメージ表示：クラス名の数字がPC・SHの横幅 */
div.imgframe-ad-100-25{
	border: 0px solid #e6daf2;
	width: 100%; 
}
div.imgframe-ad-60-25{
	border: 0px solid #e6daf2;
	width: 60%; 
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
	padding: 0 20px 10px;	/*上、左右、下へのボックス内余白*/
}
/*質問*/
.faq dt {
	font-weight: bold;	/*太字にする設定*/
	color: #a17ccc;		/*文字色*/
}
/*回答*/
.faq dd {
	padding-bottom: 10px;	/*下に空けるスペース*/
}

/*テーブル１：オリジナル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}
/*labelタグ*/
.ta1 label {
	display: inline-block;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td label {
	float: left;
	display: inline-block;
	margin-right: 10px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}
.ta1 td .specialtext {
	float: left;
	width: 45%;
}

/*テーブル２：ギャンブル一覧、用語の頭文字一覧
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #DDCEED;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
	word-break: break-all;
	vertical-align: top;	/*上詰め*/
	border: 0.1px solid #DDCEED;	/*テーブルの枠線の幅、線種、色*/
	padding: 1px 1px 1px 1px;	/*ボックス内の余白「上」・「右」・「下」・「左」の余白*/
	border-collapse: separate;
	border-spacing: 0;
}
.ta2 td, .ta2 th {
	word-break: break-all;
	vertical-align: top;	/*上詰め*/
	border: 1px solid #DDCEED;	/*テーブルの枠線の幅、線種、色*/
	// border-collapse: collapse;
	border-collapse: separate;
	border-spacing: 0;
	line-height: 1.2em;	/*行間*/
	padding: 0.6em 10px 0.5em 10px;	/*ボックス内の余白「上」・「右」・「下」・「左」の余白*/
}
/*ta2の左側ボックス*/
.ta2 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}
/*labelタグ*/
.ta2 label {
	display: inline-block;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta2 td label {
	float: left;
	display: inline-block;
	margin-right: 10px;
}
.ta2 td .specialbox img {
	vertical-align: middle;
}
.ta2 td .specialtext {
	float: left;
	width: 45%;
}

/*テーブル３：期待値一覧
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta3 caption {
	border: 1px solid #DDCEED;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta3設定*/
.ta3 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 1px;
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
	word-break: break-all;
	vertical-align: top;	/*上詰め*/
	border: 0.1px solid #DDCEED;	/*テーブルの枠線の幅、線種、色*/
	padding: 1px 1px 1px 1px;	/*ボックス内の余白「上」・「右」・「下」・「左」の余白*/
	// border-collapse: separate;
	border-collapse: collapse;
    min-width: 650px;	/* テーブルの横幅が650pxより小さくなったらスクロール */
  	border-spacing: 0;
  	font-size:  13px;    /* 文字サイズ指定 */
}
.ta3 td, .ta3 th {
	word-break: break-all;
	vertical-align: top;	/*上詰め*/
	border: 1px solid #DDCEED;	/*テーブルの枠線の幅、線種、色*/
	// border-collapse: collapse;
	border-collapse: separate;
	border-spacing: 0;
	line-height: 1.2em;	/*行間*/
	padding: 0.6em 5px 0.5em 3px;	/*ボックス内の余白「上」・「右」・「下」・「左」の余白*/
}
.table-scroll{
  overflow-x: scroll;	/* スクロールバーを表示（常に表示されます。） */
}
/*ta3の左側ボックス*/
.ta3 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}
/*labelタグ*/
.ta3 label {
	display: inline-block;
}

/* トップページの本日の情報の表
---------------------------------------------------------------------------*/
.box-today {
    position: relative;
    margin: 1em 0em 2em 0em; /* h2と間の上下に余白 */
    padding: 0em 0em 0em 0em;
    border: solid 5px #ddceed; /* 紫 */
    border-radius: 8px;
}
.box-today .box-today-title {
    position: absolute;
    display: inline-block;
    top: -20px;
    /* top: -15px; */
    left: 10px;
    padding: 0px 10px; /* タイトル文字の左右の余白を10px */
    line-height: 1;
    font-size: 20px;
    background: #FFF;
    color: #000; /* 文字色 黒 */
    font-weight: bold;
}
.ta-today {
	table-layout: fixed;
	width: 100%;
	margin: 5px 0px 4px 5px;	/* 上右下左 */
	border: 0px solid #ddceed;	/* テーブルの枠線の幅、線種、色 紫 */
}
.ta-today th {
	border: 0px solid #DDCEED;	/* セル枠線の幅、線種、色*/
	width: 18px;		/*幅*/
	line-height: 1.2em;	/*行間*/
    vertical-align: top; /* 上詰め */
}
.ta-today td {
	border: 0px solid #DDCEED;	/* セル枠線の幅、線種、色*/
	line-height: 1.2em;	/*行間*/
    vertical-align: top; /* 上詰め */
}

/* 枠なしテーブル用
---------------------------------------------------------------------------*/
.narrow-line {
	line-height: 1.2em;	/*行間*/
	font-size:  14px;
}
.narrow-line-13 {
	line-height: 1.2em;	/*行間*/
	font-size:  13px;
}
.game-exp-for-upperrow {  /* ゲームの説明（上段用）テキサスホールデムで使用 */
	line-height: 1.2em;	/*行間*/
	font-size:  14px;
	padding-top: 20px;
	padding-right: 15px;
}


/*btn（inputタグ用）
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

/*btn（赤い色の大きなボタン）
---------------------------------------------------------------------------*/
a.btn {
	display: block;text-decoration: none;
	background: #d90000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#d90000, #a70000);	/*グラデーション*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、ぼかし幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #a70000;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
a:hover.btn {
	box-shadow: none;
	background: #fff;	/*背景色*/
	color: #a70000;		/*文字色*/
}

/*btn2（青い色のボタン）
---------------------------------------------------------------------------*/
a.btn2 {
	display: inline-block;text-decoration: none;
	background: #2e8bdb;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#51a9f3, #2e8bdb);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
}
/*マウスオン時*/
a.btn2:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*btn3（グレーのボタン）
---------------------------------------------------------------------------*/
a.btn3 {
	display: inline-block;text-decoration: none;
	background: #ccd0d9;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#e9eaee, #ccd0d9);	/*グラデーション*/
	color: #57595d;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
}
/*マウスオン時*/
a.btn3:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 50px;		/*下から50pxの場所に配置*/
	right: 3%;			/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
.newicon_middle {		/*★上下中央表示用を追加*/
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 0 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: middle
}

/*UPアイコン
---------------------------------------------------------------------------*/
.upicon {
	background: #0072ff;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
.list-compact .newicon,.list-compact .upicon,.list-sub .newicon,.list-sub .upicon {margin: 0;}

/*パンくずナビ ★追加
---------------------------------------------------------------------------*/
#pan {
	margin-top: -12px;		// 別箇所での位置設定の検討が必要
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 2em;	/* 行間2行（実質1行）※この行は削除しても同じ表示となります。将来の調整用です。 */
}
#pan li {
	display: inline;
}
#pan li a {
	background: url(images/arrow1.png) no-repeat right center;	/*矢印画像の読み込み*/
	padding-right: 20px;
	margin-right: 10px;
	text-decoration: none;	/*下線を消す設定*/
	// border-bottom: 1px dashed;   矢印画像にも下線が設定されるため不採用
}

#panbr {
display: block;
content: "";
margin: -2px 0;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 45px;	/* 上右下左 */
}
ul.disc-nolink {
	list-style: disc;
	padding: 0 20px 20px 80px;	/* 上右下左 */
	line-height: 1.8em;
}
ol {
	padding: 0 20px 20px 47px;
}

/* 広告の配置
---------------------------------------------------------------------------*/
div.advertisement {
	margin-top: -20px;
	line-height: 1.2em;
}

/* PC、スマホ表示切替
---------------------------------------------------------------------------*/
.pconly {
	display: block;
}
.shonly {
	display: none;
}

/*その他
---------------------------------------------------------------------------*/
.thumbnail {width: 80px;margin-bottom: 5px;}
.look {background: #eee;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #a17ccc !important;}  /* 紫 */
.color2, .color2 a {color: #999 !important;}  /* グレー */
.white, .white a {color: #fff !important;}
.unregistered, .unregistered a {color: #ebe1f5 !important;}
.red, .red a {color: #ff0000 !important;}
.dark_red, .dark_red a {color: #b30000 !important;}
.light_yellow, .light_yellow a {color: #fffbd3 !important;}
.light_orange, .light_orange a {color: #ffe094 !important;}
.blue, .blue a {color: #0000cd !important;}
.pink, .pink a {color: #ff00ff !important;}  /* ピンク（マゼンタのRGB変換） */
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
/* シャドーを付ける領域を確保するため、左表示は左側にマージン5pxを設定 */
img.fr10 {float: right;margin-left: 20px;margin-bottom: 10px;width: 10%;}
img.fl10 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 10%;}
img.fr15 {float: right;margin-left: 20px;margin-bottom: 10px;width: 15%;}
img.fl15 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 15%;}
img.fr20 {float: right;margin-left: 20px;margin-bottom: 10px;width: 20%;}
img.fl20 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 20%;}
img.fr25 {float: right;margin-left: 20px;margin-bottom: 10px;width: 25%;}
img.fl25 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 25%;}
img.fr30 {float: right;margin-left: 20px;margin-bottom: 10px;width: 30%;}
img.fl30 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 30%;}
img.fr35 {float: right;margin-left: 20px;margin-bottom: 10px;width: 35%;}
img.fl35 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 35%;}
img.fr40 {float: right;margin-left: 20px;margin-bottom: 10px;width: 40%;}
img.fl40 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 40%;}
img.fr45 {float: right;margin-left: 20px;margin-bottom: 10px;width: 45%;}
img.fl45 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 45%;}
img.fr50 {float: right;margin-left: 20px;margin-bottom: 10px;width: 50%;}
img.fl50 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 50%;}
img.fr60 {float: right;margin-left: 20px;margin-bottom: 10px;width: 60%;}
img.fl60 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 60%;}
img.fr70 {float: right;margin-left: 20px;margin-bottom: 10px;width: 70%;}
img.fl70 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 70%;}
img.fr80 {float: right;margin-left: 20px;margin-bottom: 10px;width: 80%;}
img.fl80 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 80%;}
img.fr88 {float: right;margin-left: 20px;margin-bottom: 10px;width: 88%;}
img.fl88 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 88%;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.somewhat_mini {font-size: 14px;}
.sh {display: none;}
.ofx {overflow-x: hidden;}
.panorama-img {width: 600px !important;height: 400px !important;}
.underline-orange-60 {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 60%, #ffde00 60%);
}
.underline-orange-70 {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 70%, #ffde00 60%);
}
.underline-orange {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 75%, #ffde00 60%);
}
.underline-skyblue-60 {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 60%, rgba(111,191,209,0.6) 0%);
}
.underline-skyblue-70 {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 70%, rgba(111,191,209,0.6) 0%);
}
.underline-skyblue {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 80%, rgba(111,191,209,0.6) 0%);
}
.underline-purple {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 80%, rgba(207,184,230,0.6) 0%);
}
.bold-font {
	font-weight: bold;	/*太字にする設定*/
}
.shadow{
    box-shadow: 0 0 5px #333;
}
.light-skyblue{
	background: rgba(111,191,209,0.1);	/*背景色 #6fbfd1=>111,191,209、0.1=10% */
}
.lightpurple {
	background: #ebe1f5;
}
.stable-double-down {
	/* background: #ffdbe7; */	/* 淡いピング */
	/* background: #f7dbe8; */	/* 淡いピング */
	background: #fff0f5;	/* 淡いピング */
}
.stable-double-down-sp {
	background: #ffdbe7;	/* 淡いピング */
	/* background: #f7dbe8; */	/* 淡いピング */
	/* background: #fff0f5;	*/	/* 淡いピング */
}
.stable-split {
	background: #e6f9ef;	/* 淡いグリーン */
}
.stable-split-sp {
	background: #9ae5bd;	/* 少しだけ濃いグリーン */
}
.stable-surrender {
	background: #edf8fc;	/* 淡い青 */
}
.stable-surrender-sp {
	background: #e6fbfb;	/* 少しだけ濃い青 */
}
.stable-hit {
	background: #fffbd3;	/* 淡い黄 */
}
.stable-hit-tr7 {
//	background: #fffbd3;	/* 淡い黄（#fffbd3→255,251,211＋透過 */
	background-color: rgba(255,251,211,0.7);
}
.stable-hit-sp {
	background: #fffb5a;	/* 少しだけ濃い黄 */
}
.stable-hit-sp-tr {
//	background: #fffb5a;	/* 少しだけ濃い黄（#fffb5a→255,251,90＋透過 */
	background: rgba(255,251,90,0.7);
}
.stable-spot-gray {
	background: #e6e9ee;	/* 薄めのグレー */
}
.stable-suffix {
	font-size: 0.6em;		/* 添え字 */
	vertical-align: text-top;
}
.stable-suffix-bottom {
	font-size: 0.6em;		/* 添え字 */
	vertical-align: text-bottom;
}

.red {
	color: #c30017;
}
.darkred {
	color: #ad0014;
}
.blue {
	color: #2680ff;
}
.green {
	color: #22cf00;
}
.darkgreen {
	color: #1fB800;
}

p.indent{
  text-indent: 0.8em;
}
p.remarks{
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4em;
  font-size: 85%;
}
div.remarks{
  margin-top: -15px;
  margin-left: 20px;
}
p.history{
  padding-left: 1em;
  text-indent: -7em;
  line-height: 1.4em;
  font-size: 85%;
}
div.history{
  margin-top: -15px;
  margin-left: 110px;
}
p.item{
  padding-left: 1em;
  text-indent: -1em;
}
div.item{
  margin-top: -15px;
  margin-left: 20px;
}
div.first-row{
  margin-top: 20px;
}
div.down-pos-10px{
  margin-top: 10px;
}
div.up-pos-4px{
  margin-top: -4px;
}
div.up-pos-6px{
  margin-top: -6px;
}
div.up-pos-12px{
  margin-top: -12px;
}
div.up-pos-20px{
  margin-top: -20px;
}
div.up-pos-20px-shonly{
  // margin-top: -20px;
}
div.subtitle{
  margin-left: -10px;
}
div.right-shift{
  margin-left: 20px;
}
div.right-shift-double{
  margin-left: 40px;
}
div.right-shift-triple{
  margin-left: 60px;
}
div.right-shift-80{
  margin-left: 80px;
}
div.right-shift-100{
  margin-left: 100px;
}
div.right-shift-120{
  margin-left: 120px;
}
div.right-shift-150{
  margin-left: 150px;
}
p.word-exp{
  padding-left: 0em;
  text-indent: -4em;
}
p.word-exp2{
  padding-left: 0em;
}
div.word-exp{
  margin-left: 5em;
}
p.halfbr {
display: block;
content: "";
margin: -2px 0;
}


/*登録日・更新日
---------------------------------------------------------------------------*/
.date {
	clear: both;
	font-size: 11px !important;	/*文字サイズ*/
	color: #999;		/*文字色*/
	text-align: right;	/*右寄せ*/
}
.date span {
	display: inline-block;
}

/*画面幅1301px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1301px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: 1301px;	/*サイトの幅。この指定がないと上部メニューが一瞬段落ちする場合があります。*/
}

/*メインメニューとドロップダウンメニューの設定変更。
メニュー数が6個なので、1301÷6=216pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 216px;
}

}



/*画面幅1300px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1300px){

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	margin: 0 1%;	/*上下、左右へのコンテンツの外側へ空けるスペース*/
}

}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .login a {
	float: left;			/*ロゴの右に来るように再指定*/
	margin-left: 20px;		/*ロゴとの間にとるスペース*/
	background-image: none;	/*ブラウザ幅が狭くなるので、鍵マークを消す*/
	padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu header,body.is-fixed header {margin-bottom: 0px;}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;z-index: 10;
	position: absolute;
	top: 100px;	/*上から100pxの場所に配置*/
	width: 100%;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px 10px 10px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #a17ccc;	/*背景色*/
	font-size: 16px;		/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: absolute;
	top: 24px;	/*上から24pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;		/*幅*/
	height: 50px;		/*高さ*/
	border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #a17ccc url(images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #a17ccc url(images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
}
/* ページ内リンクの位置調整（調整に向けて、仮に+-10を設定） */
a.jump_point {height: 1px;
display: block;
padding-top: 80px;
margin-top: -80px;
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 0px 2% 20px;	/*上下、左右へのボックス内の余白*/
}

/*main,sub,side,contents-in
---------------------------------------------------------------------------*/
#main, #sub, #side, #contents-in {
	float: none;
	width: auto;
	overflow: hidden;
}

/*パンくずナビ ★追加
---------------------------------------------------------------------------*/
#pan {
	margin-top: 0px;		// スマホ表示時に、パンくずがタイトルに隠れるので PC時のマイナス設定を解除
	margin-bottom: 0px;
	margin-left: 0px;
}
#pan li {
	display: inline;
}
#pan li a {
	background: url(https://www.asbcreative.co.jp/wp/wp-content/themes/asb_homepage/images/arrow1.png) no-repeat right center;	/*矢印画像の読み込み*/
	padding-right: 20px;
	margin-right: 10px;
}

#panbr {
display: block;
content: "";
margin: 0px 0;
}

/*イメージ中央配置用ブロック ★狭いので左右を空けない。
---------------------------------------------------------------------------*/
/*左右20px空け*/
div.imgframe{
	border: 0px solid #e6daf2;
	margin-left: 0px;
	margin-right: 0px;
}
/*左右50px空け*/
div.imgframe-50{
	border: 0px solid #e6daf2;
	margin-left: 0px;
	margin-right: 0px;
}
/*左右100px空け*/
div.imgframe-100{
	border: 0px solid #e6daf2;
	margin-left: 0px;
	margin-right: 0px;
}
/*左右150px空け*/
div.imgframe-150{
	border: 0px solid #e6daf2;
	margin-left: 0px;
	margin-right: 0px;
}
/*左右200px空け*/
div.imgframe-200{
	border: 0px solid #e6daf2;
	margin-left: 0px;
	margin-right: 0px;
}
/*左右200px空け*/
div.imgframe-250{
	border: 0px solid #e6daf2;
	margin-left: 0px;
	margin-right: 0px;
}
/* 広告用のイメージ表示：クラス名の数字がPC・SHの横幅 */
div.imgframe-ad-100-25{
	border: 0px solid #e6daf2;
	width: 25%; 
}
div.imgframe-ad-60-25{
	border: 0px solid #e6daf2;
	width: 25%; 
}
div.up-pos-20px-shonly{
	margin-top: -20px;
}

/* テーブル内の文字サイズ調整用 */
.game-exp-for-upperrow {  /* ゲームの説明（上段用）テキサスホールデムで使用 */
	line-height: 1.2em;	/*行間*/
	font-size:  13px;
	padding-top: 20px;
	padding-right: 15px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side {display: none;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
}
/*ロゴ画像*/
header #logo {
	float: none;
	margin: 0 auto;
	padding: 8px 0;
	width: 60%;
}

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .login a {
	float: none;
	margin: 0;
}

/* ページ内リンクの位置調整（調整に向けて、仮に+-10を設定） */
a.jump_point {height: 1px;
display: block;
padding-top: 80px;
margin-top: -80px;
}

/* PC、スマホ表示切替
---------------------------------------------------------------------------*/
.pconly {
	display: none;
}
.shonly {
	display: block;
}

/* テーブル内の文字サイズ調整用 */
.game-exp-for-upperrow {  /* ゲームの説明（上段用）テキサスホールデムで使用 */
	line-height: 1.2em;	/*行間*/
	font-size:  11px;
	padding-top: 20px;
	padding-right: 15px;
}

/*その他
---------------------------------------------------------------------------*/
.panorama-img {width: 450px !important;height: 300px !important;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
img.fr40,img.fl40,img.fr45,img.fl45,img.fr50,img.fl50,img.fr60,img.fl60,img.fr70,img.fl70,img.fr80,img.fl80,img.fr88,img.fl88 {float: none;margin: 0;width: 100%;}
img.fr10 {float: right;margin-left: 10px;margin-bottom: 10px;width: 25%;}
img.fl10 {float: left;margin-right: 10px;margin-bottom: 10px;width: 25%;}
img.fr15 {float: right;margin-left: 10px;margin-bottom: 15px;width: 30%;}
img.fl15 {float: left;margin-right: 10px;margin-bottom: 15px;width: 30%;}
img.fr20 {float: right;margin-left: 10px;margin-bottom: 20px;width: 50%;}
img.fl20 {float: left;margin-right: 10px;margin-bottom: 20px;width: 50%;}
img.fr25 {float: right;margin-left: 10px;margin-bottom: 20px;width: 50%;}
img.fl25 {float: left;margin-right: 10px;margin-bottom: 20px;width: 50%;}
img.fr30 {float: right;margin-left: 10px;margin-bottom: 20px;width: 50%;}
img.fl30 {float: left;margin-right: 10px;margin-bottom: 20px;width: 50%;}
img.fr35 {float: right;margin-left: 10px;margin-bottom: 20px;width: 50%;}
img.fl35 {float: left;margin-right: 10px;margin-bottom: 20px;width: 50%;}


}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 16px;	/* 文字サイズ 12->16 */
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	line-height: 1.5;	/*行間*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2 {
	font-size: 16px;	/* ★文字サイズ 14->16 */
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 0px;
	margin-bottom: 10px;
}
#main h3 {
	font-size: 16px;	/* ★文字サイズ 14->16 */
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
}
#main h4 {
	font-size: 16px;	/* ★文字サイズ 14->16 */
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 20px;
	margin-bottom: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 10px 10px 10px;		/* 「上」・「左右」・「下」の余白 */
}

/* ページ内リンクの位置調整（調整に向けて、仮に+-80を設定） */
a.jump_point {height: 1px;
display: block;
padding-top: 80px;
margin-top: -80px;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*フッターメニュー
ウィンドウ幅が狭くなって見づらくなるので、１列にレイアウト変更。
---------------------------------------------------------------------------*/
#footermenu ul {
	float: none;
	width: auto;
}

/*こだわりアイコン
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
	font-size: 9px;		/*文字サイズ*/
}

/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option2、と、newアイコン共通*/
.option1,.option2,.new {
	font-size: 9px;		/*文字サイズ*/
	padding: 0 10px;	/*上下、左右へのアイコン内の余白*/
	line-height: 14px;	/*高さ*/
	right: 15px;		/*右から15pxの場所に配置*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 15px;	/*ブロックの上(外側)に空ける余白★*/
	margin-bottom: 15px;	/*ブロックの下(外側)に空ける余白★*/
}
/*記事設定★*/
#new dd {
	padding-left: 9em;
	// border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*ブロックの下(外側)に空ける余白*/
}
/*ギャンブル用語辞典 用語リスト
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#word-list dl {
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 15px;	/*ブロックの上(外側)に空ける余白★*/
	margin-bottom: 15px;	/*ブロックの下(外側)に空ける余白★*/
}
/*日付設定*/
#word-list dt {
	float: left;
	width: 5em;
	letter-spacing: 0.1em;
	font-size: 16px;	/* ★ */
}
/*記事設定★*/
#word-list dd {
	padding-left: 5em;
	// border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*ブロックの下(外側)に空ける余白*/
}

/*ギャンブル用語辞典「同義語・類語、関連語、反対語」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#rwords dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 50px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#rwords dt {
	float: left;
	width: 9em;
	text-indent: 0.8em;
	letter-spacing: 0.1em;
	background-color: #ebe1f5;
	border: 1px solid #fff;	/*下線の幅、線種、色、下線表示*/
	border-collapse: collapse;
	// border-collapse: separate;
	font-size: 16px;	/* ★ */
}
/*記事設定*/
#rwords dd {
	padding-left: 9em;
	text-indent: 0.8em;
	background-color: #f3f3f3;
	border: 1px solid #fff;	/*下線の幅、線種、色、下線表示*/
	border-collapse: collapse;
	// border-collapse: separate;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
	padding: 0 10px 10px;	/*上、左右、下へのボックス内余白*/
}

/*btn（赤い色の大きなボタン）
---------------------------------------------------------------------------*/
a.btn {
	font-size: 16px;		/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を標準に戻す*/
}

/*テーブル(ta1)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.ta1 caption,.ta1 th,.ta1 td {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 30px;
}
ol {
	padding: 0 20px 20px 30px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 18px;letter-spacing: normal;}
div.remarks{
  margin-top: 0px;
  margin-left: 20px;
}

}
