:root {
  --uce-blue: #1a35a0;
  --uce-navy: #0d1f4e;
  --uce-blue-dark: #142a80;
  --uce-black: #111111;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-gray: #eef0f4;
  --mid-gray: #8a8f9e;
  --text: #1c1e26;
  --border: #dde0e8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-logo img {
  height: 44px; width: auto;
}

.nav-links {
  display: flex; gap: 40px; list-style: none;
}

.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--uce-blue); }

.nav-right {
  display: flex; align-items: center; gap: 8px;
}

.nav-company-en {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--uce-blue);
}

.nav-contact {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); background: var(--uce-blue);
  padding: 10px 24px; text-decoration: none;
  transition: background 0.2s;
  margin-left: 16px;
}

.nav-contact:hover { background: var(--uce-blue-dark); }



/* HERO */
.hero-wrap {
  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-rows: 1fr;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  padding-top: 72px;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--white);
}

.hero-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  background: var(--white);
  min-width: 0;
}

.hero-left-inner {
  padding: 0 48px 0 80px;
  width: 100%;
}

.hero-en-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--mid-gray); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.6s 0.15s forwards;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 700; line-height: 0.95;
  color: #111; letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.7s 0.25s forwards;
}
.hero-title .blue { color: var(--uce-blue); }

.hero-tagline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; font-weight: 300; line-height: 2.1;
  color: #555; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.55s forwards;
}

.btn-blue {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  color: #fff; background: var(--uce-blue);
  padding: 15px 32px; display: inline-block;
  transition: background 0.25s;
}
.btn-blue:hover { background: #142a80; }

.btn-outline-dark {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  color: #1c1e26; border: 1px solid #ccc;
  padding: 15px 32px; display: inline-block;
  transition: all 0.25s;
}
.btn-outline-dark:hover { border-color: var(--uce-blue); color: var(--uce-blue); }

/* 右：画像（左端斜めカット） */
.hero-right-img {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0; animation: fadeIn 0.9s 0.3s forwards;
  min-width: 0;
  min-height: 0;
}

.hero-right-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 1s cubic-bezier(0.4,0,0.2,1);
}

.hero-wrap:hover .hero-right-img img { transform: scale(1.03); }

/* 旧要素非表示 */
.hero-grid-bg, .hero-accent-bar,
.hero-inner, .hero-right-panel,
.hero-badge { display: none !important; }

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 280px;
    height: auto;
    min-height: auto;
  }
  .hero-left  { grid-column: 1; grid-row: 1; }
  .hero-left-inner { padding: 48px 32px; }
  .hero-right-img {
    grid-column: 1; grid-row: 2;
    clip-path: none;
    opacity: 1; animation: none;
  }
}

@media (max-width: 640px) {
  .hero-left-inner { padding: 40px 24px; }
  .hero-right-img  { grid-template-rows: auto 220px; }
  .hero-btns       { flex-direction: column; }
}


/* SECTIONS */
.section-wrap { padding: 120px 120px; }
.section-wrap-gray { padding: 120px 120px; background: var(--off-white); }
.section-wrap-blue { padding: 120px 120px; background: var(--uce-blue); }
.section-wrap-dark { padding: 120px 120px; background: var(--uce-navy); }

.eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--uce-blue);
  margin-bottom: 14px;
}

.eyebrow-white {
  font-family: 'Barlow', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 700;
  color: var(--uce-navy); line-height: 1.1;
  letter-spacing: 0.01em; margin-bottom: 60px;
}

.sec-title-white {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 700;
  color: var(--white); line-height: 1.1;
  letter-spacing: 0.01em; margin-bottom: 60px;
}

/* ABOUT */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

.philosophy-stack { display: flex; flex-direction: column; gap: 40px; }

.phil-card {
  border-left: 3px solid var(--uce-blue);
  padding-left: 28px;
}

.phil-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--uce-blue); margin-bottom: 12px;
}

.phil-text { font-size: 14px; font-weight: 300; line-height: 2; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table td { padding: 18px 0; font-size: 13px; }
.info-table td:first-child { color: var(--mid-gray); width: 130px; font-family: 'Barlow', sans-serif; font-size: 11px; letter-spacing: 0.05em; }

.timeline { margin-top: 56px; position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--uce-blue), var(--light-gray)); }
.tl-item { position: relative; padding-bottom: 32px; }
.tl-item::before { content: ''; position: absolute; left: -32px; top: 5px; width: 8px; height: 8px; background: var(--uce-blue); }
.tl-year { font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--uce-blue); margin-bottom: 6px; }
.tl-text { font-size: 13px; line-height: 1.8; }

/* BUSINESS */
.biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }

.biz-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 52px 44px; position: relative; overflow: hidden;
  transition: all 0.3s;
}

.biz-card:hover { border-color: var(--uce-blue); }

.biz-card::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px; background: var(--uce-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.biz-card:hover::after { transform: scaleX(1); }

.biz-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 300;
  color: var(--light-gray); line-height: 1; margin-bottom: 24px;
}

.biz-name { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--uce-navy); }
.biz-desc { font-size: 13px; font-weight: 300; line-height: 2; color: #555; }

.biz-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.biz-tag {
  font-family: 'Barlow', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--uce-blue); color: var(--uce-blue); padding: 5px 12px;
}

/* STRENGTHS */
.strength-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.st-card {
  background: var(--white); padding: 56px 40px;
  border-top: 3px solid var(--uce-blue);
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}

.st-num { font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 200; color: var(--light-gray); line-height: 1; margin-bottom: 24px; }
.st-name { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.st-sub { font-size: 12px; color: var(--uce-blue); font-weight: 500; margin-bottom: 14px; letter-spacing: 0.05em; }
.st-body { font-size: 13px; font-weight: 300; line-height: 2; color: #555; }

/* TRACK */
.stats-grid { display: grid; grid-template-columns: 1fr; border: 1px solid rgba(255,255,255,0.15); margin-bottom: 72px; max-width: 400px; }
.stat-cell-single { border-right: none !important; }

.stat-cell { padding: 56px 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 60px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.stat-num sub { font-size: 28px; }
.stat-label { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }

.qual-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.qual-item { border: 1px solid rgba(255,255,255,0.15); padding: 36px 28px; }
.qi-head { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.qi-body { font-size: 12px; font-weight: 300; line-height: 2; color: rgba(255,255,255,0.55); }

/* RECRUIT */
.recruit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.recruit-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--uce-navy); line-height: 1.15; margin-bottom: 28px; }
.recruit-title .blue { color: var(--uce-blue); }
.recruit-body { font-size: 13px; font-weight: 300; line-height: 2.1; color: #555; margin-bottom: 40px; }

.rv-list { display: flex; flex-direction: column; gap: 16px; }
.rv-item { display: flex; gap: 20px; align-items: flex-start; border: 1px solid var(--border); padding: 24px 28px; transition: border-color 0.2s; }
.rv-item:hover { border-color: var(--uce-blue); }
.rv-n { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 300; color: var(--uce-blue); min-width: 44px; line-height: 1; }
.rv-t { font-size: 13px; line-height: 1.9; }

/* CONTACT */
.contact-wrap { max-width: 760px; margin: 0 auto; }
.contact-desc { font-size: 14px; font-weight: 300; line-height: 2.2; color: #555; margin-bottom: 56px; }
.cf { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf-group { display: flex; flex-direction: column; gap: 8px; }
.cf-label { font-family: 'Barlow', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid-gray); }
.cf-label .req { color: var(--uce-blue); }
.cf-group input, .cf-group select, .cf-group textarea {
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px; color: var(--text);
  background: var(--white); border: 1px solid var(--border);
  padding: 14px 18px; outline: none; transition: border-color 0.2s; appearance: none;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--uce-blue); }
.cf-group textarea { resize: vertical; min-height: 130px; }
.submit-btn {
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: var(--uce-blue); color: var(--white);
  border: none; padding: 20px 72px; cursor: pointer;
  transition: background 0.25s; align-self: center;
}
.submit-btn:hover { background: var(--uce-blue-dark); }

/* FOOTER */
footer { background: var(--uce-navy); padding: 72px 120px 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 52px; width: auto; }
.footer-co-name { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.footer-co-name span { font-family: 'Barlow', sans-serif; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-col-title { font-family: 'Barlow', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: 'Barlow', sans-serif; font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); }



/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--uce-navy);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
}

.mobile-drawer.open {
  max-height: 480px;
  padding: 24px 32px 32px;
}

.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-drawer ul li { border-bottom: 1px solid var(--border); }
.mobile-drawer ul li:first-child { border-top: 1px solid var(--border); }

.mobile-drawer ul a {
  display: block; padding: 18px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text); text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-drawer ul a:hover { color: var(--uce-blue); padding-left: 8px; }

.mobile-drawer .drawer-contact {
  margin-top: 20px;
  display: block; text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  color: var(--white); background: var(--uce-blue);
  padding: 16px; transition: background 0.2s;
}

.mobile-drawer .drawer-contact:hover { background: var(--uce-navy); }

@media (max-width: 1100px) {
  .hamburger { display: flex; }
  .nav-right .nav-contact { display: none; }
}

/* PRIVACY POLICY MODAL */
.pp-trigger {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--uce-blue); text-decoration: underline;
  cursor: pointer; background: none; border: none;
  padding: 0; transition: color 0.2s;
}
.pp-trigger:hover { color: var(--uce-navy); }

.pp-consent-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: #555; justify-content: center;
  margin-top: 4px;
}

.pp-consent-row input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--uce-blue); cursor: pointer;
}

/* Overlay */
.pp-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,16,32,0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}

.pp-overlay.open {
  opacity: 1; pointer-events: all;
}

/* Modal panel */
.pp-modal {
  background: var(--white);
  width: min(760px, 92vw);
  max-height: 82vh;
  display: flex; flex-direction: column;
  position: relative;
  transform: translateY(40px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  box-shadow: 0 32px 80px rgba(8,16,32,0.28), 0 0 0 1px rgba(26,53,160,0.12);
}

.pp-overlay.open .pp-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal top bar */
.pp-modal-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.pp-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--uce-navy);
  letter-spacing: 0.02em;
}

.pp-modal-title span { color: var(--uce-blue); }

.pp-close {
  width: 40px; height: 40px; border: 1px solid var(--border);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--mid-gray); transition: all 0.2s; flex-shrink: 0;
}

.pp-close:hover { background: var(--uce-blue); color: var(--white); border-color: var(--uce-blue); }

/* Scroll body */
.pp-body {
  overflow-y: auto; padding: 36px 40px;
  flex: 1;
  scrollbar-width: thin; scrollbar-color: var(--uce-blue) var(--light-gray);
}

.pp-body::-webkit-scrollbar { width: 4px; }
.pp-body::-webkit-scrollbar-track { background: var(--light-gray); }
.pp-body::-webkit-scrollbar-thumb { background: var(--uce-blue); border-radius: 2px; }

.pp-intro {
  font-size: 13px; line-height: 2; color: #444; margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}

.pp-article { margin-bottom: 28px; }

.pp-article-title {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--uce-blue);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}

.pp-article-title::before {
  content: '';
  display: block; width: 3px; height: 14px; background: var(--uce-blue);
}

.pp-article-body {
  font-size: 13px; line-height: 2; color: #444;
}

.pp-article-body ul { padding-left: 20px; margin-top: 8px; }
.pp-article-body ul li { margin-bottom: 4px; }

.pp-address {
  margin-top: 32px; padding: 20px 24px;
  background: var(--off-white); border-left: 3px solid var(--uce-blue);
  font-size: 12px; line-height: 1.9; color: #555;
}

/* Bottom bar */
.pp-modal-footer {
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end;
  flex-shrink: 0;
}

.pp-ok-btn {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--uce-blue); color: var(--white);
  border: none; padding: 14px 48px; cursor: pointer;
  transition: background 0.25s;
}

.pp-ok-btn:hover { background: var(--uce-navy); }

/* Progress bar inside modal */
.pp-progress {
  height: 3px; background: var(--light-gray);
  flex-shrink: 0;
}

.pp-progress-bar {
  height: 100%; background: var(--uce-blue);
  width: 0%; transition: width 0.1s linear;
}


.history-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--uce-navy); letter-spacing: 0.04em;
  margin-top: 56px; margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--uce-blue);
  display: inline-block;
}


/* MAP SECTION */
.map-section {
  padding: 0;
  background: var(--white);
}

.map-header {
  padding: 80px 120px 48px;
  background: var(--white);
}

.map-embed-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-top: 3px solid var(--uce-blue);
  border-bottom: 3px solid var(--uce-blue);
}

.map-embed-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s;
}

.map-embed-wrap:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.map-info-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 120px;
  background: var(--uce-navy);
  flex-wrap: wrap; gap: 16px;
}

.map-address-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.map-address-text strong {
  font-weight: 700; color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  display: block; margin-bottom: 6px; color: rgba(255,255,255,0.4);
}

.map-open-btn {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  color: var(--white); border: 1px solid var(--white);
  padding: 12px 28px; white-space: nowrap;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}

.map-open-btn:hover { background: rgba(255,255,255,0.15); }
.map-open-btn::after { content: '↗'; font-size: 13px; }

@media (max-width: 1100px) {
  .map-header { padding: 60px 40px 36px; }
  .map-embed-wrap { height: 320px; }
  .map-info-bar { padding: 24px 40px; }
}

@media (max-width: 640px) {
  .map-header { padding: 48px 24px 28px; }
  .map-embed-wrap { height: 260px; }
  .map-info-bar { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
}


/* SUBMIT BUTTON ANIMATION */
.submit-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-width: 220px;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.submit-btn:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  width: 0; height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: none;
}

.btn-ripple.animate {
  animation: rippleOut 0.6s ease-out forwards;
}

@keyframes rippleOut {
  from { width: 0; height: 0; opacity: 1; }
  to   { width: 400px; height: 400px; opacity: 0; }
}

/* Shimmer sweep on hover */
.submit-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}

.submit-btn:hover::after {
  left: 150%;
}

/* Loading state */
.submit-btn.loading .btn-text::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 10px; vertical-align: middle;
}

.submit-btn.loading .btn-arrow { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.submit-btn.success {
  background: #2a7a4b !important;
  pointer-events: none;
}


/* TRACK CTA */
.track-cta {
  margin-top: 64px; text-align: center;
}
.btn-track-cta {
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; text-decoration: none;
  color: var(--white); border: 2px solid var(--white);
  padding: 20px 64px; display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s; position: relative; overflow: hidden;
  background: transparent;
}
.btn-track-cta:hover { background: var(--white); color: var(--uce-blue); }
.btn-track-cta:hover .cta-arrow { transform: translateX(6px); }
.cta-arrow { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }


.contact-caution {
  font-size: 11px; color: var(--mid-gray); letter-spacing: 0.03em;
}


/* reCAPTCHA notice */
.recaptcha-notice {
  font-size: 11px; color: var(--mid-gray); text-align: center;
  line-height: 1.8; margin-bottom: 4px;
}
.recaptcha-notice a {
  color: var(--uce-blue); text-decoration: underline;
}
/* Hide default badge (表示義務はnoticeテキストで代替) */
.grecaptcha-badge { visibility: hidden; }


/* Honeypot */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 0; height: 0; overflow: hidden; opacity: 0;
  pointer-events: none;
}

/* Field note */
.field-note {
  font-size: 11px; color: var(--mid-gray);
  margin-top: 6px; display: block;
}


/* ── FORM SECURITY UI ── */
.cf-group input.error,
.cf-group select.error,
.cf-group textarea.error {
  border-color: #c0392b !important;
  background: #fff8f8;
}
.cf-group input.valid,
.cf-group select.valid,
.cf-group textarea.valid {
  border-color: #27ae60 !important;
}
.field-error {
  font-size: 11px; color: #c0392b;
  margin-top: 5px; display: none;
  font-family: 'Barlow', sans-serif; letter-spacing: 0.05em;
}
.field-error.show { display: block; }

/* Rate limit warning */
.rate-limit-msg {
  background: #fff3cd; border: 1px solid #ffc107;
  color: #856404; font-size: 12px; line-height: 1.8;
  padding: 14px 20px; text-align: center; display: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.rate-limit-msg.show { display: block; }

/* Submit disabled state */
.submit-btn:disabled {
  opacity: 0.5; cursor: not-allowed; pointer-events: none;
}



/* 左：テキストエリア */
.vb-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 120px;
  position: relative; z-index: 1;
}

.vb-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--uce-blue);
  margin-bottom: 20px;
}

.vb-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700; line-height: 0.95;
  color: var(--uce-black, #111);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.vb-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; font-weight: 300; line-height: 2.2;
  color: #555;
  max-width: 340px;
}

/* 右：画像エリア（斜めクリップ） */
.vb-image-wrap {
  position: relative;
  overflow: hidden;
  /* 左端を斜めにカット — 画像2と同じ構図 */
}

.vb-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.vision-banner:hover .vb-image-wrap img {
  transform: scale(1.04);
}

/* レスポンシブ */
@media (max-width: 1100px) {
  .vision-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vb-text {
    padding: 64px 40px;
  }
  .vb-image-wrap {
    clip-path: none;
    aspect-ratio: 16/9;
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  .vb-text { padding: 48px 24px; }
  .vb-image-wrap { max-height: 260px; }
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.reveal { opacity:0; transform:translateY(28px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .nav-links { display: none; }
  .hero-inner { padding: 0 40px; padding-top: 80px; }
  .hero-right-panel { display: none; }
  .section-wrap, .section-wrap-gray, .section-wrap-blue, .section-wrap-dark { padding: 80px 40px; }
  .about-layout, .recruit-layout { grid-template-columns: 1fr; gap: 56px; }
  .biz-grid, .strength-row, .stats-grid, .qual-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  footer { padding: 56px 40px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cf-row { grid-template-columns: 1fr; }
}