@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/
/************************************
** 記事背景色
************************************/
.main, 
.sidebar {
  background-color: #FEFEFE;
}
/************************************
** 見出し
************************************/
.entry-content h2 {
  position: relative;
  padding: 0.5em 0.5em 0.5em 20px;
  background: #004986;
  color: white;
  border-radius: 5px;
}
/************************************
** パンくずリスト
************************************/
.breadcrumb-home,
.breadcrumb-item,
.breadcrumb-caption {
  color: #333;
  font-weight: normal;
}
.breadcrumb-home a,
.breadcrumb-item a,
.breadcrumb-caption a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.breadcrumb-home a:hover,
.breadcrumb-item a:hover,
.breadcrumb-caption a:hover {
  color: #004986;
  text-decoration: underline;
}
/************************************
** プロフィールカスタマイズ
************************************/
.nwa .author-box .author-description {
  word-break: break-word;
  font-size: 15px;
}
/************************************
** フロント固定ページの非表示
************************************/
.page .date-tags,
.home.page .entry-title,
.home.page .date-tags,
.home.page .author-info {
  display: none;
}
/************************************
** サイドバータイトル
************************************/
.sidebar h3 {
  line-height: 50px;
  border-bottom: solid 3px #4865B2;
  color: #4865B2;
  font-weight: 700;
  background-color: transparent;
}
/************************************
** ウィジェットタイトル
************************************/
.main-widget-label {
  line-height: 50px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: solid 3px #2f4f4f;
  margin-bottom: 20px;
}
/************************************
** 動画（YouTube動画の中央配置）
************************************/
.video-container {
  margin: 0 auto;
}
/************************************
** サイドバーカテゴリー
************************************/
.widget_categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget_categories li {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease-in-out;
}
.widget_categories li:last-child {
  border-bottom: none;
}
.widget_categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.widget_categories li a:hover {
  background-color: #f0f0f0;
  color: #004986;
}
/************************************
** サイドバーカテゴリー（アイコン追加）
************************************/
.widget_categories li a::before {
  content: "📁";
  margin-right: 10px;
  font-size: 16px;
}
/************************************
** モバイル用スタイル調整
************************************/
@media screen and (max-width: 480px) {
  .widget_categories li a {
    padding: 10px 15px;
    font-size: 14px;
  }
}
/************************************
** トップへ戻るボタン位置
************************************/
.go-to-top {
  right: 20px; /*右からpx*/
  bottom: 120px; /*下からpx*/
}
/************************************
** Webフォントの遅延読み込み対策
************************************/
@font-face {
  font-family: 'icomoon';
  src: url('icomoon.woff') format('woff');
  font-display: swap;
}