/* ===============================
   共通: 変数・ベーススタイル
   =============================== */

:root {
  --primary-color: #8AB3DD;
  --secondary-color: #4B7BAF;
  --accent-color: #6B9FD1;
  --background-color: #F4F8FC;
  --text-color: #333333;
  --text-light-color: #666666;
  --white-color: #FFFFFF;
  --border-color: #E0E8F0;
  --shadow-color: rgba(75, 123, 175, 0.1);

  --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-width: 1200px;
  --card-radius: 16px;
  --button-radius: 8px;
  --section-padding: 5rem 1.5rem;
  --gap: 2rem;

  --transition: 0.3s ease-in-out;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
  font-size: 16px;
}

/* ===============================
   共通: ボタン・カード・レイアウト
   =============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--button-radius);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  gap: 0.5rem;
}

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

.btn.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

.btn.btn-secondary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn.btn-secondary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

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

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

.btn.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:disabled:hover {
  transform: none;
}

.card {
  background: var(--white-color);
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

section {
  padding: var(--section-padding);
}

section.section-alt {
  background: linear-gradient(135deg, #F4F8FC 0%, #E8F1FA 100%);
}

section .section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
}

section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
}

section .section-subtitle {
  text-align: center;
  color: var(--text-light-color);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 768px) {
  .grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

/* 固定CTAボタン */

.fixed-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 767px) {
  .fixed-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .fixed-cta .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
  }
}

/* アイコンフォント（Google Material Symbols） */

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

/* スマホ時のセクション間隔 */

@media (max-width: 767px) {
  :root {
    --section-padding: 3rem 1.5rem;
  }

  section .section-title {
    font-size: 1.75rem;
  }
}

/* ===============================
   ヒーロー・共通ページヘッダー
   =============================== */

/* トップページ Hero */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(138, 179, 221, 0.1) 0%, rgba(75, 123, 175, 0.1) 100%);
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/Image.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}

#hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

#hero .hero-content::before {
  content: "";
  position: absolute;
  inset: -28px -36px;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(26px);
  z-index: -1;
  border-radius: 24px;
}

#hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 767px) {
  #hero .hero-title {
    font-size: 2rem;
  }
}

#hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light-color);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  #hero .hero-subtitle {
    font-size: 1rem;
  }
}

#hero .hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

#hero .hero-cta .btn {
  min-width: 200px;
}

#hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light-color);
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

#hero .scroll-indicator .material-symbols-outlined {
  font-size: 32px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* 汎用ページヘッダー（service / clients / recruit / company） */

.page-hero {
  background: linear-gradient(135deg, rgba(138, 179, 221, 0.1) 0%, rgba(75, 123, 175, 0.1) 100%);
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .wrapper {
  max-width: 900px;
}

.page-hero-inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/DSC02537.JPG');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.35;
  z-index: 0;
}

#service-hero .page-hero-inner::before {
  content: "";
  position: absolute;
  inset: -28px -36px;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(26px);
  z-index: -1;
  border-radius: 24px;
}


.page-label {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-color);
  margin-bottom: 0.75rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.page-lead {
  font-size: 1.125rem;
  color: var(--text-light-color);
  line-height: 1.8;
}

@media (max-width: 767px) {
  .page-title {
    font-size: 2rem;
  }
  .page-lead {
    font-size: 1rem;
  }
}

/* 個別：clients / recruit 旧構造もサポート */

#clients-hero {
  background: linear-gradient(135deg, rgba(138, 179, 221, 0.1) 0%, rgba(75, 123, 175, 0.1) 100%);
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#clients-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/ビル.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.35;
  z-index: 0;
}

#clients-hero .hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

#clients-hero .hero-content::before {
  content: "";
  position: absolute;
  inset: -28px -36px;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(26px);
  z-index: -1;
  border-radius: 24px;
}

#clients-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  #clients-hero .hero-title {
    font-size: 1.75rem;
  }
}

#clients-hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light-color);
  line-height: 1.8;
}

@media (max-width: 767px) {
  #clients-hero .hero-subtitle {
    font-size: 1rem;
  }
}

#recruit-hero {
  background: linear-gradient(135deg, rgba(138, 179, 221, 0.1) 0%, rgba(75, 123, 175, 0.1) 100%);
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#recruit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/DSC02532.JPG');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

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

#recruit-hero .hero-content::before {
  content: "";
  position: absolute;
  inset: -28px -36px;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(26px);
  z-index: -1;
  border-radius: 24px;
}

#recruit-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  #recruit-hero .hero-title {
    font-size: 1.75rem;
  }
}

#recruit-hero .hero-lead {
  font-size: 1.25rem;
  color: var(--text-light-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  #recruit-hero .hero-lead {
    font-size: 1rem;
  }
}

#recruit-hero .hero-note {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(138, 179, 221, 0.1);
  border-radius: var(--button-radius);
  border: 2px solid var(--primary-color);
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 1rem;
}

/* ===============================
   トップページ：特徴・CTA
   =============================== */

#features {
  background-color: var(--white-color);
}

#features .features-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

#features .feature-card {
  background: var(--white-color);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--transition);
  text-align: center;
  border-top: 4px solid var(--primary-color);
}

#features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

#features .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#features .feature-card .feature-icon .material-symbols-outlined {
  font-size: 40px;
  color: var(--white-color);
  font-variation-settings: 'FILL' 1, 'wght' 300;
}

#features .feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

#features .feature-card p {
  color: var(--text-light-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

#features .feature-card .feature-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

#features .feature-card .feature-terms {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light-color);
  line-height: 1.6;
}

#features .feature-card .feature-terms p + p {
  margin-top: 0.4rem;
}

#features .feature-card .feature-details .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-color);
}

#features .feature-card .feature-details .detail-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--primary-color);
}

/* トップページ CTA セクション */

#index-cta {
  background: linear-gradient(135deg, #F4F8FC 0%, #E8F1FA 100%);
}

#index-cta .cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

#index-cta .cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

@media (max-width: 767px) {
  #index-cta .cta-title {
    font-size: 1.75rem;
  }
}

#index-cta .cta-description {
  font-size: 1.125rem;
  color: var(--text-light-color);
  margin-bottom: 3rem;
  line-height: 1.8;
}

#index-cta .cta-buttons {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  #index-cta .cta-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

#index-cta .cta-box {
  background: var(--white-color);
  border-radius: var(--card-radius);
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--transition);
}

#index-cta .cta-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

#index-cta .cta-box .cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#index-cta .cta-box .cta-icon .material-symbols-outlined {
  font-size: 40px;
  color: var(--white-color);
  font-variation-settings: 'FILL' 1, 'wght' 300;
}

#index-cta .cta-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

#index-cta .cta-box p {
  color: var(--text-light-color);
  margin-bottom: 2rem;
  line-height: 1.8;
}

#index-cta .cta-box .btn {
  width: 100%;
}

/* ===============================
   Service ページ（新レイアウト対応）
   =============================== */

/* 汎用セクションラッパー（service.html用） */

.service-section {
  background: var(--white-color);
}

.service-section.service-points {
  background: var(--white-color);
}

.service-section.service-areas {
  background: var(--background-color);
}

/* service.html - 特徴カード */

.service-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.service-grid .feature-card {
  background: var(--white-color);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--transition);
  border-top: 4px solid var(--primary-color);
}

.service-grid .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

.service-grid .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-grid .feature-icon .material-symbols-outlined {
  font-size: 32px;
  color: var(--white-color);
  font-variation-settings: 'FILL' 1;
}

.service-grid .feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.service-grid .feature-card p {
  color: var(--text-light-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-grid .feature-list {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-color);
}

/* service.html - 対応領域カード */

.areas-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.area-card {
  background: var(--white-color);
  border-radius: var(--card-radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--transition);
  border-left: 4px solid var(--primary-color);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.area-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.area-icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--white-color);
  font-variation-settings: 'FILL' 1;
}

.area-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.area-card p {
  color: var(--text-light-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.area-list {
  font-size: 0.95rem;
  color: var(--text-color);
}

/* service.html - CTA */

.service-cta {
  background: var(--white-color);
}

.service-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--card-radius);
  padding: 3rem 2rem;
  box-shadow: 0 8px 30px var(--shadow-color);
  color: var(--white-color);
}

.service-cta-inner .section-title {
  color: var(--white-color);
}

.service-cta-inner .section-title::after {
  background-color: var(--white-color);
}

.service-cta-inner .section-subtitle {
  color: #E5E7EB;
}

.service-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-cta-buttons .btn {
  min-width: 220px;
}

.service-cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ===============================
   clients セクション（課題・KPI・解決）
   =============================== */

#clients-problems {
  background: var(--background-color);
  color: var(--text-color);
}

#clients-problems .problems-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  #clients-problems .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#clients-problems .problem-card {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 45%),
              linear-gradient(180deg, #6f8fbf 0%, #94adda 100%);
  border-radius: var(--card-radius);
  padding: 2rem;
  border: 1px solid rgba(148, 173, 218, 0.6);
  border-left: 4px solid #94adda;
  transition: all var(--transition);
}

#clients-problems .problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
}

#clients-problems .problem-card .problem-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #edf4ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
}

#clients-problems .problem-card .problem-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

#clients-problems .problem-card .problem-description {
  color: #eef4ff;
  line-height: 1.8;
}

/* KPI */

#clients-kpi {
  background: var(--white-color);
}

#clients-kpi .kpi-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  #clients-kpi .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#clients-kpi .kpi-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border-radius: var(--card-radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

#clients-kpi .kpi-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

#clients-kpi .kpi-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px var(--shadow-color);
}

#clients-kpi .kpi-card .kpi-content {
  position: relative;
  z-index: 1;
}

#clients-kpi .kpi-card .kpi-value {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (max-width: 767px) {
  #clients-kpi .kpi-card .kpi-value {
    font-size: 2.5rem;
  }
}

#clients-kpi .kpi-card .kpi-label {
  font-size: 1.125rem;
  opacity: 0.95;
  font-weight: 500;
}

#clients-kpi .kpi-card .kpi-description {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.85;
  line-height: 1.6;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 解決セクション */

#clients-solutions {
  background: linear-gradient(135deg, #F4F8FC 0%, #E8F1FA 100%);
}

#clients-solutions .solutions-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  #clients-solutions .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

#clients-solutions .solution-card {
  background: var(--white-color);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition);
}

#clients-solutions .solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

#clients-solutions .solution-card .solution-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

#clients-solutions .solution-card .solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

#clients-solutions .solution-card .solution-description {
  color: var(--text-light-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

#clients-solutions .solution-card .solution-terms {
  font-size: 0.85rem;
  color: var(--text-light-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#clients-solutions .solution-card .solution-terms p + p {
  margin-top: 0.4rem;
}

#clients-solutions .solution-card .solution-details {
  background: linear-gradient(135deg, #F4F8FC 0%, #E8F1FA 100%);
  padding: 1.5rem;
  border-radius: 12px;
}

#clients-solutions .solution-card .solution-details ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

#clients-solutions .solution-card .solution-details ul li:last-child {
  margin-bottom: 0;
}

#clients-solutions .solution-card .solution-details ul li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* clients CTA（問い合わせボックス） */

#clients-cta {
  background: linear-gradient(135deg, #F4F8FC 0%, #E8F1FA 100%);
}

#clients-cta .cta-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white-color);
  border-radius: var(--card-radius);
  padding: 4rem 3rem;
  box-shadow: 0 8px 30px var(--shadow-color);
  text-align: center;
}

@media (max-width: 767px) {
  #clients-cta .cta-container {
    padding: 3rem 2rem;
  }
}

#clients-cta .cta-container .cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  #clients-cta .cta-container .cta-title {
    font-size: 1.5rem;
  }
}

#clients-cta .cta-container .cta-description {
  font-size: 1.125rem;
  color: var(--text-light-color);
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
}

#clients-cta .cta-container .cta-note {
  font-size: 0.875rem;
  color: var(--text-light-color);
  line-height: 1.6;
}

#clients-cta .cta-container .cta-actions {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

/* 企業向けフォーム */
.clients-form-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.12);
  border: 1px solid #e2e8f0;
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: left;
}

.clients-form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.clients-form-header p {
  color: #5f6368;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.clients-form-header ul {
  margin-left: 1.25rem;
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.clients-form {
  display: grid;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #fdfdfd;
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 1.25rem 1.1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.form-group label,
.form-group p {
  font-weight: 600;
  color: #3c4043;
}

.required {
  color: #E7502E;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 1rem;
  color: #3c4043;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(75, 123, 175, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-group select {
  background-image: linear-gradient(45deg, transparent 50%, var(--secondary-color) 50%), linear-gradient(135deg, var(--secondary-color) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.form-group.form-privacy {
  gap: 0.25rem;
}

.form-group .radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1rem;
  font-weight: 500;
}

.privacy-link-note {
  font-size: 0.9rem;
  color: #5f6368;
}

.privacy-consent-note {
  font-size: 0.95rem;
  color: #3c4043;
  line-height: 1.6;
}

.required-hint {
  font-size: 0.9rem;
  color: #d93025;
  margin-bottom: 0.75rem;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.clients-form .btn {
  min-width: 160px;
}

.form-section {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.checkbox-list {
  display: grid;
  gap: 0.35rem;
  padding-left: 0.1rem;
}

.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: #3c4043;
  cursor: pointer;
  user-select: none;
}

.checkbox-list input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #CBD5E1;
  background-color: #FFFFFF;
  border-radius: 4px;
  appearance: none;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.checkbox-list input[type="checkbox"]::after {
  content: "";
  width: 12px;
  height: 8px;
  border-left: 2.5px solid #1e3a8a;
  border-bottom: 2.5px solid #1e3a8a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.checkbox-list input[type="checkbox"]:checked {
  border-color: #4B7BAF;
  background-color: #EAF2FB;
  box-shadow: inset 0 0 0 2px rgba(75, 123, 175, 0.35);
}

.checkbox-list input[type="checkbox"]:checked::after {
  opacity: 1;
}

body[data-page="contact"] .privacy-section {
  padding-top: 4.5rem;
  padding-bottom: 6rem;
}

.skills-note {
  font-size: 0.9rem;
  color: #5f6368;
  margin-top: 0.25rem;
}

.form-alert {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.form-alert.success {
  background: rgba(75, 123, 175, 0.08);
  color: #1e3a8a;
  border: 1px solid rgba(75, 123, 175, 0.25);
}

.form-alert.show {
  display: block;
}
.form-alert {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.form-alert.success {
  background: rgba(75, 123, 175, 0.08);
  color: #1e3a8a;
  border: 1px solid rgba(75, 123, 175, 0.25);
}

.form-alert.show {
  display: block;
}

.form-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.form-modal.show {
  display: flex;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.form-modal-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  max-width: 420px;
  width: calc(100% - 2.5rem);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
  text-align: center;
}

.form-modal-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.form-modal-card p {
  color: #3c4043;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.form-modal-close {
  min-width: 120px;
}

@media (max-width: 768px) {
  .clients-form-card {
    padding: 2rem 1.5rem;
  }
  .form-actions {
    justify-content: center;
  }
}

/* ===============================
   Recruit：募集ポジションカード
   =============================== */

#recruit-positions {
  background: var(--white-color);
  padding: 4.5rem 1.5rem 5rem;
}

#recruit-positions .positions-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

#recruit-positions .positions-intro p {
  font-size: 1.125rem;
  color: var(--text-light-color);
  line-height: 1.8;
}

#recruit-positions .positions-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  #recruit-positions .positions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

#recruit-positions .position-card {
  background: linear-gradient(135deg, #F4F8FC 0%, #E8F1FA 100%);
  border-radius: var(--card-radius);
  padding: 3rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all var(--transition);
}

#recruit-positions .position-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-color);
  border-color: var(--primary-color);
}

#recruit-positions .position-card .position-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

#recruit-positions .position-card .position-header .position-type {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

#recruit-positions .position-card .position-header .position-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

#recruit-positions .position-card .position-header .position-subtitle {
  color: var(--text-light-color);
  font-size: 1rem;
}

#recruit-positions .position-card .position-content .content-section {
  margin-bottom: 2rem;
}

#recruit-positions .position-card .position-content .content-section:last-child {
  margin-bottom: 0;
}

#recruit-positions .position-card .position-content .content-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#recruit-positions .position-card .position-content .content-section h4 .material-symbols-outlined {
  font-size: 24px;
  color: var(--primary-color);
}

#recruit-positions .position-card .position-content .content-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  line-height: 1.7;
}

#recruit-positions .position-card .position-content .content-section ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

#recruit-positions .position-card .position-content .content-section p {
  color: var(--text-light-color);
  line-height: 1.8;
}

#recruit-positions .position-card .position-cta {
  margin-top: 2.5rem;
  text-align: center;
}

#recruit-positions .position-card .position-cta .btn {
  width: 100%;
  max-width: 100%;
}

/* ===============================
   Company（会社情報）タブ & 本文
   =============================== */

/* ページ全体 */

#company-page {
  background: linear-gradient(135deg, rgba(138, 179, 221, 0.1) 0%, rgba(75, 123, 175, 0.1) 100%);
  padding: 0 1.5rem 5rem;
}

#company-page .wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Hero（ページ見出し） */

.yt-company-hero {
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.yt-company-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.yt-company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/会社情報.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.9;
  z-index: 0;
}

.yt-company-hero-inner::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(24px);
  z-index: -1;
}

.yt-company-hero-eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-color);
  margin-bottom: 0.75rem;
}

.yt-company-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
  .yt-company-hero-title {
    font-size: 2rem;
  }
}

.yt-company-hero-lead {
  font-size: 1.125rem;
  color: var(--text-light-color);
  line-height: 1.8;
}

/* タブナビゲーション */

.company-tabs {
  margin-top: 3rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2.5rem 3rem;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

.company-tabs .tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.company-tabs .tab-button {
  flex: 0 0 auto;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--white-color);
  font-size: 0.95rem;
  color: var(--text-color);
  transition: all var(--transition);
  cursor: pointer;
}

.company-tabs .tab-button.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 8px 24px var(--shadow-color);
}

.company-tabs .tab-button:hover:not(.is-active) {
  border-color: var(--primary-color);
  background: #f4f8fc;
}

/* タブコンテンツ */

.company-tabs .tab-panels {
  margin-top: 1rem;
}

.company-section {
  background: var(--white-color);
  border-radius: var(--card-radius);
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2.25rem 2.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .company-section {
    padding: 2rem 1.5rem;
  }
}

.company-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* 会社概要テーブル */

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.company-table tr {
  border-bottom: 1px dashed var(--border-color);
}

.company-table tr:last-child {
  border-bottom: none;
}

.company-table th,
.company-table td {
  padding: 0.75rem 0;
  vertical-align: top;
}

.company-table th {
  width: 8rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.company-table td {
  color: var(--text-color);
  line-height: 1.8;
}

/* テキスト共通 */

.company-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
}

.company-text + .company-text {
  margin-top: 1rem;
}

.company-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary-color);
  background: #f4f8fc;
  color: var(--secondary-color);
  font-weight: 600;
}

/* 派遣法23条 情報公開リスト */

.company-disclosure-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.company-disclosure-list li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.95rem;
  line-height: 1.8;
}

.company-disclosure-list li:last-child {
  border-bottom: none;
}

.company-disclosure-list strong {
  font-weight: 600;
  color: var(--secondary-color);
}

/* 代表挨拶：写真＋文章 横並び */

.company-message {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

/* 縦長写真フレーム */

.company-message-photo {
  flex: 0 0 260px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.company-message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-message-body {
  flex: 1;
}

.company-message-name {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

/* スマホ表示（縦並び） */

@media (max-width: 767px) {
  .company-message {
    flex-direction: column;
  }
  .company-message-photo {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    height: 360px;
  }
}

/* ============================
   ヘッダー（共通）
   ============================ */

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.header-wrapper.scrolled {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  border-bottom-color: transparent;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ロゴ */

.header-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  height: 46px;
  width: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* PCナビ */

.header-nav.pc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav-link {
  position: relative;
  font-size: 0.95rem;
  color: #374151;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.header-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #4B7BAF;
  transition: width 0.2s ease;
}

.header-nav-link:hover {
  color: #1F2937;
}

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

/* 現在ページ */

.header-nav-link.active {
  color: #1F2937;
  font-weight: 700;
}

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

/* ハンバーガー（SP） */

.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger span.open:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.hamburger span.open:nth-child(2) {
  opacity: 0;
}

.hamburger span.open:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* SP ナビ */

.sp-nav {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
}

.sp-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #374151;
  text-decoration: none;
  border-top: 1px solid #F3F4F6;
}

.sp-nav-link.active {
  background: #EFF6FF;
  color: #1D4ED8;
}

/* レスポンシブ切り替え */

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
  }

  .header-nav.pc-nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .sp-nav {
    display: block;
  }
}

/* ============================
   フッター（共通）
   ============================ */

.yt-footer {
  background: radial-gradient(circle at 20% 20%, rgba(138, 179, 221, 0.08), transparent 25%),
              radial-gradient(circle at 80% 30%, rgba(75, 123, 175, 0.1), transparent 30%),
              linear-gradient(135deg, #0f172a 0%, #111827 40%, #0b1224 100%);
  color: #F9FAFB;
  padding: 56px 16px 28px;
  margin-top: 80px;
  font-size: 0.95rem;
}

.yt-footer a {
  color: #E5E7EB;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.yt-footer a:hover {
  color: #FFFFFF;
  opacity: 0.9;
}

.yt-footer-inner {
  max-width: 1080px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-brand {
  text-align: left;
}

.yt-footer .footer-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #F9FAFB;
}

.yt-footer .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yt-footer .footer-section li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-brand .footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-desc {
  color: #E5E7EB;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-section.footer-contact ul {
  list-style: none;
}

.footer-section.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section.footer-contact {
  position: relative;
  padding-bottom: 44px;
}

.footer-top-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer-section.footer-contact .material-symbols-outlined {
  font-size: 18px;
  color: #8AB3DD;
}

/* ボトムバー */

.yt-footer .footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(249, 250, 251, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.yt-footer .footer-bottom p {
  margin: 0;
}

.yt-footer .footer-bottom a {
  font-size: 0.85rem;
}

.footer-top {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

/* フッター レスポンシブ */

@media (max-width: 768px) {
  .yt-footer {
    padding: 40px 16px 24px;
  }

  .yt-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .yt-footer .footer-section h3 {
    margin-bottom: 8px;
  }

  .yt-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===============================
   プライバシーポリシー
   =============================== */

.privacy-hero {
  background: linear-gradient(135deg, rgba(138, 179, 221, 0.15) 0%, rgba(75, 123, 175, 0.12) 100%);
  padding: 7rem 1.5rem 4rem;
}

.breadcrumb-section {
  background: #f4f6f9;
  padding: 0.75rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-light-color);
}

.breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb .separator {
  color: #9ca3af;
}

.breadcrumb .current {
  color: var(--text-light-color);
}

.privacy-section {
  background: var(--background-color);
  padding: 3.5rem 1.5rem 4.5rem;
}

.privacy-card {
  background: var(--white-color);
  border-radius: var(--card-radius);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
  border: 1px solid var(--border-color);
}

.privacy-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.privacy-card p {
  line-height: 1.8;
  color: var(--text-color);
}

.privacy-card ul {
  margin: 0.5rem 0 0.5rem 1.25rem;
  line-height: 1.8;
  color: var(--text-color);
}

.privacy-intro {
  margin-bottom: 1.5rem;
}

.privacy-block + .privacy-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.privacy-note {
  font-size: 0.95rem;
  color: var(--text-light-color);
}

.privacy-meta {
  margin-top: 2rem;
  line-height: 1.8;
}

.privacy-meta a {
  color: var(--secondary-color);
  text-decoration: none;
}

.privacy-updated {
  margin-top: 0.75rem;
  color: var(--text-light-color);
}

.privacy-company {
  font-weight: 700;
  margin-top: 0.25rem;
}

@media (max-width: 767px) {
  .privacy-card {
    padding: 2rem 1.75rem;
  }
}
/* 企業向けお問い合わせフォーム埋め込み */
.clients-form-embed {
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 1.5rem;
  margin-top: 2rem;
}

.clients-form-embed iframe {
  width: 100%;
  border: none;
}

/* スマホ最適化 */
@media (max-width: 767px) {
  .clients-form-embed {
    padding: 1rem;
  }
}
/* 企業フォーム埋め込み用 */
.clients-form-embed {
  margin-top: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  padding: 0;
  overflow: hidden;
}

/* スマホで上下の余白だけ少し調整したい場合 */
@media (max-width: 767px) {
  #clients-cta .cta-container {
    padding-bottom: 2rem;
  }
}
/* ============================
   社員の声（採用ページ）
   ============================ */

.recruit-voices {
  background: #F4F8FC; /* 正社員/派遣カードとトーンを合わせる */
  padding: 5rem 1.5rem 3.5rem;
}

.recruit-voices .wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

.recruit-voices-header {
  text-align: center;
  margin-bottom: 3rem;
}

.recruit-voices-header .section-label {
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light-color);
  margin-bottom: 0.75rem;
}

.recruit-voices-grid {
  display: grid;
  gap: 1.75rem;
}

/* PC では横幅広めのカード感を出す */
@media (min-width: 768px) {
  .recruit-voices-grid {
    grid-template-columns: 1fr;
  }
}

.voice-card {
  background: linear-gradient(135deg, #F4F8FC 0%, #E8F1FA 100%);
  border-radius: var(--card-radius);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.voice-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.voice-text {
  font-size: 0.975rem;
  line-height: 1.9;
  color: var(--text-color);
}

.voice-text + .voice-text {
  margin-top: 0.75rem;
}
