.content h2 {
font-size: 25px;
letter-spacing: 1px 2px;
line-height: 26px;
padding: 10px 17px;
margin-top: 5px;
}

.content h3 {
font-size: 19px;
letter-spacing: 2px;
line-height: 20px;
padding: 3px 22px;
margin-top: 10px;
}


.content p {
font-size: 15px;
font-weight: 400;
line-height: 24px;
}

.img class {
padding: 3px 23px;
margin-top: 14px;
}


	/*フォント*/
	.content p {
font-size: 16px;
font-weight: normal;
line-height: 24px;
}
		.content h2 {
font-size: 18px;
font-weight: 570;
letter-spacing: 1px;
line-height: 25px;
padding: 7px 9px;
margin-top: 5px;
}


/*==============================
 ヘッダー2層化＋ロゴ幅いっぱい
==============================*/

/* ヘッダー全体をリセットしてロゴだけで埋める */
.siteHeader {
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
}

/* ヘッダー内の余白を完全になくす */
.siteHeader__inner,
.siteHeader__logoArea {
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

/* ロゴを横幅いっぱいにフィットさせる */
.siteTitle__logo {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: cover !important;
}

/* ロゴ画像をクリックできるように（リンク部分も広げる） */
.siteHeader__logo a {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* スマホでもぴったりフィット */
@media screen and (max-width: 768px) {
  .siteTitle__logo {
    width: 100% !important;
    height: auto !important;
  }
}


/*コメント折り畳み*/
.comment-toggle {
  display: inline-block;
  margin: 10px 0 15px;
  padding: 6px 12px;
  background: #f4f4f4;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  transition: background 0.2s ease;
}
.comment-toggle:hover {
  background: #e2e2e2;
}

/* 折りたたみのフェード効果（任意） */
.comments__list {
  transition: all 0.3s ease;
}
