/* cSpell:ignore fullwidth */
/* 私たちについて - 基本スタイル */

.about {
    padding: 0 0 64px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.about-fullwidth {
    width: 100%;
    background: transparent;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-fullwidth::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 48px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-text {
    color: var(--gray-600);
    line-height: 1.8;
}

