@charset "utf-8";
/* CSS Document */

/* ボタンのデフォルトスタイルをクリア */
button{
	background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/* 品目選択タブ */
#category-tab{
	margin-top: 40px;
	width: 100%;
}
#category-tab button{
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	
	float: left;
	width: 11.11%;
	height: 50px;
	background: #CCC;
	border-right: 1px solid white;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
	line-height: 130%;
	color: white;
	font-size: 90%;
}
#category-tab button:first-child{
	border-left: 0;
}
#category-tab button:last-child{
	border-right: 0;
}
#category-tab button:hover{
	background: #BBB;
}
#category-tab button.current{
	background: #007CC2;
}

.item-list strong{
	color: red;
}

/* 品目リスト */
.category-wrap{
	margin-bottom: 40px;
}
.category-wrap:last-child{
	margin-bottom: 0px;
}
.category-wrap h4 {
	display: flex;
	margin: 0 0 5px -0.4em;
}
.category-wrap ul{
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-left: 25px;
	box-sizing: border-box;
}
.category-wrap li{
	float: left;
	width: 25%;
	margin-bottom: 5px;
	padding-right: 20px;
	box-sizing: border-box;
}

/* 注意事項 */
.caution-wrap{
	margin-top: 40px;
	background: #FFF6CE;
}
.caution-wrap h4{
	padding: 10px;
	vertical-align: middle;
	background: #FFD900;
	text-align: center;
}
.caution-wrap h4 img{
	margin-right: 10px;
	width: 25px;
	vertical-align: middle;
}
.caution-wrap h4 span{	
	vertical-align: middle;
}
.caution-wrap ul{
	padding: 15px 15px 15px 40px;
}
.caution-wrap li:not(:last-child){
	margin-bottom: 5px;
}

/* 対象外品目 */
.exclude-wrap{
	margin-top: 40px;
	background: #FDE9DD;
	box-sizing: border-box;
}
.exclude-wrap h4{
	padding: 10px;
	background: red;
	vertical-align: middle;
	text-align: center;
	color: white;
}
.exclude-wrap h4 img{
	margin-right: 10px;
	width: 25px;
	vertical-align: middle;
}
.exclude-wrap span{
	vertical-align: middle;
}

/* 対象外品目　イラスト */
.exclude-list-ill{
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
}
.exclude-list-ill li{
	float: left;
	width: 33.33%;
	padding: 15px;
	border-right: 1px dashed #999;
	box-sizing: border-box;
	list-style: none;
	text-align: center;
}
.exclude-list-ill li:nth-child(3n){
	border-right: none;
}
.exclude-list-ill h5{
	text-align: center;
}
.exclude-list-ill li img{
	width: 140px;
	margin: 10px 0 5px 0;
	box-sizing: border-box;
}
.exclude-list-ill p{
	text-align: left;
}
.border-9 li{
	border-bottom: 1px dashed #999;
}
.border-9 li:nth-child(7),
.border-9 li:nth-child(8),
.border-9 li:nth-child(9)
{
	border-bottom: none;
}
.border-10 li{
	border-bottom: 1px dashed #999;
}
.border-10 li:last-child,
.border-10 li:nth-last-of-type(2),
.border-10 li:nth-last-of-type(3)
{
	border-bottom: none;
}

/* 対象外品目　テキスト */
ul.exclude-list-txt{
	padding: 15px 15px 15px 40px;
}
.exclude-list-txt li:not(:last-child){
	margin-bottom: 5px;
}
p.exclude-list-txt{
	padding: 20px;
}
p.exclude-list-txt storong{
	font-weight: bold;
	color: red;
}

/* 対象外品目　リスト */
.exclude-list{
	padding: 0 20px 25px 20px;
}
.exclude-list h5{
	text-align: left;
}
.exclude-list ul{
	margin: 5px 0 0 30px;
}
.exclude-list li{
	float: left;
	width: 25%;
	margin-bottom: 5px;
	padding-right: 20px;
	box-sizing: border-box;
}

/* リサイクルマーク・認定事業者マーク */
.mark{
	display: table;
	width: 100%;
	margin-bottom: 40px;
}
.mark > p{
	display: table-cell;
	padding-right: 20px;
	vertical-align: top;
}
.mark > div{
	display: table-cell;
	width: 230px;
	padding: 15px 10px;
	border: 1px solid black;
	text-align: center;
	box-sizing: border-box;
	vertical-align: top;
}
.mark > div img{
	width: 80px;
}


/* お知らせ */
.notice{
	margin: 0 20px 40px 20px;
	padding: 25px !important;
	border: 3px solid red;
	border-radius: 14px;
}
.notice h4{
	margin: 0 0 20px 0;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: red;
}
.notice p{
	font-size: 15px;
}
.notice p span{
	color:red;
	text-decoration: underline;
}



@media screen and ( min-width: 768px) and ( max-width: 1024px) {
	/* 品目リスト */
	.category-wrap li{
		width: 33.33%;
	}
	
	/* 対象外品目 */ 
	.exclude-list li{
		width: 33.33%;
	}
}



@media screen and ( min-width:480px) and ( max-width:767px){
	/* 品目選択タブ */
	#category-tab{
		margin-top: 30px;
	}	
	#category-tab button{
		width: 20%;
	}
	#category-tab button:first-child{
		width: 40%;
	}
	#category-tab button:nth-child(-n+4){
		border-bottom: 1px solid white;
	}	
	#category-tab button:nth-child(4){
		border-right: 0;
	}
	
	/* 注意事項 */
	.caution-wrap h4{
		text-align: center;
	}
	
	/* 品目リスト */
	.category-wrap h4{
		display: block;
		width: 100%;
	}
	.category-wrap{
		border: none;
	}
	.category-wrap li{
		width: 50%;
	}
	
	/* 対象外品目 */
	.exclude-wrap h4{
		text-align: center
	}
	.exclude-list-ill li{
		width: 50%;
	}
	.exclude-list-ill li:nth-child(odd){
		border-right: 1px dashed #999 !important;
	}
	.exclude-list-ill li:nth-child(even){
		border-right: none !important;
	}
	
	.border-3 li:nth-child(1),
	.border-3 li:nth-child(2)
	{
		border-bottom: 1px dashed #999;
	}
	
	.border-10 li:nth-last-of-type(3){
		border-bottom: 1px dashed #999;
	}
	
	.border-10 li:last-child,
	.border-10 li:nth-last-of-type(2)
	{
		border-bottom: none;
	}
	
	.exclude-list li{
		width: 50%;
	}
	.exclude-list h5{
		text-align: center;
	}
}



@media screen and (max-width: 479px){
	/* 品目選択タブ */
	#category-tab{
		margin-top: 30px;
	}
	#category-tab button{
		width: 33.33% !important;
	}
	#category-tab button:nth-child(3n){
		border-right: 0;
	}
	#category-tab button:nth-of-type(-n+6){
		border-bottom: 1px solid white;
	}
	
	/* リサイクルマーク・認定事業者マーク */
	.mark{
		margin-bottom: 20px;
	}
	
	/* 注意事項・対象外品目　共通 */
	.caution-wrap,
	.exclude-wrap{
		margin-top: 20px;
	}
	
	/* 注意事項 */
	.caution-wrap h4{
		text-align: center;
	}
	.caution-wrap ul{
		padding: 10px 10px 10px 30px;
	}
	
	/* 品目リスト */
	.category-wrap h4{
		display: block;
		text-align: center;
	}	
	.category-wrap li{
		width: 49%;
	}
	.category-wrap li:nth-child(odd){
		margin-right: 2%;
	}
	
	/* 対象外品目 */
	.exclude-wrap h4{
		text-align: center
	}
	.exclude-list-ill li{
		width: 100%;
		padding: 15px 0;
		border: none;
		border-bottom: 1px dashed #999 !important;
	}
	.exclude-list-ill li:first-child{
		padding-top: 10px;
	}
	.exclude-list-ill li:last-child{
		padding-bottom: 0;
		border: none !important;
	}
	
	.exclude-list-txt{
		padding: 10px 10px 10px 30px;
	}
	
	.exclude-list li{
		width: 50%;
	}
	.exclude-list h5{
		text-align: center;
	}
	
	/* リサイクルマーク */
	.mark{
		display: block;
		width: 100%;
	}
	.mark > p{
		display: block;
		padding: 0;
	}
	.mark > div{
		display: block;
		width: 100%;
		margin-top: 20px;
	}
	.mark > div img{
		width: 80px;
	}
}