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

.tags{
	max-width: 1060px;
	margin: 0 auto 20px;
}
.tags_box{
	box-sizing: border-box;
	margin-right: 320px;
	background-color: #e2e2e2;
	padding: 25px 50px 30px;
}
.tags h4{
	display: block;
    font-size: 20px;
    font-family: serif;
	color: #333;
	margin-bottom: 0.5em;
}
.tags ul{
	display: flex;
	flex-wrap: wrap;
	gap: 0.3em 0.5em;
}
.tags li{
	list-style: none;
	display: inline-block;
}
@media print, screen and (max-width: 959px) {
	.tags{
		margin: 0 15px 20px;
	}
	.tags_box{
		margin-right: 0;
		padding: 20px;
	}
}

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

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