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

/*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) {

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

/* ========== butsuzonyumoncom 独自 ========== */
/* 文字の色_赤 */
.text-color-1 {
  color: #c00;
}

/* 文字の色_青 */
.text-color-2 {
  color: #00c;
}

/* 文字の色_緑 */
.text-color-3 {
  color: #27b6a3;
}

/* 文字の色_オレンジ */
.text-color-4 {
  color: #f93;
}

/* 文字の装飾_強調 */
.text-emphasize {
  font-weight: 800;
  font-size: 20px;
}

/* 文字の装飾_傍点 */
.text-dot {
  text-emphasis: filled circle;
}

/* 文字の装飾_ふりがな */
.text-furigana {
  font-size: 90%;
}

/* 文字の装飾_注釈 */
.text-annotation {
  font-size: 90%;
}

/* 文字の装飾_mybox（しかく枠のみ）の独自タイトル */
p.text-heading-1 {
  font-weight: bold;
  text-align: center;
}

/* 文字の装飾_ppt画像のタイトル風 */
p.text-heading-2 {
  background: #ddcaaf;
  font-weight: bold;
  font-size: 19px;
  text-align: center;
  vertical-align: middle;
  line-height: 28px;
}

/* 表の見出しの装飾 */
table th.table-heading,
table tr.table-heading,
table td.table-heading {
  background: #f5f5f5;
  vertical-align: middle;
}

/* 下向き三角形 */
/* marginを次のように変更すること */
/*
.box {
  margin-top: 0px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
*/
.box {
  margin-top: 0px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  /* はみ出し部分は非表示にする */
  overflow     : hidden;
  position     : relative;
  width        : 46px;
  height       : 23px;
}
.box::after {
  content      : "";
  position     : absolute;
  width        : 33px;
  height       : 33px;
  /* 図形のCSS */
  background   : #ddcaaf;
  top          : -17px;
  left         : 6px;
  transform    : rotate(45deg);
}

/* AdSenseのセンタリング_個別設置 */
.ad-center {
  text-align:center
}
