/* ====================================
   こだわりページ専用スタイル
==================================== */

/* ページ固有のスタイル */
body.concept-page {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    line-height: 1.8;
    color: #4a3a28;
    background: #f8f3e9;
    padding-top: 0; /* ヘッダーが固定されるのでpaddingは不要 */
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0; /* 上部の隙間を除去 */
}

/* パンくずリスト */
.breadcrumb-wrapper {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    animation: fadeIn 1s ease 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    list-style: none;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--primary-gold);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.7);
    padding: 0 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2a2a2a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* ヘッダーのz-index: 9999より低い値 */
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-family: 'EB Garamond', 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

/* コンテンツセクション */
.content-section {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
                url('/public/images/backgrounds/bg-stone-ginza.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(184, 149, 106, 0.3);
}

.content-section:nth-child(even) {
    background: linear-gradient(rgba(250, 247, 240, 0.7), rgba(250, 247, 240, 0.7)),
                url('/public/images/backgrounds/bg-stone-ginza.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.content-section:first-of-type {
    border-top: none;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.section-row.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
}

.section-text h3 {
    font-family: 'EB Garamond', 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    color: #8b6914;
}

.section-text p {
    line-height: 2;
    color: #5a4a3a;
    margin-bottom: 1.5rem;
    white-space: pre-line; /* 改行を保持 */
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8dcc8;
}

/* スタッフセクション */
.staff-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
                url('/public/images/backgrounds/bg-stone-ginza.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.staff-title {
    text-align: center;
    font-family: 'EB Garamond', 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    color: #8b6914;
}

/* アニメーション */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スタッフカード */
#staff-members {
    max-width: 1000px;
    margin: 0 auto;
}

#staff-members .staff-card-col {
    padding: 0 25px;
    margin-bottom: 40px;
}

#staff-members .card {
    background: #ffffff;
    border: 1px solid #d4c5b0;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

#staff-members .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 105, 20, 0.15);
}

#staff-members .card-img-top {
    height: 380px;
    object-fit: cover;
    object-position: center;
}

#staff-members .card-body {
    background: linear-gradient(to bottom, #ffffff, #fefdfb);
    padding: 1.8rem 1.5rem;
    text-align: center;
}

#staff-members .card-title {
    font-family: 'EB Garamond', 'Playfair Display', serif;
    color: #8b6914;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}

#staff-members .staff-romaji {
    font-family: 'EB Garamond', serif;
    color: #b8956a;
    font-size: 0.95rem;
    font-style: italic;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

#staff-members .card-subtitle {
    color: #8b6914 !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

#staff-members .card-text {
    color: #5a4a3a;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-row,
    .section-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-image img {
        height: 300px;
    }
    
    .staff-title {
        font-size: 2rem;
    }
}