@charset "UTF-8";
/* =======================================
# スタンダード型カスタマイズ
======================================= */
/*
-----------------------------------------

【CSS編集 目次】
(1)基本のスタイル
(2)ヘッダーエリアのスタイル
(3)メインエリアのスタイル
(4)サイドエリアのスタイル
(5)ボタン設定
(6)その他、拡張

※CSS編集で広告を修正しないでください
（規約違反に該当する可能性があります）

-----------------------------------------
*/
/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(1)基本のスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (1-1) 基本テキスト全体
--------------------------------------------*/
/* 地色テキスト */
html {
color: #333333;
}



}

/* リンク */
a:link {/* 未訪問のリンク */
color: #5EB5D6;
}
a:visited { /* 訪問済みのリンク */
color: #5EB5D6;
text-decoration: none; /* 下線を消す */
}
a:hover { /* カーソルが上にある時のリンク */
color: #68CDF8;
text-decoration: none; /* 下線を消す */
}
/* 淡色テキスト */
.skin-textQuiet {
color: #999999;
}

/* 強調色テキスト */
.skin-textLoud {
color: #ff3399;
}

/* (1-2) 基本背景
--------------------------------------------*/
/* コンテンツ背景、ヘッダー以下の背景色 */
.skin-blogBody, .skin-blogBodyInner {
background-color: #ffffff;
background:url(https://stat.ameba.jp/user_images/20190128/23/cattery-blue-drops/dd/a5/j/o0510034014346805391.jpg?car=110
);

}

/* 淡色背景, 自分のコメントエリアの背景色 */
.skin-bgQuiet {
background-color: #f7f7f7;
}

/* (1-3) 基本境界線
--------------------------------------------*/
/* 境界線（強） */
.skin-borderLoud {
border-color: #cccccc;
}

/* 境界線（弱） */
.skin-borderQuiet {
border-color: #e5e5e5;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(2)ヘッダーエリアのスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (2-1) ヘッダー背景
--------------------------------------------*/
/* ヘッダー背景 */
.skin-bgHeader {
background-image: url(https://somalism.net/images/bluedrops/0121a.png);
background-repeat: repeat;
}

/* (2-2) ヘッダータイトル、説明文
--------------------------------------------*/
/* ブログタイトルエリア、ヘッダー画像の下にテキストを隠す */
.skin-blogTitle {
z-index: -1;
}

/* ブログタイトル */
.skin-blogMainTitle {
color: #ffffff;
font-size: 28px;
font-weight: bold;
text-decoration: none;
text-shadow: 1px 1px 1px #224771;
margin-bottom: 10px;
}

/* ブログ説明文 */
.skin-blogSubTitle {
color: #ffffff;
font-size: 15px;
text-shadow: 1px 1px 0 #224771;
line-height: 130%;
}

/* ヘッダータイトル */
.skin-headerTitle {
padding: 20px 20px 20px 30px;
text-align: left;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(3)メインエリアのスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (3-1-a) メイン背景
--------------------------------------------*/
/* メインエリア背景 */
.skin-bgMain {
background:url(https://stat.ameba.jp/user_images/20190128/23/cattery-blue-drops/dd/a5/j/o0510034014346805391.jpg?car=110
);
}

/* (3-1-b) メイン背景 内側
--------------------------------------------*/
/* メインエリア背景 内側 レイアウト */
.skin-blogMainInner {
  padding: 30px 0 10px;

}

/* (3-2) メインタイトル
--------------------------------------------*/
/* 記事タイトル */
.skin-entryTitle {
color: #4278AB;
font-size: 23px;
background-image:url("https://somalism.net/images/bluedrops/bg_h2_home.png");
background-repeat:no-repeat;
display:block;
background-position:right bottom;
margin-bottom: 20px;
padding-bottom: 5px;
}

/* 「画像付き記事」「同じテーマの記事」などの見出し */
.skin-mainWidgetTitle {
color: #4278AB;
}

/* (3-3) ブログナビ
--------------------------------------------*/
/* (3-3-a) ブログナビ上部
--------------------------------------------*/
/* 背景、境界線 */
.skin-blogHeaderNav {
background-color: #74AADF;
border: 2px #00008b;
border-style: dotted none;
box-shadow: 100 0 0 4px #74AADF ;
 margin-bottom: 0px;
}

/* 背景 */
.skin-blogHeaderNavInner {

}

/* テキスト */
.skin-topNavText, .skin-topNavText:hover, .skin-topNavText:visited {
color: #ffffff;
}

/* アイコン */
.skin-topNavIcon {
color: #ffffff;
}

/* (3-3-b) ブログナビ下部
--------------------------------------------*/
/* 背景、境界線　*/
.skin-blogFooterNavInner {
border-color: #cccccc;
background-color: #ffffff;
background:url(https://stat.ameba.jp/user_images/20190128/23/cattery-blue-drops/dd/a5/j/o0510034014346805391.jpg?car=110
);

}

/* テキスト */
.skin-bottomNavText, .skin-bottomNavText:hover, .skin-bottomNavText:visited {
color: #5EB5D6;
}

/* アイコン */
.skin-bottomNavIcon {
color: #5EB5D6;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(4)サイドエリアのスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (4-1) サイドテキスト全体
--------------------------------------------*/
/* サイドモジュールタイトル */
.skin-widgetTitle {
color: #4278AB;
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 {color:#4169e1 ;
}

/* サイドリンク色（マウスオーバー） */
.skin-calendar a:hover, .skin-linkList a:hover, .skin-linkChildList a:hover, .skin-rankingList a:hover, .skin-sideLink:hover {color: #68CDF8;
}

/* サイドリンク色（マウスオーバー） */
.skin-calendar a:visited, .skin-linkList a:visited, .skin-linkChildList a:visited, .skin-rankingList a:visited, .skin-sideLink:visited {color: #68CDF8;
}

/* (4-2) サイド境界線
--------------------------------------------*/
/* 境界線 */
.skin-sideBorder {
border-color: #e5e5e5;
}

/* (4-3) サイドモジュール
--------------------------------------------*/
/* (4-3-a) カレンダー
--------------------------------------------*/
/* 記事が存在するカレンダー日付背景 */
.skin-calendarDate.is-active {
background-color:#afeeee ;
}

/* カレンダー */
#calendar .skin-widgetTitle {
border-bottom: 0;
padding-bottom: 30;
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: 30;
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: #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:#1e90ff ;
border-radius:10px;
background-color:#1e90ff ;
color: #ffffff;
}

/* サイド通常ボタン（マウスオーバー、訪問済み） */
.skin-btnSide:hover, .skin-btnSide:visited {
color: #ffffff;
}

/* サイド強調フォローボタン */
.skin-btnSidePrimary {border-color:#1e90ff ;
border-radius:10px;
background-color:#1e90ff ;
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: 10px;
}
.insta_btn2{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  height: 50px;/*高さ*/
  width: 190px;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 25px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  vertical-align: middle;/*垂直中央寄せ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}

.insta_btn2:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram{/*アイコン*/
  font-size: 35px;/*アイコンサイズ*/
  position: relative;
  top: 4px;/*アイコン位置の微調整*/
}

.insta_btn2 span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}



/*
** ヘッダースライドショー4枚(新CSS)
** by A.Matsmoto (https://ameblo.jp/wazameba/)
**/
@keyframes header_ss {
  0% {left: 0px;}
  20.0% {left: 0px;}
  25.0% {left: -1120px;}
  45.0% {left: -1120px;}
  50.0% {left: -2240px;}
  70.0% {left: -2240px;}
  75.0% {left: -3360px;}
  95.0% {left: -3360px;}
  100% {left: -4480px;}
}
.skin-bgHeader a {
  height: 400px; /* 画像の高さ */
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.skin-bgHeader a:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 500%;
  height: 100%;
  background: no-repeat scroll center top;
  background-position:
    0 0,
    1120px 0,
    2240px 0,
    3360px 0,
    4480px 0;
    animation: header_ss 20s ease infinite 0s; /* 「32s」のところで全体時間調整 */
  background-image:
    url("https://somalism.net/images/bluedrops/slide1.jpg"),
    url("https://somalism.net/images/bluedrops/slide2.jpg"),
    url("https://somalism.net/images/bluedrops/slide3.jpg"),
    url("https://somalism.net/images/bluedrops/slide4.jpg"),
    url("https://somalism.net/images/bluedrops/slide1.jpg"); /* 1枚目と同じ */
}
 
/* 「游ゴシック」で表示する */
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, メイリオ, Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', "ＭＳ Ｐゴシック", 'MS PGothic', Osaka, sans-serif;
}
/* プロフィールの「全体ブログランキング」を消す */
#profile .skin-profile+div {
  display: none;
}
/* プロフィールの性別、お住いの地域、自己紹介を消す */
.skin-profileStatus {
  display: none;
}
/* サイドバーのタイトル文字列を変更 */
.skin-widgetTitle {
  position: relative;
  overflow: hidden;
}
.skin-widgetTitle:before{
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: inherit;
  margin-left: -100%;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  background: #ffffff; /* 元のタイトルが見えないよう塗りつぶす色 */
background:url(https://stat.ameba.jp/user_images/20190128/23/cattery-blue-drops/dd/a5/j/o0510034014346805391.jpg?car=110
);

}
/* 「プロフィール」のタイトル */
#profile .skin-widgetTitle:before{
  content:"＊Profile";
 font-size: 1.5em;

}
/* 「テーマ」のタイトル */
#theme .skin-widgetTitle:before{
  content: "＊Themes";
 font-size: 1.5em;

}
/* 「最新の記事」のタイトル */
#recentEntries .skin-widgetTitle:before{
  content: "＊Entries";
 font-size: 1.5em;

}
/* 「最近のコメント」のタイトル */
#recentComments .skin-widgetTitle:before{
  content: "Comments";
 font-size: 1.3em;

}
/* 「月別」のタイトル */
#archive .skin-widgetTitle:before{
  content: "＊Archives";
 font-size: 1.5em;

}
/* 「カレンダー」のタイトル */
#calendar .skin-widgetTitle:before{
  content: "＊Calendar";
 font-size: 1.5em;

}
/* 「ブックマーク」のタイトル */
#bookmarks .skin-widgetTitle:before{
  content: "＊Bookmarks";
 font-size: 1.3em;

}
/* 「このブログの読者」のタイトル */
#readers .skin-widgetTitle:before{
  content: "＊Readers";
 font-size: 1.5em;

}
/* 「お気に入りブログ」のタイトル */
#favorites .skin-widgetTitle:before{
  content: "＊Favorite Blogs";
 font-size: 1.3em;

}
 
/* プロフィールの「プロフィール｜ピグの部屋」を消す */

.skin-profileNav {

  display: none;

}
.skin-calendarSat {
color:#1e90ff /*文字色*/
 }
 .skin-calendarSun{
color:#b22222/*文字色*/
 }
/* プロフィールの「続きを見る＞」を消す */
.skin-profileMore {
  display: none;
}
/* 前後ページ送りボタン */
 .skin-btnPaging {
 border: 2px dashed #deb887;
 background-color: #191970;
 border-radius: 6px;
 box-shadow: 0 0 0 6px #191970;
 color: #fff;
 }
