/* ---------------------------------------------------------------------------- */
/* Copyright(C) 2006-2008 searchword.jp All Rights Reserved. Produced by okayan */
/* 2008/03/05 ワイド化に伴い全体の見直し                                        */
/* 2008/05/06 2カラムへ                                                         */
/* 2008/06/12 ヘッダー上にh1追加                                                */
/* ---------------------------------------------------------------------------- */

@charset "utf-8";

/***********************************************************
	サイト全体の設定
***********************************************************/

/* 基本的にmargin/paddingは0とする */
* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #f0f0fe;
	font-family: "ＭＳ Ｐゴシック", Osaka, sans-serif;
	font-size: 80%;
	color: #333333;
	text-align: center;
	background-image: url(img/bk14.gif);
}

img {
	border: none;
}

a:hover {
	color: #CC3300;
}

/***********************************************************
	サイト全体
***********************************************************/
#allbody {
	background-color: #FFFFFF;
	text-align: left;
	width: 800px;
	margin: 0px	auto;
	padding: 10px 0 0 0;
}
/***********************************************************
	ヘッダー部分
***********************************************************/
h1 {
	font-size: 90%;
	color: #999999;
	margin:0 auto;
	text-align: left;
	padding: 4px 0px 4px 20px;
	width: 780px;
}

#header {
	padding-bottom: 10px;
}

#header_logo {
	float: left;
	width: 320px;
}
#header_logo img {
	margin: 1px 0 10px 20px;
}

#header_navi {
	float: right;
	width: 480px;
}
#header_navi ul {
	list-style-type: none;
	float: right;
	padding: 15px 15px 0 0;
}
#header_navi li {
	text-align: center;
	color: #666666;
	line-height: 27px;
	float: left;
	margin: 0 0 0 7px;
}
#header_navi a {
	width: 92px;
	height: 27px;
	display: block;
	outline-width: 0;
	color: #666666;
}
#header_navi a:hover {
	color: #aaaaaa;
}

.catch {
	padding: 0 0 5px 0;
	margin: 0 14px;
}

/***********************************************************
	メインコンテンツ（右メニュー → ワイド化に伴い中央）
***********************************************************/
/* メイン部分の括り */
#container { /* 800-28=772px */
	padding: 12px 14px 0 14px;
	float: left;
	line-height: 160%;
}

/* メインコンテンツ部分スペース確保 */
#main {
	float: right;
	width: 570px;
	text-align: left;
}

/* 本文エリア */
#contents { /* 560 */
	margin: 10px 0px 10px 10px;
	line-height: 160%;
}

/* エントリタイトル */
#contents h2 {
	padding: 7px 0 7px 20px;
	font-size: 120%;
	font-weight: bold;
	text-align: left;
	color: #FF9900;
	border-left: solid 10px #FFcc00;
	border-bottom: solid 1px #FFcc00;
}

/* エントリ記述部分 */
#textbox { /* 540 */
	margin: 10px 0;
}

/* BOX用 */
.tbox {
	background-image: url(img/border2.gif);
	background-repeat: repeat-y;
	background-position: left top;
	margin-bottom: 15px;
}

.tbox h3 {
	font-size: 140%;
	background-image: url(img/line.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
	font-weight: bold;
	color: #FF9900;
	padding-bottom: 10px;
	margin: 0px 14px 10px 14px;
}

.tbox p {
	width: 520px;
	padding: 0px 15px;
}

.border1 {
	font-size: 1px;
	vertical-align: top;
}
.border3 {
	font-size: 1px;
	vertical-align: bottom;
}

/* ランキング内 */
#rank {
	font-size: 90%;
}

/***********************************************************
	左メニュー（目次）
***********************************************************/
/* メニュー部分（スペース確保） */
#categories {
	float: left;
	width: 200px;
	padding: 0 0 20px 0;
}

/* 目次表示部分 */
/* 目次はデザイン保持のためフォントをpx指定 */
#menu {
	margin: 10px 4px;
	font-size: 13px;
	line-height: 160%;
}

#menu h4 {
	line-height: 30px;
	background-image: url(img/subnavi_top.gif);
	height: 30px;
	width: 190px;
	font-size: 100%;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}

#menu ul {
	list-style-type: none;
	font-size: 12px;
	font-family: monospace,"ＭＳ Ｐ明朝", sans-serif;
	margin: 0 0 10px 0;
}

/* IJK adv */
#menu li {
	display: inline;
}

#menu li a{
	display: block;
	padding:4px 0 4px 5px;
	border-bottom:dotted 1px #666666;
}

#menu a:link {
	text-decoration: none;
	color: #333333;
}

#menu a:visited {
	text-decoration: none;
	color: #333333;
}

#menu a:active {
	text-decoration: underline;
	color: #993300;
}

#menu a:hover {
	text-decoration: underline;
	color: #993300;
}

/***********************************************************
	フッター
***********************************************************/
/* フッターもヘッダー同様、デザイン崩れを防ぐためpx指定 */
#footer {
	clear: both;
	background-image: url(img/footer.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 30px;
	color: #FFFFFF;
	margin-top: 30px;
}

#footer p {
	font-size: 90%;
	text-align: center;
	padding-top: 7px;
	color: #FFFFFF;
	text-decoration: none;
}

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

#footer a:hover {
	color: #CC3300;
}

/***********************************************************
	text-align 要素操作クラス
***********************************************************/
.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

/***********************************************************
	float 要素操作クラス
***********************************************************/
.fleft{
	float: left;
}

.fright{
	float: right;
	margin: 5px 0 0 10px;
}

.cl {
	clear:both;
}

/***********************************************************
	文字装飾クラス
***********************************************************/
.sml{
	font-size: 70%;
}

.b {
	font-weight: bold;
}

.oran {
	color: #FF9900;
}

.red {
	color: #CC3300;
}

.blue {
	color: #0099FF;
}

.fs_14 {
	font-size:14px;
}


/* SHOP用 */
#shopcontainar { /* 800-28=772px */
	margin: 12px 14px 0 14px;
	float: left;
	line-height: 160%;
}

/* メインコンテンツ部分スペース確保 */
#shopmain {
	float: center;
	width: 700px;
	text-align: left;
}

/* 本文エリア */
#shopcontents { /* 560 */
	margin: 10px 0px 10px 10px;
	line-height: 160%;
}

/* エントリタイトル */
#shopcontents h2 {
	padding: 7px 0 7px 20px;
	font-size: 120%;
	font-weight: bold;
	text-align: left;
	color: #FF9900;
	border-left: solid 10px #FFcc00;
	border-bottom: solid 1px #FFcc00;
}






/* 中区分(h3) 
#textbox h3 {
	margin: 20px 0 10px 0;
	background-color: #eeeeee;
	font-size: 100%;
	font-weight: bold;
	color: #333333;
	padding: 5px 0 5px 20px;
	text-align: left;
	border-left: solid 10px #ff0040;
}*/

/* 小区分 */
#textbox h4 {
	color: #333333;
	margin: 20px 20px 10px 10px;
	padding: 0 0 5px 10px;
	font-size: 100%;
	border-left: solid 5px #999999;
	border-bottom: dotted 1px #666666;
	font-family: Verdana, Arial, sans-serif;
}

#textbox p {
	margin: 1em 0 1em 0;
	line-height: 150%;
	font-size: 120%;
}

#textbox strong {
	font-weight: bold;
}

#textbox a:link {
	text-decoration: underline;
	color: #0000FF;
}

#textbox a:visited {
	text-decoration: underline;
	color: #0000FF;
}

#textbox a:active {
	text-decoration: underline;
	background-color: #FFDDDD;
	color: #0000FF;
}

#textbox a:hover {
	text-decoration: underline;
	background-color: #FFDDDD;
	color: #0000FF;
}






/***********************************************************
	各パーツ設定
***********************************************************/
/**** パンくずリスト ****/
#textbox #panlist {
	font-size:85%;
	margin: 5px 0 0 0;
	border-bottom:dotted 1px #2e4352;
}

/**** トップハイライト ****/
#textbox #highright {
	background-image: url(img/topc.gif);
	background-repeat: no-repeat;
	height: 199px;
	margin: 0 0 0 70px;
}

#textbox #highright p {
	margin: 0;
	font-size:120%;
	padding:97px 30px 15px 50px;
	color: #ffffff;
}

/**** コメント・トラックバック ****/
#textbox fieldset {
	margin: 10px 0 0 0;
	padding: 10px;
	border: dotted 1px #223388;
}

#textbox fieldset legend {
	font-size: 90%;
	font-weight: bold;
	color:# 333333;
	padding: 2px 50px 2px 10px;
	background: #ffffff;
	border-top: solid 1px #9999cc;
	border-left: solid 1px #9999cc;
	border-bottom: solid 1px #223388;
	border-right: solid 1px #223388;
}

#textbox fieldset div.lbox {
	width:80px;
	padding:10px 0;
	float:left;
}

#textbox fieldset p {
	font-size:90%;
}

#textbox fieldset div.lbox p {
	font-weight:bold;
	margin:0 0 0 10px;
	padding:2px 0 0 0;
}

#textbox fieldset div.rbox {
	width:286px;
	padding:10px 0;
	float:left;
}

#textbox fieldset div.rbox input {
	width:250px;
}

#textbox fieldset textarea {
	width:330px;
}

#textbox p.tra {
	color:#333333;
	margin:20px 0 15px 0;
	padding:5px 15px;
	border:solid 1px #bbbbdd;
	background:#eeeeee;
}

#textbox p.ri1 {
	text-align: right;
	padding: 0 0 5px 0;
	border-bottom: dotted 1px #999999;
}

/**** 検索ボックス ****/
#searchall {
}

#searchall p{
	margin: 0;
	padding: 0;
	line-height: 100%;
}

#search {
	margin:0px 0 25px 0;
	background-color:#e8e8e8;
	height:30px;
	padding:15px 0 10px 0;
}
#search input.box {
	width:90px;
	margin:0px 6px 0 10px;
	vertical-align:top;
}

/**** 最近のコメント ****/
#recom {
	font-size: 80%;
}

/**** カテゴリ内エントリ一覧 ****/
#kanren {
	font-size:80%;
	color:#333333;
	margin: 30px 0 0 0;
	padding: 5px 15px;
	background:#ededed;
	border:dashed 1px #999999;
}

#kanren h4 {
	font-size:90%;
}

/**** サイトマップ ****/
#sitemap {
	margin:0;
}
#sitemap ul {
	font-size:100%;
	margin:0;
	padding:0;
}
#sitemap ul li {
	margin:20px 0 0 0;
	padding:0 0 0 20px;
	background:url(http://www.lotoball.jp/img/bg-h5.gif) no-repeat left top;
}
#sitemap ul.sub {
	font-size:100%;
}
#sitemap ul.sub li {
	margin:5px 0 0 0;
	padding:5px 0 0 20px;
	border-top:dotted 1px #2e4352;
	background:url(http://www.lotoball.jp/img/icon_01.gif) no-repeat 5px 6px;
}


/***********************************************************
	個別サイトクラス
***********************************************************/
/* TOP枠線 */
.maint{
	border: solid 1px gray;
	padding: 0 10px;
	margin: 5px 0;
  line-height: 100%;
  background-repeat : no-repeat;
}
#news {
	margin: 10px 0 0 0;
}

#news ul {
	font-size:90%;
	list-style-type: none;
}

#news ul li {
	padding: 4px 0;
	border-bottom:dotted 1px #2e4352;
}

#news p {
	margin: 0;
	line-height: 100%;
	font-size: 100%;
	background-image: url(img/bg_new.gif);
	background-repeat: no-repeat;
	height: 27px;
}

.photo {
	float: right;
	margin: 0px 0px 0px 10px;
	padding:0px;
	border: solid 3px #DDDDDD;
}

.photo_l {
	float: left;
	margin: 0px 10px 0px 0px;
	padding:0px;
	border: solid 2px #DDDDDD;
}

/* クレジットカード比較・TOP */
.maint2 {
	border: solid 1px #bbbbbb;
  line-height: 100%;
  background-repeat : no-repeat;
  margin: 0 0 10px 0;
}

.maint2 p {
	margin: 1em 0 1em 0;
	line-height: 150%;
}

/* 説明文 */
.toptable {
	width: 538px;
	text-align: left;
}

.toptable-l {
	width: 115px;
	padding: 0 5px 0 10px;
}

.toptable-r {
	width: 423px;
	font-size: 11px;
	padding-right: 15px;
}


/**************/
/* カード詳細 */
/**************/
.cardtable {
	width: 501px;
	border-top: 1px #cccccc solid;
	border-left: 1px #cccccc solid;
	text-align: center;
	margin: 0 0 10px 0;
}

.cardtable1 {
	width: 100px;
	padding: 5px 0;
	text-align: center;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	background-color: #c3f0ff;
	font-weight: bold;
	font-size: 12px;
}

.cardtable1s {
	width: 100px;
	padding: 5px 0;
	text-align: center;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	background-color: #c3f0ff;
	font-weight: bold;
	font-size: 11px;
}

.cardtable2 {
	width: 100px;
	padding: 5px 0;
	text-align: center;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

.cardtable3 {
	width: 400px;
	padding: 10px 10px;
	text-align: left;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

.cardtable4 {
	width: 500px;
	padding: 5px 0;
	text-align: center;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	background-color: #c3f0ff;
	font-weight: bold;
	font-size: 12px;
}

.cardtable5 {
	width: 500px;
	padding: 10px 10px;
	text-align: left;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

.cardtable6 {
	width: 500px;
	padding: 5px 0;
	text-align: center;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	background-color: #c3f0ff;
	font-weight: bold;
	font-size: 15px;
}

.cardtable7 {
	width: 500px;
	padding: 10px 10px;
	text-align: left;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}
