/* WOOVE - about.css */

/* ===== HERO ===== */
.about-hero {
  padding: 160px 60px 100px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 35%; height: 100%;
  background: var(--brand-pale);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.about-hero-left {
  position: relative; z-index: 1;
  max-width: 640px;
}

.hero-label {
  font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.hero-label::before { content: ''; width: 36px; height: 2px; background: var(--brand); }

.about-hero-title {
  font-weight: 700; font-size: clamp(32px, 4vw, 52px);
  line-height: 1.4; margin-bottom: 28px; color: var(--ink);
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
.about-hero-title em { font-style: normal; color: var(--brand); display: block; }

.about-hero-sub {
  font-size: 14px; line-height: 2.3; color: var(--ink-light);
  max-width: 420px; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}

.about-profile-badge {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}
.about-profile-badge-text { }
.about-profile-badge-name {
  font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: 0.05em;
}
.about-profile-badge-role {
  font-size: 11px; color: var(--ink-light); letter-spacing: 0.1em; margin-top: 3px;
}

/* 右側：SVGアイコンイラスト */
.about-visual {
  position: relative;
  opacity: 0; animation: fadeIn 1.2s 0.6s forwards;
}

/* WOOVEキャラクターSVG */
.woove-character {
  width: 260px; height: 260px;
}

/* フローティングバッジ */
.float-badge {
  position: absolute;
  background: var(--brand);
  color: var(--white);
  padding: 10px 18px;
  font-size: 11px; letter-spacing: 0.1em; font-weight: 500;
}
.float-badge-1 { top: 20%; right: -20px; animation: floatY 3s ease-in-out infinite; }
.float-badge-2 { bottom: 25%; left: -20px; animation: floatY 3s ease-in-out 1.5s infinite; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ===== SECTION COMMON ===== */
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--brand); }
/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 120px 60px;
  background: var(--bg-soft);
}
.philosophy-inner {
  max-width: 800px; margin: 0 auto;
}
.philosophy-text {
  font-size: 16px; line-height: 2.8; color: var(--ink-mid);
  margin-bottom: 32px;
}
.philosophy-text + .philosophy-text { margin-top: 0; }
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 4.5vw, 34px); /* スマホで少しだけ小さく調整 */
  font-weight: 300;
  line-height: 1.6; /* 行間をわずかにタイトに */
  letter-spacing: -0.02em; /* 文字間をわずかに詰める */
  padding: 32px 0 32px 24px;
  border-left: 3px solid var(--brand);
  margin: 40px 0;
  word-break: keep-all; /* 単語の途中での改行を防ぐ */
  overflow-wrap: anywhere; /* 溢れそうな場合は適切に処理 */}
.philosophy-quote em { font-style: normal; color: var(--brand); }

/* ===== PROFILE ===== */
.profile {
  padding: 120px 60px;
  background: var(--bg);
}

.profile-office {
  max-width: 760px;
}
.profile-office-info {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
}
.profile-info-row {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 24px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px; line-height: 1.8;
  align-items: start;
}
.profile-info-label {
  color: var(--brand); font-weight: 500; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.profile-info-value { color: var(--ink-mid); }

/* スキル */
.skill-groups { display: flex; flex-direction: column; gap: 24px; }
.skill-group-title {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brand); font-weight: 500; margin-bottom: 12px;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
  font-size: 11px; padding: 5px 14px;
  background: var(--brand-pale); color: var(--brand-dark);
  border: 1px solid var(--brand-mid); letter-spacing: 0.05em;
}

/* ===== EQUIPMENT ===== */
.equipment {
  padding: 100px 60px;
  background: var(--bg-soft);
  /* 全幅表示のため max-width を外す */
}
.equipment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.equip-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 40px 36px;
  transition: all 0.3s;
}
.equip-card:hover {
  border-color: var(--brand-mid);
  box-shadow: 0 8px 32px rgba(17,168,184,0.08);
  transform: translateY(-3px);
}
.equip-category {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brand); font-weight: 500; margin-bottom: 16px;
}
.equip-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.equip-list li {
  font-size: 13px; line-height: 1.7; color: var(--ink-mid);
  display: flex; align-items: flex-start; gap: 10px;
}
.equip-list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--brand); margin-top: 7px; flex-shrink: 0;
}

/* ===== CTA ===== */
.cta-label::before, .cta-label::after { content: ''; width: 28px; height: 2px; background: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(17,168,184,0.28); }
.btn-outline-brand:hover { background: var(--brand); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(17,168,184,0.28); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav, nav.scrolled { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-hero { padding: 120px 24px 60px; }
  .about-hero::before { display: none; }
  .philosophy { padding: 72px 24px; }
  .profile { padding: 72px 24px; }
  .profile-info-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .equipment { padding: 72px 24px; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 72px 24px; }
  footer { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-right { text-align: left; }
}
@media (max-width: 599px) {
  .about-hero-title { font-size: 28px; }
  .philosophy-text { font-size: 14px; }
  .equipment-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  footer { padding: 36px 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ===== ひらがな・句読点 縮小 ===== */
/* ===== Profile・Equipment セクション中央寄せ ===== */
.profile {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
/* equipmentは全幅・グリッドのみ中央寄せ */
.equipment {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
.profile > .section-label,
.profile > .section-title,
.equipment > .section-label,
.equipment > .section-title {
  text-align: center;
}
.profile > .section-label,
.equipment > .section-label {
  justify-content: center;
}
