@charset "UTF-8";

/* --- educational-theatre 固有スタイル --- */

/* 本文中の画像 */
.body-photo {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.body-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.body-photo figcaption {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    padding: 10px 20px 0;
}

/* セクション3 テキスト内画像（2カラム） */
.inline-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 50px 0;
}

.inline-photo-row img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* 声セクション */
.voices-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.voice-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #BC221C;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.voice-card p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

.voice-source {
    font-size: 0.8rem;
    color: #999;
    margin-top: 12px;
    text-align: right;
}

/* ページ末CTAセクション */
.page-cta-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    text-align: center;
    color: #fff;
}

.page-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.page-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 2;
    margin-bottom: 40px;
}

.page-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-cta-buttons .btn-cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #BC221C;
    color: #fff;
    border: 1px solid #BC221C;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.page-cta-buttons .btn-cta-primary:hover {
    background: #fff;
    color: #BC221C;
}

.page-cta-buttons .btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.page-cta-buttons .btn-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* レスポンシブ設計 */
@media (max-width: 1024px) {
    .body-photo img {
        height: 260px;
    }

    .inline-photo-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .inline-photo-row img {
        height: 220px;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

    .page-cta-title {
        font-size: 1.4rem;
    }

    .page-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-cta-buttons a {
        width: 80%;
    }
}