/* 全セクションの基本レイアウト */
.section {
    padding: 100px 0;
    width: 100%;
}

/* 白背景 */
.section-white {
    background: #ffffff;
}

/* グレー背景（Appleっぽい） */
.section-gray {
    background: #f5f5f7;
}

/* セクション見出し（中央） */
.section-heading {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

/* ============================
   BLOCK 共通
============================ */
.ps-block {
    width: 100%;
    padding: 80px 0;
}

.ps-block-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.ps-block-card {
    text-align: center;
}

.ps-block-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.ps-block-card p {
    font-size: 15px;
    font-weight: 500;
}


/* ============================
   PC：グリッド表示
============================ */
.ps-block-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ps-block-slider {
    display: none;
}


/* ============================
   SP：スライダー表示
============================ */
@media (max-width: 768px) {

    .ps-block-grid {
        display: none;
    }

    .ps-block-slider {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-left: 20px;
        scroll-snap-type: x mandatory;
    }

    .ps-block-slider::-webkit-scrollbar {
        display: none;
    }

    .ps-block-card {
        flex: 0 0 65%;
        scroll-snap-align: start;
    }
}
