<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

@import url("../common/css/common.css");
    
/*
──────────────────────────────────────────────────────────── */


#recycle h3{
    font-size: 1.25em;
    margin-bottom: 1em;
}

#recycle ul{
    background: #EEE;
    padding: 1em;
    margin-top: 2em;
    line-height: 1.8;
}

#recycle ul li + li{
    margin: 1em 0 0;
}

#recycle ul li a[href*="#"]{
    color: #333;
    position: relative;
    padding-right: 1em;
}

#recycle ul li a[href*="#"]::after {
    background: none;
    content: "";
    border: 0;
    border-top: 2px solid #7eb97f;
    border-right: 2px solid #7eb97f;
    height:0.5em;
    line-height: 1;
    margin-top: -0.3em;
    transform: rotate(135deg);
    position: absolute;
    top: 50%; right:0;
    width: 0.5em;
}

#recycle section{
    margin-top: 3em;
}

.table-scroll {
    margin-top: 2em;
}
.table-scroll:after{
	display: block;
	width:100%;
	content:"スクロールできます";
    box-sizing: border-box;
    background:#EEE;
    color: red;
    padding: 0.3em 0.5em;
}
.table-scroll::-webkit-scrollbar {
    height: 5px;
}
.table-scroll::-webkit-scrollbar-track {
    background: #333;
}
.table-scroll::-webkit-scrollbar-thumb {
    background: #999;
}

.table-scroll &gt; div {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

#recycle table{
    border-top:1px #666 solid;
    border-left:1px #666 solid;
    width: 100%;
	
}

#recycle th,
#recycle td{
    border-bottom:1px #666 solid;
    border-right:1px #666 solid;
    padding:0.5em 1em;
    text-align: center;
	vertical-align: middle;
}

#recycle thead th{
    background: #a8d2ff;
}

#recycle thead th.title_area{
    width: 10%;
}

#recycle thead .title_item{
    border-bottom: 3px #333 solid;
}

#recycle thead .title_item th{
    background: #deefff;
    width: 4em;
}

#recycle tbody th:not(rowspan){
    width: 10em;
    background:#FFFBEF;
}

#recycle tbody th[rowspan]{
    width: 3em;
    background:#FFFBEF;
}

@media screen and (min-width:769px) {
   
    .table-scroll table{
        margin-top: 1em;
    }   
    
}

@media screen and (min-width:961px) {
    
    .table-scroll {
        overflow:inherit;
        white-space:normal;
        height:auto;
        max-height:inherit;
    }

    .table-scroll:after {
        display: none;
    }

    #recycle ul{
        display: flex;
        flex-wrap: wrap;
    } 
    
    #recycle ul li{
        width: calc(100% / 3);
    }
   
    #recycle ul li + li{
        margin: 0;
    }
    
    #recycle ul li:nth-of-type(3) ~ li{
        margin-top: 1em;
    }
    
}   

</pre></body></html>