@charset "utf-8";
/* =============================================
   HP Style - 株式会社エンライフ Corporate Site
   ============================================= */

/* --- Custom Properties --- */
:root {
  --c-primary: #1A5276;
  --c-primary-d: #154360;
  --c-primary-l: #EBF5FB;
  --c-accent: #E67E22;
  --c-accent-d: #D35400;
  --c-text: #333;
  --c-text-l: #666;
  --c-white: #fff;
  --c-bg: #fff;
  --c-border: #ddd;
  --c-gray-bg: #F5F7FA;
  --font-ja: 'Noto Sans JP','Hiragino Kaku Gothic Pro','Hiragino Sans',Meiryo,sans-serif;
  --font-en: 'Lato','Noto Sans JP',sans-serif;
  --mw: 1060px;
  --ease: cubic-bezier(.4,0,.2,1);
  --r-s: 6px;
  --r-m: 10px;
  --r-l: 16px;
}

/* --- Base --- */
body {
  font-family: var(--font-ja);
  color: var(--c-text);
  line-height: 1.8;
  font-size: 1.6rem;
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: opacity .25s var(--ease); }
a:hover { opacity: .75; }
.container { max-width: var(--mw); margin: 0 auto; padding: 0 24px; }

/* --- Reveal Animation --- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.is-visible { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .12s; }
.rv-d2 { transition-delay: .24s; }
.rv-d3 { transition-delay: .36s; }
.rv-d4 { transition-delay: .48s; }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,.96);
  transition: box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.header-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.header-logo img { height: 40px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; gap: 4px; list-style: none; }
.nav-list a {
  display: block; padding: 8px 14px; font-size: 1.4rem; font-weight: 600;
  color: var(--c-text); border-radius: var(--r-s); transition: background .2s, color .2s;
}
.nav-list a:hover, .nav-list a.is-active {
  background: var(--c-primary); color: var(--c-white); opacity: 1;
}
.nav-sns { display: flex; gap: 10px; margin-left: 12px; }
.nav-sns a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-primary-l); color: var(--c-primary);
  font-size: 1.6rem; transition: background .2s, color .2s;
}
.nav-sns a:hover { background: var(--c-primary); color: var(--c-white); opacity: 1; }
.header-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: 1.4rem; font-weight: 700; color: var(--c-primary); margin-left: 16px;
  white-space: nowrap;
}
.header-tel svg { width: 16px; height: 16px; fill: var(--c-primary); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--c-text);
  position: absolute; left: 10px; transition: transform .3s, opacity .3s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh;
  background: var(--c-white); z-index: 150; padding: 90px 30px 40px;
  transition: right .35s var(--ease); overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,.1);
}
.mobile-nav.is-open { right: 0; }
.mobile-nav-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.4); z-index: 140; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list li { border-bottom: 1px solid var(--c-border); }
.mobile-nav-list a {
  display: block; padding: 16px 0; font-size: 1.6rem; font-weight: 600; color: var(--c-text);
}
.mobile-nav-sns { display: flex; gap: 12px; margin-top: 24px; }
.mobile-nav-sns a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-primary-l); color: var(--c-primary); font-size: 2rem;
}
.mobile-nav-tel {
  display: block; margin-top: 24px; padding: 14px; text-align: center;
  background: var(--c-primary); color: var(--c-white); border-radius: var(--r-m);
  font-size: 1.8rem; font-weight: 700;
}

/* ============ HERO (index only) ============ */
.hero {
  position: relative; height: 100vh; height: 100dvh; min-height: 500px; max-height: none;
  overflow: hidden; margin-top: 72px;
}
/* Video background */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(26,82,118,.65) 0%, rgba(26,82,118,.35) 50%, rgba(0,0,0,.45) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero-catch {
  margin: 0; padding: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', sans-serif;
  font-size: 5.2rem; font-weight: 900; line-height: 1.4;
  color: var(--c-white);
  text-shadow: 0 3px 12px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.3);
  letter-spacing: .04em;
}
.hero-catch-line {
  display: block;
  opacity: 0; transform: translateY(20px);
  animation: heroLineIn .8s var(--ease) forwards;
}
.hero-catch-line:nth-child(2) { animation-delay: .25s; }
.hero-catch-line:nth-child(3) { animation-delay: .5s; }
.hero-catch-line em {
  font-style: normal;
  color: var(--c-accent);
  text-shadow: 0 3px 12px rgba(230,126,34,.4), 0 1px 3px rgba(0,0,0,.3);
}
@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  color: var(--c-white); font-size: 2rem; font-weight: 700;
  margin-top: 20px; text-shadow: 0 2px 8px rgba(0,0,0,.4);
  letter-spacing: .06em; line-height: 1.6;
  opacity: 0; animation: heroLineIn .8s var(--ease) .7s forwards;
}
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; z-index: 5;
  color: var(--c-white); font-size: 1.2rem; text-align: center;
  opacity: 0;
  animation: heroLineIn .6s var(--ease) 1.3s forwards, scrollBounce 2s ease-in-out 2s infinite;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: var(--c-white); margin: 8px auto 0; opacity: .6;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero CTA */
.hero-cta-wrap {
  display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
  justify-content: center;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--r-m); font-weight: 700; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .2s;
  text-decoration: none; border: none;
}
.btn-hero:hover { opacity: 1; transform: translateY(-2px); }
.btn-hero-accent {
  padding: 16px 36px; font-size: 1.8rem;
  background: var(--c-accent); color: var(--c-white);
  box-shadow: 0 4px 16px rgba(230,126,34,.35);
}
.btn-hero-accent:hover { background: var(--c-accent-d); color: var(--c-white); }
.btn-hero-accent svg { fill: currentColor; }
.btn-hero-outline {
  padding: 14px 28px; font-size: 1.6rem;
  border: 2px solid rgba(255,255,255,.7); color: var(--c-white);
  background: transparent; font-family: var(--font-en);
}
.btn-hero-outline:hover { background: var(--c-white); color: var(--c-primary); }
.btn-hero-outline svg { fill: currentColor; }

/* Trust badges */
.trust-badges {
  display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap;
}
.trust-badge {
  display: inline-block; padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 20px;
  font-size: 1.3rem; font-weight: 600; color: var(--c-white);
  backdrop-filter: blur(4px); background: rgba(255,255,255,.1);
}

/* ============ PAGE HERO (subpages) ============ */
.page-hero {
  margin-top: 72px; padding: 64px 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-d) 100%);
  text-align: center; color: var(--c-white);
  position: relative; overflow: hidden;
}
.page-hero-title { font-size: 3rem; font-weight: 900; }
.page-hero-en { font-family: var(--font-en); font-size: 1.4rem; font-weight: 400; opacity: .7; margin-top: 6px; letter-spacing: .1em; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 0; font-size: 1.3rem; color: var(--c-text-l);
  list-style: none;
}
.breadcrumb a { color: var(--c-primary); }
.breadcrumb li + li::before { content: '>'; margin-right: 8px; color: var(--c-border); }

/* ============ SECTIONS ============ */
.sec {
  padding: 80px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
.sec-alt { background: var(--c-gray-bg); }
.sec-primary { background: var(--c-primary-l); }

/* Section background image/color utilities */
.sec-bg {
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.sec-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.88);
  z-index: 0;
}
.sec-bg > .container { position: relative; z-index: 1; }

/* Dark section with background image */
.sec-dark {
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: var(--c-white);
}
.sec-dark::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,82,118,.8);
  z-index: 0;
}
.sec-dark > .container { position: relative; z-index: 1; }
.sec-dark .sec-en { color: rgba(255,255,255,.5); }
.sec-dark .sec-ttl, .sec-dark .sec-title { color: var(--c-white); }
.sec-dark .sec-sub { color: rgba(255,255,255,.7); }

/* Accent gradient section */
.sec-accent-grad {
  background: linear-gradient(135deg, var(--c-primary-l) 0%, #fff 50%, var(--c-gray-bg) 100%);
}

.sec-hd, .sec-header { text-align: center; margin-bottom: 48px; }
.sec-en {
  display: block; font-family: var(--font-en); font-size: 1.3rem;
  color: var(--c-accent); font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase;
}
.sec-ttl, .sec-title { font-size: 2.8rem; font-weight: 900; margin-top: 4px; color: var(--c-text); }
.sec-sub { font-size: 1.5rem; color: var(--c-text-l); margin-top: 8px; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-img { border-radius: var(--r-l); overflow: hidden; }
.about-text { font-size: 1.6rem; line-height: 2; }
.about-text .highlight { color: var(--c-accent); font-weight: 700; }
.about-lead { font-size: 2.2rem; font-weight: 900; margin-bottom: 20px; line-height: 1.6; }

/* ============ STRENGTHS ============ */
.strength-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.strength-card {
  background: var(--c-white); border-radius: var(--r-l); padding: 32px 24px;
  text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .3s var(--ease);
}
.strength-card:hover { transform: translateY(-4px); }
.strength-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--c-primary-l); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.strength-icon svg { fill: var(--c-primary); }
.strength-num {
  font-family: var(--font-en); font-size: 4rem; font-weight: 900;
  color: var(--c-accent); line-height: 1.2;
}
.strength-unit { font-size: 1.8rem; }
.strength-label { font-size: 1.6rem; font-weight: 700; margin: 8px 0; }
.strength-desc { font-size: 1.3rem; line-height: 1.7; color: var(--c-text-l); }

/* ============ BUSINESS PROCESS FLOW ============ */
.biz-process {
  display: flex; align-items: center; gap: 8px; margin-top: 20px;
  flex-wrap: wrap;
}
.biz-process-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 14px; background: var(--c-primary-l); border-radius: var(--r-s);
  min-width: 70px;
}
.biz-process-step svg { fill: var(--c-primary); }
.biz-process-step span { font-size: 1.2rem; font-weight: 600; color: var(--c-primary); white-space: nowrap; }
.biz-process-arrow { color: var(--c-accent); font-weight: 700; font-size: 1.6rem; }

/* ============ CONSULTATION FLOW ============ */
.flow-grid {
  display: flex; align-items: flex-start; justify-content: center; gap: 16px;
}
.flow-step {
  flex: 1; max-width: 280px; text-align: center;
  background: var(--c-white); border-radius: var(--r-l); padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.flow-num {
  font-family: var(--font-en); font-size: 3.6rem; font-weight: 900;
  color: var(--c-accent); line-height: 1;
}
.flow-icon {
  width: 64px; height: 64px; margin: 16px auto;
  background: var(--c-primary-l); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.flow-icon svg { fill: var(--c-primary); }
.flow-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; }
.flow-desc { font-size: 1.4rem; line-height: 1.7; color: var(--c-text-l); }
.flow-arrow {
  display: flex; align-items: center; padding-top: 60px;
  color: var(--c-accent);
}
.flow-arrow svg { fill: var(--c-accent); }
.flow-note {
  text-align: center; margin-top: 32px; padding: 16px 24px;
  background: var(--c-primary-l); border-radius: var(--r-m);
  font-size: 1.5rem; color: var(--c-primary);
}
.flow-note strong { color: var(--c-accent); }

/* Flow in dark section */
.sec-dark .flow-arrow { color: var(--c-white); }
.sec-dark .flow-arrow svg { fill: var(--c-white); }
.sec-dark .flow-note {
  background: rgba(255,255,255,.15); color: var(--c-white);
}

/* ============ PARTNER COMPANIES ============ */
.partner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.partner-item {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-m); padding: 20px 16px; text-align: center;
  font-size: 1.4rem; font-weight: 600; color: var(--c-text-l);
  display: flex; align-items: center; justify-content: center;
  min-height: 72px; transition: border-color .2s, box-shadow .2s;
}
.partner-item:hover {
  border-color: var(--c-primary); box-shadow: 0 2px 8px rgba(26,82,118,.1);
}

/* ============ NEWS ============ */
.news-list { list-style: none; }
.news-item {
  display: flex; gap: 20px; padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.news-date {
  font-family: var(--font-en); font-size: 1.4rem; font-weight: 600;
  color: var(--c-primary); white-space: nowrap; min-width: 100px;
}
.news-title { font-size: 1.5rem; }
.news-title a { color: var(--c-text); }
.news-title a:hover { color: var(--c-primary); opacity: 1; }

/* ============ BUSINESS CARDS ============ */
.biz-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.biz-card {
  background: var(--c-white); border-radius: var(--r-l); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.biz-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.biz-card a { display: block; color: var(--c-text); }
.biz-card-img { height: 200px; overflow: hidden; }
.biz-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.biz-card:hover .biz-card-img img { transform: scale(1.05); }
.biz-card-body { padding: 20px; }
.biz-card-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.biz-card-desc { font-size: 1.4rem; color: var(--c-text-l); line-height: 1.7; }

/* ============ BUSINESS DETAIL (business.html) ============ */
.biz-detail { margin-bottom: 56px; }
.biz-detail:last-child { margin-bottom: 0; }
.biz-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.biz-detail:nth-child(even) .biz-detail-grid { direction: rtl; }
.biz-detail:nth-child(even) .biz-detail-grid > * { direction: ltr; }
.biz-detail-img { border-radius: var(--r-l); overflow: hidden; }
.biz-detail-num {
  font-family: var(--font-en); font-size: 1.3rem; font-weight: 700;
  color: var(--c-accent); letter-spacing: .1em;
}
.biz-detail-title { font-size: 2.2rem; font-weight: 900; margin: 6px 0 16px; }
.biz-detail-text { font-size: 1.5rem; line-height: 1.9; color: var(--c-text-l); }

/* Support section */
.support-box {
  background: var(--c-primary-l); border-radius: var(--r-l); padding: 40px;
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
}
.support-img { border-radius: var(--r-m); overflow: hidden; }
.support-title { font-size: 1.8rem; font-weight: 900; color: var(--c-primary); margin-bottom: 16px; }
.support-sub { font-size: 1.6rem; font-weight: 700; margin: 16px 0 8px; color: var(--c-text); }
.support-text { font-size: 1.4rem; line-height: 1.8; color: var(--c-text-l); }

/* ============ BANNER ============ */
.banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.banner-card {
  border-radius: var(--r-l); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s var(--ease);
}
.banner-card:hover { transform: translateY(-3px); }
.banner-card img { width: 100%; display: block; }

/* ============ EMAIL CONTACT ============ */
.email-banner {
  display: flex; align-items: center; gap: 32px;
  background: var(--c-primary-l); border-radius: var(--r-l); padding: 32px;
}
.email-banner-img { flex-shrink: 0; width: 200px; border-radius: var(--r-m); overflow: hidden; }
.email-banner-body { flex: 1; }
.email-banner-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.email-banner-addr { font-size: 2rem; font-weight: 900; color: var(--c-primary); }
.email-banner-note { font-size: 1.2rem; color: var(--c-text-l); margin-top: 8px; }

/* ============ RECRUIT ============ */
.recruit-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.recruit-lead { font-size: 2.2rem; font-weight: 900; line-height: 1.6; margin-bottom: 16px; }
.recruit-lead .accent { color: var(--c-accent); }
.recruit-img { border-radius: var(--r-l); overflow: hidden; }
.recruit-text { font-size: 1.5rem; line-height: 1.9; color: var(--c-text-l); }

.job-card {
  background: var(--c-white); border-radius: var(--r-l);
  box-shadow: 0 2px 16px rgba(0,0,0,.06); margin-bottom: 32px; overflow: hidden;
}
.job-card-header {
  background: var(--c-primary); color: var(--c-white);
  padding: 18px 28px; font-size: 2rem; font-weight: 900;
}
.job-card-header .badge {
  display: inline-block; background: var(--c-accent); color: var(--c-white);
  font-size: 1.2rem; padding: 3px 10px; border-radius: var(--r-s); margin-right: 10px;
  vertical-align: middle;
}
.job-table { width: 100%; border-collapse: collapse; }
.job-table th, .job-table td { padding: 16px 24px; font-size: 1.4rem; line-height: 1.7; text-align: left; border-bottom: 1px solid var(--c-border); }
.job-table th {
  width: 160px; font-weight: 700; background: var(--c-gray-bg);
  color: var(--c-primary); white-space: nowrap; vertical-align: top;
}
.job-table td { color: var(--c-text); }
.job-table td ul { list-style: disc; padding-left: 1.5em; }
.job-table td ul li { margin-bottom: 4px; }
.job-table td a { color: var(--c-accent); font-weight: 600; }

/* ============ CONTACT ============ */
.contact-intro { text-align: center; font-size: 1.6rem; line-height: 2; margin-bottom: 48px; }
.contact-lead { font-size: 2.4rem; font-weight: 900; color: var(--c-accent); margin-bottom: 12px; }
.contact-sub { font-size: 1.6rem; color: var(--c-text-l); margin-bottom: 24px; }
.contact-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 32px; }
.contact-card {
  background: var(--c-white); border: 2px solid var(--c-border);
  border-radius: var(--r-l); padding: 32px; text-align: center;
  transition: border-color .3s;
}
.contact-card:hover { border-color: var(--c-primary); }
.contact-card-label { font-size: 1.4rem; color: var(--c-text-l); margin-bottom: 12px; }
.contact-card-tel {
  display: block; font-size: 3.2rem; font-weight: 900;
  font-family: var(--font-en); color: var(--c-primary);
  letter-spacing: .03em;
}
.contact-email {
  background: var(--c-primary-l); border-radius: var(--r-l); padding: 32px; text-align: center;
}
.contact-email-label { font-size: 1.4rem; color: var(--c-text-l); margin-bottom: 8px; }
.contact-email-addr {
  font-size: 2rem; font-weight: 700; color: var(--c-primary);
}

/* ============ COMPANY ============ */
.company-anchor {
  display: flex; gap: 12px; margin-bottom: 32px; justify-content: center;
}
.company-anchor a {
  display: inline-block; padding: 10px 24px; border: 2px solid var(--c-primary);
  border-radius: var(--r-s); color: var(--c-primary); font-weight: 600; font-size: 1.4rem;
  transition: background .2s, color .2s;
}
.company-anchor a:hover { background: var(--c-primary); color: var(--c-white); opacity: 1; }

.info-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.info-table th, .info-table td {
  padding: 16px 20px; font-size: 1.5rem; line-height: 1.7;
  text-align: left; border-bottom: 1px solid var(--c-border);
}
.info-table th {
  width: 160px; font-weight: 700; color: var(--c-primary);
  background: var(--c-gray-bg); white-space: nowrap; vertical-align: top;
}
.info-table td { color: var(--c-text); }
.info-table .branch-label { color: var(--c-accent); font-weight: 700; }

.map-wrap { border-radius: var(--r-l); overflow: hidden; margin-bottom: 40px; }
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

/* History timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 16px; top: 0; bottom: 0;
  width: 2px; background: var(--c-primary-l);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--c-primary); border: 3px solid var(--c-primary-l);
}
.timeline-year {
  font-family: var(--font-en); font-size: 2rem; font-weight: 900;
  color: var(--c-primary); margin-bottom: 8px;
}
.timeline-events { font-size: 1.4rem; color: var(--c-text-l); line-height: 1.8; }
.timeline-events .month { font-weight: 700; color: var(--c-text); display: inline-block; min-width: 70px; }

/* Greeting */
.greeting-box {
  background: var(--c-gray-bg); border-radius: var(--r-l); padding: 48px;
}
.greeting-text { font-size: 1.5rem; line-height: 2; }
.greeting-text p { margin-bottom: 16px; }
.greeting-sign { text-align: right; font-size: 1.5rem; font-weight: 700; margin-top: 24px; }

/* Sponsors */
.sponsor-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.sponsor-item {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-m); padding: 20px; text-align: center;
  transition: border-color .3s, box-shadow .3s;
}
.sponsor-item:hover { border-color: var(--c-primary); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.sponsor-item img { max-height: 80px; width: auto; margin: 0 auto; }

/* Policy accordion */
.policy-group { margin-bottom: 16px; }
.policy-summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: var(--c-primary); color: var(--c-white);
  border-radius: var(--r-m); font-size: 1.7rem; font-weight: 700; cursor: pointer;
  list-style: none;
}
.policy-summary::-webkit-details-marker { display: none; }
.policy-summary::after { content: '+'; font-size: 2rem; font-weight: 300; transition: transform .3s; }
details[open] .policy-summary::after { content: '-'; }
details[open] .policy-summary { border-radius: var(--r-m) var(--r-m) 0 0; }
.policy-content {
  padding: 24px; border: 1px solid var(--c-border);
  border-top: none; border-radius: 0 0 var(--r-m) var(--r-m);
  font-size: 1.4rem; line-height: 1.9;
}
.policy-content h4 {
  font-size: 1.6rem; font-weight: 700; color: var(--c-primary);
  margin: 20px 0 8px; padding-top: 12px; border-top: 1px solid var(--c-border);
}
.policy-content h4:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.policy-content h5 { font-size: 1.4rem; font-weight: 700; margin: 12px 0 6px; }
.policy-content p { margin-bottom: 12px; }
.policy-content ul { list-style: disc; padding-left: 1.5em; margin-bottom: 12px; }
.policy-content ul li { margin-bottom: 4px; }
.policy-content ol { padding-left: 1.5em; margin-bottom: 12px; }
.policy-content ol li { margin-bottom: 6px; }
.policy-content a { color: var(--c-accent); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: var(--r-s); font-size: 1.6rem; font-weight: 700;
  transition: background .25s, color .25s, transform .2s;
  text-decoration: none; gap: 8px;
}
.btn:hover { opacity: 1; transform: translateY(-2px); }
.btn-primary { background: var(--c-primary); color: var(--c-white); }
.btn-primary:hover { background: var(--c-primary-d); color: var(--c-white); }
.btn-accent { background: var(--c-accent); color: var(--c-white); }
.btn-accent:hover { background: var(--c-accent-d); color: var(--c-white); }
.btn-outline {
  background: transparent; color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary); color: var(--c-white); }

/* ============ CTA FOOTER ============ */
.cta-footer {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-d) 100%);
  padding: 64px 0; text-align: center; color: var(--c-white);
  display: flex; flex-direction: column; justify-content: center;
}
.cta-footer .sec-en { color: rgba(255,255,255,.5); }
.cta-footer .sec-ttl, .cta-title { color: var(--c-white); }
.cta-content { text-align: center; }
.cta-title { font-size: 2.8rem; font-weight: 900; }
.cta-text { font-size: 1.6rem; color: rgba(255,255,255,.8); margin-top: 8px; }
.cta-btns, .cta-actions { display: flex; gap: 20px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.cta-tel {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: var(--c-white); color: var(--c-primary);
  border-radius: var(--r-m); font-size: 2.4rem; font-weight: 900;
  font-family: var(--font-en); transition: transform .2s;
}
.cta-tel:hover { opacity: 1; transform: translateY(-2px); }
.cta-tel svg { width: 24px; height: 24px; fill: var(--c-primary); }
.cta-mail {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: var(--c-accent); color: var(--c-white);
  border-radius: var(--r-m); font-size: 1.8rem; font-weight: 700;
  transition: background .25s, transform .2s;
}
.cta-mail:hover { background: var(--c-accent-d); opacity: 1; transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--c-white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-secondary:hover { background: var(--c-white); color: var(--c-primary); }

/* ============ FOOTER ============ */
.footer {
  background: #1B2631; color: rgba(255,255,255,.7);
  padding: 48px 0 0;
}
.footer-inner, .footer-top {
  max-width: var(--mw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
}
.footer-logo img { height: 36px; width: auto; margin-bottom: 16px; }
.footer-logo-area { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-area img { height: 36px; width: auto; }
.footer-address { font-size: 1.3rem; line-height: 1.8; }
.footer-sns { display: flex; gap: 12px; }
.footer-sns a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-sns a:hover { color: var(--c-white); opacity: 1; }
.footer-nav { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-nav ul { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.7); font-size: 1.3rem; }
.footer-nav a:hover { color: var(--c-white); opacity: 1; }
.footer-bottom {
  text-align: center; padding: 20px 0; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 1.2rem;
}
.copyright { font-size: 1.2rem; }

/* ============ BENEFITS (recruit) ============ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.benefit-card {
  text-align: center; padding: 28px 20px;
  background: var(--c-white); border-radius: var(--r-l);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .3s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: var(--c-primary-l); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { fill: var(--c-primary); }
.benefit-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.benefit-desc { font-size: 1.3rem; line-height: 1.7; color: var(--c-text-l); }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-m); font-size: 1.6rem; font-weight: 700; cursor: pointer;
  list-style: none; transition: border-color .2s;
}
.faq-q:hover { border-color: var(--c-primary); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::before { content: 'Q.'; color: var(--c-accent); font-weight: 900; margin-right: 12px; flex-shrink: 0; }
.faq-q::after { content: '+'; font-size: 2rem; color: var(--c-accent); margin-left: 12px; flex-shrink: 0; }
details[open] .faq-q::after { content: '\2212'; }
details[open] .faq-q { border-color: var(--c-primary); border-radius: var(--r-m) var(--r-m) 0 0; }
.faq-a {
  padding: 20px 24px 20px 48px; border: 1px solid var(--c-border);
  border-top: none; border-radius: 0 0 var(--r-m) var(--r-m);
  font-size: 1.5rem; line-height: 1.8; background: var(--c-white);
}

/* ============ CONTACT FORM ============ */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.form-required {
  display: inline-block; background: var(--c-accent); color: var(--c-white);
  font-size: 1.1rem; padding: 2px 8px; border-radius: 3px; margin-left: 8px;
  vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--c-border);
  border-radius: var(--r-s); font-size: 1.5rem; font-family: var(--font-ja);
  transition: border-color .2s; background: var(--c-white);
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--c-primary);
}
.form-textarea { resize: vertical; }
.form-privacy { margin-bottom: 32px; text-align: center; }
.form-check { font-size: 1.4rem; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.form-check input { width: 18px; height: 18px; cursor: pointer; }
.form-submit { display: block; margin: 0 auto; min-width: 240px; cursor: pointer; }

/* Floating LP link */
.float-lp {
  position: fixed; bottom: 90px; right: 20px; z-index: 90;
  width: 80px; border-radius: 50%; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .3s;
}
.float-lp:hover { transform: scale(1.08); }
.float-lp img { width: 100%; display: block; }
/* Float LP text variant */
.float-lp:has(.float-lp-text) {
  width: auto; border-radius: var(--r-l); padding: 12px 16px;
  background: var(--c-accent); display: flex; flex-direction: column;
  align-items: center; gap: 2px; color: var(--c-white);
}
.float-lp-icon { font-size: 2rem; line-height: 1; }
.float-lp-text { font-size: 1rem; font-weight: 700; white-space: nowrap; color: var(--c-white); }

/* Page top */
.page-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.page-top.is-visible { opacity: 1; pointer-events: auto; }
.page-top:hover { transform: translateY(-3px); opacity: 1; }

/* Mobile bottom bar */
.sp-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 100;
  background: var(--c-white); box-shadow: 0 -2px 12px rgba(0,0,0,.08);
}
.sp-bottom-bar ul { display: flex; list-style: none; }
.sp-bottom-bar li { flex: 1; }
.sp-bottom-bar a, .sp-bottom-tel, .sp-bottom-contact {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 10px 0; font-size: 1rem; font-weight: 600; color: var(--c-text);
  gap: 2px; text-decoration: none; flex: 1;
}
.sp-bottom-bar svg { width: 20px; height: 20px; fill: var(--c-primary); }
.sp-bottom-line { color: #06C755 !important; }
.sp-bottom-line svg { fill: #06C755 !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-list, .nav-sns, .header-tel { display: none; }
  .hamburger { display: block; }
  .hero { height: 100vh; height: 100dvh; }
  .about-grid, .recruit-intro, .biz-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .biz-detail:nth-child(even) .biz-detail-grid { direction: ltr; }
  .support-box { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sec { padding: 60px 0; }
  .sec-ttl, .sec-title { font-size: 2.4rem; }
  .hero { height: 100vh; height: 100dvh; min-height: auto; }
  .hero-catch { font-size: 4rem; }
  .hero-tagline { font-size: 1.6rem; }
  .page-hero { padding: 48px 0; }
  .page-hero-title { font-size: 2.4rem; }
  .biz-grid { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { flex-direction: column; align-items: center; }
  .flow-step { max-width: 100%; width: 100%; }
  .flow-arrow { transform: rotate(90deg); padding-top: 0; }
  .hero-cta-wrap { flex-direction: column; align-items: center; }
  .btn-hero-accent { font-size: 1.6rem; padding: 14px 28px; }
  .btn-hero-outline { font-size: 1.4rem; padding: 12px 24px; }
  .contact-cards { grid-template-columns: 1fr; }
  .banner-grid { grid-template-columns: 1fr; }
  .email-banner { flex-direction: column; text-align: center; }
  .email-banner-img { width: 160px; }
  .cta-btns, .cta-actions { flex-direction: column; align-items: center; }
  .cta-title { font-size: 2.2rem; }
  .footer-inner, .footer-top { flex-direction: column; text-align: center; }
  .footer-logo-area { align-items: center; }
  .footer-sns { justify-content: center; }
  .footer-nav ul { justify-content: center; }
  .footer-nav { justify-content: center; }
  .sp-bottom-bar { display: flex; }
  .sp-bottom-bar ul { width: 100%; }
  .float-lp { bottom: 70px; width: 64px; }
  .float-lp:has(.float-lp-text) { width: auto; bottom: 70px; }
  .page-top { bottom: 70px; right: 16px; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: none; padding-bottom: 4px; }
  .job-table th, .job-table td { display: block; width: 100%; }
  .job-table th { border-bottom: none; padding-bottom: 4px; }
  .greeting-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .sec { padding: 48px 0; }
  .sec-ttl, .sec-title { font-size: 2rem; }
  .sec-hd, .sec-header { margin-bottom: 32px; }
  .cta-title { font-size: 1.8rem; }
  .about-lead { font-size: 1.8rem; }
  .hero-catch { font-size: 3rem; }
  .hero-tagline { font-size: 1.4rem; }
  .contact-card-tel { font-size: 2.4rem; }
  .cta-tel { font-size: 2rem; padding: 14px 24px; }
  .biz-card-img { height: 160px; }
  .support-box { padding: 24px; }
  .sponsor-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .timeline { padding-left: 28px; }
  .policy-summary { padding: 14px 18px; font-size: 1.5rem; }
  .policy-content { padding: 18px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-process { gap: 4px; }
  .biz-process-step { padding: 8px 10px; min-width: 56px; }
  .biz-process-step span { font-size: 1rem; }
}

/* ============ PREMIUM ANIMATION SYSTEM ============ */

/* Page entrance */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }


/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  z-index: 200; pointer-events: none;
  transform: scaleX(0); transform-origin: left;
  will-change: transform;
}

/* Enhanced reveal variants */
.rv-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv-left.is-visible { opacity: 1; transform: translateX(0); }
.rv-right { opacity: 0; transform: translateX(30px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv-right.is-visible { opacity: 1; transform: translateX(0); }
.rv-scale { opacity: 0; transform: scale(.92); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv-scale.is-visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.stagger > .is-visible { opacity: 1; transform: translateY(0); }

/* Gradient text for section en */
.sec-en {
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-dark .sec-en, .cta-footer .sec-en {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

/* Decorative section header line */
.sec-hd::after, .sec-header::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  margin: 16px auto 0; border-radius: 2px;
}
.sec-dark .sec-hd::after, .sec-dark .sec-header::after,
.cta-footer .sec-hd::after {
  background: linear-gradient(90deg, var(--c-accent), rgba(255,255,255,.6));
}

/* Enhanced page-hero decorations */
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(230,126,34,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(26,82,118,.2) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
}

/* Partner item hover */
.partner-item { transition: border-color .2s, transform .3s; }
.partner-item:hover { transform: translateY(-3px); border-color: var(--c-primary); }

/* Enhanced card hover */
.strength-card:hover, .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,.1);
}

/* CTA button enhanced */
.btn-hero-accent {
  background: linear-gradient(135deg, var(--c-accent), #F39C12);
}
/* Hero entrance animations (scoped to hero section) */
.hero .btn-hero-accent {
  opacity: 0; animation: heroLineIn .6s var(--ease) .9s forwards;
}
.hero .btn-hero-outline {
  opacity: 0; animation: heroLineIn .6s var(--ease) 1s forwards;
}

/* Trust badges (no blur for performance) */
.trust-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
}

/* Image hover zoom */
.about-img, .biz-detail-img, .recruit-img, .support-img { overflow: hidden; }
.about-img img, .biz-detail-img img, .recruit-img img, .support-img img { transition: transform .6s var(--ease); }
.about-img:hover img, .biz-detail-img:hover img,
.recruit-img:hover img, .support-img:hover img { transform: scale(1.06); }

/* Flow step enhanced hover */
.flow-step { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.flow-step:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,.1); }
.flow-num {
  background: linear-gradient(135deg, var(--c-accent), #F39C12);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* CTA tel hover */

/* Timeline enhanced */
.timeline-item { transition: transform .3s var(--ease); }
.timeline-item::before { transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.timeline-item:hover::before { box-shadow: 0 0 0 6px rgba(26,82,118,.2); transform: scale(1.3); }
.timeline-item:hover { transform: translateX(4px); }

/* News item hover */
.news-item { transition: background .2s, padding-left .3s; border-radius: var(--r-s); }
.news-item:hover { background: var(--c-primary-l); padding-left: 12px; }

/* FAQ item hover */
.faq-item { transition: transform .2s var(--ease); }
.faq-item:hover { transform: translateX(4px); }

/* Job card header */

/* Biz process step hover */
.biz-process-step { transition: background .3s, transform .3s; }
.biz-process-step:hover { background: var(--c-primary); transform: translateY(-2px); }
.biz-process-step:hover svg { fill: var(--c-white); }
.biz-process-step:hover span { color: var(--c-white); }

/* Form focus enhanced */
.form-input, .form-select, .form-textarea { transition: border-color .3s, box-shadow .3s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { box-shadow: 0 0 0 4px rgba(26,82,118,.08); }

/* Greeting box quote decoration */
.greeting-box { position: relative; overflow: hidden; }
.greeting-box::before {
  content: '\201C'; position: absolute; top: -10px; left: 20px;
  font-size: 12rem; font-family: Georgia, serif;
  color: rgba(26,82,118,.06); line-height: 1; pointer-events: none;
}

/* Map hover shadow */
.map-wrap { transition: box-shadow .3s; }
.map-wrap:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); }

/* Sponsor item hover */
.sponsor-item:hover { transform: translateY(-4px); }

/* Support box hover */
.support-box { transition: box-shadow .3s; }
.support-box:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }

/* Policy group hover */
.policy-group { transition: box-shadow .3s var(--ease); }
.policy-group:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

/* Banner card hover */

/* Company anchor link hover underline */
.company-anchor a { position: relative; overflow: hidden; }
.company-anchor a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--c-primary); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.company-anchor a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Section wave divider */
.sec-wave { position: relative; }
.sec-wave::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--c-gray-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}
.sec-wave-white::after { background: var(--c-white); }

/* Strength card number accent */
.strength-num {
  font-family: var(--font-en); font-size: 4.8rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--c-accent), #F39C12);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Counter number accent */
.counter-value {
  font-family: var(--font-en); font-weight: 900;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Enhanced CTA footer pulse */
.cta-footer .btn-hero-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(230,126,34,.4);
}

/* Card lift effect on hover */
.strength-card, .benefit-card, .flow-step, .contact-card {
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }

/* Enhanced accent underline for links */
.about-lead .highlight {
  position: relative;
}
.about-lead .highlight::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  border-radius: 2px;
}

/* Section number badges */
.biz-detail-num {
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 900;
}

/* Trust badge entrance (hero only) */
.hero .trust-badges {
  opacity: 0; animation: heroLineIn .6s var(--ease) 1.1s forwards;
}

/* iOS Safe Area */
@supports (padding: env(safe-area-inset-bottom)) {
  .sp-bottom-bar { padding-bottom: env(safe-area-inset-bottom); }
  .mobile-nav { padding-bottom: env(safe-area-inset-bottom); }
}

/* Responsive for new features */
@media (max-width: 768px) {
  .rv-left, .rv-right { opacity: 0; transform: translateY(30px); }
  .rv-left.is-visible, .rv-right.is-visible { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  .sec-hd::after, .sec-header::after { width: 40px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-catch-line, .hero-tagline, .hero .trust-badges,
  .hero .btn-hero-accent, .hero .btn-hero-outline, .hero-scroll {
    opacity: 1 !important; animation: none !important; transform: none !important;
  }
  .hero-scroll { transform: translateX(-50%) !important; }
}
