@charset "UTF-8";

.company_list {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 150px;
}

.company_list .layout {
    margin-bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company_list .layout .item:nth-of-type(1) {
    flex-basis: 46%;
}

.company_list .layout .item:nth-of-type(1) img {
    border-radius: 50px 0 50px 0;
}

.company_list .layout .item:nth-of-type(2) {
    flex-basis: 43%;
    text-align: left;
}

.company_list .layout .item:nth-of-type(2) p {
    font-size: 16px;
    line-height: 2em;
    margin-bottom: 30px;
}

.company_list .layout .item:nth-of-type(2) p.title {
    font-size: 40px;
    line-height: 1em;
    margin-bottom: 30px;
}

.company_links .title {
    font-size: 20px;
}

.company_links ul {
    padding-top: 30px;
    padding-bottom: 180px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -2.3%;
}

.company_links ul li {
    flex-basis: 31%;
    margin-left: 2.3%;
}

.company_links ul li a {
    display: block;
    color: #000;
    border-bottom: 2px solid #ddd;
    padding-bottom: 20px;
    position: relative;
}

/* .company_links ul li a.active {
    border-bottom: 2px solid #0F9A27;
} */

.company_links ul li a:hover,
.company_links ul li a:hover img {
    opacity: 1;
}

.company_links ul li a:hover {
    border-bottom: 2px solid #0F9A27;
}

.company_links ul li a .img {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 66.5753%;
    overflow: hidden;
    margin-bottom: 20px;
    transition: 0.5s;
}

.company_links ul li a .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform: scale(1); */
    transition: 0.5s;
}

.company_links ul li a:hover .img {
    border-radius: 50px 0 50px 0;
}

.company_links ul li a:hover .img img {
    /* transform: scale(1.05); */
    transition: 0.5s;
}

@media screen and (max-width: 768px) {
    .company_list {
        padding-top: 50px;
    }

    .company_list .layout {
        margin-bottom: 80px;
        padding: 0 10px;
        display: block;
    }

    .company_list .layout .item:nth-of-type(1) {
        margin-bottom: 25px;
    }

    .company_list .layout .item:nth-of-type(2) {
        text-align: center;
    }

    .company_list .layout .item:nth-of-type(2) p {
        font-size: 14px;
        line-height: 2em;
        margin-bottom: 30px;
    }

    .company_list .layout .item:nth-of-type(2) p.title {
        font-size: 24px;
        line-height: 1em;
        margin-bottom: 20px;
    }

    .company_links .title {
        font-size: 20px;
    }

    .company_links ul {
        padding-top: 30px;
        padding-bottom: 80px;
        display: block;
        margin-left: 0;
    }

    .company_links ul li {
        display: block;
        margin-left: 0;
        margin-bottom: 30px;
    }

}


/* message */
#message .layout {
    padding-top: 120px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

#message .layout .item:nth-of-type(1) {
    flex-basis: 40%;
}

#message .layout .item:nth-of-type(1)>img {
    border-radius: 50px 0 50px 0;
    margin-bottom: 20px;
}

#message .layout .item:nth-of-type(1) p.sign {
    font-size: 20px;
}

#message .layout .item:nth-of-type(1) p.sign span {
    font-size: 16px;
    display: inline-block;
    margin-right: 10px;
}

#message .layout .item:nth-of-type(2) {
    flex-basis: 51%;
}

#message .layout .item:nth-of-type(2) p {
    font-size: 16px;
    line-height: 1.8em;
    margin-bottom: 80px;
}

#message .layout .item:nth-of-type(2) p.title {
    font-size: 32px;
    line-height: 1.5em;
    color: #0F9A27;
    margin-bottom: 30px;
}

#message .devide_img {
    display: block;
    margin-bottom: 150px;
}

#message .devide_img img {
    border-radius: 50px 0 50px 0;
}

@media screen and (max-width: 768px) {
    #message .layout {
        padding-top: 60px;
        padding-bottom: 20px;
        display: block;
    }

    #message .layout .item:nth-of-type(1) {
        margin-bottom: 40px;
    }

    #message .layout .item:nth-of-type(2) p {
        font-size: 14px;
        margin-bottom: 60px;
    }

    #message .layout .item:nth-of-type(2) p.title {
        font-size: 24px;
        line-height: 1.8em;
        margin-bottom: 20px;
    }

    #message .devide_img {
        display: block;
        margin-bottom: 80px;
    }

}


/* overview */

#overview .layout {
    padding: 120px 0;
    display: flex;
    justify-content: space-between;
}

#overview .layout .item:nth-of-type(1) {
    flex-basis: 25%;
}

#overview .layout .item:nth-of-type(1) p {
    border-left: 5px solid #0F9A27;
    padding-left: 15px;
    font-size: 24px;
    line-height: 1em;
}

#overview .layout .item:nth-of-type(2) {
    flex-basis: 75%;
}

#overview .layout .item:nth-of-type(2) .now {
    display: block;
    text-align: right;
    font-size: 12px;
    padding-top: 30px;

}

.overview_table {
    width: 100%;
    border-collapse: collapse;
}

.overview_table tr {
    border-bottom: 1px solid #ddd;
}

.overview_table tr th,
.overview_table tr td {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.8em;
}

.overview_table tr th {
    white-space: nowrap;
}

#overview .devide_img img {
    border-radius: 50px 0 50px 0;
}

#overview .layout p.read {
    font-size: 18px;
    line-height: 2em;
    margin-bottom: 40px;
}

#overview .timeline li {
    display: flex;
    justify-content: space-between;
}

#overview .timeline li .year {
    width: 12%;
    text-align: left;
    font-size: 18px;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

#overview .timeline li .year::after {
    content: "●";
    color: #0F9A27;
    position: absolute;
    top: 25px;
    right: -8px;
    font-size: 15px;
    line-height: 1em;
}

#overview .timeline li .event {
    width: 88%;
    text-align: left;
    border-left: 1px solid #f4f4f4;
    position: relative;
    padding: 10px 0;
    z-index: 1;
}

#overview .timeline li:nth-of-type(1) .event::before {
    content: "";
    width: 10px;
    height: 30px;
    background: #fff;
    position: absolute;
    top: 0;
    left: -5px;
}

#overview .timeline li:nth-last-of-type(1) .event::before {
    content: "";
    width: 10px;
    height: 30px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: -5px;
}

#overview .timeline li .event span {
    margin-left: 5%;
    display: inline-block;
    background: #f4f4f4;
    padding: 10px 20px;
}


@media screen and (max-width: 768px) {
    #overview .layout {
        padding: 60px 0;
        display: block;
    }

    #overview .layout .item:nth-of-type(1) {
        margin-bottom: 30px;
    }

    #overview .layout .item:nth-of-type(1) p {
        border-left: 5px solid #0F9A27;
        padding-left: 15px;
        font-size: 24px;
        line-height: 1em;
    }

    .overview_table {
        width: 100%;
        border-collapse: collapse;
    }

    .overview_table tr {
        border-bottom: 0;
    }

    .overview_table tr th,
    .overview_table tr td {
        display: block;
        padding: 10px 20px;
        font-size: 16px;
        line-height: 1.8em;
    }

    .overview_table tr th {
        white-space: auto;
        background: #eee;
    }

    #overview .layout p.read {
        font-size: 16px;
    }


    #overview .timeline li .year {
        width: 70px;
        text-align: left;
        font-size: 14px;
        position: relative;
        z-index: 2;
        padding: 20px 0;
    }

    #overview .timeline li .event {
        width: calc(100% - 70px);
        text-align: left;
        border-left: 1px solid #f4f4f4;
        position: relative;
        padding: 10px 0;
        z-index: 1;
    }

    #overview .timeline li .event span {
        margin-left: 15px;
    }


}


/* data */
.data_intro {
    padding: 120px 0;
}

.data_intro p {
    text-align: center;
    font-size: 16px;
    line-height: 1.8em;
}

.data_intro p.title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .data_intro {
        padding: 60px 0;
    }

    .data_intro p {
        text-align: left;
        font-size: 14px;
        line-height: 1.8em;
    }

    .data_intro p.title {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

#data .secTitle {
    font-size: 22px;
    font-weight: 500;
    border: solid 1px #929292;
    border-radius: 10px;
    line-height: 1;
    padding: 18px 0;
    margin-bottom: 20px;
}

#data .companyData {
    margin-bottom: 100px;
    position: relative;
}

#data .companyData:before {
    content: "";
    background-image: url(../../data/img/bgObj01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 200%;
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

#data .staffData {
    position: relative;
    margin-bottom: 200px;
}

#data .staffData:before,
#data .staffData:after {
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 55%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

#data .staffData:before {
    background-image: url(../../data/img/bgObj02.png);
    top: 80px;
}

#data .staffData:after {
    background-image: url(../../data/img/bgObj01.png);
    bottom: -80px;
}

#data .staffData p.txtcenter {
    margin-top: 30px;
}

#data .inner .flex {
    margin-right: -20px;
}

#data .inner .flex .item {
    padding-right: 20px;
    margin-bottom: 20px;
    width: 100%;
}

#data .inner .flex .item.col2 {
    width: 50%;
}

#data .inner .flex .item.col3 {
    width: 33.3333%;
}

#data .inner .flex .item.col3.wide {
    width: 66.6666%;
}

#data .inner .flex .column .item:last-child {
    margin-bottom: 0;
}

#data .inner .flex .item .bgGreen {
    background-color: #F7FAF7;
    padding: 40px 30px 40px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

#data .inner .flex .item .bgGreen .title {
    font-size: 16px;
    text-decoration: underline;
    margin-bottom: 30px;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

#data .inner .flex .item .bgGreen .text {
    font-size: 18px;
    line-height: 200%;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

#data .inner .flex .item .bgGreen .img {
    margin: 0 auto;
}


/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
    #data .companyData {
        margin-bottom: 40px;
    }

    #data .staffData {
        margin-bottom: 80px;
    }

    #data .inner .flex .item .bgGreen .text {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {

    #data .inner .flex .item.col3,
    #data .inner .flex .item.col3.wide,
    #data .inner .flex .item.col2 {
        width: 100%;
    }
}