@charset "UTF-8";

.hero_single {
    background: url(/img/company/bg-hero_single.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* greeting */

.greeting_cnt {
    display: flex;
    gap: 100px;
}

.greeting_cnt .greeting_cnt_row:first-child {
    width: 100%;
    max-width: 660px;
}

.greeting_ttl {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 23px;
}

.greeting_txt {
    line-height: 30px;
}

.name span {
    font-size: 24px;
    font-weight: bold;
    margin-left: 1em;
}

.greeting_cnt_row img {
    margin-bottom: 15px;
}

.name {
    text-align: right;
}


/* concept */

.concept {
    margin-bottom: 100px;
}

.concept_list li {
    position: relative;
    padding: 10px 0 10px 60px;
    font-size: 24px;
}

.concept_list li::before {
    position: absolute;
    left: 0;
    transform: translateY(50%);
    bottom: 50%;
}

.concept_list li:first-child::before {
    content: '';
    width: 50px;
    height: 50px;
    background: url(/img/company/img-number_concept01.png);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Ubuntu', sans-serif;
}
.concept_list li:last-child::before {
    content: '';
    width: 50px;
    height: 50px;
    background: url(/img/company/img-number_concept02.png);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Ubuntu', sans-serif;
}


/* about */

.about_cnt {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
}

.about_cnt tbody {
    width: 48%;
}

.about_cnt tbody tr {
    border-bottom: solid 1px #000;
    position: relative;
    width: 100%;
}

.about_cnt tbody tr::before {
    content: '';
    width: 120px;
    height: 2px;
    background: #0097BA;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.about_cnt tbody tr th {
    color: #0097BA;
    width: 140px;
}

.about_cnt tbody tr td {
    width: 76%;
}

.about_cnt tbody tr th,
.about_cnt tbody tr td {
    padding: 15px 10px;
}

.about_img {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.map iframe {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    border: solid 1px #B7B7B7 !important;
}

/* history */

.history {
    margin-top: 100px;
}

.history_table {
    margin-left: 30px;
    position: relative;
}

.history_table::before {
    content: '';
    width: 5px;
    height: 90%;
    background: #DBDBDB;
    position: absolute;
    top: 40px;
    left: -30px;
}

.history_table tbody tr {
    padding: 23px 0;
    position: relative;
}

.history_table tbody tr::before {
    content: '';
    width: 15px;
    height: 15px;
    background: #fff;
    border: solid 3px #0097BA;
    position: absolute;
    left: -35px;
    top: 26px;
    border-radius: 40px;
}

.history_table tbody tr th {
    color: #0097BA;
    padding: 20px 20px 20px 0;
}

.history_table tbody tr td {
    padding: 20px 0;
}


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

    .hero_single {
        background: url(/img/company/bg-hero_single_sp.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* greeting */

    .greeting {
        padding-top: 95px;
        margin-top: -60px;
    }

    .greeting_img {
        text-align: center;
    }

    .greeting_img img {
        width: 80%;
    }
    
    .greeting_cnt {
        flex-flow: column-reverse;
        gap: 40px;
    }

    .greeting_ttl {
        font-size: 20px;
    }

    .name span {
        font-size: 20px;
    }


    /* concept */

    .concept {
        margin-bottom: 30px;
    }

    .concept_list li {
        font-size: 20px;
        padding-left: 50px;
    }

    .concept_list li:first-child::before,
    .concept_list li:last-child::before {
        width: 37px;
        height: 37px;
        bottom: unset;
        top: -10px;
    }
    


    /* about */

    .about_cnt {
        flex-flow: column;
        gap: 0;
        margin-bottom: 40px;
    }

    .about_img {
        flex-flow: column;
        gap: 20px;
    }
    
    .about_cnt tbody {
        width: 100%;
    }

    .about_cnt tbody tr td {
        width: unset;
    }

    .about_cnt tbody tr::before {
        content: none;
    }

    .map iframe {
        height: 237px;
    }

    /* history */

    .history {
        margin-top: 30px;
    }

    .history_table tbody tr {
        display: flex;
        flex-flow: column;
        width: 100%;
        padding: 10px 0;
    }

    .history_table tbody tr th {
        padding: 0;
    }

    .history_table tbody tr td {
        padding: 5px 0;
    }

    .history_table tbody tr::before {
        top: 20px;
    }

    .history_table::before {
        top: 20px;
        height: 91%;
    }
    
}