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

/* ----------------------------- */
/* 投稿ページ・記事一覧・サイドバーのアイキャッチ画像をレスポンシブ化 */

/* 投稿ページのアイキャッチ画像 */
img.wp-post-image {
    width: 100%;
    height: auto;
}

/* 投稿一覧用サムネイル */
img.post-list-thumb,
img.post-list-thumb-mobile {
    width: 100%;
    height: auto;
}

/* サイドバー用サムネイル */
img.sidebar-thumb,
img.sidebar-thumb-mobile {
    width: 100%;
    height: auto;
}

/* 投稿ページ・スマホ用アイキャッチ */
img.post-eyecatch-mobile {
    width: 100%;
    height: auto;
}