/* ========================================
   Pick Up
======================================== */

.cl-pickup {
    padding: 80px 0;
}

.cl-pickup .container {
    max-width: 1200px;
}

/* --------------------
   タイトル
-------------------- */

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 8px;
}

.section-title p {
    color: var(--muted-color);
}

/* --------------------
   レイアウト
-------------------- */

.pickup-layout {
    display: grid;
    grid-template-columns: 660px 1fr;
    gap: 36px;
    align-items: start;
}

/* --------------------
   メイン記事
-------------------- */

.pickup-main a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pickup-thumb {
    width: 100%;
    aspect-ratio: 3 / 2;
    background: #ddd;
    overflow: hidden;
    border-radius: 12px;
}

.pickup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-content {
    margin-top: 20px;
}

.pickup-content h3 {
    margin-bottom: 12px;
}

/* --------------------
   サイド記事
-------------------- */

.pickup-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pickup-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.pickup-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pickup-item a {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.pickup-label{
    margin:0 0 6px;
    font-size:14px;
    color:#666;
}

.pickup-item h3{
    margin:0 0 10px;
    font-size:18px;
    line-height:1.4;
}

.pickup-band{
    margin:0 0 10px;
    font-size:14px;
    color:#666;
    line-height:1.6;
}

.pickup-intro{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:#555;
}

.pickup-item .pickup-thumb{
    width:110px;
    aspect-ratio:3 / 4;
    flex-shrink:0;
    overflow:hidden;
    border-radius:8px;
}

.pickup-item .pickup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-item .pickup-content {
    flex: 1;
    margin-top: 0;
}