/* ============================================================
   株式会社プライム — Corporate Site
   Company: 株式会社プライム (prime Inc.)
   Brands: Lilima (護身・防犯) / RICH VISTA (美容)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:           #ffffff;
  --bg-soft:      #f7f8fc;
  --bg-warm:      #fdf8f6;
  --surface:      #f0f2f8;
  --border:       #e2e5ef;
  --border-light: #eef0f6;
  --text:         #1a1d2e;
  --text-sub:     #5a5f7a;
  --text-dim:     #8b90a8;
  --white:        #ffffff;

  --lilima:       #1b5e7b;
  --lilima-light: #2a8ab0;
  --lilima-bg:    #edf6fa;
  --lilima-bg2:   #d8eef6;

  --rv:           #b8436e;
  --rv-light:     #d4607f;
  --rv-bg:        #fdf0f4;
  --rv-bg2:       #f8dce6;

  --primary:      #2563eb;
  --primary-light:#60a5fa;
  --primary-bg:   #eff6ff;

  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --shadow-sm:    0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  --shadow:       0 4px 16px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
  --shadow-xl:    0 24px 60px rgba(0,0,0,.1), 0 8px 24px rgba(0,0,0,.06);

  --font: 'Inter', 'Noto Sans JP', -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-primary { color: var(--primary); }
.text-beauty { color: var(--rv); }
.text-accent { color: var(--primary-light); }
.sp-only { display: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav--scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; gap: 0; }
.logo-text {
  font-size: 1.3rem; font-weight: 900; letter-spacing: .08em;
  color: var(--text); line-height: 1.1;
}
.logo-sub {
  font-size: .62rem; font-weight: 500; color: var(--text-dim);
  letter-spacing: .08em; line-height: 1.2;
}
.logo-text--footer { font-size: 1.2rem; color: var(--white); }
.nav__links { display: flex; gap: 28px; list-style: none; }
.nav__links a {
  font-size: .85rem; font-weight: 500; color: var(--text-sub);
  transition: var(--transition); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  border-radius: 2px; transition: var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  background: var(--text); color: var(--white);
  transition: var(--transition);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  background: #2d3148;
}
.nav__cta svg { opacity: .8; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 85vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 72px;
  overflow: hidden;
  background: linear-gradient(165deg, #f8faff 0%, #fff 40%, #fdf8f6 100%);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(27,94,123,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 75% 70%, rgba(184,67,110,.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(37,99,235,.05) 0%, transparent 50%);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1d2e' fill-opacity='0.02'%3E%3Cpath d='M20 20h-2v2h2v-2zm0-20h-2v2h2V0zM0 20h2v-2H0v2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__decoration { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
}
.hero__blob--1 {
  width: 500px; height: 500px; top: -10%; right: -5%;
  background: linear-gradient(135deg, rgba(27,94,123,.12), rgba(37,99,235,.08));
  animation: float 8s ease-in-out infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px; bottom: -5%; left: -5%;
  background: linear-gradient(135deg, rgba(184,67,110,.1), rgba(212,96,127,.06));
  animation: float 10s ease-in-out infinite reverse;
}
.hero__blob--3 {
  width: 300px; height: 300px; top: 40%; left: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(96,165,250,.04));
  animation: float 12s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero__content { position: relative; z-index: 1; text-align: center; max-width: 820px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  background: var(--primary-bg); color: var(--primary);
  border: 1px solid rgba(37,99,235,.15);
  margin-bottom: 28px; letter-spacing: .03em;
}
.hero__badge svg { color: #f59e0b; }
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900;
  line-height: 1.3; margin-bottom: 20px; letter-spacing: -.02em;
  color: var(--text);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-sub);
  margin-bottom: 40px; line-height: 1.9;
}
.hero__sub strong { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__trust {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; color: var(--text-sub);
}
.hero__trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: .93rem; font-weight: 600;
  transition: var(--transition); letter-spacing: .01em;
}
.btn--primary {
  background: var(--text); color: var(--white);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #2d3148;
}
.btn--outline {
  border: 1.5px solid var(--border); color: var(--text);
  background: var(--white);
}
.btn--outline:hover {
  border-color: var(--text-sub); background: var(--bg-soft);
}
.btn--lg { padding: 18px 40px; font-size: 1.02rem; }
.btn--lilima { background: var(--lilima); color: var(--white); }
.btn--lilima:hover { background: var(--lilima-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--rv { background: var(--rv); color: var(--white); }
.btn--rv:hover { background: var(--rv-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--cta-white { background: var(--white); color: var(--text); font-weight: 700; }
.btn--cta-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: #f0f0f0; }
.btn--submit { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem; }

/* ---------- Section Common ---------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
  padding: 4px 14px; border-radius: 50px;
  background: var(--primary-bg);
}
.section-tag--lilima { color: var(--lilima); background: var(--lilima-bg); }
.section-tag--rv { color: var(--rv); background: var(--rv-bg); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 12px; color: var(--text);
}
.section-title--left { text-align: left; }
.section-desc { color: var(--text-sub); font-size: .98rem; max-width: 560px; margin: 0 auto; }

/* ---------- About ---------- */
.about { padding: 100px 0; background: var(--bg-soft); }
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about__text .section-tag { margin-bottom: 12px; }
.about__desc {
  color: var(--text-sub); font-size: .95rem; line-height: 1.9; margin-top: 16px;
}
.about__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.about__stat-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.about__stat-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: transparent;
}
.about__stat-number {
  display: block; font-size: 2.2rem; font-weight: 900; color: var(--primary);
  line-height: 1; margin-bottom: 8px;
}
.about__stat-number small { font-size: 1.2rem; }
.about__stat-label {
  display: block; font-size: .8rem; font-weight: 600; color: var(--text-sub);
  letter-spacing: .03em;
}

/* ---------- Brands ---------- */
.brands { padding: 88px 0; background: var(--bg); }
.brands__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.brand-card {
  position: relative; border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: var(--white);
  transition: var(--transition); overflow: hidden;
  display: flex; flex-direction: column;
}
.brand-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
}
.brand-card--lilima::before { background: linear-gradient(90deg, var(--lilima), var(--lilima-light)); }
.brand-card--rv::before { background: linear-gradient(90deg, var(--rv), var(--rv-light)); }
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }

/* Brand card product images showcase */
.brand-card__images {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 28px 24px 16px; min-height: 180px;
  position: relative; overflow: hidden;
}
.brand-card--lilima .brand-card__images { background: linear-gradient(135deg, var(--lilima-bg) 0%, var(--lilima-bg2) 100%); }
.brand-card--rv .brand-card__images { background: linear-gradient(135deg, var(--rv-bg) 0%, var(--rv-bg2) 100%); }
.brand-card__images img {
  height: 130px; width: auto; object-fit: contain;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.08));
}
.brand-card:hover .brand-card__images img { transform: scale(1.06); }
.brand-card__images img:nth-child(2) { height: 140px; }

.brand-card__content { padding: 28px 32px 32px; }
.brand-card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.brand-card--lilima .brand-card__icon { background: var(--lilima-bg); color: var(--lilima); }
.brand-card--rv .brand-card__icon { background: var(--rv-bg); color: var(--rv); }
.brand-card__name { font-size: 1.5rem; font-weight: 800; margin-bottom: 2px; }
.brand-card--lilima .brand-card__name { color: var(--lilima); }
.brand-card--rv .brand-card__name { color: var(--rv); }
.brand-card__name-jp { font-size: .8rem; color: var(--text-dim); letter-spacing: .05em; margin-bottom: 14px; display: block; }
.brand-card__desc { font-size: .92rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 16px; }
.brand-card__link { font-size: .88rem; font-weight: 600; }
.brand-card--lilima .brand-card__link { color: var(--lilima); }
.brand-card--rv .brand-card__link { color: var(--rv); }

/* ---------- Products ---------- */
.products { padding: 88px 0; }
.products--lilima { background: var(--lilima-bg); }
.products--rv { background: var(--rv-bg); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  position: relative;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 6px 16px rgba(0,0,0,.06);
  border-color: transparent;
}
.product-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 4px 12px; border-radius: 50px;
  font-size: .7rem; font-weight: 700;
  background: var(--lilima); color: var(--white);
  letter-spacing: .03em;
}
.badge--rv { background: var(--rv); }
.product-card__image {
  height: 220px; display: flex; align-items: center; justify-content: center;
  padding: 20px; overflow: hidden; position: relative;
}
.product-card__image--lilima { background: linear-gradient(135deg, var(--lilima-bg) 0%, var(--lilima-bg2) 100%); }
.product-card__image--rv { background: linear-gradient(135deg, var(--rv-bg) 0%, var(--rv-bg2) 100%); }
.product-card__image img {
  max-height: 100%; max-width: 100%; object-fit: contain;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card__image img {
  transform: scale(1.08);
}
.product-card__body { padding: 22px 24px 24px; }
.product-card__cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.product-card__cat--lilima { color: var(--lilima); }
.product-card__cat--rv { color: var(--rv); }
.product-card__title { font-size: .98rem; font-weight: 700; margin: 6px 0; line-height: 1.5; color: var(--text); }
.product-card__desc { font-size: .84rem; color: var(--text-sub); line-height: 1.7; margin-bottom: 14px; }
.product-card__link { font-size: .84rem; font-weight: 600; transition: var(--transition); }
.product-card__link--lilima { color: var(--lilima); }
.product-card__link--lilima:hover { color: var(--lilima-light); }
.product-card__link--rv { color: var(--rv); }
.product-card__link--rv:hover { color: var(--rv-light); }
.products__cta { text-align: center; margin-top: 48px; }

/* ---------- Brand Page Hero ---------- */
.brand-hero {
  position: relative; min-height: 45vh; display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 72px; text-align: center; overflow: hidden;
  color: var(--white);
}
.brand-hero--lilima {
  background: linear-gradient(135deg, #0f3d52 0%, var(--lilima) 50%, #1a6b94 100%);
}
.brand-hero--rv {
  background: linear-gradient(135deg, #7a2a4a 0%, var(--rv) 50%, #c9537a 100%);
}
.brand-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(255,255,255,.08) 0%, transparent 70%);
}
.brand-hero__content { position: relative; z-index: 1; max-width: 700px; }
.brand-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.2; margin-bottom: 8px;
}
.brand-hero__name-jp {
  font-size: .92rem; color: rgba(255,255,255,.7); letter-spacing: .05em; margin-bottom: 20px;
}
.brand-hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-bottom: 24px; font-size: .82rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb__current { color: rgba(255,255,255,.9); font-weight: 500; }

.section-tag--on-dark {
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}

/* ---------- Contact ---------- */
.contact { padding: 88px 0; background: var(--bg-soft); }
.contact__simple {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.contact__info-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.contact__info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.contact__info-card:hover {
  transform: translateY(-2px); box-shadow: var(--shadow); border-color: transparent;
}
.contact__icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--primary-bg); display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.contact__info-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.contact__info-card p { font-size: .84rem; color: var(--text-sub); line-height: 1.7; }
.contact__email-box {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 48px 40px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.contact__email-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact__email-lead {
  font-size: 1.02rem; font-weight: 500; color: var(--text);
  margin-bottom: 24px; line-height: 1.7;
}
.contact__email-display {
  display: inline-block; margin-bottom: 16px;
  background: var(--surface); border-radius: var(--radius);
  padding: 14px 36px;
}
.contact__email-text {
  font-size: 1.25rem; font-weight: 700; color: var(--text);
  letter-spacing: 1.5px; user-select: none; -webkit-user-select: none;
  font-family: 'Inter', monospace;
}
.contact__star {
  color: var(--primary); font-size: 1.3rem; margin: 0 1px;
}
.contact__email-hint {
  font-size: .88rem; color: var(--text-sub); margin-bottom: 20px;
  font-weight: 500;
}
.contact__email-note {
  font-size: .85rem; color: var(--text-dim); line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 32px;
  background: linear-gradient(180deg, #1a1d2e 0%, #12141f 100%);
  color: var(--white);
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand p { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 12px; line-height: 1.7; }
.footer__company { color: rgba(255,255,255,.7) !important; font-weight: 500; font-size: .9rem !important; }
.footer__cols { display: flex; gap: 56px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer__col a { font-size: .875rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ---------- Animations ---------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Recruit Page ---------- */
.recruit-hero {
  position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 80px; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #1a1d2e 0%, #2d3148 100%);
  color: var(--white);
}
.recruit-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(37,99,235,.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 60%, rgba(184,67,110,.15) 0%, transparent 60%);
}
.recruit-hero__content { position: relative; z-index: 1; max-width: 700px; }
.recruit-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.3; margin-bottom: 16px;
}
.recruit-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.8; }

.recruit-section { padding: 80px 0; }
.recruit-section--alt { background: var(--bg-soft); }

.recruit-vision__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vision-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 40px 32px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.vision-card__icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.vision-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.vision-card p { font-size: .88rem; color: var(--text-sub); line-height: 1.8; }

.recruit-numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.recruit-numbers__grid--2col { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
.number-card {
  text-align: center; padding: 32px 16px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.number-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.number-card__value {
  display: block; font-size: 2.4rem; font-weight: 900; color: var(--primary);
  line-height: 1; margin-bottom: 8px;
}
.number-card__value small { font-size: 1rem; font-weight: 600; }
.number-card__label { font-size: .82rem; font-weight: 600; color: var(--text-sub); }

.position-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 16px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.position-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.position-card__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.position-card h3 { font-size: 1.1rem; font-weight: 700; }
.position-card__tags { display: flex; gap: 8px; }
.position-card__tag {
  padding: 4px 12px; border-radius: 50px; font-size: .72rem; font-weight: 600;
  background: var(--primary-bg); color: var(--primary);
}
.position-card p { font-size: .88rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 12px; }
.position-card__details { font-size: .84rem; color: var(--text-dim); line-height: 1.8; }
.position-card__details dt { font-weight: 600; color: var(--text-sub); display: inline; }
.position-card__details dt::after { content: '：'; }
.position-card__details dd { display: inline; margin-left: 0; }
.position-card__details dd::after { content: ''; display: block; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.benefit-card__icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.benefit-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.benefit-card p { font-size: .82rem; color: var(--text-sub); line-height: 1.6; }

.recruit-apply {
  padding: 80px 0; background: var(--bg);
}
.recruit-apply__inner {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.recruit-apply__inner p {
  font-size: .95rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .recruit-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav__links.open a { color: var(--text); font-size: 1rem; }

  .hero { min-height: 80vh; padding: 100px 20px 56px; }
  .hero__title { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__trust { flex-direction: column; align-items: center; gap: 12px; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .section-title--left { text-align: center; }
  .about__text { text-align: center; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }

  .brands__grid { grid-template-columns: 1fr; }
  .brand-card__images { min-height: 150px; padding: 20px 16px 12px; }
  .brand-card__images img { height: 100px; }
  .brand-card__images img:nth-child(2) { height: 110px; }
  .brand-card__content { padding: 20px 24px 28px; }
  .products__grid { grid-template-columns: 1fr; }
  .contact__info-cards { grid-template-columns: 1fr; }
  .contact__email-box { padding: 32px 20px; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__cols { flex-direction: column; gap: 32px; align-items: center; }
  .footer__col { align-items: center; }

  .recruit-vision__grid { grid-template-columns: 1fr; }
  .recruit-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .position-card__header { flex-direction: column; align-items: flex-start; }
}
