
/* ===============================
   ARTISTS ページ専用スタイル（ポートレートとテキスト揃え、作品下配置）
   =============================== */

.concept {
    max-width: 960px;
    margin: 80px auto;
    padding: 0 5vw;
    text-align: center;
}
.concept h1 { font-size: 1.8rem; margin-bottom: 24px; font-weight: 500; letter-spacing: 0.05em; }
.concept p  { font-size: 0.95rem; line-height: 1.8; color: #444; margin-bottom: 16px; font-weight: 300; }

.artists-grid {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 5vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.artist-card {
    border: 1px solid #eee;
    border-radius: 0px;
    background: #fff;
    padding: 24px;
    display: grid;
    gap: 24px;
    background: #fff;
}

.artist-info-block {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 24px;
    align-items: stretch;
}

.artist-media {
    width: 100%;
    height: 100%;
}
.artist-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    background: #f2f2f2;
}

.artist-body {
    display: grid;
    gap: 12px;
}

.artist-id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.artist-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .02em;
}
.artist-name span {
    display: block;
    font-size: .8rem;
    color: #777;
    letter-spacing: .06em;
    margin-top: 2px;
}

.artist-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.artist-links img {
    width: 20px; height: 20px; display: block;
    opacity: .9; transition: opacity .2s ease;
}
.artist-links a:hover img { opacity: .6; }

.artist-bio {
    font-size: 0.92rem;
    line-height: 1.9;
    color: #444;
    margin: 0;
    font-weight: 300;
}

.artist-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.artist-works img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0px;
    background: #f5f5f5;
}

.cta {
    text-align: center;
    padding: 60px 5vw;
    border-top: 1px solid #eee;
}
.cta h2 { font-size: 1.4rem; margin-bottom: 16px; font-weight: 500; }
.cta p  { color: #555; margin-bottom: 20px; }
.cta .btn {
    display: inline-block; padding: 10px 24px;
    border: 1px solid #111; border-radius: 999px;
    text-decoration: none; color: #111; font-size: 0.9rem;
    transition: all 0.3s ease;
}
.cta .btn-primary { background: #111; color: #fff; }
.cta .btn:hover { opacity: 0.85; }

@media (max-width: 900px) {
    .artist-info-block {
      grid-template-columns: 1fr;
    }
    .artist-media {
      height: auto;
    }
    .artist-works {
      grid-template-columns: repeat(2, 1fr);
    }
}
