/* リセットスタイル */
body, h1, h2, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* 背景用のスタイル */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  margin-top: 20%;
}

.title h1 {
  font-size: 4rem;
  color: #62dafb;
  text-shadow: 0 0 10px #62dafb, 0 0 20px #62dafb;
}

.title p {
  font-size: 1.5rem;
  color: #ffffffc7;
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* 上に20pxずれた状態から */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 表示される位置へ */
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}

/* About内のセクション配置を整える */
#about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem; /* カード間の隙間 */
  padding: 2rem;
}

/* ガラスカードのデザイン */
.glass-card {
  flex: 1 1 calc(45% - 2rem); /* 列数調整 */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  display: block; /* <a> 全体を表示 */
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.glass-card:hover {
  transform: scale(1.02); /* 少し拡大してクリック感を演出 */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.glass-card h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.glass-card p {
  font-size: 1.2rem;
  color: #ffffffd9;
}

/* ボタンのデザイン（ネオン風） */
.neon-button {
  display: inline-block;
  padding: 1rem 2rem;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  border: 2px solid #00d8ff;
  border-radius: 50px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.neon-button:hover {
  color: #0f0f0f;
  background-color: #00d8ff;
  box-shadow: 0 0 20px #00d8ff, 0 0 30px #00d8ff;
}
