.p-page-header__container {
    background-image: url(../images/service/service_header.jpg);
}

.p-content-section__grid--service {
    grid-template-columns: 42.1875% 1fr;
}

.p-service__title {
    text-align: center;
    position: relative;
}

.p-service__title::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 303px;
    aspect-ratio: 17/7;
    background-image: url(../images/service/service_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: -82px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.p-strength__title {
    text-align: center;
    position: relative;
}

.p-strength__title::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 502px;
    aspect-ratio: 28/10;
    background-image: url(../images/service/strength_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -82px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.p-strength-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3.125%;
}

.p-strength-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-strength-card__text {
    height: 100%;
    margin-top: -64px;
    padding: 32px;
    padding-top: 80px;
    border-radius: 40px;
    background-color: var(--dark-blue);
    color: var(--white);
}

.p-strength-card__title {
    font-size: 1.5vw;
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: center;
}

.p-strength-card__text .c-section-text {
    color: var(--white);
}

.p-strength-card__image {
    width: calc(100% - 40px);
    max-width: 360px;
    border-radius: 50%;
    border: 1px solid var(--gray);
    position: relative;
    z-index: 2;
}

.p-section__archivement {
   padding: 0;
   border-radius: 40px;
   overflow: hidden;
}

.p-container__archivement {
   display: flex;
   flex-direction: column;
   gap: 64px;
   width: 100%; 
}

.p-archivement__title {
    position: relative;
}

.p-archivement__title::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 583px;
    aspect-ratio: 24/5;
    background-image: url(../images/service/archivement_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.p-section-content__archivement-text {
    padding: 0 320px;
    order: 1;
    text-align: center;
}

.p-section-content__archivement-text .l-content-section__text {
    width: 100%;
    max-width: 1280px;
}

.p-archivement__text-large {
    font-size: 1.25rem;
    font-weight: bold;
}

.p-archivement__slide {
    display: flex;
    min-width: 100%;
    width: min-content;
    overflow: hidden;
}

.p-archivement__slide--01 {
    animation: 40s linear infinite sliderAnimation;
    order: 0;
}

.p-archivement__slide--02 {
    animation: 40s linear infinite sliderAnimation--02;
    transform: translateX(-50%);
    order: 2;
}

.p-archivement__slide-item {
    width: 33dvw;
}

@keyframes sliderAnimation {
    100% {
        transform: translateX(-50%);
    }
}

@keyframes sliderAnimation--02 {
    100% {
        transform: translateX(0);
    }
}

@media screen and (max-width: 1800px) {.p-section-content__archivement-text {
        padding-right: 16px;
    }
}

@media screen and (max-width: 1080px) {
    .p-strength-card__title {
        font-size: 2.1vw;
    }
    
    .p-strength-card__text {
        border-radius: 24px;
    }

    .p-section-content__archivement-text {
        padding: 0 32px;
    }

    .p-section__archivement {
        border-radius: 24px;
    }
}

@media screen and (max-width: 768px) {
    .p-content-section__grid--service {
        grid-template-columns: 1fr;
    }

    .p-service__title::before {
        height: 18.5vw;
        bottom: -10vw;
    }

    .p-strength__title::before {
        bottom: -10vw;
    }

    .p-strength-grid {
        margin-top: 24px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p-strength-card__title {
        font-size: 1.5rem;
    }
    
    .p-strength-card__image {
        max-width: 180px;
    }
    
    .p-container__archivement {
        gap: 40px;
    }

    .p-section-content__archivement-text {
        padding: 0 16px;
    }

    .p-archivement__title::before {
        bottom: -9vw;
    }

    .p-archivement__text-large {
        font-size: 1rem;
    }
    
    .p-section-content__archivement-text .c-section-text {
        text-align: left;
    }

    .p-archivement__slide-item {
        width: 50dvw;
    }
}