@charset "UTF-8";

/* ===================================
   BASE SETTINGS
==================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    color: #0a0a0a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   HEADER
==================================== */
.wpp-header {
    background-color: #000000;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-text {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.main-nav a:hover {
    opacity: 0.6;
}

/* ===================================
   PAGE HEADER (下層ページ共通タイトル帯)
==================================== */
.page-header {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.page-header .page-title {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 10px;
    letter-spacing: 0.1em;
}

.page-header .page-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #aaa;
    margin: 0;
}

/* ===================================
   SECTION COMMONS
==================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.view-more {
    font-size: 0.9rem;
    font-weight: 700;
}

.view-more:hover {
    opacity: 0.5;
}

/* ===================================
   FOOTER
==================================== */
.wpp-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 40px 30px;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 700;
}

.footer-links a:hover {
    opacity: 0.5;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* ===================================
   SHARED COMPONENTS (共通パーツ: タレントカード)
==================================== */
.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;
}