/* --- サイト共通の基本スタイル --- */
:root {
    --primary-color: #981E32; /* 深紅 */
    --secondary-color: #fdfaf5; /* 暖かみのあるオフホワイト */
    --gold-color: #C0A062;
    --text-color: #333333;
    --light-text-color: #666666;
    --dark-charcoal: #2c2c2c;
    --font-serif: 'EB Garamond', serif;
    --font-sans-serif: 'Noto Sans JP', sans-serif;
}
body, h1, h2, h3, p, ul, li, table { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans-serif); line-height: 1.8; color: var(--text-color); background-color: #fff; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
a:hover { color: var(--gold-color); }
.container { width: 90%; max-width: 900px; margin: 0 auto; }

/* --- このページ専用のヘッダースタイル --- */
.header {
    position: fixed; /* ヘッダーを追従させる */
    top: 0; left: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 10px 0;
    width: 100%;
    z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1100px; margin: 0 auto; }
.logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; color: var(--dark-charcoal); letter-spacing: 0.05em; }
.back-to-top-button {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}
.back-to-top-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ★★★ スタッフ紹介ページのメインビジュアル ★★★ */
.staff-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
    margin-top: 65px; /* 固定ヘッダー分の余白 */
}

.staff-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
}
.staff-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.staff-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}
.staff-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-top: 5px;
}

/* ★★★ スタッフ紹介ページのコンテンツエリア ★★★ */
.staff-content {
    padding: 80px 0;
}
.content-block {
    margin-bottom: 60px;
}
.content-block h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
}
.content-block .subtitle {
    text-align: center;
    color: var(--light-text-color);
    margin-bottom: 40px;
}
.content-block p.profile-text {
    text-align: justify;
    font-size: 1.05rem;
}

/* --- CTAセクション（トップページから流用） --- */
.cta-section { background-color: var(--dark-charcoal); color: #fff; text-align: center; padding: 80px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.cta-box { border: 1px solid rgba(255,255,255,0.2); padding: 40px; border-radius: 8px; }
.cta-box h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-color); margin-bottom: 15px; }
.cta-button { display: inline-block; margin-top: 20px; padding: 15px 40px; background: var(--primary-color); color: #fff; border-radius: 50px; font-weight: bold; }
.cta-button:hover { background: #fff; color: var(--primary-color); transform: translateY(-3px); }

/* --- フッター（トップページと共通） --- */
.footer { background-color: #2b2b2b; color: #eee; padding: 80px 0 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-info h4 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--gold-color); font-weight: 500; }
.copyright { text-align: center; padding: 20px 0; font-size: 0.8rem; background-color: #1a1a1a; color: #aaa; margin-top: 60px; }

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
    .logo { font-size: 1.3rem; }
    .back-to-top-button { padding: 8px 18px; font-size: 0.8rem;}
    .staff-hero { height: 50vh; padding: 20px; margin-top: 60px; }
    .staff-hero h1 { font-size: 2.5rem; }
    .staff-hero p { font-size: 1rem; }
    .staff-content { padding: 60px 0; }
    .content-block h2 { font-size: 2rem; }
    .cta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}