@charset "UTF-8";
/* =======================================
# スタンダード型カスタマイズ
======================================= */
/*
-----------------------------------------

【CSS編集 目次】
(1)基本のスタイル
(2)ヘッダーエリアのスタイル
(3)メインエリアのスタイル
(4)サイドエリアのスタイル
(5)ボタン設定
(6)その他、拡張

※CSS編集で広告を修正しないでください
（規約違反に該当する可能性があります）

-----------------------------------------
*/
/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(1)基本のスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (1-1) 基本テキスト全体
--------------------------------------------*/
/* 地色テキスト */
html {
color: #333333;
}

/* リンク */
a {
color: #337fcc;
}

/* マウスオーバーリンク */
a:hover {
color	:#ff0000;
text-decoration	:none;
}

/* 訪問済みリンク */
a:visited {
color: #a27ea2;
}

/* 淡色テキスト */
.skin-textQuiet {
color: #999999;
}

/* 強調色テキスト */
.skin-textLoud {
color: #ff3399;
}

/* (1-2) 基本背景
--------------------------------------------*/
/* コンテンツ背景、ヘッダー以下の背景色 */
.skin-blogBody, .skin-blogBodyInner {
background-color: #ffffff;
}

/* 淡色背景, 自分のコメントエリアの背景色 */
.skin-bgQuiet {
background-color: #f7f7f7;
}

/* (1-3) 基本境界線
--------------------------------------------*/
/* 境界線（強） */
.skin-borderLoud {
border-color: #cccccc;
}

/* 境界線（弱） */
.skin-borderQuiet {
border-color: #e5e5e5;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(2)ヘッダーエリアのスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (2-1) ヘッダー背景
--------------------------------------------*/
/* ヘッダー背景 */
.skin-bgHeader {
background-color: #CCFFFF;/*#d1ffec;*/

}

/* (2-2) ヘッダータイトル、説明文
--------------------------------------------*/
/* ブログタイトルエリア、ヘッダー画像の下にテキストを隠す */
.skin-blogTitle {
z-index: -1;
}

/* ブログタイトル */
.skin-blogMainTitle {
color: #333333;
margin-bottom: 10px;
font-size: 27px;
}

/* ブログ説明文 */
.skin-blogSubTitle {
color: #999999;
font-size: 16px;
}

/* ヘッダータイトル */
.skin-headerTitle {
padding-top: 80px;
padding-bottom: 80px;
text-align: center;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(3)メインエリアのスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (3-1-a) メイン背景
--------------------------------------------*/
/* メインエリア背景 */
.skin-bgMain {
background-color: #ffffff;
}

/* (3-1-b) メイン背景 内側
--------------------------------------------*/
/* メインエリア背景 内側 レイアウト */
.skin-blogMainInner {
  padding: 30px 0 10px;
}

.skin-entryInner {
    border: 2px solid #ccffff;
    padding: 10px 20px;
}

/* (3-2) メインタイトル
--------------------------------------------*/
/* 記事タイトル */
.skin-entryTitle {
color: #333333;
border-bottom: 3px solid #ccffff;
margin-bottom: 20px;
padding-bottom: 15px;
font-size: 20px;
}

/* 「画像付き記事」「同じテーマの記事」などの見出し */
.skin-mainWidgetTitle {
color: #333333;
}

/* (3-3) ブログナビ
--------------------------------------------*/
/* (3-3-a) ブログナビ上部
--------------------------------------------*/
/* 背景、境界線 */
.skin-blogHeaderNav {
background-color: #ffffcc;
}

/* 背景 */
.skin-blogHeaderNavInner {
}

/* テキスト */
.skin-topNavText, .skin-topNavText:hover, .skin-topNavText:visited {
color: #999999;
}

/* アイコン */
.skin-topNavIcon {
color: #999999;
}

/* (3-3-b) ブログナビ下部
--------------------------------------------*/
/* 背景、境界線　*/
.skin-blogFooterNavInner {
border-color: #cccccc;
background-color: #ffffff;
}

/* テキスト */
.skin-bottomNavText, .skin-bottomNavText:hover, .skin-bottomNavText:visited {
color: #999999;
}

/* アイコン */
.skin-bottomNavIcon {
color: #999999;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(4)サイドエリアのスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (4-1) サイドテキスト全体
--------------------------------------------*/
/* サイドモジュールタイトル */
.skin-widgetTitle {
}

/*サイドプロフィール背景*/
div#profile h3 {
color: #666666;
padding: 15px;
height: 30px;
background-color: #ccffff;
}

/*サイドタイトル背景*/
div#theme h3, div#recentEntries h3, div#readers h3, div#profile h3, div#archive h3 {
color: #666666;
padding: 15px;
margin-bottom: 6px;
background-color: #ccffff;
}

/*マウスオーバーリンク：最近の記事*/
div#recentEntries li>a:hover {
color: #ff0000;
}

/*マウスオーバーリンク：このブログの読者*/
div#readers li>a:hover {
color: #ff0000;
}

/*サイドリストスタイル追加*/
[data-uranus-component="linkList"]>li:before{
content:"➢ ";
color:#ccffff;
}

/*サイド読者数強調*/
[data-uranus-component="readersCount"] {
font-size:20px;
}

/* 2カラムサイドバー,3カラム:広いサイドバー */
/* 3カラム:狭いサイドバー */
/* サイド基本テキスト */
.skin-blogSubA, .skin-blogSubB {
}

/* サイド強調色テキスト */
.skin-sideTextLoud {
color: #ff3399;
}

/* (4-2) サイド境界線
--------------------------------------------*/
/* 境界線 */
.skin-sideBorder {
border-color: #e5e5e5;
}

/* (4-3) サイドモジュール
--------------------------------------------*/
/* (4-3-a) カレンダー
--------------------------------------------*/
/* 記事が存在するカレンダー日付背景 */
.skin-calendarDate.is-active {
background-color: #DFF2FF;
}

/* カレンダー */
#calendar .skin-widgetTitle {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}

/* (4-3-b) アーカイブナビ
--------------------------------------------*/
/* アーカイブナビ */
.skin-archiveNavTabs a, .skin-archiveNavTabs a:hover, .skin-archiveNavTabs a:visited {
color: #999999;
}

/* アーカイブナビ 選択時 */
.skin-archiveNavTabs a.is-active, .skin-archiveNavTabs a.is-active:hover, .skin-archiveNavTabs a.is-active:visited {
color: #333333;
}

/* (4-3-c) プロフィール
--------------------------------------------*/
/* プロフィール */
#profile .skin-widgetTitle {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

(5)ボタン設定

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (5-1) ボタン全体
--------------------------------------------*/
/* 通常ボタン */
.skin-btn {
border-color: #e5e5e5;
background-color: #ffffff;
color: #999999;
}

/* 通常ボタン（マウスオーバー、訪問済み） */
.skin-btn:hover, .skin-btn:visited {
color: #999999;
}

/* 強調ボタン */
.skin-btnPrimary {
border-color: #404040;
background-color: #505050;
color: #ffffff;
}

/* 強調ボタン（マウスオーバー、訪問済み） */
.skin-btnPrimary:hover, .skin-btnPrimary:visited {
color: #ffffff;
}

/* (5-2) ページ送りボタンの  << 次へ 、前へ >> 、「次の記事タイトル」 >> ボタン
--------------------------------------------*/
/* 前後ページ送りボタン */
.skin-btnPaging {
border-color: #C4FFE7;
background-color: #C4FFE7;
color: #333333;
}

/* 前後ページ送りボタン（マウスオーバー、訪問済み） */
.skin-btnPaging:hover, .skin-btnPaging:visited {
color: #333333;
}

/* ページ送りの矢印アイコン*/
.skin-btnPagingIcon {
color: #a9a9a9;
}

/* 記事中ページ送りの次 */
.skin-entryPagingNext, .skin-entryPagingNext:hover, .skin-entryPagingNext:visited {
color: #3970B5;
}

/* 記事中ページ送りの前 */
.skin-entryPagingPrev, .skin-entryPagingPrev:hover, .skin-entryPagingPrev:visited {
color: #3970B5;
}

/* (5-3) 目次ナビゲーション
--------------------------------------------*/
/* 目次ナビゲーション */
.skin-btnIndex {
border-color: #e5e5e5;
background-color: #ffffff;
color: #999999;
}

/* 目次ナビゲーション（マウスオーバー、訪問済み） */
.skin-btnIndex:hover, .skin-btnIndex:visited {
color: #999999;
}

/* 目次ナビゲーション 選択時 */
.skin-btnIndex.is-active {
border-color: #cccccc;
background-color: #e0edf7;
color: #333333;
}

/* 目次ナビゲーション 無効時 */
.skin-btnIndex.is-disabled {
border-color: #cccccc;
background-color: #f6f7f8;
color: #979696;
}

/* (5-4) サイドボタン
--------------------------------------------*/
/* サイド通常ボタン */
.skin-btnSide {
border:1px solid #ccffff;/*#e5e5e5;*/
background-color: #ccffff;
color: #999999;
}

/* サイド通常ボタン（マウスオーバー、訪問済み） */
.skin-btnSide:hover, .skin-btnSide:visited {
color: #999999;
}

/* サイド強調ボタン */
.skin-btnSidePrimary {
border-color: #404040;
background-color: #505050;
color: #ffffff;
}

/* サイド強調ボタン（マウスオーバー、訪問済み） */
.skin-btnSidePrimary:hover, .skin-btnSidePrimary:visited {
color: #ffffff;
}

/* (5-5) 記事一覧 月別
--------------------------------------------*/
/* 記事一覧 月別 ボタンテキスト */
.skin-btnArchive {
border-color: #e5e5e5;
background-color: #ffffff;
color: #999999;
}

/* 記事一覧 月別 ボタンテキスト（マウスオーバー、訪問済み） */
.skin-btnArchive:hover, .skin-btnArchive:visited {
color: #999999;
}

/* 記事一覧 月別 ボタンテキスト 選択時 */
.skin-btnArchive.is-active {
background-color: #e0edf7;
color: #333333;
}

/* 記事一覧 月別 ボタンテキスト 0件 */
.skin-btnArchive.is-disabled {
background-color: #f0eff5;
color: #cccccc;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

(6) その他、拡張

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (6-1) 記事一覧
--------------------------------------------*/
/* 記事一覧 背景 レイアウト */
.skin-blogArchiveBody {
padding: 30px 30px 0 30px;
}

/* (6-2) メッセージ
--------------------------------------------*/
/* メッセージ 背景 レイアウト */
.skin-message {
padding: 30px;
}

/* メッセージボード */
.skin-messageInner {
border-top: 2px solid #ccffff;
border-bottom: 2px solid #ccffff;
padding: 20px 0;
}

/*-- ヘッダー領域　 ここから　--*/
/* ヘッダー画像を設定する */
.skin-bgHeader {
background: no-repeat scroll center top;
background-image: url(//stat.blogskin.ameba.jp/blogskin_images/20170826/20/31/P4/p/o11200300angel471503745267570.png);
}

/* ヘッダーの高さを設定する */
.skin-bgHeader [amb-layout="headerInner"]>a,
.skin-bgHeader [data-uranus-layout="headerInner"]>a {
height: 300px;
}

/* ブログタイトルと説明文を非表示にする */
.skin-headerTitle {
display: none;
/*text-indent:-9999px;*/
}

/* ヘッダーの背景色を指定する */
.skin-bgHeader {
  background-color: #ffffcc;
}

/*-- ヘッダー領域　 ここまで　--*/


/*-- メニューバー　 ここから　--*/
/* ヘッダーメニューバー */
.topmenu {
  position: absolute;
  margin: 0;
  padding: 0;
}
.skin-blogSubA, .skin-blogSubB {
  position: relative;
}
[data-uranus-layout="columnB"] .skin-blogSubA .topmenu,
[data-uranus-layout="columnC"] .skin-blogSubA .topmenu,
[data-uranus-layout="columnE"] .skin-blogSubA .topmenu,
[data-uranus-layout="columnB"] .skin-blogSubB .topmenu {
  left: auto;
  right: 0;
}
[data-uranus-layout="columnA"] .skin-blogSubA .topmenu,
[data-uranus-layout="columnD"] .skin-blogSubA .topmenu,
[data-uranus-layout="columnC"] .skin-blogSubB .topmenu {
  left: 0;
  right: auto;
}
[data-uranus-layout="columnE"] .skin-blogSubB .topmenu {
  left: auto;
  right: -360px;
}
.menu {
  margin: 0;
  padding: 0;
padding-top:5px;
}
.menu:after {
  display: block;
  clear: both;
  content: " ";
  height: 0;
  visibility: hidden;
}
.menu li {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu li a {
  display: block;
  text-decoration: none;
}
.menu li a:hover{
background-color: #ff8989;
}
.skin-blogBodyInner {
  padding-top: 90px; /* メニューバーの表示場所確保 */
}
.topmenu {
  top: -90px; /* メニューバーの上下位置調整 */
}
.menu {
  width: 1120px; /* メニューバー横幅 */
  /*background: #000000;  メニューバー全体の背景色 */
}
.menu li a {
  width: 183px; /* ボタンの横幅 */
  line-height: 48px; /* ボタンの高さ */
  color: #7f3300; /* 文字の色 */
  background: #C4FFE7;/*#C4FFE7;*/ /* ボタンの色 */
  border: 1px solid #7f3300;
} 

/* メニューバーにプルダウンメニューを追加 */
.topmenu ul.menu>li{
  display:block;
  float:left;
  overflow:hidden;
}
.topmenu ul.menu li a{
  float:none;
}
.topmenu ul.submenu{
  margin:0;
  padding:0;
}
.topmenu ul.submenu li{
  display:block;
  margin:0;
  padding:0;
  overflow:hidden;
  padding-top:2px;
}
.topmenu ul.menu>li{
  width: 186px; /* ボタンの横幅 */
  height: 50px; /* ボタンの高さ */
  background-color:#C4FFE7;/* IE7対応 */
  background-image:url();    /* 背景画像 */

}
.topmenu ul.menu>li:hover{
  height:auto;
}
.topmenu ul.menu>li>ul li{
white-space: nowrap;
letter-spacing:-1px;
}

/* 背景、境界線 */
.skin-blogHeaderNav {
background-color: #ffffcc;/*#C4FFE7;*/
}

/* ヘッダーメニューバーの背景色 */
.skin-blogBody, .skin-blogBodyInner {
  background: repeat-x top;
  background-color: #ffffff;
  background-image: url(https://stat.ameba.jp/user_images/20170826/20/angel47/f4/9f/g/o0120006014013692988.gif);
}

/*-- メニューバー　 ここまで　--*/


/*-- メインカラム余白調整 ここから　--*/
[data-uranus-layout="columnA"] [data-uranus-layout="mainInner"], [data-uranus-layout="columnA"] [data-uranus-layout="archive"], [data-uranus-layout="columnA"] [data-uranus-layout="users"] {
    padding-left: 5px;
    padding-right: 5px;
}

[data-uranus-layout="columnB"] [data-uranus-layout="mainInner"], [data-uranus-layout="columnB"] [data-uranus-layout="archive"], [data-uranus-layout="columnB"] [data-uranus-layout="users"] {
    padding-left: 5px;
    padding-right: 5px;
}
/*-- メインカラム余白調整 ここまで　--*/

/*-- 記事タイトル下線 ここから　--*/
/*[data-uranus-component="entryStdTop"]{
padding:20px;
border: 2px solid #ccffff;
}:?
/*-- 記事タイトル下線 ここまで　--*/

/*-- フッターナビ ここから　--*/
.skin-blogFooterNavInner {
    border-color: #ccffff;
}
/*-- フッターナビ ここまで　--*/

/*プロフィール画像サイズ調整*/
[data-uranus-component="profileAvatar"] img {
/*width:150px;*/
/*height:150px;*/
}
/*プロフィール画像サイズ調整*/


/*読者登録ボタン画像設置　ここから*/
.skin-btnSidePrimary {
color: #ffffff;
border:none;
background:url(https://stat.ameba.jp/user_images/20180103/11/angel47/e4/2c/p/t01600080_0160008014104338238.png); /* ボタン画像 */
background-repeat:no-repeat; /* 画像のリピート */
display  :block;
margin  :0px auto 0px auto;
width  :160px; /* 画像の幅 */
height  :80px; /* 77px 画像の高さ */
text-indent :-9999px;}
/*読者登録ボタン画像設置　ここまで*/



/*テーマ管理　ここから*/
[data-uranus-component="linkList"]>li>a, [data-uranus-component="linkList"]>li>div{
display:inline;
line-height:1.6em;
}

div#theme li{
font-size:96%;
}

.themeMenu .skinMenuHeader {
	background-repeat:no-repeat;
}

/* プロフィール */
li.themeNumber10038455362:before{
/*display:inline;*/
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* 大好きな方ご紹介 */
li.themeNumber10098538273:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* ご予約・お問い合わせ */
li.themeNumber10049182228:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* アクセス */
li.themeNumber10049182242:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* お客様の声・感想 */
li.themeNumber10050480742:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* イベント・WS */
li.themeNumber10014241781:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* カラー　メニュー・コース */
li.themeNumber10038457248:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* イメージコンサルタント */
li.themeNumber10013832318:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* パーソナルカラー */
li.themeNumber10038439808:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;
}

/* パーソナルスタイル */
li.themeNumber10038439854:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* パーソナルメイク */
li.themeNumber10038439898:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* お買いもの同行 */
li.themeNumber10038440314:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* 色彩心理 */
li.themeNumber10048900664:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* ウエディングアドバイス */
li.themeNumber10038514927:before{
white-space: pre;
content:" 　└ ";
color:#337fcc;　/*薄い青*/
}


/*カラーアナリストプロ養成*/
li.themeNumber10069437586:brfore{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* イメージコンサルタントプロ養成コース */
li.themeNumber10069514450:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* カウンセリングメニュー */
li.themeNumber10069515558:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* ヒーリングメニュー */
li.themeNumber10069515406:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/*カウンセリング*/
li.themeNumber10050483722:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/*リーディングメニュー*/
li.themeNumber10069514870:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* セラピスト */
li.themeNumber10015188594:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* ヒーリング */
li.themeNumber10038439578:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* リーディング */
li.themeNumber10038439592:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* セルフヒーリングメソッド */
li.themeNumber10052215833:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* 天使 */
li.themeNumber10038436706:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* バッチフラワーレメディー */
li.themeNumber10038439780:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* 精油 */
li.themeNumber10038516166:before{
white-space: pre;
content:" 　└ ";
color:#337fcc;　/*薄い青*/
}

/* エンジェルカードセラピスト認定コース */
li.themeNumber10069513745:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;　/*薄い青*/
}

/* エンジェルヒーリングセラピスト認定 */
li.themeNumber10069513882:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;　/*薄い青*/
}

/* オーラエナジーヒーラー認定コース */
li.themeNumber10069517747:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;　/*薄い青*/
}

/* パワーストーン */
li.themeNumber10038515465:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;　/*薄い青*/
}

/* オンリーワンブレスレット */
li.themeNumber10049181402:before{
white-space: pre;
content:" 　└ ";
color:#337fcc;　/*薄い青*/
}

/* メッセージ */
li.themeNumber10014464806:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;　/*薄い青*/
}

/* 引き寄せ・願いが叶う */
li.themeNumber10049051014:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/*パワー*/
li.themeNumber10014554920:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* 新月・満月 */
li.themeNumber10049040567:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;
}

/* ミラクル・不思議 */
li.themeNumber10015970395:before{
white-space: pre;
content:" 　└ ";
color:#337fcc;
}

/* Happy・笑顔・ありがとう */
li.themeNumber10069523492:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* MIX犬　くぅ */
li.themeNumber10013558599:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;　/*薄い青*/
}

/* お花 */
li.themeNumber10013006023:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;　/*薄い青*/
}

/* ひとり言 */
li.themeNumber10013175336:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/*おいしいもの*/
li.themeNumber10014217827:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;
}

/* 美味しいお店 */
li.themeNumber10041388774:before{
white-space: pre;
content:" 　├ ";
color:#337fcc;　/*薄い青*/
}

/* 料理 */
li.themeNumber10013337768:before{
white-space: pre;
content:" 　└ ";
color:#337fcc;　/*薄い青*/
}

/* ハンドメイド */
li.themeNumber10038440211:before{
white-space: pre;
content:" ◆ ";
color:#337fcc;　/*薄い青*/
}

/*テーマ管理　ここまで*/

/* 全体にメイリオ */
body{
font-family:'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
