/*==================================================
page for company 
===================================*/
/* --------- p_company --------- */
.p_company {
    padding: 3rem 0 7rem;
}

.p_company .section__jp {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p_company .section__jp span::before {
        display: none;
    }
    
    .p_company .section__jp span::after {
        display: none;
    }
}

.p_company__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {
    .p_company__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
}

.p_company__list_item {
    border: solid 8px #D1F0E7;
    display: table;
}

.p_company__list_label {
    background-color: #00BC8B;
    color: #fff;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
}

.p_company__list_text_box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 145px;
    padding: 1.5rem 1rem;
}

@media screen and (max-width: 767px) {
    .p_company__list_text_box {
        height: 100px;
    }
}

.p_company__list_text {
    font-weight: 600;
    text-align: center;
}

/* --------- p_service --------- */
.p_service01 {
    padding-bottom: 7rem;
}

@media screen and (max-width: 767px) {
    .p_service01 {
        padding-bottom: 4rem;
    }
}

.p_service02 {
    padding: 7rem 0;
    background-color: #F7F7F7;
}

@media screen and (max-width: 767px) {
    .p_service02 {
        padding: 4rem 0;
    }
}

.p_service__title {
    position: relative;
    margin-bottom: 3rem;
}

.p_service__title span {
    font-size: 2.4rem;
    font-weight: 500;
    color: #fff;
    background-color: #000;
    text-align: center;
    width: fit-content;
    padding: 0 5rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: block;
    line-height: 45px;
}

@media screen and (max-width: 767px) {
    .p_service__title span {
        font-size: 2rem;
        padding: 0 3rem;
    }
}

.p_service01 .p_service__title::before,
.p_service02 .p_service__title::before {
    width: fit-content;
    position: absolute;
    z-index: 1;
    top: calc(50% - 5px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 8rem;
    letter-spacing: 1rem;
}

@media screen and (max-width: 767px) {
    .p_service01 .p_service__title::before,
    .p_service02 .p_service__title::before  {
        font-size: 5.5rem;
        text-align: center;
        width: 100%;
        letter-spacing: 0.6rem;
    }
}

.p_service01 .p_service__title::before {
    content: 'SERVICE 01';
    color: #EFF9F3;
}

.p_service02 .p_service__title::before {
    content: 'SERVICE 02';
    color: #fff;
}

.p_service__text {
    font-size: 1.4rem;
    letter-spacing: 0.06rem;
    margin-bottom: 4rem;
    line-height: 3rem;
}

@media screen and (max-width: 767px) {
    .p_service__text {
        margin-bottom: 2rem;
    }
}

.p_service__text.center {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p_service__text.center {
        text-align: left;
    }
}

.p_service__images {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
    .p_service__images {
        margin-bottom: 2rem;
    }
}

.p_service__image {
    width: calc(50% - 24px);
}

@media screen and (max-width: 767px) {
    .p_service__image {
        width: calc(50% - 5px);
    }
}

.p_service__lead {
    font-size: 2.4rem;
    font-weight: 600;
    color: #00BC8B;
    margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
    .p_service__lead {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/*==================================================
page for company END
===================================*/