@charset "UTF-8";

/* ===================================
   HERO (メインビジュアル)
==================================== */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000 url('placeholder_if_needed.jpg') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* ===================================
   CONCEPT
==================================== */
.concept-section {
    padding: 100px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.concept-section .section-title {
    margin-bottom: 30px;
    border: none;
    font-size: 2rem;
}

.concept-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.2;
}

/* ===================================
   PICKUP TALENTS (トップ用)
==================================== */
.pickup-section {
    padding: 100px 0;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.talent-card {
    display: block;
    background: #fff;
}

.talent-image-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #e0e0e0;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.image-placeholder {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.talent-card:hover .talent-image-box {
    opacity: 0.8;
}

.talent-name {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 0 5px;
}

.talent-role {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 700;
}

/* ===================================
   LATEST NEWS (トップ用抜粋)
==================================== */
.news-section {
    padding: 100px 0 120px;
    background-color: #f9f9f9;
}

.news-list {
    border-top: 1px solid #ddd;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    gap: 20px;
}

.news-date {
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 100px;
}

.news-tag {
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

.type-release { background: #000; color: #fff; }
.type-event { background: #e0e0e0; color: #000; }
.type-audition { background: #333; color: #fff; }

.news-link {
    font-size: 1.05rem;
    font-weight: 700;
    flex-grow: 1;
}

.news-link:hover {
    color: #666;
}