@charset "utf-8";

/* ================================================================
   signal-Z MEMORIES 珍しい物 詳細画面CSS
   想定：1ネタ1HTML / 子画面 900×900前後
   読み込み：各詳細HTMLから ../rep_css/rare-detail.css
================================================================ */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.rare-detail-body {
  --area-color: #c00;
  --base-bg: #777;
  --dark-bg: #5c5050;
  --line-color: #333;
  --text-color: #fff;

  background: #999;
  color: var(--text-color);
}

/* 地方別アクセントカラー */
body.area-hokkaido   { --area-color: #6f86d6; }
body.area-tohoku     { --area-color: #00a6d6; }
body.area-kanto      { --area-color: #34a853; }
body.area-tokai      { --area-color: #e0c000; }
body.area-hokuriku   { --area-color: #009688; }
body.area-koshinetsu { --area-color: #009688; }
body.area-kansai     { --area-color: #f08a24; }
body.area-chugoku    { --area-color: #e57373; }
body.area-shikoku    { --area-color: #9c6ade; }
body.area-kyushu     { --area-color: #e65aa5; }
body.area-okinawa    { --area-color: #00bcd4; }

.rare-detail-window {
  width: min(900px, 100vw);
  min-height: min(800px, 100vh);
  margin: 0 auto;
  background: var(--base-bg);
  border: 2px solid var(--line-color);
  overflow: hidden;
}

/* タイトル */
.rare-title-bar {
  background: var(--dark-bg);
  border-bottom: 2px solid var(--line-color);
}

.rare-title-bar h1 {
  margin: 0;
  padding: 0.35rem 1rem;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* 写真ビューア */
.rare-photo-viewer {
  position: relative;
  background: var(--base-bg);
}

.photo-stage {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--base-bg);
}

.photo-stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 58px;
  height: 76px;
  border: none;
  background: rgba(0,0,0,0.9);
  color: #fff;
  font-size: 4rem;
  line-height: 0.8;
  cursor: pointer;
}

.photo-nav.prev { left: 0; }
.photo-nav.next { right: 0; }

.photo-nav:hover {
  background: rgba(0,0,0,0.72);
}

.photo-count {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 6;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  background: rgba(0,0,0,0.68);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

/* 地名帯 */
.rare-place-bar {
  padding: 0.15rem 1rem 0.25rem;
  background: var(--area-color);
  border-top: 2px solid var(--line-color);
  border-bottom: 2px solid var(--line-color);
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

/* 下段：情報＋地図 */
.rare-detail-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 250px;
  border-bottom: 2px solid var(--line-color);
}

.rare-info {
  padding: 1.5rem 1.5rem 1rem;
  border-right: 2px solid var(--line-color);
}

.rare-info dl {
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.8rem;
  align-items: start;
  margin-bottom: 0.6rem;
}

.rare-info dt {
  padding: 0.28rem 0.45rem;
  background: var(--area-color);
  color: #fff;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.rare-info dd {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.comment-row dd {
  line-height: 1.9;
}

.comment-row p {
  margin: 0;
}

/* 撤去・更新済アイコン。現存物件では rare-status ブロックごと削除 */
.rare-status {
  margin-top: 1rem;
}

.status-icon {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.rare-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: none;
  background: #ddd;
}

/* フッター：動画リンク */
.rare-detail-footer {
  background: var(--dark-bg);
  border-top: 1px solid #555;
  min-height:80px;
}

.movie-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  padding: 0.5rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.movie-link:hover {
  background: rgba(0,0,0,0.2);
}

.movie-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}

.movie-icon img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* 狭い画面では縦積み */
@media (max-width: 720px) {
  .rare-detail-window {
    width: 100vw;
    min-height: 100vh;
    border-left: none;
    border-right: none;
  }

  .photo-stage {
    height: 320px;
  }

  .photo-nav {
    width: 48px;
    height: 68px;
    font-size: 3.5rem;
  }

  .rare-detail-main {
    grid-template-columns: 1fr;
  }

  .rare-info {
    border-right: none;
    border-bottom: 2px solid var(--line-color);
  }

  .rare-map iframe {
    height: 260px;
  }
}

@media (max-width: 420px) {
  .photo-stage {
    height: 270px;
  }

  .info-row {
    grid-template-columns: 82px 1fr;
    gap: 0.55rem;
  }

  .rare-info {
    padding: 1rem;
  }

  .rare-info dd {
    font-size: 0.98rem;
  }

  .status-icon {
    width: 86px;
    height: 86px;
  }
}
