@charset "utf-8"; 

/*base.css*/


/*
【1】初期設定
1-0 要素初期化
1-1 汎用セレクタ
1-2 フォーム関連セレクタ
1-3 CSSハック

【2】ページレイアウト
2-1 ページ全体		#container
2-2 ヘッダ			#top
2-3 本文			#contents
 2-4 補助枠			.wrap 
 2-5 中央			.main 
 2-6 中央(3カラム）.wrap .main
 2-7 サイド			.side
  2-8 左			#left
  2-9 右			#right
2-10 フッタ			#foot

【3】ページ全体内
3-0 共通
3-1 スキップナビ	.skip
3-2 アンカーナビ	.jump
3-3 バナー枠		.bnr

【4】ヘッダ内
4-0 共通
4-1 サイトID		#siteid
4-2 タグライン		#tagline
4-3 ログイン		#login
4-4 グローバルナビ	#gnavi
4-5 サブナビ		#snavi

【5】本文内
5-0 共通
5-1 パン屑					#pan
5-2 ボックス				.box
 5-3 タイトル				.title
 5-4 内容					.content
 5-5 内容の部品				.unit
 5-6 コメント				.comment
 5-7 詳細リンク				.more
 5-8 切替ボタン				.sw
 5-9 ボタンエリア			.bt
 5-10 サムネイル枠			.photoframe

【6】中央（メイン）内
6-0 共通
6-2 ボックス				.main .box
 6-3 タイトル				.main .title
 6-4 内容					.main .content
 6-5 内容の部品				.main .unit
 6-6 コメント				.main .comment
 6-7 詳細リンク				.main .more
 6-8 切替ボタン				.main .sw
 6-9 ボタンエリア			.main .bt
 6-10 サムネイル枠　（指定なし）
6-22 ボックス(3カラム)		.wrap .main .box 
 6-23 タイトル(3カラム)		.wrap .main .title 
 6-24 内容(3カラム)			.wrap .main .content 
 6-25 内容の部品(3カラム)	.wrap .main .unit 
 6-26 コメント(3カラム)		.wrap .main .comment 
 6-27 詳細リンク(3カラム)	.wrap .main .more 
 6-28 切替ボタン(3カラム)	.wrap .main .sw 
 6-29 ボタンエリア(3カラム)	.wrap .main .bt 

【7】サイド内
7-0 共通
7-2 ボックス(サイド)		.side .box
 7-3 タイトル(サイド)		.side .title
 7-4 内容(サイド)			.side .content
 7-5 内容の部品(サイド)		.side .unit
 7-6 コメント(サイド)		.side .comment
 7-7 詳細リンク(サイド)		.side .more
 7-8 切替ボタン(サイド)		.side .sw
 7-9 ボタンエリア(サイド)	.side .bt
7-22 ボックス(左)			#left .box
 7-23 タイトル(左)			#left .title
 7-24 内容(左)				#left .content
 7-25 内容の部品(左)		#left .unit
 7-26 コメント(左)			#left .comment
 7-27 詳細リンク(左)		#left .more
 7-28 切替ボタン(左)		#left .sw
 7-29 ボタンエリア(左)		#left .bt
7-42 ボックス(右)			#right .box
 7-43 タイトル(右)			#right .title
 7-44 内容(右)				#right .content
 7-45 内容の部品(右)		#right .unit
 7-46 コメント(右)			#right .comment
 7-47 詳細リンク(右)		#right .more
 7-48 切替ボタン(右)		#right .sw
 7-49 ボタンエリア(右)		#right .bt
7-60 サイドメニュー	#smenu

【8】フッタ内
8-0 共通
8-1 フッタメニュー	#fmenu
8-2 コピーライト	#copy

【9】CSS読み込み（オプション）
9-1 MacIE用CSS


【各ページ固有クラス名】
※ body又はページ全体を囲むdiv要素に命名
トップ			.indextop
カテゴリ		.indextop2
地域			.indextop3
ランキング		.popular
新規ブログ		.newblog
タグ検索		.indextag
カレンダー		.indexcalendar
マップ			.map
アンケート結果	.survey
お問い合わせ	.inquiry
エラーページ	.error
プライバシー	.privacy
利用規約		.rule

フォトラバトップ	.indexptb
フォトラバカテゴリ	.ptbcategory
├本文と画像		.category0
├タイトルと画像	.category1
└タイトルのみ		.category2
フォトラバテーマ	.ptbtopic
├記事順			.ptbtopic0
└画像順			.ptbtopic1
*/




/*【1】初期設定*/
/*1-0 要素初期化*/
body {
	margin:0;
	padding:0;
	text-align: center;
	background-image: url(../img/t70/bgshiiki.gif);
	background-repeat: repeat-y;
	background-position: center top;

}
p , ul , ol , li , dl , dt , dd , address , strong , em ,
h1 , h2 , h3 , h4 , h5 , h6 , 
table , caption , th , td {
	font-size: 100%;
	font-weight: normal;
	line-height: 1.5;
	margin:0;
	padding:0;
}
p {
	margin:0 0 1em;
}
li {	list-style-type: none;}
h1 , h2 , h3 , h4 , h5 , h6 {}
strong { font-weight:bold;}
em { font-style:italic;}
a {}
a:link {
	color: #CCCCCC;
	text-decoration: none;
}
a:visited {
	color: #666666;
	text-decoration: none;
}
a:hover , a:active {
	color: #999966;
	text-decoration: none;
}
img { border:none;}
hr {
	display:none;
}

/*1-1 汎用セレクタ*/
/*クリア*/
.clear { clear:both;}

/*アイコン画像*/

/*アイコン画像（ポータル出力class名）*/


/*ライン <div class="line-dot"><hr></div> */
.line-dot {
	background: url(../img/bg/bg_dot.gif) repeat-x 0 50%;
	width: 100%;
	height:10px;
	border: none;
}

/*カラー*/
.black {color:#000;}
.blue {color:#3333ff;}
.orange	{color:#ff9900;}
.red {color	:#f00;}

/*フォントサイズ*/
.font9	{font-size: 9px;}
.font10	{
	font-size: 85%;
}
.font12	{font-size: 12px;}
.font14	{font-size: 14px;}
.font16	{font-size: 16px;}
.font18	{font-size: 18px;}
.font24	{font-size: 24px;}
.font36	{font-size: 36px;}
.xsmall { font-size: 75%;}
.small { font-size: 86%;}
.large { font-size: 116.7%;}
.xlarge { font-size: 133.4%;}

/*文字揃え*/
.textright { text-align:right;}
.textleft { text-align:center;}
.textcenter { text-align:left;}

/*スペース
使用方法：
	<div class="space10"><hr></div>
*/
.space1 { height:1px;}
.space2 { height:2px;}
.space3 { height:3px;}
.space4 { height:4px;}
.space5 { height:5px;}
.space6 { height:6px;}
.space7 { height:7px;}
.space8 { height:8px;}
.space9 { height:9px;}
.space10 { height:10px;}
.space12 { height:12px;}
.space14 { height:14px;}
.space15 { height:15px;}
.space16 { height:16px;}
.space18 { height:18px;}
.space20 { height:20px;}
.space22 { height:22px;}
.space24 { height:24px;}
.space25 { height:25px;}
.space26 { height:26px;}
.space30 { height:30px;}



/*1-2　フォーム関連*/
form {
	margin:0;
	padding:0;
}
input.button	{
	border-top: 3px double #ccc;
	border-right: 3px double #666;
	border-bottom: 3px double #666;
	border-left: 3px double #ccc;
	color: #333;
	background :#E2E2E2 url(../img/bg/bg_btn.jpg) repeat-x;/*フォームボタン用（背景）*/
	font-family: "verdana", "helvetica", "osaka", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 12px;
	font-weight: normal;
	cursor: pointer;
	padding: 3px;
}
input.text		{
	width : 105px;
	margin : 0px;
	padding : 4px;
	background : #F5F4F1 repeat-x;
}
select 			{
	border-top : 3px double #ccc;
	border-right : 3px double #666;
	border-bottom : 3px double #666;
	border-left : 3px double #ccc;
	color : #000;
	background : #F5F4F1 repeat-x;
	font-size : 12px;
	font-weight : normal;
	margin : 0px 3px 0px 3px;
	padding : 2px;
}
input.radio		{
	margin : 3px 0px 0px 0px;
	padding : 1px 1px 0px 1px;	
}




/*1-3 CSSハック*/
/*clearfix*/

.clearfix:after{/*for modern browser*/
    display: block;
    height:0px;
    clear:both;
    visibility:hidden;
}




/*【2】画面レイアウト*/
/*2-1 全体*/
#container {
	z-index: 1;
	text-align: left;
	width: 900px;
	font-size: 85%;
	font-family: verdana, Helvetica, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", osaka, "メイリオ", meiryo, "ＭＳ Ｐゴシック", sans-serif;
	border-right-style: none;
	border-left-style: none;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-style: none;
	border-bottom-style: none;
	background-color: #FFFFFF;
}

/*2-2 ヘッダ*/
#top {
	text-align: left;
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/*2-3 本文*/
#contents {
	width: 868px;
	text-align: left;
	background-color: #fff;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 5px;
}

/*2-4 補助枠*/
.wrap {
	width: 678px;
	float: left;
	display: inline;/*IE+float 横マージン膨張対策*/
	margin: 0 5px 0 0;
}

/*2-5 中央*/
.main {
	float: right;
	width: 653px;
	display: inline;/*IE+float 横マージン膨張対策*/
	margin: 0 5px 0 0;
}

/*2-6 中央(３カラム）*/
.wrap .main {
	width: 468px;
	float: right;
	margin:0;
}

/*2-7 サイド*/
.side {}

/*2-8 左*/
#right2 {
	width: 230px;
	float: right;
	display: inline;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	margin-top: 0px;
}

/*2-9 右*/
#right {
	width: 180px;
	float: left;
}

/*2-10 フッタ*/
#foot {
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-repeat: repeat;
	font-size: 90%;
	background-color: #000000;
	color: #FFFFFF;
	clear: both;
	padding: 0px;
	width: 900px;
	float: left;
}

/*【3】ページ全体内*/
/*3-0 共通*/

/*ヘッダ画像*/
.header {
	padding			: 0px 5px 0px 5px;
	font-size		: 10px;
	line-height		: 16px;
}

/*丸角タイトル*/
.rtop *{
	background		: #f60;
	border-left		: 1px solid #f60;
	border-right	: 1px solid #f60;
	height			: 1px;
	overflow		: hidden; 
	display			: block;
}

.rbottom *	{
	background		: #fff;
	height			: 1px;

	display			: block;
}

/*丸角メイン設定*/

.r1	{
	background		: #7FA9FF;
	height			: 1px;
	margin			: 0px 2px;
}

.r2	{
	border-left		: 1px solid #7FA9FF;
	border-right	: 1px solid #7FA9FF;
	height			: 1px;
	margin			: 0px 1px;
}


/*3-1 スキップナビ*/
.skip {
	position: absolute;
	left: -99999px;
	width: 1px;
	height: 1px;
	/*hide\*/overflow: hidden;/*MacIE*/
	margin: 0;
}

/*3-2 アンカーナビ*/
.jump {
	text-align:center;
}

/*3-3 バナー枠*/
.bnr {	text-align:center; margin:0;}
.bnr p {	text-align:center; margin:0;}
.bnr a {}
.bnr a img { margin:0 auto; border:none;}

/*【4】ヘッダ内*/
/*4-0 共通*/
#top a {}
#top a:link , #top a:visited {}
#top a:hover , #top a:active {}

/*4-1 サイトID*/
#siteid {
	width: 140px;
	/* float: left; */
	display: inline;/*IE6+float 横マージン膨張対策*/
	margin: 0 0 0 5px;
}
#siteid p {
	display:inline;
}

/*4-2 タグライン*/
#tagline {
	/* width: 430px; */
	display: block;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 0;
	font-size: 80%;
	margin-left: 302px;
	color: #FFFFFF;
	width: 585px;
	float: left;
	display:inline
}

/*4-3 ログインメニュー*/
#login {
	/* width: 280px; */
	float: right;
	font-size:1.2em;
	text-align: right;
	line-height: 16px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

#login img{
	padding: 2px 0 0;
}


/*4-4 グローバルナビ*/
#gnavi {
	clear: both;
	background:url(../img/bg/bg_gnavi.gif) no-repeat;
	background-position: bottom center;
	height: 26px;
}
#gnavi img {
	padding-bottom: 3px; 
}
#gnavi ul {
	background:url(../img/bg/bg_gnavi2.gif) no-repeat 0 100%;
	padding:0 0 4px 15px;
}
#gnavi li {
	float:left;
	display:inline;
	margin:0 15px 0 0;
	font-size: 1.4em;
	font-weight:bold;
}
#gnavi li a {
	display:block;
	padding: 5px 0 5px;
}
#gnavi li a:link ,
#gnavi li a:visited {
	text-decoration:none;
}
#gnavi li a:hover ,
#gnavi li a:active {
	text-decoration:none;
	background:url(../img/bg/bg_gnavi_on.jpg) repeat-x 0 100%;
}

/*4-5 サブナビ*/
#snavi {}

/*【5】本文内*/
/*5-0 共通*/

/*5-1 パン屑*/
#pan {
	clear: both;
	/* width: 858px; */
	margin: 1px 0px 5px 0px;
	padding: 2px 0 4px 10px;
	font-size: 12px;
	/* background: url(../img/bg/bg_pan2.gif) no-repeat; */
	background-position: center top;
	background-color: #A0C4F4;
}
#pan p ,
#pan h1 ,
#pan h2 {
	display:inline;
	margin:0;
	white-space:normal;
}
/*
#pan a {
	background:url(../img/bg/bg_pan.gif) no-repeat 100% 50%;
	padding:0 20px 0 0;
}
*/
/*5-2 ボックス*/
.box {
	font-size: 1.2em;
	margin:0 0 10px;
}
/*clearfix(S)*/

.box:after{/*for modern browser*/
    
    display: block;
    height:0px;
    clear:both;
    visibility:hidden;
}
/*clearfix(E)*/


/* 5-3 タイトル*/
.title {
	font-weight: bold;
	font-size: 100%;
	line-height: 2em;
	letter-spacing: 1px;
	height: 2em;
	color: #fff;
	background-color: #000000;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 25px;
}
.title2 {
	font-weight: normal;
	font-size: 12px;
	line-height: 120%;
	letter-spacing: 1px;
	/* height: 18px; */
	color: #333;
	/* padding-top: 4px; */
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}
.title3 {
	padding: 4px 0px 0px 25px;
	font-weight: normal;
	font-size: 12px;
	line-height: 120%;
	letter-spacing: 1px;
	height: 18px;
	color: #333;
}
/* 5-4 内容*/
.content			{
	overflow		: hidden;
	padding-top: 10px;
	padding-right: 0px;
	margin-top: 0px;
	padding-left: 10px;
}
.content a:link,.content a:visited{
	color			: #339;
}

.content a:active,.content a:hover{
	color			: #33f;
}
/* 5-5 内容の部品*/
.unit {}
/* 5-6 コメント*/
.comment {
	margin: 0 0 5px;
}
/* 5-7 詳細リンク*/
.more {
	text-align:right;
	margin: 0;
}
.more a:link ,
.more a:visited {
	text-decoration:underline;
}
.more a:hover ,
.more a:active {
	text-decoration:none;
}
/* 5-8 切替ボタン*/
.sw {}
/* 5-9 ボタンエリア*/
.bt {
	text-align: center;
}
/* 5-10 サムネイル枠*/
.photoframe {}
.photoframe ul {
	margin:0 0 0 2px;
	width:525px
}
.photoframe li {
	float:left;
	padding:0 0 2px;
	width:75px;
}
.photoframe li a {
	border:none;
}
.photoframe li a:link {	color:#339;}
.photoframe li a:visited { color:#339;}
.photoframe li a:hover ,
.photoframe li a:active {	color:#36f;}
.photoframe li img {
	border:1px solid #ccc;
}
.photoframe li span {
	height:1.2em;
	line-height:1.2;
	overflow:hidden;
	text-align: center;
	font-size: 10px;
}

/*【6】中央（メイン）内*/
/*6-0 共通*/
.main a {}
.main a:link {	color: #339;}
.main a:visited {}
.main a:hover , .main a:active {
	color: #36f;
}

/*6-2 中央（メイン）ボックス*/
.main .box {}
/* 6-3 中央（メイン）タイトル*/
.main .title {
	background:url(../img/bg/bg_title_long.gif) no-repeat 0 0;
}
.main .title2 {
	background-image: url(../img/miyakoda/bg_title_long.gif___);
	background-repeat: no-repeat;
	background-position: 0 0;
	padding-bottom: 4px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #0055B5;
	display: block;
	text-align: left;
}
.main .title3 {
	background:url(../img/bg/bg_title_long2.gif) no-repeat 0 0;
}
/* 6-4 中央（メイン）内容*/
.main .content {}
/* 6-5 中央（メイン）内容の部品*/
.main .unit {}
/* 6-6 中央（メイン）コメント*/
.main .comment {}
/* 6-7 中央（メイン）詳細リンク*/
.main .more {}
/* 6-8 中央（メイン）切替ボタン*/
.main .sw {}
/* 6-9 中央（メイン）ボタンエリア*/
.main .bt {
	margin: 5px 0 0;
}

/*6-22 中央（メイン）ボックス(3カラム)*/
.wrap .main .box {}
/* 6-23 中央（メイン）タイトル(3カラム)*/
.wrap .main .title {
	background:url(../img/bg/bg_title_center.gif) no-repeat 0 0;
}
.wrap .main .title2 {
	background:url(../img/bg/bg_title_center.gif) no-repeat 0 0;
}
.wrap .main .title3 {
	background:url(../img/bg/bg_title_center.gif) no-repeat 0 0;
}
/* 6-24 中央（メイン）内容(3カラム)*/
.wrap .main .content {
}
/* 6-25 中央（メイン）内容の部品(3カラム)*/
.wrap .main .unit {}
/* 6-26 中央（メイン）コメント(3カラム)*/
.wrap .main .comment {}
/* 6-27 中央（メイン）詳細リンク(3カラム)*/
.wrap .main .more {}
/* 6-28 中央（メイン）切替ボタン(3カラム)*/
.wrap .main .sw {}
/* 6-29 中央（メイン）ボタンエリア(3カラム)*/
.wrap .main .bt {}


/*【7】サイド内*/
/*7-0 共通*/
.side a {}
.side a:link {	color: #339;}
.side a:visited {}
.side a:hover , .side a:active {
	color: #36f;
}

/*7-2 サイドボックス*/
.side .box {}
/* 7-3 サイドタイトル*/
.side .title {
}
.side .title2 {
}
.side .title3 {
}
/* 7-4 サイド内容*/
.side .content {}
/* 7-5 サイド内容の部品*/
.side .unit {}
/* 7-6 サイドコメント*/
.side .comment {}
/* 7-7 サイド詳細リンク*/
.side .more {}
/* 7-8 サイド切替ボタン*/
.side .sw {}
/* 7-9 サイドボタンエリア*/
.side .bt {}

/*7-22 ボックス(左)*/
#left .box {}
/* 7-23 タイトル(左)*/
#left .title {
	background-image: url(../img/miyakoda/bg_title_left.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}
/* 7-24 内容(左)*/
#left .content {
}
/* 7-25 内容の部品(左)*/
#left .unit {}
/* 7-26 コメント(左)*/
#left .comment {}
/* 7-27 詳細リンク(左)*/
#left .more {}
/* 7-28 切替ボタン(左)*/
#left .sw {}
/* 7-29 ボタンエリア(左)*/
#left .bt {}

/*7-42 ボックス(右)*/
#right .box {}
/* 7-43 タイトル(右)*/
#right .title {
	background:url(../img/bg/bg_title_right.gif) no-repeat 0 0;
}
/* 7-44 内容(右)*/
#right .content {
}
/* 7-45 内容の部品(右)*/
#right .unit {}
/* 7-46 コメント(右)*/
#right .comment {}
/* 7-47 詳細リンク(右)*/
#right .more {}
/* 7-48 切替ボタン(右)*/
#right .sw {}
/* 7-49 ボタンエリア(右)*/
#right .bt {}

/*7-60 サイドメニュー*/
.side #smenu {}

/*【8】フッタ内*/
/*8-0 共通*/
/*8-1 フッタメニュー*/
#fmenu70 {
	font-size: 1.2em;
	margin: 0 0 5px;
	color: #FFFFFF;
}
/*8-2 コピーライト
#copy70 {
	font-style: normal;
	font-size: 1.2em;
	background: url(../img/bg/bg_footer.gif) no-repeat;
	background-position: center;
	padding: 2px 0 2px;
	margin: 0 0 2px;
	color: #FFFFFF;
}*/
#copy70 a:link , #copy a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

#copy70 a:active , #copy a:hover {
	color: #FFCC33;
	text-decoration: none;
}

/* 地域リンク*/
#area {
	color: #999;
}

#area a:link , #area a:visited {
	color: #339;
	text-decoration: none;
}

#area a:active , #area a:hover {
	color: #36f;
	text-decoration: none;
}

/*【9】CSS読み込み（オプション）*/
/* 9-1 MacIE用CSS （MacIE用パスフィルター）*/
  /*\*//*/
  @import "macie.css";
  /**/

#hamahama a:link , #hamahama a:visited {
	color: #000;
	text-decoration: none;
}

#hamahama a:active , #hamahama a:hover {
	color: #f60;
	text-decoration: none;
}

body {

}
ul#hmaNavi {
	display: block;
	margin-bottom: 10px;
}
#oficialentry h3.text {
	font-weight: bold;
}
#Clog2 #container #contents #center .content {
	/* width: 647px; */
	overflow: hidden;
	background-image: url(../img/miyakoda/bg_hairline.gif);
}
ul.clumn3box {
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 643px;
	float: left;
	display: block;
}
ul.clumn3box li {
	display: block;
	width: 214px;
	float: left;
}
#Clog2 #container #contents #center #informationM .content {
	padding: 10px;
}
#pickupM .photoM {
	width: 120px;
	float: left;
	height: 120px;
}
#pickupM .listM {
	width: 280px;
	float: left;
	height: 10em;
}
#Clog2 #container #contents #center #pickupM .content {
	/* width: 645px; */
}
#pickupM .listM h3 {
	margin-bottom: 6px;
}
#Clog2 #container #contents #left #green {
	color: #FFFFFF;
	background-color: #A5C400;
	padding-top: 14px;
	padding-right: 14px;
	padding-bottom: 24px;
	padding-left: 14px;
}
#faxeTop {
	width: 650px;
	margin-bottom: 10px;
}
#faxeTop #informationM {
	width: 370px;
	float: left;
}
#faxeTop #pickupM {
	width: 280px;
	float: left;
}
#faxeTop #pickupM .title2 {
	display: block;
}
#pickupMban {
	margin-bottom: 4px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}
#informationM .content p {
	font-size: 90%;
}
#Clog2 #container #contents #left #top #tagline {
	padding-top: 0px;
	margin-bottom: 10px;
}
#pickupM .listM h3.text {
	background-color: #EBE0CC;
	text-indent: 10px;
	font-weight: bold;
	padding-top: 1px;
	padding-bottom: 1px;
}
#left #top #login {
	padding-top: 2px;
}
#left #top #login a {
	font-size: 90%;
	color: #666666;
}
#banStaff li {
	margin-bottom: 4px;
}
#nose {
	clear: both;
}
#face {
	margin-bottom: 10px;
}
#pickupM .content .rss_list {
	padding-left: 10px;
}
#faxeTop .box {
	margin-bottom: 0px;
}
#top1 {
	height: 377px;
	width: 900px;
	background-image: url(../img/t70/head.jpg);
	background-repeat: no-repeat;
}
#toptext {
	width: 637px;
	height: 39px;
	background-image: url(../img/t70/topcopy.gif);
	background-repeat: no-repeat;
}
#wraper {
	width: 900px;
	padding-top: 10px;
	background-color: #FFFF00;
	height: 0px;
}
#main {
	float: left;
	width: 670px;
	padding-top: 10px;
}
.deco {
	border-top-width: 2px;
	border-right-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #333300;
	border-right-color: #333300;
	border-left-color: #333300;
}
#saishin01 {
	background-image: url(../img/t70/bg01saishin.gif);
	background-repeat: repeat;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #333300;
	border-bottom-color: #333300;
	border-left-color: #333300;
	width: 577px;
}
#saishin02 {
	background-image: url(../img/t70/bg02saishin.gif);
	background-repeat: repeat;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #333300;
	border-bottom-color: #333300;
	border-left-color: #333300;
	width: 577px;
}
#saishin03 {
	background-image: url(../img/t70/bg03saishin.gif);
	background-repeat: repeat;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #333300;
	border-bottom-color: #333300;
	border-left-color: #333300;
	width: 577px;
}
#saishin04 {
	background-image: url(../img/t70/bg04saishin.gif);
	background-repeat: repeat;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #333300;
	border-bottom-color: #333300;
	border-left-color: #333300;
	width: 577px;
}
#saishin05 {
	background-image: url(../img/t70/bg05saishin.gif);
	background-repeat: repeat;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #333300;
	border-bottom-color: #333300;
	border-left-color: #333300;
	width: 577px;
}


.blogbanner {
	padding-left: 35px;
	padding-bottom: 4px;
}
#teikyo {
	background-image: url(../img/t70/bg3.gif);
	background-repeat: repeat;
	padding: 15px;
	width: 870px;
	text-align: left;
	color: #FFFFFF;
}
#recommendation {
	width: 225px;
	color: #FFFFFF;
	position: absolute;
	left: 0px;
	top: 0px;
}
#footwraper {
	position: relative;
	height: 515px;
}
#article {
	margin-left: 235px;
	background-color: #FFFFFF;
	height: 470px;
	color: #000000;
	background-image: url(../img/t70/foot-flower.gif);
	background-repeat: no-repeat;
	padding: 15px;
}
.footlogo {
	width: 180px;
	padding-right: 25px;
	padding-left: 10px;
	float: left;
	color: #FFFFFF;
}
#mainbox {
	background-image: url(../img/t70/bg05.gif);
	background-repeat: repeat;
	padding: 10px;
	border: 2px solid #333300;
	position: relative;
	height: 820px;
}
#01decolation {
	width: 577px;
}
#kilala {
	background-color: #dddf00;
	width: 577px;
	border: 2px solid #333300;
	height: 285px;
}
#reaf {
	height: 179px;
	width: 79px;
	float: left;
	background-position: bottom;
	padding-top: 52px;
	padding-right: 5px;
	background-color: #dddf00;
}
.cate {
	float: left;
	height: 82px;
	width: 287px;
}

#mainbox1 {
	height: 141px;
	width: 276px;
}
.mainboxtate {
	height: 730px;
	width: 276px;
	float: left;
	margin-left: 1px;
}

#mainboxwraper {

}
#Clog2 #container #wraper #main #saishin01 #newentry .content2 .unit .clearfix p {
	width: 300px;
}
#Clog2 #container #wraper #main #saishin01 #newentry .content2 .unit .clearfix h3 {
	width: 260px;
}
#Clog2 #container #wraper #main #saishin01 #newentry .content2 .unit .clearfix {
	width: 575px;
}
.footmain {
	padding-left: 52px;
}
.category {
	padding-left: 30px;
	font-size: 110%;
}
#morizo {
	background-image: url(../img/t70/blog01.gif);
	background-repeat: no-repeat;
	height: 270px;
	width: 276px;
}
#ganbarumama {
	height: 272px;
	width: 276px;
	background-image: url(../img/t70/blog02.gif);
	background-repeat: no-repeat;
}
#handmade {
	height: 272px;
	width: 276px;
	background-image: url(../img/t70/blog03.gif);
	background-repeat: no-repeat;
}
#pippibox {
	background-image: url(../img/t70/blog04.gif);
	background-repeat: no-repeat;
	height: 426px;
	width: 276px;
}
.blogcopy {
	padding-top: 60px;
	padding-left: 20px;
	line-height: 1.3em;
	padding-bottom: 3px;
	font-size: 90%;
}
.bloglink {
	float: right;
	padding-right: 5px;
}
.bloglink2 {
	float: right;
	padding-right: 13px;
}
.line {
	height: 3px;
	border-bottom-width: 2px;
	border-bottom-style: dashed;
	border-bottom-color: #333300;
	width: 245px;
	float: right;
	overflow: hidden;
	margin-right: 10px;
}
.line_p {
	height: 3px;
	border-bottom-width: 2px;
	border-bottom-style: dashed;
	border-bottom-color: #333300;
	width: 235px;
	float: right;
	overflow: hidden;
	margin-left: 5px;
	margin-right: 10px;
}
.pippi {
	height: 58px;
	width: 103px;
	padding-top: 50px;
	padding-left: 170px;
}
.blogcopy2 {
	padding-top: 135px;
}
#kilalacopy {
	float: left;
	line-height: 1.7em;
	font-size: 80%;
	padding-top: 5px;
	height: 225px;
	background-color: #dddf00;
}
#monthkilala {
	background-color: #FFFFFF;
	height: 221px;
	padding: 0px;
	margin: 5px;
}
#kilalalogo {
	padding-left: 50px;
}
.kilalaprofile {
	float: left;
	height: 55px;
	width: 55px;
	padding-left: 5px;
	padding-bottom: 5px;
}
.kilalablogtext {
	height: 55px;
	padding-right: 3px;
	padding-left: 5px;
	float: left;
	font-size: 75%;
	line-height: 1.3em;
	padding-bottom: 5px;
}
.kilalablogtitle {
	font-size: 90%;
	font-weight: bold;
	padding-left: 5px;
}
.sankaku {
	font-size: 110%;
	padding-left: 55px;
	line-height: 1em;
}
.newsList {
	padding-left:20px;
	padding-top:5px;
	clear: both;
}
.newsList_p {
	padding-left:40px;
	padding-top:8px;
	padding-right:30px;
	clear: both;
}
.newsList a {
	color: #0080FF;
}
.newsList_p a {
	color: #0080FF;
}
.cateList {
	padding-bottom: 10px;
	padding-left: 20px;
}
.cateList a {
	color: #333333;
}
.cateList a:hover {
	color: #999966;
}
#left a {
	color: #333333;
}
.text1 {
	color: #333300;
}

.text1 a:link {
	color:#333300;
}
.text1 a:visited {
	color:#333300;
}
.text1 a:hover{
	color:#999966;
}
.text1 a:active {
	color:#999966;
}


.kilalablogtitle a:link {
	color:#333300;
}
.kilalablogtitle a:visited {
	color:#333300;
}
.kilalablogtitle a:hover{
	color:#999966;
}
.kilalablogtitle a:active {
	color:#999966;
}


#teikyo a:link {
	color:#FFFFFF;
}
#teikyo a:visited {
	color:#FFFFFF;
}
#teikyo a:hover{
	color:#CCCC99;
}
#teikyo a:active {
	color:#CCCC99;
}
.inner1 {
	margin-left: 10px;
	width: 650px;
	margin-right: 10px;
}
.inner2 {
	background-color: #eeeeee;
	margin-right: 10px;
	width: 200px;
	padding-right: 10px;
	padding-left: 10px;
	margin-top: 0px;
	padding-top: 10px;
}
.shop01 {
	background-color: #FFFFFF;
	height: 154px;
	width: 435px;
	color: #FF3366;
	float: left;
	display: inline;
	margin-top: 10px;
	margin-left: 10px;
	background-image: url(../img/t70/shoptel01.gif);
	background-repeat: no-repeat;
	display:inline
}
.shop05 {
	background-color: #FFFFFF;
	height: 154px;
	width: 435px;
	color: #FF3366;
	float: left;
	display: inline;
	margin-top: 10px;
	margin-left: 10px;
	background-image: url(../img/t70/shoptel05.gif);
	background-repeat: no-repeat;
	display:inline
}
.shop02 {
	background-color: #FFFFFF;
	height: 154px;
	width: 435px;
	color: #FF3366;
	float: left;
	display: inline;
	margin-top: 10px;
	margin-left: 10px;
	background-image: url(../img/t70/shoptel02.gif);
	background-repeat: no-repeat;
	display:inline
}
.shop03 {
	background-color: #FFFFFF;
	height: 154px;
	width: 435px;
	color: #FF3366;
	margin-top: 10px;
	padding: 0px;
	float: right;
	margin-right: 10px;
	display: inline;
	background-image: url(../img/t70/shoptel03.gif);
	background-repeat: no-repeat;
	display:inline
}
.shop04 {
	background-color: #FFFFFF;
	height: 154px;
	width: 435px;
	color: #FF3366;
	margin-top: 10px;
	padding: 0px;
	float: left;
	margin-right: 10px;
	display: inline;
	background-image: url(../img/t70/shoptel04.gif);
	background-repeat: no-repeat;
	display:inline;
	margin-bottom: 20px;
	margin-left: 10px;
}

.undertext {
	font-size: 85%;
	line-height: 1.3em;
	color: #000000;
	padding-top: 3px;
	padding-bottom: 10px;
	text-align: center;
}
#mainbody {
	background-color: #FFFFFF;
	float: left;
	width: 900px;
}
.shopwrap {
	background-color: #CCCCFF;
	float: left;
	width: 900px;
}
.tableshop {
	width: 860px;
	background-color: #CCFFFF;
	border: 2px solid #FFFFFF;
	color: #000000;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}
.footbottom {
	height: 45px;
	margin-right: 10px;
	margin-left: 10px;
}
.footbottom2 {
	height: 45px;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 10px;
}
.footerlogo {
	background-color: #00CCCC;
	float: left;
	height: 45px;
	margin-right: 10px;
}
.footernavi {
	float: right;
	height: 40px;
	width: 547px;
	text-align: right;
	padding-top: 5px;
	font-size: 110%;
	line-height: 1.4em;
}
.footernavi a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:visited {
	color: #ffffff;
	text-decoration: none;
}
a:hover , a:active {
	color: #999999;
	text-decoration: none;
}

.magenta {
	background-color: #FF3366;
	height: 1.5em;
	text-align: right;
	padding-right: 10px;
	display: block;
	width: 890px;
	clear: both;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	color: #FFFFFF;
}
.magenta2 {
	background-color: #FF3366;
	height: 1.5em;
	text-align: right;
	padding-right: 10px;
	display: block;
	width: 890px;
	clear: both;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	color: #FFFFFF;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #000000;
}
.customer {
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-left-color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	width: 648px;
	padding-bottom: 10px;
}
.customer004 {
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-left-color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	width: 648px;
	padding-bottom: 10px;
	height: 980px;
}
.customer2 {
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-left-color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	padding-bottom: 10px;
	margin-top: 10px;
	padding-top: 10px;
	padding-left: 10px;
	float: left;
	width: 638px;
	margin-bottom: 10px;
}
.customer3 {
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-left-color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	float: left;
	width: 638px;
	padding-bottom: 10px;
	margin-top: 10px;
	padding-top: 50px;
	padding-left: 10px;
	background-image: url(../img/t70/about10.jpg);
	background-repeat: no-repeat;
	height: 208px;
	display: inline;
	margin-bottom: 10px;
	line-height: 1.5em;
}


.pinkline {
	line-height: 2em;
	background-color: #FFCCCC;
	padding-left: 15px;
	font-weight: bold;
}

.avatar {
	background-image: url(../img/t70/avatar01.gif);
	background-repeat: no-repeat;
	padding-left: 110px;
	font-size: 95%;
	padding-top: 10px;
}
.avatar .continue {
	color: #FF3366;
	font-weight: bold;
}
.avatar02 {
	background-image: url(../img/t70/avatar02.gif);
	background-repeat: no-repeat;
	padding-left: 110px;
	font-size: 95%;
	padding-top: 10px;
}
.avatar02 .continue {
	color: #FF3366;
	font-weight: bold;
}


/*リンク表示指定*/
a.navi01{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi1.gif);
	float: left;
}
a.navi001{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi1.gif);
	float: left;
}
/*リンクにマウスが乗ったとき指定*/
a.navi01:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi1.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}

/*リンク表示指定*/
a.navi02{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi2.gif);
	float: left;
}
a.navi002{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi2.gif);
	float: left;
}
/*リンクにマウスが乗ったとき指定*/
a.navi02:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi2.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}

/*リンク表示指定*/
a.navi03{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi3.gif);
	float: left;
}
a.navi003{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi3.gif);
	float: left;
}
/*リンクにマウスが乗ったとき指定*/
a.navi03:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi3.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}

/*リンク表示指定*/
a.navi04{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi4.gif);
	float: left;
}
a.navi004{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi4.gif);
	float: left;
}
/*リンクにマウスが乗ったとき指定*/
a.navi04:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi4.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}

/*リンク表示指定*/
a.navi05{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi5.gif);
	float: left;	
}
a.navi005{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi5.gif);
	float: left;	
}
/*リンクにマウスが乗ったとき指定*/
a.navi05:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi5.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}

/*リンク表示指定*/
a.navi06{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi6.gif);
	float: left;	
}
a.navi006{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi6.gif);
	float: left;	
}
/*リンクにマウスが乗ったとき指定*/
a.navi06:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi6.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}

/*リンク表示指定*/
a.navi07{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi7.gif);
	float: left;	
}
a.navi007{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi7.gif);
	float: left;	
}
/*リンクにマウスが乗ったとき指定*/
a.navi07:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi7.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}

/*リンク表示指定*/
a.navi08{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi8.gif);	
	float: left;
}
a.navi008{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi8.gif);	
	float: left;
}
/*リンクにマウスが乗ったとき指定*/
a.navi08:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi8.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}

/*リンク表示指定*/
a.navi09{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/navi9.gif);	
	float: left;
}
a.navi009{
	display:block;/*テキストをブロック化*/
	width:100px;/*幅*/
	height:49px;/*細かい位置指定*/
	background-repeat: no-repeat;
	text-indent: -4000px;
	background-image: url(../img/t70/2navi9.gif);	
	float: left;
}
/*リンクにマウスが乗ったとき指定*/
a.navi09:hover{
	display:block;
	width:100px;
	height:49px;
	background-image: url(../img/t70/2navi9.gif);
	background-repeat: no-repeat;
	text-indent: -4000px;
	float: left;
}
.shopphoto {
	float: left;
}
.address {
	line-height: 1.4em;
	float: left;
	padding-top: 55px;
	padding-left: 10px;
}



/* SpryCollapsiblePanel.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	background-color: #FFFFFF;
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-left: 110px;
	padding-top: 5px;
	font-family: sans-serif;
	font-size: 95%;
	font-weight: bold;
	color: #FF3366;
	padding-bottom: 5px;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 110px;
	font-size: 95%;
	line-height: 1.6em;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {

}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
}

.inner1 .map {
	border: 1px solid #000000;
}
.store {
	border: 1px solid #000000;
	height: 191px;
	width: 246px;
	float: left;
}
.information {
	float: left;
	padding-left: 10px;
}
.finding {
	border-bottom-width: 3px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	margin-bottom: 10px;
	font-size: 115%;
	font-weight: bold;
	color: #666666;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	padding-bottom: 2px;
}
.point {
	font-weight: bold;
	color: #666666;
	padding-bottom: 5px;
	font-size: 105%;
}
.point2 {
	font-size: 105%;
	color: #FF3366;
}
table.profileTable {
	background-image: none;
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #FFFFFF;
	margin: 0px;
	width: 392px;
	font-size: 85%;
	height: 193px;
}
.profileTable th
{
	text-align: left;
	background-color: #000000;
	font-size: 100%;
	line-height: 1.7em;
	height: 1.7em;
	width: 30%;
	padding-left: 10px;
	font-weight: bold;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}
.profileTable td
{
	text-align: left;
	font-size: 100%;
	line-height: 1.7em;
	height: 1.7em;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	color: #333333;
	background-color: #eeeeee;
}
.maincopy {
	font-size: 115%;
	background-color: #eee;
	text-align: center;
	height: 3em;
	line-height: 3em;
	font-weight: bold;
	margin-bottom: 10px;
}

.catalogphoto {
	float: left;
	height: 312px;
	width: 207px;
	border: 1px solid #330033;
	margin-right: 10px;
	display: inline;
	margin-top: 10px;
}
.catalogphoto2 {
	float: left;
	height: 312px;
	width: 207px;
	border: 1px solid #330033;
	
	display: inline;
	margin-top: 10px;
}
.catalogphoto3 {
	float: left;
	height: 138px;
	width: 207px;
	border: 1px solid #330033;
	margin-right: 10px;
	display: inline;
	margin-top: 10px;
}
.catalogphoto4 {
	float: left;
	height: 138px;
	width: 207px;
	border: 1px solid #330033;
	display: inline;
	margin-top: 10px;
}

.smalldevil {
	font-size: 110%;
	color: #333333;
	background-image: url(../img/t70/smalldevil.gif);
	background-repeat: no-repeat;
	height: 36px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	padding-left: 205px;
	font-weight: bold;
	line-height: 1.2em;
}
.natural {
	font-size: 110%;
	color: #333333;
	background-image: url(../img/t70/natural.gif);
	background-repeat: no-repeat;
	height: 36px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	padding-left: 205px;
	font-weight: bold;
	line-height: 1.2em;
}
.cute {
	font-size: 110%;
	color: #333333;
	background-image: url(../img/t70/cute.gif);
	background-repeat: no-repeat;
	height: 36px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	padding-left: 205px;
	font-weight: bold;
	line-height: 1.2em;
}
.gorgeousness {
	font-size: 110%;
	color: #333333;
	background-image: url(../img/t70/gorgeousness.gif);
	background-repeat: no-repeat;
	height: 36px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	padding-left: 205px;
	font-weight: bold;
	line-height: 1.2em;
}
.small {
	font-size: 110%;
	color: #333333;
	background-image: url(../img/t70/small.gif);
	background-repeat: no-repeat;
	height: 36px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	padding-left: 205px;
	font-weight: bold;
	line-height: 1.2em;
}
.flow {
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000000;
	border-bottom-color: #000000;
	margin-bottom: 10px;
}
#main .inner1 .text {
	line-height: 1.3em;
	margin-bottom: 10px;
	padding-left: 17px;
	padding-top: 3px;
}
#main .inner1 .text002 {
	line-height: 1.3em;
	margin-bottom: 10px;
	padding-left: 17px;
	padding-top: 3px;
	font-size: 90%;
}
.inner1 .border {
	height: 242px;
	width: 645px;
	border: 1px solid #000000;
}
.coming1 {
	background-image: url(../img/t70/coming01.jpg);
	height: 387px;
	width: 620px;
	color: #FFFFFF;
	padding-left: 30px;
	padding-top: 140px;
	line-height: 1.5em;
	background-repeat: no-repeat;
}
.coming1ex {
	background-image: url(../img/t70/coming01ex.jpg);
	height: 155px;
	width: 620px;
	color: #FFFFFF;
	padding-left: 30px;
	padding-top: 140px;
	line-height: 1.5em;
	background-repeat: no-repeat;
}
.coming2 {
	background-image: url(../img/t70/coming02.jpg);
	height: 290px;
	width: 620px;
	color: #FFFFFF;
	padding-left: 30px;
	padding-top: 140px;
	line-height: 1.5em;
	background-repeat: no-repeat;
}
.coming2ex {
	background-image: url(../img/t70/coming02ex.jpg);
	height: 390px;
	width: 620px;
	color: #FFFFFF;
	padding-left: 30px;
	padding-top: 140px;
	line-height: 1.5em;
	background-repeat: no-repeat;
}
.coming3 {
	background-image: url(../img/t70/coming03.gif);
	height: 110px;
	width: 620px;
	color: #FFFFFF;
	padding-left: 30px;
	padding-top: 140px;
	line-height: 1.5em;
	background-repeat: no-repeat;
}
.coming4 {
	background-image: url(../img/t70/coming04.gif);
	height: 40px;
	width: 620px;
	color: #FFFFFF;
	padding-left: 30px;
	padding-top: 140px;
	line-height: 1.5em;
	background-repeat: no-repeat;
}
.comingtext {
	padding-top: 60px;
	width: 382px;
}
.comingtext2 {
	padding-top: 60px;
	width: 610px;
}
.comingtext3 {
	padding-top: 0px;
	width: 610px;
}
.comingtext4 {
	padding-top: 75px;
	width: 610px;
}
.logintext {
	color: #000000;
	text-align: center;
}




.logintext a:visited {
	color:#000000;
}

.logintext a:active {
	color:#000000;
}



.logintext a:link {
	color:#000000;
}

.logintext a:hover{
	color:#666666;
}
.albumbg {
	background-image: url(../img/t70/album-bg.gif);
	background-repeat: no-repeat;
	height: 75px;
}
.albumtext {
	padding-top: 15px;
	padding-left: 85px;
	line-height: 1.5em;
	font-size: 105%;
}
.album001 {
	background-image: url(../img/t70/album-ciel.jpg);
	width: 124px;
	color: #FFFFFF;
	padding-left: 180px;
	background-repeat: no-repeat;
	padding-top: 53px;
	line-height: 1.5em;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	float: left;
	height: 150px;
	padding-right: 5px;
	display: inline;
}
.album002 {
	background-image: url(../img/t70/album-elegant.jpg);
	height: 150px;
	width: 124px;
	color: #FFFFFF;
	padding-left: 180px;
	background-repeat: no-repeat;
	padding-top: 53px;
	line-height: 1.5em;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	float: left;
	padding-right: 5px;
	display: inline;
}
.album003 {
	background-image: url(../img/t70/album-glamourous.jpg);
	height: 150px;
	width: 124px;
	color: #FFFFFF;
	padding-left: 180px;
	background-repeat: no-repeat;
	padding-top: 53px;
	line-height: 1.5em;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	float: left;
	padding-right: 5px;
	display: inline;
}
.album004{
	background-image: url(../img/t70/album-gorgeous.jpg);
	height: 150px;
	width: 124px;
	color: #FFFFFF;
	padding-left: 180px;
	background-repeat: no-repeat;
	padding-top: 53px;
	line-height: 1.5em;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	float: left;
	padding-right: 5px;
	display: inline;
}
.album005 {
	background-image: url(../img/t70/album-sweet.jpg);
	height: 150px;
	width: 124px;
	color: #FFFFFF;
	padding-left: 180px;
	background-repeat: no-repeat;
	padding-top: 53px;
	line-height: 1.5em;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	float: left;
	padding-right: 5px;
	display: inline;
}
.album006 {
	background-image: url(../img/t70/album-pure.jpg);
	height: 150px;
	width: 124px;
	color: #FFFFFF;
	padding-left: 180px;
	background-repeat: no-repeat;
	padding-top: 53px;
	line-height: 1.5em;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	float: left;
	padding-right: 5px;
	display: inline;
}
.album007 {
	background-image: url(../img/t70/album-caramel.jpg);
	height: 150px;
	width: 124px;
	color: #FFFFFF;
	padding-left: 180px;
	background-repeat: no-repeat;
	padding-top: 53px;
	line-height: 1.5em;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	float: left;
	padding-right: 5px;
	display: inline;
}
.album008{
	background-image: url(../img/t70/album-miyavi.jpg);
	height: 150px;
	width: 124px;
	color: #FFFFFF;
	padding-left: 180px;
	background-repeat: no-repeat;
	padding-top: 53px;
	line-height: 1.5em;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	float: left;
	padding-right: 5px;
	display: inline;
}

.albumwrap {
	float: left;
}

table#profileTable {

}

#profileTable td, #profileTable th,
#mapTable td, #mapTable th {
	border: 1px solid #999999;
	background-color: #FFFFFF;
	padding-top: 13px;
	padding-right: 10px;
	padding-bottom: 13px;
	padding-left: 10px;
	text-align: right;
}
#profileTable th,
table#mapTable th {
	text-align: center;
	background-color: #000000;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 90%;
}
table#mapTable td {
	background-color: #FFFFFF;
}
.left10 {
	padding-left: 10px;
}
.about001 {
	background-color: #000000;
	background-image: url(../img/t70/about06.jpg);
	background-repeat: no-repeat;
	width: 287px;
	color: #FFFFFF;
	padding-top: 295px;
	line-height: 1.5em;
	float: left;
	margin-right: 12px;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	height: 75px;
	display: inline;
	font-size: 95%;
}
.about002 {
	background-color: #000000;
	background-image: url(../img/t70/about07.jpg);
	background-repeat: no-repeat;
	width: 287px;
	color: #FFFFFF;
	padding-top: 295px;
	line-height: 1.5em;
	float: left;
	margin-right: 12px;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	display: inline;
	height: 75px;
	font-size: 95%;
}
.about003 {
	background-color: #000000;
	background-image: url(../img/t70/about08.jpg);
	background-repeat: no-repeat;
	width: 287px;
	color: #FFFFFF;
	padding-top: 295px;
	line-height: 1.5em;
	float: left;
	margin-right: 12px;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	display: inline;
	height: 75px;
	font-size: 95%;
}
.about004 {
	background-color: #000000;
	background-image: url(../img/t70/about09.jpg);
	background-repeat: no-repeat;
	width: 287px;
	color: #FFFFFF;
	padding-top: 295px;
	line-height: 1.5em;
	float: left;
	margin-right: 12px;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	display: inline;
	height: 75px;
	font-size: 95%;
}
.buttom5 {
	width: 240px;
	padding-bottom: 5px;
	padding-top: 10px;
}
.price01 {
	background-image: url(../img/t70/price03.jpg);
	background-repeat: no-repeat;
	height: 230px;
	width: 615px;
	padding-top: 105px;
	padding-left: 15px;
}
.price02 {
	background-image: url(../img/t70/price04.jpg);
	background-repeat: no-repeat;
	height: 155px;
	width: 615px;
	padding-top: 90px;
	padding-left: 15px;
}
.price03 {
	background-image: url(../img/t70/price05.jpg);
	background-repeat: no-repeat;
	height: 195px;
	width: 615px;
	padding-top: 55px;
	padding-left: 15px;
}
.price04 {
	background-image: url(../img/t70/price06.jpg);
	background-repeat: no-repeat;
	height: 162px;
	width: 615px;
	padding-top: 115px;
	padding-left: 15px;
}
.price05 {
	background-image: url(../img/t70/price09.jpg);
	background-repeat: no-repeat;
	height: 145px;
	width: 615px;
	padding-top: 55px;
	padding-left: 15px;
}
.optionrental {
	background-color: #333366;
	width: 205px;
	float: left;
	margin-right: 7px;
	margin-bottom: 7px;
}
.optionrental2 {
	background-color: #333366;
	width: 205px;
	float: left;
	margin-bottom: 7px;
}
.text003 {
	line-height: 1.5em;
	color: #000000;
	background-color: #eeeedd;
	height: 1.5em;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 0px;
	margin-right: 10px;
	font-size: 90%;
}

