/*
Theme Name: kuriden-original-theme
Theme URI: https://kuri-den.com
Author: Kuriden
Author URI: https://kuri-den.com
Description: 株式会社クリデン オリジナルテーマ - 電気工事・高圧受電設備・プラント工事
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: kuriden
*/

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --color-accent:      #FF8C00;
  --color-accent-dark: #cc7000;
  --color-accent-light:#ffa733;
  --color-dark:        #1a1a2e;
  --color-dark-2:      #16213e;
  --color-mid:         #2c2c54;
  --color-text:        #333333;
  --color-text-muted:  #666666;
  --color-bg:          #ffffff;
  --color-bg-gray:     #f7f7f7;
  --color-border:      #e5e5e5;
  --color-white:       #ffffff;

  --font-jp:      'Noto Sans JP', sans-serif;
  --font-en:      'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mincho:    'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --font-mincho-en: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-display:   'Bebas Neue', 'Impact', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 48px rgba(0,0,0,.16);

  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(.25,.8,.25,1);

  --container:  1180px;
  --header-h:   80px;
}

/* ============================================================
   Accessibility
   ============================================================ */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-accent-dark); }

ul, ol { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-en), var(--font-jp);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -.5px;
}

.section-subtitle {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  display: block;
  margin-bottom: 1rem;
}

.section-lead {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.9;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

/* スマホのみ有効な改行 */
br.sp-br { display: none; }
@media (max-width: 640px) { br.sp-br { display: block; } }

.section {
  padding: 100px 0;
}

.section--gray {
  background: var(--color-bg-gray);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.section--dark h2,
.section--dark h3 { color: var(--color-white); }

/* ============================================================
   Accent line / decorative underline
   ============================================================ */
.accent-line {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto 2.5rem;
  border-radius: 2px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-en), var(--font-jp);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,140,0,.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 1.05rem;
}

/* ============================================================
   Header
   ============================================================ */


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transition: box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}
.site-header.is-scrolled .header-body {
  height: 56px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 140, 0, 0.2);
}

/* ── Header body (the flex row) ── */
.header-body {
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 42px !important;
  height: 42px !important;
  background: var(--color-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: width 0.35s ease, height 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.25);
}
.site-header.is-scrolled .site-logo__mark {
  width: 34px !important;
  height: 34px !important;
}
.site-logo:hover .site-logo__mark {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.45);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo__en {
  font-family: var(--font-mincho-en);
  font-size: 1.45rem !important;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  transition: font-size 0.35s ease;
}
.site-header.is-scrolled .site-logo__en {
  font-size: 1.2rem !important;
}
.site-logo__en em {
  font-style: normal;
  color: var(--color-accent);
}

.site-logo__jp {
  font-family: var(--font-mincho);
  font-size: 0.55rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.38);
  letter-spacing: 1.5px;
}

/* WordPress custom logo image */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.site-header .site-logo img {
  transition: height 0.35s ease;
}
.site-header.is-scrolled .site-logo img {
  height: 40px !important;
}

/* ── Primary Navigation ── */
.nav-primary {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* ── Dropdown submenu ── */
.nav-primary ul li {
  position: relative;
}

/* サブメニュー本体 */
.nav-primary ul li .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: rgba(14, 14, 28, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--color-accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  height: auto !important;
}

/* ホバーで表示 */
.nav-primary ul li:hover > .sub-menu,
.nav-primary ul li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* サブメニューアイテム */
.nav-primary ul li .sub-menu li {
  display: block;
}
.nav-primary ul li .sub-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  color: rgba(255,255,255,.72);
  letter-spacing: 0.05em;
  white-space: nowrap;
  height: auto;
  transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}
.nav-primary ul li .sub-menu li a::after {
  display: none;
}
.nav-primary ul li .sub-menu li a:hover {
  color: var(--color-accent);
  background: rgba(255,140,0,.06);
  padding-left: 1.5rem;
}

/* 親メニューに▼アイコン */
.nav-primary ul li.menu-item-has-children > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-primary ul li.menu-item-has-children:hover > a::before {
  transform: scaleX(1);
}

/* Target both direct list and WP-generated wrapper */
.nav-primary ul,
.nav-primary__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: var(--header-h);
  transition: height 0.35s ease;
}
.site-header.is-scrolled .nav-primary ul,
.site-header.is-scrolled .nav-primary__list {
  height: 62px;
}

.nav-primary ul li,
.nav-primary__list li {
  display: flex;
  align-items: stretch;
}

.nav-primary ul li a,
.nav-primary__list li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-family: var(--font-mincho);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.82);
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

/* Hover underline — wipe in from left, wipe out to right */
.nav-primary ul li a::after,
.nav-primary__list li a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Scrolled state: adjust vertical position */
.site-header.is-scrolled .nav-primary ul li a::after,
.site-header.is-scrolled .nav-primary__list li a::after {
  bottom: 13px;
}

.nav-primary ul li a:hover,
.nav-primary ul li.current-menu-item > a,
.nav-primary__list li a:hover,
.nav-primary__list li.current-menu-item > a {
  color: var(--color-accent);
}

.nav-primary ul li a:hover::after,
.nav-primary ul li.current-menu-item > a::after,
.nav-primary__list li a:hover::after,
.nav-primary__list li.current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ── Header Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Contact button in header */
@keyframes btnGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: linear-gradient(
    120deg,
    #ff6b00,
    #ff8c00,
    #ffb347,
    #ff8c00,
    #ff6b00
  );
  background-size: 300% 300%;
  animation: btnGradient 7s ease infinite;
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-mincho);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
  transform: translateY(0);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.header-contact-btn:hover {
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(255, 140, 0, 0.5),
    0 2px 8px  rgba(255, 140, 0, 0.3);
}

/* ── Hamburger button ── */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
  padding: 0;
}
.hamburger:hover {
  background: rgba(255, 140, 0, 0.08);
  border-color: rgba(255, 140, 0, 0.4);
}

.hamburger__line {
  display: block;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.25s ease,
              width 0.3s ease;
}
.hamburger__line           { width: 20px; }
.hamburger__line--short    { width: 13px; margin-right: -7px; }

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 20px;
}

/* ── Mobile overlay (backdrop) ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Mobile menu panel (slides from right) ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--color-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 1px solid rgba(255, 140, 0, 0.12);
}
.mobile-menu.is-open {
  transform: translateX(0);
}

/* Panel header */
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.mobile-menu__close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.mobile-menu__close:hover {
  background: rgba(255, 140, 0, 0.12);
  border-color: rgba(255, 140, 0, 0.35);
  color: var(--color-accent);
}

/* Nav area */
.mobile-menu__nav {
  flex: 1;
  padding: 0.5rem 0;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Stagger-in animation per item */
.mobile-menu__list li {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.is-open .mobile-menu__list li { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(5) { transition-delay: 0.30s; }

.mobile-menu__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}
.mobile-menu__list li a::after {
  content: '›';
  font-size: 1.2rem;
  color: rgba(255, 140, 0, 0.5);
  transition: color 0.2s ease, transform 0.2s ease;
  transform: translateX(0);
}
.mobile-menu__list li a:hover {
  color: var(--color-white);
  background: rgba(255, 140, 0, 0.06);
  padding-left: 2rem;
}
.mobile-menu__list li a:hover::after {
  color: var(--color-accent);
  transform: translateX(3px);
}

/* Footer CTA area */
.mobile-menu__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(22,33,62,.85) 60%, rgba(255,140,0,.15) 100%);
  z-index: 1;
}


.hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ── Cursor effects (shared) ── */
.hero [class^="cursor-"] {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  will-change: left, top;
}

/* Pattern 1: Ring */
.cursor-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 140, 0, 0.75);
  box-shadow:
    0 0 14px rgba(255, 140, 0, 0.4),
    inset 0 0 10px rgba(255, 180, 60, 0.1);
  transition: opacity 0.4s ease, width 0.2s ease, height 0.2s ease;
}
.cursor-ring-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffb347;
  box-shadow: 0 0 8px 3px rgba(255, 140, 0, 0.8);
  transition: opacity 0.3s ease;
}

/* Pattern 2: Comet — individual trail dots styled by JS */

/* Pattern 3: Pulse */
.cursor-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb347;
  box-shadow: 0 0 8px 3px rgba(255, 140, 0, 0.8);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.cursor-pulse-ring {
  border-radius: 50%;
  border: 1.5px solid rgba(255, 140, 0, 0);
  transform: translate(-50%, -50%);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}

/* ── Hero entrance animations ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.2s;
}

.hero__title {
  animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.5s;
}

.hero__body {
  animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.9s;
}

.hero__actions {
  animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 1.3s;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    90deg,
    #ff6b00 0%,
    #ff8c00 30%,
    #ffd080 55%,
    #ff8c00 75%,
    #ff6b00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.2s;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, #ff6b00, #ffd080);
  flex-shrink: 0;
  -webkit-text-fill-color: initial;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}

.hero__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  letter-spacing: 0.18em;
  animation:
    heroFadeUp 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) both,
    titleGlow  4s ease-in-out infinite;
  animation-delay: 0.5s, 2s;
}
.hero__title em {
  font-style: normal;
  color: var(--color-accent);
  font-family: var(--font-mincho-en);
  font-size: 1.1em;
  letter-spacing: 0.22em;
}

.hero__body {
  font-family: var(--font-mincho);
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 2.2;
  letter-spacing: 0.2em;
  font-weight: 400;
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: none;
  }
  50% {
    text-shadow:
      0 0 20px rgba(255, 200, 80, 0.25),
      0 0 48px rgba(255, 140,  0, 0.12);
  }
}

.hero__glow-word {
  color: var(--color-accent);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__actions .btn {
  font-family: var(--font-mincho);
  letter-spacing: 0.18em;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.35s ease;
}

/* ── シマー：ホバーで斜めの光が走る ── */
.hero__actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 80%
  );
  transform: skewX(-15deg);
  transition: left 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}
.hero__actions .btn:hover::before {
  left: 150%;
}

/* ── Primary：浮き上がり＋オレンジシャドウ ── */
.hero__actions .btn--primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 32px rgba(255, 140, 0, 0.55),
    0  4px 12px rgba(255, 140, 0, 0.30);
  color: var(--color-white);
}

/* ── Outline：下から満ちるオレンジフィル ── */
.hero__actions .btn--outline {
  border-color: var(--color-accent);
  color: var(--color-accent);
  z-index: 0;
  isolation: isolate;
}
.hero__actions .btn--outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: -1;
}
.hero__actions .btn--outline:hover {
  transform: translateY(-4px);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow:
    0 10px 32px rgba(255, 140, 0, 0.45),
    0  4px 12px rgba(255, 140, 0, 0.25);
}
.hero__actions .btn--outline:hover::after {
  transform: scaleY(1);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,140,0,.8), transparent);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   About Section
   ============================================================ */
.about-section {
  overflow: hidden;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.about-section__body {
  padding-top: 2rem;
}

/* ── Eyebrow ── */
.about-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.about-section__eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* ── Title ── */
.about-section__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

/* ── Lead ── */
.about-section__lead {
  font-family: var(--font-mincho);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-accent);
}

/* ── Body text ── */
.about-section__text {
  font-family: var(--font-mincho);
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

/* ── Stats row ── */
.about-section__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.about-section__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.about-section__stat-num {
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.about-section__stat-num small { font-size: 1rem; }
.about-section__stat-label {
  font-family: var(--font-mincho);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  letter-spacing: 1px;
}
.about-section__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ── ボタン ── */
.about-section .btn--primary {
  font-family: var(--font-mincho);
  letter-spacing: 0.18em;
  background: linear-gradient(120deg, #ff6b00, #ff8c00, #ffb347, #ff8c00, #ff6b00);
  background-size: 300% 300%;
  animation: btnGradient 7s ease infinite;
  border: none;
  box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
}
.about-section .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,140,0,.5), 0 2px 8px rgba(255,140,0,.3);
  color: var(--color-white);
}

/* ── 右：画像フレーム ── */
.about-section__visual {
  position: relative;
  padding: 24px 24px 40px 0;
  margin-top: 1rem;
}

.about-section__frame {
  position: relative;
  margin-top: 2.5rem;
}

/* ── 各要素の初期状態（非表示） ── */
.about-section__frame-deco,
.about-glow-img,
.about-glow-badge {
  opacity: 0;
}

/* ── 入場アニメーション定義 ── */
@keyframes aboutDecoReveal {
  from { opacity: 0; transform: scale(0.55) rotate(14deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes aboutImgReveal {
  from { opacity: 0; transform: translateY(56px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes aboutBadgePop {
  0%   { opacity: 0; transform: translate(20px, 20px) scale(0.6); }
  60%  { opacity: 1; transform: translate(-4px, -4px) scale(1.06); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* ============================================================
   Glow border animations
   パターン切替: .about-glow-img / .about-glow-badge / .frame-deco::after の
   animation-name を以下の3つから選んで変更
   1: glowRun1  — 細い1本のビームが回転
   2: glowRun2  — 2本のビームが対向して回転
   3: glowPulse — 静的なパルス発光（回転なし）
   ============================================================ */

/* Pattern 1: Single beam */
@keyframes glowRun1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Pattern 2: Double beam (180°対向) */
@keyframes glowRun2 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Pattern 3: Pulse glow (回転なし・明滅) */
@keyframes glowPulse {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

/* alias for current usage */
@keyframes glowRun {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── is-visible 時に入場アニメーション起動 ── */
.about-reveal.is-visible .about-section__frame-deco {
  animation: aboutDecoReveal 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.1s;
}
.about-reveal.is-visible .about-glow-img {
  animation: aboutImgReveal 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.35s;
}
.about-reveal.is-visible .about-glow-badge {
  animation: aboutBadgePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.9s;
}

/* Business section images */
.business-section__images.about-reveal .business-section__img-2,
.business-section__images.about-reveal .business-section__badge {
  opacity: 0;
}
.business-section__images.about-reveal.is-visible .business-section__img-2 {
  animation: aboutImgReveal 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.4s;
}
.business-section__images.about-reveal.is-visible .business-section__badge {
  animation: aboutBadgePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.8s;
}

/* ── 画像の光るボーダー ── */
.about-glow-img {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2px;
  overflow: hidden;
}

/* パターン1: 細い1本ビーム */
.about-glow-img.glow-p1::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg 145deg,
    rgba(255, 175, 30, 0.35) 168deg,
    rgba(255, 248, 160, 0.95) 180deg,
    rgba(255, 175, 30, 0.35) 192deg,
    transparent 215deg 360deg
  );
  animation: glowRun1 4s linear infinite;
}

/* パターン2: 2本対向ビーム */
.about-glow-img.glow-p2::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg 155deg,
    rgba(255, 175, 30, 0.35) 170deg,
    rgba(255, 248, 160, 0.9) 180deg,
    rgba(255, 175, 30, 0.35) 190deg,
    transparent 205deg 335deg,
    rgba(255, 175, 30, 0.35) 350deg,
    rgba(255, 248, 160, 0.9) 360deg
  );
  animation: glowRun2 3s linear infinite;
}

/* パターン3: パルス */
.about-glow-img.glow-p3::before {
  background: conic-gradient(
    from 0deg,
    rgba(255, 175, 30, 0.6),
    rgba(255, 248, 160, 0.9) 25%,
    rgba(255, 140, 0, 0.5) 50%,
    rgba(255, 248, 160, 0.9) 75%,
    rgba(255, 175, 30, 0.6)
  );
  animation: glowPulse 2s ease-in-out infinite;
}

.about-glow-img::before {
  content: '';
  position: absolute;
  inset: -100%;
  z-index: 0;
}
.about-glow-img > * {
  position: relative;
  z-index: 1;
}

/* ── バッジの光るボーダー ── */
.about-glow-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  z-index: 2;
  border-radius: var(--radius-lg);
  padding: 2px;
  overflow: hidden;
}

.about-glow-badge.glow-p1::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg 145deg,
    rgba(255, 175, 30, 0.4) 168deg,
    rgba(255, 248, 160, 1) 180deg,
    rgba(255, 175, 30, 0.4) 192deg,
    transparent 215deg 360deg
  );
  animation: glowRun1 3s linear infinite;
  animation-delay: -1.2s;
}

.about-glow-badge.glow-p2::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg 155deg,
    rgba(255, 175, 30, 0.4) 170deg,
    rgba(255, 248, 160, 1) 180deg,
    rgba(255, 175, 30, 0.4) 190deg,
    transparent 205deg 335deg,
    rgba(255, 175, 30, 0.4) 350deg,
    rgba(255, 248, 160, 1) 360deg
  );
  animation: glowRun2 2.5s linear infinite;
  animation-delay: -0.8s;
}

.about-glow-badge.glow-p3::before {
  background: conic-gradient(
    from 0deg,
    rgba(255, 175, 30, 0.7),
    rgba(255, 248, 160, 1) 25%,
    rgba(255, 140, 0, 0.6) 50%,
    rgba(255, 248, 160, 1) 75%,
    rgba(255, 175, 30, 0.7)
  );
  animation: glowPulse 2s ease-in-out infinite;
  animation-delay: -1s;
}

.about-glow-badge::before {
  content: '';
  position: absolute;
  inset: -100%;
  z-index: 0;
}
.about-glow-badge > * {
  position: relative;
  z-index: 1;
}

.about-section__frame-deco {
  position: absolute;
  top: 0;
  right: -12px;
  width: 60%;
  height: 55%;
  background: linear-gradient(135deg, rgba(255,140,0,0.28), rgba(255,100,0,0.16));
  border-radius: var(--radius-xl);
  z-index: 0;
  overflow: hidden;
}
.about-section__frame-deco::after {
  content: '';
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 175, 30, 0.5),
    rgba(255, 248, 160, 0.8) 25%,
    rgba(255, 140, 0, 0.4) 50%,
    rgba(255, 248, 160, 0.8) 75%,
    rgba(255, 175, 30, 0.5)
  );
  animation: glowPulse 2.5s ease-in-out infinite;
  animation-delay: -1.2s;
}

.about-section__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-section__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}
.about-section__img-wrap:hover .about-section__img {
  transform: scale(1.04);
}

/* フローティングバッジ（位置はglow-wrapperで管理） */
.about-section__badge {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--color-accent);
}
.about-section__badge-en {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: var(--color-accent);
  line-height: 1;
}
.about-section__badge-jp {
  font-family: var(--font-mincho);
  font-size: 0.65rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-section__visual {
    padding-bottom: 2.5rem;
  }
}

/* ============================================================
   News Section
   ============================================================ */
.news-section {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

/* 背景装飾グラデーション */
.news-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,140,0,.07) 0%, transparent 70%);
  pointer-events: none;
}
.news-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,140,0,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Head ── */
.news-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.news-section__head-text { flex: 1; }

.news-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.news-section__eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.news-section__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.news-section__lead {
  font-family: var(--font-mincho);
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.08em;
}

/* お知らせ一覧ボタン — 他のCTAと統一 */
.news-section .btn--outline {
  font-family: var(--font-mincho);
  letter-spacing: 0.18em;
  font-weight: 700;
  background: linear-gradient(120deg, #ff6b00, #ff8c00, #ffb347, #ff8c00, #ff6b00);
  background-size: 300% 300%;
  animation: btnGradient 7s ease infinite;
  border: none;
  color: var(--color-white);
  box-shadow: 0 2px 10px rgba(255,140,0,.3);
}
.news-section .btn--outline:hover {
  transform: translateY(-3px);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(255,140,0,.5), 0 2px 8px rgba(255,140,0,.3);
}

/* ── Cards grid ── */
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── カードボーダー光点（JSで制御） ── */
.news-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.4s ease;
  backdrop-filter: blur(8px);
}
.news-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,140,0,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.4),
              0 0 0 1px rgba(255,140,0,.15);
}

/* ホバー時に斜めのシマーが走る */
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 80%
  );
  transform: skewX(-15deg);
  transition: left 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: 2;
}
.news-card:hover::before {
  left: 130%;
}


/* サムネイル */
.news-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: .9;
}
.news-card:hover .news-card__thumb img {
  transform: scale(1.05);
  opacity: 1;
}
.news-card__thumb--no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(255,140,0,.12),
    rgba(26,26,46,.8));
}
.news-card__thumb-icon { color: rgba(255,140,0,.5); }

/* 本文エリア */
.news-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.news-card__date {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: 1px;
}

.news-card__cat {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.news-card__title {
  font-family: var(--font-mincho);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  flex: 1;
}
.news-card__title a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: color 0.25s ease;
}
.news-card__title a:hover { color: var(--color-accent); }

.news-card__excerpt {
  font-family: var(--font-mincho);
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mincho);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  transition: gap 0.25s ease, color 0.25s ease;
}
.news-card__more:hover {
  gap: 10px;
  color: var(--color-accent-light);
}

/* 投稿なし */
.news-section__empty {
  text-align: center;
  padding: 4rem 0;
  color: rgba(255,255,255,.4);
  font-family: var(--font-mincho);
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .news-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .news-section__head { flex-direction: column; align-items: flex-start; }
  .news-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   Business Section
   ============================================================ */
.business-section {
  background: var(--color-bg);
  overflow: hidden;
  padding: 80px 0;
}

/* ── 全体レイアウト（フル幅2カラム） ── */
.business-section__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 680px;
}

/* ── 左：画像エリア ── */
.business-section__images {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
}

/* 背景装飾ブロック */
.business-section__img-deco {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(255,140,0,.18), rgba(255,100,0,.08));
  border-radius: 50%;
  pointer-events: none;
}

/* ── Ken Burns スライダー ── */

/* ケン・バーンズ用キーフレーム（各スライドで方向を変える） */
@keyframes kb1 {
  from { transform: scale(1.08) translate( 0%,  0%); }
  to   { transform: scale(1.16) translate(-2%, -1%); }
}
@keyframes kb2 {
  from { transform: scale(1.14) translate( 2%,  1%); }
  to   { transform: scale(1.08) translate(-1%, -2%); }
}
@keyframes kb3 {
  from { transform: scale(1.08) translate(-1%,  1%); }
  to   { transform: scale(1.15) translate( 2%, -1%); }
}
@keyframes kb4 {
  from { transform: scale(1.12) translate( 1%, -1%); }
  to   { transform: scale(1.08) translate(-2%,  1%); }
}

.bs-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.6s ease;
}
.bs-slide.is-active { opacity: 1; }

.bs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bs-slide--1 img { animation: kb1 8s ease-in-out infinite alternate; }
.bs-slide--2 img { animation: kb2 8s ease-in-out infinite alternate; }
.bs-slide--3 img { animation: kb3 8s ease-in-out infinite alternate; }
.bs-slide--4 img { animation: kb4 8s ease-in-out infinite alternate; }

/* ダークオーバーレイ */
.business-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,.55) 0%,
    rgba(26,26,46,.35) 60%,
    rgba(255,140,0,.08) 100%
  );
  pointer-events: none;
}

/* インジケーター（ドット） */
.bs-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.bs-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background 0.3s ease, transform 0.3s ease;
}
.bs-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* 実績バッジ */
.business-section__badge {
  position: absolute;
  top: 2rem;
  right: 1.75rem;
  z-index: 4;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(255,140,0,.4);
}
.business-section__badge-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.business-section__badge-num small { font-size: 1.1rem; }
.business-section__badge-label {
  font-family: var(--font-mincho);
  font-size: 0.65rem;
  color: rgba(255,255,255,.85);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.6;
}

/* ── 右：テキストエリア ── */
.business-section__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5rem 4rem 5rem 4.5rem;
  background: var(--color-bg);
  position: relative;
}

/* 背景に薄いテキスト装飾 */
.business-section__content::before {
  content: 'BUSINESS';
  position: absolute;
  top: 2rem;
  right: -1rem;
  font-family: var(--font-en);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(0,0,0,.03);
  letter-spacing: -4px;
  pointer-events: none;
  white-space: nowrap;
}

.business-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.business-section__eyebrow-dash {
  font-family: var(--font-en);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color-accent);
}

.business-section__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.business-section__tagline {
  font-family: var(--font-mincho);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.1em;
  line-height: 2;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-accent);
  margin-bottom: 1.75rem;
}

.business-section__text {
  font-family: var(--font-mincho);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 2.1;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

/* サービスリスト */
.business-section__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.business-section__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  color: var(--color-text);
  letter-spacing: 0.06em;
  transition: padding-left 0.25s ease, color 0.25s ease;
}
.business-section__list li:hover {
  padding-left: 6px;
  color: var(--color-accent);
}
.business-section__list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ボタン */
.business-section .btn--primary {
  font-family: var(--font-mincho);
  letter-spacing: 0.18em;
  background: linear-gradient(120deg, #ff6b00, #ff8c00, #ffb347, #ff8c00, #ff6b00);
  background-size: 300% 300%;
  animation: btnGradient 7s ease infinite;
  border: none;
  box-shadow: 0 2px 10px rgba(255,140,0,.3);
}
.business-section .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,140,0,.5), 0 2px 8px rgba(255,140,0,.3);
  color: var(--color-white);
}

/* btn--white */
.btn--white {
  background: rgba(255,255,255,.15);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,.5);
  font-family: var(--font-mincho);
  letter-spacing: 0.15em;
}
.btn--white:hover {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .business-section__inner { grid-template-columns: 1fr; }
  .business-section__images { min-height: 420px; }
  .business-section__content { padding: 3.5rem 2rem; }
}
@media (max-width: 768px) {
  .business-section__content::before { display: none; }
  .business-section__content { padding: 3rem 1.5rem; }
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section {
  background: var(--color-white);
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-section__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.stats-section__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
}

.stats-section__num {
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.stats-section__num small {
  font-size: 1.2rem;
}

.stats-section__label {
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

.stats-section__divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-section__item { padding: 1rem; }
  .stats-section__num  { font-size: 2rem; }
}

/* ============================================================
   Philosophy Quote (Careers → Contact の橋渡し)
   ============================================================ */
.philosophy-quote {
  background: var(--color-white);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-quote::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,140,0,.05) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-quote__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-quote__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,140,0,.4) 50%, transparent);
  min-width: 60px;
}
.philosophy-quote__line:first-child {
  background: linear-gradient(to left, transparent, rgba(255,140,0,.4) 50%, transparent);
}

.philosophy-quote__text {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.14em;
  line-height: 1.7;
  margin: 0;
  white-space: nowrap;
}

.philosophy-quote__sub {
  font-family: var(--font-mincho);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  margin-top: 1.5rem;
}

/* ── Quote reveal animations ── */
@keyframes quoteTextReveal {
  from {
    opacity: 0;
    letter-spacing: 0.02em;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    letter-spacing: 0.14em;
    filter: blur(0);
  }
}

@keyframes quoteLineExpand {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes quoteSubFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 初期状態（非表示） */
.quote-reveal .philosophy-quote__line,
.quote-reveal .philosophy-quote__text,
.quote-reveal .philosophy-quote__sub {
  opacity: 0;
}

/* is-visible で起動 */
.quote-reveal.is-visible .philosophy-quote__line {
  animation: quoteLineExpand 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.1s;
}
.quote-reveal.is-visible .philosophy-quote__text {
  animation: quoteTextReveal 1.1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.4s;
}
.quote-reveal.is-visible .philosophy-quote__sub {
  animation: quoteSubFade 0.8s ease forwards;
  animation-delay: 1.1s;
}

@media (max-width: 768px) {
  .philosophy-quote__inner { gap: 1.5rem; }
  .philosophy-quote__text  { white-space: normal; font-size: 1rem; }
  .philosophy-quote__line  { min-width: 24px; }
}

/* ============================================================
   Philosophy Numbers (Business → Careers の橋渡し)
   ============================================================ */
.philosophy-numbers {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  text-align: center;
}

/* 背景 */
.philosophy-numbers__bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: 0;
}

.philosophy-numbers .container {
  position: relative;
  z-index: 1;
}

/* 数字グリッド */
.philosophy-numbers__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.philosophy-numbers__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 1rem 2rem;
}

.philosophy-numbers__num {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  text-shadow: 0 0 24px rgba(255,140,0,.2);
}
.philosophy-numbers__num small { font-size: 1.5rem; }

.philosophy-numbers__en {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(0,0,0,.3);
}

.philosophy-numbers__label {
  font-family: var(--font-mincho);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

.philosophy-numbers__divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
  flex-shrink: 0;
}

/* タグライン */
.philosophy-numbers__tagline {
  font-family: var(--font-mincho);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .philosophy-numbers__item { padding: 1rem; }
  .philosophy-numbers__num  { font-size: 2.4rem; }
  .philosophy-numbers__en   { display: none; }
}

/* ============================================================
   Section Divider
   ============================================================ */
.section-divider {
  background: var(--color-bg);
  padding: 3rem 0;
}

.section-divider__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 320px;
  margin: 0 auto;
}

.section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,140,0,.4));
}
.section-divider__line:last-child {
  background: linear-gradient(to left, transparent, rgba(255,140,0,.4));
}

.section-divider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(255,140,0,.6);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px  rgba(255,140,0,.5); transform: scale(1);    }
  50%       { box-shadow: 0 0 14px rgba(255,140,0,.9); transform: scale(1.35); }
}

/* ============================================================
   Careers Section
   ============================================================ */
.careers-section {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

/* 背景画像 */
.careers-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.careers-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform-origin: center bottom;
  animation: careersKb 16s ease-in-out infinite alternate;
}

@keyframes careersKb {
  from { transform: scale(1.22) translateX(3%); }
  to   { transform: scale(1.28) translateX(3%); }
}

/* グラデーションオーバーレイ */
.careers-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 22, 0.88) 0%,
    rgba(10, 10, 22, 0.72) 45%,
    rgba(10, 10, 22, 0.30) 75%,
    rgba(10, 10, 22, 0.10) 100%
  );
}

.careers-section__overlay::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -10%;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,140,0,.14) 0%, rgba(255,140,0,.06) 40%, transparent 70%);
  animation: careersGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes careersGlow {
  from { transform: translateY(0%) scale(1);    opacity: 0.7; }
  to   { transform: translateY(-8%) scale(1.15); opacity: 1; }
}

/* コンテンツ */
.careers-section .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.careers-section__content { max-width: 560px; }

.careers-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.careers-section__eyebrow-dash { font-size: 1.3rem; line-height: 1; }

.careers-section__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.careers-section__body {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
}

.careers-section__btn {
  font-family: var(--font-mincho);
  letter-spacing: 0.18em;
  font-weight: 700;
  background: linear-gradient(120deg, #ff6b00, #ff8c00, #ffb347, #ff8c00, #ff6b00);
  background-size: 300% 300%;
  animation: btnGradient 7s ease infinite;
  border: none;
  color: var(--color-white);
  box-shadow: 0 2px 14px rgba(255, 140, 0, 0.4);
}
.careers-section__btn:hover {
  transform: translateY(-3px);
  color: var(--color-white);
  box-shadow: 0 8px 28px rgba(255, 140, 0, 0.55);
}

@media (max-width: 768px) {
  .careers-section { min-height: 560px; }
  .careers-section__overlay { background: rgba(10,10,22,.75); }
  .careers-section__content { max-width: 100%; }
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* 背景画像 */
.contact-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: contactKb 16s ease-in-out infinite alternate;
}

@keyframes contactKb {
  from { transform: scale(1.12); }
  to   { transform: scale(1.18); }
}

/* オーバーレイ（右から左に濃くなる） */
.contact-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    255deg,
    rgba(10, 10, 22, 0.85) 0%,
    rgba(10, 10, 22, 0.70) 45%,
    rgba(10, 10, 22, 0.28) 75%,
    rgba(10, 10, 22, 0.08) 100%
  );
}

/* オレンジのアクセント光 */
.contact-section__overlay::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: 10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 140, 0, 0.12) 0%,
    rgba(255, 140, 0, 0.05) 40%,
    transparent 70%
  );
  animation: careersGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

/* スパークルCanvas */
.contact-section__sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* コンテンツ（右寄せ） */
.contact-section .container {
  position: relative;
  z-index: 3;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  justify-content: flex-end;
}

.contact-section__content {
  max-width: 520px;
  text-align: left;
}

/* Eyebrow */
.contact-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.contact-section__eyebrow-dash {
  font-size: 1.3rem;
  line-height: 1;
}

/* タイトル */
.contact-section__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin-bottom: 2rem;
}

/* 本文 */
.contact-section__body {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

/* ボタン */
.contact-section__btn {
  font-family: var(--font-mincho);
  letter-spacing: 0.18em;
  font-weight: 700;
  background: linear-gradient(120deg, #ff6b00, #ff8c00, #ffb347, #ff8c00, #ff6b00);
  background-size: 300% 300%;
  animation: btnGradient 7s ease infinite;
  border: none;
  color: var(--color-white);
  box-shadow: 0 2px 14px rgba(255, 140, 0, 0.4);
}
.contact-section__btn:hover {
  transform: translateY(-3px);
  color: var(--color-white);
  box-shadow: 0 8px 28px rgba(255, 140, 0, 0.55);
}

@media (max-width: 768px) {
  .contact-section {
    min-height: 520px;
  }
  .contact-section__overlay {
    background: rgba(10, 10, 22, 0.72);
  }
  .contact-section .container {
    justify-content: flex-start;
  }
  .contact-section__content {
    max-width: 100%;
  }
}

/* ============================================================
   About Page (会社概要)
   ============================================================ */

/* ── Hero ── */
.about-page__hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.about-page__hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}
.about-page__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,46,1) 0%, rgba(22,33,62,.9) 60%, rgba(255,140,0,.12) 100%);
}

.about-page__hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light), var(--color-accent));
  z-index: 1;
}

.about-page__hero .hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-page__hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
  text-align: center;
}

.about-page__hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.about-page__hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
}

.about-page__hero-sub {
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.15em;
}

/* ── Section common ── */
.about-page__section {
  padding: 90px 0;
}
.about-page__section--gray { background: var(--color-bg-gray); }
.about-page__section--dark {
  background: var(--color-dark);
}

.about-page__section-head {
  margin-bottom: 3rem;
}
.about-page__section-en {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.about-page__section-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.about-page__section-line {
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* ── 企業情報テーブル ── */
.about-page__table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-page__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}
.about-page__row:last-child { border-bottom: none; }
.about-page__row:hover { background: rgba(255,140,0,.02); }

.about-page__label {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 3px solid var(--color-accent);
}

.about-page__value {
  padding: 1.25rem 1.75rem;
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.9;
}
.about-page__value p + p { margin-top: 0.4rem; }
.about-page__value strong { color: var(--color-dark); font-weight: 700; }

.about-page__tel {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-page__tel:hover { color: var(--color-accent-dark); }

/* 従業員数 */
.about-page__staff-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
.about-page__staff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  min-width: 120px;
}
.about-page__staff-role {
  font-family: var(--font-mincho);
  font-size: 0.7rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.about-page__staff-num {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.about-page__staff-num small { font-size: 1rem; }
.about-page__staff-note {
  font-family: var(--font-mincho);
  font-size: 0.65rem;
  color: rgba(255,255,255,.4);
  margin-top: 0.4rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.about-page__staff-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about-page__staff-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  gap: 1rem;
  padding-right: 1.5rem;
}
.about-page__staff-list li span:last-child {
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

/* ── 沿革タイムライン ── */
.about-page__timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.about-page__timeline::before {
  content: '';
  position: absolute;
  left: 180px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(255,140,0,.2));
}

.about-page__timeline-item {
  display: grid;
  grid-template-columns: 160px 40px 1fr;
  align-items: center;
  gap: 0;
  padding: 1.1rem 0;
  position: relative;
}

.about-page__timeline-date {
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-align: right;
  padding-right: 1.5rem;
}

.about-page__timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-bg-gray);
  box-shadow: 0 0 0 2px var(--color-accent);
  justify-self: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.about-page__timeline-item:hover .about-page__timeline-dot {
  transform: scale(1.3);
}

.about-page__timeline-body {
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  color: var(--color-text);
  letter-spacing: 0.06em;
  padding-left: 1.5rem;
  line-height: 1.7;
}

/* ── 施工実績 ── */
.about-page__achievements {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-page__achieve-year {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.about-page__achieve-label {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 3px solid var(--color-accent);
}

.about-page__achieve-list {
  padding: 1rem 1.5rem;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

.about-page__achieve-item {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}
.about-page__achieve-item:last-child { border-bottom: none; }
.about-page__achieve-item:hover { background: rgba(255,140,0,.03); }
.about-page__achieve-item .name { font-weight: 600; color: var(--color-dark); }
.about-page__achieve-item .type { color: var(--color-text-muted); }
.about-page__achieve-item .cat  {
  font-size: 0.72rem;
  background: var(--color-bg-gray);
  color: var(--color-text-muted);
  padding: 2px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

/* ── 主要引先 ── */
.about-page__clients {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-page__client-head {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.about-page__client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-page__client-tags span {
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.25rem;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}
.about-page__client-tags span:hover {
  background: rgba(255,140,0,.15);
  border-color: rgba(255,140,0,.4);
  color: var(--color-white);
}

/* ── CTA ── */
.about-page__cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.about-page__cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-page__cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: contactKb 16s ease-in-out infinite alternate;
}

.about-page__cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 22, 0.72);
}

.about-page__cta-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.about-page__cta-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.about-page__cta-text {
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-page__staff-list ul { grid-template-columns: 1fr; }
  .about-page__achieve-item { grid-template-columns: 1fr 1fr auto; }
}
@media (max-width: 768px) {
  .about-page__row { grid-template-columns: 1fr; }
  .about-page__label { justify-content: flex-start; padding: 0.75rem 1.25rem; }
  .about-page__timeline::before { left: 90px; }
  .about-page__timeline-item { grid-template-columns: 80px 30px 1fr; }
  .about-page__timeline-date { font-size: 0.7rem; white-space: nowrap; }
  .about-page__achieve-year { grid-template-columns: 1fr; }
  .about-page__achieve-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .about-page__staff-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   News Archive Page
   ============================================================ */

/* ── Hero ── */
.news-archive__hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.news-archive__hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}
.news-archive__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,46,1) 0%,
    rgba(22,33,62,.9) 55%,
    rgba(255,140,0,.1) 100%);
}

.news-archive__hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--color-accent), var(--color-accent-light), var(--color-accent));
  z-index: 2;
}

.news-archive__hero .hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.news-archive__hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.news-archive__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.news-archive__hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
}

/* ── Body ── */
.news-archive__body {
  background: var(--color-dark);
  padding: 64px 0 100px;
}

/* ── カテゴリフィルター ── */
.news-archive__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.news-archive__filter-btn {
  padding: 7px 22px;
  border-radius: 99px;
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  transition: all 0.25s ease;
}
.news-archive__filter-btn:hover,
.news-archive__filter-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ── Grid ── */
.news-archive__grid {
  margin-top: 0;
}

/* ── ページネーション ── */
.news-archive__pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
.news-archive__pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.news-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(255,255,255,.04);
}
.news-archive__pagination .page-numbers.current,
.news-archive__pagination .page-numbers:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}
.news-archive__pagination .page-numbers.dots {
  border: none;
  background: none;
  color: rgba(255,255,255,.3);
}

/* ── 投稿なし ── */
.news-archive__empty {
  text-align: center;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.news-archive__empty-icon {
  color: rgba(255,140,0,.3);
}
.news-archive__empty-text {
  font-family: var(--font-mincho);
  font-size: 1rem;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.1em;
}

/* ============================================================
   Archive / Single News
   ============================================================ */

/* カテゴリフィルター */
.archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.archive-filter__btn {
  padding: 7px 20px;
  border-radius: 99px;
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  text-decoration: none;
  transition: all 0.25s ease;
}
.archive-filter__btn:hover,
.archive-filter__btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ページネーション */
.archive-pagination {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}
.archive-pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  text-decoration: none;
  transition: all 0.25s ease;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}
.archive-pagination .page-numbers.dots {
  border: none;
  background: none;
}

/* ============================================================
   Single News Page
   ============================================================ */

/* ── Hero ── */
.single-news__hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.single-news__hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}
.single-news__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,46,1) 0%,
    rgba(22,33,62,.9) 55%,
    rgba(255,140,0,.1) 100%);
}

.single-news__hero .hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.single-news__hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
  width: 100%;
  text-align: center;
}

.single-news__hero-content .single-news__hero-meta {
  justify-content: center;
}

.single-news__hero-content .single-news__hero-title {
  margin-left: auto;
  margin-right: auto;
}

.single-news__hero-content .single-news__breadcrumb {
  justify-content: center;
}

.single-news__hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--color-accent), var(--color-accent-light), var(--color-accent));
  z-index: 2;
}

.single-news__hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.single-news__hero-meta time {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
}

.single-news__hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.single-news__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}
.single-news__breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.single-news__breadcrumb a:hover { color: var(--color-accent); }

/* ── Section ── */
.single-news__section {
  background: var(--color-bg);
  padding: 72px 0 100px;
}

.single-news__layout {
  max-width: 820px;
  margin: 0 auto;
}

/* ── Article ── */
.single-news__thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}
.single-news__thumb-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 本文 */
.single-news__body {
  font-family: var(--font-mincho);
  font-size: 0.97rem;
  line-height: 2.3;
  letter-spacing: 0.07em;
  color: var(--color-text);
  margin-bottom: 3rem;
}
.single-news__body h2 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
  line-height: 1.6;
}
.single-news__body h3 {
  font-family: var(--font-mincho);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 2rem 0 0.75rem;
}
.single-news__body p { margin-bottom: 1.5rem; }
.single-news__body a {
  color: var(--color-accent);
  text-underline-offset: 3px;
}
.single-news__body a:hover { color: var(--color-accent-dark); }
.single-news__body ul,
.single-news__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-news__body li { margin-bottom: 0.5rem; }
.single-news__body img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin: 2rem auto;
  box-shadow: var(--shadow-md);
}
.single-news__body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--color-bg-gray);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-text-muted);
}

/* タグ */
.single-news__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.single-news__tag {
  font-family: var(--font-mincho);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: var(--color-bg-gray);
  border: 1px solid var(--color-border);
  border-radius: 99px;
  padding: 4px 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.single-news__tag:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* 前後ナビ */
.single-news__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.single-news__nav-item--right { text-align: right; }

.single-news__nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-gray);
  transition: all 0.3s ease;
}
.single-news__nav-link:hover {
  border-color: rgba(255,140,0,.3);
  background: rgba(255,140,0,.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.single-news__nav-direction {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mincho);
  font-size: 0.72rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}
.single-news__nav-link--right .single-news__nav-direction {
  justify-content: flex-end;
}

.single-news__nav-title {
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 一覧に戻るボタン */
.single-news__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background: var(--color-dark);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.single-news__back-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,140,0,.35);
}

@media (max-width: 768px) {
  .single-news__nav {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .single-news__nav-item--right { text-align: left; }
  .single-news__nav-link--right .single-news__nav-direction {
    justify-content: flex-start;
  }
  .single-news__nav-back { text-align: center; }
}

/* ============================================================
   Staff Page
   ============================================================ */

/* ── Hero ── */
.staff-page__hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.staff-page__hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}
.staff-page__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,46,1) 0%,
    rgba(22,33,62,.9) 55%,
    rgba(255,140,0,.1) 100%);
}
.staff-page__hero .hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.staff-page__hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  text-align: center;
}
.staff-page__hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--color-accent), var(--color-accent-light), var(--color-accent));
  z-index: 2;
}
.staff-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.staff-page__hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
}

/* ── Section ── */
.staff-page__section {
  background: var(--color-bg-gray);
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
}

.staff-page__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.staff-page__section .container {
  position: relative;
  z-index: 1;
}

/* ── Grid ── */
/* ── Staff Slider ── */
.staff-slider {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 1.5rem;
  margin-inline: -16px;
  align-items: center;
  margin-bottom: 0;
}

.staff-slider__viewport {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
}

.staff-slider__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  cursor: grab;
}
.staff-slider__track:active { cursor: grabbing; }

/* ── ナビゲーションボタン ── */
.staff-slider__btn {
  position: static;
  justify-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: none;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.staff-slider__btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(255,140,0,.4);
  transform: scale(1.08);
}
.staff-slider__btn--prev { grid-column: 1; grid-row: 1; }
.staff-slider__btn--next { grid-column: 3; grid-row: 1; }
.staff-slider__btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ── ドットインジケーター ── */
.staff-slider__dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.staff-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.staff-slider__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* ── Card ── */
.staff-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 1rem); /* 3枚表示 */
  min-width: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* 写真エリア */
.staff-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-dark);
}
.staff-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: .92;
}
.staff-card:hover .staff-card__img {
  transform: scale(1.04);
  opacity: 1;
}
.staff-card__no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255,140,0,.35);
}

/* 役職バッジ */
.staff-card__role {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 99px;
}

/* ── イニシャルバー（写真下のダークオーバーレイ） ── */
.staff-card__initial-bar {
  background: var(--color-dark);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--color-accent);
}
.staff-card__initial {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 4px;
  line-height: 1;
}
.staff-card__initial-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* 波紋リング */
.staff-card__initial-dot::before,
.staff-card__initial-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  animation: staffRipple 2s ease-out infinite;
}
.staff-card__initial-dot::after {
  animation-delay: 0.8s;
}

@keyframes staffRipple {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* テキストエリア */
.staff-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
  background: var(--color-white);
}

/* 趣味 */
.staff-card__meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.staff-card__meta-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 2px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  line-height: 1.6;
}
.staff-card__meta-value {
  font-family: var(--font-mincho);
  font-size: 0.8rem;
  color: var(--color-text);
  letter-spacing: 0.06em;
}

/* 一言 */
.staff-card__message {
  font-family: var(--font-mincho);
  font-size: 0.78rem;
  color: var(--color-text);
  line-height: 1.85;
  letter-spacing: 0.05em;
  flex: 1;
  position: relative;
  padding: 0.6rem 0.75rem;
  background: var(--color-bg-gray);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(255,140,0,.3);
}
.staff-card__message::before {
  content: '"';
  position: absolute;
  top: -4px;
  left: 6px;
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: rgba(255,140,0,.25);
  line-height: 1;
  font-weight: 700;
}

/* 投稿なし */
.staff-page__empty {
  text-align: center;
  padding: 4rem 0;
  font-family: var(--font-mincho);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .staff-card { flex: 0 0 calc(50% - 0.75rem); }
  .staff-slider { margin-inline: -8px; }
}
@media (max-width: 640px) {
  .staff-card { flex: 0 0 100%; }
  .staff-slider {
    grid-template-columns: 44px 1fr 44px;
    column-gap: 8px;
    margin-inline: -4px;
  }
  .staff-slider__btn { width: 40px; height: 40px; }
}

/* ============================================================
   Business Page
   ============================================================ */

/* ── Hero ── */
.business-page__hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.business-page__hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}
.business-page__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,46,1) 0%,
    rgba(22,33,62,.9) 55%,
    rgba(255,140,0,.12) 100%);
}
.business-page__hero .hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.business-page__hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--color-accent), var(--color-accent-light), var(--color-accent));
  z-index: 2;
}
.business-page__hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  text-align: center;
}
.business-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.business-page__hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.business-page__hero-sub {
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.2em;
}

/* ── Service Overview ── */
.biz-overview {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 40%, #fff8f0 70%, #ffffff 100%);
  background-size: 300% 300%;
  animation: bizOverviewBg 14s ease-in-out infinite alternate;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
@keyframes bizOverviewBg {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}
.biz-overview__inner {
  position: relative;
  z-index: 1;
}
.biz-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.biz-overview__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem 2rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.biz-overview__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255,140,0,0.12), 0 0 0 1px rgba(255,140,0,0.2);
  color: inherit;
}
.biz-overview__num {
  font-family: var(--font-display);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.biz-overview__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}
.biz-overview__icon svg { width: 100%; height: 100%; }
.biz-overview__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.biz-overview__desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  flex: 1;
}
.biz-overview__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-accent);
  transition: gap 0.2s ease;
}
.biz-overview__card:hover .biz-overview__link { gap: 10px; }

/* ── Business Section ── */
.biz-section {
  background: var(--color-bg);
}
.biz-section--gray .biz-section__photos {
  background: var(--color-bg-gray);
}

/* Section Banner (dark header strip) */
.biz-section__banner {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.biz-section__banner::before {
  content: attr(data-num);
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 16rem;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  letter-spacing: -8px;
}
.biz-section__banner-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.biz-section__num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  letter-spacing: -2px;
}
.biz-section__banner-body { flex: 1; }
.biz-section__banner-en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,140,0,0.55);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.biz-section__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.biz-section__desc {
  font-family: var(--font-mincho);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  letter-spacing: 0.05em;
}

/* Photo area */
.biz-section__photos {
  padding: 60px 0 72px;
  background: var(--color-bg);
}

/* ── Photo Grid ── */
.biz-photo-grid {
  display: grid;
  gap: 1.25rem;
}
.biz-photo-grid--4 { grid-template-columns: repeat(4, 1fr); }
.biz-photo-grid--3 { grid-template-columns: repeat(3, 1fr); }

.biz-photo-item {}

.biz-photo-item__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-dark);
}
.biz-photo-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.biz-photo-item:hover .biz-photo-item__img-wrap img {
  transform: scale(1.06);
}

/* ホバーオーバーレイ */
.biz-photo-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,46,.55) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}
.biz-photo-item:hover .biz-photo-item__overlay {
  opacity: 1;
}

/* プレースホルダー */
.biz-photo-item__img-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26,26,46,.06), rgba(255,140,0,.06));
  border: 1.5px dashed rgba(255,140,0,.25);
  color: rgba(255,140,0,.35);
}

/* キャプション */
.biz-photo-item__caption {
  font-family: var(--font-mincho);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.5;
}

/* ── CTA ── */
.business-page__cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.business-page__cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.business-page__cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: contactKb 16s ease-in-out infinite alternate;
}
.business-page__cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10,10,22,.72);
}
.business-page__cta-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.business-page__cta-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.business-page__cta-text {
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .biz-overview__grid  { grid-template-columns: 1fr; gap: 1rem; }
  .biz-overview__card  { flex-direction: row; text-align: left; padding: 1.5rem; gap: 1.25rem; }
  .biz-overview__num   { font-size: 2rem; margin-bottom: 0; }
  .biz-overview__icon  { width: 36px; height: 36px; margin-bottom: 0; flex-shrink: 0; }
  .biz-overview__desc  { display: none; }
  .biz-photo-grid--4   { grid-template-columns: repeat(2, 1fr); }
  .biz-photo-grid--3   { grid-template-columns: repeat(2, 1fr); }
  .biz-section__banner::before { font-size: 8rem; }
}
@media (max-width: 640px) {
  .biz-overview__card  { flex-direction: column; text-align: center; }
  .biz-section__banner-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .biz-section__num    { font-size: 3rem; }
  .biz-section__banner::before { display: none; }
  .biz-photo-grid--4,
  .biz-photo-grid--3   { grid-template-columns: 1fr; }
}

/* ============================================================
   Scroll animations (Intersection Observer)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}
.fade-up.is-visible {
  opacity: 1;
  transform: none;
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__body {
  padding: 2rem;
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-white);
  font-size: 1.5rem;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: .75rem;
}

.card__text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ============================================================
   News / Posts
   ============================================================ */
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.news-item:first-child { border-top: 1px solid var(--color-border); }

.news-item__date {
  font-family: var(--font-en);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  padding-top: 3px;
}

.news-item__cat {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 99px;
  letter-spacing: .5px;
  white-space: nowrap;
}

.news-item__title a {
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition);
}
.news-item__title a:hover { color: var(--color-accent); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.7);
  font-size: 0.88rem;
}

.footer__main {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer__logo-link img {
  height: 50px;
  width: auto;
  max-width: none;
  display: block;
}
.footer__brand-name {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer__brand-name span { color: var(--color-accent); }

.footer__desc {
  line-height: 1.9;
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* ── フッター お問い合わせボタン ── */
.footer__cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.25rem;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,140,0,0.55);
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
/* シマー（光の流れ）*/
.footer__cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 50%,
    transparent 100%
  );
  animation: footerBtnShimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes footerBtnShimmer {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}
/* ホバー時 */
.footer__cta-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 0 16px rgba(255,140,0,0.35), inset 0 0 16px rgba(255,140,0,0.06);
}
.footer__cta-btn-icon {
  transition: transform 0.25s ease;
}
.footer__cta-btn:hover .footer__cta-btn-icon {
  transform: translateX(4px);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  font-family: var(--font-en);
}

.footer__nav a {
  display: block;
  color: rgba(255,255,255,.65);
  padding: 5px 0;
  font-size: 0.88rem;
  transition: color var(--transition), padding var(--transition);
}
.footer__nav a:hover {
  color: var(--color-accent);
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   Accent decorations
   ============================================================ */
.accent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,140,0,.12);
  color: var(--color-accent);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid rgba(255,140,0,.3);
}

/* Horizontal rule with accent */
hr.accent {
  border: none;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), transparent);
  margin: 3rem 0;
  border-radius: 2px;
}

/* Number highlight (stats) */
.stat-number {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

/* ============================================================
   Content area (singular / archive)
   ============================================================ */
.content-wrapper {
  padding-top: calc(var(--header-h) + 40px);
  min-height: 60vh;
}

.page-hero {
  background: var(--color-dark);
  padding: 80px 0 60px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light), var(--color-accent));
}

.page-hero__title {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

/* ── 全ページ共通ヒーローサブタイトル ── */
.page-hero__sub {
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
}

.page-hero__breadcrumb {
  color: rgba(255,255,255,.5);
  font-size: 0.82rem;
  margin-top: 0.75rem;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.65); }
.page-hero__breadcrumb a:hover { color: var(--color-accent); }
.page-hero__breadcrumb span { color: var(--color-accent); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav-primary { display: none; }
  .header-contact-btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .section { padding: 64px 0; }

  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }

  .footer__main { grid-template-columns: 1fr; gap: 2rem; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .news-item { flex-direction: column; gap: .75rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .btn--lg { padding: 14px 32px; }
  .site-logo__jp { display: none; }
}

/* ============================================================
   Gallery Page
   ============================================================ */

/* ── Hero ── */
.gallery-page__hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.gallery-page__hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}
.gallery-page__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,46,1) 0%,
    rgba(22,33,62,.9) 55%,
    rgba(255,140,0,.12) 100%);
}
.gallery-page__hero .hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.gallery-page__hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  text-align: center;
}
.gallery-page__hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--color-accent), var(--color-accent-light), var(--color-accent));
  z-index: 2;
}
.gallery-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.gallery-page__hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
}

/* ── Showcase section ── */
.gallery-showcase {
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.gallery-page__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.gallery-showcase__inner {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

/* ── Filter tabs (dark bg) ── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter__btn {
  padding: 7px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease,
              background 0.25s ease, box-shadow 0.25s ease;
}
.gallery-filter__btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}
.gallery-filter__btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(255,140,0,.4);
}

/* ── Slider wrapper ── */
.gallery-showcase__slider {
  position: relative;
  padding: 0 88px;
}
.gallery-showcase__viewport {
  overflow: hidden;
  padding: 2.5rem 0; /* vertical room for scale */
}
.gallery-showcase__track {
  display: flex;
  align-items: center;
  gap: 28px;
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* ── Individual slide ── */
.gallery-slide {
  flex: 0 0 min(62vw, 860px);
  width: min(62vw, 860px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transform: scale(0.84) translateY(10px);
  opacity: 0.4;
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity   0.65s ease,
              box-shadow 0.5s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.gallery-slide.is-adjacent {
  transform: scale(0.88) translateY(5px);
  opacity: 0.65;
}
.gallery-slide.is-active {
  transform: scale(1) translateY(0);
  opacity: 1;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55),
              0 0 0 1px rgba(255,140,0,0.22),
              0 0 80px rgba(255,140,0,0.06);
  cursor: zoom-in;
}
.gallery-slide__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.gallery-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.gallery-slide.is-active .gallery-slide__img {
  transform: scale(1.03);
}
.gallery-slide__no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-mid);
  color: rgba(255,255,255,0.25);
}
/* Zoom overlay — visible only on active slide hover */
.gallery-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-slide.is-active:hover .gallery-slide__overlay { opacity: 1; }
.gallery-slide__zoom-icon { color: var(--color-white); }

/* ── Navigation buttons ── */
.gallery-showcase__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-showcase__nav:hover:not(:disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(255,140,0,.45);
}
.gallery-showcase__nav:disabled { opacity: 0.18; pointer-events: none; }
.gallery-showcase__nav--prev { left: 16px; }
.gallery-showcase__nav--next { right: 16px; }

/* ── Info bar ── */
.gallery-showcase__info {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 0;
}
.gallery-showcase__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gallery-showcase__tag {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  min-height: 1em;
}
.gallery-showcase__caption {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  min-height: 1.4em;
  transition: opacity 0.25s ease;
}
.gallery-showcase__caption.is-fading { opacity: 0; }

/* Dots */
.gallery-showcase__dots {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-showcase__dot {
  height: 6px;
  width: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease, box-shadow 0.3s ease;
}
.gallery-showcase__dot.is-active {
  background: var(--color-accent);
  width: 22px;
  box-shadow: 0 0 8px rgba(255,140,0,.5);
}

/* Counter */
.gallery-showcase__counter {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-align: right;
}
.gallery-showcase__sep { margin: 0 5px; opacity: 0.4; }

/* Filtered out */
.gallery-slide.is-filtered-out { display: none; }

/* Clones (edge peek) — pointer events off */
.gallery-slide-clone { pointer-events: none; user-select: none; }

/* ── Empty state ── */
.gallery-page__empty {
  text-align: center;
  padding: 5rem 0;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gallery-slide { flex: 0 0 70vw; width: 70vw; }
  .gallery-showcase__slider { padding: 0 68px; }
  .gallery-showcase__nav { width: 44px; height: 44px; }
  .gallery-showcase__nav--prev { left: 10px; }
  .gallery-showcase__nav--next { right: 10px; }
}
@media (max-width: 640px) {
  .gallery-slide { flex: 0 0 82vw; width: 82vw; border-radius: 14px; }
  .gallery-showcase__slider { padding: 0 52px; }
  .gallery-showcase__nav { width: 38px; height: 38px; }
  .gallery-showcase__nav--prev { left: 6px; }
  .gallery-showcase__nav--next { right: 6px; }
  .gallery-showcase__inner { padding: 0 16px; }
  .gallery-showcase__info {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .gallery-showcase__dots  { grid-column: 1 / -1; order: -1; }
  .gallery-showcase__counter { text-align: right; }
}

/* ── Lightbox backdrop ── */
.gallery-lightbox__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 18, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── Lightbox modal ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 2rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Close button */
.gallery-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.3s ease;
  z-index: 1;
}
.gallery-lightbox__close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* Prev / Next */
.gallery-lightbox__nav {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.gallery-lightbox__nav:hover:not(:disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.08);
}
.gallery-lightbox__nav:disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* Stage */
.gallery-lightbox__stage {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 92vh;
}
.gallery-lightbox__img-wrap {
  max-height: calc(92vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.gallery-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  display: block;
}
.gallery-lightbox__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0 0.25rem;
}
.gallery-lightbox__caption {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}
.gallery-lightbox__counter {
  color: rgba(255,255,255,0.45);
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gallery-lightbox { gap: 8px; padding: 1rem 0.75rem; }
  .gallery-lightbox__nav { width: 40px; height: 40px; }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   採用情報ページ (page-recruit.php)
   ============================================================ */

/* ── Hero ── */
.recruit-page__hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.recruit-page__hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}
.recruit-page__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,1) 0%, rgba(22,33,62,.9) 55%, rgba(255,140,0,.1) 100%);
}
.recruit-page__hero .hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.recruit-page__hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  text-align: center;
}
.recruit-page__hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light), var(--color-accent));
  z-index: 2;
}
.recruit-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.recruit-page__hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.recruit-page__hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
}

/* ── Numbers ── */
.recruit-numbers {
  background: var(--color-bg);
  padding: 60px 0;
}
.recruit-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.recruit-numbers__item {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.recruit-numbers__item + .recruit-numbers__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-border);
}
.recruit-numbers__num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.recruit-numbers__num small {
  font-size: 0.45em;
  font-family: var(--font-jp);
  vertical-align: baseline;
  margin-left: 2px;
}
.recruit-numbers__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ── Appeal ── */
.recruit-appeal {
  background: var(--color-bg-gray);
  padding: 96px 0;
}
.recruit-appeal__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}
.recruit-appeal__en,
.recruit-training__en,
.recruit-req__en,
.recruit-flow__en {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 6px;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.recruit-appeal__title,
.recruit-training__title,
.recruit-req__title,
.recruit-flow__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.recruit-appeal__line,
.recruit-training__line,
.recruit-req__line,
.recruit-flow__line {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.recruit-appeal__heading,
.recruit-training__heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.recruit-appeal__body,
.recruit-training__body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}
.recruit-appeal__body:last-child,
.recruit-training__body:last-child {
  margin-bottom: 0;
}
.recruit-appeal__photo,
.recruit-training__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.recruit-appeal__img,
.recruit-training__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recruit-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  min-height: 280px;
}

/* ── Training ── */
.recruit-training {
  background: var(--color-bg);
  padding: 96px 0;
}
.recruit-training__inner {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: center;
}

/* ── Requirements ── */
.recruit-req {
  background: var(--color-bg-gray);
  padding: 96px 0;
}
.recruit-req__en,
.recruit-req__title,
.recruit-req__line {
  text-align: center;
}
.recruit-req__line {
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.recruit-req__title {
  margin-bottom: 0.75rem;
}
.recruit-req__table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.recruit-req__row {
  display: flex;
  gap: 2px;
  background: var(--color-bg-gray);
}
.recruit-req__row + .recruit-req__row {
  margin-top: 2px;
}
.recruit-req__label {
  flex: 0 0 240px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0.75rem;
  letter-spacing: 0.05em;
}
.recruit-req__val {
  flex: 1;
  background: var(--color-bg);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
}
.recruit-req__note {
  display: block;
  margin-top: 0.5rem;
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ── Pride ── */
.recruit-pride {
  position: relative;
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  padding: 96px 0;
  overflow: hidden;
}
.recruit-pride__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.recruit-pride__inner {
  position: relative;
  z-index: 1;
}
.recruit-pride__en {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 6px;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
  text-align: center;
}
.recruit-pride__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-align: center;
}
.recruit-pride__line {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}
.recruit-pride__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.recruit-pride__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background var(--transition), border-color var(--transition);
}
.recruit-pride__card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,140,0,0.3);
}
.recruit-pride__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: rgba(255,140,0,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.recruit-pride__icon svg {
  width: 22px;
  height: 22px;
}
.recruit-pride__card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0;
  padding-top: 0.1rem;
}

/* ── Flow ── */
.recruit-flow {
  background: var(--color-bg-gray);
  padding: 80px 0;
}
.recruit-flow__en,
.recruit-flow__title,
.recruit-flow__line {
  text-align: center;
}
.recruit-flow__line {
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.recruit-flow__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 2.5rem;
}
.recruit-flow__step {
  flex: 1;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.recruit-flow__connector {
  flex: 0 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  color: var(--color-accent);
  font-size: 1.5rem;
  position: relative;
}
.recruit-flow__connector::after {
  content: '→';
  font-size: 1.5rem;
  color: var(--color-accent);
  display: block;
}
.recruit-flow__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.recruit-flow__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.recruit-flow__step-body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.recruit-flow__note {
  background: var(--color-bg);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.recruit-flow__note p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.recruit-flow__note p:last-child { margin-bottom: 0; }
.recruit-flow__exp {
  color: var(--color-text-muted) !important;
  font-size: 0.85rem !important;
}

/* ── CTA ── */
.recruit-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-mid) 60%, rgba(255,140,0,0.15) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.recruit-cta .contact-section__sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.recruit-cta__inner {
  position: relative;
  z-index: 1;
}
.recruit-cta__en {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 6px;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.recruit-cta__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.recruit-cta__body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.recruit-cta__actions {
  margin-bottom: 2rem;
}
.recruit-cta__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.recruit-cta__tel-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.recruit-cta__tel-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color var(--transition);
}
.recruit-cta__tel-num:hover { color: var(--color-accent); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .recruit-appeal__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .recruit-training__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .recruit-training__photo { order: -1; }
  .recruit-pride__grid { grid-template-columns: repeat(2, 1fr); }
  .recruit-req__label { flex: 0 0 180px; }
}
@media (max-width: 640px) {
  .recruit-numbers__grid { grid-template-columns: 1fr; gap: 0; }
  .recruit-numbers__item + .recruit-numbers__item::before { left: 10%; top: 0; height: 1px; width: 80%; }
  .recruit-flow__steps { flex-direction: column; align-items: center; gap: 0; }
  .recruit-flow__step { width: min(100%, 360px); flex: none; }
  .recruit-flow__connector { padding-top: 0; height: 36px; width: min(100%, 360px); }
  .recruit-flow__connector::after { content: '↓'; }
  /* 弊社の自慢: 2列、カードはアイコン上・テキスト下 */
  .recruit-pride__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .recruit-pride__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.1rem 0.75rem;
    gap: 0.6rem;
  }
  .recruit-pride__icon { flex: none; }
  .recruit-pride__card p { padding-top: 0; font-size: 0.8rem; }
  .recruit-req__row { flex-direction: column; gap: 0; }
  .recruit-req__label { flex: auto; text-align: left; justify-content: flex-start; padding: 0.75rem 1rem; }
}

/* ============================================================
   Contact Page
   ============================================================ */

/* ── Hero ── */
.contact-page__hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.contact-page__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-page__hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: contactKb 16s ease-in-out infinite alternate;
}
.contact-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,20,0.68);
  z-index: 1;
}
.contact-page__hero .hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}
.contact-page__hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem 0;
  text-align: center;
}
.contact-page__hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light), var(--color-accent));
  z-index: 3;
}
.contact-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.contact-page__hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
}

/* ── Body ── */
.contact-body {
  background: var(--color-bg-gray);
  padding: 80px 0 100px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── Info Panel ── */
.contact-info {
  background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.contact-info__en {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.contact-info__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}
.contact-info__body { flex: 1; }
.contact-info__label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.3rem;
}
.contact-info__tel {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.2;
}
.contact-info__tel:hover { color: var(--color-accent); }
.contact-info__note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.2rem;
}
.contact-info__address {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
}
.contact-info__note-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}
.contact-info__note-box p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

/* ── Form Card ── */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-md);
}
.contact-form-head {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.contact-form-head__en {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.contact-form-head__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.06em;
}

/* Fields */
.contact-form__field { margin-bottom: 1.5rem; }
.contact-form__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.contact-form__req {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-form__row .contact-form__field { margin-bottom: 0; }

/* Radio pills */
.contact-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.contact-radio { cursor: pointer; }
.contact-radio input[type="radio"] { display: none; }
.contact-radio span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
  user-select: none;
}
.contact-radio:hover span {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.contact-radio input:checked + span {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(255,140,0,0.28);
}

/* Inputs */
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(0,0,0,0.22);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.8;
}

/* Privacy check */
.contact-form__privacy {
  margin-bottom: 1.75rem;
}
.contact-privacy-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.contact-privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form__link {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Submit */
.contact-form__submit { text-align: center; }
.contact-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 3.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(255,140,0,0.35);
}
.contact-form__btn:hover:not(:disabled) {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,140,0,0.45);
}
.contact-form__btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}
.contact-form__btn-icon { transition: transform 0.2s; }
.contact-form__btn:hover .contact-form__btn-icon { transform: translateX(4px); }

/* Result */
.contact-form__result {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.7;
}
.contact-form__result--success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  color: #166534;
  padding: 1.25rem 1.5rem;
}
.contact-form__result--error {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.25);
  color: #991b1b;
  padding: 1.25rem 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}
@media (max-width: 640px) {
  .contact-form-wrap { padding: 1.5rem; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .contact-form__row .contact-form__field { margin-bottom: 1.5rem; }
}

/* ============================================================
   レスポンシブ追加補完
   ============================================================ */

/* ── ホーム: Hero ── */
@media (max-width: 640px) {
  .hero { min-height: 520px; }
  .hero__eyebrow { font-size: 0.72rem; letter-spacing: 2px; }
  .hero__body { font-size: 0.88rem; }
  .hero__scroll { display: none; }
}

/* ── ホーム: Stats ── */
@media (max-width: 640px) {
  .stats-section__grid { grid-template-columns: 1fr; gap: 0; }
  .stats-section__divider { display: none; }
  .stats-section__item { padding: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stats-section__item:last-child { border-bottom: none; }
}

/* ── ホーム: About ── */
@media (max-width: 1024px) {
  .about-section__inner { grid-template-columns: 1fr; }
  .about-section__visual { order: -1; }
}

/* ── ホーム: News cards ── */
@media (max-width: 640px) {
  .news-cards { grid-template-columns: 1fr; }
  .news-card__thumb { height: 200px; }
}

/* ── ホーム: Business section ── */
@media (max-width: 640px) {
  .business-section__inner { flex-direction: column; }
  .business-section__images { min-height: 260px; }
  .business-section__content { padding: 2.5rem 1.25rem; }
  .business-section__list li { font-size: 0.9rem; }
}

/* ── ホーム: Careers ── */
@media (max-width: 640px) {
  .careers-section { padding: 64px 0; }
  .careers-section__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .careers-section__body { font-size: 0.9rem; }
}

/* ── ホーム: Contact CTA ── */
@media (max-width: 640px) {
  .contact-section { padding: 64px 0; }
  .contact-section__title { font-size: clamp(1.5rem, 5vw, 2rem); }
}

/* ── お知らせアーカイブ ── */
@media (max-width: 1024px) {
  .news-archive__filter { gap: 0.4rem; }
}
@media (max-width: 640px) {
  .news-archive__body { padding: 48px 0 64px; }
  .news-archive__filter { margin-bottom: 2rem; }
  .news-archive__filter-btn { padding: 6px 14px; font-size: 0.78rem; }
  .news-archive__pagination { margin-top: 2.5rem; }
  /* スマホは最大6件表示 */
  .news-archive__grid .news-card:nth-child(n+7) { display: none; }
}

/* ── お知らせ詳細 ── */
@media (max-width: 640px) {
  .single-news__layout { padding: 40px 0 64px; }
  .single-news__article { padding: 1.5rem; }
  .single-news__title { font-size: clamp(1.1rem, 4vw, 1.4rem); }
  .single-news__body { font-size: 0.92rem; }
}

/* ── スタッフページ ── */
@media (max-width: 640px) {
  .staff-page__section { padding: 48px 0 72px; }
  .staff-card__body { padding: 1rem; }
  .staff-slider { column-gap: 8px; margin-inline: -4px; }
}

/* ── ギャラリーページ ── */
@media (max-width: 640px) {
  .gallery-page__section { padding: 48px 0 72px; }
  .gallery-showcase__info {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .gallery-showcase__dots { grid-column: 1 / -1; order: -1; }
}

/* ── 採用情報 ── */
@media (max-width: 640px) {
  .recruit-numbers__grid { grid-template-columns: 1fr; }
  .recruit-numbers__item + .recruit-numbers__item::before {
    left: 10%; top: 0; height: 1px; width: 80%;
  }
  .recruit-appeal { padding: 56px 0; }
  .recruit-training { padding: 56px 0; }
  .recruit-req { padding: 56px 0; }
  .recruit-flow { padding: 48px 0 64px; }
  .recruit-flow__steps { flex-direction: column; gap: 1rem; }
  .recruit-flow__connector { padding-top: 0; height: 36px; }
  .recruit-flow__connector::after { content: '↓'; }
  .recruit-pride__grid { grid-template-columns: repeat(2, 1fr); }
  .recruit-cta { padding: 56px 0; }
  .recruit-cta__tel-num { font-size: 1.6rem; }
}

/* ── 業務内容 ── */
@media (max-width: 640px) {
  .biz-overview { padding: 48px 0 56px; }
  .biz-overview__grid { grid-template-columns: 1fr; gap: 1rem; }
  .biz-section__banner { padding: 36px 0; }
  .biz-section__photos { padding: 40px 0 52px; }
  .biz-section__desc { font-size: 0.82rem; }
}

/* ── お問い合わせ ── */
@media (max-width: 640px) {
  .contact-body { padding: 48px 0 64px; }
  .contact-info { padding: 1.75rem 1.25rem; text-align: center; }
  .contact-info__title { font-size: 1.05rem; margin-bottom: 1.5rem; }
  .contact-info__tel { font-size: 1.35rem; }
  .contact-info__items { align-items: flex-start; }
  .contact-info__item { flex-direction: row; align-items: flex-start; text-align: left; }
  .contact-info__body { text-align: left; }
  .contact-info__note-box { text-align: left; }
  .contact-form-wrap { text-align: center; }
  .contact-form-head { text-align: center; }
  .contact-form { text-align: left; }
  .contact-form__btn { padding: 0.9rem 2.5rem; font-size: 0.95rem; }
}

/* ── フッター ── */
@media (max-width: 640px) {
  .footer__main { padding: 2.5rem 0; gap: 2rem; }
  .footer__logo-link img { height: 40px; }
  .footer__desc { font-size: 0.8rem; }
  .footer__cta-btn { font-size: 0.8rem; padding: 8px 18px; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── 共通ヒーロー（全ページ） ── */
@media (max-width: 640px) {
  .about-page__hero,
  .staff-page__hero,
  .gallery-page__hero,
  .business-page__hero,
  .recruit-page__hero,
  .contact-page__hero,
  .news-archive__hero { min-height: 220px; padding-top: var(--header-h); }

  .page-hero__sub { font-size: 0.75rem; letter-spacing: 0.1em; }
}
