/* Make Culture - Shared Styles */
:root {
  --mc-red: #E11D2E;
  --mc-red-dark: #B81523;
  --mc-red-light: #F5D6DA;
  --mc-ink: #0E0E10;
  --mc-text: #1A1A1F;
  --mc-text-2: #4A4A52;
  --mc-text-3: #8A8A92;
  --mc-line: #E6E6EA;
  --mc-line-2: #F0F0F2;
  --mc-bg: #FFFFFF;
  --mc-bg-soft: #FAFAFB;
  --mc-bg-2: #F5F5F7;
  --mc-black: #0A0A0C;
  --mc-radius: 8px;
  --mc-radius-lg: 14px;
  --mc-shadow-sm: 0 1px 2px rgba(10,10,12,.04), 0 0 0 1px rgba(10,10,12,.04);
  --mc-shadow: 0 4px 24px rgba(10,10,12,.06), 0 0 0 1px rgba(10,10,12,.04);
  --mc-shadow-lg: 0 24px 60px rgba(10,10,12,.08), 0 0 0 1px rgba(10,10,12,.04);
  --mc-container: 1200px;
  --mc-font-jp: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --mc-font-en: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --mc-font-display: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--mc-font-jp);
  color: var(--mc-text);
  background: var(--mc-bg);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.mc-en { font-family: var(--mc-font-en); letter-spacing: 0.08em; }
.mc-mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.mc-eyebrow {
  font-family: var(--mc-font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--mc-red);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.mc-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--mc-red);
}

.mc-container { max-width: var(--mc-container); margin: 0 auto; padding: 0 24px; }

/* Header */
.mc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.mc-header.is-scrolled { border-bottom-color: var(--mc-line); }
.mc-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mc-logo {
  font-family: var(--mc-font-en);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--mc-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mc-logo-mark {
  display: inline-block;
  width: 28px; height: 28px;
  background: url('logo.png') center / contain no-repeat;
  position: relative;
  top: 1px;
}
.mc-nav { display: flex; align-items: center; gap: 32px; }
.mc-nav > a, .mc-nav > .mc-nav-group > a {
  font-family: var(--mc-font-en);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--mc-text);
  position: relative;
  padding: 8px 0;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mc-nav > a::after, .mc-nav > .mc-nav-group > a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 0; height: 2px;
  background: var(--mc-red);
  transform: translateX(-50%);
  transition: width .3s ease;
}
.mc-nav > a:hover, .mc-nav > .mc-nav-group:hover > a { color: var(--mc-red); }
.mc-nav > a:hover::after, .mc-nav > a.is-active::after,
.mc-nav > .mc-nav-group:hover > a::after,
.mc-nav > .mc-nav-group.is-active > a::after { width: 100%; }
.mc-nav > a.is-active, .mc-nav > .mc-nav-group.is-active > a { color: var(--mc-red); }
.mc-nav-group { position: relative; }
.mc-nav-group > a .caret { width: 10px; height: 10px; transition: transform .3s; }
.mc-nav-group:hover > a .caret { transform: rotate(180deg); }
.mc-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: 10px;
  box-shadow: var(--mc-shadow-lg);
  padding: 12px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
}
.mc-dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.mc-nav-group:hover .mc-dropdown,
.mc-nav-group:focus-within .mc-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mc-dropdown a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s;
}
.mc-dropdown a:hover { background: var(--mc-bg-soft); }
.mc-dropdown a:hover .ja { color: var(--mc-red); }
.mc-dropdown .en {
  font-family: var(--mc-font-en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mc-red);
}
.mc-dropdown .ja {
  font-size: 13px;
  font-weight: 600;
  color: var(--mc-text);
  margin-top: 2px;
  letter-spacing: 0.02em;
  transition: color .15s;
}

/* Mobile menu toggle */
.mc-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--mc-line);
  align-items: center;
  justify-content: center;
}
.mc-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--mc-ink);
  position: relative;
  transition: transform .3s, opacity .3s;
}
.mc-burger span::before, .mc-burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--mc-ink); transition: transform .3s;
}
.mc-burger span::before { top: -6px; }
.mc-burger span::after { top: 6px; }
.mc-burger.is-open span { background: transparent; }
.mc-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.mc-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mc-mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--mc-line);
  border-bottom: 1px solid var(--mc-line);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  z-index: 99;
}
.mc-mobile-menu.is-open { max-height: calc(100vh - 72px); overflow-y: auto; }
.mc-mobile-menu .inner { padding: 8px 24px 24px; }
.mc-mobile-menu .group { padding: 14px 0; border-bottom: 1px solid var(--mc-line); }
.mc-mobile-menu .group:last-child { border-bottom: none; }
.mc-mobile-menu .group-title {
  font-family: var(--mc-font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--mc-red);
  margin-bottom: 10px;
}
.mc-mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--mc-text);
}
.mc-mobile-menu a.is-active { color: var(--mc-red); }
.mc-mobile-menu a .en {
  font-family: var(--mc-font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mc-text-3);
  display: block;
  margin-top: 2px;
}

.mc-header-right { display: flex; align-items: center; gap: 16px; }
.mc-lang {
  display: inline-flex;
  border: 1px solid var(--mc-line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--mc-font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.mc-lang button {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--mc-text-3);
  transition: all .2s ease;
}
.mc-lang button.is-active {
  background: var(--mc-ink);
  color: #fff;
}
.mc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mc-red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--mc-font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  transition: background .2s ease, transform .2s ease;
}
.mc-cta:hover { background: var(--mc-red-dark); transform: translateY(-1px); }
.mc-cta svg { width: 14px; height: 14px; }

/* Hero */
.mc-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.mc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  min-height: 460px;
}
.mc-hero-eyebrow-row { margin-bottom: 28px; }
.mc-hero h1 {
  font-family: var(--mc-font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--mc-ink);
  margin-bottom: 28px;
}
.mc-hero-lead {
  color: var(--mc-text-2);
  font-size: 14.5px;
  line-height: 2;
  max-width: 540px;
}
.mc-hero-graphic {
  position: relative;
  height: 100%;
  min-height: 460px;
}
.mc-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mc-hero-tags {
  position: absolute;
  right: 0;
  bottom: 24px;
  font-family: var(--mc-font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--mc-text-3);
  text-align: right;
  line-height: 2;
}
.mc-hero-tags span { display: block; }
.mc-hero-tags span:first-child { color: var(--mc-red); }

/* Page Hero variant (compact) */
.mc-page-hero {
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
}
.mc-page-hero-title {
  font-family: var(--mc-font-en);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mc-ink);
  line-height: 1;
  margin: 16px 0 18px;
}
.mc-page-hero-sub {
  font-family: var(--mc-font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 18px;
}
.mc-page-hero-lead {
  color: var(--mc-text-2);
  line-height: 2;
  font-size: 14.5px;
  max-width: 560px;
}

/* Sections */
.mc-section { padding: 88px 0; }
.mc-section.is-soft { background: var(--mc-bg-soft); }
.mc-section-head { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 40px; align-items: start; margin-bottom: 40px; }
.mc-section-head h2 {
  font-family: var(--mc-font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-top: 16px;
}
.mc-section-head .lead { color: var(--mc-text-2); line-height: 2; font-size: 14px; }

/* Cards */
.mc-card {
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius-lg);
  padding: 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.mc-card.is-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--mc-shadow);
  border-color: transparent;
}

/* Buttons */
.mc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--mc-red);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.mc-btn:hover { background: var(--mc-red-dark); transform: translateY(-1px); }
.mc-btn-arrow { width: 16px; height: 16px; transition: transform .3s; }
.mc-btn:hover .mc-btn-arrow { transform: translateX(4px); }

.mc-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--mc-red);
  font-weight: 600;
  font-size: 13px;
}
.mc-link::after {
  content: "→";
  transition: transform .3s ease;
}
.mc-link:hover::after { transform: translateX(4px); }

/* CTA strip */
.mc-cta-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 0;
}
.mc-cta-strip > a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 38px 44px;
  position: relative;
  overflow: hidden;
  transition: filter .3s ease;
}
.mc-cta-strip > a:hover { filter: brightness(1.08); }
.mc-cta-strip .icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
}
.mc-cta-strip .icon svg { width: 26px; height: 26px; }
.mc-cta-strip .label-en {
  font-family: var(--mc-font-en);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
}
.mc-cta-strip .desc {
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  line-height: 1.6;
  margin-top: 4px;
}
.mc-cta-strip .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: rgba(255,255,255,.16);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.mc-cta-strip .contact { background: var(--mc-red); }
.mc-cta-strip .contact .icon svg { color: var(--mc-red); }
.mc-cta-strip .recruit { background: var(--mc-black); }
.mc-cta-strip .recruit .icon svg { color: var(--mc-black); }

/* Footer */
.mc-footer { padding: 64px 0 28px; background: #fff; border-top: 1px solid var(--mc-line); }
.mc-footer-grid { display: grid; grid-template-columns: 1.1fr 2.4fr; gap: 60px; margin-bottom: 40px; }
.mc-footer-mission { color: var(--mc-ink); margin-top: 16px; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; }
.mc-footer-tagline { color: var(--mc-text-2); margin-top: 6px; font-size: 13px; }
.mc-footer-social { display: flex; gap: 12px; margin-top: 22px; }
.mc-footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mc-ink);
  color: #fff;
  display: grid; place-items: center;
  transition: transform .2s, background .2s;
}
.mc-footer-social a:hover { transform: translateY(-2px); background: var(--mc-red); }
.mc-footer-social svg { width: 14px; height: 14px; }

.mc-info-table { display: grid; grid-template-columns: 96px 1fr; row-gap: 14px; column-gap: 24px; font-size: 13.5px; align-items: start; }
.mc-info-table dt { color: var(--mc-text-3); font-weight: 600; }
.mc-info-table dd { color: var(--mc-text); }
.mc-info-table dd small { color: var(--mc-text-3); display: block; font-size: 12px; margin-top: 2px; }

.mc-footer-bottom {
  border-top: 1px solid var(--mc-line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mc-text-3);
  flex-wrap: wrap;
  gap: 16px;
}
.mc-footer-bottom nav { display: flex; gap: 26px; }
.mc-footer-bottom nav a:hover { color: var(--mc-red); }

/* Reveal animation */
.mc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.mc-reveal.is-in { opacity: 1; transform: none; }
.mc-reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.mc-reveal-stagger.is-in > * { opacity: 1; transform: none; }
.mc-reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.mc-reveal-stagger.is-in > *:nth-child(2) { transition-delay: 80ms; }
.mc-reveal-stagger.is-in > *:nth-child(3) { transition-delay: 160ms; }
.mc-reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
.mc-reveal-stagger.is-in > *:nth-child(5) { transition-delay: 320ms; }
.mc-reveal-stagger.is-in > *:nth-child(6) { transition-delay: 400ms; }

/* Number counter */
.mc-stat-num {
  font-family: var(--mc-font-en);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--mc-red);
  line-height: 1;
}

/* Service card */
.mc-service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius-lg);
  padding: 32px 32px 28px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.mc-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mc-shadow-lg);
  border-color: transparent;
}
.mc-service-num {
  font-family: var(--mc-font-en);
  font-weight: 700;
  color: var(--mc-text-3);
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.mc-service-en {
  font-family: var(--mc-font-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mc-text-3);
  margin-bottom: 4px;
}
.mc-service-name {
  font-family: var(--mc-font-en);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--mc-ink);
  margin-bottom: 14px;
}
.mc-service-desc { color: var(--mc-text-2); font-size: 13.5px; line-height: 1.85; min-height: 50px; }
.mc-service-card-graphic {
  margin-top: 28px;
  height: 110px;
  display: grid;
  place-items: center;
  position: relative;
}

/* Process step */
.mc-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; align-items: start; }
.mc-process-step { padding: 0 12px; position: relative; }
.mc-process-step .num { font-family: var(--mc-font-en); color: var(--mc-red); font-weight: 700; font-size: 16px; letter-spacing: 0.1em; }
.mc-process-step .label { font-weight: 700; margin-left: 10px; font-size: 14px; }
.mc-process-step .icon-wrap { margin: 16px auto; height: 80px; display: grid; place-items: center; }
.mc-process-step .desc { color: var(--mc-text-2); font-size: 12.5px; line-height: 1.8; text-align: center; }
.mc-process-arrow { display: grid; place-items: center; padding-top: 70px; color: var(--mc-red); }

/* Tweaks button */
.mc-back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--mc-shadow);
  z-index: 50;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.mc-back-top:hover { background: var(--mc-red); color: #fff; border-color: var(--mc-red); }

/* Responsive */
@media (max-width: 1100px) {
  .mc-nav { gap: 22px; }
  .mc-nav > a, .mc-nav > .mc-nav-group > a { font-size: 11.5px; letter-spacing: 0.1em; }
  .mc-header-inner { padding: 0 20px; }
  .mc-lang { display: none; }
}
@media (max-width: 960px) {
  .mc-nav { display: none; }
  .mc-burger { display: inline-flex; }
  .mc-cta { padding: 10px 16px; font-size: 12px; }
  .mc-cta span.label { display: none; }
  .mc-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .mc-hero-graphic { min-height: 320px; }
  .mc-page-hero { padding: 110px 0 40px; }
  .mc-section { padding: 60px 0; }
  .mc-section-head { grid-template-columns: 1fr; gap: 16px; }
  .mc-cta-strip { grid-template-columns: 1fr; }
  .mc-cta-strip > a { padding: 28px 24px; }
  .mc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mc-info-table { grid-template-columns: 80px 1fr; column-gap: 16px; row-gap: 10px; font-size: 12.5px; }
  .mc-process { grid-template-columns: 1fr; }
  .mc-process-arrow { display: none; transform: rotate(90deg); padding: 12px 0; }
  .mc-footer-bottom { flex-direction: column; align-items: flex-start; }
  .mc-footer-bottom nav { gap: 14px; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .mc-header-inner { padding: 0 16px; height: 64px; }
  .mc-mobile-menu { top: 64px; }
  .mc-logo { font-size: 17px; }
  .mc-cta { padding: 8px 14px; }
  .mc-container { padding: 0 16px; }
  .mc-hero-tags { display: none; }
}
