/* ===== report.css（フィッシングレポート：スクショ風） ===== */

body.report-page{ background:#f6f7f9; }

.report-wrap{ width:min(1100px,92vw); margin:0 auto; }

.report-topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0 10px;
}
.report-brand{ line-height:1.1; }
.report-brand .t{ font-weight:900; letter-spacing:.06em; }
.report-brand .s{ font-size:12px; color:#5b6472; margin-top:4px; }

.btn-back{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(20,30,50,.14);
  background:#fff; color:#111; text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
@media (hover:hover){
  .btn-back:hover{
    background: rgba(20, 110, 255, .08);
    border-color: rgba(20, 110, 255, .22);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
  }
}

.report-card{
  background:#fff;
  border:1px solid rgba(20,30,50,.08);
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  overflow:hidden;
  margin:12px 0 44px;
}
.report-head{
  padding:22px 24px 14px;
  border-bottom:1px solid rgba(20,30,50,.08);
}
.breadcrumbs{
  font-size:12px; color:#5b6472; margin:0 0 8px;
}
.report-title{ margin:0; font-size:26px; letter-spacing:.02em; }
.report-sub{ margin:8px 0 0; color:#5b6472; font-size:13px; }

.chips{
  display:flex; flex-wrap:wrap; gap:10px;
  padding:14px 24px 18px;
}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(20,30,50,.10);
  background:#f6f7f9;
  font-size:13px;
  color:#2b3442;
  text-decoration:none;
}
.chip strong{ font-weight:800; }

.report-body{ padding:0 24px 24px; }

.media-box{
  border-radius:18px;
  border:1px solid rgba(20,30,50,.10);
  overflow:hidden;
  background:#fff;
  margin:8px 0 18px;
}
.media-box img{ width:100%; height:auto; display:block; }

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width:720px){
  .grid2{ grid-template-columns:1fr; }
}

.caption{ margin:10px 0 0; color:#2b3442; font-size:14px; }

.section-h{
  margin:18px 0 10px;
  font-weight:900;
  letter-spacing:.03em;
}

.details{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid rgba(20,30,50,.10);
  border-radius:16px;
  background:#fff;
}
.details th,
.details td{
  padding:12px 14px;
  border-bottom:1px solid rgba(20,30,50,.08);
  vertical-align:top;
  font-size:14px;
  line-height:1.7;
}
.details th{
  width:160px;
  background:#f0f6f0;
  font-weight:900;
}
.details tr:last-child th,
.details tr:last-child td{ border-bottom:none; }

.story{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(20,30,50,.10);
  background:#fff;
  color:#2b3442;
  line-height:1.9;
  font-size:15px;
  white-space:pre-wrap;
}

.post-block{
  padding:18px 0 0;
  border-top:1px solid rgba(20,30,50,.08);
  margin-top:18px;
}
.post-block:first-child{
  border-top:none;
  margin-top:0;
  padding-top:0;
}
.post-by{ font-weight:900; margin:0 0 8px; }

/* 動画 */
.media-box video{
  width:100%;
  height:auto;
  display:block;
  background:#000;
}
/* ===== 余白を増やして“ギリギリ感”を解消（上書き） ===== */

/* 全体：カード内左右にもう少し余裕 */
.report-head{ padding-left: 30px; padding-right: 30px; }
.chips{ padding-left: 30px; padding-right: 30px; }
.report-body{ padding-left: 30px; padding-right: 30px; padding-bottom: 30px; }

/* 画像枠：内側に余白を作って呼吸を出す */
.media-box{
  padding: 10px;          /* ←ココが効く */
  margin: 14px 0 18px;    /* 少し下げて見やすく */
  border-radius: 20px;
}

/* 単体画像も角丸がキレイに出る */
.media-box > img{
  border-radius: 14px;
}

/* 2枚並びの画像にも角丸を付ける（grid2用） */
.media-box .grid2 img{
  border-radius: 14px;
}

/* 2枚の間隔も少し広げる */
.grid2{ gap: 12px; }
