.service-section{
    margin: 0 auto;
    text-align: center;
    position: relative;
    background: none;
}

.service-section .main-title{
    font-size: 24px;
}
.service-section .description{
    font-size: 16px;
    margin: 20px 0 110px 0;
}

.service-point-row {
    width: calc(50vw + 450px);
    min-height: 320px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    justify-content: flex-start;
}

.point-image {
    width: 100%;
    height: 220px;
    min-width: 360px;
    background: url('../images/service-bg.png') center/cover, linear-gradient(0deg, rgba(217,217,217,1) 0%, rgba(217,217,217,1) 100%);
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

@media (min-width: 769px) {
    .service-point-row:nth-child(even) {
        margin-left: auto;
        margin-right: 0;
    }

    .service-point-row:nth-child(odd) {
        margin-right: auto;
        margin-left: 0;
    }
    .service-point-row:nth-child(odd) .point-image .point-text{
        right: -25px;
        left: unset;
    }
    .service-point-row:nth-child(odd) .point-card{
        left: unset;
        right: 420px;
    }
}

.point-text {
    width: fit-content;
    height: fit-content;
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 0;
    font-family: 'Futura-Medium', sans-serif;
    font-size: 44px;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 3.6px;
    line-height: 1;
    transform: rotate(90deg);
    user-select: none;
    pointer-events: none;
    margin: auto;
}


.point-card {
    width: 480px;
    max-width: 94vw;
    padding: 30px;
    background: white;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.50);
    position: absolute;
    top: -46px;
    text-align: left;
    z-index: 2;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    left: 420px;
    right: unset;
}

.point-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 0.02em;
}

.point-card p {
    font-size: 16px;
    color: #222;
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .service-section{
        padding: 0px;
    }
    .service-section .main-title{
        font-size: 1.1em;
    }
    .service-section .description{
        font-size: 1em;
        margin: 40px auto;
        width: 90%;
    }

    .point-text {
        width: fit-content;
        height: fit-content;
        position: absolute;
        left: 12px;
        top: 12px;
        bottom: auto;
        font-family: 'Futura-Medium', sans-serif;
        font-size: 36px;
        color: rgba(255, 255, 255, 0.48);
        letter-spacing: 3.6px;
        line-height: 1;
        transform: rotate(0deg);
        user-select: none;
        pointer-events: none;
        margin: auto;
    }


    .service-point-row{
        width: 90vw;
        margin: 0px auto;
        flex-direction: column;      /* ← 追加 */
        align-items: stretch;        /* 幅いっぱいに */
        min-height: 0;               /* ← 固定高さを解除 */
    }

    /* 画像ブロック。比率を保ちたい場合は aspect-ratio を推奨 */
    .point-image{
        width: 100%;
        height: 139px;
        margin-top: 0;
    }

    /* カードを通常フローの要素に戻す */
    .point-card{
        position: relative;          /* ← absolute をやめる */
        left: 0;                     /* 余計な座標指定をクリア */
        top: -80px;                  /* 画像に少しかぶせる (好みで微調整) */
        margin: 0 12px;              /* 左右に余白 */
        width: auto;                 /* 90vw 指定は不要 */
        max-width: 90vw;
    }
}