@charset "UTF-8";
/* =======================================
# タイル型カスタマイズ
======================================= */
/*
-----------------------------------------

【CSS編集 目次】
(1)基本のスタイル
(2)ヘッダーエリアのスタイル
(3)メインエリアのスタイル
(4)サイドエリアのスタイル
(5)ボタン設定
(6)その他、拡張

-----------------------------------------

# カラーパレット

Surface Text High Emphasis: rgb(8,26,21); // #08121a
Surface Text Low Emphasis: rgba(8,26,21,0.6); 
Gray20: rgba(8,26,21,0.08); // #eeeeef  
Gray60: rgba(8,26,21,0.61); // #686e73;
Accent Primary: rgb(35,123,49); // #237b31
Accent Primary Light// #e7f5e9
On Accent Primary Light Text // #237b31
Expressive Pink: #ca5ce6;
*/

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(1)基本のスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (1-1) 基本テキスト全体
--------------------------------------------*/
/* 地色テキスト */
html {
  color: rgb(8,26,21); /* #08121a */
}

/* リンク */
a {
  color: rgb(35,123,49); /* #237b31 */
}

/* マウスオーバーリンク */
a:hover {
  opacity: 1; /* templateXXX.css側のhoverのスタイルをoverride */
  text-decoration: none;
}

/* 訪問済みリンク */
a:visited {
  /* 未指定 */
}

/* 淡色テキスト */
.skin-textQuiet {
  color: rgba(8,26,21,0.6);
}

/* 強調色テキスト */
.skin-textLoud {
  color: #ca5ce6; /* Expressive Color Pink */
}

/* (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;
  background-image: url(../img/header_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1704px 322px;
}

/* (2-2) ヘッダータイトル、説明文
--------------------------------------------*/
/* ブログタイトルエリア、ヘッダー画像の下にテキストを隠す */
.skin-blogTitle {
  z-index: -1;
}

/* ブログタイトル */
.skin-blogMainTitle,
/* ブログ説明文 */
.skin-blogSubTitle {
  /* ヘッダー画像が入るためタイトルを隠す */
  /* スクリーンリーダーで読み取れる方法で隠す */
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* ヘッダータイトル */
.skin-headerTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 322px;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(3)メインエリアのスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (3-1-a) メイン背景
--------------------------------------------*/
/* メインエリア背景 */
.skin-bgMain {
  background-color: #ffffff;
}

/* (3-1-b) メイン背景 内側
--------------------------------------------*/
/* メインエリア背景 内側 レイアウト */
.skin-blogMainInner {
  padding: 30px 0 10px;
}

/* (3-2) メインタイトル
--------------------------------------------*/
/* 記事タイトル */
.skin-entryTitle {
  color: rgb(8,26,21);
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

/* 「画像付き記事」「同じテーマの記事」などの見出し */
.skin-mainWidgetTitle {
  color: rgb(8,26,21);
}

/* リンク付き記事タイトル */
.skin-titleLink, .skin-titleLink:hover, .skin-titleLink:visited {
  color: rgb(8,26,21);
}

/* (3-3) ブログナビ
--------------------------------------------*/
/* (3-3-a) ブログナビ上部
--------------------------------------------*/
/* 背景、境界線 */
.skin-blogHeaderNav {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}

/* 背景 */
.skin-blogHeaderNavInner {
}

/* テキスト */
.skin-topNavText, .skin-topNavText:hover, .skin-topNavText:visited {
  color: rgba(8,26,21,0.6);
}

/* アイコン */
.skin-topNavIcon {
  color: rgba(8,26,21,0.6);
}

/* (3-3-b) ブログナビ下部
--------------------------------------------*/
/* 背景、境界線　*/
.skin-blogFooterNavInner {
  border-color: #cccccc;
  background-color: #ffffff;
}

/* テキスト */
.skin-bottomNavText, .skin-bottomNavText:hover, .skin-bottomNavText:visited {
  color: rgba(8,26,21,0.6);
}

/* アイコン */
.skin-bottomNavIcon {
  color: rgba(8,26,21,0.6);
}

/* アーカイブ一覧 */
.skin-archiveHeader {
  color: rgba(8,26,21,0.6);
}

/* メインコンテンツエリア
--------------------------------------------*/
/* タイル部分 */
.skin-tileItem {
  overflow: hidden;
  border-radius: 8px;
}

/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

　(4)サイドエリアのスタイル

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (4-1) サイドテキスト全体
--------------------------------------------*/
/* サイドモジュールタイトル */
.skin-widgetTitle {
  color: rgba(8,26,21,0.6);
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 6px;
}

/* 2カラムサイドバー,3カラム:広いサイドバー */
/* 3カラム:狭いサイドバー */
/* サイド基本テキスト */
.skin-blogSubA, .skin-blogSubB {
}

/* サイド強調色テキスト */
.skin-sideTextLoud {
  color: #ca5ce6;
}

/* サイドリンク色（基本） */
.skin-sideLink {
  color: rgb(35,123,49);
}

.skin-sideLink:hover {
  text-decoration: underline;
}

.skin-calendar a, .skin-linkListToggle, .skin-linkList a, .skin-linkChildList a, .skin-rankingList a:link {
  color: rgb(8,26,21);
}

/* サイドリンク色（訪問済み） */
.skin-calendar a:visited, .skin-linkList a:visited, .skin-linkChildList a:visited, .skin-rankingList a:visited {
  color: #686e73;
}

/* サイドリンク色（マウスオーバー） */
.skin-calendar a:hover, .skin-linkList a:hover, .skin-linkChildList a:hover, .skin-rankingList a:hover {
}

/* オフィシャルバッジ */
.skin-profile [data-uranus-component="badgeOfficial"] a {
  color: rgb(35,123,49);
}

/* (4-2) サイド境界線
--------------------------------------------*/
/* 境界線 */
.skin-sideBorder {
  border-color: #e5e5e5;
}

/* (4-3) サイドモジュール
--------------------------------------------*/
/* (4-3-a) カレンダー
--------------------------------------------*/
/* 記事が存在するカレンダー日付背景 */
.skin-calendarDate {
  color: rgba(8,26,21,0.6);
}

.skin-calendarDate.is-active {
  background-color: #e7f5e9;
  color: rgb(8,26,21);
}

/* カレンダー */
#calendar .skin-widgetTitle {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 6px;
}

#calendar .skin-calendarTableTitle a {
  color: rgb(35,123,49);
}

/* (4-3-b) アーカイブナビ
--------------------------------------------*/
/* アーカイブナビ */
.skin-archiveNavTabs a, .skin-archiveNavTabs a:hover, .skin-archiveNavTabs a:visited {
  color: rgba(8,26,21,0.6);
}

/* アーカイブナビ 選択時 */
.skin-archiveNavTabs a.is-active, .skin-archiveNavTabs a.is-active:hover, .skin-archiveNavTabs a.is-active:visited {
  color: rgb(8,26,21);
}

/* (4-3-c) プロフィール
--------------------------------------------*/
/* プロフィール */
#profile .skin-widgetTitle {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

[data-uranus-component="profileAvatar"] img {
  -webkit-box-shadow: none; /* プロフィールアバター（サムネイル）のshadowを消す */
  box-shadow: none;
  border: 1px solid rgba(8,26,21,0.08);
}

/* (4-3-c) プロフィール
--------------------------------------------*/
/* プロフィール */
#rss .skin-sideLink {
  color: rgb(8,26,21);
}
    
/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊

(5)ボタン設定

＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/
/* (5-1) ボタン全体
--------------------------------------------*/
/* 通常ボタン */
.skin-btn {
  border-color: transparent;
  background-color: rgba(8,18,26,0.08);
  color: rgba(8,18,26,0.75);
}

/* 通常ボタン（マウスオーバー、訪問済み） */
.skin-btn:hover, .skin-btn:visited {
  color: rgba(8,26,21,0.6);
}

/* 強調ボタン */
.skin-btnPrimary {
  border-color: #237b31;
  background-color: #237b31;
  color: #ffffff;
}

/* 強調ボタン（マウスオーバー、訪問済み） */
.skin-btnPrimary:hover, .skin-btnPrimary:visited {
  color: #ffffff;
}

/* (5-2) ページ送りボタンの  << 次へ 、前へ >> 、「次の記事タイトル」 >> ボタン
--------------------------------------------*/
/* 前後ページ送りボタン */
.skin-btnPaging {
  border-color: #e5e5e5;
  background-color: #fff;
  color: #333;
}

/* 前後ページ送りボタン（マウスオーバー、訪問済み） */
.skin-btnPaging:hover, .skin-btnPaging:visited {
  color: rgb(8,26,21);
}

/* ページ送りの矢印アイコン*/
.skin-btnPagingIcon {
  color: #a9a9a9;
}

/* 記事中ページ送りの次 */
.skin-entryPagingNext, .skin-entryPagingNext:hover, .skin-entryPagingNext:visited {
  color: rgb(35,123,49);
}

/* 記事中ページ送りの前 */
.skin-entryPagingPrev, .skin-entryPagingPrev:hover, .skin-entryPagingPrev:visited {
  color: rgb(35,123,49);
}

/* (5-3) 目次ナビゲーション
--------------------------------------------*/
/* 目次ナビゲーション */
.skin-btnIndex {
  border-color: #e5e5e5;
  background-color: #ffffff;
  color: rgba(8,26,21,0.6);
}

/* 目次ナビゲーション（マウスオーバー、訪問済み） */
.skin-btnIndex:hover, .skin-btnIndex:visited {
  color: rgba(8,26,21,0.6);
}

/* 目次ナビゲーション 選択時 */
.skin-btnIndex.is-active {
  border-color: #cccccc;
  background-color: #e7f5e9;
  color: rgb(8,26,21);
}

/* 目次ナビゲーション 無効時 */
.skin-btnIndex.is-disabled {
  border-color: #cccccc;
  background-color: #f6f7f8;
  color: #979696;
}

/* (5-4) サイドボタン
--------------------------------------------*/
/* サイド通常ボタン */
.skin-btnSide {
  border-radius: 99em;
  border-color: transparent;
  background-color: rgba(8,18,26,0.08);
  color: rgba(8,18,26,0.75);
}

/* サイド通常ボタン（マウスオーバー、訪問済み） */
.skin-btnSide:hover, .skin-btnSide:visited {
  color: inheirt;
}

/* サイド強調ボタン */
.skin-btnSidePrimary {
  border-radius: 99em;
  border-color: #237b31;
  background-color: #237b31;
  color: #ffffff;
}

/* サイド強調ボタン（マウスオーバー、訪問済み） */
.skin-btnSidePrimary:hover, .skin-btnSidePrimary:visited {
  color: #ffffff;
}

/* templateXXX.cssのスタイルを上書き */
.skin-blogSubA [data-uranus-component="button"], 
.skin-blogSubA [data-uranus-component="buttonSmall"] {
  max-width: 100%;
}

/* (5-5) 記事一覧 月別
--------------------------------------------*/
/* 記事一覧 月別 ボタンテキスト */
.skin-btnArchive {
  border-color: #e5e5e5;
  background-color: #ffffff;
  color: rgba(8,26,21,0.6);
}

/* 記事一覧 月別 ボタンテキスト（マウスオーバー、訪問済み） */
.skin-btnArchive:hover, .skin-btnArchive:visited {
  color: rgba(8,26,21,0.6);
}

/* 記事一覧 月別 ボタンテキスト 選択時 */
.skin-btnArchive.is-active {
  background-color: #e7f5e9;
  color: rgb(8,26,21);
}

/* 記事一覧 月別 ボタンテキスト 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-color: #f8f8f8;
}