@charset "UTF-8";
/* =======================================
# スタンダード型カスタマイズ
======================================= */
/*
-----------------------------------------

【CSS編集 目次】
(1)基本のスタイル
(2)ヘッダーエリアのスタイル
(3)メインエリアのスタイル
(4)サイドエリアのスタイル
(5)ボタン設定
(6)その他、拡張

※CSS編集で広告を修正しないでください
（規約違反に該当する可能性があります）

-----------------------------------------
*/
/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(1)基本のスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (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;
padding-left: 0px; /* 左側余白 */
padding-right: 0px; /* 右側余白 */
padding-top: 10px; /* 上部余白 */
padding-bottom: 20px; /* 下部余白 */
background-repeat: no-repeat, no-repeat, repeat-y;
background-position: center top, center bottom, center top;
background-image:
url(https://stat.ameba.jp/user_images/20190528/16/esthetic-soleil/a9/69/p/o0480011614417883661.png),
url(https://stat.ameba.jp/user_images/20190528/16/esthetic-soleil/7d/9f/p/o0480003514417875044.png),
url(https://stat.ameba.jp/user_images/20190528/16/esthetic-soleil/70/43/p/o0480001814417874950.png);
}
}

/* (3-1-b) メイン背景 内側
--------------------------------------------*/
/* メインエリア背景 内側 レイアウト */
.skin-blogMainInner {
  padding: 30px 0 10px;
}

/* (3-2) メインタイトル
--------------------------------------------*/
/* 記事タイトル */
.skin-entryTitle {
color: #333333;
font-size: 18px;/文字サイズ*/
margin-bottom: 70px;
padding-bottom: 10px;
padding-top: 60px;/*上からの距離*/
border-bottom: 1px solid #ffac01;
background: no-repeat;
background-image: url(**);
padding-left: 10px;/*左端からの距離*/
}


/* 「画像付き記事」「同じテーマの記事」などの見出し */
.skin-mainWidgetTitle {
color: #333333;
}

/* (3-3) ブログナビ
--------------------------------------------*/
/* (3-3-a) ブログナビ上部
--------------------------------------------*/
/* 背景、境界線 */
.skin-blogHeaderNav {
border-color: #ffffff;
background-color: #ffffff;
}

/* 背景 */
.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) カレンダー
--------------------------------------------*/
/* 記事が存在するカレンダー日付背景 */
.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 {
display:none;
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
#profile .skin-widgetInner{
background-image:url(https://stat.ameba.jp/user_images/20190528/15/esthetic-soleil/f2/f0/p/o0280005014417842728.png);
background-repeat:no-repeat;
padding-top:60px;
}

/*最近の記事*/
#recentEntries .skin-widgetTitle {
display:none;
}
#recentEntries .skin-widgetInner{
background-image:url(https://stat.ameba.jp/user_images/20190528/15/esthetic-soleil/31/52/p/o0200005014417851132.png);
background-repeat:no-repeat;
padding-top:55px;
}
 
/*テーマ*/
#theme .skin-widgetTitle {
display:none;
}
#theme .skin-widgetInner{
background-image:url(https://stat.ameba.jp/user_images/20190528/15/esthetic-soleil/4c/e5/p/o0200005014417851399.png);
background-repeat:no-repeat;
padding-top:55px;
}
 
/*アーカイブ*/
#archive .skin-widgetTitle {
display:none;
}
#archive .skin-widgetInner{
background-image:url(画像のURLをコピペ);
background-repeat:no-repeat;
padding-top:45px;
}
 
/*読者になる*/
#readers .skin-widgetTitle {
display:none;
}
#readers .skin-widgetInner{
background-image:url(https://stat.ameba.jp/user_images/20190528/15/esthetic-soleil/f5/56/p/o0280005014417846015.png);
background-repeat:no-repeat;
padding-top:55px;
}
 
/* お気に入りブログ */
#favorites .skin-widgetTitle {
display:none;
}
#favorites .skin-widgetInner{
background-image:url(https://stat.ameba.jp/user_images/20190528/15/esthetic-soleil/ed/a4/p/o0280005014417846861.png);
background-repeat:no-repeat;
padding-top:55px;
}
 
/* カレンダー */
#calendar .skin-widgetTitle {
display:none;
}
#calendar .skin-widgetInner{
background-image:url(画像のURLをコピペ);
background-repeat:no-repeat;
padding-top:45px;
}
 
/* ブックマーク */
#bookmarks .skin-widgetTitle {
display:none;
}
#bookmarks .skin-widgetInner{
background-image:url(画像のURLをコピペ);
background-repeat:no-repeat;
padding-top:45px;
}
 
/* ランキング */
#ranking .skin-widgetTitle {
display:none;
}
#ranking .skin-widgetInner{
background-image:url(画像のURLをコピペ);
background-repeat:no-repeat;
padding-top:45px;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

(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: #cccccc;
background-color: #dedede;
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-color: #e5e5e5;
background-color: #ffffff;
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;
}

header, .skinHeaderArea{
background:url(https://stat.blogskin.ameba.jp/blogskin_images/20190525/23/4a/bi/p/o11200500esthetic-soleil1558794673100.png);
background-position: center top;
background-repeat: no-repeat;
height:500px;
}
header a, h1.skinTitleArea a{
height:500px;
display:block;
position:absolute;
text-indent:-9999px;
}
header a{
width:1120px;
}
h1.skinTitleArea a{
width:1120px;
}
.skinBlogHeadingGroupArea, .skin-headerTitle{
padding:00;
}
h2.skinDescriptionArea, p.skin-blogSubTitle{
display:none;
}

/* 新デザイン 画像使用したグローバルメニュー */
.menu {
position: absolute;
margin: 0;
padding: 0;
top: -100px;/* メニュー高さ70px + メニュー下の余白50px  */
}
.skin-blogSubA, .skin-blogSubB {
position: relative;
}
.skin-columnB .skin-blogSubA .menu, .skin-columnC .skin-blogSubA .menu, .skin-columnE .skin-blogSubA .menu, .skin-columnD .skin-blogSubB .menu {
left: auto;
right: 0;
}
.skin-columnA .skin-blogSubA .menu, .skin-columnD .skin-blogSubA .menu, .skin-columnC .skin-blogSubB .menu {
left: 0;
right: auto;
}
.skin-columnE .skin-blogSubB .menu {
left: auto;
right: -360px;
}
.menu-container {
margin: 0 auto;
padding: 0;
display:-webkit-flex;
display:flex;
-webkit-justify-content: space-around;
justify-content: space-around;
width: 1120px;/* メニューバー横幅 */
height: 70px;/* メニューバー高さ */
background: #fff;/* メニューバー背景色 */
list-style-type: none;
}
.menu-container li {
margin: 0;
padding: 0;
text-align: center;
width: 100%;
line-height: 70px;/* メニューバー高さ */
height: 70px;/* メニューバー高さ */
}
.menu-container li a {
display: block;
text-decoration: none;
color: #fff;/* メニューボタン文字色 */
}
.menu-container li a:hover {
background-color: #8ef4c5;/* メニューボタンマウスオーバー背景色 */
color: #8ef4c5;
}
.menu-container>li>ul.second-content {
visibility: hidden;
position: absolute;
top: 0;
margin: 0;
padding-left: 0;
list-style-type: none;
z-index: -1;
}
.menu-container>li>ul.second-content>li {
text-align: center;
width: 224px;
height: 70px;/* サブメニューボタンの高さ */
display:block;
box-sizing: border-box;
}
.menu-container>li:hover>ul.second-content {
visibility: visible;
top: 70px;/* メニューバー高さ */
z-index: 1;
transition: all .3s;
}
.menu-container>li>ul.second-content>li>a {
display: block;
height:70px;/* サブメニューボタンの高さ */
line-height: 70px;/* サブメニューボタンの高さ */
background: #FFE2E7;/* サブメニューボタンの背景色 */
color: #FF96A9;/* サブメニューボタンの文字色 */
text-decoration: none;
box-sizing: border-box;
text-indent:0;
opacity: 1;
}
.menu-container>li>ul.second-content>li>a:hover {
background: #ff96a8;/* サブメニューボタンマウスオーバーの背景色 */
color: #fff;/* サブメニューボタンマウスオーバーの文字色 */
}
.skin-blogBody {
padding-top: 50px;/* メニューバーの高さ分余白作る  */
}

/*  メニュー項目背景画像 */
.menu1 a{
background:url(https://stat.ameba.jp/user_images/20190529/01/esthetic-soleil/bb/9f/p/o0224007014418151965.png);
background-position: center;
margin:0;
display: block;
list-style-type: none;
text-align:center;
width:224px;/* ボタンの横幅 */
height:70px;/* ボタンの高さ */
padding:0;
text-indent: -9999px;
}
.menu2 a{
background:url(https://stat.ameba.jp/user_images/20190529/09/esthetic-soleil/03/a7/p/o0224007014418244471.png);
background-position: center;
margin:0;
display: block;
list-style-type: none;
text-align:center;
width:224px;/* ボタンの横幅 */
height:70px;/* ボタンの高さ */
padding:0;
text-indent: -9999px;
}
.menu3 a{
background:url(https://stat.ameba.jp/user_images/20190529/09/esthetic-soleil/a5/0c/p/o0224007014418244167.png);
background-position: center;
margin:0;
display: block;
list-style-type: none;
text-align:center;
width:224px;/* ボタンの横幅 */
height:70px;/* ボタンの高さ */
padding:0;
text-indent: -9999px;
}
.menu4 a{
background:url(https://stat.ameba.jp/user_images/20190529/01/esthetic-soleil/08/d5/p/o0224007014418152691.png);
background-position: center;
margin:0;
display: block;
list-style-type: none;
text-align:center;
width:224px;/* ボタンの横幅 */
height:70px;/* ボタンの高さ */
padding:0;
text-indent: -9999px;
}
.menu5 a{
background:url(https://stat.ameba.jp/user_images/20190529/01/esthetic-soleil/cc/90/p/o0224007014418154801.png);
background-position: center;
margin:0;
display: block;
list-style-type: none;
text-align:center;
width:224px;/* ボタンの横幅 */
height:70px;/* ボタンの高さ */
padding:0;
text-indent: -9999px;
}
/* 標準ヘッダーナビを消す */
.skin-blogHeaderNav {
display: none;
}


/*【読者になる】ボタンを画像に変更
———————————-*/
.skin-btnSidePrimary {
width: 180px;
height: 180px;
text-indent: -9999px;
max-width: none;
border:none;
background: no-repeat 0 0;
background-image: url(https://stat.ameba.jp/user_images/20190609/23/esthetic-soleil/76/b3/p/o0180018014455341015.png);
}

.skin-message {
padding-left: 60px; /* 左側余白 */
padding-right: 60px; /* 右側余白 */
padding-top: 70px; /* 上部余白 */
padding-bottom: 70px; /* 下部余白 */
background-repeat: no-repeat, no-repeat, repeat-y;
background-position: center top, center bottom, center top;
background-image:
url(https://stat.ameba.jp/user_images/20190525/23/esthetic-soleil/68/fd/p/o0450006014416325219.png),
url(https://stat.ameba.jp/user_images/20190525/23/esthetic-soleil/34/fc/p/o0450011614416325543.png),
url(https://stat.ameba.jp/user_images/20190525/23/esthetic-soleil/86/c1/p/o0450001014416325320.png);
}



/* フォントをメイリオに変更 */
body {font-family: メイリオ, Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
