@charset "utf-8";
/* 会社概要
-------------------------------------------- */
.ceo-links{
    gap: 4.8rem;
    justify-content: center;
    margin-block: 3.6rem 7.2rem;
}
.table-style{
    border-collapse: separate;
}
.table-style th,
.table-style td{
}
.table-style tr{
    border-bottom: solid 0.1rem var(--gray-100);
    display: block;
}
.table-style th{
    padding: 1.2rem 1.2rem 1.2rem 0;
    color: var(--darkblue);
    width: 18rem;
}
.table-style td{
    padding: 1.2rem 0 1.2rem 1.2rem;
}

@media screen and (max-width: 768px) {
    .ceo-links{
        margin-top: 0;
    }
    .table-style th{
        padding-block:1.2rem 0.6rem;
    }
    .table-style td{
        padding-block:0 1.6rem;
    }
    .table-style th,
    .table-style td{
        width: 100%;
        padding-inline: 0;
        display: block;
    }
}
/* 沿革
-------------------------------------------- */
.company .history-items{
    max-width: 60rem;
    margin-inline: auto;
}
.company .history-items li{
    display: flex;
    position: relative;
    padding-left: clamp(2rem, 4vw, 10rem);
}
.company .history-items li:before{
    content: '';
    width: 1rem;
    height: 1rem;
    background-color: var(--blue);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 1rem;
}
.company .history-items li:not(:last-child):after{
    content: '';
    width: 0.1rem;
    height: calc(100% + 3.6rem);
    background-color: var(--blue);
    display: block;
    position: absolute;
    left: 0.45rem;
    top: 1rem;
}
.company .history-items li:not(:last-child){
    margin-bottom: 3.6rem;
}
.company .history-items li .year{
    color: var(--blue);
    font-size: 2rem;
    font-weight: bold;
    width: 10rem;
    line-height: 1.2;
    white-space: nowrap;
}
.company .history-items li .year:after{
    content: '年';
    font-size: 0.8em;
}
.company .history-items li .txt{
    width:calc(100% - 10rem);
}

/* お取り組み実績
-------------------------------------------- */
.cont-achv .card{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.cont-achv .cards{
    border-bottom: solid 0.1rem var(--gray-100);
    padding: 2rem 0 2rem 2rem;
    width: calc(50% - 2rem);
}
.cont-achv .cards:nth-child(even){
    margin-right: 0;
    margin-left: auto;
}
.cont-achv .cards .ttl{
    font-weight: bold;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    position: relative;
}
.cont-achv .cards .ttl:before{
    content: '';
    content: '';
    width: 1rem;
    height: 1rem;
    background-color: var(--blue);
    border-radius: 100%;
    position: absolute;
    left: -2rem;
    top: 0.8rem;
}
.cont-achv .cards .cat-txt{
    color: var(--gray-300);
    border: 0.1rem solid;
    font-size: 1.2rem;
    padding: .3rem 0.8rem 0.2rem;
    border-radius: 2rem;
}
.cont-achv .cards .cards-txt {
    margin-top: 1rem;
}
@media screen and (max-width: 768px) {
    .cont-achv .card{
        gap: 1rem;
    }
    .cont-achv .cards{
        width: 100%;
    }
}