body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

a {
    text-decoration: none
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
}

.top {
    background-color: #fed001;
    height: 83px;
    display: flex;
    align-items: center;
}

.inner_box {
    width: 960px;
    margin: 0 auto;
}

.top .inner_box span {
    vertical-align: text-bottom;
}

.contents {
    background-image: url("https://v.fastcdn.co/u/eb3f4a6e/28424837-0-stripe-25c24d07821d3.png");
    background-color: rgba(0, 0, 0, 0);
    background-repeat: repeat;
    background-position: top left;
    background-size: auto;
    -webkit-background-size: auto;
    -moz-background-size: auto;
    -o-background-size: auto;
    width: 100%;
    border-width: 0;
    border-top-width: 0px;
    border-bottom-width: 0px;
    overflow: hidden;
    margin-bottom: 30px;
}

.inner_box h1 {
    font-size: 26px;
    text-align: center;
    color: #434343;
}

.column_list ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}

.column_list ul li {
    width: 400px;
    margin-bottom: 40px;
    line-height: 0
}

.column_list .column_img img {
    width: 100%;
    height: 195px;
    object-fit: cover;
}

.column_list .column_list_detail {
    height: 180px;
    background-color: #fff;
    padding: 10px;
    position: relative;
}

.column_list .column_list_detail a {
    display: block;
}

.column_list .column_desc {
    font-size: 18px;
    color: rgb(0, 0, 0);
    line-height: 32px;
    font-weight: bold;
}

.column_list .column_title {
    color: #9c9c9c;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
}

.column_list .column_desc:hover,
.column_list .column_title:hover {
    text-decoration: underline;
}

.column_list .column_date {
    position: absolute;
    bottom: 10px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    line-height: 28px;
}

.company_list ul li {
    width: 92%;
    margin: 0 auto;
    height: 115px;
    background-color: #fff;
    margin-bottom: 40px;
}

.company_list ul li .company_img {
    display: inline-block;
    width: 50%;
}

.company_list .company_img img {
    width: 430px;
    height: 115px;
    object-fit: contain;
}

.company_list ul li:last-child .company_img img {
    object-fit: cover;
}

.company_list .company_list_detail {
    display: inline-block;
    vertical-align: top;
    padding: 14px;
    position: inherit;
    z-index: 10;

}

.company_list_detail .company_name,
.company_list_detail .company_url {
    font-size: 18px;
    color: rgb(0, 0, 0);
    line-height: 30px;
    font-weight: bold;
}

.company_list_detail .company_title {
    font-size: 18px;
    color: rgb(0, 0, 0);
}

/* SP */
@media only screen and (max-width: 770px) {
    .inner_box {
        width: 95%;
    }

    .inner_box span {
        font-size: 12px;
    }

    .inner_box h1 {
        font-size: 20px;
    }

    .column_list ul li {
        width: 48%;
        margin-bottom: 20px;
    }

    .column_list .column_list_detail {
        height: 192px;
    }

    .column_list .column_img img {
        height: 95px;
    }

    .column_list .column_title{
        font-size: 13px;
        line-height: 18px;
    }

    .column_list .column_desc {
        font-size: 13px;
        line-height: 20px;
    }

    .column_list .column_date {
        font-size: 13px;
        bottom: 0;
    }

    .company_list ul li {
        width: 98%;
        margin-bottom: 20px;
        height: 74px;
        display: flex;
        justify-content: space-between;
    }

    .company_list .company_img img {
        width: 100%;
        height: 74px;
    }
    .company_list .company_list_detail {
        padding: 8px;
        width: calc(50% - 20px);
    }

    .company_list_detail .company_name{
        font-size: 13px;
        line-height: 18px;
    }

    .company_list_detail .company_title {
        font-size: 13px;
        word-wrap: break-word;
    }

    .company_list_detail .company_url {
        display: none;
    }

}