@charset "UTF-8";
/* =======================================
# スタンダード型カスタマイズ
======================================= */
/*
-----------------------------------------

【CSS編集 目次】
(1)基本のスタイル
(2)ヘッダーエリアのスタイル
(3)メインエリアのスタイル
(4)サイドエリアのスタイル
(5)ボタン設定
(6)その他、拡張

※CSS編集で広告を修正しないでください
（規約違反に該当する可能性があります）

-----------------------------------------
*/
/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(1)基本のスタイル
/*フォントの設定 */
body {
font-family: メイリオ, Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (1-1) 基本テキスト全体
--------------------------------------------*/
/* 地色テキスト */
html {
color: #333333;
}

/* リンク */
a {
color: #3970B5;
}

/* 訪問済みリンク */
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: #ffffff;
}

/* (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;
}

/* (3-1-c) 記事エリア
--------------------------------------------*/
/*記事エリア背景*/
.skin-entryInner{
border:1px solid #c6c6c6;
background-color: #FFFFFF;
border-radius:10px;
padding: 20px;
margin-left: -20px;
width:100%;
}

/* (3-2) メインタイトル
--------------------------------------------*/
/* 記事タイトル */
.skin-entryTitle {
color: #333333;
border-bottom: 1px solid #e5e5e5;
margin-bottom: 20px;
padding-bottom: 15px;
}

/* 「画像付き記事」「同じテーマの記事」などの見出し */
.skin-mainWidgetTitle {
color: #333333;
}

/* (3-3) ブログナビ
--------------------------------------------*/
/* (3-3-a) ブログナビ上部
--------------------------------------------*/
/* 背景、境界線 */
.skin-blogHeaderNav {
border-color: rgba(0, 0, 0, 0.2);
background-color: #ffffff;
display:none;
}

/* 背景 */
.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 {
color: #666666;
border-bottom: 1px solid #e5e5e5;
padding-bottom: 10px;
margin-bottom: 6px;
}

/* 2カラムサイドバー,3カラム:広いサイドバー */
/* 3カラム:狭いサイドバー */
/* サイド基本テキスト */
.skin-blogSubA, .skin-blogSubB {
}

/* サイド強調色テキスト */
.skin-sideTextLoud {
color: #ff3399;
}

/* サイドリンク色（基本） */
.skin-calendar a, .skin-linkListToggle, .skin-linkList a, .skin-linkChildList a, .skin-rankingList a, .skin-sideLink {
}

/* サイドリンク色（マウスオーバー） */
.skin-calendar a:hover, .skin-linkList a:hover, .skin-linkChildList a:hover, .skin-rankingList a:hover, .skin-sideLink:hover {
}

/* サイドリンク色（マウスオーバー） */
.skin-calendar a:visited, .skin-linkList a:visited, .skin-linkChildList a:visited, .skin-rankingList a:visited, .skin-sideLink:visited {
}

/* (4-2) サイド境界線
--------------------------------------------*/
/* 境界線 */
.skin-sideBorder {
border-color: #e5e5e5;
}

/* (4-3) サイドモジュール
--------------------------------------------*/
/* (4-3-a) カレンダー
--------------------------------------------*/
/*カレンダーのカスタマイズ*/
/* 記事が存在するカレンダー日付背景 */
#calendar table td a{
background-image: url(https://stat.ameba.jp/user_images/20190211/20/marroncoco/60/2c/p/o0030003014354430094.png);
background-position:center;
background-repeat:no-repeat;
display:block;
}

/* カレンダー */
#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: 2px dashed #ffffff;
background-color: #ffa7a7;
border-radius: 6px;
box-shadow: 0 0 0 3px #ffa7a7;
color: #fff;
}

/* 前後ページ送りボタン（マウスオーバー、訪問済み） */
.skin-btnPaging:hover, .skin-btnPaging:visited {
color: #fff;
}

/* ページ送りの矢印アイコン*/
.skin-btnPagingIcon {
color: #fff;
}

/* 記事中ページ送りの次 */
.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: 2px dashed #ffffff;
background-color: #adcfa9;
border-radius: 6px;
box-shadow: 0 0 0 3px #adcfa9;
color: #fff;
}

/* サイド通常ボタン（マウスオーバー、訪問済み） */
.skin-btnSide:hover, .skin-btnSide:visited {
color: #ffffff;
}

/* サイド強調ボタン */
.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;
    background-image: url(https://stat.ameba.jp/user_images/20190211/20/marroncoco/cf/e1/p/o0450089314354441252.png);
    background-size: 100%;
    padding-top: 40px;
   padding-bottom: 90px;
    background-repeat: no-repeat;
}
/* コンテンツ背景、ヘッダー以下の背景色 */
.skin-blogBody, .skin-blogBodyInner {
background-color: #ffffff;
}
/*
　ヘッダー画像アニメーション
*/
.skin-columnB .skin-blogSubA .ss,
.skin-columnC .skin-blogSubA .ss,
.skin-columnE .skin-blogSubA .ss,
.skin-columnB .skin-blogSubB .ss,
.skin-columnD .skin-blogSubB .ss {
right: -40px;
}
.skin-columnA .skin-blogSubA .ss,
.skin-columnD .skin-blogSubA .ss,
.skin-columnC .skin-blogSubB .ss {
left: 0;
}
.skin-columnE .skin-blogSubB .ss {
left: -500px;
}

.skin-headerTitle {
display: none;
}
.skin-blogSubA,
.skin-blogSubB {
position: relative;
}
.skin-bgHeader > div > a {
height: 500px;
}
.ss {
overflow: hidden;
pointer-events: none;
width: 1200px;
height: 500px;
position: absolute;
top: -627px;
}
.ss #s1 {animation-delay:0s;}
.ss #s2 {animation-delay:3s;}
.ss #s3 {animation-delay:7s;}
.ss #s4 {animation-delay:11s;}
.ss #s5 {animation-delay:15s;}
.ss img {
position: absolute;
animation-name: slide2;
animation-duration: 12s;
animation-iteration-count: infinite;
opacity:0;
animation-timing-function: linear;
}
.ss #s1 {
animation-name: slide1;
opacity: 1
}
@keyframes slide1 {
25.0%{opacity:1;}
33.3%{opacity:0;}
91.7%{opacity:0;}
100.0%{opacity:1;}
}
@keyframes slide2 {
8.3%{opacity:1;}
33.3%{opacity:1;}
41.7%{opacity:0;}
}
/* グローバルメニュー(共通) */
.nav-wrap {
  position: absolute;
  margin: -30px 0 0px 0;
  padding: 0 0 0 0;
}
.skin-blogSubA, .skin-blogSubB {
position: relative;
}
.skin-columnB .skin-blogSubA .nav-wrap,
.skin-columnC .skin-blogSubA .nav-wrap,
.skin-columnE .skin-blogSubA .nav-wrap,
.skin-columnD .skin-blogSubB .nav-wrap {
  left: -800px;
  right: auto;
}
.skin-columnA .skin-blogSubA .nav-wrap,
.skin-columnD .skin-blogSubA .nav-wrap,
.skin-columnC .skin-blogSubB .nav-wrap {
  left: -1000px;
  right: auto;
}
.skin-columnE .skin-blogSubB .nav-wrap {
  left: -800px;
  right: auto;
}
.nav-body {
  margin: 0;
  padding: 0;
}
.nav-body:after {
  display: block;
  clear: both;
  content: ".";
  height: 0;
  visibility: hidden;
}
.nav-body>br {
  display: none;
}
.nav-body li {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 240px;
}
.nav-body li a {
  display: block;
  text-decoration: none;
}
.nav-body {
  width: 1200px; /* メニューバー横幅 */
  background: transparent/* メニューバー全体の背景色 */
}
.nav-body li a {
  width: 240px; /* ボタンの横幅 */
  line-height: 50px; /* ボタンの高さ */
  color: #ffffff; /* 文字の色 */
  background: #ffffff; /* ボタンの色 */
}
/* 標準ナビの上にグローバルメニューを表示 */
.skin-bgHeader {
  padding-bottom: 90px; /* メニューバーの表示場所確保 */
}
.nav-wrap {
  top: -80px; /* メニューバーの上下位置調整 */
}
/* プロファイル */
#profile .skin-widgetHead{
background-image:url("https://stat.ameba.jp/user_images/20190211/18/marroncoco/b2/62/p/o0300007014354357697.png") !important;
background-size:100% !important;
width: 300px;
height: 70px;
margin-top:-80px;
}
/*
#profile .skin-widgetTitle{
border: none;
text-align: center;
color: #fff;
padding-top: 10px;
padding-bottom: 0px;
font-size: 13px;
    font-family: cursive;
}
#profile .skin-widgetTitle:before {content: "Recent Post  ";}
*/
#profile .skin-widgetTitle{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
border: none;
}
/* 最近の記事 */
#recentEntries .skin-widgetHead{
background-image:url("https://stat.ameba.jp/user_images/20190211/18/marroncoco/cd/58/p/o0200007014354357698.png") !important;
background-size:100% !important;
width: 200px;
height: 70px;
margin-bottom:15px;
}
/*
#recentEntries .skin-widgetTitle{
border: none;
text-align: center;
color: #fff;
padding-top: 10px;
padding-bottom: 0px;
font-size: 13px;
    font-family: cursive;
}
#recentEntries .skin-widgetTitle:before {content: "Recent Post  ";}
*/
#recentEntries .skin-widgetTitle{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
border: none;
}
/*テーマ*/
#theme .skin-widgetHead{
background-image:url("https://stat.ameba.jp/user_images/20190211/18/marroncoco/e4/d0/p/o0300007014354357702.png") !important;
background-size:100% !important;
height: 70px;
margin-bottom:15px;
}
/*
#theme .skin-widgetTitle{
border: none;
text-align: center;
color: #fff;
padding-top: 10px;
padding-bottom: 0px;
font-size: 13px;
    font-family: cursive;
}
#theme .skin-widgetTitle:before {content: "Recent Post  ";}
*/
#theme .skin-widgetTitle{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
border: none;
}
/*月別*/
#archive .skin-widgetHead{
background-image:url("https://stat.ameba.jp/user_images/20190211/18/marroncoco/6b/5a/p/o0200007014354357695.png") !important;
background-size:100% !important;
width: 200px;
height: 70px;
margin-bottom:15px;
}

/*
#archive .skin-widgetTitle{
border: none;
text-align: center;
color: #fff;
padding-top: 10px;
padding-bottom: 0px;
font-size: 13px;
    font-family: cursive;
}
#archive .skin-widgetTitle:before {content: "Recent Post  ";}
*/
#archive .skin-widgetTitle{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
border: none;
}
/*カレンダー*/
#calendar .skin-widgetHead{
background-image:url("https://stat.ameba.jp/user_images/20190211/18/marroncoco/96/6f/p/o0300007014354357688.png") !important;
background-size:100% !important;
width: 300px;
height: 70px;
margin-bottom:15px;
}
/*
#calendar .skin-widgetTitle{
border: none;
text-align: center;
color: #fff;
padding-top: 10px;
padding-bottom: 0px;
font-size: 13px;
    font-family: cursive;
}
#calendar .skin-widgetTitle:before {content: "Recent Post  ";}
*/
#calendar .skin-widgetTitle{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
border: none;
}
/*このブログの読者*/
#readers .skin-widgetHead{
background-image:url("https://stat.ameba.jp/user_images/20190211/18/marroncoco/ce/a4/p/o0300007014354357691.png") !important;
background-size:100% !important;
height: 70px;
margin-bottom:15px;
}
/*
#readers .skin-widgetTitle{
border: none;
text-align: center;
color: #fff;
padding-top: 10px;
padding-bottom: 0px;
font-size: 13px;
    font-family: cursive;
}
#readers .skin-widgetTitle:before {content: "Recent Post  ";}
*/
#readers .skin-widgetTitle{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
border: none;
}
/*【読者になる】ボタンを画像に変更
???????????-*/
.skin-btnSidePrimary {
width: 300px;
height: 60px;
text-indent: -9999px;
max-width: none;
border:none;
background: no-repeat 0 0;
background-image: url(https://stat.ameba.jp/user_images/20190211/18/marroncoco/b3/31/p/o0300006014354365306.png);
}
/*記事タイトル見出し装飾*/
h2:first-letter {
margin-right: .1em;
font-size: 35px;
color: #ff9999;
text-shadow:;
}
