:root {
  --white: #FEFEFE;
  --off-white: #FAF8F6;
  --cream: #F5F0EB;
  --pink-light: #FDEEF2;
  --pink: #F4A7BE;
  --pink-mid: #E8849E;
  --pink-deep: #C9607A;
  --pink-dark: #A0395A;
  --text-dark: #2A1A20;
  --text-mid: #6B4055;
  --text-light: #9B7080;
  --gold: #C9A96E;
  --border: rgba(244,167,190,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(254,254,254,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: 22px;
  letter-spacing: 0.3em;
  color: var(--pink-dark);
  text-decoration: none;
}
.header-logo span { color: var(--pink); font-weight: 300; }

nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
nav a:hover { color: var(--pink-deep); }

.header-cta {
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-dark));
  color: white !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  font-weight: 400 !important;
}
.header-cta:hover { opacity: 0.85; }

/* ============ HERO ============ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* 画像を左・テキストを右に入れ替え */
.hero-right {
  order: -1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--pink-light);
  overflow: hidden;
  padding: 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
}

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--pink-mid);
  font-weight: 300;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--pink-mid);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.hero-title em { font-style: italic; color: var(--pink-deep); }

.hero-subtitle-jp {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  line-height: 2;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.badge {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--pink-dark);
  border: 1px solid var(--pink);
  padding: 6px 14px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pink-mid) 0%, var(--pink-dark) 100%);
  color: white;
  text-decoration: none;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 400;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.3s ease;
}
.btn-primary:hover::after { left: 0; }

.btn-secondary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--pink-deep); }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-light);
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(244,167,190,0.12);
  letter-spacing: -0.05em;
  line-height: 1;
  right: -20px;
  bottom: 40px;
  white-space: nowrap;
  pointer-events: none;
  font-style: italic;
}

.hero-visual-card {
  position: relative;
  z-index: 2;
  width: 360px;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #fff5f8 0%, #fce4ee 50%, #f8d0e0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.hero-stat-card {
  background: white;
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(160,57,90,0.12);
  border-left: 3px solid var(--pink);
  flex: 1;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--pink-dark);
  line-height: 1;
}
.hero-stat-label { font-size: 10px; color: var(--text-light); letter-spacing: 0.1em; margin-top: 4px; }

.hero-review-card {
  background: white;
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(160,57,90,0.12);
  min-width: 140px;
  flex: 1;
}

.hero-cards-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.stars { color: #F4C430; font-size: 12px; letter-spacing: 2px; }
.review-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.review-label { font-size: 10px; color: var(--text-light); letter-spacing: 0.05em; }

/* ============ SECTION BASE ============ */
section { padding: 100px 0; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
.section-header { text-align: center; margin-bottom: 64px; }

.section-en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--pink-mid);
  font-weight: 300;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
/* 数字のズレ防止 */
.section-title .num {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--pink), var(--pink-deep));
  margin: 20px auto 0;
}

/* ============ POINTS ============ */
#points { background: var(--off-white); }
.points-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.point-card {
  background: white;
  padding: 52px 40px;
  position: relative;
  transition: transform 0.3s ease;
}
.point-card:hover { transform: translateY(-4px); }

.point-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 48px;
  font-weight: 100;
  color: rgba(244,167,190,0.4);
  line-height: 1;
  margin-bottom: 8px;
}

.point-icon { font-size: 32px; margin-bottom: 20px; display: block; }

.point-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.point-desc { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 2; }

.point-accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 60px;
  background: linear-gradient(to bottom, var(--pink), transparent);
}

/* ============ VOICE ============ */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.voice-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

.voice-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--pink-light);
  line-height: 0.5;
  margin-bottom: 16px;
  font-style: italic;
}

.voice-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1.6; }
.voice-body { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 2.2; }

.voice-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-name { font-family: 'Josefin Sans', sans-serif; font-size: 12px; letter-spacing: 0.1em; color: var(--text-mid); font-weight: 300; }
.author-age { font-size: 11px; color: var(--text-light); }
.voice-stars { color: #F4C430; font-size: 12px; margin-left: auto; }

/* ============ FLOW ============ */
#flow { background: var(--pink-light); }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--pink), var(--pink-deep), var(--pink));
  z-index: 0;
}

.flow-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }

.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--pink-dark);
}

.step-icon { font-size: 20px; margin-bottom: 12px; display: block; }
.step-title { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; letter-spacing: 0.05em; }
.step-desc { font-size: 11px; color: var(--text-light); line-height: 1.8; font-weight: 300; }

/* ============ MENU ============ */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.menu-card { border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.3s ease; }
.menu-card:hover { box-shadow: 0 12px 48px rgba(160,57,90,0.1); }

.menu-card-header {
  padding: 32px 36px 24px;
  background: linear-gradient(135deg, var(--pink-light), white);
  border-bottom: 1px solid var(--border);
}

.menu-en { font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.3em; color: var(--pink-mid); font-weight: 300; display: block; margin-bottom: 8px; }
.menu-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--text-dark); }
.menu-card-body { padding: 28px 36px; }

.menu-table { width: 100%; border-collapse: collapse; }
.menu-table tr { border-bottom: 1px solid rgba(244,167,190,0.15); }
.menu-table tr:last-child { border-bottom: none; }
.menu-table td { padding: 14px 0; font-size: 13px; font-weight: 300; color: var(--text-mid); }
.menu-table td:last-child { text-align: right; font-weight: 500; color: var(--text-dark); }

.menu-featured { background: linear-gradient(135deg, var(--pink-dark), var(--pink-deep)); color: white; }
.menu-featured .menu-card-header { background: rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.15); }
.menu-featured .menu-en { color: rgba(255,255,255,0.7); }
.menu-featured .menu-title { color: white; }
.menu-featured .menu-table td { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.12); }
.menu-featured .menu-table td:last-child { color: white; }

.popular-tag {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  margin-left: 10px;
  vertical-align: middle;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
}

/* ============ STAFF ============ */
#staff { background: var(--cream); }

.staff-intro { text-align: center; max-width: 600px; margin: 0 auto 64px; font-size: 14px; color: var(--text-mid); line-height: 2.2; font-weight: 300; }
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.staff-card { text-align: center; }

.staff-img {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.staff-img img { width: 100%; height: 100%; object-fit: cover; }
.staff-img::after { content: ''; position: absolute; inset: 6px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.6); pointer-events: none; }

.staff-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--text-dark); margin-bottom: 4px; }
.staff-role { font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.2em; color: var(--pink-mid); font-weight: 300; margin-bottom: 16px; }
.staff-bio { font-size: 12px; color: var(--text-mid); line-height: 2; font-weight: 300; }

/* ============ STORES ============ */
.stores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.store-card {
  background: var(--off-white);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.3s ease;
  position: relative;
}
.store-card:hover { background: var(--pink-light); }

.store-num { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.3em; color: var(--pink-mid); font-weight: 300; font-style: italic; margin-bottom: 12px; }
.store-name { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; letter-spacing: 0.05em; }
.store-name-en { font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.2em; color: var(--text-light); font-weight: 300; margin-bottom: 20px; }
.store-info { font-size: 12px; color: var(--text-mid); line-height: 2.2; font-weight: 300; }

.store-new { position: absolute; top: 16px; right: 16px; background: var(--pink-deep); color: white; font-size: 9px; letter-spacing: 0.1em; padding: 3px 8px; font-family: 'Josefin Sans', sans-serif; font-weight: 400; }

/* ============ FAQ ============ */
#faq { background: var(--off-white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.2s;
  list-style: none;
}
.faq-q:hover { color: var(--pink-deep); }

.faq-q-mark { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--pink); font-style: italic; flex-shrink: 0; line-height: 1.4; }
.faq-q-text { font-size: 14px; font-weight: 500; line-height: 1.7; flex: 1; }

.faq-toggle { flex-shrink: 0; width: 20px; height: 20px; border: 1px solid var(--pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--pink-deep); transition: transform 0.3s ease; margin-top: 2px; }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-a-inner { overflow: hidden; font-size: 13px; color: var(--text-mid); line-height: 2.2; font-weight: 300; padding: 0 36px; }
.faq-a-inner-pad { padding-bottom: 24px; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--pink-light); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-deep) 50%, var(--pink-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'ecxia white';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  font-style: italic;
}
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: white; margin-bottom: 12px; font-style: italic; position: relative; }
.cta-banner p { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 300; margin-bottom: 40px; letter-spacing: 0.15em; position: relative; }

.btn-cta-white { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--pink-dark); text-decoration: none; padding: 18px 48px; font-size: 14px; font-weight: 500; letter-spacing: 0.1em; transition: all 0.3s ease; position: relative; }
.btn-cta-white:hover { background: var(--pink-light); }

/* ============ FOOTER ============ */
footer { background: var(--text-dark); padding: 64px 0 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 60px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo { font-family: 'Josefin Sans', sans-serif; font-weight: 100; font-size: 22px; letter-spacing: 0.3em; color: white; margin-bottom: 16px; }
.footer-logo span { color: var(--pink); font-weight: 300; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 2; font-weight: 300; }

.footer-col h4 { font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.3em; color: var(--pink); font-weight: 300; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; letter-spacing: 0.05em; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--pink); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); font-weight: 300; }

.footer-sns { display: flex; gap: 16px; }
.sns-link { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px; transition: all 0.2s; }
.sns-link:hover { border-color: var(--pink); background: rgba(244,167,190,0.1); }

/* ============ FLOATING CTA ============ */
.floating-cta { position: fixed; bottom: 32px; right: 32px; z-index: 50; }
.floating-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-dark));
  color: white; text-decoration: none;
  font-size: 9px; letter-spacing: 0.05em;
  font-family: 'Josefin Sans', sans-serif; font-weight: 300;
  box-shadow: 0 8px 32px rgba(160,57,90,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center; line-height: 1.4;
}
.floating-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(160,57,90,0.5); }
.floating-btn-icon { font-size: 22px; margin-bottom: 4px; }

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 24px 40px; }
  .hero-title { font-size: 42px; }
  .hero-right { min-height: 360px; }
  .section-inner { padding: 0 24px; }
  section { padding: 72px 0; }
  .points-grid, .voice-grid, .menu-grid, .stores-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; gap: 40px; }
  .flow-steps { grid-template-columns: 1fr; gap: 32px; }
  .flow-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .floating-cta { bottom: 20px; right: 20px; }
}

/* ============ COLUMN ============ */
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.column-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: block;
}
.column-card:hover { box-shadow: 0 8px 32px rgba(160,57,90,0.1); transform: translateY(-3px); }

.column-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--pink-light);
}
.column-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.column-card:hover .column-img img { transform: scale(1.03); }

.column-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}

.column-body { padding: 20px 24px; }
.column-date { font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.2em; color: var(--pink-mid); font-weight: 300; margin-bottom: 8px; }
.column-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.6; }
.column-excerpt { font-size: 12px; color: var(--text-light); line-height: 1.8; font-weight: 300; }

/* ============ STAFF TABS ============ */
.staff-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.staff-tab {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  border: 1px solid var(--border);
  background: white;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 300;
}
.staff-tab:hover, .staff-tab.active {
  background: var(--pink-dark);
  color: white;
  border-color: var(--pink-dark);
}

.staff-card.hidden { display: none; }

/* ============ POINT / FLOW 画像対応 ============ */
.point-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 20px; }
.point-img img { width: 100%; height: 100%; object-fit: cover; }

.step-img { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; margin: 0 auto 12px; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .column-grid { grid-template-columns: 1fr; }
  .staff-tabs { gap: 6px; }
  .staff-tab { font-size: 10px; padding: 6px 14px; }
}
