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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hero — load animations */
.hero-eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.2s;
}
.hero-heading {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.4s;
}
.hero-sub {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.6s;
}
.hero-actions {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.75s;
}
.hero-bottom {
  animation: fadeIn 1s ease both;
  animation-delay: 1s;
}
.stats {
  animation: fadeIn 0.8s ease both;
  animation-delay: 0.9s;
}

/* Scroll fade-in */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* =============================================
   Header
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: #1a6b3a29;
  backdrop-filter: blur(3px) saturate(1.8);
  -webkit-backdrop-filter: blur(3px) saturate(1.8);
  padding: 20px 40px;
  transition: background-color var(--transition);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2872e5 0%, #ffa609 50%, #309159 100%);
  z-index: 2;
}

.site-header.scrolled {
  background-color: #0d1b2a29;
}

/* Subpage header — solid white */
.site-header.is-subpage {
  background-color: var(--color-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--color-gray-200);
}

.site-header.is-subpage .logo-text {
  color: var(--color-dark);
}

.site-header.is-subpage .nav-list li a {
  color: var(--color-dark);
}

.site-header.is-subpage .nav-list li a:hover {
  color: var(--color-primary);
}

.site-header.is-subpage .nav-list li.nav-cta a,
.site-header.is-subpage .nav-list li:last-child a {
  color: var(--color-white);
}

.site-header.is-subpage .hamburger span {
  background-color: var(--color-dark);
}

.site-header.is-subpage .btn-sp-cta {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.site-logo a {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-ja);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

/* Global Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list li a {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 2px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-list li a:hover {
  color: var(--color-gold);
}

.nav-list li.nav-cta a,
.nav-list li:last-child a {
  background-color: var(--color-gold);
  color: var(--color-white);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color var(--transition);
}

.nav-list li.nav-cta a:hover,
.nav-list li:last-child a:hover {
  background-color: var(--color-gold-light);
  color: var(--color-dark);
}

/* SP header actions */
.header-sp-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.btn-sp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background-color var(--transition);
}

.btn-sp-cta:hover {
  background-color: var(--color-gold-light);
  color: var(--color-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--color-white);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.sp-br {
  display: none;
}

/* SP Nav overlay */
.sp-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #0a1410;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.sp-nav.is-open {
  transform: translateX(0);
}

.sp-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-nav-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
}

.sp-nav-close span:nth-child(1) {
  transform: rotate(45deg);
}

.sp-nav-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.sp-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 100px 40px 60px;
}

.sp-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.sp-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-nav-list li a {
  display: block;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.sp-nav-list li a:hover {
  color: var(--color-gold);
}

.sp-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-nav-contact .btn {
  width: 100%;
  justify-content: center;
}

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

/* =============================================
   Hero
   ============================================= */
.hero-firstview {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 640px;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Background (covers full firstview including stats) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 107, 58, 0.3) 0%, rgba(26, 107, 58, 0) 50%),
    linear-gradient(
      105.25deg,
      rgba(13, 27, 42, 0.05) 0%,
      rgba(13, 32, 53, 0.03) 45%,
      rgba(13, 43, 30, 0.02) 100%
    );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

.hero-heading {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  font-size: 52px;
  text-shadow:
    0px 4px 14px #000000bf,
    0px 4px 4px #00000040;
}

.hero-heading em {
  font-style: normal;
  color: var(--color-gold);
}

.hero-sub {
  font-size: 15px;
  color: var(--color-gray-100);
  line-height: 1.9;
  margin-bottom: 40px;
  text-shadow:
    0px 4px 14px rgba(0, 0, 0, 0.75),
    0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 36px;
  border-radius: 6px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid #fff;
  font-weight: 400;
}

.btn-outline:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Bottom bar */
.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* License */
.hero-license {
  text-align: right;
}

.license-badge {
  display: inline-block;
  background-color: rgba(13, 27, 42, 0.4);
  color: var(--color-white);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 6px;
  border: 1px solid rgba(44, 49, 64, 1);
  border-radius: 4px;
}

.license-text {
  background-color: rgba(13, 27, 42, 0.4);
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(44, 49, 64, 1);
  padding: 4px 12px;
  border-radius: 4px;
}

.license-badge strong,
.license-text strong {
  font-size: 14px;
  font-weight: 700;
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.5);
}

.scroll-label {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* =============================================
   Stats
   ============================================= */
.stats {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(rgba(26, 107, 58, 0.1), rgba(26, 107, 58, 0.1)),
    rgba(26, 107, 58, 0.1);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
}

.stats-inner {
  padding: 0;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-item {
  position: relative;
  padding: 36px 40px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}

.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background-color: #fff;
}

.stats-label {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 400;
}

.stats-value {
  color: var(--color-white);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.stats-unit {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin-left: 2px;
}

/* =============================================
   Gallery Strip
   ============================================= */
.gallery-strip {
  overflow: hidden;
  margin-bottom: 80px;
}

.gallery-strip-inner {
  --gap: 20px;
  --item-w: calc((100vw - 4 * var(--gap)) / 3.6);
  display: flex;
  gap: var(--gap);
  height: 246px;
  transform: translateX(calc(var(--item-w) * -0.7));
}

.gallery-strip-item {
  flex: 0 0 var(--item-w);
  overflow: hidden;
  border-radius: 0 70px 0 0;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-strip-item:hover img {
  transform: scale(1.05);
}

/* =============================================
   Section Common
   ============================================= */
.section-header {
  margin-bottom: 40px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.label-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #e8b86d;
  flex-shrink: 0;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1px;
}

/* =============================================
   Our Work
   ============================================= */
.section-work {
  padding: 80px 0;
  background-color: var(--color-white);
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.work-item:nth-child(even) {
  direction: rtl;
}

.work-item:nth-child(even) > * {
  direction: ltr;
}

.work-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-img:hover img {
  transform: scale(1.03);
}

.work-en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.26em;
}

.work-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.work-desc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.work-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.work-tags li {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  border: 1px solid var(--color-gray-100) 99;
  border-radius: 3px;
  padding: 6px 14px;
  width: fit-content;
  background: #e8e9eb4d;
  color: #2c3140;
}

/* =============================================
   Our Strengths
   ============================================= */
.section-strengths {
  padding: 80px 0;
  background-color: var(--color-green-light);
  width: 100%;
}

.strengths-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strength-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  border-left: 4px solid var(--accent, var(--color-primary));
  overflow: hidden;
}

.strength-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent) 10%, transparent);
  margin-bottom: 24px;
}

.strength-num {
  position: absolute;
  bottom: -16px;
  right: 16px;
  font-family: var(--font-en);
  font-size: 156px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.strength-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.strength-desc {
  font-size: 16px;
  color: #8a8e96;
}

@media (max-width: 768px) {
  .strengths-list {
    grid-template-columns: 1fr;
  }

  .hero-eyebrow {
    font-size: 13px;
    margin-bottom: 0;
  }
}

/* =============================================
   News
   ============================================= */
.section-news {
  padding: 96px 0;
  background-color: var(--color-white);
}

.news-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: stretch;
}

.news-header {
  display: flex;
  flex-direction: column;
}

.news-header-text {
  display: flex;
  flex-direction: column;
}

.news-header .section-title {
  margin-bottom: 0;
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  border-bottom: 1.5px solid var(--color-dark);
  padding-bottom: 4px;
  width: fit-content;
  transition: opacity var(--transition);
}

.news-more svg {
  flex-shrink: 0;
}

.news-more:hover {
  opacity: 0.6;
}

.news-list {
  border-top: 1px solid var(--color-gray-200);
}

.news-item {
  display: grid;
  /*grid-template-columns: 140px 80px 1fr;*/
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-dark);
  transition: opacity var(--transition);
}

.news-item:hover {
  opacity: 0.65;
}

.news-date {
  font-size: 16px;
  color: #8a8e96;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
}

.news-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  min-width: 80px;
}

.news-cat--saiyou,
.news-cat--recruit {
  color: var(--color-primary);
  background-color: rgba(30, 124, 98, 0.07);
}

.news-cat--info,
.news-cat--uncategorized,
.news-cat--おしらせ,
.news-cat--news {
  color: #5a7ab0;
  background-color: rgba(90, 122, 176, 0.07);
}

.news-title {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3140;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-header {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .news-header-text {
    flex-direction: column;
  }

  .news-item {
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
  }

  .news-cat {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .news-title {
    grid-column: 1 / -1;
  }

  .btn {
    padding: 6px 16px;
  }

  .stats-unit {
    font-size: 12px;
  }
}

/* =============================================
   Recruit CTA
   ============================================= */
.section-recruit {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.recruit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.recruit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.recruit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    94.7deg,
    rgba(19, 58, 35, 0.3) 1.43%,
    rgba(53, 77, 81, 0.5) 98.57%
  );
}

.recruit-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.recruit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-gray-100);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.recruit-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-white);
  flex-shrink: 0;
}

.recruit-heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.recruit-sub {
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.85;
  margin-bottom: 28px;
}

.recruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recruit-tags li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.53);
  border-radius: 999px;
  padding: 4px 14px;
}

.recruit-card {
  background: rgba(26, 107, 58, 0.1);
  backdrop-filter: saturate(1.5);
  -webkit-backdrop-filter: saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 32px;
}

.recruit-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.recruit-card-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 28px;
}

.recruit-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--color-white);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.recruit-card-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

@media (max-width: 900px) {
  .recruit-inner {
    grid-template-columns: 1fr;
    gap: 35px;
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .recruit-left {
    padding: 0 32px;
  }
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
  background-color: #0f4d2a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer-brand-en {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.footer-brand-ja {
  font-size: 12px;
  color: var(--color-gray-200);
  margin-bottom: 20px;
}

.footer-address {
  font-style: normal;
  font-size: 12px;
  color: var(--color-gray-200);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-tel {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1px;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-nav-col {
  min-width: 140px;
}

.footer-nav-head {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-gray-200);
  margin-bottom: 12px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a {
  font-size: 12px;
  color: var(--color-gray-200);
  transition: color var(--transition);
}

.footer-nav-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding: 0 0 60px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #8a8e96;
  padding-top: 20px;
}

.footer-copy {
  color: var(--color-gray-200);
  font-size: 12px;
}

.footer-privacy {
  font-size: 12px;
  color: var(--color-gray-200);
  transition: color var(--transition);
}

.footer-privacy:hover {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .site-header {
    padding: 0;
  }

  .header-inner {
    padding: 0 16px;
  }

  .logo-mark svg {
    width: 150px;
    height: auto;
  }

  .global-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(10, 20, 16, 0.97);
    overflow-y: auto;
  }

  .global-nav.is-open {
    display: block;
  }

  /* Hamburger → X animation */
  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px;
  }

  .nav-list li a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-list li.nav-cta a,
  .nav-list li:last-child a {
    margin-top: 20px;
    text-align: center;
  }

  .header-sp-actions {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 46px;
  }

  .hero-bottom {
    position: static;
    width: 100%;
    padding: 0 20px 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .hero-license {
    text-align: right;
  }

  .hero-scroll {
    bottom: auto;
    left: auto;
  }

  .stats-item {
    padding: 12px;
  }

  .stats-value {
    font-size: 36px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Section common */
  .section-work,
  .section-strengths,
  .section-news,
  .section-recruit {
    padding: 64px 0;
  }

  .section-title {
    font-size: 24px;
  }

  /* Work */
  .work-list {
    gap: 56px;
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-item:nth-child(even) {
    direction: ltr;
  }

  .work-desc {
    font-size: 15px;
  }

  /* Gallery strip */
  .gallery-strip-inner {
    --gap: 12px;
    --item-w: calc((100vw - 2 * var(--gap)) / 1.6);
    height: 180px;
    transform: translateX(calc(var(--item-w) * -0.7));
  }

  .gallery-strip-item {
    border-radius: 0 40px 0 0;
  }

  .sp-br {
    display: block;
  }

  /* Recruit */
  .recruit-left {
    padding: 0;
  }

  .recruit-heading {
    font-size: 26px;
    word-break: break-all;
  }

  .recruit-sub {
    font-size: 13px;
  }

  .recruit-tags {
    flex-wrap: wrap;
  }

  .recruit-card {
    padding: 20px;
  }

  .recruit-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 13px;
    padding: 10px 8px;
    text-align: center;
    justify-content: center;
    white-space: normal;
    word-break: keep-all;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 35px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .btn {
    padding: 10px 16px;
    font-size: 14px;
    justify-content: center;
  }

  /* News item: simplified layout */
  .news-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 6px 12px;
    padding: 10px 0;
  }

  .news-date {
    grid-column: 1;
    grid-row: 1;
    font-size: 13px;
    text-align: left;
    white-space: nowrap;
  }

  .news-cat {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .news-title {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-left: 0;
    font-size: 15px;
  }
}

/* =============================================
   Subpage Common — Page Hero
   ============================================= */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 360px;
  margin-top: var(--header-height);
}

.page-hero-left {
  background-color: var(--color-primary);
  padding: 60px 40px 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 15px;
}

.page-hero-breadcrumb a {
  color: var(--color-gray-100);
  transition: color var(--transition);
}

.page-hero-breadcrumb a:hover {
  color: var(--color-white);
}

.page-hero-breadcrumb span {
  color: var(--color-gray-100);
}

.page-hero-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-gray-100);
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-shadow:
    0px 0px 8px #00000052,
    0px 4px 4px #00000040;
}

.page-hero-desc {
  font-size: 15px;
  color: var(--color-gray-100);
  line-height: 1.7;
  text-shadow: 0px 4px 14px #00000073;
  letter-spacing: -0.09px;
}

.page-hero-right {
  position: relative;
  overflow: hidden;
}

.page-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }

  .page-hero-label {
    margin-top: 15px;
  }

  .page-hero-left {
    padding: 40px 24px 36px;
    gap: 12px;
  }

  .page-hero-title {
    font-size: 34px;
  }

  .page-hero-right {
    display: none;
  }
}

/* =============================================
   Page Work — わたしたちの仕事
   ============================================= */

/* ── Intro section ── */
.work-intro {
  padding: 100px 0 80px;
  background-color: var(--color-white);
}

.work-intro-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.work-intro-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-intro-lead {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.65;
}

.work-intro-text {
  font-size: 15px;
  color: #4a4f5e;
  line-height: 1.85;
}

.work-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.work-tag {
  display: inline-block;
  font-size: 12px;
  color: #2c3140;
  border: 1px solid #f4f5f799;
  border-radius: 2px;
  padding: 4px 12px;
  white-space: nowrap;
  background-color: #e8e9eb4d;
}

.work-intro-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.work-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .work-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-intro {
    padding: 60px 0;
  }
}

/* ── 工事種別カード ── */
.work-type-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.work-type-card {
  position: relative;
  border: none;
  border-left: 4px solid #0f4d2a;
  border-radius: 6px;
  padding: 28px 24px 40px;
  background-color: var(--color-gray-100);
  overflow: hidden;
}

.work-type-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-type-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.work-type-desc {
  color: var(--color-gray-500);
  line-height: 1.75;
}

.work-type-num {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 96px;
  font-weight: 700;
  color: #e8e9eb;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 900px) {
  .work-type-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .work-type-list {
    grid-template-columns: 1fr;
  }
}

/* ── Process section ── */
.work-process {
  padding: 100px 0;
  background-color: var(--color-light);
}

.work-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.work-process-item {
  background-color: var(--color-white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.work-process-item::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid var(--color-white);
  z-index: 1;
}

.work-process-item:last-child::after {
  display: none;
}

.work-process-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.25;
}

.work-process-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
}

.work-process-desc {
  font-size: 13px;
  color: #5a5f6e;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .work-process-list {
    grid-template-columns: 1fr 1fr;
  }

  .work-process-item::after {
    display: none;
  }

  .work-process {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .work-process-list {
    grid-template-columns: 1fr;
  }
}

/* ── Gallery section ── */
.work-gallery {
  padding: 100px 0;
  background-color: var(--color-white);
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.work-gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-gallery-item:hover img {
  transform: scale(1.04);
}

.work-gallery-item.is-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

@media (max-width: 768px) {
  .work-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .work-gallery-item.is-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .work-gallery {
    padding: 60px 0;
  }
}

/* ── CTA section ── */
.work-cta {
  padding: 100px 0;
  background-color: var(--color-primary);
  text-align: center;
}

.work-cta-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.work-cta-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.work-cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.work-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .work-cta {
    padding: 60px 0;
  }

  .work-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================================
   Page Work — 施工の流れ
   ============================================= */
.work-process-section {
  padding: 100px 0;
  background-color: var(--color-primary);
}

.work-process-section .section-label {
  color: var(--color-white);
}

.work-process-section .label-dot {
  background-color: var(--color-gold);
}

.work-process-section .section-title {
  color: var(--color-white);
}

.work-process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto;
  align-items: start;
  gap: 0 16px;
  margin-top: 56px;
}

/* 2ステップ行：同じ幅に揃えて中央寄せ */
.work-process-steps--two {
  grid-template-columns: 1fr auto 1fr;
  max-width: calc((200% - 160px) / 3);
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

.work-step-arrow {
  color: var(--color-gold);
  font-size: 20px;
  padding-top: 56px;
  opacity: 0.7;
}

.work-step-arrow-down {
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.work-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.work-step-num {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  font-weight: 700;
  color: var(--color-gold-light);
  flex-shrink: 0;
}

.work-step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-100);
  line-height: 1.4;
}

.work-step-desc {
  font-size: 16px;
  color: var(--color-gray-200);
  line-height: 1.75;
  text-align: left;
}

/* 全体の nth-child ルールを上書き — 4ステップ均等 stagger */
/* arrow-down追加後: step位置は 1, 4, 7, 10 */
.work-process-steps .fade-up:nth-child(1) {
  transition-delay: 0s;
}
.work-process-steps .fade-up:nth-child(4) {
  transition-delay: 0.1s;
}
.work-process-steps .fade-up:nth-child(7) {
  transition-delay: 0.2s;
}
.work-process-steps .fade-up:nth-child(10) {
  transition-delay: 0.3s;
}

@media (max-width: 768px) {
  .work-process-section {
    padding: 60px 0;
  }

  .work-process-steps {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .work-process-steps:nth-child(3) {
    margin-top: 20px;
  }

  .work-step-arrow {
    display: none;
  }

  .work-step-arrow-down {
    display: flex;
  }

  .work-process-step {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .work-step-num {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .work-process-steps--two {
    max-width: unset;
  }
}

/* =============================================
   Page Work — 施工事例 スライダー
   ============================================= */
.work-cases {
  padding: 0 0 100px;
  background-color: var(--color-primary);
}

.work-cases .section-label {
  color: var(--color-white);
}

.work-cases .label-dot {
  background-color: var(--color-gold);
}

.work-cases .section-title {
  color: var(--color-white);
}

/*
  cases-slider-outer  : max-width + padding (container 역할, overflow 없음)
  cases-slider-clip   : overflow hidden만 담당 (padding 없음)
  → padding 없는 clip에서 잘라야 카드가 정확히 2개만 보임
*/
.cases-slider-outer {
  max-width: 1360px;
  margin: 48px auto 0;
  padding: 0 40px;
}

.cases-slider-clip {
  overflow: hidden;
}

.cases-slider {
  display: flex;
  gap: 24px;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.cases-card {
  flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
}

.cases-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.cases-card-img img,
.cases-card-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cases-card-img-placeholder {
  background-color: #2a4a35;
}

/* 統合パネル — backdrop-filter blur */
.cases-card-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: #0d1b2a1a;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 0.5px solid #c4d8d7;
}

.cases-card-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-gray-100);
  line-height: 1.4;
}

.cases-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 16px;
  font-size: 16px;
  color: var(--color-gray-100);
  border-bottom: 1px solid #8a8e96;
  padding-bottom: 8px;
}

.cases-card-desc {
  font-size: 16px;
  color: var(--color-gray-100);
  line-height: 1.75;
  margin-top: 4px;
}

/* Controls */
.cases-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 0 4px;
}

.cases-nav {
  display: flex;
  gap: 8px;
}

.cases-prev,
.cases-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #c8cad0;
  background: var(--color-white);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

/* hover はマウスデバイスのみ（SP で hover がスタックするのを防ぐ） */
@media (hover: hover) {
  .cases-prev:hover,
  .cases-next:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
  }
}

.cases-prev:active,
.cases-next:active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.cases-prev:disabled,
.cases-next:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.cases-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cases-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: none;
  cursor: pointer;
  transition:
    background-color var(--transition),
    width var(--transition),
    border-radius var(--transition);
  flex-shrink: 0;
}

.cases-dot.is-active {
  width: 62px;
  height: 8px;
  border-radius: 4px;
  background-color: #0f4d2a;
}

@media (max-width: 768px) {
  .work-cases {
    padding: 60px 0;
  }

  .cases-slider-outer {
    padding: 0 16px;
  }

  .cases-card {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--color-primary);
    border-radius: 16px;
    overflow: hidden;
    border: 0.5px solid #c4d8d7;
  }

  /* SP: 画像は上、パネルは画像の外・下に */
  .cases-card-img {
    aspect-ratio: unset;
    overflow: visible;
    height: auto;
  }

  .cases-card-img img,
  .cases-card-img-placeholder {
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 12px 12px 0 0;
  }

  .cases-card-panel {
    position: static;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    padding: 20px 20px 24px;
    gap: 6px;
  }

  .cases-card-title {
    font-size: 18px;
    color: var(--color-white);
  }

  .cases-card-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    gap: 2px 12px;
  }

  .cases-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
  }
}

/* =============================================
   Page About — りゅう電設について
   ============================================= */

/* 代表メッセージ */
.about-message {
  padding: 100px 0;
  background-color: var(--color-white);
}

.about-message-body .sp-view {
  display: none;
}

.about-message-body .pc-view {
  display: block;
}

.about-message-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.about-message-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  height: 520px;
}

.about-message-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(3.4);
  transform-origin: 58% 26%;
}

.about-message-text {
  font-size: 18px;
  color: var(--color-text);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.about-message-sign {
  font-size: 18px;
  margin-top: 8px;
  padding-top: 24px;
}

/* 会社概要 */
.about-profile {
  padding: 100px 0;
  background-color: var(--color-gray-50, #f8f9fa);
}

.about-profile-table {
  margin-top: 56px;
}

.profile-list {
  display: flex;
  flex-direction: column;
}

.profile-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--color-gray-200);
  padding: 20px 0;
  gap: 24px;
  align-items: start;
}

.profile-row:first-child {
  border-top: 1px solid var(--color-gray-200);
}

.profile-row dt {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  padding-top: 1px;
}

.profile-row dd {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
}

/* SP */
@media (max-width: 768px) {
  .about-message {
    padding: 60px 0;
  }

  .about-message-body .pc-view {
    display: none;
  }

  .about-message-body .sp-view {
    display: block;
  }

  .about-message-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }

  .about-message-img {
    width: 100%;
    margin: 0 auto;
    max-height: 470px;
  }

  .about-message-text {
    font-size: 16px;
    line-height: 1.85;
  }

  .about-profile {
    padding: 60px 0;
  }

  .about-profile-table {
    margin-top: 36px;
  }

  .profile-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .profile-row dt {
    font-size: 12px;
    color: var(--color-primary);
    letter-spacing: 0.05em;
  }

  .profile-row dd {
    font-size: 14px;
  }
}

/* =============================================
   About Strengths — 私たちの強み
   ============================================= */
.about-strengths {
  padding: 100px 0;
  background-color: var(--color-green-light);
}

.about-strengths-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 56px;
}

.about-strength-card {
  position: relative;
  background: var(--color-white);
  border-radius: 0;
  border-left: 4px solid var(--accent, var(--color-primary));
  padding: 24px 28px;
  overflow: hidden;
  max-width: 1180px;
  width: 100%;
  border-radius: 8px;
}

.about-strength-card:nth-child(2) {
  margin-left: auto;
}

.about-strength-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  margin-bottom: 20px;
}

.about-strength-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.about-strength-desc {
  font-size: 16px;
  color: var(--color-gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e9eb;
  padding-bottom: 16px;
}

.about-strength-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-strength-bullets li {
  font-size: 16px;
  color: var(--color-gray-500);
  padding-left: 1em;
  position: relative;
  line-height: 1.6;
}

.about-strength-bullets li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.about-strength-num {
  position: absolute;
  bottom: -18px;
  right: 24px;
  font-size: 156px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .about-strengths {
    padding: 60px 0;
  }

  .about-strengths-list {
    margin-top: 36px;
    gap: 16px;
  }

  .about-strength-card {
    padding: 28px 24px;
  }
}

/* =============================================
   About Safety — 安全管理・施工品質
   ============================================= */
.about-safety {
  padding: 100px 0;
  background-color: var(--color-white);
}

.about-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.about-safety-card {
  background-color: var(--color-gray-100);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-safety-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e8e9eb;
  padding-bottom: 20px;
}

.about-safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 6px;
  background-color: var(--color-green-light);
  padding: 10px;
}

.about-safety-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
}

.about-safety-desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-safety {
    padding: 60px 0;
  }

  .about-safety-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .about-safety-card {
    padding: 16px;
    gap: 16px;
  }

  .about-safety-title {
    font-size: 16px;
  }

  .about-safety-card-header {
    padding-bottom: 16px;
  }
}

/* =============================================
   About Stats
   ============================================= */
.about-stats {
  background-color: var(--color-primary);
  padding: 64px 0;
}

.about-stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.about-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  gap: 8px;
}

.about-stats-item + .about-stats-item {
  position: relative;
}

.about-stats-item + .about-stats-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
}

.about-stats-num {
  font-size: 46px;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stats-unit {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0;
  margin-left: 4px;
}

.about-stats-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.about-stats-desc {
  font-size: 12px;
  color: #ffffffa6;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-stats {
    padding: 18px 0;
  }

  .about-stats-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .about-stats-item {
    padding: 0 20px;
    text-align: left;
  }

  .about-stats-item:nth-child(odd)::before {
    display: none;
  }

  .about-stats-item:nth-child(even)::before {
    display: block;
    height: 100%;
  }

  .about-stats-item:nth-child(3),
  .about-stats-item:nth-child(4) {
    padding-top: 40px;
  }

  .about-stats-item:nth-child(3):after,
  .about-stats-item:nth-child(4):after {
    content: "";
    position: absolute;
    left: 50%;
    top: -18px;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .about-stats-item:nth-child(odd) {
    padding: 0 20px 0 0;
  }

  .about-stats-item:nth-child(even) {
    padding: 0 0 0 20px;
  }

  .about-stats-num {
    font-size: 36px;
  }

  .about-stats-unit {
    font-size: 12px;
  }
}

/* =============================================
   Recruit Timeline — 1日の流れ
   ============================================= */
.recruit-timeline {
  padding: 100px 0;
  background-color: #e8f2ec;
}

.recruit-timeline-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.recruit-timeline-header {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

/* タイムライン本体 */
.recruit-timeline-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.timeline-body-center {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.timeline-edge-label {
  position: absolute;
  left: -160px;
  top: 20px;
  width: 96px;
  text-align: right;
  font-size: 12px;
  color: #2c3140;
  letter-spacing: 0.05em;
}

.timeline-edge-label.finish {
  bottom: 55px;
  top: unset;
}

.timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 120px;
}

/* 縦ライン */
.timeline-track::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: 145px;
  width: 1px;
  background-color: var(--color-gray-500);
}

/* 各アイテム */
.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -82px;
  top: 76px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gray-500);
  z-index: 1;
}

.timeline-time {
  position: absolute;
  left: -140px;
  top: 23%;
  width: 96px;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  background: #e7f2ec;
}

.timeline-card {
  background-color: var(--color-white);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 0;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 78px;
  width: 50px;
  height: 1px;
  background-color: var(--color-gray-500);
  z-index: 1;
}

.timeline-card-img {
  width: 290px;
  height: 204px;
  flex-shrink: 0;
  overflow: hidden;
}

.timeline-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timeline-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
}

.timeline-card-desc {
  font-size: 16px;
  color: var(--color-gray-500);
  line-height: 1.75;
}

/* 矢印装飾 */
.timeline-chevron {
  flex-shrink: 0;
}

.timeline-chevron--right {
  order: 1;
  position: relative;
  align-self: stretch;
  width: 32px;
}

.timeline-chevron-group {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* 1枚目と2枚目の間 */
.timeline-chevron--right .timeline-chevron-group:nth-child(1) {
  top: 22%;
}

/* 5枚目と6枚目の間 */
.timeline-chevron--right .timeline-chevron-group:nth-child(2) {
  top: 83.33%;
}

@media (max-width: 768px) {
  .recruit-timeline {
    padding: 60px 0;
  }

  .recruit-timeline-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .recruit-timeline-header {
    position: static;
  }

  .timeline-track {
    padding-left: 65px;
  }

  .timeline-track::before {
    left: 15px;
  }

  .timeline-edge-label {
    left: -130px;
  }

  .timeline-item::before {
    left: -52px;
  }

  .timeline-time {
    left: -80px;
    width: 64px;
    font-size: 13px;
    top: 53px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .timeline-card-img {
    width: 100%;
    height: 160px;
  }

  .timeline-card-body {
    padding: 16px 20px;
  }

  .timeline-card-title {
    font-size: 16px;
  }

  .timeline-chevron {
    display: none;
  }

  .recruit-timeline-body {
    gap: 0;
  }

  .timeline-card::before {
    left: -48px;
  }
}

/* =============================================
   Page Recruit — 採用情報
   ============================================= */
.recruit-jobs {
  padding: 100px 0;
  background-color: var(--color-white);
}

.recruit-jobs-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  margin-top: 0;
  align-items: start;
}

.recruit-jobs-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recruit-jobs-left .section-header {
  margin-bottom: 0;
}

.recruit-jobs-left .section-title {
  font-size: 28px;
}

/* タブ */
.recruit-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.recruit-tab {
  background: none;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition);
  line-height: 1.4;
  border: 0;
  border-radius: 6px;
}

.recruit-tab:not(.is-active) {
  background-color: var(--color-gray-100);
  border-left: 1px solid var(--color-gray-500);
}

.recruit-tab.is-active,
.recruit-tab:hover {
  background-color: var(--color-green-light);
  color: var(--color-primary);
  font-weight: 700;
  border-left: 1px solid var(--color-primary);
}

/* パネル */
.recruit-panels {
  min-width: 0;
}

.recruit-panel {
  display: none;
}

.recruit-panel.is-active {
  display: block;
}

/* dl リスト */
.recruit-dl {
  width: 100%;
  margin: 0;
  padding: 0;
}

.recruit-dl-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--color-gray-200);
}

.recruit-dl-row:first-child {
  border-top: 1px solid var(--color-gray-200);
}

.recruit-dl-row dt {
  padding: 20px 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-500);
  white-space: nowrap;
}

.recruit-dl-row dd {
  padding: 20px 16px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.recruit-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.recruit-tag-badge {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-primary);
  background-color: var(--color-green-light);
}

.recruit-tag-badge:nth-child(2) {
  color: #1a52a8;
  background-color: #e9eef6;
}

.recruit-indeed-wrap {
  padding: 32px 0 8px;
  display: flex;
  justify-content: center;
}

.recruit-indeed-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: opacity var(--transition);
}

.recruit-indeed-btn:hover {
  opacity: 0.8;
}

/* =============================================
   Privacy Policy
   ============================================= */
.privacy-hero {
  margin-top: var(--header-height);
  padding: 56px 0 48px;
  background-color: var(--color-white);
}

.privacy-hero-inner {
  margin: 0 auto;
}

.privacy-hero-inner .page-hero-breadcrumb {
  margin-bottom: 30px;
}

.privacy-hero-inner .page-hero-breadcrumb a,
.privacy-hero-inner .page-hero-breadcrumb span {
  color: #8a8e96;
}

.privacy-hero-inner .page-hero-breadcrumb a:hover {
  color: var(--color-primary);
}

.privacy-hero-inner .section-label {
  margin-bottom: 8px;
}

.privacy-hero-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.privacy-body {
  background-color: var(--color-white);
}

.privacy-content {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-dark);
}

.privacy-content p {
  margin-bottom: 18px;
}

.privacy-content h2 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 48px;
}

.privacy-content ul {
  padding-left: 1.4em;
  margin-bottom: 1.6em;
}

.privacy-content ul li {
  list-style: disc;
  margin-bottom: 6px;
}

.privacy-contact {
  border-top: 1px solid var(--color-gray-200);
  padding: 40px 0;
  line-height: 2;
  margin-top: 40px;
}

.privacy-contact p {
  margin-bottom: 20px;
}

.privacy_link {
  text-decoration: underline;
}

.privacy-date {
  font-size: 13px;
  color: #8a8e96;
  text-align: right;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 40px 0 36px;
  }

  .privacy-body {
    padding: 0;
  }

  .privacy-content h2 {
    font-size: 16px;
    margin-top: 36px;
  }
}

/* =============================================
   Single Post — お知らせ詳細
   ============================================= */
.single-hero {
  margin-top: var(--header-height);
  padding: 56px 0 48px;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}

.single-hero-inner {
  max-width: 840px;
  margin: 0 auto;
}

.single-hero .page-hero-breadcrumb {
  margin-bottom: 28px;
}

.single-hero .page-hero-breadcrumb a,
.single-hero .page-hero-breadcrumb span {
  color: #8a8e96;
}

.single-hero .page-hero-breadcrumb a:hover {
  color: var(--color-primary);
}

.single-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.single-hero-date {
  font-size: 14px;
  color: #8a8e96;
  letter-spacing: 0.04em;
}

.single-hero-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.5;
  max-width: 840px;
}

/* 本文エリア */
.single-body {
  padding: 72px 0 100px;
  background-color: var(--color-white);
}

.single-body-inner {
  max-width: 840px;
  margin: 0 auto;
}

/* 本文スタイル */
.single-thumbnail {
  max-width: 840px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
}

.single-thumbnail img {
  width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: cover;
  display: block;
}

.single-content {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
}

.single-content p {
  margin-bottom: 1.75em;
}

.single-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 2.5em 0 1em;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
  line-height: 1.5;
}

.single-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 2em 0 0.8em;
  line-height: 1.5;
}

.single-content ul,
.single-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.75em;
}

.single-content li {
  margin-bottom: 0.5em;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2em 0;
  display: block;
}

.single-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 前後ナビ */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray-200);
}

.single-post-nav-prev a,
.single-post-nav-next a,
.single-post-nav-index {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
  transition: opacity var(--transition);
}

.single-post-nav-prev a:hover,
.single-post-nav-next a:hover,
.single-post-nav-index:hover {
  opacity: 0.55;
}

.single-post-nav-next {
  text-align: right;
}

.single-post-nav-index {
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .single-hero {
    padding: 40px 0 36px;
  }

  .single-hero .page-hero-breadcrumb {
    display: none;
  }

  .single-hero-title {
    font-size: 20px;
  }

  .single-body {
    padding: 48px 0 72px;
  }

  .single-content {
    font-size: 15px;
  }

  .single-content h2 {
    font-size: 18px;
  }

  .single-content h3 {
    font-size: 16px;
  }

  .single-post-nav {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    margin-top: 48px;
    padding-top: 20px;
  }

  .single-post-nav-index {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-200);
  }
}

/* =============================================
   Page News — お知らせ一覧
   ============================================= */
.news-archive {
  padding: 0 0 100px;
  background-color: var(--color-white);
}

.news-archive-list {
  border-top: 1px solid var(--color-gray-200);
}

.news-archive-empty {
  font-size: 15px;
  color: #8a8e96;
  text-align: center;
  padding: 60px 0;
}

/* ページネーション */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 64px;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  border: 1px solid var(--color-gray-200);
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.news-pagination .page-numbers:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.news-pagination .page-numbers.current {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .news-archive {
    padding: 0 0 72px;
  }

  .news-pagination {
    margin-top: 48px;
    gap: 4px;
  }

  .news-pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

/* =============================================
   Page Company — 会社概要・お問い合わせ
   ============================================= */
.company-profile {
  padding: 100px 0 0;
  background-color: var(--color-white);
}

.company-profile-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.company-profile-header {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.company-dl {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-gray-200);
}

.company-dl-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--color-gray-200);
  gap: 0;
}

.company-dl-row dt {
  padding: 24px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #8a8e96;
  white-space: nowrap;
}

.company-dl-row dd {
  padding: 24px 16px;
  font-size: 18px;
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0;
}

.company-dl-row dd a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* お問い合わせ */
.company-contact {
  padding: 100px 0;
  background-color: var(--color-gray-50, #f8f9fa);
}

.company-contact-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.company-contact-header {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.company-contact-note {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.9;
}

.company-contact-form {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  .company-profile-inner,
  .company-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-profile-header,
  .company-contact-header {
    position: static;
  }
}

@media (max-width: 768px) {
  .company-profile {
    padding: 60px 0 0;
  }

  .company-contact {
    padding: 60px 0;
  }

  .company-dl-row {
    grid-template-columns: 1fr;
  }

  .company-dl-row dt {
    padding: 16px 0 4px;
  }

  .company-dl-row dd {
    padding: 0 0 16px;
  }

  .company-contact-form {
    padding: 28px 20px;
  }
}

/* アクセス */
.company-access {
  padding: 100px 0;
  background-color: var(--color-white);
}

.company-access .section-header {
  margin-bottom: 40px;
}

.company-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.company-access-map {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.company-access-map iframe {
  display: block;
  width: 100%;
  height: 300px;
}

.company-access-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.company-access-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 16px 0;
  gap: 0;
  align-items: start;
}

.company-access-item dt {
  font-size: 14px;
  color: #8a8e96;
  font-weight: 400;
  padding-top: 3px;
}

.company-access-item dd {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .company-access {
    padding: 60px 0;
  }

  .company-access-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company-access-map iframe {
    height: 440px;
  }

  .company-access-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* お問い合わせフォーム */
.company-contact {
  padding: 100px 0;
  background-color: #e8f2ec;
}

.company-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.company-contact-left {
  display: flex;
  flex-direction: column;
  position: sticky;
}

.company-contact-left .section-title {
  margin-top: 0;
}

.company-contact-desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.9;
}

.company-contact-tel-block,
.company-contact-addr-block {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.company-contact-tel-label,
.company-contact-addr-label {
  font-size: 12px;
  color: #8a8e96;
}

.company-contact-tel {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.company-contact-tel-prefix {
  font-size: 12px;
  font-weight: 700;
}

.company-contact-tel-hours {
  font-size: 13px;
  color: #8a8e96;
}

.company-contact-addr {
  font-size: 12px;
  color: var(--color-dark);
  line-height: 1.75;
}

/* フォームカード */
.company-contact-form-wrap {
  background-color: var(--color-white);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--color-gray-200);
}

/* ---- Contact Form 7 リセット＆スタイル ---- */
.company-contact-form-wrap .wpcf7 {
  margin: 0;
}

.company-contact-form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CF7フォームエディタ内で使うクラス */
.company-contact-form-wrap .cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.company-contact-form-wrap .cf7-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ラベルテキスト行 */
.company-contact-form-wrap .cf7-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

/* 必須バッジ */
.company-contact-form-wrap .req {
  font-size: 12px;
  font-weight: 600;
  color: #e05252;
}

/* span wrapper リセット */
.company-contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
}

/* テキスト・電話・メール・セレクト共通 */
.company-contact-form-wrap .wpcf7-form input[type="text"],
.company-contact-form-wrap .wpcf7-form input[type="email"],
.company-contact-form-wrap .wpcf7-form input[type="tel"],
.company-contact-form-wrap .wpcf7-form select,
.company-contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  background-color: #f4f5f7;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--color-dark);
  font-family: var(--font-ja);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.company-contact-form-wrap .wpcf7-form input[type="text"]:focus,
.company-contact-form-wrap .wpcf7-form input[type="email"]:focus,
.company-contact-form-wrap .wpcf7-form input[type="tel"]:focus,
.company-contact-form-wrap .wpcf7-form select:focus,
.company-contact-form-wrap .wpcf7-form textarea:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

/* セレクト矢印 */
.company-contact-form-wrap .cf7-select-wrap {
  position: relative;
}

.company-contact-form-wrap .cf7-select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-color: #8a8e96;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

/* テキストエリア */
.company-contact-form-wrap .wpcf7-form textarea {
  resize: vertical;
  height: 110px;
  line-height: 1.7;
}

/* 送信ボタン */
.company-contact-form-wrap .wpcf7-form input[type="submit"] {
  padding: 18px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ja);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color var(--transition);
  letter-spacing: 0.05em;
  display: block;
  margin: auto;
  width: 269px;
}

.company-contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  background-color: #256e44;
}

/* 送信後メッセージ */
.company-contact-form-wrap .wpcf7-response-output {
  font-size: 13px;
  text-align: center;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0;
}

/* バリデーションエラー */
.company-contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e05252;
  margin-top: 4px;
  display: block;
}

/* 注記テキスト */
.company-contact-form-wrap .cf7-note {
  font-size: 12px;
  color: #8a8e96;
  text-align: center;
  line-height: 1.7;
  margin-top: -33px;
}

.company-contact-form-wrap .cf7-privacy {
  font-size: 12px;
  color: #8a8e96;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px;
  padding: 0 92px;
}

.company-contact-form-wrap .cf7-privacy a {
  color: #8a8e96;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1024px) {
  .company-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company-contact-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .company-contact {
    padding: 60px 0;
  }

  .company-contact-form-wrap {
    padding: 28px 20px;
  }

  .company-contact-form-wrap .cf7-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .company-contact-tel {
    font-size: 24px;
  }

  .company-contact-form-wrap .cf7-privacy {
    padding: 0;
  }
}

/* =============================================
   社員の声
   ============================================= */
.recruit-voice {
  padding: 100px 0;
  background-color: var(--color-white);
}

.recruit-voice .section-header {
  margin-bottom: 64px;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 48px;
}

.voice-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.voice-card-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  border:1px solid #ddd
}

.voice-card-img img {
      width: 100%;
    height: 437px;
    object-fit: cover;
    display: block;
    object-position: top;
}

.voice-card-quote-wrap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 80%;
}

.voice-card-quote {
  display: inline;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  color: var(--color-white);
  background-color: rgba(0, 0, 0, 0.72);
  padding: 0px 1px 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 0;
}

.voice-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  padding-top: 4px;
  gap: 14px;
}

.voice-card-meta {
  margin-top: auto;
}

.voice-card-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.85;
}

.voice-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voice-card-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
}

.voice-card-role {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .voice-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .voice-card {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 768px) {
  .recruit-voice {
    padding: 60px 0;
  }

  .recruit-voice .section-header {
    margin-bottom: 40px;
  }

  .voice-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voice-card-img {
    aspect-ratio: 3.5 / 3;
  }

  .voice-card-quote {
    font-size: 24px;
  }

  .voice-card-img img {
    min-height: unset;
  }

  .voice-card-meta {
    order: -1;
    margin-top: 0;
  }

  .voice-card-text {
    order: 1;
  }
}

@media (max-width: 768px) {
  .recruit-jobs {
    padding: 60px 0;
  }

  .recruit-jobs-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recruit-jobs-left .section-title {
    font-size: 24px;
  }

  .recruit-tabs {
    flex-direction: row;
    border-radius: 6px;
    overflow-x: auto;
  }

  .recruit-tab {
    border-bottom: none;
    border-right: 1px solid var(--color-gray-200);
    white-space: nowrap;
    flex: 1;
    text-align: center;
  }

  .recruit-tab:last-child {
    border-right: none;
  }

  .recruit-tab.is-active {
    border-left: none;
    border-bottom: 3px solid var(--color-primary);
  }

  .recruit-dl-row {
    grid-template-columns: 1fr;
  }

  .recruit-dl-row dt {
    padding: 14px 0 4px;
  }

  .recruit-dl-row dd {
    padding: 0 0 14px;
  }
}

/* =============================================
   Contact CTA
   ============================================= */
.section-contact-cta {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(26, 107, 58, 0.4) 0%,
    rgba(26, 107, 58, 0.7) 100%
  );
  padding: 80px 0;
  overflow: hidden;
}

.contact-cta-inner {
  position: relative;
  z-index: 1;
}

.contact-cta-body {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.32;
  color: var(--color-gray-100);
  border: 1px solid var(--color-gray-100);
  border-radius: 999px;
  padding: 2px 14px;
  width: fit-content;
}

.contact-cta-heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.contact-cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.contact-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn-contact-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
  transition:
    background-color var(--transition),
    border-color var(--transition);
  white-space: nowrap;
}

.btn-contact-primary:hover {
  background-color: #0a2918;
  border-color: #0a2918;
}

.btn-contact-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition:
    background-color var(--transition),
    border-color var(--transition);
  white-space: nowrap;
}

.btn-contact-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.contact-cta-watermark {
  position: absolute;
  right: 0px;
  bottom: -14px;
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .section-contact-cta {
    padding: 30px 0;
  }

  .contact-cta-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .btn-contact-primary,
  .btn-contact-ghost {
    flex: 1;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 7px 28px;
  }

  .contact-cta-heading {
    font-size: 28px;
  }
}
