body{
  margin:0;
  padding: 22px 12px 40px;
  text-align:center;
  background: url('suzukiilst/eyes.gif') repeat;
  font-family: "MS PGothic","MS Gothic",system-ui,sans-serif;
  color:#111;
}

/* 上ナビ */
.topnav{
  max-width: 980px;
  margin: 0 auto 14px;
  display:flex;
  gap:10px;
  justify-content:center;
}
.topnav a{
  color:#ff00cc;
  text-decoration:none;
  padding: 8px 10px;
  border: 1px solid #000;
  background: rgba(255,255,255,0.70);
}

/* 透明ボード */
.board{
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0);
  border: 1px solid rgba(0,0,0,0.65);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.12);
  padding: 14px;
  backdrop-filter: blur(1px);
}

.ttl{
  font-size: 16px;
  letter-spacing: .12em;
  margin: 6px 0 14px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr)); /* ★4→2 */
  gap: 24px 22px; /* ★余白も少し増やす */
}

/* 囲わない展示単位 */
.item{
  margin: 0;
  padding: 0;
  text-align: center;
}

/* 正方形トリミングの箱 */
.thumbbox{
  width:100%;
  aspect-ratio: 1 / 1;
  min-height: 360px;   /* ★最低サイズを保証（好みで320〜420） */
  overflow: hidden;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
}


.thumbbox img{
  width:100%;
  height:100%;
  object-fit: cover;       /* ★トリミング */
  display:block;
}

/* キャプションだけ可読性確保 */
.item figcaption{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
  color:#000;
  background: rgba(255,255,255,0.55);
  display:inline-block;
  padding: 3px 6px;
  border: 1px solid rgba(0,0,0,0.6);
}

/* フッター */
.footer{
  margin-top: 14px;
  display:flex;
  justify-content:center;
}
.footer a{
  color:#ff00cc;
  text-decoration:none;
  padding: 8px 10px;
  border: 1px solid #000;
  background: rgba(255,255,255,0.70);
}
/* ブラウザ標準カーソル抹殺（カカポだけ表示） */
html, body, * { cursor: none !important; }

#custom-cursor{
  position: fixed;
  left: 0; top: 0;
  width: 40px;
  height: auto;
  pointer-events: none;
  display: none;
  z-index: 1000000;
}


