/* ----------------------------------------------------------------------------	*/
/* 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: 100%;
	color: #333333;
	text-align: center;
	margin: 0;
	padding: 0;
}

img {
	border: none;
}

a:hover {
	color: #CC3300;
}

/***********************************************************
	サイト全体（ワイド化対応）
	従来のcontainerをさらに大枠で括り右メニューを追加
***********************************************************/
#allbody {
	background-color: #FFFFFF;
	text-align: left;
	width: 800px;
	margin: 0 auto;
	padding: 0;
}

/* 旧サイト全体の括り */
#container {
	float: left;
	line-height: 160%;
/*	width: 640px; 右メニュー拡大*/
/*	width: 620px; 2カラム化*/
	width: 800px;
}

/***********************************************************
	ヘッダー部分
***********************************************************/
/* 2008/06/12 add start */
#htop {
	width: 800px;
	background-color:#22ee66;
	margin: 0;
	padding: 0;
}

#htop h1 {
	padding: 5px 0 5px 10px;
	color:#ffffff;
	font-size:10px;
	font-weight:normal;
	margin: 0;
}

#htop a:link {
	color:#0000FF;
}
#htop a:visited {
	color:#0000FF;
}
#htop a:hover {
	color:#0000FF;
	background-color:#ffcc00;
	text-decoration: none;
}
#htop a:active {
	color:#0000FF;
	background-color:#ffee00;
	text-decoration: none;
}
/* 2008/06/12 add end */

/* ヘッダー部分はデザイン崩れを防ぐためにフォントをpx指定 */
#banner {
	background-image: url(img/banner.gif);
	background-repeat: no-repeat;
	line-height: 160%;
	font-size: 12px;
	height: 90px;
	border-bottom: 1px solid #000000;
	margin: 0;
	padding: 0;
}

#logo {
	padding: 20px;
	color: #333333;
}

/***********************************************************
	ヘッダーナビゲーション部分
***********************************************************/
#bannernavi {
	width:800px;
	height: 20px;
	background-color: #003300;
}

#bannernavi p {
	text-align: right;
	color: #ffffff;
	display: block;
	margin: 0 20px 0 0;
	padding: 0 10px 0 0;
	border-right: 1px solid #ffffff;
}

#bannernavi li {
	display: inline;
	padding: 0px 22px;
	background-image: url(img/c_li.gif);
	background-repeat: no-repeat;
	background-position: 12px 3px;
	border-left: 1px solid #ffffff;
}

#bannernavi a {
	color: #ffffff;
	font-size: 10px;
	line-height: 20px;
	letter-spacing: 0.1em;
}

#bannernavi a:hover {
	color: #FF6600;
	background-color: #FFFFFF;
}

/***********************************************************
	メインコンテンツ（右メニュー → ワイド化に伴い中央）
***********************************************************/
/* メインコンテンツ部分スペース確保 */
#main {
	float: right;
	width: 570px;
	text-align: left;
}

/* ボーダーの内側、本文エリア */
#contents {
	margin: 10px 10px 10px 0;
	border: solid 1px #999999;	/* 内側に2pxあるので注意 -558px- */
	line-height: 160%;
	font-size: 80%;
}

/* エントリタイトル */
#contents h1 {
	padding: 7px 0;
	font-family: Verdana, Arial, sans-serif;
	font-size: 120%; 
	font-weight: bold;
	text-align: center;
	background-image: url(img/titlew.gif);
	background-repeat: no-repeat;
	border-bottom: solid 1px #999999;	/* 内側に2pxあるので注意 */
}

#contents h2 {
	padding: 7px 0;
	margin: 0;
	font-family: Verdana, Arial, sans-serif;
	font-size: 120%;
	font-weight: bold;
	text-align: center;
	background-image: url(img/titlew.gif);
	background-repeat: no-repeat;
	border-bottom: solid 1px #999999;	/* 内側に2pxあるので注意 */
}

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

/* 大区分(h2) */
/* textbox内のh2をオーバーライド */
#textbox h2 {
	font-size: 100%;
	color: #333333;
	margin: 10px 0;
	padding: 6px 0 5px 23px;
	background-image: url(img/bg_h2.gif);
	background-repeat: no-repeat;
	text-align: left;
	clear: both;
}

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

/* 小区分 */
#textbox h4 {
	color: #333333;
	margin: 20px 0 10px 0;
	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;
	color:#cc6600;
}

#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;
}


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

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

#menu h4 {
	padding: 3px 0px 0px 17px;
	font-size: 12px;
	color: #333333;
	background-image: url(img/sidebg.gif);
	background-repeat: no-repeat;
	height: 24px;
	margin: 0;
}

#menu ul {
	list-style-type: none;
	font-size: 12px;
	font-family: monospace,"ＭＳ Ｐ明朝", sans-serif;
	margin: 0;
	padding: 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;
}

#menu p {
	margin: 5px 0px;
}

/***********************************************************
	右メニュー（商品紹介などなど） - 3/5追加
***********************************************************/
/* 右メニュー部分（スペース確保） */
#rightmenu {
	float: right;
	width: 180px;
}

/* 右メニュー部分 */
#rightbox {
	margin: 10px;
	line-height: 160%;
	font-size: 75%;
}

#rightbox .btn {
	/* サイト毎にボタン作成 */
	background-image: url(img/btnhome.gif);
	background-repeat: no-repeat;
	font-size: 12px;
	margin: 0 0 2px 0;
	padding: 16px;
}

#rightbox #book p {
	margin: 3px 0;
	text-align: center;
}

#rightbox h5 {
	background-image: url(img/osusume.gif);
	background-repeat: no-repeat;
	color: #ffffff;
	font-weight: bold;
	padding: 5px 0 5px 15px;
	margin: 10px 0 0 0;
	height: 30px;
}

#rightbox #osusume {
	font-size: 12px;
}

#rightbox #osusume p {
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 100%;
	text-align: center;
	font-weight: bold;
}

#rightbox a{
	color: #0000ff;
	text-decoration: none;
	font-weight: bold;
}

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

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


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

#footer p {
	float: right;
	padding: 12px 20px 0 0;
	color: #333333;
}

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

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

/***********************************************************
	各パーツ設定
***********************************************************/
/**** パンくずリスト ****/
#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;
}

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

.left {
	text-align: left;
}

.right {
	text-align: right;
}

/***********************************************************
	float 要素操作クラス
***********************************************************/
.fleft{
	float: left;
	margin: 5px 10px 0 0px;
}

.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;
}

.emp {
	font-weight: bold;
	background-color: #F9D5CF;
}

/***********************************************************
	個別サイトクラス
***********************************************************/
/* 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 #666666;
  line-height: 100%;
  background-repeat : no-repeat;
  margin: 0 0 10px 0;
}

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

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

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

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

/* ボタンエリア */
.topbtntable {
	width: 500px;
	text-align: center;
	margin: 5px 0 15px 0;
}

.topbtntable-l {
	width: 250px;
	text-align: center;
}

.topbtntable-r {
	width: 250px;
	text-align: center;
}

/* ランキング用 */
.raktable {
	width: 301px;
	padding: 0;
	margin: 5px 0 15px 0;
	text-align: center;
	border-top: 1px #cccccc solid;
	border-left: 1px #cccccc solid;
}

.raktable tr{
	padding: 0;
	margin: 0;
}

.raktable-l {
	width: 100px;
	text-align: center;
	padding: 0;
	margin: 0;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
}

.raktable-r {
	width: 200px;
	padding: 0;
	margin: 0;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
}


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

.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;
}

/**********************************/
/* プライオリティ・パスのテーブル */
/**********************************/
.pritable{
	width: 501px;
	border-top: 1px #cccccc solid;
	border-left: 1px #cccccc solid;
	text-align: center;
	margin: 0 0 10px 0;
}

.pritable1s {
	width: 150px;
	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;
}

.pritable2s {
	width: 75px;
	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;
}

.pritable3s {
	width: 150px;
	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;
}

.pritable4s {
	width: 125px;
	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;
}

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

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

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

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

/******************/
/* 提携カード一覧 */
/******************/
.cardlist{
	width: 501px;
	border-top: 1px #cccccc solid;
	border-left: 1px #cccccc solid;
	text-align: center;
	margin: 0 0 10px 0;
}

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

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

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

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

.cardlist4l {
	width: 180px;
	padding: 5px 0;
	text-align: left;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

.tdh{
	background-color: #c3f0ff;
	font-weight: bold;
}

/**********************************/
/* 空港ラウンジ・テーブル         */
/**********************************/
.pritable{
	width: 501px;
	border-top: 1px #cccccc solid;
	border-left: 1px #cccccc solid;
	text-align: center;
	margin: 0 0 10px 0;
}

.pritable1s {
	width: 150px;
	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;
}

.pritable2s {
	width: 75px;
	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;
}

.pritable3s {
	width: 150px;
	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;
}

.pritable4s {
	width: 125px;
	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;
}

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

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

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

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

/******************/
/* 提携カード一覧 */
/******************/
.roungelist{
	width: 531px;
	border-top: 1px #cccccc solid;
	border-left: 1px #cccccc solid;
	margin: 0 0 10px 0;
}

/* 国名 */
.roungelist1 {
	width: 80px;
	padding: 5px 0;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

/* 都市名 */
.roungelist2 {
	width: 120px;
	padding: 5px 0;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

/* 空港名（E） */
.roungelist3 {
	width: 130px;
	padding: 5px 0;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

/* ラウンジ名 */
.roungelist4 {
	width: 130px;
	padding: 5px 0;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

/* 場所 */
.roungelist5 {
	width: 150px;
	padding: 5px 0;
	border-bottom: 1px #cccccc solid;
	border-right: 1px #cccccc solid;
	font-size: 13px;
}

