/* 用途: 会社概要ページ（#company） */
#company {
    line-height: 1.5;
}

#company .center {
    text-align: center;
}

#company .youtube {
    display: inline-block;
    width: 70%;
}

#company .adjustment {
    margin-left: 12.5%;
}

#company .tab {
    display: flex;
    width: 100%;
}

#company .tab li {
    width: 35%;
    height: 70px;
    border-right: 1px solid #e1e1e1;
    background-color: #0130a8;
    color: #ffffff;
    line-height: 70px;
    text-align: center;
}

#company .tab li:last-child {
    background-color: #d9d9d9;
    color: #565656;
}

#company .tab a {
    font-size: 2.4rem;
}

#company .tabs {
    margin: 0 auto;
    margin-top: 50px;
    background-color: #ffffff;
}

#company .tab_item {
    display: block;
    float: left;
    width: calc(70%/2);
    height: 70px;
    margin-bottom: 50px;
    background-color: #d9d9d9;
    color: #565656;
    font-size: 2.4rem;
    line-height: 70px;
    text-align: center;
    transition: all .2s ease;
}

#company .tab_item:hover {
    opacity: .7;
}

#company input[name="tab_item"] {
    display: none;
}

#company .tab_content {
    display: none;
    clear: both;
    overflow: hidden;
}

#info:checked ~ #info_content, #history:checked ~ #history_content {
    display: block;
}

#company .tabs input:checked + .tab_item {
    opacity: 1;
    background-color: #0130a8;
    color: #ffffff;
}

#company h3 {
    padding: 10px 0 10px 30px;
}

#company table {
    width: 100vw;
    margin: 0 40px;
}

#company tr {
    border-bottom: 1px solid #0130a8;
}

#company tr:last-child {
    border-bottom: none;
}

#company td {
    padding: 30px 0;
}


#company .tit {
    width: 10%;
    color: #0130a8;
    font-weight: bold;
}

#company .bold {
    margin-bottom: 10px;
    font-weight: bold;
}

#company .address-inner {
    margin-left: 3rem;
}

#company .gmap {
    display: inline;
    color: #ea4335;
    font-weight: bold;
}

#company .gmap:hover {
    opacity: .7;
}

#company .gmap a {
    display: inline-flex;
    align-items: center;
}

#company .map-pin {
    width: 15px;
    margin-left: 5px;
}


@media (max-width: 820px) {
    #company .youtube {
        display: inline-block;
        width: 90%;
    }

    #company .adjustment {
        margin-left: 30px;
    }

    #company .tab_item {
        width: calc(70%/2);
        height: 50px;
        color: #565656;
        line-height: 50px;
    }

    #company .tabs input:checked + .tab_item {
        width: 45%;
        height: 50px;
        line-height: 50px;
    }

    #company .tabs label {
        font-size: 2rem;
    }

    #company table {
        width: 85%;
        margin: 0 0 0 30px;
    }

    #company tr {
        display: flex;
        flex-direction: column;
    }

    #company .tit {
        width: 35%;
        padding: 20px 0 10px 0;
    }

    #company td {
        padding: 0;
    }

    #company .text {
        padding: 0 0 20px 0;
    }
}

