/* ==========================================
   Forest Dali Recruit - Modern Dynamic Design
   参考: nahato.co.jp / chocolate-inc.com / kit-en.co.jp
   ========================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --text: #1a1a1a;
  --text-mid: #333;
  --text-light: #666;
  --bg: #fff;
  --cream: #FAFAF7;
  --accent: #FF6B35;
  --accent2: #7C3AED;
  --highlight: #FFE566;
  --font: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.sp-only { display: none; }

/* ==========================================
   SECTION LABEL (CHOCOLATEスタイル)
   ========================================== */
.section-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ==========================================
   MARKER HIGHLIGHT
   ========================================== */
.marker {
  background: linear-gradient(transparent 55%, var(--highlight) 55%, var(--highlight) 90%, transparent 90%);
  padding: 0 4px;
}
.marker-sm {
  background: linear-gradient(transparent 60%, var(--highlight) 60%, var(--highlight) 88%, transparent 88%);
  padding: 0 2px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-scale {
  opacity: 1; transform: none;
}
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-scale.visible {
  opacity: 1; transform: none;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0); backdrop-filter: blur(0px);
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 100%; margin: 0; padding: 0 32px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; transition: 0.3s; }
.header:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
.logo-img--footer { height: 44px; filter: brightness(0) invert(1); opacity: 0.7; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.85); transition: 0.3s;
}
.header.scrolled .nav-link { color: var(--text-mid); }
.nav-link:hover { opacity: 0.7; }
.nav-link--cta {
  background: var(--accent); color: #fff !important;
  padding: 10px 24px; border-radius: 100px;
  transition: all 0.3s ease;
}
.nav-link--cta:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,53,0.35); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; transition: 0.3s; border-radius: 2px;
}
.header.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================
   HERO (ナハト + KITEN風)
   ========================================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; position: relative;
  overflow: hidden; background: var(--black);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(59,130,246,0.15) 0%, transparent 60%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero-grid {
  position: absolute; inset: 0; overflow: hidden;
  display: flex; flex-wrap: wrap; align-content: center;
  justify-content: center; gap: 40px; padding: 40px;
  opacity: 0.06;
}

.hero-grid-text {
  font-family: var(--font-en); font-size: clamp(60px, 10vw, 140px);
  font-weight: 900; color: #fff; white-space: nowrap;
  letter-spacing: -0.04em; line-height: 1;
  animation: floatText 20s linear infinite;
}
.hero-grid-text:nth-child(even) { animation-direction: reverse; }

@keyframes floatText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100px); }
}

.hero-content {
  text-align: center; padding: 0 24px; position: relative; z-index: 1;
}

.hero-label {
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.25em; color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeIn 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(44px, 10vw, 88px);
  font-weight: 900; line-height: 1.25;
  color: #fff; margin-bottom: 28px;
  letter-spacing: -0.04em;
}

.hero-line {
  display: block;
  opacity: 0; transform: translateY(40px);
  animation: heroFadeIn 0.8s forwards;
}
.hero-line[data-delay="0"] { animation-delay: 0.5s; }
.hero-line[data-delay="1"] { animation-delay: 0.8s; }

.hero-line--accent {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-catch {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.6); line-height: 2;
  margin-bottom: 32px;
  opacity: 0; animation: heroFadeIn 0.8s 1.1s forwards;
}

.hero-tags {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0; animation: heroFadeIn 0.8s 1.3s forwards;
}
.hero-tag {
  font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.hero-tag:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 100px;
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 800; font-family: var(--font-en);
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  opacity: 0; animation: heroFadeIn 0.8s 1.5s forwards;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}
.hero-cta .arrow {
  transition: transform 0.3s ease;
}
.hero-cta:hover .arrow {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 1;
}
.hero-scroll span {
  font-family: var(--font-en); font-size: 9px;
  font-weight: 600; letter-spacing: 0.2em; color: rgba(255,255,255,0.35);
}
.hero-scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.3);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================
   ABOUT
   ========================================== */
.about { padding: 140px 0 100px; }

.about-title {
  font-size: clamp(26px, 5vw, 40px); font-weight: 900;
  line-height: 1.7; color: var(--black); margin-bottom: 48px;
}

.about-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.about-photo img {
  width: 100%; max-height: 320px; object-fit: contain;
}

.about-photo-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0e8df, #e8ddd0);
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; color: var(--text-light);
  font-size: 13px; font-weight: 500;
  transition: transform 0.5s ease;
}
.about-photo-placeholder:hover { transform: scale(1.02); }

.about-text-block p {
  font-size: 15px; line-height: 2.1; color: var(--text);
  margin-bottom: 20px;
}
.about-sub {
  font-size: 13px !important; color: var(--text-mid) !important;
  padding-top: 20px; border-top: 1px solid #eee;
}

/* ==========================================
   CEO MESSAGE
   ========================================== */
.ceo {
  padding: 100px 0; background: var(--cream);
}
.ceo .container { max-width: 1200px; }

.ceo-heading {
  font-size: clamp(26px, 4vw, 36px); font-weight: 900;
  color: var(--black); margin-bottom: 48px;
}

.ceo-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}

.ceo-photo-side {
  position: relative;
}

.ceo-photo-img {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 20px;
  object-fit: cover; object-position: top center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.ceo-text-side { padding: 16px 0; }

.ceo-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px; line-height: 1; color: var(--accent);
  opacity: 0.3; margin-bottom: -24px; margin-left: -8px;
}

.ceo-lead {
  font-size: clamp(22px, 3vw, 28px); font-weight: 900;
  line-height: 1.9; color: var(--black); margin-bottom: 36px;
  position: relative; padding-left: 0;
}
.ceo-lead::before {
  display: none;
}

.ceo-messages p {
  font-size: 15px; line-height: 2.1; color: var(--text);
  margin-bottom: 18px;
}

.ceo-sign {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid #e8e8e8;
  display: flex; align-items: center; gap: 16px;
}
.ceo-role { font-size: 13px; color: var(--accent); font-weight: 700;
  background: rgba(255,107,53,0.08); padding: 4px 14px; border-radius: 20px;
}
.ceo-name {
  font-size: 18px; font-weight: 900; color: var(--black);
  letter-spacing: 0.1em;
}

.ceo-photo-placeholder {
  width: 100%; aspect-ratio: 3/4; border-radius: 16px;
  background: linear-gradient(135deg, #e8ddd0, #d4c4b0); display: flex; align-items: center;
  justify-content: center; color: var(--text-light);
  font-size: 13px; font-weight: 500; text-align: center; line-height: 1.4;
}
.ceo-photo-img {
  width: 100%; border-radius: 16px;
  object-fit: cover;
}

/* ==========================================
   DATA
   ========================================== */
.data {
  padding: 120px 0 100px; background: var(--black); color: #fff;
}

.data-heading {
  font-size: clamp(26px, 4vw, 36px); font-weight: 900;
  color: #fff; margin-bottom: 48px;
}
.data .section-label { color: var(--accent); }
.data .marker-sm {
  background: linear-gradient(transparent 60%, rgba(255,107,53,0.4) 60%, rgba(255,107,53,0.4) 88%, transparent 88%);
}

.data-items {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.data-item {
  text-align: center;
  padding: 36px 16px 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.data-item:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.data-item--pop {
  border-color: rgba(255,107,53,0.4);
  background: rgba(255,107,53,0.08);
}
.data-item--pop:hover {
  border-color: rgba(255,107,53,0.6);
}

.data-num {
  font-family: var(--font-en); font-size: 48px; font-weight: 900;
  display: block; line-height: 1.1; color: #fff;
}
.data-item--pop .data-num { color: var(--accent); }
.data-num small {
  font-size: 15px; font-family: var(--font);
  font-weight: 500; margin-left: 2px; color: rgba(255,255,255,0.5);
}

.data-label {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-top: 12px; font-weight: 600; letter-spacing: 0.04em;
}

/* ==========================================
   WORK (CHOCOLATE風のナンバリング)
   ========================================== */
.work { padding: 120px 0; }

.work-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 900;
  color: var(--black); margin-bottom: 16px;
}
.work-sub {
  font-size: 15px; color: var(--text-mid); line-height: 2;
  margin-bottom: 48px;
}

.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.work-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.work-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-accent); border-radius: 20px 20px 0 0;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.work-card-icon {
  margin-bottom: 16px; color: var(--card-accent);
}
.work-card-icon svg {
  width: 36px; height: 36px;
}
.work-card-num {
  font-family: var(--font-en); font-size: 40px; font-weight: 900;
  color: var(--card-accent); opacity: 0.15;
  position: absolute; top: 16px; right: 20px; line-height: 1;
}
.work-card h3 {
  font-size: 17px; font-weight: 800; color: var(--black);
  margin-bottom: 12px;
}
.work-card p {
  font-size: 13.5px; color: var(--text-mid); line-height: 2; margin-bottom: 16px;
}
.work-card-tag {
  font-size: 11px; color: var(--card-accent); font-weight: 600;
  letter-spacing: 0.02em; opacity: 0.8;
}

/* ==========================================
   CULTURE
   ========================================== */
.culture { padding: 120px 0; background: var(--cream); }

.culture-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 900;
  color: var(--black); margin-bottom: 8px;
}
.culture-sub {
  font-size: 14px; color: var(--text-light); margin-bottom: 48px;
}

.culture-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.culture-item {
  background: var(--bg); border-radius: 16px;
  padding: 32px 28px; transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.culture-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.3s ease;
}
.culture-item:hover::before { opacity: 1; }
.culture-item:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }

.culture-num {
  font-family: var(--font-en); font-size: 36px; font-weight: 900;
  color: rgba(0,0,0,0.04); display: block; margin-bottom: 12px;
  line-height: 1;
}

.culture-item h3 {
  font-size: 17px; font-weight: 900; color: var(--black);
  margin-bottom: 12px; line-height: 1.5;
}
.culture-item p {
  font-size: 14px; color: var(--text-mid); line-height: 1.9;
}

/* ==========================================
   PEOPLE (カード型)
   ========================================== */
.people { padding: 120px 0; overflow: hidden; }

.people-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 900;
  color: var(--black); margin-bottom: 64px;
}

.people-list {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 80px;
  padding: 0 24px;
}

.person-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.person-row--reverse { direction: rtl; }
.person-row--reverse > * { direction: ltr; }

.person-visual {
  position: relative;
}

.person-photo {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.person-row:hover .person-photo {
  transform: scale(1.02);
  box-shadow: 0 24px 72px rgba(0,0,0,0.2);
}
.person-photo-label {
  color: rgba(255,255,255,0.6); font-size: 14px;
  font-weight: 700; font-family: var(--font-en);
  letter-spacing: 0.15em;
}

.person-number {
  position: absolute; bottom: -20px; right: -10px;
  font-family: var(--font-en); font-size: clamp(80px, 10vw, 120px);
  font-weight: 900; color: var(--accent);
  opacity: 0.15; line-height: 1; pointer-events: none;
  z-index: 1;
}
.person-row--reverse .person-number {
  right: auto; left: -10px;
}

.person-content {
  padding: 16px 0;
  position: relative;
}

.person-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px; line-height: 1; color: var(--accent);
  opacity: 0.3; margin-bottom: -24px; margin-left: -8px;
}

.person-qa {
  margin-bottom: 24px;
}
.person-qa-label {
  font-size: 13px; font-weight: 800; color: var(--accent);
  letter-spacing: 0.04em; margin-bottom: 8px;
  padding-left: 12px; border-left: 3px solid var(--accent);
}

.person-quote {
  font-size: 16px; color: var(--text); line-height: 2;
  margin-bottom: 0;
}
.person-quote strong {
  color: var(--accent); font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(255,107,53,0.12) 60%);
}

.person-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}
.person-name {
  font-size: 18px; font-weight: 900; color: var(--black);
  font-family: var(--font-en);
}
.person-role {
  font-size: 13px; color: var(--accent); font-weight: 700;
  background: rgba(255,107,53,0.08); padding: 4px 12px;
  border-radius: 20px;
}
.person-year {
  font-size: 12px; color: var(--text-light); font-weight: 500;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery { padding: 80px 0 100px; background: var(--cream); }

.gallery-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 900;
  color: var(--black); margin-bottom: 32px;
}

/* Carousel */
.carousel-wrapper {
  position: relative; max-width: 1100px; margin: 0 auto; padding: 0 20px;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.5s ease;
}
.gallery-item {
  /* each item = 60% of viewport width, leaving 20% peek on each side */
  width: calc(60% - 14px); min-width: calc(60% - 14px);
  height: 380px; border-radius: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.95); font-size: 20px; font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: relative; overflow: hidden; cursor: pointer;
  transition: opacity 0.5s ease, filter 0.5s ease;
  opacity: 0.4; filter: brightness(0.7);
}
.gallery-item.active { opacity: 1; filter: brightness(1); }
.gallery-item span { transition: opacity 0.3s ease; position: relative; z-index: 1; }
.gallery-desc {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  padding: 32px; text-align: center;
  background: rgba(0,0,0,0.6);
  color: #fff; font-size: 17px; font-weight: 600; line-height: 2.1;
  letter-spacing: 0.02em;
  opacity: 0; transition: opacity 0.3s ease;
  text-shadow: none; border-radius: 20px;
}
.gallery-item.active:hover span { opacity: 0; }
.gallery-item.active:hover .gallery-desc { opacity: 1; }

/* Arrows */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: none; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  font-size: 28px; color: var(--black); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2;
}
.carousel-arrow:hover { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(255,107,53,0.3); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

/* Dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 24px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: #ccc; cursor: pointer; transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.carousel-dot.active { background: var(--accent); transform: scale(1.3); }

/* ==========================================
   BENEFITS
   ========================================== */
.benefits { padding: 120px 0; }

.benefits-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 900;
  color: var(--black); margin-bottom: 40px;
}

.benefits-tags {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 48px;
}

.benefit-tag {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream); border-radius: 16px;
  padding: 24px; transition: all 0.3s ease;
}
.benefit-tag:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }

.benefit-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.benefit-icon svg { width: 20px; height: 20px; }

.benefit-tag strong {
  font-size: 15px; font-weight: 700; color: var(--black);
  display: block; margin-bottom: 6px;
}
.benefit-tag p {
  font-size: 13px; color: var(--text-mid); line-height: 1.8;
}

.info-table {
  background: var(--cream); border-radius: 16px; overflow: hidden;
}
.info-table dl { margin: 0; }
.info-row {
  display: grid; grid-template-columns: 120px 1fr;
  border-bottom: 1px solid #eee;
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
  font-size: 13px; font-weight: 700; color: var(--text-mid);
  padding: 18px 20px; background: rgba(0,0,0,0.02);
  display: flex; align-items: center;
}
.info-row dd {
  font-size: 14px; color: var(--text); padding: 18px 20px; line-height: 1.75;
}

/* ==========================================
   JOBS
   ========================================== */
.jobs { padding: 120px 0; background: var(--cream); }

.jobs-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 900;
  color: var(--black); margin-bottom: 8px;
}
.jobs-sub {
  font-size: 14px; color: var(--text-light); margin-bottom: 40px;
}

.jobs-list { display: flex; flex-direction: column; gap: 12px; }

.job-item {
  background: var(--bg); border-radius: 16px;
  border: 1.5px solid #eee; overflow: hidden; transition: 0.3s;
}
.job-item:hover { border-color: #ddd; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

.job-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: pointer;
}

.job-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--accent); background: #fff3ed; padding: 3px 12px;
  border-radius: 100px; margin-bottom: 6px;
}
.job-tag--mid { color: #2563EB; background: #EFF6FF; }
.job-tag--new { color: #059669; background: #ECFDF5; }
.job-tag--intern { color: #7c5cfc; background: #f0edff; }

.job-title-text { font-size: 17px; font-weight: 700; color: var(--black); }

.job-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid #ddd; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s; flex-shrink: 0; color: var(--text-mid);
}
.job-toggle svg { width: 14px; height: 14px; transition: 0.3s; }

.job-item.open .job-toggle {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.job-item.open .job-toggle svg { transform: rotate(45deg); }

.job-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.job-item.open .job-body { max-height: 700px; }

.job-detail { padding: 0 28px; margin-bottom: 18px; }
.job-detail h4 {
  font-size: 13px; font-weight: 700; color: var(--black);
  margin-bottom: 8px; padding-left: 14px;
  border-left: 3px solid var(--accent);
}
.job-detail ul { padding-left: 20px; }
.job-detail li {
  font-size: 14px; color: var(--text); line-height: 1.9; list-style: disc;
}

.job-body .btn { margin: 8px 28px 28px; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; font-size: 14px; font-weight: 700;
  border-radius: 100px; border: none; cursor: pointer; transition: 0.3s;
  background: var(--black); color: #fff;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; transform: translateY(-2px); }

.btn--white {
  background: #fff; color: var(--black);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.btn--white:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  opacity: 1;
}
.btn--lg { padding: 18px 44px; font-size: 15px; }

.btn--pulse {
  animation: btnPulse 3s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }
  50% { box-shadow: 0 6px 32px rgba(0,0,0,0.2); transform: translateY(-3px); }
}

/* ==========================================
   MEDIA
   ========================================== */
.media { padding: 100px 0; background: #fff; }
.media-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.media-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
  max-width: 480px; margin: 0 auto;
}
.media-card {
  display: block; text-decoration: none; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.media-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.media-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
}
.media-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.media-card:hover .media-thumb img { transform: scale(1.03); }
.media-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(0,0,0,0.6); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; padding-left: 3px;
  transition: background 0.3s ease;
}
.media-card:hover .media-play { background: rgba(255,107,53,0.85); }
.media-card-title {
  padding: 14px 16px; font-size: 13px; font-weight: 600;
  color: var(--text); line-height: 1.6; letter-spacing: 0.01em;
}

/* ==========================================
   ENTRY
   ========================================== */
.entry {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--black) 0%, #1a1040 50%, #0a0a2e 100%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.entry::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,53,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.entry-inner { position: relative; z-index: 1; }

.entry-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 900;
  margin-bottom: 16px; line-height: 1.6;
}
.entry-text {
  font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 40px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #060606; color: rgba(255,255,255,0.35); padding: 48px 0 24px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: start;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { font-size: 11px; margin-top: 8px; }
.footer-brand .logo-img { margin-bottom: 4px; }
.footer-hp-link {
  display: inline-block; margin-top: 16px; font-size: 15px; font-weight: 700;
  color: #fff; background: var(--accent); text-decoration: none; letter-spacing: 0.03em;
  padding: 10px 24px; border-radius: 30px;
  transition: opacity 0.3s, transform 0.3s;
}
.footer-hp-link:hover { opacity: 0.85; transform: translateY(-2px); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a {
  font-family: var(--font-en); font-size: 11px;
  font-weight: 600; letter-spacing: 0.08em; transition: 0.3s;
}
.footer-nav a:hover { color: #fff; }

.footer-copy {
  font-family: var(--font-en); font-size: 10px;
  text-align: center; padding-top: 20px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .sp-only { display: inline; }

  .hamburger { display: flex; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px;
    height: 100vh; background: #fff; flex-direction: column;
    align-items: flex-start; padding: 80px 28px 40px; gap: 0;
    box-shadow: -8px 0 32px rgba(0,0,0,0.08); transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.open { right: 0; }
  .nav-link {
    font-size: 14px; padding: 16px 0; width: 100%;
    border-bottom: 1px solid #f0f0f0; color: var(--text) !important;
  }
  .nav-link--cta { text-align: center; margin-top: 16px; border-bottom: none; }

  .hero-title { font-size: clamp(36px, 12vw, 56px); }
  .hero-cta { padding: 14px 32px; font-size: 13px; }

  .about { padding: 80px 0 60px; }
  .about-body { grid-template-columns: 1fr; gap: 28px; }
  .ceo { padding: 60px 0; }
  .ceo-layout { grid-template-columns: 1fr; gap: 32px; }
  .ceo-photo-side { order: -1; max-width: 100%; position: static; }
  .work { padding: 80px 0; }
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-card { padding: 28px 22px; }
  .culture { padding: 80px 0; }
  .culture-list { grid-template-columns: 1fr; }
  .data { padding: 80px 0; }
  .data-items { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .data-num { font-size: 40px; }

  .people { padding: 80px 0; }
  .people-list { gap: 48px; }
  .person-row, .person-row--reverse { grid-template-columns: 1fr; gap: 24px; }
  .person-row--reverse { direction: ltr; }
  .person-number { font-size: 60px; bottom: -12px; right: 0; }
  .person-row--reverse .person-number { right: 0; left: auto; }

  .gallery { padding: 60px 0; }
  .carousel-wrapper { padding: 0 10px; }
  .gallery-item { width: calc(70% - 14px); min-width: calc(70% - 14px); height: 250px; font-size: 16px; }
  .gallery-desc { font-size: 13px; padding: 20px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 22px; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .benefits { padding: 80px 0; }
  .benefits-tags { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .info-row dt { padding: 14px 16px; }
  .info-row dd { padding: 14px 16px; }
  .jobs { padding: 80px 0; }
  .entry { padding: 60px 0; }
  .footer-inner { flex-direction: column; gap: 24px; }

}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .data-items { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .data-item { padding: 24px 12px 20px; }
  .data-num { font-size: 36px; }
}
