.welfare-page {
    padding: 60px 20px;
}

.welfare-container {
    max-width: 1100px;
    margin: auto;
}

.welfare-title {
    text-align: center;
}

.welfare-title h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.welfare-title h1::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #ff4a4a;
}

.welfare-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    margin: 20px 0;
}

.section-head img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.welfare-lead {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.welfare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.welfare-img-wrap {
    position: relative;
}

.img-icon-box {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.img-icon-box img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

.welfare-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.welfare-img-wrap>img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.welfare-title-row {
    display: flex;
    align-items: center;
}

.title-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    margin-left: 10px;
}

.welfare-body {
    padding: 16px;
}

.welfare-body h3 {
    font-size: 18px;
    margin-bottom: 2px;
}

.welfare-body .sub {
    color: #e33;
    font-size: 13px;
    margin-bottom: 6px;
}

.welfare-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.welfare-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.6;
}

.li-icon {
    width: 14px;
    object-fit: contain;
    margin-top: 2px;
    flex-shrink: 0;
}

.facility {
    margin-top: 12px;
}

.facility p {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    padding-left: 22px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.facility p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    background: url('../images/building.png') no-repeat center/contain;
}

.facility ul {
    list-style: none;
    padding-left: 0;
}

.facility li {
    position: relative;
    padding-left: 16px;
    padding-right: 20px;
    margin-bottom: 6px;
    font-size: 13px;
}

.facility-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
}

.facility-type {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.facility li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #ff4a4a;
    border-radius: 50%;
}

.facility li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background: url('../images/link.png') no-repeat center/contain;
    opacity: 0.6;
}

/* =========================
スマホレスポンシブ
========================= */
@media (max-width:768px) {
    .welfare-title h1 {
        font-size: 26px;
    }

    .welfare-hero img {
        height: 220px;
        border-radius: 10px;
        margin: 16px 0;
    }

    .welfare-lead {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .welfare-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .welfare-img-wrap>img {
        height: 180px;
    }

    .img-icon-box {
        width: 32px;
        height: 32px;
    }

    .img-icon-box img {
        width: 16px !important;
        height: 16px !important;
    }

    .welfare-body {
        padding: 14px;
    }

    .welfare-body h3 {
        font-size: 16px;
    }

    .welfare-body .sub {
        font-size: 12px;
    }

    .welfare-list li {
        font-size: 12px;
    }

    .li-icon {
        width: 12px;
    }

    .facility p {
        font-size: 12px;
    }

    .facility-name {
        font-size: 12px;
    }

    .facility-type {
        font-size: 11px;
    }

    .facility li {
        font-size: 12px;
    }
}