/*-----------------------------------------------------
ameblo CSS Skin Settings
Skin for:	basic_ad
FileName:   common.css
$Revision: 1.12 $
-----------------------------------------------------*/
/*============ ☆ かんたんCSS編集はこちら ☆ ==============*/

/*:(コロン)と、;(セミコロン)の間に色、画像、サイズなどを指定して下さい*/

/*１）ブログタイトルの文字サイズを変更する*/
#header h1{
font-size: 1.0em; /*-- 0.1px相当の文字サイズ --*/
}
/*２）ブログタイトルの文字色を変更する*/
#header h1 a{
color:#333333; /*-- 濃いグレー --*/
}
/*３）ブログ説明の文字サイズを変更する*/
#header h2{
font-size: 0.1em; /*-- 0.01px相当の文字サイズ --*/
}
/*４）ブログ説明の文字色を変更する*/
#header h2{
color:#333333; /*-- 指定なし --*/
}
/*５）ページ背景に画像を入れる*/
body{
background-image:url();
}
/*６）ページ全体の文字色を変更する*/
body{
color: #333333; /*-- 濃いグレー --*/
}
/*７）記事タイトルの背景色を変更する*/
.entry h3.title{
background-color: #ff99ff; /*-- 赤色 --*/
}
/*８）記事タイトルの文字色を変更する*/
.entry h3.title{
color: #ffffff; /*-- 濃いグレー --*/
}
/*９）サイドバーの見出し文字色を変更する*/
h4.menu_title{
color: #ffffff; /*-- 濃いグレー --*/
}
/*１０）サイドバーの見出し背景色を変更する*/
h4.menu_title{
background-color: #ff99cc; /*-- 薄いピンク --*/
}
/*============ ☆ かんたんCSS編集はここまで ☆ ==============*/
/*===================================================================*/

/*============ ★ その他のCSS編集はこちらから ★ ==============*/
/*
目次
■ブログデザイン基本設定
+--基本設定
+--デザインカスタマイズ
   +--リンク
   +--リンク：訪問済み
   +--リンク：マウスオーバー時
   +--コンテンツ全体
   +--メインカラム
   +--サイドカラムA
   +--サイドカラムB

■ヘッダー
+--基本設定
+--デザインカスタマイズ
   +--ブログタイトル
   +--ブログ説明

■メインカラム
+--基本設定
+--デザインカスタマイズ
   +--メッセージボード
   +--記事
   +--トラックバック
   +--コメント
   +--読者一覧
   +--お気に入りブログ一覧
   +--ブックマーク一覧
   +--最新記事一覧

■サイドA(sub_a)&サイドB(sub_b)
+--基本設定
+--デザインカスタマイズ
   +--モジュールタイトル
   +--プロフィール
   +--ブログの読者
   +--カレンダー
   +--プラグイン

■フッター
+--基本設定
*/
/*===================================================================*/

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■ ブログデザイン基本設定 ■■■■■■■■■■*/

/*■■■基本設定 - ブログデザイン基本設定*/
/*■タグ初期化 - 基本設定 - ブログデザイン基本設定*/
html { 
font-size:12px !important; 
*font-size:75% !important;/*forIE6IE7*/ 
}
body{
margin:0;
padding:0;
text-align:center;
font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", Arial, Helvetica;
}
img{
border:0;
}
blockquote{
margin:12px 0;
padding:10px;
border:2px dotted #D4D4D4;
}
pre{
margin:0;
padding:0;
}
input,
textarea{
}
p{
margin:0;
padding:0;
}
.menu_frame ul,
.menu_frame li,
.menu_frame dl,
.menu_frame dt,
.menu_frame dd,
#comment_module ul,
#comment_module li,
#trackback ul,
#trackback li,
#reader_list ul,
#reader_list li,
#favorite_list ul,
#favorite_list li,
#bookmark_list ul,
#bookmark_list li{
margin:0;
padding:0;
list-style-type:none;
}
/*■フレーム - 基本設定 - ブログデザイン基本設定*/
#frame{
width:800px;
margin:0 auto;
text-align:left;
}
#wrap{
width:800px;
}
#sub_main{
width:100%;
overflow:hidden;
}
#main{
overflow:hidden;
word-break:break-all;
}
#sub_a{
overflow:hidden;
word-break:break-all;
}
#sub_b{
overflow:hidden;
word-break:break-all;
}
/*--フレームフロート解除--*/
#frame:after{
content:"."; 
display:block; 
height:0; 
clear:both; 
visibility:hidden;
}
#wrap:after{
content:"."; 
display:block; 
height:0; 
clear:both; 
visibility:hidden;
}
#frame{
display:inline-block;
min-height:1%;
}
#wrap{
display:inline-block;
min-height:1%;
}
/* Hides from IE-mac \*/
* html #frame{
height:1%;
}
* html #wrap{
height:1%;
}
#frame{
display:block;
}
#wrap{
display:block;
}
/* End hide from IE-mac */


/*■■■デザインカスタマイズ - ブログデザイン基本設定*/

/*■リンク*/
a{
text-decoration:none;
color:#0066CC;
}
/*■リンク：訪問済み*/
a:visited{
text-decoration:none;
color:#FF0066;
}
/*■リンク：マウスオーバー時*/
a:hover{
text-decoration:underline;
color:#FF3366;
}
/*■コンテンツ全体*/
#frame{
background-color:#FFFFFF;
}
/*■メインカラム*/
#main{
}
/*■サイドカラムA*/
#sub_a{
color:#666666;
background-color:#FFFFFF;
}
/*■サイドカラムB*/
#sub_b{
color:#666666;
background-color:#FFFFFF;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■■ ヘッダー ■■■■■■■■■■■■*/

/*■■■基本設定 - ヘッダー*/
#header{
margin:0;
padding:0 0 10px 0;
}
#header h1{
margin:0;
padding:0 5px 8px 5px;
}
#header h2{
margin:0;
padding:0 5px 45px 5px;
}

/*■■■デザインカスタマイズ - ヘッダー*/

/*■ブログタイトル*/
#header h1{
font-weight:bold;
line-height:1.2;
}
/*■ブログ説明*/
#header h2{
font-weight:normal;
line-height:1.2;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■ メインカラム ■■■■■■■■■■■*/

/*■■■基本設定 - メインカラム*/
/*■メッセージボード - 基本設定 - メインカラム*/
#message{
margin-bottom:14px;
}
#message .contents{
padding:14px 24px;
}
/*■記事 - 基本設定 - メインカラム*/
.entry{
margin-bottom:40px;
}
.entry .entry_head{
height:16px;
}
.entry .theme{
display:block;
padding:0 0 5px 0;
}
.entry .date{
display:block;
float:left;
margin:0;
padding:1px 0;
}
.entry .name{
display:block;
float:right;
margin:2px 0 0 0;
padding:0;
}
.entry h3.title{
clear:both;
margin:0 0 8px 0;
padding:3px 5px;
}
.entry .contents{
margin:15px 0 15px 0;
}
.entry .foot{
padding-top:5px;
}
/*■ページ送り - 基本設定 - メインカラムり*/
.page{
margin:0 auto 14px auto;
padding:0;
font-size:0.85em;
text-align:center;
}
/*■トラックバック - 基本設定 - メインカラム*/
#trackback{
margin:15px 0 0;
padding:0;
}
#trackback h3.title{
margin:0px;
padding:7px 0 8px 0;
background:none;
}
#trackback p.tr_URL{
margin-bottom:16px;
padding:0 0 8px 0;
}
#trackback ul{
margin:8px 0 18px 0;
padding:0 0 8px 0;
}

/*■コメント - 基本設定 - メインカラム*/
#comment_module h3.title{
margin:0;
padding:7px 0 8px 0;
}
#comment_module p.list{
margin:0 0 10px 0;
padding:0;
}
#comment_module .comment_body{
margin:0;
padding:0 0 10px 0;
}
#comment_module .each_comment{
margin:0;
padding:0 0 20px 0;
}
#comment_module .comment_footer{
margin:0;
padding:0;
}
#comment_module .error{
margin-top:20px;
padding-bottom:10px;
}
#comment_module form ul{
width:340px;
margin:0 auto;
}
#comment_module form li{
display:block;
width:340px;
margin-bottom:5px;
}
#comment_module li.lastItem{
display:block;
width:330px;
margin-bottom:5px;
text-align:right;
}
#comment_module .button{
margin-left:5px;
width:80px;
font-size:0.91em;
}
#comment_module .error{
color:#FF0000;
}

/*■読者一覧 - 基本設定 - メインカラム*/
#reader_list h3.title{
margin:0;
padding:7px 0 8px 0;
}
#reader_list li{
margin:0;
padding:8px 0;
}
#reader_list .reader_blog{
display:block;
margin-top:2px;
}

/*■お気に入りブログ一覧 - 基本設定 - メインカラム*/
#favorite_list h3.title{
margin:0;
padding:0 0 5px 0;
}
#favorite_list ul{
}
#favorite_list li{
margin:0;
padding:8px 0;
}
#favorite_list .favorite_blog{
display:block;
margin-top:2px;
}
#favorite_list .favorite_theme{
display:block;
margin-top:2px;
}

/*■ブックマーク一覧 - 基本設定 - メインカラム*/
#bookmark_list h3.title{
margin:0px;
padding:7px 0 8px 0;
}
#bookmark_list ul{
}
#bookmark_list li{
margin-bottom:4px;
padding:4px 0;
}

/*■最新記事一覧 - 基本設定 - メインカラム*/
#recent_entries_list h3.title{
margin:0;
padding:7px 0 8px 0;
}
#recent_entries_list li{
margin:0;
padding:8px 0;
}


/*■■■デザインカスタマイズ - メインカラム*/
/*■メッセージボード - デザインカスタマイズ - メインカラム*/
#message .contents{
border:1px solid #D4D4D4;
}

/*■記事 - デザインカスタマイズ - メインカラム*/
/*記事テーマ*/
.entry .theme{
border-bottom:1px dotted #7E8984;
}
/*記事編集者名*/
.entry .name{
color:#666666;
font-size:0.85em;
}
/*記事タイトル*/
.entry h3.title{
font-size:1.5em;
font-weight:bold;
line-height:1.1;
}
/*記事内容*/
.entry .contents{
line-height:1.5;
}
/*記事リンクフッター*/
.entry .foot{
border-top:1px dotted #7E8984;
font-size:0.85em;
text-align:right;
}

/*■トラックバック - デザインカスタマイズ - メインカラム*/
#trackback{
border-top:3px double #7E8984;
line-height:1.5;
}
/*トラックバック見出し*/
#trackback h3.title{
font-size:1.17em;
}
/*トラックバック内ブログタイトル*/
#trackback .label{
font-weight:bold;
}
/*トラックバックURL*/
#trackback p.tr_URL{
border-bottom:1px dotted #7E8984;
}
/*トラックバックリスト*/
#trackback ul{
border-bottom:1px dotted #7E8984;
}

/*■コメント - デザインカスタマイズ - メインカラム*/
#comment_module{
border-top:3px double #7E8984;
line-height:1.5;
}
/*コメント見出し*/
#comment_module h3.title{
background:none;
font-size:1.17em;
}
/*コメント記入欄を表示*/
#comment_module p.list{
font-size:0.85em;
}
/*コメントフッター*/
#comment_module .comment_footer{
border-top:1px dotted #7E8984;
}
/*各コメントタイトル*/
#comment_module .label{
font-weight:bold;
}

/*■読者一覧 - デザインカスタマイズ - メインカラム*/
/*このブログの読者一覧見出し*/
#reader_list h3.title{
background:none;
font-size:1.17em;
}
/*リスト*/
#reader_list li{
border-bottom:1px dotted #7E8984;
}

/*■お気に入りブログ一覧 - デザインカスタマイズ - メインカラム*/
/*お気に入りブログ一覧見出し*/
#favorite_list h3.title{
background:none;
font-size:1.17em;
}
/*リスト*/
#favorite_list li{
border-bottom:1px dotted #7E8984;
}

/*■ブックマーク一覧 - デザインカスタマイズ - メインカラム*/
/*ブックマーク一覧見出し*/
#bookmark_list h3.title{
background:none;
font-size:1.17em;
}
/*リスト*/
#bookmark_list li{
border-bottom:1px dotted #7E8984
}

/*■最新記事一覧 - デザインカスタマイズ - メインカラム*/
/*記事一覧見出し*/
#recent_entries_list h3.title{
background:none;
font-size:1.17em;
}
/*リスト*/
#recent_entries_list li{
border-bottom:1px dotted #7E8984;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■ サイドA(sub_a)&サイドB(sub_b) ■■■■■■*/

/*■■■基本設定 - サイド*/
/*■サイドA,B共通項目 - 基本設定 - サイド*/
div.mainMenu{
margin:0 0 30px 0;
padding:0;
font-size:0.91em;
line-height:1.3;
}
div.menu_frame{
}
/*■モジュールタイトル - 基本設定 - サイド*/
h4.menu_title{
margin:0 0 10px 0;
margin-left:6px;
margin-right:6px;
padding:3px 6px;
}
/*■モジュール内一覧 - 基本設定 - サイド*/
.mainMenu ul{
margin-left:6px;
margin-right:6px;
}
.mainMenu dl{
margin-left:6px;
margin-right:6px;
}
.mainMenu p,
#search form{
margin-left:6px;
margin-right:6px;
}
/*■一覧を見る - 基本設定 - サイド*/
p.list,
p.link_blog{
margin-left:6px;
margin-right:6px;
padding-top:5px;
}
/*■ランキング - 基本設定 - サイド*/
#ranking .menu_frame{
line-height:1.4;
}
#ranking .rank_ttl{
font-size:1.2em;
font-weight:bold;
}
#ranking .menu_frame img{
vertical-align:bottom;
}
/*■プロフィール - 基本設定 - サイド*/
#profile p{
display:block;
}
/*■ブログの読者 - 基本設定 - サイド*/
#reader dl{
margin-bottom:7px;
}
#reader dd{
}
#reader ul{
margin:5px 5px 0 5px;
padding:8px 0 0 0;
}
#reader li{
}
#reader p{
display:inline;
}
/*■カレンダー - 基本設定 - サイド*/
#calendar{
}
#calendar .menu_title{
}
#calendar table{
width:168px;
font-size:0.91em;
line-height:1.3;
}
#calendar caption{
padding:5px 0;
}
#calendar caption a{
padding:0 5px;
}
#calendar th{
padding:0;
text-align:center;
}
#calendar td{
padding:0;
text-align:center;
}
/*■テーマ - 基本設定 - サイド*/
#theme_list select{
margin-left:6px;
margin-right:6px;
}
/*■最近の記事一覧 - 基本設定 - サイド*/
#recent_entries{
}
/*■アーカイブ - 基本設定 - サイド*/
#archives select{
margin-left:6px;
margin-right:6px;
}
/*■検索 - 基本設定 - サイド*/
#search form{
margin:0 7px;
}
#search .searchbox{
width:100px;
}
#search .searchbtn{
width:40px;
}
/*■お気に入りブログ - 基本設定 - サイド*/
#favorite{
}
/*■ブックマーク - 基本設定 - サイド*/
#bookmark{
}
/*■最近のコメント - 基本設定 - サイド*/
#ecent_comment{
}
/*■ランキング - 基本設定 - サイド*/
#ranking .rank_ttl{
display:block;
}
#ranking .rank{
display:block;
padding:0 3px 0 3px;
}
#ranking a{
}
#ranking img{
margin-left:5px;
}
#ranking .rank_all{
margin-bottom:8px;
}
#ranking .rank_genre{
margin-bottom:8px;
}
/*■アメブロ推奨枠 - 基本設定 - サイド*/
#ameblo{
padding-top:7px;
font-size:0.85em;
text-align:center;
}
#ameblo p{
padding:0 7px 7px 7px;
line-height:1.25;
text-align:left;
}
#ameblo li{
display:block;
margin-bottom:5px;
}
/*■RSS - 基本設定 - サイド*/
#rss{
margin:-3px auto 0 auto;
padding-bottom:16px;
border:none;
background-image:none;
text-align:center;
}


/*■■■デザインカスタマイズ - サイド*/
/*■モジュールタイトル - デザインカスタマイズ - サイド*/
h4.menu_title{
font-size:1.17em;
font-weight:bold;
}

/*■プロフィール - デザインカスタマイズ - サイド*/
#profile #new_profile{
color:#666666;
}

/*■ブログの読者 - デザインカスタマイズ - サイド*/
#reader ul{
border-top:1px dotted #7E8984;
}

/*■カレンダー - デザインカスタマイズ - サイド*/
/*日曜日*/
#calendar .sun{
}
/*土曜日*/
#calendar .sat{
}
/*ブログを書いた日*/
#calendar td a{
font-weight:bold;
text-decoration:underline;
}
/*■プラグイン - デザインカスタマイズ - サイド*/
.plugin{
margin-bottom:15px;
text-align:center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■■ フッター ■■■■■■■■■■■■*/

/*■■■基本設定 - フッター*/
div#footerArea{
margin:0;
padding:12px 8px 25px 0;
border-top:1px solid #666666;
text-align:right;
}





/*-----------------------------------------------------
ameblo CSS Skin Layout Settings
Skin for:	basic_ad
FileName:   type_b.css
$Revision: 1.2 $
-----------------------------------------------------*/

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■■ カラムタイプ ■■■■■■■■■■*/
#main {
float: left;
width: 610px;
margin:0;
padding:0;
}

#sub_a{
float: right;
z-index: 1;
width:170px;
margin:0;
padding: 0;
}

#sub_b{
display: none;
}





/* ----------------------------------------------------- */
/* ★ 最近の記事一覧　　　　　　　スクロール　　　　　　 */
/* ----------------------------------------------------- */
#recent_entries{
height:100px;
overflow:auto;
}

/* ----------------------------------------------------- */
/* ★ このブログの読者　　　　　　スクロール　　　　　　 */
/* ----------------------------------------------------- */
#reader{
height:100px;
overflow:auto;
}


/* ----------------------------------------------------- */
/* ★ ＰＲ　　　　　　　　　　　　スクロール　　　　　　 */
/* ----------------------------------------------------- */
#defaultAd{
height:1px;
overflow:auto;
}


/* ----------------------------------------------------- */
/* ★ アメブロランキング　　　　　スクロール　　　　　　 */
/* ----------------------------------------------------- */
#ranking{
height:100px;
overflow:auto;
}






/* ----------------------------------------------------- */
/* ■ アメーババーのマイページ・ピグ・ブログを書く　削除 */
/* ----------------------------------------------------- */
#barLogoTop li{
display:none;
}



/* ----------------------------------------------------- */
/* ■ 最上段　　アメーバ会員登録　　削除　　　　　　　　 */
/* ----------------------------------------------------- */
#amebaBar li a.barRegist{
display:none;
}


/* ----------------------------------------------------- */
/* ■ 最上段　　芸能人ブログランキング　　削除　　　　　 */
/* ----------------------------------------------------- */
#amebaBar li a.menuRank{
display:none;
}


/* ----------------------------------------------------- */
/* ■ アメーババー検索　削除　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
li#barSrch{
display:none;
}



/* ----------------------------------------------------- */
/* ■ アメーババー　オススメ　削除　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#barAd {
display:none;
}



/* ----------------------------------------------------- */
/* ■ ブログを作る　ボタン部分のスクロール　 　　　　　　*/
/* ----------------------------------------------------- */
#ameblo{
height:100px;
overflow:auto;
}


/* ----------------------------------------------------- */
/* ■ 自己紹介を表示させない 　　　　　　　　　　　　　　*/
/* ----------------------------------------------------- */
#profile .freeText,
#profile .link_profile{
display:none;
}


/* ----------------------------------------------------- */
/* ■ なう　非表示　　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#AmNwQuoteTime{ /* ●分前部分 */
display:none;
}
#AmNwQuoteAnchor{ /* >なうを見る */
display:none;
}
#AmNwQuoteTxt{ /* テキスト部分 */
display:none !important;
}
#AmNwQuoteDetail span{ /* ●分前部分 と >なうを見る 両方まとめて */
display:none;
}
#AmNwQuote, #AmNwQuote p{ /* なう全体 エリアは残す */
visibility: hidden !important;
}
#AmNwQuote, #AmNwQuote p{ /* なう全体 エリアも消す */
display:none !important;
}


#advertising2 div{
display:none;
}



#footer_ad{
text-indent:-2000px;
display:block;
overflow:hidden;
width:0;
height:0;
}



#ameblo{
text-indent:-2000px;
display:block;
overflow:hidden;
width:0;
height:0;
}



#toolbar{
text-indent:-2000px;
display:block;
overflow:hidden;
width:0;
height:0;
}




#comment_module{
width:250px;
border:1px solid #666666;
padding:10px;
margin-left:auto;
margin-right:auto;
text-align:center;
}








/*コメント部分の幅を狭く*/
#comment_module {
width:208px;/*記事の幅と同じに*/
border:3px double #FF99FF;/*枠　太さ・線種・色*/
padding:1px;/*枠内の余裕　上下左右1px*/
margin-left:auto;/*位置中央寄せ*/
margin-right:auto;/*位置中央寄せ*/
text-align:center;/*文字中央寄せ*/
}
#comment_show input#commentbutton {
width: 200px;/*画像の横*/
height:100px;/*画像の縦*/
background:url(//stat.blogskin.ameba.jp/blogskin_images/20110913/18/ad/d9/p/o02000100jump-rm-ky-ty-lv1315905994417.png);
background-repeat:no-repeat;
margin:0 auto;
padding:0;
text-indent: -9999px;
}
#comment_show {
border:none;/
}
#comment_show,
#comment_module form ul,
#comment_module form li {
width:208px;/*記事の幅と同じに*/
}
#comment_module li.lastItem{
width:200px;/*ボタン画像の幅*/
}
#comment_show h4,
#comment_show p {
display:none;
}
#comment_present {
display:none;/*一緒にプレゼントも贈ろう！を消す*/
}


/* ----------------------------------------------------- */
/* ■ ニックネーム・ルーム・ブログの非表示 　　　　　　　*/
/* ----------------------------------------------------- */
#userNaviArea {
display:none;
}

.entry {
text-align: center;
}



/*記事下点線色変更*/
.entry .foot{
border-top:3px dotted #ff99ff;
}





#ameblo{
text-indent:-2000px;
display:block;
overflow:hidden;
width:0;
height:0;
}

#header {
background-image: url();
}

#header {
height: 115px;
}




body { cursor: url(<STYLE type="text/css">
<!--body{cursor:url(http://hana.poche.jp/angel66l/kagi.ico);}
a{cursor:url(http://hana.poche.jp/angel66l/kagi.ico);}-->
</STYLE>),auto;}
a{ cursor: url(<STYLE type="text/css">
<!--body{cursor:url(http://hana.poche.jp/angel66l/kagi.ico);}
a{cursor:url(http://hana.poche.jp/angel66l/kagi.ico);}-->
</STYLE>),pointer;}




<script type="text/javascript">
$(document).ready(function(){$("#defaultAd").prependTo("#rss");})
</script>






/*広告消す*/
#advertising2{
text-indent:-2000px;
display:block;
overflow:hidden;
width:0;
height:0;
}
#ameblo{
text-indent:-2000px;
display:block;
overflow:hidden;
width:0;
height:0;
}
#defaultAd{
text-indent:-2000px;
display:block;
overflow:hidden;
width:0;
height:0;
}
/*広告消す終わり*/



#main img{/* 記事全体の画像の余白を取り除く */
padding:0;
margin:0;
}




#rss{
text-indent:-2000px;
display:block;
overflow:hidden;
width:0;
height:0;
}


<STYLE type="text/css">
<!--body{cursor:url(http://hana.poche.jp/angel66l/kagi3.ico);}
a{cursor:url(http://hana.poche.jp/angel66l/kagi3.ico);}-->
</STYLE>


<SCRIPT>var str='RiK☆BLOG',psx=new Array(),psy=new Array();for(i=0;i<str.length;i++){psx[i]=-11;psy[i]=-11;document.write("<SPAN style='color:#FF99CC;font-size:11;position:absolute;'ID='TS_"+i+"'>"+str.charAt(i)+"</SPAN>");}function tsprg(){psx[0]=event.x+1;psy[0]=event.y+1;}function tsact(){for(i=str.length-1;i>=0;i--){var px=-11;var py=-11;if(i){psx[i]=psx[i-1]+11;psy[i]=psy[i-1];}if(document.body.clientWidth>psx[i]+11){px=psx[i]+document.body.scrollLeft;py=psy[i]+document.body.scrollTop-11;}document.all("TS_"+i).style.pixelLeft=px;document.all("TS_"+i).style.pixelTop=py;}}setInterval("tsact()",10);document.onmousemove=tsprg;</SCRIPT>


/* ----------------------------------------------------- */
/* ★ プロフィール　　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#profile .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ このブログの読者　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#reader .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ ブログ内検索　　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#search .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ カレンダ　　　　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#calendar .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ ブログテーマ一覧　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#theme_list .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ アーカイブ　　　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#archives .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ 最近の記事一覧　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#recent_entries .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ お気に入りブログ　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#favorite .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ ブックマーク　　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#bookmark .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ 最近のコメント　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#recent_comment .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ アメブロランキング　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#ranking .menu_title{
display:none;
}
/* ----------------------------------------------------- */
/* ★ ＰＲ　　　　　　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#defaultAd .menu_title{
/* 不明 うまく消せません エリア自身は消しませんの方を参照　*/
}

/* ● 全体にリンク装飾を設定 ● */
a:link   {color:#949494;}
a:visited{color:#FFCC00;}
a:hover  {color:#949494;}
a:active {color:#949494;}
a:hover{
border-top:2px dashed #FF66CC;
border-left:2px dashed #FF66CC;
border-right:2px dashed #FF66CC;
border-bottom:2px dashed #FF66CC;
}
a:hover{
text-decoration: none;
}


/* -------------------------------------------- */
/* ■ メッセージ枠１　　　　　　　　　　　　　　*/
/* -------------------------------------------- */
#message{
border:none;
}

/* ----------------------------------------------------- */
/* ■ コメント部分をスクロール 　　　　　　　　　　　　　*/
/* ----------------------------------------------------- */
#comment_module{

height:100px ;
overflow:auto ;
}


#sub_a{
float: left;
z-index: 2;
width:0px;
margin:0;
padding:0;
}




#sub_b{
float: right;
z-index: 2;
width:0px;
margin:0;
padding:0;
}




#main img{/* 記事全体の画像の余白を取り除く */
padding:0;
margin:0;
}


/* ----------------------------------------------------- */
/* ■ 包装幅　調整　　　　　　　　　　　　　　　　　　　 */
/* ----------------------------------------------------- */
#wrap{
width:220px;
}

/* ----------------------------------------------------- */
/* ■ アメーババーの削除 　　　　　　　　　　　　　　　　*/
/* ----------------------------------------------------- */
#amebaBar {
display:none;
}


/* ----------------------------------------------------- */
/* ■ 記事に枠 　　　　　　　　　　　　　　　　　　　　　*/
/* ----------------------------------------------------- */
.entry{
border-style: double;
border-color:#ff99FF;
border-width: 2px;
}

#frame{
hight:400px;
}







/* 背景スキンの絶対配置*/
#frame{

position:relative;;
}

/*各配置設定*/
#skn01{

position:absolute;

left:30px;
top:70px;
z-index:-10;

}
#main{

position:absolute;

left:295px;
top:307px;
height:180px;
overflow:auto;
width:245px;
background-color:transparent;
}
.entry,.entry .contents{
width:215px !important;
background-color:transparent !important;
}
.entry h3.title{
margin-top:10px;
}


#frame,#wrap,#sub_a,#sub_b{
background-color:transparent;
}
/*不要部分削除*/

#sub_b{

position:absolute;

left:40px;
top:80px;
height:90px;
overflow:auto;
}
#overHeader #userNaviArea{

display:none !important;
}
#header{

display:none;
}
div#footerArea{

display:none;
}

 







#frame{
position:relative;/*frameの左上を基準に*/
}
#aifure{
position:absolute;
top:10px;/*上から A*/
left:0px;/*左から B ※注*/
width:190px;/*枠の横 C*/
height:90px;/*枠の縦 D*/
overflow:auto;/*スクロールをつける*/
padding:2px;/*中のスキマ E*/
background-color:背景色;/*枠内の背景色*/
z-index:300;/*重なりの順序を一番上に*/
filter:alpha(opacity=70); /*背景色を半透明*/
-moz-opacity: 0.7;/*背景色を半透明*/
opacity: 0.7;/*背景色を半透明*/

border:3px #ff99FF dashed;/*枠 太さ・色・線種*/
}
