/* =========================================================
   全幅ウィジェットエリア
   ========================================================= */
.aind-fv-bottom-area {
    flex-shrink: 0;
}

/* ── 旧スライダー非表示 ── */
.aind-slider {
    display: none !important;
}

/* =========================================================
   ピックアップ記事セクション
   NewsPicks型：メインスライダー + サブ3カード
   ========================================================= */
.aind-pickup {
    margin: 0 auto;
    background: #fff;
    overflow: visible;
    max-width: 1100px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

/* ── メインスライダー ── */
.aind-pickup__slider {
    position: relative;
}

.aind-pickup__slider-viewport {
    overflow: hidden;
}

.aind-pickup__slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.aind-pickup__slide {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    text-decoration: none;
    color: inherit;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    align-items: center;
}
.aind-pickup__slide:hover {
    color: inherit;
    text-decoration: none;
}

.aind-pickup__hero-text {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

.aind-pickup__hero-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.aind-pickup__hero-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.5;
    color: #0f172a;
    margin: 0 0 10px;
    transition: color 0.15s;
}
.aind-pickup__slide:hover .aind-pickup__hero-title {
    color: #2563eb;
}

.aind-pickup__hero-lead {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aind-pickup__hero-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.aind-pickup__hero-img {
    overflow: hidden;
}
.aind-pickup__hero-img > img {
    width: 100%;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.aind-pickup__slide:hover .aind-pickup__hero-img > img {
    transform: scale(1.04);
}

/* ── 左右ボタン ── */
.aind-pickup__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    transition: background 0.2s, color 0.2s;
}
.aind-pickup__arrow:hover {
    background: #fff;
    color: #2563eb;
}
.aind-pickup__arrow svg {
    width: 18px;
    height: 18px;
}
.aind-pickup__arrow--prev {
    left: -18px;
}
.aind-pickup__arrow--next {
    right: -18px;
}

/* ── ドットインジケーター ── */
.aind-pickup__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.aind-pickup__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.aind-pickup__dot.is-active {
    background: #2563eb;
    transform: scale(1.3);
}

/* ── サブカード ── */
.aind-pickup__sub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e8ecf0;
    border-top: 1px solid #e8ecf0;
}

.aind-pickup__sub-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.aind-pickup__sub-card:hover {
    color: inherit;
    text-decoration: none;
}

.aind-pickup__sub-thumb {
    aspect-ratio: 1200 / 630;
    overflow: hidden;
}
.aind-pickup__sub-thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.aind-pickup__sub-card:hover .aind-pickup__sub-thumb > img {
    transform: scale(1.04);
}

.aind-pickup__sub-body {
    padding: 10px 14px 14px;
}

.aind-pickup__sub-cat {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

.aind-pickup__sub-title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.5;
    color: #0f172a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}
.aind-pickup__sub-card:hover .aind-pickup__sub-title {
    color: #2563eb;
}


/* ── レスポンシブ ── */
@media (max-width: 768px) {
    .aind-pickup__slide {
        grid-template-columns: 1fr;
    }

    .aind-pickup__hero-text {
        padding: 20px 16px;
        order: 2;
    }

    .aind-pickup__hero-img {
        order: 1;
    }

    .aind-pickup__hero-title {
        font-size: 1.05rem;
    }

    .aind-pickup__arrow {
        width: 30px;
        height: 30px;
    }
    .aind-pickup__arrow svg {
        width: 14px;
        height: 14px;
    }
    .aind-pickup__arrow--prev {
        left: 6px;
    }
    .aind-pickup__arrow--next {
        right: 6px;
    }

    .aind-pickup__sub {
        grid-template-columns: 1fr 1fr;
    }

    .aind-pickup__sub-card:last-child {
        display: none;
    }
}
