@charset "utf-8";
/* CSS Document */
/* ===============================
   Components
   - buttons
   - animations
   - common parts
=============================== */

/* ===============================
   ボタン・アニメーション
   Button
=============================== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: var(--accent-color);
  color: #fff;
}

.btn-center {
  text-align: center;
  margin-top: 30px;
}

.btn-left {
  text-align: left;
  margin-top: 30px;
}

/* ===============================
   Animation
=============================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay {
  transition-delay: 0.2s;
}

/* ===============================
   Page Hero (共通見出し)
=============================== */
.page-hero h1 {
  text-align: center;
}

.page-hero .en {
  display: block;
  font-family: 'Shippori Mincho', serif;
  color: var(--accent-color);
  letter-spacing: 0.18em;
}

.page-hero .ja {
  display: block;
  font-size: 0.75rem;
  margin-top: 6px;
}

/* ===============================
   Text helpers
=============================== */
.text-center {
  text-align: center;
}

.text-sub {
  color: var(--text-sub);
  font-size: 0.9rem;
}
