/* ベーススタイル */
:root {
  --text-color: #f4f4f4;
  --bg-color: #111;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  cursor: none; /* デフォルトのカーソルを消す */
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none; /* リンク上でもカーソルを消す */
}

/* ===============================================
  # マウスストーカー
  =============================================== */
.stalker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference; /* 色反転効果 */
  will-change: transform;
}

/* レイアウト用スタイル */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ヘッダー */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  position: relative;
  font-weight: 700;
  padding: 10px;
  display: inline-block;
}

/* ヒーローセクション */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  /* はみ出した背景光を隠す */
  overflow: hidden;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.hero__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 背景の色彩（オーブ） */
.glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* 文字の下に配置 */
  pointer-events: none;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px); /* 強くぼかしてふんわりさせる */
  opacity: 0.7;
  animation: float 10s infinite ease-in-out alternate;
}

/* 右上の青系オーブ */
.glow-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  top: -150px;
  right: -100px;
}

/* 左下の赤ピンク系オーブ */
.glow-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
  bottom: -100px;
  left: -100px;
  animation-duration: 15s; /* 動きのリズムを変える */
}

/* ふわふわ浮遊するアニメーション */
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 40px);
  }
}

h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  z-index: 1; /* 背景より手前 */
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  line-height: 1.8;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* ボタンリンク */
.btn-link {
  display: inline-block;
  padding: 15px 40px;
  background-color: #fff;
  color: #111;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}

.btn-link:hover {
  transform: scale(1.05);
}

/* 画像セクション */
.image-section {
  padding: 100px 0;
  background-color: #000;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.full-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(1.2);
  display: block;
}

/* フッター */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 50px 0;
  font-size: 0.8rem;
  opacity: 0.5;
  border-top: 1px solid #333;
}
