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

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

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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

/*記事ページのCSS*/
        div.date {
            text-align: center;
            color: #999;
            margin-bottom: 30px;
            font-size: 0.9em;
        }
        .diary-entry {
            color: #333;
            font-size: 1em;
        }
        .diary-entry p {
            margin-bottom: 20px;
            text-indent: 1em;
        }
        .strike-through {
            text-decoration: line-through;
            color: #aaa;
        }
        .small-text {
            font-size: 0.9em;
            color: #666;
        }
        .emphasis {
            font-weight: bold;
            color: #764ba2;
        }
        .inner-thought {
            font-style: italic;
            color: #8b4789;
            margin: 15px 0;
            padding-left: 20px;
            border-left: 3px solid #dda0dd;
        }
        .doodle {
            text-align: center;
            margin: 20px 0;
            color: #dda0dd;
            font-size: 1.2em;
        }
        .ending {
            margin-top: 30px;
            text-align: right;
            font-style: italic;
            color: #8b4789;
        }

/* 記事本文内のH3見出しを統一 */
.entry-content h3 {
  position: relative;
  margin: 28px 0 16px;
  padding: 0 0 8px 26px;

  border: none !important;
  border-bottom: 2px solid #b9dff3 !important;

  background: none !important;
  box-shadow: none !important;

  color: #365f7d;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
}

/* 左側の丸い飾り */
.entry-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;

  width: 12px;
  height: 12px;

  border-radius: 50%;
  background: #7ebfe3;

  transform: translateY(-50%);
}

/* スマホ表示 */
@media screen and (max-width: 600px) {
  .entry-content h3 {
    margin: 24px 0 14px;
    padding-left: 23px;
    font-size: 1.15em;
  }

  .entry-content h3::before {
    width: 10px;
    height: 10px;
  }
}