/* --- Editor only helper: 管理画面内では .pc-only を強制表示 --- */
body.wp-admin .pc-only { display: block !important; }

/* =============== Banner（キャンペーン） =============== */
.banner {
    padding: 80px 0;
    background: #e8eef3;
}

.banner__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.banner__title {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #0f172a;
    line-height: 1.4;
}

.banner__lead {
    font-size: 1.14rem;
    /* color: #6b7280; */
    text-align: center;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-weight: 400;
}

.banner__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner__item { margin: 0; }

.banner__link {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    background: #fff;
}

.banner__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.banner__link:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.banner__img {
    width: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

@media (max-width: 1024px) {
    .banner {
        padding: 40px 0;
    }
    .banner__lead {
        font-size: clamp(16px, 1.5vw, 20px);
        font-weight: 400;
    }
    .banner__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* （必要なら）簡易レスポンシブ例

@media (max-width: 640px) {
  .banner__grid { grid-template-columns: repeat(2, 1fr); }
}
*/
