/* 全体コンテナ */
.report-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    line-height: 1.8;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ヘッダー */
.report-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px double #004ea2;
}
.category-tag {
    background: #004ea2;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.8em;
    border-radius: 4px;
}
.report-header h1 {
    font-size: 1.5em;
    margin-top: 15px;
    color: #004ea2;
}

/* 見出し */
.report-section h2 {
    position: relative;
    padding-left: 15px;
    border-left: 5px solid #004ea2;
    font-size: 1.3em;
    margin: 40px 0 20px;
}

/* 統計ボックス */
.stats-box {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.highlight-red {
    color: #e60012;
    font-weight: bold;
    font-size: 1.4em;
}

/* 引用メッセージ */
.message-quote {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
    border-radius: 15px;
    position: relative;
}
.message-quote p {
    font-size: 1.2em;
    font-weight: bold;
    color: #004ea2;
    margin: 0;
}
.quote-sub {
    font-size: 0.8em !important;
    color: #666 !important;
    margin-top: 10px !important;
    font-weight: normal !important;
}

/* 動画カード */
.video-card {
    margin: 40px 0;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}
.video-card:hover {
    border-color: #004ea2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.video-card a {
    text-decoration: none;
    display: block;
    padding: 30px;
}
.video-label {
    color: #e60012;
    font-weight: bold;
    margin-bottom: 5px;
}
.video-card h3 {
    margin: 10px 0;
    color: #333;
}
.video-meta {
    font-size: 0.8em;
    color: #999;
}
.video-btn {
    display: inline-block;
    margin-top: 20px;
    background: #004ea2;
    color: #fff;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: bold;
}

/* フッター */
.report-footer {
    margin-top: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}
/* ヘッダー */
.column-meta {
    font-size: 0.85rem;
    color: #00529a;
    font-weight: bold;
    letter-spacing: 0.1em;
}
/* メディア関係者向けセクション */
/* メディア関係者向けセクション - ここだけさらに幅を絞る */
.media-contact {
    margin: 60px auto 40px; /* 上下に余白を作り中央寄せ */
    max-width: 540px;       /* 640pxよりさらに狭く設定 */
    width: 90%;            /* スマホ表示では画面幅に合わせる */
}

.media-box {
    background: #f8f9fa;
    border: 2px dashed #004ea2;
    border-radius: 12px;
    padding: 30px 20px;    /* 左右の余白を少し調整 */
    text-align: center;
    position: relative;
}

.media-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #004ea2;
    color: #fff;
    padding: 2px 15px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 20px;
}

.media-box h3 {
    margin-top: 10px;
    font-size: 1.2em;
    color: #004ea2;
}

.media-box p {
    font-size: 0.85em;      /* 文字を少し小さくして凝縮感を出す */
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;       /* 読みやすさ重視で左寄せ */
}

.media-btn {
    display: inline-block;  /* 横幅いっぱいにせずコンテンツに合わせる */
    background: #fff;
    color: #004ea2;
    border: 2px solid #004ea2;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s;
}

.media-btn:hover {
    background: #004ea2;
    color: #fff !important;
}