@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

body {
  font-family: sans-serif !important;
}

img {
  border: solid 2px #c0c0c0;
  box-shadow: 0px 0px 3px #808080;
}

.ql-img-displayed-equation {
  border: solid 0px #c0c0c0;
  box-shadow: 0px 0px 0px #808080;
}

::selection {
  background: #84c98b;
  /* Safari */
  color: ;
}

::-moz-selection {
  background: #84c98b;
  /* Firefox */
}

/************************************
** ヘッダー・ナビゲーション
************************************/
.header .header-in {
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.header-container {
  background: linear-gradient(to right, #2c3e50, #2c3e50);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#header-in a {
  font-size: 1.8em !important;
  color: #fff;
  font-weight: 800 !important;
}

#header-container,
#header-container .navi,
#navi .navi-in > .menu-header .sub-menu,
.article h2,
.sidebar h3,
#footer {
  background-color: #2c3e50;
}

/************************************
** メニューラベル
************************************/
menu-header .item-label {
  padding: 10px 16px;
  transition: border-left 0.2s ease, background-color 0.2s ease;
}

menu-header .item-label:hover {
  border-left: 8px solid #ffd43b;
  color: #000;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

#navi .navi-in a:hover {
  background: #1967d2;
}


#navi-in {
  background: #2c3e50;
}

/************************************
** フッター
************************************/
.footer {
  padding: 20px;
  color: #ffffff;
  background: linear-gradient(to right, #1a1a1a, #2c3e50);
  text-align: center;
  font-size: 0.95em;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

/************************************
** 記事見出し
************************************/
.article h1 {
  font-size: 2.2em;
  font-weight: 800;
  color: #ffffff;
  background: #2c3e50;
  padding: 1.2em 1.5em;
  margin: 2em 0 1em;
  border-left: 10px solid #e67e22;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article h2 {
  font-size: 1.8em;
  font-weight: 700;
  color: #ffffff;
  background: #2c3e50;
  border-left: 8px solid #e67e22;
  padding: 1.2em 1.5em;
  margin: 2em 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.article h3 {
  font-size: 1.4em;
  font-weight: 600;
  color: #2c3e50;
  background-color: #f8f8f8;
  border-left: 5px solid #3498db;
  padding: 0.8em 1.2em;
  margin: 1.5em 0;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.3px;
  transition: background 0.3s ease, transform 0.2s ease;
}


/* 連番 */
/* 初期化 */
body {
  counter-reset: h2;
}

/* h2：h3カウンターをリセット */
.article h2 {
  counter-reset: h3;
}

/* h3：h4カウンターをリセット */
.article h3 {
  counter-reset: h4;
}

/* 見出し番号の表示 */
.article h2::before {
  counter-increment: h2;
  content: counter(h2) ". ";
}

.article h3::before {
  counter-increment: h3;
  content: counter(h2) "-" counter(h3) ". ";
}

.article h4::before {
  counter-increment: h4;
  content: counter(h2) "-" counter(h3) "-" counter(h4) ". ";
}

.article a {
  font-weight: bold;
  color: #306998;
}

.article strong {
  background: linear-gradient(transparent 80%, #fff070 50%);
  font-weight: bold;
  color: #000;
}

.article em {
  font-style: normal;
  font-weight: bold;
  background: #fff9c4;
}

.article ul li {
  font-weight: normal;
}

.article ul li ul li {
  font-weight: normal;
}

.article ul li ul li ul li {
  font-weight: normal;
}

.article ul {
  list-style-type: disc !important;
}

.article ul ul {
  list-style-type: circle !important;
}

.article ul ul ul {
  list-style-type: square !important;
}

.article pre {
  font-size: 13px !important;
}

/************************************
** サイドバー
************************************/
.sidebar h2,
.sidebar h3 {
  background-color: #2c3e50;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 12px;
  border-left: 5px solid #e67e22;
  border-radius: 4px;
  margin-bottom: 1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sidebar a {
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
  padding: 4px 6px;
  display: inline-block;
  border-radius: 3px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar a:hover {
  background-color: #e67e22;
  color: #ffffff;
}

.author-description a{
  text-decoration: underline;
}

/* テーブル全体 */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  border: 2px solid #2c3e50; /* 濃グレーでシャープな印象 */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 見出しセル */
table th {
  background-color: #2c3e50; /* ネイビー系で引き締め */
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 1em;
  text-align: left;
  border: 2px solid #2c3e50;
  letter-spacing: 0.4px;
}

/* 通常セル（偶数行） */
table td {
  background-color: #f4f4f4; /* 明るめグレーで清潔感 */
  font-size: 14px;
  padding: 0.9em 1em;
  color: #1a1a1a;
  border: 2px solid #ccc;
}

/* 奇数行の背景色（濃いめでコントラスト） */
table tr:nth-child(odd) td {
  background-color: #e0e0e0;
}

/* 最後の行のボーダーを消す（任意） */
table tr:last-child td {
  border-bottom: none;
}


/************************************
** 目次（TOC）
************************************/
.toc {
  background: #fdfdfd;
  border: 3px solid #2c3e50 !important;
  display: block;
  padding: 24px 30px;
  display: block;
  border-radius: 12px;
  position: relative;
}

.toc-title {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  line-height: 1.0;
  display: flex;
  align-items: center;
}

.toc-title:before {
  content: "\f0ca";
  font-family: FontAwesome;
  font-size: 18px;
  color: #fff;
  background-color: #e67e22;
  border-radius: 50%;
  padding: 12px;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toc-content ol {
  padding: 0 0.5em;
  margin: 0;
  counter-reset: section;
}

.toc-content ol li {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
  border-bottom: 1px dashed #ccc;
  font-size: 16px;
  color: #333;
}

.toc-content ol li:before {
  content: counter(section);
  counter-increment: section;
  background-color: #2c3e50;
  color: #fff;
  font-weight: bold;
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  line-height: 1.6em;
  border-radius: 50%;
  font-size: 0.9em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  margin-right: 1.2em;
  flex-shrink: 0;
}
/* 階層ごとの文字強調 */
.toc-content .toc-list li {
  font-weight: 700;
}

.toc-content .toc-list li li {
  font-weight: normal;
  font-size: 15px;
  padding-left: 2.5em;
}

.toggle-box {
  margin: 1em 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1em;
  background-color: #f9f9f9;
}

.toggle-box input[type="checkbox"] {
  display: none;
}

.toggle-box label {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  color: #007acc;
  margin-bottom: 0.5em;
}

.toggle-box .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.toggle-box input[type="checkbox"]:checked ~ .content {
  max-height: 500px;
  /* 適宜調整 */
}

.warning-box {
  position: relative;
  padding: 36px 20px 20px 20px;
  /* 上に余白を追加してラベルと本文が重ならないように */
  border: 2px solid #f57c00;
  /* 濃いオレンジの枠線 */
  background-color: #fff8e1;
  /* 薄い背景色で注意感を演出 */
  border-radius: 8px;
}

/* 左上の「注意⚠️」ラベル */
.warning-box::before {
  content: "⚠️ 注意";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f57c00;
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-bottom-right-radius: 6px;
  font-size: 14px;
}

.info-box {
  position: relative;
  padding: 36px 20px 20px 20px;
  /* ラベル分の余白を上に追加 */
  border: 2px solid #2196f3;
  /* 明るめの青 */
  background-color: #e3f2fd;
  /* 薄い水色背景で優しい印象 */
  border-radius: 8px;
  font-family: sans-serif;
  line-height: 1.6;
}

/* 左上の「ヒント」ラベル */
.info-box::before {
  content: "💡 ヒント";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2196f3;
  /* 青色ベース */
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-bottom-right-radius: 6px;
  font-size: 14px;
}

.primary-box {
  position: relative;
  padding: 40px 20px 20px 20px;
  border: 2px solid #2e7d32;
  /* 落ち着いたグリーン */
  background-color: #e8f5e9;
  /* 優しい緑系背景 */
  border-radius: 8px;
  font-family: sans-serif;
  line-height: 1.6;
}

/* 左上のラベル「🟢 基本」 */
.primary-box::before {
  content: "✍補足";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2e7d32;
  /* ラベルの背景色（濃いグリーン） */
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-bottom-right-radius: 6px;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.success-box {
  position: relative;
  padding: 40px 20px 20px 20px;
  border: 2px solid #388e3c;
  /* 落ち着いたグリーン */
  background-color: #f1f8e9;
  /* 明るく柔らかい緑系背景 */
  border-radius: 8px;
  font-family: sans-serif;
  line-height: 1.6;
}

/* 左上のラベル「✍ 発展」 */
.success-box::before {
  content: "✍ 発展";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #388e3c;
  /* ラベルの背景色（濃いグリーン） */
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-bottom-right-radius: 6px;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.danger-box {
  position: relative;
  padding: 40px 20px 20px 20px;
  border: 2px solid #d32f2f;
  /* 強めの赤で緊張感 */
  background-color: #ffebee;
  /* 薄い赤系背景で視認性アップ */
  border-radius: 8px;
  font-family: sans-serif;
  line-height: 1.6;
}

/* 左上のラベル「🚨 警告」 */
.danger-box::before {
  content: "🚨 警告";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d32f2f;
  /* ラベルの背景色（濃い赤） */
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-bottom-right-radius: 6px;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/

/*1023px以下*/

@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/
}

/*834px以下*/

@media screen and (max-width: 834px) {
  /*必要ならばここにコードを書く*/
}

/*480px以下*/

@media screen and (max-width: 480px) {
  /*必要ならばここにコードを書く*/
  .article h3,
  .article h4 {
    width: 70%;
  }

  .article img {
    max-width: 100%;
    height: auto;
  }
}
