@charset "utf-8";
/*
-----------------------------------------

 【CSS編集 目次】

　(1) 文字のスタイル
　(2) ボタンのスタイル
　(3) エリアのスタイル
　(4) その他、拡張

  ※CSS編集で広告を修正しないでください
  （規約違反に該当する可能性があります）

-----------------------------------------
*/



/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊


　(1) 文字のスタイル


＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/



/* (1-1) 全体の文字
--------------------------------------------*/


/* 通常文字 */
.skinTextColor, .skinBaseTextColor, .skinBlock, body {
	color: #333333;
	font-size: 1em;
}
/* リンク */
.skinAnchorColor, .skinBaseAnchorColor, .skinBlock a, a {
	color: #0066cc;
}
/* 訪問済のリンク */
.skinAnchorVisitedColor, .skinBaseAnchorVisitedColor, .skinBlock a:visited, a:visited {
	color: #996699;
}
/* マウスオーバーしたときのリンク */
.skinAnchorHoverColor, .skinBaseAnchorHoverColor, .skinBlock a:focus, .skinBlock a:hover, a:focus, a:hover {
	color: #ff3366;
        opacity:0.3;
}
/* 弱い文字 （日付など）*/
.skinWeakColor, .skinBaseWeakColor {
	color: #999999;
}
/* 強い文字 （NEW! 更新!など）*/
.skinStrongColor, .skinBaseStrongColor {
	color: #ff3399;
}

/* 記事、メッセージボードのリンク文字 */
.articleText a, div.skinMessageBoard a {
	color: #0000FF; /* 文字色 */
	text-decoration: underline; /* 文字装飾 */
}

.skinArticleBody  a:hover, div.skinMessageBoard a:hover{
        opacity:0.3;

}


/* フリースペースのリンク文字 */
.freespaceArea a {
	font-weight: bold; /* 文字の太さ */
	color: #0000FF; /* 文字色 */
	text-decoration: underline; /* 文字装飾 */
}
 .freespaceArea a:hover{
	opacity:0.3;
}
/* (1-2) ブログタイトル文字
--------------------------------------------*/


/* skinTitle ブログタイトル文字 */
.skinTitle, .skinTitle:visited, .skinTitle:hover, .skinTitle:focus {
	color: #CC0000;
	font-weight: bold;
	font-size: 1.4em;
}
/* skinDescriptionArea ブログの説明文字 */
.skinDescription {
	color: #336600;
	font-weight: bold;
	font-size: 1.1em;
}
/* (1-3) 記事／メッセージボード内の文字のスタイル
--------------------------------------------*/

/* skinArticleTitle 記事タイトル文字 */
.skinArticleTitle, .skinArticleTitle:hover, .skinArticleTitle:focus, .skinArticleTitle:visited {
	font-size: 1.4em;
	font-weight: bold;
	color: #666666;
}
/* (1-4) サイドバー内の文字のスタイル
--------------------------------------------*/

/* skinMenuTitle サイドメニュータイトル文字 */
.skinMenuTitle {
	color: #990000;
	font-weight: bold;
	text-shadow: #ffffff 3px 3px 3px;
}
/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊


 (2) ボタンのスタイル
 ※ボタンの背景画像や文字の色などを指定


＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/


/* (2-1) ボタン[横180px 縦35px]
--------------------------------------------*/


/* ボタンの背景画像 ※[横180px 縦35px]のボタンの背景画像を指定 */
.skinImgBtnM {
}
/* ボタンの文字色 */
.skinImgBtnM:hover span, .skinImgBtnM:focus span, .skinImgBtnM span {
	color: #333333 !important;
}
/* (2-2) アイコン付きボタン[横128px 縦28px]
--------------------------------------------*/



/* アイコン付き ボタンの背景画像 ※[横128px 縦28px]のボタンの背景画像を指定 */
.skinImgBtnS {
	width: 128px;
	background-image: url(//stat.ameba.jp/user_images/20121227/10/mayuminn158/f4/80/j/o0260003112349112203.jpg);
}
.skinImgBtnS:hover {
	width: 128px;
	background-image: url(//stat.ameba.jp/user_images/20121227/10/mayuminn158/80/80/j/o0260003112349114454.jpg);
}
.skinImgBtnS:hover span, .skinImgBtnS:focus span, .skinImgBtnS span {
	/*
 アイコン画像は下記から指定
 menu_icons_pastel.png (パステル）
 menu_icons_gray.png（グレー）
 menu_icons_black.png（黒）
 menu_icons_white.png（白）
*/
	width: 110px;
	background-image: url(//stat100.ameba.jp/common_style/img/skin/cmn/icons/menu_icons/menu_icons_gray.png);
	color: #333333 !important;/* ←ボタンの文字色 */
}
/* (2-3) ページ送りボタンの  << 次へ 、前へ >> 、「次の記事タイトル」 >> ボタン
--------------------------------------------*/


.skinSimpleBtn, .skinSimpleBtn:visited, .skinSimpleBtn:hover, .skinSimpleBtn:focus {
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #0066cc !important;
}
/* ボタンにマウスオーバー */
.skinSimpleBtn:hover, .skinSimpleBtn:focus {
	background: #f7f7f7;
}
/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊


 (3) エリアのスタイル
 ※背景画像、サイズ、ボーダーなどを各部分ごとに指定


＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/



/* (3-1) ボディ（全体）
--------------------------------------------*/


/* skinBody ボディ */
.skinBody {
	background-image: url(//stat.blogskin.ameba.jp/blogskin_images/20120920/18/d1/45/p/o02401200mayuminn1581348134301619.png);
	/* ←ブログ全体に背景を敷きたいとき */
	background-repeat: repeat;
	background-position: left top; /* 左上隅を基準(原点)として配置 */
	background-attachment: fixed; /* スクロール時、背景画像固定 */
}
.skinBody2 {
}
.skinBody3 {
}
/* (3-2) ブログヘッダー
--------------------------------------------*/


/* skinHeaderArea ブログヘッダー980pxエリア */
.skinHeaderArea {
    background: url(//stat.blogskin.ameba.jp/blogskin_images/20170920/20/28/cd/p/o09800439mayuminn1581505908086508.png) left top no-repeat;
    border: 3px double #979797;
    height: 439px!important;
    margin-bottom: 5px;
    box-shadow: 2px 2px 2px #aaa;
}

/* skinBlogHeadingGroupArea タイトルと説明を囲うエリア */
.skinBlogHeadingGroupArea {
	padding: 20px 0 30px;
}
/* skinTitleArea ブログタイトルのエリア */
.skinTitleArea {
	padding: 10px 0 0 55px; /* 余白　上　右　下　左 */
	width: 630px;/*幅*/
}
/* skinDescriptionArea ブログの説明エリア */
.skinDescriptionArea {
	padding: 55px 0 0 55px; /* 余白　上　右　下　左 */
}
/* (3-3) コンテンツエリア
--------------------------------------------*/


/* skinContentsArea コンテンツ980pxエリア */
.skinContentsArea {
/* 注 ベースのcssにwidth:980px;の記述有り */
}
/* (3-4) メインエリア
--------------------------------------------*/


.skinMainArea {
}
/* (3-5) メッセージボード
--------------------------------------------*/



.skinMessageBoard {
	/* 注 ベースのcssに margin-bottom の記述有り */
	border: 3px double #979797; /* 枠線 */
	background: #ffffff;/* ←メッセージボードに背景を敷きたいとき */
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.skinMessageBoard2 {
}
.skinMessageBoard3 {
	padding: 16px 30px;
}
/* (3-6) 記事
--------------------------------------------*/

/* skinArticle 記事エリア */
.skinArticle {
	/* 注　ベースのcssに margin-bottom の記述有り */
	padding: 16px 0;
	border: 3px double #dddddd;
	background: #ffffff;/* ←記事に背景を敷きたいとき */
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.skinArticle2 {
}
.skinArticle3 {
}
/* skinArticleHeader 記事タイトルエリア */
.skinArticleHeader {
	margin: 0 5px;
	padding: 2px 10px;
	border-left: 5px solid #e4e4e4;
	border-radius: 10px 10px 0 0;
	background-image: url(//stat.ameba.jp/user_images/20161111/19/mayuminn158/50/29/j/o0199005013795431664.jpg);
	background-color : #99FF99;  /* 背景画像 */
	text-shadow: #ffffff 3px 3px 3px;
}
.skinArticleHeader2 {
}
/* skinArticleBody 記事本文エリア */
.skinArticleBody {
}
.skinArticleBody2 {
	margin: 0 5px;
	padding-left: 5px;
}
/* skinArticleFooter 記事フッターエリア */
.skinArticleFooter {
	margin: 10px 29px 0;
	border-top: 1px dotted #949494;
}
/* (3-7) サイドバーエリア
--------------------------------------------*/


.skinSubArea {
} /* サイドバーエリア共通 */
.skinSubA {
} /* 300pxのサイドバーエリア */
.skinSubB {
} /* 180pxのサイドバーエリア */
/* (3-8) サイドバー　メニュー
--------------------------------------------*/


/* skinMenu サイドバー　メニューのエリア */
.skinMenu {
	/* 注　ベースのcssに margin-bottom の記述有り */
	background: #CCFFFF;/* ←サイドメニューに背景を敷きたいとき */
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.skinMenu2 {
}
/* skinMenuHeader サイドメニュータイトルエリア */
.skinMenuHeader {
	padding: 5px 10px;
	background-image: url(//stat.ameba.jp/user_images/20140716/22/mayuminn158/29/d0/j/o0300003713005222075.jpg);
	background-repeat: no-repeat;
	background-color: #FFFFCC;/* ←サイドメニューのタイトルに背景を敷きたいとき */
	-moz-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
}
/* skinMenuBody サイドメニュー本文エリア */
.skinMenuBody {
	margin: 10px;
	padding: 10px;
	background: #ffffff;/* ←サイドメニューの本文に背景を敷きたいとき */
}
/* (3-9) サイドバーの　リスト画像、ボーダー　※要素のbottomに指定すること
--------------------------------------------*/


.skinSubHr, .skinSubList li {
	margin-bottom: 3px;
	padding-bottom: 3px;
	border-bottom: 1px dotted #b3b3b3;
}
/* (3-10) コメント欄、記事一覧などの一覧
--------------------------------------------*/


/* 背景色 */
.skinBgColor, .skinBaseBgColor, .skinBlock {
	background-color: #ffffff;
}
/* 弱い背景色 */
.skinWeakBgColor, .skinBaseWeakBgColor {
	background-color: #f7f7f7;
}
/* 強い背景色 */
.skinStrongBgColor, .skinBaseStrongBgColor {
	background-color: #f7f7f7;
}
/* 枠線の色 */
.skinBorderColor, .skinBaseBorderColor, .skinBlock {
	border-color: #dddddd;
}
/* 境界線の色 */
.skinBorderHr, .skinBorderList li {
	border-color: #b3b3b3;
}
/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊


 (4) その他、拡張


＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/


/* その他、拡張があれば記述 */

body, input, button, select, textarea {
	font-family: "メイリオ", "ＭＳ　Ｐゴシック", "ヒラギノ角ゴ　Pro W3", Arial, helvetica;
}
/* 記事、メッセージボードの文字 */
.articleText {
	font-size: 1.21em; /* 文字サイズ */
	line-height: 1.5; /* 行間 */
	color: #333333;
}
div.skinMessageBoard {
	font-size: 1.17em; /* 文字サイズ */
	line-height: 1.2; /* 行間 */
	color: #333333;
}
/* フリースペースの文字 */
.freespaceArea {
	font-size: 1.17em; /* 文字サイズ */
	line-height: 1.2; /* 行間 */
	color: #333333;
}
.subModule {
	margin-top: 0px;/* フリースペースの上のマージンをなくす */
}
/*プロフィールのボタンを外す*/
.amemberBtn, .presentBtn {
	display: none;
}
/* グローバルメニュー */

.skinContentsArea {
	position: relative;
}
#headerMenu, #headerMenu ul, #headerMenu li, #headerMenu a {
	margin: 0;
	padding: 0;
	background-color: transparent;
}
#headerMenu {
	position: absolute;
	line-height: 1.0;
	overflow: visible;
}
#headerMenu ul.menu {
	list-style: none;
	overflow: visible;
}
#headerMenu ul.menu:after {
	display: block;
	clear: both;
	content: ".";
	height: 0px;
	overflow: hidden;
	visibility: hidden;
}
#headerMenu ul.menu li {
	position: relative;
	display: block;
	float: left;
	overflow: visible;
}
#headerMenu ul.menu>li:first-child {
	border: 0 none;
}
#headerMenu ul.menu li a {
	display: block;
	width: auto;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	background-repeat: repeat;
	background-position: center;
}
.skinContentsArea {
	padding-top: 75px; /* ■設置スペース確保 */
}
#headerMenu {
	top: 5px; /* ■上下位置調整 */
	left: 0px; /* ■左右位置調整 */
}
#headerMenu ul.menu li {
	font-size: 14px; /* ■文字サイズ */
	height: 60px; /* ■ボタンの高さ(上下枠線を含む) */
	line-height: 60px; /* ■ボタンの高さ(上下枠線の内側) */
}
#headerMenu ul.menu li {
	width: 163px; /* ■ボタンの幅(第一ボタン以外) */
}
#headerMenu ul.menu>li:first-child {
	width: 165px; /* ■ボタンの幅(第一ボタン) */
}
#headerMenu ul.menu>li {
	border-width: 1px; /* ■区切り線の太さ */
	border-color: #fff; /* ■区切り線の色 */
	box-shadow: 0px 0px 2px #000 inset;
}
#headerMenu ul.menu li a {
	color: #ffffff; /* ■文字色[白](通常時) */
	font-weight: bold; /* ■太字 */
	text-decoration: none; /* ■下線[なし](通常時) */
	background-color: #FEECAA;    /* 背景色 */
        background-image: url(//stat.ameba.jp/user_images/20170921/06/mayuminn158/8c/78/j/o0199005014031859263.jpg);
}

#headerMenu ul.menu li a, .navi li a:visited {
	color: #008809;
	text-shadow: -1px -1px 0px #fff, 1px -1px 0px #fff, 1px 1px 0px #fff, -1px 1px 0px #fff, 1px 2px 3px rgba(0, 0, 0, 0.6); /* メニューの文字色を指定 */
}
#headerMenu ul.menu li a:hover {
	text-decoration: none;
	color: #fff; /* メニューの文字色(マウスオーバー時)を指定 */
	text-shadow: -1px -1px 0px #FB7784, 1px -1px 0px #FB7784, 1px 1px 0px #FB7784, -1px 1px 0px #FB7784, 1px 2px 3px rgba(0, 0, 0, 0.6); /* メニューの文字色を指定 */
        opacity:1 !important;
}
/*▲ メニューカスタマイズ (ここまで) ▲ */


/* ▼ 通常は変更不要 (ここから) ▼ */
#headerMenu ul.submenu {
	position: absolute;
	top: -99999px;
	z-index: 99999;
}
/* ▲ 通常は変更不要 (ここまで) ▲ */
/* ▼ メニューカスタマイズ (ここから) ▼ */
#headerMenu ul.submenu {
	border-width: 1px; /* ■ 枠線の太さ */
	border-style: solid; /* ■ 枠線の種類 */
	border-color: #ffffff; /* ■ 枠線の色 */
	z-index: 100;
}
#headerMenu ul.menu li:hover ul.submenu {
	left: 23px; /* ■ 横位置(親メニューボタンの左端から) */
	top: 50px; /* ■ 縦位置(親メニューボタンの上端から) */
}
#headerMenu ul.submenu li {
	border-top: 1px solid #ffffff; /* ■ ボタン区切り線(上側) */
	width: 300px !important;
}
#headerMenu ul.submenu li a {
	width: 300px !important;
}
#headerMenu ul.submenu li:first-child {
	border: 0 none; /* ■ 第一ボタンの区切り線(上側) */
}
/*▲ メニューカスタマイズ (ここまで) ▲ */


/* 記事下のコメント文字 */
a.commentLink {
	font-size: 1.2em; /* 文字サイズ */
	font-weight: bold;
	color: #4169E1;
}
/* 記事下のペタ文字 */
a.petaLink {
	font-size: 1.2em; /* 文字サイズ */
	font-weight: bold;
	color: #4169E1;
}
/* 読者ボタン */
.readerMenu a.skinImgBtnS {
	width: 140px;
	height: 50px;
	text-indent: -9999px;
	background-image: url(//stat.ameba.jp/user_images/20170921/06/mayuminn158/63/d2/j/o0148005814031859260.jpg);
	background-repeat: no-repeat;
	background-position: center 0px;
	display: block;
}
.readerMenu a:hover.skinImgBtnS {
	background-image: url(//stat.ameba.jp/user_images/20170921/06/mayuminn158/63/d2/j/o0148005814031859260.jpg);
	background-position: center 0px;
}
.readerMenu .skinMenuBody {
	padding: 10px;
	margin: 10px;
}
/* 読者になる移動時調整 */
.readerRequestArea {
	margin-top: 5px;
	margin-bottom: 10px;
}
/* 読者数 */

.readerHeader em {
	font-size: 24px;
}
/* 更新情報が届きます */
.readerRequestDescription {
	color: #FF0000;/* 文字色 */
	font-size: 11px;/* 文字サイズ */
	font-weight: bold;
}
/* ブログタイトル、説明文位置初期化 */
.skinTitleArea, h2.skinDescriptionArea {
	margin: 0; /* マージン */
	padding: 0; /* 余白 */
}
/* ヘッダー画像のリンク設定 */
h1.skinTitleArea a {
	width: 980px;/* 画像の横幅 */
	height: 430px;/* 画像の高さ */
	display: block; /* 表示設定 */
	position: relative; /* 位置設定 */
	text-indent: -9999px; /* テキストインデント */
}
/* ブログ説明文を非表示 */
.skinDescriptionArea {
	display: none; /* 表示設定 */
}
/* ヘッダー上下の余白をなくす */
.skinBlogHeadingGroupArea {
	padding: 0px 0 0px;
}
/* テーマ強調*/


/* 携帯向けナビ*/
.keitai {
}
/* 記事上定型文*/
.jidoutop {
	overflow: auto;
	height: 240px;
	border: 10px outset #ffcc66;
	padding: 10px;
	background-color: #ffffff;
	border-radius: 10px;
	-moz-border-radius: 10px;
	padding: 10px;/* 余白 */
	margin-bottom: 10px; /* マージン */
	font-size: 1.2em;
	color: #000000;
}
.imagelistLink {
	display: none;
}
/*アメブロの共有ボタンを左側に移動*/
.articleExLinkArea a {
	padding: 0;
	margin: 0;
}
.articleExLinkArea {
	text-align: left;
	margin-left: 0;
}
/*記事内囲み*/
.waku {
	margin: 10px;
	padding: 10px;
	border-color: #FFCC00;
	border-width: 3px;
	border-style: ridge;
	border-radius: 10px;
	box-shadow: 5px 5px 5px #66cc66;
	-moz-border-radius: 10px;
}
/*メルマガ*/
#mailmagazine {
    color: #333;
    font-weight: bold;
    text-align: left;
    background-color: #ffffff;
    border: 3px double #979797;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    padding: 10px;
    width: 155px;
    position: absolute;
    top: 75px;
    z-index: 0;
}
/* メルマガ高さ逃げ */
.skinSubB {
	margin-top: 300px;/* メルマガフォームの高さ分 */
}
/* 記事送り */
.skinSimpleBtn, .skinSimpleBtn:visited, .skinSimpleBtn:hover, .skinSimpleBtn:focus {
	border: 1px double #ffffff;
	background: #FFA500;
	color: #ffffff !important;
}
/* ボタンにマウスオーバー */
.skinSimpleBtn:hover, .skinSimpleBtn:focus {
	opacity: 0.3;
	background-color: #B8860B;
}
/* 記事一覧 */
a.pagingList, a:hover.pagingList, .a:visited.pagingList, .a:focus.pagingList {
	color: #B8860B;
}
/*フッター*/
.footerTop {
	padding: 15px 0;/*高さ*/
	text-align: center;
	background: #FFFAAD;
}
.footerBottom {
	padding: 15px 0;
	text-align: center;
	background: #333333;
	background-image: url(//stat.ameba.jp/user_images/20130326/15/mayuminn158/78/02/j/o0800002712474010617.jpg);
}
.footerTop, .footerTop a, .footerTop a:visited, .footerTop a:focus {
	color: #333333;
	font-size: 14px;
}
.footerTop a:hover {
	color: #0066ff;
	opacity: 0.5;
	background-color: #FFFFFF;
	font-size: 14px;
}
.footerBottom, .footerBottom a, footerBottom a hover, .footerBottom a:visited, footerBottom a:focus {
	color: #660000;
	text-shadow: #ffffff 3px 3px 3px;
	font-weight: bold;
	font-size: 12px;
}
/*文字の大中小ボタンを装飾をするCSS*/
.small, .middle, .large {
	cursor: pointer; /* カーソルを「指マーク」に指定 */
	padding: 2px 4px; /* ボタンの余白(上下、左右)を指定 */
	margin: 0 5px 0 0; /* ボタン下の余白(上下、左右)を指定 */
	text-align: center; /* ボタンの文字を中央寄せにを指定 */
	border: 1px solid #CCC; /* ボタンの枠線の色を指定*/
	background-color: #ffffff; /* ボタンの背景色を指定*/
	color: #333333; /* ボタンの文字色を指定 */
}
.small:hover, .middle:hover, .large:hover {
	background-color: #FFA500; /* マウスオーバー時のボタンの背景色を指定 */
	color: #ffffff; /* マウスオーバー時のボタンの文字色を指定 */
}
.skinArticle {
	margin-top: 10px;
}

/*リスト表示*----------------------*/

/*リスト番号位置*/
ol{
padding-left: 30px;	
}
ul{
padding-left: 30px;	
}


/*メッセージボード　リスト*/
.skinMessageBoard ul {
	list-style-image: url(//stat100.ameba.jp/blog/ucs/img/char/char2/035.gif);
}
.skinSubList li{
	list-style-type: none;
	padding-left: 10px;
	background: url(//stat.ameba.jp/user_images/20120925/21/mayuminn158/05/af/p/o0010001012205988178.png)no-repeat;
}
/* リストマーク画像 */

/*リスト矢印*/
.skinArticle ul.green {
	list-style-image: url(//stat.ameba.jp/user_images/20161111/19/mayuminn158/5a/6c/g/o0016001613795429563.gif);
	padding: 30px!important;
}
.skinArticle ul.black {
	list-style-image: url(//stat.ameba.jp/user_images/20161111/19/mayuminn158/3e/05/g/o0016001613795429564.gif);
	padding: 30px !important;
}
.skinArticle ul.red {
	list-style-image: url(//stat.ameba.jp/user_images/20161111/19/mayuminn158/33/36/g/o0016001613795429561.gif);
	padding: 30px !important;
}
.skinArticle ul.pink {
	list-style-image: url(//stat.ameba.jp/user_images/20161111/19/mayuminn158/11/95/g/o0016001613795430898.gif);
	padding: 30px !important;
}
.skinArticle ul.blue {
	list-style-image: url(//stat.ameba.jp/user_images/20161111/19/mayuminn158/c0/11/g/o0016001613795429562.gif);
	padding: 30px !important;
}
/*リスト矢印*/
.skinArticle ul.arrow {
	list-style-image: url(//stat.ameba.jp/user_images/20140119/12/mayuminn158/82/1b/g/o0016001612818538016.gif);
	padding: 10px !important;
	
}

/*フリースペースリスト*/

li.himawari{
	padding:5px;
}
.himawari::before{
	content: url(https://stat.ameba.jp/user_images/20120925/21/mayuminn158/05/af/p/o0010001012205988178.png);
	margin: 10px;
	position: relative;
	top: 0px;


}



/*見出し*/
h1{
font-size:16px ;
}
h2.title {
	color: #FF3333 !important;
	font-size: 18px;
	line-height: 1.2;
	padding-left: 0px;
}
h2.title1 {
	margin: 0px;
	padding: 6px 10px;
	background-image: linear-gradient(#fe6703, #fee7d8, #fea66b, #d35501);
	background-color: #fe6703;
	color: #fff;
	text-shadow: #666 2px 2px 2px;
	font-weight: bold;
	font-size: 18px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	box-shadow: 6px 6px 6px #AAA;
}
h2.midashi {
	font-size: 18px;
	font-weight: bold;
	text-shadow: #bbb 2px 2px 2px;
	border-left: #cc6600 solid 6px;
	border-bottom: #cccccc solid 1px;
	color: #FF3300 !important;
	line-height: 1.2;
	padding-left: 10px;
}
h3.title {
	color: #FF3300 !important;
	font-size: 16px;
	line-height: 1.2; /* 行間 */
	border-left: #cc6600 solid 6px;
	border-bottom: #cccccc solid 1px;
	margin: 15px 10px 15px 10px;
	padding: 5px 10px 5px 5px;
}

h4.title {
	color: #FF3300 !important;
	font-size: 16px;
	line-height: 1.2; /* 行間 */
	border-left: #cc6600 solid 6px;
	border-bottom: #cccccc solid 1px;
	margin: 5px;
	padding: 5px 10px 5px 5px;
}
hr.dashed {
	border-width: 3px 0px 0px 0px; /* 太さ */
	border-style: dashed; /* 線種 */
	border-color: green; /* 線色 */
	height: 1px; /* 高さ */
	width: 90%;
}

br.cleaer {
	clear: both;
}
.tel-link {
	color: #06F;
	font-size: 16px;
	font-weight: bold;
}
h2.f {
	position: relative;
	padding-left: 25px;
	border-bottom: 3px solid #0bd;
	color: #FF3399 !important;
	font-size: 20px;
	line-height: 32px;
}
h2.f:before {
	position: absolute;
	top: -8px;
	left: 7px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	height: 12px;
	width: 12px;
	background: #FF3399;
	content: "";
}
h2.f:after {
	position: absolute;
	top: 8px;
	left: 2px;
	transform: rotate(15deg);
	-webkit-transform: rotate(15deg);
	height: 8px;
	width: 8px;
	background: #FF3399;
	content: "";
}
h3.f {
	position: relative;
	color: #fff;
	background: #FF3399;
	font-size: 16px;
	line-height: 1;
	text-shadow: 1px 1px 1px #000;
	border : 1px solid #FF3399;
	margin: 30px -10px 10px -10px;
	padding: 15px 5px 12px 20px;
	border-radius: 3px;
}
h3.f:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 30px;
	height: 0;
	width: 0;
	border: 10px solid transparent;
	border-top: 10px solid #FF3399;
}
h3.midashi {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.2; /* 行間 */
	border-left: #cc6600 solid 6px;
	border-bottom: #cccccc solid 1px;
	padding: 10px !important;
}
h3.menu {
	margin: 0px 10px;
	padding: 2px 8px;
	border-width: 0 0 5px 0;
	border-color: #fbd92d;
	border-style: solid;
	background: #15aecb;
	color: #EBF7FA;
	line-height: 140%;
	font-weight: bold;
	border-top-left-radius: 10px;     /* 左上 */
	border-top-right-radius: 10px;    /* 右上 */
	-moz-border-radius-topleft: 10px;     /* 左上 */
	-moz-border-radius-topright: 10px;    /* 右上 */
}
/*メッセ―ジボード見出し*/
h3.mb{
	color:#FA8072;
}


.freespaceArea h3::before{
content: url(https://stat.ameba.jp/user_images/20120925/21/mayuminn158/05/af/p/o0010001012205988178.png);
	margin: 10px;
	position: relative;
	top: 0px;
}





/* 日付、テーマ、投稿者を右寄せにする */
.articleDetailArea {
	position: relative;
}
.articleTime {
	position: absolute;
	right: 0; /* 日付を右寄せにする */
}
.articleTheme {
	position: absolute;
	top: 10px; /* テーマの位置を調整する */
	left: 0; /* テーマを左にする */
	font-size: 12px; /* テーマの文字サイズを変更する*/
}
div.menu1 {
	margin: 10px;
	padding: 15px;
	border-color: #FFCC00;
	border-width: 3px;
	border-style: ridge;
	border-radius: 10px;
	box-shadow: 5px 5px 5px #aaa;
}
div.box01 {
	border: 1px solid #ff9750;
	padding: 10px;
	margin: 10px;
	box-shadow: 5px 5px 5px #99FFFF;
}
div.box02 {
	margin: 10px;
	padding: 10px;
	border-color: #FFCC00;
	border-width: 3px;
	border-style: ridge;
	border-radius: 10px;
	box-shadow: 5px 5px 5px #aaa;
}
div.box03 {
	height: 10px;
}
span.box03 {
	margin-left: 13px;
	padding: 6px 10px;
	background-image: linear-gradient(#FFB29D, #FF99AA, #D98293, #FFB29D);
	background-color: #FF99AA;
	color: #ffffff;
	font-weight: bold;
	border-radius: 6px;
	box-shadow: 6px 6px 6px #AAA;
}
div.box04 {
	margin-left: 5px;
	margin-right: 5px;
	padding: 30px 15px 10px;
	border-radius: 5px;
	border: 2px solid rgb(255, 153, 170);
	box-shadow: 5px 5px 5px #AAA;
}

div.free{
        margin:0px;
	padding:10px;
	background-color:#FFF;
	border-color:#979797;
	border-width:3px;
	border-style:double;
	border-radius:10px;-moz-border-radius:10px;
}

.profileRanking{
display:none;
}

.skinMessageBoard span.logo{
	color:#FA8072;
	font-style: italic;
}

.center{
 text-align: center;
}
.js-blogGenreRank.blogGenreEntryRankInfo__block{
display:none !important;

}

div.box01 span{
padding-left:10px !important;
}
