<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* company-list section -- */
.company-list.section{
    gap: 40px;
    margin-bottom: 60px;
}
.company-list.section a:hover{
    text-decoration: none;
}
.company-wrapper{
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
}
.company-item-wrapper{
    border: 1px dashed #3db134;
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
}
.company-item-wrapper &gt; a{
    position: relative;
    width: 100%;
    padding: 5px;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company-item-wrapper:last-child{
    border-bottom: 1px dashed #3db134;
}
.company-item{
    position: relative;
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.company-catch-copy{
    position: relative;
    font-size: 19px;
    color: #3eb134;
    font-weight: 600;
    max-width: 300px;
    margin: 0 auto;
    padding: 30px 25px 50px 25px;
}
.company-name{
    position: absolute;
    bottom: 10px;
    right: 6px;
    font-size: 12px;
    color: #000000;
    font-weight: 300;
    letter-spacing: 1px;
}
.company-name &gt; span{
    color: #3eb134;
    background-color: #e7f1eb;
    padding: 3px 6px;
}
.company-name &gt; span &gt; img{
    position: relative;
    width: 13px;
    height: 13px;
    top: -1px;
    left: 2px;
}
.company-item-wrapper{
    word-break: break-all;
}
.pager{
    margin-top: 20px;
}
@media (min-width: 769px) {
    .company-wrapper{
        display: flex;
        flex-direction: row;
    }
    .company-buttons-wrapper{
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .company-buttons-wrapper .more-btn-wrapper &gt; div{
        width: 100%;
        height: unset;
        padding: unset;
    }
    .company-buttons-wrapper .more-btn-wrapper &gt; div &gt; a{
        padding: 8px 0;
        border-radius: 50px;
    }
    .company-item-wrapper{
        width: calc((90vw - 6px) / 3);
        border: 1px dashed #3db134;
        border-top: none;
        border-left: none;
    }
    .company-item-wrapper.top{
        border-top: 1px dashed #3db134;
    }
    .company-item-wrapper.left{
        border-left: 1px dashed #3db134;
    }
    .company-item-wrapper.border-right-hide{
        border-right: none;
    }
    .company-item-wrapper.border-left-show{
        border-left: 1px dashed #3db134;
    }
    .company-item-wrapper.left{
        border-left: 1px dashed #3db134;
    }
    .company-item-wrapper:last-child{
        border-bottom: 1px dashed #3db134;
    }
    .company-item{
        gap: 5px;
    }
    .company-catch-copy{
        padding: 60px 0 80px 0;
    }
    .company-wrapper.not-max-columns-count{
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }
}
@media (min-width: 1200px) {
    .company-item-wrapper{
        width: calc((1093px - 6px) / 3);
    }
}
/* -- company-list section */

.footer{
    margin-top: 90px;
}
@media (min-width: 769px){
    .footer{
        margin-top: 150px;
    }
}

.no-company-wrapper{
    position: relative;
    width: 90%;
    max-width: 1093px;
    margin: 0 auto;
    text-align: center;
    color: #999999;
}</pre></body></html>