@charset "utf-8";

.sns-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.sns-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sns-btn:hover {
  opacity: 0.85;
}

.sns-btn i {
  font-size: 16px;
}

/* 個別SNSカラー */
.twitter { background-color: #1DA1F2; }
.facebook { background-color: #4267B2; }
.line { background-color: #00C300; }

.credit-note {
  font-size: 0.75em;
  color: #666;
  text-align: right;
  margin-top: 0.5em;
  line-height: 1.5;
}

.faq-section {
  background: #fff;
  border-radius: 6px;
  padding: 2em;
  max-width: 800px;
  margin: 2em auto;
}

.faq-section h2 {
  font-size: 1.4em;
  color: #fff;
  background: #e65348;
  padding: 0.7em 1em;
  border-radius: 6px;
}

.faq-item {
  margin-top: 2em;
  padding: 1em 1.2em;
  background: #fefefe;
  border-left: 4px solid #e65348;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 0.6em;
  color: #222;
}

.faq-answer {
  font-size: 1em;
  color: #444;
  line-height: 1.7;
  margin-left: 0.2em;
}

.event-card {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-family: "Arial", sans-serif;
}

.event-card h3 {
  font-size: 16px;
  margin: 0 0 5px;
}

.event-card p {
  margin: 2px 0;
  font-size: 14px;
}

#searchBtn {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 16px;
}

#hanabiMap {
  width: 100%;
  height: 50vh;
  max-height: 500px;
  touch-action: none;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 160px;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  background: #f6f6f6;
  margin: 0;
}

.custom-marker {
  max-width: 80vw;
  word-break: break-word;
}

.marker-label {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  padding: 4px 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  max-width: 120px;
  text-align: left;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  line-height: 1.3;
}

.marker-date {
  font-weight: bold;
  color: #d63384;
  font-size: 11px;
  margin-bottom: 2px;
}

.marker-title {
  color: #333;
  font-size: 11px;
}

.marker-icon {
  width: 40px;
  height: 40px;
}

.news-lead {
  background-color: #fff8e1;
  padding: 1em;
  border-left: 4px solid #f44336;
}

.hanabi-note {
  background-color: #f3f7ff;
  padding: 1em;
  border-left: 4px solid #2563eb;
}

.news-hero {
  margin: 16px 0;
}

.news-hero img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.news-hero figcaption {
  font-size: .9rem;
  color: #666;
  margin-top: 6px;
}

/* ===============================
   ギャラリー
=============================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0 60px 0;
}

.gallery img {
  width: 400px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 6px 24px #bbb;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery img:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px #888;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px #bbb;
  padding: 22px 10px 10px 10px;
}

.item img {
  width: 480px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 16px #bbb;
  margin-bottom: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.item img:hover {
  transform: scale(1.035);
  box-shadow: 0 12px 32px #999;
}

.caption {
  font-size: 1.32em;
  color: #222;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.photo-author {
  font-size: 0.92em;
  color: #888;
  text-align: center;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
}

.author-box-wrap {
  clear: both;
  margin-top: 24px;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px #000a;
  background: #fff;
  padding: 8px;
}

@media (max-width: 1100px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .item img {
    width: 95vw;
    height: auto;
  }
}

/* ===============================
   レビュー
=============================== */
@media screen and (max-width: 600px) {
  button.like-button.reply {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1.2;
    padding: 10px 8px;
    white-space: nowrap;
  }
}

/* ===============================
   基本情報テーブル
=============================== */
table.design01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #d9e3ee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

table.design01 tr:first-child td:first-child,
table.design01 tr:first-child th:first-child {
  border-top-left-radius: 12px;
}

table.design01 tr:first-child td:last-child,
table.design01 tr:first-child th:last-child {
  border-top-right-radius: 12px;
}

table.design01 tr:last-child td:first-child,
table.design01 tr:last-child th:first-child {
  border-bottom-left-radius: 12px;
}

table.design01 tr:last-child td:last-child,
table.design01 tr:last-child th:last-child {
  border-bottom-right-radius: 12px;
}

table.design01 tr + tr td,
table.design01 tr + tr th {
  border-top: 1px solid #e7eef5;
}

table.design01 td,
table.design01 th {
  padding: 18px 20px;
  vertical-align: middle;
  line-height: 1.7;
  font-size: 16px;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

table.design01 td:first-child,
table.design01 th:first-child,
table.design01 .tdcol,
table.design01 .width25 {
  width: 26%;
  background: #f3f8f8;
  color: #425466;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

table.design01 td:not(:first-child),
table.design01 th:not(:first-child),
table.design01 .tdcol3,
table.design01 .width75 {
  background: #fff;
  color: #222;
}

table.design01 a {
  color: #1d4f91;
  text-decoration: underline;
  word-break: break-word;
}

table.design01 ul {
  margin: 0;
  padding-left: 1.2em;
}

table.design01 li {
  margin: 0.25em 0;
  line-height: 1.65;
}

table.design01 .btn2,
table.design01 .btn5 {
  display: inline-block;
  max-width: 100%;
  min-height: auto;
  padding: 12px 18px;
  line-height: 1.5;
  white-space: normal;
  text-align: center;
  border-radius: 10px;
  box-sizing: border-box;
}

table.design01 .station-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

table.design01 .station-list li {
  padding: 4px 0;
}

/* 情報取得元ボタン */
table.design01 .btn5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: auto;
  min-width: 260px;
  max-width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: #fff;
  background-image: none;
  border: 1px solid #cfd9e6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  color: #1f4f8a !important;
  text-decoration: none !important;
  font-weight: 700;
  line-height: 1.6;
  transition: all 0.2s ease;
}

table.design01 .btn5:hover {
  background: #f7fbff;
  border-color: #9eb9d8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

table.design01 .btn5::after {
  content: "↗";
  font-size: 0.95em;
  line-height: 1;
}

/* ===============================
   担当煙火店ボタン
=============================== */
.shop-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.shop-link-list .btn4 {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 12px 16px !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  background-image: none !important;
  border: 1px solid #cfd9e6 !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
  color: #1f4f8a !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.shop-link-list .btn4:hover {
  background: #f7fbff !important;
  border-color: #9eb9d8 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-1px);
}

/* =========================================
   SNSシェアボタン
   PCもスマホも「上アイコン・下ラベル」
========================================= */
.share-rich {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 18px 0 10px;
}

.share-rich-btn {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  height: 74px;
  min-height: 74px;
  max-height: 74px;
  padding: 0 10px;
  border-radius: 18px;
  border: 1px solid #d7e0ea;
  background: #fff;
  color: #243447 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  overflow: hidden;
}

.share-rich-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  text-decoration: none !important;
}

.share-rich-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.share-rich-label {
  display: block;
  width: 100%;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.share-x {
  background: #111111;
  border-color: #111111;
  color: #fff !important;
}

.share-threads {
  background: #1f1f1f;
  border-color: #1f1f1f;
  color: #fff !important;
}

.share-bluesky {
  background: #2d9ae3;
  border-color: #2d9ae3;
  color: #fff !important;
}

.share-facebook {
  background: #4e73be;
  border-color: #4e73be;
  color: #fff !important;
}

.share-line {
  background: #06c755;
  border-color: #06c755;
  color: #fff !important;
}

.share-copy {
  background: #5a5a5a;
  border-color: #5a5a5a;
  color: #fff !important;
}

.share-line .share-rich-icon {
  font-size: 14px;
}

.share-bluesky .share-rich-icon {
  font-size: 16px;
}

/* 花火愛好家 注目度テーブル
   1列目と3列目の見出しセル色を統一 */
table.design01 td.tdcol {
  background: #f3f8f8;
  color: #425466;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.location-block {
  margin: 32px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
}

.location-block h2 {
  margin-bottom: 12px;
}

.location-desc {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.location-desc span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #666;
}

.map-wrap {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}

.nearby-more-wrap {
  margin-top: 16px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  max-width: 100%;
  padding: 14px 20px;
  border-radius: 9999px;
  background: #1f4f8a;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.map-btn:hover {
  background: #173d6b;
  transform: translateY(-1px);
}

.nearby-map-block {
  margin: 32px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
}

.nearby-map-wrap {
  position: relative;
}

.map-label-toggle-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 9px 14px;
  border: 1px solid rgba(31, 79, 138, 0.18);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.96);
  color: #1f4f8a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.2s ease;
}

.map-label-toggle-btn:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.hanabi-div-icon {
  background: transparent !important;
  border: none !important;
}

.nearby-hanabi-label {
  background: transparent !important;
  border: none !important;
}

.custom-marker-label {
  width: 120px;
  pointer-events: none;
}

.custom-marker-label .marker-label {
  display: inline-block;
  max-width: 120px;
}

/* ===============================
   花火愛好家 注目度
=============================== */
.reaction-section {
  margin: 32px 0;
}

.reaction-box {
  padding: 0;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 14px;
  box-shadow: 0 0 0 1px #d9e3ee;
  overflow: hidden;
}

.reaction-box h2 {
  margin: 0;
}

.reaction-box .reaction-table {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.reaction-link-wrap {
  padding: 18px 20px 24px;
  background: #fff;
}

.reaction-link-btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* ===============================
   近くで開催される花火大会（一覧）
=============================== */
#nearby-events {
  margin: 32px 0;
  padding: 0;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 14px;
  box-shadow: 0 0 0 1px #d9e3ee;
  overflow: hidden;
}

#nearby-events h2 {
  margin: 0;
}

#nearby-events .hanabi-list {
  list-style: none;
  margin: 0;
  padding: 20px;
}

#nearby-events .hanabi-item {
  margin: 0;
}

#nearby-events .nearby-more-wrap {
  padding: 0 20px 24px;
  margin-top: 0;
}

#nearby-events .map-btn {
  min-width: 320px;
}

/* ===============================
   みんなの花火イベント・レビュー
   最終調整版
=============================== */
#reviews {
  margin: 32px 0;
  padding: 0;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 14px;
  box-shadow: 0 0 0 1px #d9e3ee;
  overflow: hidden;
}

#reviews h2 {
  margin: 0;
}

#reviews .button-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 20px;
  align-items: stretch;
}

#reviews .surveyf_dblbtn {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
}

#reviews .surveyi_dblbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  transition: all 0.2s ease;
  cursor: pointer;
}

#reviews .surveyf_dblbtn:nth-child(1) .surveyi_dblbtn {
  background: #ffffff;
  color: #2f6fdd;
  border-color: #cfd9e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#reviews .surveyf_dblbtn:nth-child(2) .surveyi_dblbtn {
  background: #2f6fdd;
  color: #ffffff;
}

#reviews .surveyf_dblbtn:nth-child(3) .surveyi_dblbtn {
  background: #234a84;
  color: #ffffff;
}

#reviews .surveyi_dblbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

#reviews .surveyi_dblbtn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(47, 111, 221, 0.14);
}

/* ===============================
   レスポンシブ
=============================== */
@media screen and (max-width: 1200px) {
  #reviews .button-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  table.design01 td,
  table.design01 th {
    padding: 14px 14px;
    font-size: 15px;
  }

  table.design01 td:first-child,
  table.design01 th:first-child,
  table.design01 .tdcol,
  table.design01 .width25 {
    width: 30%;
    font-size: 14px;
    line-height: 1.5;
  }

  table.design01 .btn2,
  table.design01 .btn5 {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    font-size: 15px;
  }

  .shop-link-list {
    gap: 8px;
  }

  .shop-link-list .btn4 {
    width: 100% !important;
    justify-content: flex-start;
    text-align: left;
    border-radius: 14px !important;
    padding: 11px 12px !important;
    font-size: 14px;
  }

  .location-block,
  .nearby-map-block {
    padding: 16px;
    margin: 24px 0;
  }

  .location-desc {
    font-size: 14px;
  }

  .map-btn {
    display: flex;
    min-width: 0;
  }

  .map-label-toggle-btn {
    top: 10px;
    right: 10px;
    min-width: 104px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .reaction-section,
  #nearby-events,
  #reviews {
    margin: 24px 0;
  }

  .reaction-link-wrap {
    padding: 16px;
  }

  #nearby-events .hanabi-list {
    padding: 16px;
  }

  #nearby-events .nearby-more-wrap {
    padding: 0 16px 16px;
  }

  #nearby-events .map-btn {
    min-width: 0;
  }

  #reviews .button-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  #reviews .surveyi_dblbtn {
    min-height: 64px;
    font-size: 15px;
    padding: 12px 14px;
  }
}

.main-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===============================
   Xアカウント導線
=============================== */
.x-account-section {
  margin: 32px 0;
}

.x-account-lead {
  margin: 0 0 20px;
  font-size: 1.05em;
  line-height: 1.9;
}

.x-account-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.x-card {
  margin: 0;
}

.x-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 20px 18px;
  background: #ffffff;
  border: 1px solid #d9e3ee;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  text-decoration: none !important;
  color: #222 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}

.x-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  border-color: #c6d4e3;
  text-decoration: none !important;
}

.x-card-link h4 {
  margin: 0 0 14px;
  color: #e14f4f;
  font-size: 1.9rem;
  line-height: 1.4;
}

.x-card-link p {
  margin: 0;
  color: #333 !important;
  line-height: 1.8;
  flex-grow: 1;
}

.x-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 16px;
  min-width: 120px;
  border-radius: 9999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  align-self: flex-start;
}

@media screen and (max-width: 900px) {
  .x-account-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .x-card-link {
    padding: 18px 16px 16px;
  }

  .x-card-link h4 {
    font-size: 1.6rem;
  }

  .x-follow-btn {
    align-self: stretch;
  }
}

.status-alert {
  margin: 0 0 24px 0;
  padding: 16px 16px 14px;
  border: 2px solid #d97706;
  background: #fff7ed;
  border-radius: 10px;
}

.status-alert-label {
  margin: 0 0 8px 0;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.status-alert-title {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}

.status-alert-text {
  margin: 0 0 14px 0;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.status-alert-link-wrap {
  margin: 0;
}

.status-alert-link {
  display: inline-block;
  padding: 10px 14px;
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

.status-alert-link:hover {
  opacity: 0.9;
}

/* 順延 */
.status-alert-rescheduled {
  border-color: #d97706;
  background: #fff7ed;
}
.status-alert-rescheduled .status-alert-label,
.status-alert-rescheduled .status-alert-title {
  color: #9a3412;
}
.status-alert-rescheduled .status-alert-link {
  background: #d97706;
}

/* 中止 */
.status-alert-cancelled {
  border-color: #dc2626;
  background: #fef2f2;
}
.status-alert-cancelled .status-alert-label,
.status-alert-cancelled .status-alert-title {
  color: #991b1b;
}
.status-alert-cancelled .status-alert-link {
  background: #dc2626;
}

/* 延期 */
.status-alert-postponed {
  border-color: #2563eb;
  background: #eff6ff;
}
.status-alert-postponed .status-alert-label,
.status-alert-postponed .status-alert-title {
  color: #1d4ed8;
}
.status-alert-postponed .status-alert-link {
  background: #2563eb;
}

@media screen and (max-width: 700px) {
  .status-alert {
    padding: 14px 12px 12px;
    margin-bottom: 18px;
  }

  .status-alert-title {
    font-size: 18px;
    line-height: 1.5;
  }

  .status-alert-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .status-alert-link {
    display: block;
    text-align: center;
    font-size: 14px;
  }
}

.report-block {
  margin: 25px 0;
  padding: 18px;
  background: #fffdf7;
  border: 1px solid #eadfc8;
  border-radius: 8px;
  line-height: 1.9;
}

.report-block h2 {
  margin-top: 0;
}

.report-block h3 {
  margin-top: 1.4em;
  border-left: 5px solid #d6a94a;
  padding-left: 10px;
}

/* 多言語リンク */
.language-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 16px 0 22px;
  padding: 12px 14px;
  background: #fffdf7;
  border: 1px solid #eadfc8;
  border-radius: 8px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.language-switcher span {
  font-weight: bold;
  color: #555;
  margin-right: 2px;
}

.language-switcher a {
  display: inline-block;
  padding: 4px 10px;
  color: #0066cc;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #d8caa8;
  border-radius: 999px;
  white-space: nowrap;
}

.language-switcher a:hover {
  text-decoration: underline;
  background: #fff7df;
}

@media screen and (max-width: 600px) {
  .language-switcher {
    align-items: flex-start;
    padding: 10px;
    font-size: 0.9rem;
  }

  .language-switcher span {
    width: 100%;
  }
}

/* 現地取材レポート内 写真 */
.report-photo {
  margin: 24px 0;
  padding: 0;
}

.report-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eadfc8;
  box-sizing: border-box;
}

.report-photo figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

/* 2枚以上の写真並び */
.report-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.report-photo-grid .report-photo {
  margin: 0;
}

/* スマホでは1列 */
@media screen and (max-width: 600px) {
  .report-photo {
    margin: 18px 0;
  }

  .report-photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 18px 0;
  }

  .report-photo img {
    border-radius: 6px;
  }

  .report-photo figcaption {
    font-size: 0.85rem;
  }
}

.report-photo a {
  display: block;
  cursor: zoom-in;
}

.report-photo a:hover img {
  opacity: 0.92;
}

.report-modal-img {
  cursor: zoom-in;
}

.report-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.82);
  justify-content: center;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
}

.report-modal img {
  max-width: 92vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  cursor: zoom-out;
}