@charset "UTF-8";

/* ==========================================================================
   Reset & Base Settings
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #ffffff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  visibility: visible !important; /* jsズーム依存の非表示を解消 */
  -webkit-text-size-adjust: 100%;
}

a {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

/* ==========================================================================
   Layout Container
   ========================================================================== */
#wrap {
  width: 100%;
  max-width: 530px; /* モバイル最適化表示の上限幅 */
  margin: 0 auto;
  background-color: #000000;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Clearfix */
.clearfix::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: #000000;
}

.madiaBox {
  width: 100%;
  text-align: center;
}

.madiaBox img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ==========================================================================
   Media List (ライブフォト・レポート一覧)
   ========================================================================== */
.media {
  flex: 1;
  width: 100%;
  padding: 0;
}

.media .madiaBox {
  padding: 0;
  border-bottom: 1px solid #333333;
  background: linear-gradient(to top, #1a1a1a 0%, #000000 100%);
  transition: background-color 0.2s ease;
}

.media .madiaBox:hover {
  background: linear-gradient(to top, #262626 0%, #0d0d0d 100%);
}

.media .madiaBox a {
  display: block;
  width: 100%;
  padding: 16px 20px;
  color: #ffffff;
  background: url("/static/larcenciel/transfer/feature/20th/images/media_icoarw01.png") no-repeat right 16px center;
  background-size: 10px auto;
  box-sizing: border-box;
}

.media .madiaBox p {
  padding-right: 25px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

/* 日付表記テキスト */
.media .madiaBox p::first-line {
  font-size: 11px;
  color: #aaaaaa;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  width: 100%;
  margin-top: auto;
  background: #111111;
  border-top: 1px solid #222222;
}

footer p {
  padding: 15px 16px;
  margin: 0;
  font-size: 10px;
  color: #888888;
  text-align: right;
  font-family: Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   Detail / Member Photo Page (下層ページ用 - カラム落ち修正版)
   ========================================================================== */
.detailTtl {
  padding: 16px 20px;
  background-color: #111111;
  border-bottom: 1px solid #333333;
}

.detailArticle {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
}

.detailDate {
  font-size: 12px;
  color: #aaaaaa;
  font-weight: normal;
}

.detailMemberBlock {
  padding: 16px 20px;
  background: #000000;
  border-bottom: 1px solid #333333;
}

.detailMemberList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detailMemberList li {
  padding: 12px 0;
  border-bottom: 1px dashed #222222;
  font-size: 15px;
  display: flex;             /* 横並びレイアウトを強制 */
  align-items: center;       /* 垂直方向中央寄せ */
  gap: 8px;                  /* ◆ と リンクの間の余白 */
}

.detailMemberList li:last-child {
  border-bottom: none;
}

/* 菱形記号 */
.detailMemberList .symbol {
  color: #ffffff;
  font-size: 12px;
}

/* メンバーリンク */
.detailMemberList a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  padding-right: 20px;
  background: url("/static/larcenciel/transfer/feature/20th/images/media_icoarw01.png") no-repeat right center;
  background-size: 8px auto;
  text-decoration: none;
  transition: opacity 0.2s;
}

.detailMemberList a:hover {
  opacity: 0.8;
  color: #e6b800;
}

/* TOPへ戻るボタンエリア */
.detailBackBlock {
  padding: 20px;
  text-align: right;
}

.detailBackBlock a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  color: #aaaaaa;
  border: 1px solid #444444;
  border-radius: 4px;
}