/* ==============================
   写真詳細ページ用スタイル
   ============================== */

.c-single {
  font-family: "Noto Sans JP", "futura-pt", sans-serif;
  color: #333;
  line-height: 1.8;
}

/* ヒーロー画像 */
.c-single__hero {
  width: 100%;
  max-height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.c-single__hero__image {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  object-fit: contain;
}

/* 本文エリア */
.c-single__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 120px;
}

@media screen and (max-width: 767px) {
  .c-single__body {
    padding: 32px 20px 80px;
  }
}

/* タイトル */
.c-single__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4em;
}

/* 日付 */
.c-single__date {
  font-size: 0.8125rem;
  color: #999;
  font-family: "futura-pt", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 1.2em;
}

/* キャプション */
.c-single__caption {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #eee;
}

/* コンテンツ */
.c-single__content {
  margin-bottom: 3em;
}

.c-single__content p {
  font-size: 0.9375rem;
  line-height: 1.9;
  margin-bottom: 1.4em;
}

.c-single__content p:last-child {
  margin-bottom: 0;
}

.c-single__content img {
  max-width: 100%;
  height: auto;
}

/* 前後ナビゲーション */
.c-single__nav {
  border-top: 1px solid #eee;
  padding-top: 2em;
}

.c-single__nav .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.c-single__nav .nav-previous,
.c-single__nav .nav-next {
  flex: 1;
  min-width: 0;
}

.c-single__nav .nav-next {
  text-align: right;
}

.c-single__nav a {
  text-decoration: none;
  color: #555;
  display: block;
}

.c-single__nav a:hover {
  color: #000;
}

.c-single__nav__label {
  display: block;
  font-size: 0.75rem;
  font-family: "futura-pt", sans-serif;
  color: #999;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}

.c-single__nav__title {
  display: block;
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .c-single__nav .nav-links {
    flex-direction: column;
    gap: 16px;
  }

  .c-single__nav .nav-next {
    text-align: left;
  }
}
