@charset "UTF-8";

#company .hero_visual {
    background-image: url(../images/company/company_title.jpg);
    background-image: image-set(url(../images/company/company_title.webp) type("image/webp"),
            url(../images/company/company_title.jpg) type("image/jpeg"));
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
    height: 400px;
    max-width: initial;
    object-position: center;
    width: 68vw;
}


@media screen and (max-width: 767px) {

    #company .hero_visual {
        background-image: url(../images/company/company_title_sp.jpg);
        background-image: image-set(url(../images/company/company_title_sp.webp) type("image/webp"),
                url(../images/company/company_title_sp.jpg) type("image/jpeg"));
        background-size: cover;
        background-position: center;
        position: relative;
        background-repeat: no-repeat;
        height: 180px;
        max-width: initial;
        object-position: center;
        width: 100%;
    }

}


.info_row {
    display: flex;
    border-bottom: 1px solid var(--gray02);
}

.info_row:first-child {
    border-top: 1px solid var(--gray02);
}

.info_row dt {
    flex: 0 1 160px;
    padding-right: 20px;
    font-weight: 500;
    color: var(--gray01);
    background: var(--gray03);
    padding: 30px 0 30px 20px;
}

.info_row dd {
    flex: 1;
    vertical-align: middle;
    padding-left: 25px;
    padding: 30px 0 30px 20px;
}

.info_row dd ul {
    list-style: none;

}

.info_table {
    background: #fff;
}

.info_row_nest dt {
    counter-increment: title;
}

.info_row_nest dt::before {
    content: counter(title)".";
}

.info_row_nest dd {
    padding-left: 1em;
}

.info_row h3 {
    font-weight: 500;
}

.info_row p {
    font-weight: 400;
    line-height: 1.7;
}

.trademark_notice {
    padding-top: 25px;
    font-size: 1.2rem;
    list-style: none;
}


@media screen and (max-width: 767px) {
    .info_row {
        display: block;
        border: 0;
        padding: 0;
    }

    .info_row:first-child {
        border: 0;
    }

    .info_row:last-child {
        border-bottom: 1px solid var(--gray02);
        padding-bottom: 15px;
    }

    .info_row > dt {
        background: var(--white);
        padding-left: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .info_row > dd {
        padding-left: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .info_row_nest dt {
        background: #fff;
    }

}
