/*
Theme Name: Twenty Fifteen Child
Version: 3.9
Template: twentyfifteen
*/

/* 水平線編集用 */
.entry-content hr, hr {
  width: 40vw !important; /* 画面全体の幅を適用 */
  max-width: none !important; /* 親要素の制限を解除 */
  height: 2px !important; /* 太さを指定 */
  background-color: black !important; /* 色を黒に */
  border: none !important;
  margin: 20px 0 !important; /* 余白を適用 */
  display: block !important; /* 表示を安定させる */
  box-sizing: content-box !important; /* 幅の計算方法を修正 */
}

/* summary のデザイン */
summary {
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 5px;
  list-style: none; /* デフォルトの矢印を消す */
  display: flex;
  align-items: center;
}

/* summary 内のアイコン（+/-） */
summary::before {
  content: "+";
  font-size: 18px;
  margin-right: 10px;
}

/* details が開いた時の summary のアイコンを変更 */
details[open] summary::before {
  content: "-";
}