@charset "UTF-8";
/* about-introduction */
.about-introduction {
    color: var(--color-white-primary);
}
.about-introduction__title {
    width: var(--content-width);
    max-width: 920px;
    line-height: 1.625;
    text-align: center;
    font-size: 4.0rem;
    margin: 0 auto 40px;
    word-break: keep-all;
    font-weight: 500;
    --letter-spacing:0.05em;
}
.about-introduction__body-text {
    width: var(--content-width-narrow);
    margin: 0 auto;
    line-height: 2;
    font-weight: 500;
}
.about-introduction__image {
    width: var(--content-width);
    max-width: 1000px;
    padding: 30px 48px;
    margin: 0 auto;
    border-radius: 16px;
    background: var(--color-white-primary);
    overflow: hidden;
}
.about-introduction__image img {
    max-width: 580px;
    margin: 0 auto;
}
@media screen and (max-width:800px) {
    .about-introduction__title {
        font-size: 3.0rem;
        text-align: left;
        word-break: inherit;
    }
    .about-introduction__title .break-pc {
        display: none;
    }
    .about-introduction__image {
        width: 100%;
        padding: 20px 30px;
        border-radius: 0;
    }
}

/* equipment-features */
.equipment-features {
    display: flex;
    align-items: center;
    gap: 48px;
}
.equipment-features__figure {
    width: 40%;
    margin: 0 auto;
}
.equipment-features__picture {
    width: 50%;
}
@media screen and (max-width:800px) {
    .equipment-features {
        flex-direction: column;
    }
    .equipment-features__figure {
        width: 100%;
    }
    .equipment-features__picture {
        width: 100%;
    }
}

.equipment-images {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 48px;
}
.equipment-images__image {
    overflow: hidden;
    border-radius: 16px;
}
@media screen and (max-width:800px) {
    .equipment-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}