/* =========================================
   基本設定
========================================= */
body {
  margin: 1px;
  padding-top: 80px;  /* 固定ヘッダーの高さ分 */
  background: #fff;
  font-family: "univers-next-pro", sans-serif;
}

/* 共通リンクスタイル（ヘッダー用） */
a {
  text-decoration: none;
  color: #000;
}

a:visited {
  color: #000;
}

/* =========================================
   固定ヘッダー
========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 0px;
}

/* ヘッダー内レイアウト（幅はギャラリーと共通） */
.site-header .inner {
  max-width: 1035px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px 0;
}

/* 左上ブランド */
.brand {
  font-size: 17px;
  font-weight: 500;
  font-style: normal;
}

/* 右上ナビ */
.header-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: #000;
  font-size: 15px;
  font-weight: 300;
}

.header-nav a:hover {
  color: #888f;
}

/* =========================================
   ヘッダー色変化
========================================= */
.site-header {
  mix-blend-mode: difference;
}

.site-header a,
.site-header .brand {
  color: #fff;   /* difference で白を基準に反転させる */
}


/* =========================================
   ページの画像縦ギャラリー
========================================= */

.youareme-container {
  max-width: 1035px;       /* index と同じ幅 */
  margin: 0 auto;          /* 左右中央揃え */
  padding-top: 5px;       /* 固定ヘッダーとの重なり対策 */
  box-sizing: border-box;
}

.youareme-container img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 5px;      /* 画像間の余白 */
}

/* =========================================
   スマホ対応（共通）
========================================= */
@media screen and (max-width: 600px) {

  /* ヘッダー幅調整 */
  .site-header .inner {
    max-width: 100%;
  }

  /* ===== Youaremeページ専用 ===== */
  .youareme-container {
    padding-left: 10px;     /* スマホ時の左右余白 */
    padding-right: 10px;
  }

  .youareme-container img {
    width: 100%;
    height: auto;
  }

   /* ===== indexページのヘッダー処理 ===== */

  .brand {
    align-self: flex-start;
    font-size: 15px;
    padding-left: 10px;
  }

  .header-nav {
    align-self: flex-end;
    padding-right: 10px;
    text-align: left;  /
  }

  }


  /* =========================================
   クレジット
========================================= */

.credit-list {
  max-width: 1035px;
  margin: 0px auto;
  padding: 0 10px;
  box-sizing: border-box;
  row-gap: 5px;
  column-gap: 0px;
  font-family: "univers-next-pro", serif;
  font-size: 12px;
  font-weight: 200;
  line-height: 1.5;
}


.credit-list dd {
  margin: 0;
  padding: 0;
}
 

