/* ================================================================
   REKS CORPORATION — CORPORATE SITE CSS v5
   Design: Clean white base, cyan/orange accents, no deep-blue backgrounds
   Reference: merveille-e.com style — bold photos, clean typography
================================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #1a2332;
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --cyan:    #00B4D8;
  --cyan-d:  #0090AD;
  --cyan-l:  #E0F7FC;
  --navy:    #0A1628;
  --navy-m:  #1a2d4a;
  --orange:  #FF6B35;
  --orange-l:#FFF0E8;
  --green:   #2ECC71;
  --white:   #ffffff;
  --gray-50: #F8FAFB;
  --gray-100:#F0F4F8;
  --gray-200:#E2E8F0;
  --gray-400:#94A3B8;
  --gray-600:#64748B;
  --gray-800:#1E293B;
  --bg-light: #F5F7FA;
  --bg-blue:  #EEF4F8;
  --font-en: 'Montserrat', 'Arial', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ─── SECTION HEADING SYSTEM (UNIFIED) ──────────────────────── */
/* All section headings use the same style: EN label above, JP title below, cyan underline */
.sec-head {
  text-align: center;
  margin-bottom: 64px;
}
.sec-head--left { text-align: left; }
.sec-head__en {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-head__title {
  font-family: var(--font-jp);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}
/* No underline on heading title */
.sec-head__title::after {
  display: none;
}
.sec-head--left .sec-head__title::after {
  display: none;
}
/* White variant for dark backgrounds */
.sec-head--white .sec-head__en { color: rgba(255,255,255,0.7); }
.sec-head--white .sec-head__title { color: var(--white); }
.sec-head--white .sec-head__title::after { display: none; }
.sec-head--white .sec-head__lead { color: rgba(255,255,255,0.65); }

/* Heading decorative bars removed */
.sec-head__bar { display: none; }
.sec-head__bar-main { display: none; }
.sec-head__bar-sub { display: none; }
.sec-head__bar-sub2 { display: none; }
.sec-head__lead {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}
.sec-head--left .sec-head__lead { margin: 0; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--cyan);
  color: var(--white);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover { background: var(--cyan-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-outline:hover { background: #06C755; border-color: #06C755; color: var(--white); transform: translateY(-2px); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-navy:hover { background: var(--navy-m); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.btn-text svg { width: 16px; height: 16px; transition: var(--transition); }
.btn-text:hover { color: var(--cyan-d); }
.btn-text:hover svg { transform: translateX(4px); }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.site-header.scrolled .header__nav-link { color: var(--navy); }
.site-header.scrolled .header__nav-link:hover { color: var(--cyan); }
.site-header.scrolled .header__logo-img { filter: none; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo-img {
  height: 48px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__nav-link {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.header__nav-link:hover { color: var(--cyan); background: rgba(0,180,216,0.08); }
.home .site-header:not(.scrolled) .header__nav-link {
  color: rgba(10,22,40,0.82);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #06C755;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 24px;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.header__btn-line:hover { background: #05a847; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(6,199,85,0.35); }
.header__btn-line svg { width: 16px; height: 16px; }
.header__btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--cyan);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 24px;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.header__btn-contact:hover { background: var(--cyan-d); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,180,216,0.35); }

/* ─── HAMBURGER (MOBILE) ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--navy); }
.home .site-header:not(.scrolled) .hamburger span { background: var(--navy); }

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav__link {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.mobile-nav__link:hover { color: var(--cyan); }
.mobile-nav__close {
  position: fixed;
  bottom: 40px;
  right: 24px;
  top: auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  background: var(--cyan);
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 20px rgba(0,180,216,0.45);
  transition: var(--transition);
  z-index: 1100;
}
.mobile-nav__close:hover {
  background: rgba(0,180,216,0.3);
  border-color: var(--cyan);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--white);
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__photo img {
  width: 120% !important; height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: left center !important;
  transform: none;
  filter: none;
}
.hero__photo::after {
  display: none;
}
/* Simple vertical accent line only */
.hero__svg-deco {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
/* Top color bar */
.hero__top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 60%, var(--cyan) 100%);
  z-index: 10;
}
.hero__vline { display: none; }

/* Main content — z-index above SVG */
.hero__content {
  position: relative;
  z-index: 5;
  margin-left: 80px;
  padding: 0;
  max-width: 500px;
  isolation: isolate;
}
.hero__content::before {
  display: none;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  display: block;
  width: 36px; height: 2px;
  background: var(--cyan);
}
.hero__eyebrow-text {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: rgba(10,22,40,0.72);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(255,255,255,0.92);
}
.hero__catch {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(72px, 10vw, 130px);
  color: var(--navy);
  -webkit-text-stroke: 12px rgba(255,255,255,0.86);
  paint-order: stroke fill;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.95),
    0 5px 0 rgba(255,255,255,0.44),
    0 14px 26px rgba(10,22,40,0.36),
    0 24px 44px rgba(10,22,40,0.22);
}
.hero__catch-sub {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(72px, 10vw, 130px);
  color: var(--navy);
  -webkit-text-stroke: 12px rgba(255,255,255,0.86);
  paint-order: stroke fill;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.95),
    0 5px 0 rgba(255,255,255,0.44),
    0 14px 26px rgba(10,22,40,0.36),
    0 24px 44px rgba(10,22,40,0.22);
}
.hero__jp {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 40px);
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 48px;
  position: relative;
  padding-left: 20px;
  text-shadow: 0 2px 14px rgba(255,255,255,0.95);
}
.hero__jp::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--cyan), var(--orange));
  border-radius: 2px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__cta .btn-outline {
  color: var(--navy);
  border-color: rgba(10,22,40,0.48);
}
.hero__cta .btn-outline:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.hero__cta .btn-recruit-green {
  background: #06C755;
  border-color: #06C755;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(6,199,85,0.24);
}
.hero__cta .btn-recruit-green:hover {
  background: #05ad4a;
  border-color: #05ad4a;
  color: var(--white);
}
/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
}
.hero__scroll-text {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  color: rgba(10,22,40,0.52);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, rgba(0,180,216,0.8), transparent);
  animation: scrollH 2s ease-in-out infinite;
}
@keyframes scrollH {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ─── LEAD MESSAGE SECTION (OUR MESSAGE) ────────────────────── */
.lead-msg {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
/* Background photo layer */
.lead-msg__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.lead-msg__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}
.lead-msg::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(245,247,250,0.68);
  z-index: 1;
}
.lead-msg::after {
  display: none;
}
.lead-msg__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.lead-msg__en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-shadow: 0 1px 10px rgba(255,255,255,0.95);
}
.lead-msg__en::before, .lead-msg__en::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: rgba(0,180,216,0.5);
}
/* Large quote mark decoration */
/* lead-msg__quote removed */
.lead-msg__text {
  font-family: var(--font-jp);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.9;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.95),
    0 2px 14px rgba(255,255,255,0.92);
}
.lead-msg__text strong {
  color: var(--cyan);
  font-weight: 700;
}
.lead-msg__accent {
  font-family: var(--font-jp);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  margin-top: 56px;
  padding: 28px 48px;
  background: rgba(255,255,255,0.82);
  border-left: 5px solid var(--cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: inline-block;
  text-align: left;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 28px rgba(10,22,40,0.10);
}

/* ─── ABOUT INTRO SECTION ────────────────────────────────────── */
.about-intro {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
/* Subtle right-side color shape */
.about-intro::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%; height: 100%;
  background: linear-gradient(160deg, rgba(0,180,216,0.05) 0%, rgba(255,107,53,0.04) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-intro__body {}
.about-intro__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 16px;
}
.about-intro__text strong { color: var(--navy); font-weight: 700; }
.about-intro__cta { margin-top: 36px; }
.about-intro__img-wrap {
  position: relative;
}
.about-intro__img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-intro__img-frame img {
  width: 100%; height: 480px;
  object-fit: cover;
  display: block;
}
/* Simple decorative elements — no complex ashirai */
.about-intro__img-deco {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 100px; height: 100px;
  border: 3px solid var(--cyan);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.6;
}
.about-intro__img-deco2 {
  position: absolute;
  top: -12px; right: -12px;
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  z-index: -1;
  opacity: 0.5;
}
.about-intro__tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-left: 3px solid var(--cyan);
}
.about-intro__tag span {
  display: block;
  font-size: 20px;
  font-family: var(--font-en);
  color: var(--cyan);
  font-weight: 900;
}
/* ─── COMPANY FEATURES SECTION ──────────────────────── */
.company-features {
  padding: 120px 0;
  background: linear-gradient(
    90deg,
    rgba(0,180,216,0.10) 0%,
    rgba(248,250,252,1) 20%,
    rgba(248,250,252,1) 80%,
    rgba(255,107,53,0.10) 100%
  );
  position: relative;
  overflow: hidden;
}
/* Left side cyan band */
.company-features::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, rgba(0,180,216,0.12) 0%, transparent 100%);
  pointer-events: none;
}
/* Right side orange band */
.company-features::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(270deg, rgba(255,107,53,0.12) 0%, transparent 100%);
  pointer-events: none;
}
.company-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
/* Feature Card */
.cf-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 40px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,180,216,0.12);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
/* Gradient top bar (always visible) */
.cf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
/* Inner gradient glow on hover */
.cf-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,180,216,0.04) 0%, rgba(255,107,53,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.cf-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(0,180,216,0.18), 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(0,180,216,0.30);
}
.cf-card:hover::after {
  opacity: 1;
}
.cf-card__num {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(0,180,216,0.12) 0%, rgba(255,107,53,0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 16px; right: 20px;
}
.cf-card__icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.cf-card__icon svg {
  width: 100%; height: 100%;
}
.cf-card__title {
  font-family: var(--font-jp);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cf-card__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 2;
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: justify;
}
.cf-card__text strong {
  color: var(--cyan);
  font-weight: 700;
}
.cf-card__line {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 2px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .company-features__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cf-card { padding: 36px 24px 32px; }
}

/* ─/* ─── CYCLE / VALUES SECTION ──────────────────────── */
.cycle-section {
  padding: 50px 0 30px;
  background: linear-gradient(
    135deg,
    rgba(0,180,216,0.14) 0%,
    rgba(224,244,252,1) 25%,
    rgba(245,250,255,1) 50%,
    rgba(255,240,232,1) 75%,
    rgba(255,107,53,0.13) 100%
  );
  position: relative;
  overflow: hidden;
}
/* Top accent bar */
.cycle-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--cyan) 50%, var(--orange) 100%);
  z-index: 2;
}
/* Large radial glow center */
.cycle-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, rgba(255,107,53,0.04) 50%, transparent 70%);
  pointer-events: none;
}
.cycle-section__bg { display: none; }
.cycle-section__overlay { display: none; }
.cycle-section__deco-tl {
  position: absolute; top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cycle-section__deco-br {
  position: absolute; bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cycle-section__inner {
  position: relative;
  z-index: 1;
}
/* SVG Cycle Diagram */
.cycle-svg-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 12px;
}
.cycle-svg-wrap svg {
  width: 100%;
  height: auto;
}

/* ─── REKS STANDS FOR BLOCK ───────────────────────────── */
.reks-stands-for {
  display: inline-block;
  max-width: 700px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,180,216,0.12);
}
.reks-stands-for__label {
  background: linear-gradient(90deg, #00B4D8 0%, #0090AD 100%);
  padding: 10px 28px;
  text-align: center;
}
.reks-stands-for__en {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.reks-stands-for__body {
  background: linear-gradient(135deg, rgba(0,180,216,0.06) 0%, rgba(255,107,53,0.05) 100%);
  border: 1px solid rgba(0,180,216,0.20);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 24px 32px 20px;
}
.reks-stands-for__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
}
.reks-stands-for__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  flex: 1;
}
.reks-stands-for__item--cyan { border-right: 1px solid rgba(0,180,216,0.20); }
.reks-stands-for__item--orange { border-right: 1px solid rgba(0,180,216,0.20); }
.reks-stands-for__divider { display: none; }
.reks-stands-for__letter {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.reks-stands-for__item--cyan .reks-stands-for__letter { color: #00B4D8; }
.reks-stands-for__item--orange .reks-stands-for__letter { color: #FF6B35; }
.reks-stands-for__item--green .reks-stands-for__letter { color: #2ECC71; }
.reks-stands-for__meaning {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.05em;
}
.reks-stands-for__tagline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #64748B;
  text-align: center;
  line-height: 1.8;
  border-top: 1px solid rgba(0,180,216,0.15);
  padding-top: 14px;
}

/* ─── KEY CONCEPT BLOCK ───────────────────────────────── */
.key-concept-block {
  display: inline-block;
  position: relative;
  padding: 20px 48px;
  background: linear-gradient(135deg, rgba(0,180,216,0.08) 0%, rgba(255,107,53,0.07) 100%);
  border: 1.5px solid rgba(0,180,216,0.30);
  border-radius: 12px;
}
.key-concept-block::before,
.key-concept-block::after {
  display: none;
}
.key-concept-block__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #00B4D8;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.key-concept-block__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #0A1628;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ─── SERVICES PREVIEW ───────────────────────────────────────── */
.services-preview {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
/* Top accent line */
.services-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--cyan) 100%);
}
.services-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-l);
}
.svc-card__img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.svc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-card__img img { transform: scale(1.05); }
.svc-card__num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  background: var(--cyan);
  padding: 4px 12px;
  border-radius: 2px;
}
.svc-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card__en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}
.svc-card__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 24px;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  transition: var(--transition);
  margin-top: auto;
}
.svc-card__link svg { width: 16px; height: 16px; transition: var(--transition); }
.svc-card__link:hover { color: var(--cyan-d); }
.svc-card__link:hover svg { transform: translateX(4px); }

/* ─── FEATURES SECTION (WHY REKS) ───────────────────────────── */
.features {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 100%);
}
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 4px;
  align-items: stretch;
  min-height: 480px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block--rev { direction: rtl; }
.feature-block--rev > * { direction: ltr; }
.feature-block__img {
  position: relative;
  overflow: hidden;
}
.feature-block__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.feature-block:hover .feature-block__img img { transform: scale(1.04); }
/* Subtle clip on image edges */
.feature-block:not(.feature-block--rev) .feature-block__img {
  clip-path: polygon(0 0, 96% 0, 100% 100%, 0 100%);
}
.feature-block--rev .feature-block__img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
}
/* All feature blocks use the same background — unified */
.feature-block__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: var(--white);
  position: relative;
}
/* Accent top border on body */
.feature-block__body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 100%);
}
.feature-block__num {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -0.04em;
}
.feature-block__en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-block__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.feature-block__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 2;
}
.feature-block__bar {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ─── RECRUIT BANNER ─────────────────────────────────────────── */
.recruit-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--navy);
}
.recruit-banner__bg {
  position: absolute; inset: 0;
}
.recruit-banner__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.45;
  filter: grayscale(10%);
}
.recruit-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.65) 0%,
    rgba(0,60,100,0.45) 40%,
    rgba(255,107,53,0.25) 100%
  );
}
.recruit-banner__deco {
  display: none;
}
.recruit-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.recruit-banner__en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.recruit-banner__en::before, .recruit-banner__en::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: rgba(0,180,216,0.5);
}
.recruit-banner__title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.recruit-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  line-height: 1.9;
}
.recruit-banner__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── NEWS SECTION ───────────────────────────────────────────── */
.news-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan-l);
}
.news-card__img {
  height: 180px;
  overflow: hidden;
}
.news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.news-card__date {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}
.news-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: var(--cyan-l);
  padding: 2px 10px;
  border-radius: 2px;
}
.news-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  flex: 1;
}
.news-section__more {
  text-align: center;
}

/* ─── CONTACT CTA SECTION ────────────────────────────────────── */
.contact-cta {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* Background image layer */
.contact-cta__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.contact-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 24%;
  opacity: 0.40;
  filter: grayscale(10%);
}
/* Natural gradient overlay */
.contact-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.65) 0%,
    rgba(0,60,100,0.45) 40%,
    rgba(255,107,53,0.25) 100%
  );
  z-index: 1;
}
/* Bottom accent line */
.contact-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, var(--cyan) 100%);
  z-index: 2;
}
.contact-cta__inner {
  text-align: center;
  position: relative;
  z-index: 3;
}
.contact-cta__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-cta__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.contact-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── JOIN CTA ───────────────────────────────────── */
.join-cta {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.join-cta__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.join-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(1.1);
}
.join-cta__overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.55);
  z-index: 1;
}
.join-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, var(--cyan) 100%);
  z-index: 2;
}
.join-cta__inner {
  text-align: center;
  position: relative;
  z-index: 3;
}
.join-cta__en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.join-cta__title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.join-cta__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.9;
}
.join-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER (WHITE THEME) ───────────────────────────────────── */
.site-footer {
  background: #F8FAFC;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid var(--gray-200);
}
/* Top accent line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, var(--cyan) 100%);
}
/* Simple nav footer layout */
.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}
.footer__brand-logo {
  height: 88px;
  width: auto;
  max-width: 104px;
  object-fit: contain;
  filter: none;
  margin-bottom: 24px;
}
.footer__brand-text {
  max-width: 760px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.footer__address {
  font-style: normal;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 0;
}
.footer__address p { margin: 0; }
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}
.footer__social-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-l);
}
.footer__col-title {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cyan);
  display: inline-block;
}
.footer__links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 32px;
  align-items: center;
}
.footer__link {
  font-size: 13px;
  color: var(--gray-600);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__link::before {
  content: '';
  display: block;
  width: 6px; height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}
.footer__link:hover { color: var(--cyan); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid var(--gray-200);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 12px;
  color: var(--gray-400);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-link {
  font-size: 12px;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer__bottom-link:hover { color: var(--cyan); }

/* ─── LINE FLOATING BUTTON ───────────────────────────────────── */
.line-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.line-float__btn {
  width: 60px; height: 60px;
  background: #06C755;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(6,199,85,0.4);
  transition: var(--transition);
}
.line-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(6,199,85,0.5);
}
.line-float__btn svg { width: 32px; height: 32px; }
.line-float__label {
  font-size: 10px;
  font-weight: 700;
  color: #06C755;
  letter-spacing: 0.05em;
  background: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

/* ─── PAGE HERO (SUBPAGES) ───────────────────────────────────── */
.page-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero__bg {
  position: absolute; inset: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(1.02) saturate(1.08);
}
.page-hero--about .page-hero__bg img {
  object-position: center 62%;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.25);
}
/* Bottom accent line */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, var(--cyan) 100%);
  z-index: 2;
}
.page-hero__deco {
  display: none;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.page-hero__en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.page-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.page-hero__breadcrumb {
  display: none;
}
.page-breadcrumb {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0;
}
.page-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--cyan); }
.page-hero__breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-breadcrumb a { color: var(--gray-600); transition: var(--transition); }
.page-breadcrumb a:hover { color: var(--cyan); }
.page-breadcrumb .sep { color: var(--gray-400); }

/* ─── ABOUT PAGE SECTIONS ────────────────────────────────────── */
.ceo-section {
  padding: 96px 0 120px;
  background: var(--white);
}
.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}
.ceo-img-wrap { position: relative; }
.ceo-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ceo-img-frame {
  overflow: hidden;
}
.ceo-img-frame img {
  width: 100%; height: 600px;
  object-fit: cover;
  object-position: center top;
  margin-top: 0;
}
.ceo-name-plate { display: none; }
.ceo-img-deco { display: none; }
.ceo-img-deco2 { display: none; }
.ceo-lead {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--cyan);
}
.ceo-lead span {
  display: block;
  color: inherit;
}
.ceo-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 16px;
}
.ceo-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--cyan);
  text-align: right;
}
.ceo-sig__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.ceo-sig__name {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
}

/* MVV Section */
.mvv-section {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
}
.mvv-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 100%);
}
.mvv-catch {
  text-align: center;
  margin-bottom: 60px;
}
.mvv-catch__inner {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 64px;
  box-shadow: 0 8px 40px rgba(0,180,216,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,180,216,0.2);
  position: relative;
  overflow: hidden;
}
.mvv-catch__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, #4CAF50 100%);
}
.mvv-catch__accent {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.mvv-catch__text {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.mvv-catch__bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  margin: 20px auto 0;
  border-radius: 2px;
}
.mvv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
.mvv-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.mvv-card--mission {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
  border-top: 5px solid var(--cyan);
  border-bottom: 2px solid var(--orange);
}
.mvv-card--vision {
  background: linear-gradient(135deg, #0d2240 0%, #1a3a5c 100%);
  color: var(--white);
  border-top: 5px solid var(--orange);
  border-bottom: 2px solid #4CAF50;
}
.mvv-card__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.mvv-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.mvv-card__text {
  font-size: clamp(20px, 2.2vw, 26px);
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-weight: 600;
}
.mvv-card__deco {
  position: absolute;
  bottom: -20px; right: 20px;
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  user-select: none;
}

/* Value Section */
.value-section { margin-top: 80px; }
.value-header {
  text-align: center;
  margin-bottom: 48px;
}
.value-header__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  margin-bottom: 12px;
}
.value-header__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  border-top: 3px solid var(--cyan);
}
.value-item:nth-child(2) { border-top-color: var(--orange); }
.value-item:nth-child(2) .value-item__num { color: var(--orange); }
.value-item:nth-child(3) { border-top-color: #4CAF50; }
.value-item:nth-child(3) .value-item__num { color: #4CAF50; }
.value-item:nth-child(4) { border-top-color: var(--orange); }
.value-item:nth-child(4) .value-item__num { color: var(--orange); }
.value-item:nth-child(5) { border-top-color: #4CAF50; }
.value-item:nth-child(5) .value-item__num { color: #4CAF50; }
.value-item:nth-child(6) { border-top-color: var(--cyan); }
.value-item:nth-child(6) .value-item__num { color: var(--cyan); }
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-item__num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 900;
  color: var(--cyan);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.value-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.value-item__text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.9;
}

/* Company Info */
.company-info {
  padding: 120px 0;
  background: var(--white);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
}
.info-table tr {
  border-bottom: 1px solid var(--gray-200);
}
.info-table th {
  width: 200px;
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-light);
  vertical-align: top;
}
.info-table td {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ─── SERVICE PAGE ───────────────────────────────────────────── */
.service-intro {
  padding: 120px 0;
  background: var(--white);
}
.service-detail {
  padding: 0 0 120px;
  background: var(--white);
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--gray-200);
}
.service-block--rev { direction: rtl; }
.service-block--rev > * { direction: ltr; }
.service-block__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-block__img img {
  width: 100%; height: 360px;
  object-fit: cover;
}
.service-block__label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-block__title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 24px;
}
.service-block__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 16px;
}
.service-block__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-block__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--navy);
}
.service-block__feature::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ─── RECRUIT PAGE ───────────────────────────────────────────── */
.recruit-intro {
  padding: 120px 0;
  background: var(--white);
}
.recruit-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.recruit-intro__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.recruit-intro__img img {
  width: 100%; height: 440px;
  object-fit: cover;
}
.recruit-intro__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 16px;
}
.jobs-section {
  padding: 120px 0;
  background: var(--bg-light);
}
.jobs-section::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 100%);
  margin-bottom: 0;
}
.job-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--cyan);
  transition: var(--transition);
}
.job-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.job-card__type {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cyan);
  background: var(--cyan-l);
  padding: 3px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
}
.job-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.job-table {
  width: 100%;
  border-collapse: collapse;
}
.job-table tr { border-bottom: 1px solid var(--gray-100); }
.job-table th {
  width: 140px;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  vertical-align: top;
}
.job-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
}
.recruit-entry {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

/* ─── NEWS PAGE ──────────────────────────────────────────────── */
.news-page {
  padding: 80px 0 120px;
  background: var(--white);
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.news-list-item:hover { background: var(--gray-50); padding-left: 8px; }
.news-list-item__img {
  width: 120px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.news-list-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.news-list-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.news-list-item__date {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}
.news-list-item__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  background: var(--cyan-l);
  padding: 2px 10px;
  border-radius: 2px;
}
.news-list-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-page {
  padding: 80px 0 120px;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.contact-info__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--cyan);
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--cyan-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--gray-200);
}
.form-tab {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.form-tab.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-group {
  margin-bottom: 24px;
}
.wpcf7 .form-group > p {
  margin: 0;
  line-height: 1;
}
.wpcf7 .form-group > p > br {
  display: none;
}
.wpcf7 .form-group .wpcf7-form-control-wrap {
  display: block;
  line-height: normal;
}
.wpcf7 .form-group .form-label {
  line-height: 1.8;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-label .req {
  color: var(--orange);
  font-size: 11px;
  margin-left: 4px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-jp);
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-textarea { height: 140px; min-height: 140px; resize: vertical; }
.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ─── THANKS PAGE ────────────────────────────────────────────── */
.thanks-page {
  padding: 120px 0;
  text-align: center;
  background: var(--white);
}
.thanks-icon {
  width: 80px; height: 80px;
  background: var(--cyan-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--cyan);
}
.thanks-icon svg { width: 40px; height: 40px; }
.thanks-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.thanks-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 48px;
}

/* ─── PRIVACY PAGE ───────────────────────────────────────────── */
.privacy-page {
  padding: 80px 0 120px;
  background: var(--white);
}
.privacy-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--cyan);
}
.privacy-page p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 16px;
}

/* ─── FADE ANIMATIONS ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible,
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-intro__grid,
  .recruit-intro__grid,
  .ceo-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-block,
  .service-block { grid-template-columns: 1fr; }
  .feature-block--rev,
  .service-block--rev { direction: ltr; }
  .feature-block__img,
  .service-block__img { height: 320px; }
  .feature-block:not(.feature-block--rev) .feature-block__img,
  .feature-block--rev .feature-block__img { clip-path: none; }
  .mvv-cards { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .header__nav { display: none !important; }
  .header__actions { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-nav { display: flex; }
  .hero__content { padding: 0 20px; max-width: 100%; }
  .hero__catch { font-size: clamp(28px, 10vw, 56px); line-height: 0.95; }
  .hero__catch-sub { font-size: clamp(28px, 10vw, 56px); line-height: 0.95; margin-bottom: 16px; }
  .hero__jp { font-size: clamp(16px, 4.5vw, 22px); margin-bottom: 24px; }
  .hero__scroll { left: 24px; }
  .services-preview__grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cycle-svg-wrap { max-width: 100%; }
  .feature-block__body { padding: 28px 20px; }
}


/* ページ別スタイル */
/* ── RECRUIT ── */
/* ── RECRUIT PAGE ENHANCED STYLES ── */
.page-hero--recruit .page-hero__bg img {
  filter: brightness(1.12) contrast(1.04) saturate(1.04);
  object-position: center 42%;
}

/* Catch Card */
.recruit-catch {
  text-align: center;
  margin-bottom: 72px;
}
.recruit-catch__inner {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 64px;
  box-shadow: 0 8px 40px rgba(0,180,216,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,180,216,0.2);
  position: relative;
  overflow: hidden;
}
.recruit-catch__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, #4CAF50 100%);
}
.recruit-catch__label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.recruit-catch__text {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray-600);
  line-height: 2.0;
  font-weight: 500;
  text-align: left;
}
.recruit-catch__bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  margin: 20px auto 0;
  border-radius: 2px;
}
.recruit-message-card__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}

/* Feature Cards */
.recruit-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.recruit-feat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.recruit-feat-card:nth-child(1) { border-top: 4px solid var(--cyan); }
.recruit-feat-card:nth-child(2) { border-top: 4px solid var(--orange); }
.recruit-feat-card:nth-child(3) { border-top: 4px solid #4CAF50; }
.recruit-feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.recruit-feat-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.recruit-feat-card:nth-child(1) .recruit-feat-card__icon { background: rgba(0,180,216,0.1); color: var(--cyan); }
.recruit-feat-card:nth-child(2) .recruit-feat-card__icon { background: rgba(255,107,53,0.1); color: var(--orange); }
.recruit-feat-card:nth-child(3) .recruit-feat-card__icon { background: rgba(76,175,80,0.1); color: #4CAF50; }
.recruit-feat-card__icon svg { width: 26px; height: 26px; }
.recruit-feat-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.recruit-feat-card__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.9;
}
/* Job Card */
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1px solid var(--gray-200);
}
.job-card__head {
  background: #eeeeee;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}
.job-card__type {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #555;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid #bbb;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.4;
}
.job-card__title {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}
.job-card__body { padding: 0; }

/* Job Table */
.job-table { width: 100%; border-collapse: collapse; border: 1px solid #ccc; }
.job-table tr { border-bottom: 1px solid #ccc; }
.job-table tr:last-child { border-bottom: 1px solid #ccc; }
.job-table th {
  width: 160px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  background: #f5f5f5;
  vertical-align: top;
  white-space: nowrap;
  border-right: 1px solid #ccc;
}
.job-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.9;
  vertical-align: top;
}

/* Salary highlight */
.salary-highlight {
  padding: 4px 0;
  margin: 0;
}
.salary-highlight__main {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.salary-highlight__sub {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

/* Income examples */
.income-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.income-ex {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}
.income-ex__amount {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.income-ex__detail {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
}

/* Qualification tags */
.qual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.qual-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.qual-tag--cyan {}
.qual-tag--orange {}
.qual-tag--green {}

/* WHY REKS List (PC: 3-col grid, SP: image+text alternating vertical) */
.recruit-why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recruit-why-item {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.recruit-why-item__img {
  height: 200px;
  overflow: hidden;
}
.recruit-why-item__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.recruit-why-item:hover .recruit-why-item__img img { transform: scale(1.04); }
.recruit-why-item__body {
  flex: 1;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Flow Steps */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--orange), #4CAF50);
  z-index: 0;
}
/* 矢印 (各ステップの右に配置) */
.flow-step::after {
  content: '▶';
  position: absolute;
  top: 37px;
  right: -8px;
  font-size: 14px;
  color: var(--cyan);
  z-index: 2;
  transform: translateY(-50%);
}
.flow-step:last-child::after { display: none; }
.flow-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.flow-step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  border: 3px solid var(--white);
  outline: 2px solid var(--cyan);
}
.flow-step:nth-child(1) .flow-step__num {
  background: linear-gradient(135deg, var(--cyan-d), var(--cyan));
  outline-color: var(--cyan);
}
.flow-step:nth-child(2) .flow-step__num {
  background: linear-gradient(135deg, var(--navy), #31577a);
  outline-color: #5d8fb8;
}
.flow-step:nth-child(3) .flow-step__num {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  outline-color: #4CAF50;
}
.flow-step:nth-child(4) .flow-step__num {
  background: linear-gradient(135deg, #8a6a16, #d4a72c);
  outline-color: #d4a72c;
}
.flow-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.flow-step__text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Entry CTA */
.entry-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.entry-cta__bg {
  position: absolute;
  inset: 0; z-index: 0;
}
.entry-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.entry-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(0,90,120,0.75) 100%);
}
.entry-cta .container { position: relative; z-index: 1; }
.entry-cta__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}
.entry-cta__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}
.entry-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .recruit-feat-grid { grid-template-columns: 1fr; }
  .income-examples { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .flow-steps::before { display: none; }
  .job-table th { width: 120px; padding: 14px 14px 14px 20px; }
  .job-table td { padding: 14px 20px; }
  .recruit-catch__inner { padding: 28px 24px; }
  .salary-highlight { padding: 18px 18px; }
}
@media (max-width: 768px) {
  .page-hero--recruit {
    align-items: flex-start !important;
  }
  .page-hero--recruit .page-hero__bg img {
    object-position: center center !important;
  }
  .page-hero--recruit .page-hero__content {
    padding-top: 4px;
  }
  .page-hero--recruit .page-hero__overlay {
    background: linear-gradient(to bottom, rgba(10,22,40,0.72) 0%, rgba(10,22,40,0.34) 36%, rgba(10,22,40,0.08) 68%, rgba(10,22,40,0.18) 100%) !important;
  }
  .recruit-message-card {
    max-height: none !important;
    margin-bottom: 36px !important;
  }
  .recruit-message-card__img {
    height: 340px !important;
    object-position: 30% 18% !important;
  }
  .recruit-message-card__overlay {
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding: 0 18px 22px !important;
    background: linear-gradient(to top, rgba(10,22,40,0.76) 0%, rgba(10,22,40,0.28) 40%, rgba(10,22,40,0.04) 100%) !important;
  }
  .recruit-message-card__body {
    max-width: calc(100% - 32px);
  }
  .recruit-message-card__label {
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    margin-bottom: 10px !important;
  }
  .recruit-message-card__title {
    font-size: clamp(14px, 4vw, 16px) !important;
    line-height: 1.65 !important;
    white-space: nowrap;
  }
  .recruit-catch__inner { padding: 24px 16px !important; width: 100% !important; display: block !important; }
  .recruit-catch__text { font-size: 14px !important; line-height: 1.8 !important; }
  .income-examples { grid-template-columns: 1fr !important; }

  /* ── WHY REKS: SPで縦一列（素材→テキストの繰り返し） ── */
  .recruit-why-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }
  .recruit-why-item {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 32px !important;
  }
  .recruit-why-item__img {
    height: 220px !important;
    width: 100% !important;
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden !important;
    display: block !important;
  }
  .recruit-why-item__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .recruit-why-item__body {
    padding: 24px 20px !important;
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-top: none !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
    display: block !important;
  }

  /* ── 選考フロー: SPでは1列表示、下向き矢印 ── */
  .flow-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: center !important;
  }
  .flow-steps::before { display: none !important; }
  .flow-step {
    width: 100% !important;
    max-width: 320px !important;
    padding: 0 16px !important;
    margin-bottom: 0 !important;
    position: relative !important;
    text-align: center !important;
  }
  .flow-step::after {
    content: '▼' !important;
    display: block !important;
    position: static !important;
    text-align: center !important;
    font-size: 18px !important;
    color: var(--cyan) !important;
    margin: 8px auto !important;
    transform: none !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  .flow-step:last-child::after { display: none !important; }
  .flow-step__num { width: 56px !important; height: 56px !important; font-size: 15px !important; margin-top: 16px !important; }
  .flow-step__title { font-size: 14px !important; }
  .flow-step__text { font-size: 13px !important; }

  /* ── 募集要項テーブル: SPでブロック表示 ── */
  .job-table { display: block !important; width: 100% !important; border: 1px solid #ccc !important; }
  .job-table tbody { display: block !important; width: 100% !important; }
  .job-table tr { display: flex !important; flex-direction: column !important; border-bottom: 1px solid #ccc !important; padding: 0 !important; }
  .job-table th { display: block !important; width: 100% !important; border-right: none !important; border-bottom: 1px solid #ccc !important; white-space: normal !important; font-size: 12px !important; padding: 10px 12px !important; font-weight: 700 !important; color: #333 !important; background: #f5f5f5 !important; }
  .job-table td { display: block !important; width: 100% !important; font-size: 13px !important; padding: 10px 12px !important; color: #444 !important; }
  .salary-highlight { padding: 4px 0 !important; }
  .salary-highlight__main { font-size: 14px !important; }
  .salary-highlight__sub { font-size: 12px !important; }
  .qual-tags { flex-wrap: wrap !important; gap: 6px !important; }
  .qual-tag { font-size: 12px !important; padding: 0 !important; }
  .entry-cta { padding: 72px 0 !important; }
  .entry-cta__title { font-size: clamp(20px, 5vw, 28px) !important; }
  .entry-cta__btns { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
}
@media (max-width: 480px) {
  .recruit-message-card__img {
    height: 330px !important;
    object-position: 28% 18% !important;
  }
  .recruit-message-card__overlay {
    padding: 0 16px 20px !important;
  }
  .recruit-message-card__body {
    max-width: calc(100% - 28px);
  }
  .flow-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: center !important;
  }
  .flow-steps::before { display: none !important; }
  .flow-step {
    width: 100% !important;
    max-width: 300px !important;
    padding: 0 12px !important;
    text-align: center !important;
  }
  .flow-step::after {
    content: '\25BC' !important;
    display: block !important;
    position: static !important;
    text-align: center !important;
    font-size: 16px !important;
    color: var(--cyan) !important;
    margin: 6px auto !important;
    transform: none !important;
  }
  .flow-step:last-child::after { display: none !important; }
  .job-table, .job-table tbody { display: block !important; width: 100% !important; }
  .job-table tr { display: flex !important; flex-direction: column !important; }
  .job-table th, .job-table td { display: block !important; width: 100% !important; }
  .job-table th { border-right: none !important; border-bottom: 1px solid #ccc !important; white-space: normal !important; font-size: 12px !important; padding: 10px 12px !important; background: #f5f5f5 !important; color: #333 !important; }
  .job-table td { font-size: 13px !important; padding: 10px 12px !important; color: #444 !important; }
}

/* ── SERVICE ── */
/* ── SERVICE PAGE ENHANCED STYLES ── */
.page-service .page-hero__bg img {
  filter: none;
}

.service-catch {
  text-align: center;
  margin-bottom: 64px;
}
.service-catch__inner {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 64px;
  box-shadow: 0 8px 40px rgba(0,180,216,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,180,216,0.2);
  position: relative;
  overflow: hidden;
}
.service-catch__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, #4CAF50 100%);
}
.service-catch__label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.service-catch__text {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--gray-600);
  line-height: 1.9;
  font-weight: 500;
}
.service-catch__bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── SERVICE CARD LAYOUT ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-card--rev {
  direction: rtl;
}
.service-card--rev > * {
  direction: ltr;
}
.service-card__img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img img {
  transform: scale(1.04);
}
.service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,180,216,0.15) 0%, rgba(0,0,0,0.1) 100%);
}
.service-card__body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.service-card--energy .service-card__body {
  border-top: 5px solid var(--cyan);
}
.service-card--sales .service-card__body {
  border-top: 5px solid var(--orange);
}
.service-card__num {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  margin-bottom: 8px;
}
.service-card--energy .service-card__num { color: var(--cyan); }
.service-card--sales .service-card__num { color: var(--orange); }

.service-card__en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.service-card__title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.service-card__divider {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.service-card--energy .service-card__divider { background: linear-gradient(90deg, var(--cyan), #4CAF50); }
.service-card--sales .service-card__divider { background: linear-gradient(90deg, var(--orange), var(--cyan)); }

.service-card__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2.0;
  margin-bottom: 14px;
}
.service-card__points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}
.service-card__point::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
}
.service-card--energy .service-card__point::before { background: var(--cyan); }
.service-card--sales .service-card__point::before { background: var(--orange); }

.service-card__deco {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-family: var(--font-en);
  font-size: 100px;
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .service-card { grid-template-columns: 1fr; }
  .service-card--rev { direction: ltr; }
  .service-card__img { min-height: 260px; }
  .service-card__body { padding: 36px 28px; }
  .service-catch__inner { padding: 32px 28px; }
}
@media (max-width: 768px) {
  .service-catch__inner { padding: 24px 16px; width: 100%; display: block; }
  .service-catch__text { font-size: 14px; }
  .service-card__img { min-height: 220px; }
  .service-card__body { padding: 28px 20px; }
  .service-card__title { font-size: clamp(18px, 5vw, 24px); }
  .service-card { margin-bottom: 48px; }
}
@media (max-width: 480px) {
  .service-card__body { padding: 24px 16px; }
  .service-card__title { font-size: 18px; }
  .service-card__text { font-size: 14px; }
}

/* ── CONTACT ── */
/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
  padding: 80px 0 100px;
  background: var(--bg-light);
}
.contact-intro-card {
  max-width: 860px;
  margin: 0 auto 56px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.contact-intro-card__bar {
  height: 5px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, #4CAF50 100%);
}
.contact-intro-card__inner {
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
}
.contact-info-item__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-info-item__val {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}
.contact-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(6,199,85,0.3);
}
.contact-line-btn:hover {
  background: #05b34d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,199,85,0.4);
}
.contact-line-btn svg {
  width: 22px;
  height: 22px;
}

/* Form Card */
.contact-form-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.contact-form-card__bar {
  height: 5px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, #4CAF50 100%);
}
.contact-form-card__inner {
  padding: 48px 56px;
}

/* Tabs */
.form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--cyan);
}
.form-tab {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-jp);
}
.form-tab:first-child {
  border-right: 1px solid var(--cyan);
}
.form-tab.active {
  background: var(--cyan);
  color: var(--white);
}
.form-tab:hover:not(.active) {
  background: rgba(0,180,216,0.08);
}
.form-panel { display: none; }
.form-panel.active { display: block; }

/* Form Elements */
.form-group {
  margin-bottom: 24px;
}
.wpcf7 .form-group > p {
  margin: 0;
  line-height: 1;
}
.wpcf7 .form-group > p > br {
  display: none;
}
.wpcf7 .form-group .wpcf7-form-control-wrap {
  display: block;
  line-height: normal;
}
.wpcf7 .form-group .form-label {
  line-height: 1.8;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-required {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  padding: 2px 8px;
  border-radius: 4px;
}
.form-optional {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--gray-300);
  padding: 2px 8px;
  border-radius: 4px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-jp);
  color: var(--navy);
  background: var(--bg-light);
  transition: var(--transition);
  box-sizing: border-box;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}
.form-textarea {
  height: 140px;
  min-height: 140px;
  resize: vertical;
}
.form-check {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
}
.form-check > span:not(.wpcf7-form-control-wrap) {
  display: inline-block;
  white-space: nowrap;
}
.form-check .wpcf7-form-control-wrap,
.form-check .wpcf7-form-control,
.form-check .wpcf7-list-item,
.form-check .wpcf7-list-item label {
  display: flex;
  margin: 0;
}
.form-check .wpcf7-form-control-wrap {
  flex: 0 0 auto;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--cyan);
  cursor: pointer;
}
.form-check a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}
.form-check a:hover { text-decoration: underline; }
.form-submit {
  margin-top: 32px;
  text-align: center;
}
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan) 0%, #0077b6 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-jp);
  padding: 16px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,180,216,0.35);
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,180,216,0.45);
}
.form-submit-btn svg {
  width: 18px;
  height: 18px;
}
.wpcf7 input.form-submit-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2 11 13'/%3E%3Cpath d='M22 2 15 22 11 13 2 9 22 2z'/%3E%3C/svg%3E"), linear-gradient(135deg, var(--cyan) 0%, #0077b6 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: calc(50% + 44px) center, center;
  background-size: 18px 18px, 100% 100%;
  padding-right: 64px;
}
.wpcf7 input.form-submit-btn[value="エントリーする"] {
  background-position: calc(50% + 62px) center, center;
}

@media (max-width: 768px) {
  .contact-intro-card__inner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
  }
  .contact-form-card__inner { padding: 28px 20px; }
  /* タブはSPでも横一列を維持（分かりやすく大きめに） */
  .form-tabs {
    flex-direction: row;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--cyan);
    margin-bottom: 32px;
  }
  .form-tab {
    flex: 1;
    padding: 14px 8px;
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
    word-break: keep-all;
    white-space: normal;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-tab:first-child { border-right: 1px solid var(--cyan); border-bottom: none; }
  .form-submit-btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
}
@media (max-width: 480px) {
  .contact-form-card__inner { padding: 20px 14px; }
  .contact-intro-card__inner { padding: 20px 14px; }
  .form-input, .form-select, .form-textarea { font-size: 14px; padding: 12px 12px; }
}

/* ── NEWS ── */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-bottom: 16px;
}
.news-pagination__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: transparent;
  color: var(--cyan);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.news-pagination__btn:hover,
.news-pagination__btn.active {
  background: var(--cyan);
  color: var(--white);
}

/* ── NEWS-DETAIL ── */
.news-detail-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.news-detail-hero__img {
  width: 100%; height: 100%; object-fit: cover;
}
.news-detail-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(0,90,120,0.5) 100%);
}
.news-detail-hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 40px;
}
.news-detail-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.news-detail-date {
  font-family: var(--font-en); font-size: 13px; color: rgba(255,255,255,0.8); letter-spacing: 0.05em;
}
.news-detail-cat {
  display: inline-block; background: var(--cyan); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; letter-spacing: 0.05em;
}
.news-detail-title {
  font-size: clamp(20px, 3vw, 32px); font-weight: 800; color: var(--white); line-height: 1.4;
}
.news-detail-body {
  padding: 60px 0 80px; background: var(--white);
}
.news-detail-article {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.news-detail-article__inner {
  padding: 48px 56px;
}
.news-detail-article__inner p {
  font-size: 15px; color: var(--gray-600); line-height: 2; margin-bottom: 24px;
}
.news-detail-callout {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--cyan);
  font-size: 14px;
  color: var(--gray-600);
}
.news-detail-callout p {
  margin-bottom: 0;
}
.news-detail-callout a {
  color: var(--cyan);
  font-weight: 700;
}
.news-detail-article__inner h2 {
  font-size: 18px; font-weight: 700; color: var(--navy); margin: 40px 0 16px;
  padding-left: 16px; border-left: 4px solid var(--cyan);
}
.news-detail-article__img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.news-detail-article__bar {
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, #4CAF50 100%);
}
.news-back {
  max-width: 800px; margin: 32px auto 0;
  display: flex; align-items: center; gap: 8px;
}
.news-back a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  text-decoration: none; transition: var(--transition);
}
.news-back a:hover { color: var(--cyan); }
@media (max-width: 768px) {
  .news-detail-article__inner { padding: 28px 20px; }
  .news-detail-hero { height: 240px; }
  .news-detail-article__img { height: 200px; }
}
@media (max-width: 480px) {
  .news-detail-article__inner { padding: 20px 14px; }
  .news-detail-hero { height: 200px; }
  .news-detail-title { font-size: 18px; }
}

/* ── PRIVACY ── */
.privacy-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.privacy-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.privacy-card__bar {
  height: 5px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, #4CAF50 100%);
}
.privacy-card__inner {
  padding: 56px 64px;
}
.privacy-intro {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--cyan);
}
.privacy-article h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
  padding: 12px 20px;
  background: linear-gradient(90deg, rgba(0,180,216,0.08) 0%, transparent 100%);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.privacy-article p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 16px;
}
.privacy-article ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}
.privacy-article ul li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}
.privacy-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.privacy-article a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}
.privacy-article a:hover { text-decoration: underline; }
.privacy-footer-note {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
  text-align: right;
}
.privacy-footer-note p {
  font-size: 13px;
  color: var(--gray-400);
  margin: 0 0 4px;
}
@media (max-width: 768px) {
  .privacy-section { padding: 56px 0 72px; }
  .privacy-card__inner { padding: 28px 20px; }
  .privacy-article h2 { font-size: 15px; padding: 10px 14px; }
  .privacy-article p,
  .privacy-article ul li { font-size: 14px; }
  .privacy-intro { padding: 18px 16px; font-size: 14px; }
}
@media (max-width: 480px) {
  .privacy-card__inner { padding: 20px 14px; }
  .privacy-article h2 { font-size: 14px; margin: 28px 0 10px; }
  .privacy-footer-note { text-align: left; }
}

/* ── THANKS ── */
.page-thanks .site-header .header__nav-link {
  color: #111;
}
.page-thanks .site-header .header__nav-link:hover {
  color: var(--cyan);
}
.page-thanks .site-header .hamburger span {
  background: #111;
}
.thanks-section {
  padding: 100px 0 120px;
  background: var(--bg-light);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: center;
}
.thanks-card__bar {
  height: 5px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 50%, #4CAF50 100%);
}
.thanks-card__inner {
  padding: 64px 48px;
}
.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, #0077b6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(0,180,216,0.35);
}
.thanks-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}
.thanks-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.thanks-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.4;
}
.thanks-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 40px;
}
.thanks-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 2px;
  margin: 0 auto 40px;
}
.thanks-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.thanks-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  text-align: left;
}
.thanks-note p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0;
}
.thanks-note strong {
  color: var(--navy);
}
@media (max-width: 768px) {
  .thanks-section { padding: 72px 0 80px; }
  .thanks-card__inner { padding: 40px 24px; }
  .thanks-title { font-size: 22px; }
  .thanks-text { font-size: 14px; }
}
@media (max-width: 480px) {
  .thanks-card__inner { padding: 32px 16px; }
  .thanks-title { font-size: 20px; }
  .thanks-icon { width: 64px; height: 64px; }
  .thanks-icon svg { width: 32px; height: 32px; }
}
