
/* 全体モジュールスタイル（高度に圧縮） */
.why-ecowipepro {
    max-width: 1280px;
    margin: 40px auto;
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 32px 20px;   /* 元48px 24px → 32px 20px */
    box-sizing: border-box;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;      /* 元35px → 28px */
    color: #222222;
    text-align: center;
    margin-bottom: 24px;   /* 元32px → 24px */
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;            /* 元30px → 20px */
}
.benefit-card {
    background: #ffffff;
    border-radius: 18px;   /* 元20px → 18px */
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.benefit-card:hover .card-img img {
    transform: scale(1.02);
}
.card-content {
    padding: 14px 16px 18px;  /* 元20px 24px 28px → 14px 16px 18px */
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-content h3 {
    font-weight: 700;
    font-size: 18px;       /* 元20px → 18px */
    color: #0047AB;
    margin-bottom: 8px;     /* 元12px → 8px */
    line-height: 1.3;
}
.card-content p {
    font-size: 13px;        /* 元15px → 13px */
    line-height: 1.45;
    color: #555555;
    margin-bottom: 10px;    /* 元12px → 10px */
}
.card-content p:last-child {
    margin-bottom: 0;
}
.data-line {
    color: #0047AB !important;  /* 青色サブタイトル */
    font-weight: 600;
}
/* レスポンシブ：タブレットで1列 */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .why-ecowipepro {
        padding: 28px 16px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
/* スマホ向けさらなる圧縮 */
@media (max-width: 640px) {
    .card-content {
        padding: 12px 14px 16px;
    }
    .card-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .card-content p {
        font-size: 12px;
        margin-bottom: 8px;
    }
}
