/*
Theme Name: AFFINGER Child
Template: affinger
Description: AFFINGER6 対応
Version: 20240601
*/

/*media Queries スマートフォンとタブレットサイズ（959px以下）で適応したいCSS - スマホ・タブレット
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 959px) {


	/*-- ここまで --*/
}
	
/*media Queries タブレットサイズ（600px～959px）のみで適応したいCSS -タブレットのみ
---------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 600px) and (max-width: 959px) {


	/*-- ここまで --*/
}	
	
/*media Queries タブレット（600px）以上で適応したいCSS -タブレット・PC
---------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 600px) {


	/*-- ここまで --*/
}

/*media Queries PCサイズ（960px）以上で適応したいCSS - PCのみ
---------------------------------------------------------------------------------------------------*/
@media print, screen and (min-width: 960px) {


	/*-- ここまで --*/
}

/*media Queries スマホサイズ（599px）以下で適応したいCSS - スマホのみ
---------------------------------------------------------------------------------------------------*/
@media print, screen and (max-width: 599px) {

	
	/*-- ここまで --*/
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  color: #111;
  line-height: 1.9;
  letter-spacing: 0.03em;
  background: #fff;
}

/* コンテンツ幅 */
#content,
.inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* セクション余白 */
section,
.entry-content > * {
  margin-bottom: 80px;
}

/* =========================
  見出し装飾リセット
========================= */

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 24px;
  font-weight: 600;
}

/* =========================
  ボタンデザイン
========================= */

a.btn,
.wp-block-button__link {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 14px 32px;
  box-shadow: none;
}

/* =========================
  不要な装飾を消す
========================= */

.post-info,
.cat-name,
.tag-links,
.sns {
  display: none;
}