/* =============================================
   about.css — about.html 固有スタイル
   共通スタイルは style.css を参照
   ============================================= */

/* HERO (about専用) */
.about-hero {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--cream) 100%);
  padding: 56px 24px 40px;
  text-align: center;
}
.hero-char {
  width: 130px; height: 130px;
  margin: 0 auto 20px;
  animation: float 3.2s ease-in-out infinite;
}
.hero-char img { width: 100%; height: 100%; object-fit: contain; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.page-label {
  font-family: 'DM Serif Display', serif;
  font-size: 11px; letter-spacing: 0.35em;
  color: var(--pink-deep); margin-bottom: 8px;
  text-transform: uppercase;
}
.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: 40px; color: var(--red);
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.page-title-jp {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px; color: var(--pink-deep);
  letter-spacing: 0.25em;
}

/* WELCOME CARD */
.welcome-card {
  background: var(--white);
  border-radius: 28px;
  padding: 36px 28px;
  border: 2px solid var(--pink);
  box-shadow: 0 4px 24px rgba(240,160,184,0.12);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.welcome-card::before {
  content: '🐰';
  position: absolute; right: 20px; top: 20px;
  font-size: 48px; opacity: 0.08;
}
.welcome-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--red); margin-bottom: 16px;
  line-height: 1.5;
}
.welcome-text {
  font-size: 14px; line-height: 2.2;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}
.welcome-text em {
  color: var(--red); font-style: normal;
  font-weight: 700;
}

/* INTERESTS */
.interests-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.interests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.interest-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 16px;
  border: 2px solid var(--pink);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(240,160,184,0.08);
}
.interest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240,160,184,0.18);
}
.interest-emoji { font-size: 24px; margin-bottom: 6px; display: block; }
.interest-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--text); line-height: 1.4;
}

/* PHILOSOPHY CARD */
.philosophy-card {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--red) 100%);
  border-radius: 24px;
  padding: 32px 26px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(216,80,112,0.2);
}
.philosophy-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: var(--white);
}
.philosophy-text {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
}

/* nav active state (about固有の上書き) */
nav a.active { color: var(--red); }

/* logo リンク化対応 */
.logo-en { text-decoration: none; }
