/*==================================================
sub about
===================================*/
.subAbout {
    padding-top: 5rem;
}

.subAbout_bg {
    background-color: #FFFCF0;
}

.subAbout__inner {
    display: grid;
    align-items: center;
}

.subAbout__title {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.5;
}

.subAbout__title::before {
    position: absolute;
    transform: translateY(-50%);
    top: calc(50% + 2px);
    left: 0;
    width: 0.2rem;
    height: calc(100% - 10px);
    background: #FF8612;
    content: "";
}

.subAbout__title::after {
    position: absolute;
    bottom: -2.5rem;
    left: 0;
    width: 6rem;
    height: 1px;
    background: #000;
    content: "";
}

.subAbout_text {
    margin-top: 4rem;
    color: #3F3F3F;
    font-size: 1.4rem;
    line-height: 1.8;

}

.subAbout_text--center {
    margin-top: 2rem;
    text-align: center;
    letter-spacing: 0.12rem;
    line-height: 3.2rem;
}

.subAbout__image {
    width: 60%;
    height: auto;
    margin: 2rem auto 0;
}

.subAbout__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .subAbout__inner {
        grid-template-columns: 1fr 32.7102803738%;
        max-width: 856px;
        margin-inline: auto;
        gap: 5rem;
    }

    .subAbout__title {
        margin-bottom: 6.5rem;
        font-size: 2.4rem;
        letter-spacing: 0.18rem;
    }

    .subAbout__title::after {
        bottom: -3.5rem;
    }

    .subAbout__text {
        line-height: 2.1428571429;
    }

    .subAbout_text--center {
        margin-top: 4rem;
    }

    .subAbout__image {
        width: 29rem;
        height: initial;
        margin-top: initial;
    }
}

.subAbout_service {
    padding-bottom: 5rem;
}

/*==================================================
sub about END
===================================*/