/* === Theatre Power — Aboutページ固有スタイル (about.css) === */
/* 更新: 2026-03-23 */


/* ----------------------------------------
   1. About Hero
   ---------------------------------------- */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: #000;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    text-align: center;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.about-hero-sub {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* ----------------------------------------
   2. コンセプト（テキスト）セクション
   ---------------------------------------- */
.section-padding {
    padding: 100px 0;
}

.concept-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #BC221C;
}

.concept-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 2.2;
    text-align: justify;
}

.note-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 30px;
}

/* セクション間スペーサー */
.section-spacer {
    margin-top: 100px;
}


/* ----------------------------------------
   3. プログラム紹介カード
   ---------------------------------------- */
.program-section {
    background-color: #f9f9f9;
    padding: 100px 0;
}

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

.program-card {
    background: #BC221C;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.program-card-desc {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-message {
    margin-top: 80px;
    text-align: center;
    font-weight: 500;
    color: #333;
}


/* ----------------------------------------
   4. 実績セクション（Numbers）
   ---------------------------------------- */
.data-section {
    padding: 100px 0;
}

.tour-numbers-box {
    background-color: #1a1a1a;
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
}

.data-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
    display: inline-block;
}

.data-title span {
    font-size: 0.9rem;
    font-weight: normal;
    margin-left: 10px;
}

.numbers-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.num-item {
    flex: 1;
    min-width: 150px;
}

.num-item dt {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.num-item dd {
    font-size: 2.2rem;
    font-weight: bold;
    color: #BC221C;
    margin: 0;
}

.num-item dd span {
    font-size: 1rem;
    margin-left: 4px;
}

.data-note {
    font-size: 0.8rem;
    color: #fff;
    margin-top: 30px;
}


/* ----------------------------------------
   5. 運営会社情報
   ---------------------------------------- */
.operator-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.operator-table {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.operator-table th,
.operator-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.operator-table th {
    width: 30%;
    font-size: 0.9rem;
    color: #BC221C;
}

.operator-table td {
    font-size: 0.95rem;
    color: #555;
}


/* ----------------------------------------
   6. レスポンシブ（About固有）
   ---------------------------------------- */
@media (max-width: 1024px) {

    /* Hero */
    .about-hero {
        height: 50vh;
    }
    .about-hero-title {
        font-size: 1.8rem;
        text-align: left;
        max-width: 90%;
        margin: 0 auto 10px;
    }
    .about-hero-sub {
        font-size: 1rem;
        text-align: left;
        max-width: 90%;
        margin: 0 auto;
    }

    /* コンセプト */
    .concept-title {
        font-size: 1.5rem;
        text-align: left;
        max-width: 90%;
        margin: 0 auto 20px;
    }
    .concept-text {
        font-size: 0.95rem;
        line-height: 1.8;
        color: #666;
        max-width: 92%;
        margin: 0 auto;
        text-align: left;
    }

    /* プログラムカード */
    .program-grid {
        grid-template-columns: 1fr;
    }
    .program-card {
        margin-bottom: 15px;
    }
    .footer-message {
        margin-top: 50px;
    }

    /* 実績 */
    .numbers-flex {
        flex-direction: column;
        gap: 25px;
    }

    /* 運営会社 */
    .operator-table th {
        width: 40%;
        padding: 15px;
    }
    .operator-table td {
        padding: 15px;
    }
}
