.p-front-about {
    padding-block: var(--section-space);
    background-color: var(--color-main-light);
}

.p-front-about__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64.0px;
    align-items: center;
}

.p-front-about__image {
    position: relative;
    border-radius: 16.0px;
    overflow: hidden;
    box-shadow: 0.0 20.0px 40.0px rgba(0, 0, 0, 0.10);
}

.p-front-about__image img {
    width: 100.0%;
    height: auto;
    display: block;
}

.p-front-about__experience {
    position: absolute;
    bottom: 32.0px;
    right: 32.0px;
    background-color: var(--color-main);
    color: #ffffff;
    padding: 24.0px;
    border-radius: 50.0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140.0px;
    height: 140.0px;
    text-align: center;
    box-shadow: 0.0 10.0px 20.0px rgba(255, 147, 72, 0.30);
}

.p-front-about__experience-num {
    font-size: 40.0px;
    font-weight: 700;
    line-height: 1.0;
}

.p-front-about__experience-unit {
    font-size: 12.0px;
    font-weight: 600;
}

.p-front-about__content {
    display: flex;
    flex-direction: column;
}

.p-front-about__title {
    margin-bottom: 32.0px;
}

.p-front-about__title-sub {
    display: block;
    font-size: 14.0px;
    font-weight: 700;
    color: var(--color-main);
    letter-spacing: 0.1em;
    margin-bottom: 8.0px;
}

.p-front-about__title-main {
    display: block;
    font-size: clamp(24.0px, 3.0vw, 36.0px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-main);
}

.p-front-about__text {
    font-size: 16.0px;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 32.0px;
}

.p-front-about__features {
    display: grid;
    grid-template-columns: 1.0fr 1.0fr;
    gap: 24.0px;
    margin-bottom: 40.0px;
}

.p-front-about__feature-item {
    background-color: #ffffff;
    padding: 16.0px;
    border-radius: 8.0px;
}

.p-front-about__feature-label {
    display: block;
    font-size: 13.0px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 4.0px;
}

.p-front-about__feature-text {
    font-size: 14.0px;
    font-weight: 600;
    line-height: 1.4;
}

.p-front-about__action .c-button {
    min-width: 200.0px;
}

@media screen and (max-width: 1024.0px) {
    .p-front-about__container {
        grid-template-columns: 1.0fr;
        gap: 40.0px;
    }

    .p-front-about__image {
        order: 2.0;
    }

    .p-front-about__content {
        order: 1.0;
    }
}

@media screen and (max-width: 767.0px) {
    .p-front-about__features {
        grid-template-columns: 1.0fr;
        gap: 16.0px;
    }

    .p-front-about__experience {
        width: 100.0px;
        height: 100.0px;
        bottom: 16.0px;
        right: 16.0px;
        padding: 12.0px;
    }

    .p-front-about__experience-num {
        font-size: 28.0px;
    }
}