/* ==========================================================================
   Family Concert LP Style (Clean & Seamless Version)
   ========================================================================== */

/* --- 1. 全体・ベース設定 --- */
body.family-lp-archive {
    background-color: #fff; /* 背景を白に統一して繋ぎ目を消す */
    margin: 0;
    padding: 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #333;
}

/* --- 2. LPセクション（画像エリア） --- */
.lp-section {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center; /* 中央寄せ */
    margin: 0;
    padding: 0;
    line-height: 0; /* 画像下の微細な隙間を排除 */
}

.lp-img {
    width: 100%;
    max-width: 600px; /* PCでのボケ防止（約15cm幅） */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- 3. 公演情報セクション（CTA） --- */
.performance-info-box {
    background-color: #fff;
    margin: 0;
    padding: 60px 20px; /* 上下の余白で情報の区切りを演出 */
    text-align: center;
    /* 不要な黄色の境界線(border-top/bottom)を削除 */
}

.performance-info-box .container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-inner {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    /* 不要な黄色の枠線(border)を削除 */
    padding: 20px;
}

.status-tag {
    display: inline-block;
    background: #ff0099; /* PPPピンク */
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 20px;
}

.performance-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #333;
    margin: 10px 0 20px;
    line-height: 1.4;
}

.details {
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- 4. 予約・お問い合わせボタン --- */
.cta-button-gold {
    display: inline-block;
    background: linear-gradient(#ff0099, #cc0077); /* 視認性の高いピンクグラデーション */
    color: #fff;
    padding: 18px 45px;
    border-radius: 100px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 5px 0 #990055;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #990055;
}

.cta-button-gold:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #990055;
}

/* --- 5. アクセシビリティ・レスポンシブ --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 600px) {
    .lp-img {
        max-width: 100%; /* スマホでは横幅いっぱいに表示 */
    }
    .performance-title {
        font-size: 1.5rem;
    }
}