/* =========================================
   基本設定
========================================= */
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;
}

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

  /* ヘッダー幅調整 */
  .site-header .inner {
    max-width: 100%;
  }
/* ===== indexページのヘッダー処理 ===== */

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

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

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

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


.text {
  font-size: 10px;
  text-align: center;
  color: #000000;
  font-family: "cofo-sans-mono-variable", sans-serif;
  font-variation-settings: "wght" 400;
}

body {
  height: 100vh;
  margin: 0;
  margin-top: -100px;
  display: flex;
  justify-content: center;
  align-items: center;
}




