@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    1.1.0
*/

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

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

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

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

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



/* 月カテゴリーの「あの日の今日」をHOMEと同じ形にする */
.category .todays-diary-box {
    max-width: 600px !important;
    width: 100% !important;
    margin: 30px auto 0 !important;
    padding: 20px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

.category .todays-diary-box h3 {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 1.1em !important;
    color: #555 !important;
    line-height: 1.25 !important;
}


/* ==================================================
   サイトマップ：階層をわかりやすく表示
   ================================================== */

.full-tree-sitemap {
  line-height: 1.8;
}

/* detailsの階層ごとに右へ下げる */
.full-tree-sitemap details {
  margin-left: 0;
}

.full-tree-sitemap details details {
  margin-left: 1.5em;
}

.full-tree-sitemap details details details {
  margin-left: 1.5em;
}

/* 開閉部分 */
.full-tree-sitemap summary {
  cursor: pointer;
  padding: 3px 0;
  list-style-position: outside;
}

/* summaryのデフォルト三角を少し見やすく */
.full-tree-sitemap summary::marker {
  font-size: 0.85em;
}

/* 投稿・固定ページ */
.full-tree-sitemap ul {
  margin: 0.2em 0 0.5em 1.5em;
  padding-left: 1.2em;
}

.full-tree-sitemap li {
  margin: 2px 0;
}

/* 投稿リンクは「それ以上開かないページ」と分かるように */
.full-tree-sitemap li::marker {
  content: "・ ";
}

/* ABOUT */
.full-tree-sitemap .sitemap-static-pages {
  margin-left: 1.5em;
}


/* ==================================================
   サイトマップ：階層を線で表示
   ================================================== */

/* 各階層のdetailsを線でつなぐ */
.full-tree-sitemap details {
  position: relative;
}

/* 子階層の左側に縦線 */
.full-tree-sitemap details details {
  border-left: 1px solid #ccc;
  margin-left: 0.8em;
  padding-left: 1.2em;
}

/* 子階層の横線 */
.full-tree-sitemap details details > summary::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: 1.05em;
  width: 0.9em;
  border-top: 1px solid #ccc;
}

/* 開いた階層の中身にも少し余白 */
.full-tree-sitemap details > ul {
  margin-left: 1.5em;
}


