/* 対応エリアセクション */
.top-service-area {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 64px 0;
    background-color: transparent;
    position: relative;
    scroll-margin-top: 72px;
}

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

.top-service-area-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.top-service-area-map {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--gray-100);
}

.top-service-area-map-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.top-service-area-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 24px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.top-service-area-line {
    display: block;
    width: 100%;
    text-align: center;
}

.top-service-area-text span {
    display: inline;
}

.top-service-area-separator {
    margin: 0 12px;
    color: var(--gray-400);
    font-weight: 400;
}

.top-service-area-note {
    font-size: 14px;
    color: var(--gray-600);
    font-style: italic;
    margin: 0;
}

