/* === ROOT VARIABLES === */
:root {
  --color-main: #FFFFFF;
  --color-bg: #f0ede8;
  --color-accent: #00C896;
  --color-accent-hover: #00DBA9;
  --color-bg-light: #f0ede8;
  --color-text: #0a0a0f;
  --color-text-muted: #6b6b72;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-card-hover: 0 12px 36px rgba(0, 0, 0, 0.13);
  --radius: 6px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* === SHARED: SECTION HEADING / LEAD === */
.section-title {
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
}

.section-lead {
  font-size: 0.975rem;
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 56px;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.1rem;
  }
}

/* === SCROLL ANIMATION === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero は常に表示（IntersectionObserver 依存を回避） */
.hero-section.animate-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow var(--transition);
}

.navbar.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.navbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 68px;
  width: auto;
  display: block;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.navbar__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__nav {
  display: none;
}

.navbar__nav.is-open {
  display: block;
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 0 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.navbar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.navbar__list li a {
  display: block;
  padding: 13px 32px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), padding-left var(--transition);
}

.navbar__list li a:hover {
  color: var(--color-accent);
  padding-left: 40px;
}

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

  .navbar__nav {
    display: block;
  }

  .navbar__nav.is-open {
    position: static;
    width: auto;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .navbar__list {
    flex-direction: row;
    gap: 36px;
  }

  .navbar__list li a {
    padding: 0;
    font-size: 0.9rem;
    position: relative;
  }

  .navbar__list li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition);
  }

  .navbar__list li a:hover {
    color: var(--color-accent);
    padding-left: 0;
  }

  .navbar__list li a:hover::after {
    width: 100%;
  }
}

/* === HERO SECTION === */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-section {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0f;
  color: var(--color-main);
  text-align: center;
  padding: 0 32px;
  position: relative;
  overflow: hidden;
}

/* 背景動画 */
.hero-section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

/* 暗いオーバーレイ（テキスト可読性確保） */
.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.hero-section__inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.9s ease both;
}

.hero-section__sub {
  display: inline-block;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  opacity: 0.65;
  margin-bottom: 48px;
}

.hero-section__title {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-section__cta {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-main);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  border-radius: var(--radius);
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

/* シマー光源 */
.hero-section__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
}

.hero-section__cta:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.hero-section__cta:hover::before {
  animation: shimmerPass 0.65s ease forwards;
}

@media (min-width: 768px) {
  .hero-section__sub {
    font-size: 0.95rem;
  }

  .hero-section__title {
    font-size: 2.75rem;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }
}

@media (min-width: 1100px) {
  .hero-section__title {
    font-size: 3.25rem;
  }
}

/* === SHIMMER KEYFRAME === */
@keyframes shimmerPass {
  from { transform: translateX(-120%) skewX(-20deg); }
  to   { transform: translateX(220%) skewX(-20deg); }
}

/* === SERVICES SECTION === */
.services-section {
  padding: 120px 32px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

/* グラデーションアクセント */
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 50%, rgba(0, 200, 150, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(0, 200, 150, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.services-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.services-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.services-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-section__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* glassmorphism カード */
.services-section__item {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background-color 0.35s ease,
              border-color 0.35s ease,
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

/* カード上部の画像 */
.services-section__img-wrap {
  margin: -40px -32px 28px;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

.services-section__item:hover .services-section__img-wrap img {
  transform: scale(1.05);
}

.services-section__item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 200, 150, 0.5);
  transform: translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(0, 200, 150, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.55);
}

.services-section__icon {
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-section__icon::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background-color: rgba(0, 200, 150, 0.35);
  max-width: 48px;
}

.services-section__name {
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.services-section__desc {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
}

.services-section__note {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .services-section {
    padding: 140px 48px;
  }

  .services-section__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1100px) {
  .services-section__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === ABOUT SECTION === */
.about-section {
  padding: 120px 32px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 50%, rgba(0, 200, 150, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(0, 200, 150, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.about-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.about-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.about-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* === ABOUT: パネルグリッド === */
.about-section__panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .about-section {
    padding: 140px 48px;
  }

  .about-section__panels {
    grid-template-columns: 1fr 1fr;
  }
}

.about-section__panel {
  display: flex;
  flex-direction: column;
  padding: 40px;
  min-height: 280px;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  transition: background-color var(--transition), transform var(--transition),
              box-shadow var(--transition), border-color 0.3s ease;
}

.about-section__panel:hover {
  background-color: #252525;
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* 会社概要パネル：背景画像 */
.about-section__panel--bg-img {
  background-image: url('image/2017-12東京タワー・夜景-scaled.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.about-section__panel--bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.about-section__panel--bg-img > * {
  position: relative;
  z-index: 1;
}

.about-section__panel--bg-img:hover {
  background-color: transparent;
}

/* 代表挨拶パネル：顔（上半身）を中央上部に表示 */
.about-section__panels > a:nth-child(4).about-section__panel--bg-img {
  background-size: cover;
  background-position: center 20%;
}

/* 動画背景パネル */
.about-section__panel--video {
  background-color: #000;
  overflow: hidden;
}

.about-section__panel--video:hover {
  background-color: #000;
}

.about-section__panel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-section__panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about-section__panel--video > *:not(.about-section__panel-video):not(.about-section__panel-overlay) {
  position: relative;
  z-index: 2;
}

.about-section__panel-icon {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.about-section__panel-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}

.about-section__panel-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  flex: 1;
}

.about-section__panel-arrow {
  display: block;
  text-align: right;
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-top: 24px;
}

/* === MEMBERS PAGE === */
.members-hero {
  padding: 160px 32px 80px;
  background-color: #0a0a0f;
  text-align: center;
}

.members-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}

.members-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.members-hero__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1.3;
}

.members-hero__lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

.members-section {
  padding: 80px 32px 120px;
  background-color: #0a0a0f;
}

.members-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.members-section__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.members-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.members-section__item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.members-section__avatar {
  margin-bottom: 28px;
}

.members-section__avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21,92,89,0.5) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.members-section__role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.members-section__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.members-section__en-name {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.members-section__bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: left;
}

.members-section__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.members-section__tags li {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .members-hero {
    padding: 180px 48px 100px;
  }

  .members-hero__title {
    font-size: 3rem;
  }

  .members-section {
    padding: 80px 48px 140px;
  }

  .members-section__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .members-section__avatar-placeholder {
    width: 110px;
    height: 110px;
  }
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 120px 32px;
  background-color: #0a0a0f;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 50%, rgba(0, 200, 150, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(0, 200, 150, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.contact-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.contact-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.contact-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.contact-section__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-section__field--full {
  grid-column: 1 / -1;
  text-align: center;
}

.contact-section__field label,
.contact-section__checkbox-label {
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.75);
}

.contact-section__required {
  color: #e05c5c;
  font-weight: 700;
  margin-left: 2px;
}

.contact-section__field input,
.contact-section__field textarea,
.contact-section__field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.05);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-section__field input::placeholder,
.contact-section__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-section__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-section__field select option {
  background-color: #1a1a24;
  color: rgba(255, 255, 255, 0.85);
}

.contact-section__field input:focus,
.contact-section__field textarea:focus,
.contact-section__field select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.2);
}

.contact-section__field input.is-error,
.contact-section__field textarea.is-error,
.contact-section__field select.is-error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224, 92, 92, 0.2);
}

.contact-section__field textarea {
  height: 150px;
  resize: vertical;
  line-height: 1.7;
}

/* チェックボックス */
.contact-section__field--check {
  padding: 4px 0;
}

.contact-section__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.contact-section__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-error {
  font-size: 0.8rem;
  color: #e05c5c;
  margin-top: 2px;
}

.form-success {
  font-size: 0.9rem;
  color: var(--color-accent);
  background-color: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.25);
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-top: 8px;
  text-align: center;
}

.contact-section__submit {
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: var(--color-main);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}

.contact-section__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
}

.contact-section__submit:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.contact-section__submit:hover::before {
  animation: shimmerPass 0.65s ease forwards;
}

.contact-section__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 140px 48px;
  }
}

@media (max-width: 767px) {
  .contact-section__form {
    grid-template-columns: 1fr;
  }
}

/* === RESULTS SECTION === */
.results-section {
  padding: 120px 32px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 50%, rgba(0, 200, 150, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(0, 200, 150, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.results-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.results-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.results-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.results-section__stats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-bottom: 72px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.results-section__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 32px;
  background-color: #0a0a0f;
  text-align: center;
}

.results-section__num {
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.results-section__unit {
  font-size: 1.6rem;
  font-weight: 700;
}

.results-section__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .results-section {
    padding: 140px 48px;
  }

  .results-section__stats {
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }

  .results-section__num {
    font-size: 4.5rem;
  }
}

/* === CASES SECTION === */
.cases-section {
  padding: 120px 32px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.cases-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 50%, rgba(0, 200, 150, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(0, 200, 150, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.cases-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.cases-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.cases-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cases-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cases-section__item {
  padding: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cases-section__item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 200, 150, 0.45);
}

.cases-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.cases-section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.cases-section__industry {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.cases-section__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 28px;
}

.cases-section__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.cases-section__block-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.cases-section__block-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

.cases-section__result {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(0, 200, 150, 0.15);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.cases-section__result-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.cases-section__result-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.cases-section__result-text strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

@media (min-width: 768px) {
  .cases-section {
    padding: 140px 48px;
  }

  .cases-section__body {
    flex-direction: row;
    gap: 40px;
  }

  .cases-section__block {
    flex: 1;
  }
}

/* === NEWS SECTION === */
.news-section {
  padding: 120px 32px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 50%, rgba(0, 200, 150, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(0, 200, 150, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.news-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.news-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.news-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.news-section__list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.news-section__item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 24px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: background-color var(--transition);
  cursor: pointer;
}

.news-section__item:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.news-section__date {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.news-section__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.news-section__item a {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.news-section__title {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  width: 100%;
}

@media (min-width: 768px) {
  .news-section {
    padding: 140px 48px;
  }

  .news-section__item {
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
  }

  .news-section__title {
    width: auto;
    flex: 1;
  }
}

/* === FOOTER === */
.footer {
  background-color: #0a0a0a;
  color: rgba(255, 255, 255, 0.55);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.footer__logo {
  height: 68px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.footer__col-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer__col-label--gap {
  margin-top: 32px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.85rem;
  color: #aaaaaa;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 48px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 20px 48px;
  }
}


/* === CASES SECTION — 詳細リンク === */
.cases-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.cases-section__link::after {
  content: '→';
  transition: transform 0.2s;
}

.cases-section__link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.cases-section__link:hover::after {
  transform: translateX(4px);
}

/* 事例・ニュース 共通「もっと見る」ボタン（ヒーローCTAと同デザイン） */
.section-more-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: var(--color-main);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}

.section-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
}

.section-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.section-more-btn:hover::before {
  animation: shimmerPass 0.65s ease forwards;
}

.section-footer {
  margin-top: 56px;
  text-align: center;
}


/* === CASE DETAIL PAGES === */

/* ヒーロー */
.case-hero {
  padding: 160px 32px 80px;
  background-color: #0a0a0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.case-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.case-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.case-hero__back:hover {
  color: rgba(255, 255, 255, 0.75);
}

.case-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.case-hero__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 14px;
  border-radius: 100px;
}

.case-hero__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

/* 各セクション共通 */
.case-section {
  padding: 80px 32px;
  background-color: #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.case-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.case-section__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.case-section__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
}

/* 課題 */
.case-challenges__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-challenges__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.case-challenges__num {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.case-challenges__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
}

/* 支援内容（ステップ） */
.case-steps__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.case-steps__item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: flex-start;
}

.case-steps__item:first-child {
  padding-top: 0;
}

.case-steps__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-steps__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 5px 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

.case-steps__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
}

.case-steps__step-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.85;
}

/* 成果 */
.case-results__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}

.case-results__stat {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: center;
}

.case-results__num {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.case-results__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.case-results__table-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.case-results__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.case-results__table th,
.case-results__table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-results__table thead th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.case-results__table tbody td {
  color: rgba(255, 255, 255, 0.55);
}

.case-results__table tbody td:first-child {
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.case-results__table td.is-after {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* クライアントの声 */
.case-testimonial__quote {
  position: relative;
  padding: 44px 40px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.case-testimonial__quote::before {
  content: '"';
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: Georgia, serif;
  pointer-events: none;
}

.case-testimonial__text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 2;
  position: relative;
}

.case-testimonial__source {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  letter-spacing: 0.04em;
}

/* CTA */
.case-cta {
  padding: 100px 32px;
  background-color: #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.case-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.case-cta__lead {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.case-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 40px;
}

.case-cta__btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 16px 56px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 0.93rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background-color var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}

.case-cta__btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
}

.case-cta__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.case-cta__btn:hover::before {
  animation: shimmerPass 0.65s ease forwards;
}

@media (min-width: 768px) {
  .case-hero {
    padding: 180px 48px 100px;
  }

  .case-hero__title {
    font-size: 2.6rem;
  }

  .case-section {
    padding: 100px 48px;
  }

  .case-results__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .case-results__table th,
  .case-results__table td {
    padding: 14px 20px;
  }
}

/* === SERVICE CARD LINK (index.html) === */
.services-section__item {
  position: relative;
}

.services-section__card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* === SERVICE PAGES === */

/* --- Service Hero --- */
.service-hero {
  padding: 160px 32px 100px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 5% 50%, rgba(0, 200, 150, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 95% 20%, rgba(0, 200, 150, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.service-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.service-hero__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  line-height: 1.3;
}

.service-hero__catch {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .service-hero {
    padding: 180px 48px 120px;
  }

  .service-hero__title {
    font-size: 3rem;
  }
}

/* --- Service Overview --- */
.service-overview-section {
  padding: 100px 32px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.service-overview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 90% 20%, rgba(0, 200, 150, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 10% 80%, rgba(0, 200, 150, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.service-overview-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-overview-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.service-overview-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.service-overview-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-overview-section__card {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-overview-section__card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 200, 150, 0.45);
  transform: translateY(-4px);
}

.service-overview-section__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.service-overview-section__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}

.service-overview-section__card-text {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
}

@media (min-width: 768px) {
  .service-overview-section {
    padding: 120px 48px;
  }

  .service-overview-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Service Steps --- */
.service-steps-section {
  padding: 100px 32px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.service-steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 50%, rgba(0, 200, 150, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(0, 200, 150, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.service-steps-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-steps-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.service-steps-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.service-steps-section__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-steps-section__item {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-steps-section__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 200, 150, 0.45);
}

.service-steps-section__num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
  letter-spacing: 0.04em;
}

.service-steps-section__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.service-steps-section__step-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

@media (min-width: 768px) {
  .service-steps-section {
    padding: 120px 48px;
  }

  .service-steps-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Service Recommend --- */
.service-recommend-section {
  padding: 100px 32px;
  background-color: #0d0d12;
  position: relative;
  overflow: hidden;
}

.service-recommend-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-recommend-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.service-recommend-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.service-recommend-section__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-recommend-section__item {
  padding: 36px 32px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: background 0.3s ease, border-color 0.3s ease, transform var(--transition);
}

.service-recommend-section__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 200, 150, 0.45);
  transform: translateY(-4px);
}

.service-recommend-section__check {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.service-recommend-section__text {
  font-size: 0.97rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 10px;
}

.service-recommend-section__sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .service-recommend-section {
    padding: 120px 48px;
  }

  .service-recommend-section__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Service Cases --- */
.service-cases-section {
  padding: 100px 32px;
  background-color: #0a0a0f;
}

.service-cases-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-cases-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.service-cases-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.service-cases-section__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.service-cases-section__stat {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.service-cases-section__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.service-cases-section__unit {
  font-size: 1rem;
}

.service-cases-section__stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}

.service-cases-section__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-cases-section__item {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.service-cases-section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.service-cases-section__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.service-cases-section__item-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

.service-cases-section__result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: var(--color-accent);
  font-weight: 500;
}

@media (min-width: 768px) {
  .service-cases-section {
    padding: 120px 48px;
  }

  .service-cases-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Service CTA --- */
.service-cta-section {
  padding: 100px 32px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 50%, rgba(0, 200, 150, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(0, 200, 150, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.service-cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-cta-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  line-height: 1.4;
}

.service-cta-section__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
  line-height: 1.9;
}

.service-cta-section__btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 18px 56px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: background-color var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}

.service-cta-section__btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
}

.service-cta-section__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.service-cta-section__btn:hover::before {
  animation: shimmerPass 0.65s ease forwards;
}

@media (min-width: 768px) {
  .service-cta-section {
    padding: 120px 48px;
  }

  .service-cta-section__title {
    font-size: 2rem;
  }
}


/* === NEWS ARTICLE === */
.news-article p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
  margin-bottom: 24px;
}

.news-article h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid rgba(255, 255, 255, 0.25);
}

.news-article__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-left: 8px;
}

.news-article__list li {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.news-article__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}


/* === NEWS LIST PAGE — フィルタータブ === */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.news-filter__btn {
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.news-filter__btn:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
}

.news-filter__btn.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.news-list-section {
  padding: 40px 32px 120px;
  background-color: #0a0a0f;
}

.news-list-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.news-list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.news-list__item.is-hidden {
  display: none;
}

.news-list__item a {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 22px 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.news-list__item a:hover {
  background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .news-list-section {
    padding: 40px 48px 140px;
  }
}

/* === ABOUT PAGE === */

/* ヒーロー */
.about-page-hero {
  padding: 160px 32px 80px;
  background-color: #0a0a0f;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 5% 50%, rgba(21, 92, 89, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 95% 20%, rgba(21, 92, 89, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-page-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-page-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.about-page-hero__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .about-page-hero {
    padding: 180px 48px 100px;
  }
}

/* 会社概要セクション */
.company-section {
  padding: 80px 32px 120px;
  background-color: #0a0a0f;
}

.company-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.company-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.company-section__col {
  display: flex;
  flex-direction: column;
}

.company-section__item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #333333;
}

.company-section__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.company-section__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.company-section__value {
  font-size: 1rem;
  color: var(--color-main);
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.company-section__value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 768px) {
  .company-section {
    padding: 100px 48px 140px;
  }

  .company-section__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
  }
}


/* === RECRUIT PAGE === */

/* --- Recruit Hero --- */
.recruit-hero {
  padding: 160px 32px 100px;
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.recruit-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 5% 50%, rgba(0, 200, 150, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 95% 20%, rgba(0, 200, 150, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.recruit-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.recruit-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.recruit-hero__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  line-height: 1.25;
}

.recruit-hero__catch {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  letter-spacing: 0.04em;
  max-width: 560px;
}

@media (min-width: 768px) {
  .recruit-hero {
    padding: 200px 48px 130px;
  }
  .recruit-hero__title {
    font-size: 3.4rem;
  }
}

/* --- Recruit Message --- */
.recruit-message-section {
  padding: 100px 32px;
  background-color: #111115;
}

.recruit-message-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-message-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.recruit-message-section__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.recruit-message-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 32px;
  line-height: 1.4;
}

.recruit-message-section__body {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2.1;
}

.recruit-message-section__body p + p {
  margin-top: 20px;
}

.recruit-message-section__byline {
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

.recruit-message-section__byline strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.recruit-message-section__visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.recruit-message-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .recruit-message-section {
    padding: 120px 48px;
  }
  .recruit-message-section__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
}

/* --- Recruit Persona --- */
.recruit-persona-section {
  padding: 100px 32px;
  background-color: #0d0d12;
  position: relative;
  overflow: hidden;
}

.recruit-persona-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 92% 50%, rgba(0, 200, 150, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 8% 20%, rgba(0, 200, 150, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.recruit-persona-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.recruit-persona-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.recruit-persona-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.recruit-persona-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .recruit-persona-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.recruit-persona-section__card {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.recruit-persona-section__card:hover {
  border-color: var(--color-accent);
  background: rgba(0, 200, 150, 0.04);
  transform: translateY(-4px);
}

.recruit-persona-section__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}

.recruit-persona-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 14px;
}

.recruit-persona-section__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
}

@media (min-width: 768px) {
  .recruit-persona-section {
    padding: 120px 48px;
  }
  .recruit-persona-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Recruit Jobs --- */
.recruit-jobs-section {
  padding: 100px 32px;
  background-color: #0a0a0f;
}

.recruit-jobs-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-jobs-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.recruit-jobs-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

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

.recruit-jobs-section__card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.recruit-jobs-section__card:hover {
  border-color: var(--color-accent);
  background: rgba(0, 200, 150, 0.04);
}

.recruit-jobs-section__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.recruit-jobs-section__card-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recruit-jobs-section__card-row {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 12px;
}

.recruit-jobs-section__card-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  padding-top: 3px;
}

.recruit-jobs-section__card-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .recruit-jobs-section {
    padding: 120px 48px;
  }
  .recruit-jobs-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Recruit Flow --- */
.recruit-flow-section {
  padding: 100px 32px;
  background-color: #111115;
}

.recruit-flow-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-flow-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.recruit-flow-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.recruit-flow-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recruit-flow-section__item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.recruit-flow-section__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 68px;
  width: 2px;
  height: calc(100% - 36px);
  background: linear-gradient(to bottom, rgba(0, 200, 150, 0.5), rgba(0, 200, 150, 0.1));
}

.recruit-flow-section__step {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  background-color: #111115;
  position: relative;
  z-index: 1;
}

.recruit-flow-section__content {
  padding-top: 10px;
}

.recruit-flow-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 8px;
}

.recruit-flow-section__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .recruit-flow-section {
    padding: 120px 48px;
  }

  .recruit-flow-section__list {
    flex-direction: row;
    position: relative;
  }

  .recruit-flow-section__list::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent), rgba(0, 200, 150, 0.2));
  }

  .recruit-flow-section__item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }

  .recruit-flow-section__item:not(:last-child)::after {
    display: none;
  }

  .recruit-flow-section__content {
    padding-top: 20px;
  }
}

/* --- Recruit Benefits --- */
.recruit-benefits-section {
  padding: 100px 32px;
  background-color: #0a0a0f;
}

.recruit-benefits-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-benefits-section .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.recruit-benefits-section .section-lead {
  color: rgba(255, 255, 255, 0.48);
}

.recruit-benefits-section__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.recruit-benefits-section__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.recruit-benefits-section__item:hover {
  border-color: rgba(0, 200, 150, 0.3);
}

.recruit-benefits-section__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.recruit-benefits-section__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.recruit-benefits-section__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .recruit-benefits-section {
    padding: 120px 48px;
  }
  .recruit-benefits-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
