/* --- 1. 本文と画像のレイアウト（幅を親に合わせる） --- */
.intro-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0; /* 中央寄せ(auto)をやめ、左端を基準にする */
    width: 100%;    /* 独自の幅制限を撤廃 */
}

.intro-body {
    flex: 1;
}

.intro-body p.main {
    margin-top: 0 !important;
}

.intro-ticket {
    width: 400px;
    flex-shrink: 0;
}

/* --- 2. レポート誘導ボックス（幅とキャプションの修正） --- */
.report-index-box {
    margin: 50px 0 !important; /* 左端を揃える */
    width: 100% !important;    /* 横幅を親要素（概要など）と完全に一致させる */
    box-sizing: border-box;
    background: #2b264d !important; 
    border: 1px solid #7B68EE !important;
    padding: 30px 20px;
    text-align: center;
}

.nav-label {
    color: #a496ff !important;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.nav-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 650px; /* ボタンの最大幅 */
}

.nav-links li {
    margin-bottom: 15px !important;
}

.nav-links a {
    display: block !important;
    background-color: #7B68EE !important;
    border: 1px solid #9385f2 !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 15px !important; /* 上下を少し詰める */
    font-size: 1.2em !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    border-radius: 4px !important;
    line-height: 1.2 !important; /* 行間を調整 */
}

/* キャプション（span）を強制的に表示させる */
.nav-links a span {
    display: block !important; /* 改行して表示 */
    font-size: 0.65em !important;
    color: #e0dbff !important;
    font-weight: normal !important;
    margin-top: 5px !important;
    visibility: visible !important; /* 隠れている場合に備えて強制表示 */
}

/* ホバー演出 */
.nav-links a:hover {
    background-color: #9385f2 !important;
    transform: translateY(-2px);
}

/* --- 3. スマホ表示用の設定 --- */
@media (max-width: 768px) {
    .intro-layout {
        flex-direction: column;
    }
    .intro-ticket {
        width: 100%;
        margin-top: 20px;
    }
}