@charset "UTF-8";
.postContentspankuzu .block_l {
  position: relative;
}
.postContentspankuzu .block_l .bread {
  top: -93px;
  right: 0;
}

@media (max-width: 599px) {
  .postContentspankuzu .block_l .bread {
    top: -33px;
    right: auto;
    left: 8%;
  }
}
#postContents {
  text-align: center;
  width: 600px;
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 5em;
}
#postContents .title {
  padding: 3em 0;
}
#postContents .title h1 {
  display: inline;
  padding: 70px 0 15px;
  font-weight: bolder;
  text-align: center;
  font-size: 2.4rem;
  border-bottom: 2px solid #EE4208;
  color: #EE4208;
  font-size: 2.6rem;
}
#postContents .contentsBody {
  text-align: left;
  padding: 2em 0 5em;
  border-bottom: #CED6C7 1px solid;
}
#postContents .contentsBody h2 {
  padding: 2em 0;
  display: flex;
  align-items: center;
  line-height: 1.8;
  justify-content: center;
  color: #EE4208;
  font-size: 2.2rem;
  font-weight: bolder;
}
#postContents .contentsBody h2::before, #postContents .contentsBody h2::after {
  border-top: 2px solid;
  content: "";
  width: 3em;
}
#postContents .contentsBody h2::before {
  margin-right: 3em;
}
#postContents .contentsBody h2::after {
  margin-left: 3em;
}
#postContents .contentsBody h3 {
  font-size: 2rem;
  font-weight: bolder;
  line-height: 2;
}
#postContents .contentsBody h4 {
  font-size: 1.6rem;
  font-weight: bolder;
  line-height: 2;
  padding: 2em 0 0.5em;
}
#postContents .contentsBody p {
  padding: 1em 0 0.5em;
}
#postContents .contentsBody a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em 0;
  margin: -0.5em 0;
  border: 2px solid #EE4208;
  color: #EE4208;
  font-weight: bolder;
  box-sizing: border-box;
  border-radius: 50px;
}
#postContents .contentsBody ul {
  padding: 0.5em 0;
}
#postContents .contentsBody ul li {
  padding: 0.25em 0 0.25em 1em;
  line-height: 1.5;
  position: relative;
}
#postContents .contentsBody ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* アコーディオンのトリガー（タイトル部分）のスタイル */
.accordion-trigger {
  cursor: pointer;
  position: relative;
}

/* 矢印アイコンのスタイル */
/* `div.title`の疑似要素として配置することで、`h2`に干渉しないようにします */
.accordion-trigger::after {
  content: "▼";
  color: #EE4208;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 50%; /* 右端からの位置 */
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* 開いているとき（`.active`クラスが付いた時）の矢印の向き */
.accordion-trigger.active::after {
  transform: rotate(180deg) translateY(75%);
}

/* アコーディオンのコンテンツ部分のスタイル */
.accordion-content {
  display: none; /* 初期状態で非表示 */
}