@charset "UTF-8";
/* ===== Design Tokens (from app/globals.css) ===== */
:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: #60e772;
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.97 0 0);
  --secondary-foreground: oklch(0.205 0 0);
  --muted: oklch(0.97 0 0);
  --muted-foreground: #333;
  --accent: oklch(0.45 0.15 220);
  --accent-foreground: oklch(1 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.577 0.245 27.325);
  --border: oklch(0.922 0 0);
  --input: oklch(0.922 0 0);
  --ring: oklch(0.708 0 0);
  --radius: 10px;
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.55 0.18 220);
  --primary-foreground: oklch(0.145 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: #333;
  --accent: oklch(0.55 0.18 220);
  --accent-foreground: oklch(0.145 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
}

/* ===== Base ===== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  height: 100%;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', 'Noto Sans JP', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-weight: 500;
  background: var(--background);
  color: var(--foreground);
}

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

.container {
  width: 100%;
  max-width: 1152px;
  margin-inline: auto;
  padding-inline: 24px;
}

.sp {
  display: none !important;
}

@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

/* ===== Loading Screen ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loading-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.loading-word {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.loading-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loading-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-animation: loadingDotBounce 1.4s ease-in-out infinite;
          animation: loadingDotBounce 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(1) {
  background: #00d0ff;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.loading-dot:nth-child(2) {
  background: #5fe772;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
  background: #ff9f5a;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes loadingDotBounce {
  0%, 60%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  30% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    opacity: 0.7;
  }
}

@keyframes loadingDotBounce {
  0%, 60%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  30% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    opacity: 0.7;
  }
}

.muted {
  color: var(--muted-foreground);
}

.dim {
  color: color-mix(in oklch, var(--foreground), transparent 35%);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

.xs {
  font-size: 0.875rem;
}

.sm {
  font-size: 0.95rem;
  font-weight: 600;
}

.xxs {
  font-size: 0.75rem;
}

.mt {
  margin-top: 2rem;
}

.center {
  text-align: center;
}

.block {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 16px;
}

.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.brand a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.brand.small {
  gap: 8px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-box {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--primary);
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: var(--primary-foreground);
  font-weight: 700;
}

.logo-box.lg {
  width: 48px;
  height: 48px;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 48px;
}

@media (max-width: 768px) {
  .footer-logo {
    height: 32px;
  }
}

/* Header Navigation */
.header-nav {
  display: none;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav-item-wrapper {
  position: relative;
}

.nav-item-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-10px);
          transform: translateX(-50%) translateY(-10px);
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 16px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 12px;
  z-index: 1000;
}

/* Right-align dropdown for last two nav items to prevent overflow */
.nav-item-wrapper:nth-last-child(-n+2) .nav-dropdown {
  left: auto;
  right: 0;
  -webkit-transform: translateX(0) translateY(-10px);
          transform: translateX(0) translateY(-10px);
}

.nav-item-wrapper:nth-last-child(-n+2):hover .nav-dropdown {
  -webkit-transform: translateX(0) translateY(0);
          transform: translateX(0) translateY(0);
}

.dropdown-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.dropdown-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--foreground);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.dropdown-link:hover {
  background: #f5f5f5;
}

.dropdown-link:hover .dropdown-link-text {
  color: var(--primary);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.dropdown-link:hover .dropdown-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  color: var(--primary);
}

.dropdown-link-text {
  font-size: 0.9375rem;
  font-weight: 500;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.dropdown-arrow {
  width: 20px;
  height: 20px;
  color: #999;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 101;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(11px);
          transform: rotate(45deg) translateY(11px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-11px);
          transform: rotate(-45deg) translateY(-11px);
}

.mobile-menu-btn:hover span {
  background: var(--primary);
}

/* ===== Sections ===== */
.section {
  padding: 64px 0;
}

.section-hero {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 96px 0 64px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-hero {
    min-height: calc(var(--vh, 1vh) * 100);
    padding: 80px 0 40px;
  }
}

.section-muted {
  background: color-mix(in oklch, var(--muted), transparent 70%);
}

/* Hero */
/* Ken Burns Slideshow */
.hero-slideshow-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: kenBurnsZoom 12s ease-out infinite;
          animation: kenBurnsZoom 12s ease-out infinite;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

@-webkit-keyframes kenBurnsZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes kenBurnsZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: end;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}

.hero-svg {
  width: 100%;
  height: auto;
  -webkit-animation: pulse 12s infinite ease-in-out;
          animation: pulse 12s infinite ease-in-out;
  color: var(--primary);
  will-change: transform;
}

/* NEP outline drawing */
.nep-outline {
  font-family: 'Shadows Into Light', cursive;
  fill: none;
  stroke: currentColor;
  stroke-width: 20;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 2;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
  stroke-dasharray: 12000;
  stroke-dashoffset: 12000;
  -webkit-animation: draw 9s ease-out forwards;
          animation: draw 9s ease-out forwards;
}

@-webkit-keyframes pulse {
  50% {
    opacity: 0.2;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.2;
  }
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-inner {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 2;
}

.hero-copy {
  max-width: 48rem;
  display: -ms-grid;
  display: grid;
  gap: 24px;
}

/* Hero Heading */
.hero-heading-main {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-animation: fadeInUp 1s ease-out;
          animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
}

.hero-subtitle-text {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out 0.2s forwards;
          animation: fadeInUp 0.8s ease-out 0.2s forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-main-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out 0.4s forwards;
          animation: fadeInUp 0.8s ease-out 0.4s forwards;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out 0.6s forwards;
          animation: fadeInUp 0.8s ease-out 0.6s forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-heading-main {
    gap: 12px;
  }
  .hero-description {
    font-size: 0.9375rem;
  }
}

.hero-copy .lead {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

.hero-copy .note {
  font-size: 1rem;
}

/* Right rail - REMOVED - No longer needed */
/* Full Screen Menu */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.98) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.fullscreen-menu.active {
  display: block;
  opacity: 1;
}

.menu-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 140px 60px 80px;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}

.menu-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.menu-left, .menu-right {
  display: -ms-grid;
  display: grid;
  gap: 32px;
  -ms-flex-line-pack: start;
      align-content: start;
}

.menu-section-link {
  text-decoration: none;
  display: block;
  position: relative;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-left: 2px solid #25b8da;
  border-radius: 0 !important;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.menu-section-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(#00d0ff), to(#5fe772));
  background: linear-gradient(180deg, #00d0ff, #5fe772);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-section-link:hover {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 4px 16px rgba(0, 208, 255, 0.15);
          box-shadow: 0 4px 16px rgba(0, 208, 255, 0.15);
}

.menu-section-link:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.menu-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.menu-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.menu-section-link:hover .menu-section h3 {
  color: var(--primary);
}

.menu-section .menu-subtitle {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.menu-section-link:hover .menu-section .menu-subtitle {
  color: var(--primary);
}

.menu-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu-footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.8125rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  position: relative;
}

.menu-footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.menu-footer-links a:hover {
  color: var(--primary);
}

.menu-footer-links a:hover::after {
  width: 100%;
}

.menu-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.menu-social a {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.menu-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #5fe772);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.menu-social a svg {
  position: relative;
  z-index: 1;
}

.menu-social a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 208, 255, 0.3);
          box-shadow: 0 4px 12px rgba(0, 208, 255, 0.3);
}

.menu-social a:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .fullscreen-menu {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.98)), to(rgba(245, 250, 255, 0.98)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.98) 100%);
  }
  .menu-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 24px;
  }
  .menu-left, .menu-right {
    gap: 16px;
  }
  .menu-container {
    padding: 72px 20px 32px;
    gap: 32px;
  }
  .menu-section-link {
    padding: 12px 16px;
  }
  .menu-section h3 {
    font-size: 1.125rem;
  }
  .menu-section .menu-subtitle {
    font-size: 0.6875rem;
  }
  .menu-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 20px;
  }
  .menu-footer-links {
    gap: 12px;
  }
  .menu-footer-links a {
    font-size: 0.75rem;
  }
  .menu-social a {
    width: 32px;
    height: 32px;
  }
}

/* Infinite Slide */
.infinite-slide-section {
  padding: 60px 0;
  overflow: hidden;
  background: var(--background);
}

.infinite-slide-wrapper {
  overflow: hidden;
}

.infinite-slide-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-animation: infiniteSlide 30s linear infinite;
          animation: infiniteSlide 30s linear infinite;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.slide-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 400px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@-webkit-keyframes infiniteSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes infiniteSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* Message Section */
.message-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

/* 流体アニメーション背景（両サイドに配置） */
.message-fluid-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
}

.message-fluid-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  opacity: 1;
}

.message-fluid-shape path {
  -webkit-transform-origin: center;
          transform-origin: center;
}

.message-fluid-shape-1 {
  top: 10%;
  left: -15%;
  -webkit-animation: floatRotate 20s ease-in-out infinite;
          animation: floatRotate 20s ease-in-out infinite;
}

.message-fluid-shape-2 {
  top: 30%;
  right: -15%;
  animation: floatRotate 25s ease-in-out infinite reverse;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}

.message-fluid-shape-3 {
  bottom: 50%;
  right: -12%;
  -webkit-animation: floatRotate 30s ease-in-out infinite;
          animation: floatRotate 30s ease-in-out infinite;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}

.message-content {
  display: -ms-grid;
  display: grid;
  gap: 48px;
}

.message-content-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.message-header {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.message-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .message-body {
    -ms-grid-columns: 1.2fr 0.8fr;
        grid-template-columns: 1.2fr 0.8fr;
  }
}

.message-text {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}

.message-lead {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  color: var(--foreground);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .message-lead {
    text-align: left;
  }
}

.message-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin: 0;
  color: var(--foreground);
}

.message-paragraphs {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.message-paragraphs p {
  margin: 0;
  line-height: 1.8;
}

.message-question {
  font-weight: 600;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-top: 8px !important;
}

.message-paragraphs p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .message-paragraphs p {
    text-align: left;
  }
}

.message-visual {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.message-vertical-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 64px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  color: var(--foreground);
  font-weight: 700;
}

.message-vertical-text .accent {
  color: var(--primary);
}

@media (max-width: 768px) {
  .message-vertical-text {
    font-size: 42px;
    letter-spacing: 0.18em;
  }
}

/* Grids */
.grid.two {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .grid.two {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.features.three {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .features.three {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards & elements */
.card.v {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 64px 1fr;
      grid-template-columns: 64px 1fr;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  height: 256px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
}

.hero-banner.small {
  height: 192px;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background: color-mix(in oklch, black, transparent 60%);
}

.hero-banner-overlay h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.hero-banner-overlay p {
  margin: 0;
  opacity: 0.9;
}

/* Company */
.company-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (min-width: 1024px) {
  .company-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.bullets {
  margin: 0;
  padding-left: 1.1em;
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.company-media {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.company-media .row.main {
  height: 128px;
  border-radius: 12px;
  overflow: hidden;
}

.company-media .row.two {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.company-media .row.two img {
  height: 96px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.floating-card {
  position: absolute;
  right: -16px;
  bottom: -16px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 6px 24px color-mix(in oklch, black, transparent 85%);
          box-shadow: 0 6px 24px color-mix(in oklch, black, transparent 85%);
}

/* News */
.stack {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge.danger {
  background: color-mix(in oklch, red, transparent 85%);
  color: oklch(0.45 0.2 27);
}

.badge.info {
  background: color-mix(in oklch, var(--primary), transparent 85%);
  color: var(--primary);
}

.badge.success {
  background: color-mix(in oklch, green, transparent 85%);
  color: oklch(0.45 0.25 145);
}

.news-body h3 {
  margin: 4px 0;
  font-size: 1.05rem;
}

/* Recruit */
.grid.two.gap {
  gap: 32px;
}

.media-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.media-grid .img.lg {
  grid-column: 1 / -1;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.media-grid .img.sm {
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.benefits {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .benefits {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.benefit {
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* Contact */
.list-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 1fr;
      grid-template-columns: 40px 1fr;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 12px;
}

.list-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in oklch, var(--primary), transparent 85%);
  display: -ms-grid;
  display: grid;
  place-items: center;
}

/* Contact & Recruit Info Cards Section */
.contact-recruit-cards-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-recruit-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .contact-recruit-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.info-card {
  background: white;
  padding: 48px 40px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.info-card:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-card-title {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  color: var(--foreground);
  line-height: 1.4;
}

.info-card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--foreground);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.info-card-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-card-button:hover {
  background: #333;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.info-card-button:disabled {
  background: #999;
  color: #ddd;
  cursor: not-allowed;
  opacity: 0.6;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.info-card-button:disabled:hover {
  background: #999;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.info-card-icon {
  width: 32px;
  height: 32px;
  background: white;
  color: #000;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.info-card-button-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .info-card {
    padding: 36px 28px;
    gap: 20px;
  }
  .info-card-title {
    font-size: 1.5rem;
  }
  .info-card-text {
    font-size: 0.9375rem;
  }
  .info-card-button {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}

/* Footer */
.site-footer {
  background: #fff;
  color: #000;
  padding: 60px 0 0;
}

.footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  color: #333;
  font-weight: 500;
}

.footer-address {
  margin-top: 8px;
}

.footer-address p {
  margin: 4px 0;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
}

.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer-nav {
  width: 100%;
  max-width: 400px;
}

.footer-menu,
.footer-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.footer-menu {
  margin-bottom: 20px;
}

.footer-menu a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #60e772;
}

.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 24px 0;
}

.footer-submenu {
  gap: 0px;
}

.footer-submenu a {
  color: #333;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-submenu a:hover {
  color: #60e772;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 24px 0;
}

.copy {
  text-align: center;
  font-size: 0.875rem;
  color: #333;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .footer-content {
    gap: 32px;
  }
  .footer-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-nav {
    max-width: 100%;
  }
  .footer-menu a {
    font-size: 0.9375rem;
  }
  .footer-submenu a {
    font-size: 0.8125rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  -webkit-transition: background-color .2s ease, color .2s ease;
  transition: background-color .2s ease, color .2s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn.primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn.primary:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}

.btn.outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn.outline:hover {
  background: color-mix(in oklch, var(--primary), transparent 85%);
}

/* Pills and sizes */
.pill {
  border-radius: 999px;
}

.lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Recruit banner */
.recruit-banner {
  position: relative;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.recruit-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-filter: blur(1px) brightness(0.75);
          filter: blur(1px) brightness(0.75);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.recruit-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

.recruit-content {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  color: white;
  padding: 24px;
}

.recruit-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.recruit-sub {
  margin: 0 0 8px;
  opacity: .9;
}

.recruit-actions {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 640px) {
  .recruit-actions {
    grid-auto-flow: row;
  }
}

/* ===== Utilities ===== */
@media (min-width: 768px) {
  .max-w-4xl {
    max-width: 64rem;
  }
}

/* ===== Service Section (Showa-Style Layout) ===== */
.service-section {
  background: #f8f8f8;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 流体アニメーション背景 */
.fluid-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
}

.fluid-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  opacity: 0.6;
}

.fluid-shape path {
  -webkit-transform-origin: center;
          transform-origin: center;
}

.fluid-shape-1 {
  top: -10%;
  left: -5%;
  -webkit-animation: floatRotate 20s ease-in-out infinite;
          animation: floatRotate 20s ease-in-out infinite;
}

.fluid-shape-2 {
  top: 50%;
  right: -10%;
  animation: floatRotate 25s ease-in-out infinite reverse;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}

.fluid-shape-3 {
  bottom: -15%;
  left: 40%;
  -webkit-animation: floatRotate 30s ease-in-out infinite;
          animation: floatRotate 30s ease-in-out infinite;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}

@-webkit-keyframes floatRotate {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0deg) scale(1);
            transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    -webkit-transform: translate(30px, -40px) rotate(5deg) scale(1.05);
            transform: translate(30px, -40px) rotate(5deg) scale(1.05);
  }
  50% {
    -webkit-transform: translate(-20px, 30px) rotate(-3deg) scale(0.95);
            transform: translate(-20px, 30px) rotate(-3deg) scale(0.95);
  }
  75% {
    -webkit-transform: translate(40px, 20px) rotate(8deg) scale(1.02);
            transform: translate(40px, 20px) rotate(8deg) scale(1.02);
  }
}

@keyframes floatRotate {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0deg) scale(1);
            transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    -webkit-transform: translate(30px, -40px) rotate(5deg) scale(1.05);
            transform: translate(30px, -40px) rotate(5deg) scale(1.05);
  }
  50% {
    -webkit-transform: translate(-20px, 30px) rotate(-3deg) scale(0.95);
            transform: translate(-20px, 30px) rotate(-3deg) scale(0.95);
  }
  75% {
    -webkit-transform: translate(40px, 20px) rotate(8deg) scale(1.02);
            transform: translate(40px, 20px) rotate(8deg) scale(1.02);
  }
}

/* メインラッパー */
.service-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.2fr;
      grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 左側：タイトルエリア */
.service-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.service-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.service-section-main-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}

.service-section-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.service-detail-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: white;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-detail-button svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.service-detail-button:hover {
  background: #1a1a1a;
  color: white;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-button:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

/* 右側：サービスカードグリッド */
.service-right {
  position: relative;
}

.service-cards-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.service-card-number {
  display: none;
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-card-title {
  padding: 24px 20px;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .service-section {
    padding: 80px 0;
    min-height: auto;
  }
  .service-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 60px;
  }
  .service-left {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-section-main-title {
    font-size: 2.5rem;
  }
  .service-section-lead {
    font-size: 1rem;
  }
  .fluid-shape {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .service-section {
    padding: 60px 0;
  }
  .service-wrapper {
    gap: 40px;
    width: 100%;
  }
  .service-section-main-title {
    font-size: 1.75rem;
  }
  .service-section-lead {
    font-size: 0.9375rem;
  }
  .service-cards-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card-image {
    height: 160px;
  }
  .service-card-title {
    font-size: 1rem;
    padding: 20px 16px;
  }
  .fluid-shape {
    width: 300px;
    height: 300px;
  }
}

/* ===== Services (BUSINESS) ===== */
.business-section {
  padding: 80px 0;
}

.business-head {
  margin-bottom: 40px;
}

.business-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.business-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (min-width: 1024px) {
  .business-layout {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Left Side */
.business-left {
  display: -ms-grid;
  display: grid;
  gap: 32px;
  position: relative;
}

.business-hero {
  position: absolute;
  z-index: -1;
}

.business-hero img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fluid-shape {
  width: 100%;
  height: 100%;
  min-height: 400px;
  opacity: 1;
}

.business-message {
  margin-top: 24px;
}

.business-lead {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: var(--foreground);
}

.text-accent {
  color: var(--primary);
}

.business-desc {
  margin-top: 16px;
  padding: 20px;
  background: color-mix(in oklch, var(--muted), transparent 50%);
  border-radius: 12px;
}

.business-desc p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted-foreground);
}

/* Right Side */
.business-right {
  display: -ms-grid;
  display: grid;
  gap: 48px;
  padding-top: 20px;
}

.business-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto 1fr;
      grid-template-columns: auto auto 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.business-item:last-child {
  border-bottom: none;
}

.business-num {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.business-icon {
  width: 64px;
  height: 64px;
  color: var(--primary);
}

.business-icon svg {
  width: 100%;
  height: 100%;
}

.business-content {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.business-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.5;
}

.business-title-item {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0;
  color: var(--foreground);
}

@media (max-width: 768px) {
  .business-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .business-icon {
    margin: 0 auto;
  }
}

/* ===== Company/About Section ===== */
.company-about-section {
  background: white;
  padding: 100px 0;
  position: relative;
}

.company-about-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5fr;
      grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 左側：ナビゲーションリスト */
.company-about-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.company-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.company-nav-item {
  position: relative;
  padding: 40px 20px;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}

.company-nav-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.company-nav-item:hover {
  background: #fafafa;
}

.company-nav-item:hover .company-nav-title {
  color: var(--primary);
}

.company-nav-item:hover .company-nav-number {
  color: var(--primary);
}

.company-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.company-nav-label {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.company-nav-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #0a3d5c;
  margin: 0;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.company-nav-description {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.company-nav-number {
  position: absolute;
  top: 40px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: #e5e5e5;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* 右側：画像 */
.company-about-right {
  position: relative;
  height: 600px;
}

.company-about-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.company-about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.company-about-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .company-about-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 60px;
  }
  .company-about-right {
    height: 400px;
  }
  .company-nav-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .company-about-section {
    padding: 60px 0;
  }
  .company-nav-item {
    padding: 32px 20px;
  }
  .company-nav-title {
    font-size: 1.75rem;
  }
  .company-nav-number {
    font-size: 2rem;
    top: 32px;
  }
  .company-about-right {
    height: 300px;
  }
}

/* Shared section title (align with BUSINESS/COMPANY) */
.section-title {
  position: relative;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.02em;
  margin: 0;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -16px;
  width: 80px;
  height: 6px;
  background: var(--primary);
  border-radius: 999px;
}

/* ===== Member Section ===== */
.member-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.member-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (min-width: 1024px) {
  .member-layout {
    -ms-grid-columns: 400px 1fr;
        grid-template-columns: 400px 1fr;
    gap: 80px;
  }
}

.member-left {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.member-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--foreground);
}

.member-subtitle {
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 24px 0;
}

.btn-all-interviews {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-all-interviews:hover {
  background: color-mix(in oklch, var(--primary), black 10%);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.btn-all-interviews svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-all-interviews:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.member-right {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.member-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.member-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  padding: 8px 0;
}

.member-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 12px);
          flex: 0 0 calc(50% - 12px);
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .member-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.333% - 16px);
            flex: 0 0 calc(33.333% - 16px);
  }
}

.member-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.member-card:hover .member-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.member-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.member-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--foreground);
  text-align: center;
}

.member-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.member-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  color: var(--foreground);
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.member-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.member-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .member-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
  }
}

/* ===== News (cards) ===== */
/* ===== NEWS Section ===== */
.news-section {
  background: #f5f1e8;
  padding: 100px 0 120px;
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/* index.phpのニュースセクションでのみ2カラムレイアウト適用 */
@media (min-width: 1024px) {
  .news-section .news-container:has(.news-header) {
    -ms-grid-columns: 300px 1fr;
        grid-template-columns: 300px 1fr;
    gap: 80px;
  }
}

.news-header {
  position: relative;
}

.news-main-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: #ff9f5a;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}

.news-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin: 12px 0 0 0;
  font-weight: 500;
}

.news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.news-item {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr auto;
      grid-template-columns: 200px 1fr auto;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: white;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.news-item:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.news-item:last-child {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom: none;
}

.news-item:hover {
  background: #fff9f5;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-item:hover .news-item-thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-item-thumbnail {
  width: 200px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f0f0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.news-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.news-item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-item-date {
  font-size: 0.875rem;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
}

.news-item-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.news-item-badge.badge-info {
  background: #a8e6a1;
  color: #2d5016;
}

.news-item-badge.badge-ir {
  background: #ffb4c8;
  color: #8b1538;
}

.news-item-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
}

.news-item-arrow-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-item-arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-item:hover .news-item-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.news-view-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.news-view-all-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 48px;
  background: #ff9f5a;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 16px rgba(255, 159, 90, 0.3);
          box-shadow: 0 4px 16px rgba(255, 159, 90, 0.3);
}

.news-view-all-button:hover {
  background: #ff8c3a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 159, 90, 0.4);
          box-shadow: 0 6px 20px rgba(255, 159, 90, 0.4);
}

.news-view-all-button svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-view-all-button:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .news-section {
    padding: 60px 0 80px;
  }
  .news-container {
    gap: 40px;
  }
  .news-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    overflow: hidden;
  }
  .news-item-thumbnail {
    width: calc(100% + 40px);
    height: 180px;
    margin: -20px -20px 0;
    border-radius: 0;
  }
  .news-item-content {
    gap: 10px;
  }
  .news-item-meta {
    gap: 10px;
  }
  .news-item-arrow-wrap {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
  .news-item-title {
    font-size: 0.9375rem;
    padding-right: 40px;
  }
  .news-view-all-button {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* ===== Breadcrumb ===== */
.breadcrumb-section {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.875rem;
}

.breadcrumb-item {
  color: #666;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.breadcrumb-item:not(.current):hover {
  color: var(--primary);
}

.breadcrumb-item.current {
  color: #333;
  font-weight: 600;
}

.breadcrumb-separator {
  color: #999;
}

/* ===== Page Hero (Unified Design) ===== */
.page-hero {
  position: relative;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
    padding: 80px 0 60px;
    margin-top: 74px;
    height: auto;
  }
}

.page-hero-fluid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.15;
}

.page-hero-fluid-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  -webkit-animation: float 20s ease-in-out infinite;
          animation: float 20s ease-in-out infinite;
}

@media (max-width: 768px) {
  .page-hero-fluid-shape {
    width: 400px;
    height: 400px;
  }
}

.page-hero-fluid-shape-1 {
  top: -20%;
  left: -10%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
}

.page-hero-fluid-shape-2 {
  top: 50%;
  right: -15%;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
}

.page-hero-fluid-shape-3 {
  bottom: -30%;
  left: 30%;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(20px, -20px) rotate(5deg);
            transform: translate(20px, -20px) rotate(5deg);
  }
  50% {
    -webkit-transform: translate(-15px, 15px) rotate(-3deg);
            transform: translate(-15px, 15px) rotate(-3deg);
  }
  75% {
    -webkit-transform: translate(15px, 10px) rotate(3deg);
            transform: translate(15px, 10px) rotate(3deg);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(20px, -20px) rotate(5deg);
            transform: translate(20px, -20px) rotate(5deg);
  }
  50% {
    -webkit-transform: translate(-15px, 15px) rotate(-3deg);
            transform: translate(-15px, 15px) rotate(-3deg);
  }
  75% {
    -webkit-transform: translate(15px, 10px) rotate(3deg);
            transform: translate(15px, 10px) rotate(3deg);
  }
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.page-hero-subtitle {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-animation: fadeInUp 0.8s ease-out;
          animation: fadeInUp 0.8s ease-out;
}

.page-hero-main {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--foreground);
  letter-spacing: -0.02em;
  line-height: 1.1;
  -webkit-animation: fadeInUp 0.8s ease-out 0.2s both;
          animation: fadeInUp 0.8s ease-out 0.2s both;
  background: linear-gradient(135deg, #00d0ff 0%, #7dd181 50%, #ff9f5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-lead {
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-weight: 500;
  -webkit-animation: fadeInUp 0.8s ease-out 0.4s both;
          animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*# sourceMappingURL=common.css.map */