/* 共通ヘッダ */
.mag-photos__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 16px;
}
.mag-photos__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}
.mag-photos__title {
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: var(--font-strong-weight);
  margin: 0;
}
.mag-photos__meta {
  color: #667085;
  margin: 0;
}
.mag-photos__back {
  margin-left: 12px;
  text-decoration: underline;
}

/* 上部の前後ナビ */
.mag-photos__topnav {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 16px;
}
.mag-photos__prev,
.mag-photos__next {
  font-weight: var(--font-bold-weight);
}

/* 縦並び（本文風） */
.mag-photos__stack {
  display: block;
  margin: 0;
  padding: 0;
}
.photo-block {
  margin: 24px 0 32px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
}
.photo-block.is-target {
  outline: 1px solid #0bb;
  outline-offset: 2px;
}
.photo-figure {
  margin: 0;
}
.photo-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.photo-caption {
  color: #475569;
  margin-top: 8px;
}

/* 各画像下の小ナビ */
.photo-mini-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.photo-mini-nav a {
  font-size: 14px;
}

/* 旧フォーカス＆グリッド用の定義は使わない（残っていてもOKだが未使用） */
/* 画像間の案内＆ボタン（SP優先でデザイン） */
.mag-photos__between {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 12px;
  margin: 12px 0 24px;
  padding:2em;
}
.mag-photos__between .between-next {
  font-size: 14px;
  color: #334155;
  white-space: nowrap;
}
.mag-photos__between .btn-read-article {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid #ccc;
  text-decoration: none;
  font-weight: 500;
  width: 150px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
}
.mag-photos__between .btn-read-article a:hover {
  transition: all 0.2s;
  background: var(--color-main);
  color: var(--color-text-sub);
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .mag-photos__between {
    gap: 12px;
  }
  .mag-photos__between .between-next {
    font-size: 15px;
  }
}

/* 既存の縦並び */
.photo-block {
  margin: 24px 0 32px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
}
.photo-block.is-target {
  outline: 1px solid #0bb;
  outline-offset: 2px;
}
.photo-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.photo-caption {
  color: #475569;
  margin-top: 8px;
}

.related-item {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-flow: nowrap;
}
.related-item {
  height: auto;
  width: 100%;
  background: #fff;
  padding: 3px;
  border: solid 3px #cecece;
  margin: 5px;
}

.related-item a {
  margin: 5px;
  background: #cecece;
  display: flex;
  justify-content: flex-start;
  flex-flow: nowrap;
  gap: 15px;
}
.related-item .thumb img {
  width: 100px;
  height: 100px;
  display: block;
}
