* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Osaka", "Yu Gothic UI", "Courier New", monospace;
  line-height: 1.6;
  color: #333;
  padding-top: 70px; /* 固定ヘッダーの高さ分のスペースを確保 */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  /* ヘッダーを固定位置に設定 */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

/* スクロール時のヘッダーに影を追加 */
.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #1c4c9e;
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 5px;
}

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

.nav-link.active {
  color: #d71a0d;
  border-bottom: 2px solid #d71a0d;
}

/* Hero Section */
.hero {
  position: relative;
  background: #f8f9fa;
  height: 100vh;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 18px;
  line-height: 1.8;
  color: white;
  margin-bottom: 20px;
  font-weight: normal;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  background: yellow;
  color: #333;
  padding: 10px 20px;
  display: inline-block;
  font-size: 14px;
  border-radius: 4px;
}

/* Company Info Section */
.company-info {
  /* 画像に合わせて青いグラデーションの色味を調整 */
  background: linear-gradient(180deg, #1e3a8a 0%, #0ea5e9 100%);
  color: white;
  padding: 80px 0;
}

.company-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.company-text {
  flex: 1;
}

.company-image {
  flex: 0 0 400px;
}

/* スクロール演出スタイルを削除し、slick.js用スタイルに変更 */
/* company-sliderを16:9の比率に変更 */
.company-slider {
  height: 225px; /* 16:9の比率: 400px × 9 ÷ 16 = 225px */
  max-width: 400px;
  width: 100%;
  aspect-ratio: 16 / 9; /* 16:9の比率を明示的に指定 */
}

.company-slider .slick-slide {
  height: 225px; /* 16:9の比率に合わせて高さを変更 */
  width: 400px !important;
  aspect-ratio: 16 / 9;
}

.company-slider .slick-list {
  height: 225px; /* 16:9の比率に合わせて高さを変更 */
}

.company-slider .slick-track {
  height: 225px; /* 16:9の比率に合わせて高さを変更 */
}

/* Hide slick navigation elements for company slider */
.company-slider .slick-prev,
.company-slider .slick-next,
.company-slider .slick-dots {
  display: none !important;
}

.company-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*   border-radius: 8px; */
}

.section-title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: bold;
}

.company-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.company-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.company-highlight p {
  margin-bottom: 0;
  font-weight: bold;
}

/* Instruction Section */
.instruction-section {
  position: relative;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.instruction-static-image {
  width: 100%;
  object-fit: cover;
  display: block;
}


.instruction-image-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  width: 200%;
  height: 100%;
  animation: scroll-horizontal 30s linear infinite;
}

.scroll-image {
  width: 50%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.instruction-text {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  /* テキストを白色に変更して動画背景で見えるように */
  color: white;
  /* 黒いテキストシャドウに変更して可読性向上 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 20px;
}

/* Company Details */
.company-details {
  padding: 80px 0;
  background: white;
  color: #1c4c9e;
}

.section-title-center {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #1c4c9e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title-center::before,
.section-title-center::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #1c4c9e;
  margin: 0 20px;
  max-width: 150px;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  color: #1c4c9e;
}

.details-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
  line-height: 1.6;
}

.details-table .label {
  background: transparent;
  font-weight: 500;
  width: 150px;
  color: #1c4c9e;
}

/* History Section */
.history {
  padding: 80px 0;
  background: #f8f9fa;
  color: #1c4c9e;
}

.history .section-title-center {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #1c4c9e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.history .section-title-center::before,
.history .section-title-center::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #1c4c9e;
  margin: 0 20px;
  max-width: 150px;
}

.timeline {
  margin-top: 50px;
}

.timeline-period {
  margin-bottom: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-period:hover {
  background: rgba(28, 76, 158, 0.05);
  border-radius: 8px;
}

.timeline-period h3 {
  font-size: 24px;
  color: #1c4c9e;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 15px 20px;
  border-bottom: 2px solid #e8e8e8;
  position: relative;
}

.timeline-period h3::after {
  content: "▼";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 14px;
}

.timeline-period.active h3::after {
  transform: translateY(-50%) rotate(180deg);
}

.timeline-content {
  margin-left: 40px;
  position: relative;
  padding-left: 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: 116px; /* 縦線の位置を基準点として設定 */
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1c4c9e;
}

.timeline-item {
  display: flex;
  margin-bottom: 25px;
  padding: 15px 0;
  position: relative;
  color: #1c4c9e;
  align-items: flex-start;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 111px; /* 縦線116px - マーカー半径5px = 111px */
  top: 20px;
  width: 10px;
  height: 10px;
  background: #1c4c9e;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #1c4c9e;
  z-index: 2;
}

.timeline-period.active .timeline-content {
  max-height: 2000px;
  padding: 20px 0;
}

.timeline-item .year {
  font-weight: bold;
  color: #1c4c9e;
  min-width: 100px;
  margin-right: 30px; /* マーカー分のスペースを確保 */
  font-size: 14px;
  flex-shrink: 0;
}

.timeline-item .event {
  flex: 1;
  line-height: 1.6;
  color: #1c4c9e;
  margin-left: 10px; /* マーカーとの間隔を調整 */
}

/* Footer */
.footer {
  /* 緑色のグラデーション背景を追加 */
  background: linear-gradient(180deg, #2d5a3d 0%, #7fb069 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: relative;
  text-align: center;
  /* 背景を白色に変更 */
  background: white;
}

.footer-logo-large {
  position: relative;
  z-index: 2;
}

.footer-logo-large h1 {
  /* フォントサイズを大きくし、太めのフォントに変更、横いっぱいになるように調整 */
  font-size: 96px;
  font-weight: 900;
  /* 文字色を#CCE3D5に変更して白背景で見えるように */
  color: #cce3d5;
  letter-spacing: 12px;
  margin: 0;
  text-transform: uppercase;
  /* 横幅いっぱいに表示されるよう調整 */
  width: 100%;
  line-height: 0.54;
}

.footer-main {
  padding: 30px 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.social-link {
  color: white;
  text-decoration: none;
  font-size: 32px;
  transition: opacity 0.3s;
}

.social-link:hover {
  opacity: 0.7;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.partner-logo {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  /*  border-radius: 4px; */
  font-weight: bold;
  font-size: 14px;
}

.footer-info {
  display: flex;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.company-info-footer {
  flex: 1;
}

.company-info-footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
  font-weight: bold;
}

.company-info-footer p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
}

.business-info {
  display: flex;
  gap: 20px;
  flex: 2;
}

.business-column h5 {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
  font-weight: bold;
}

.business-column ul {
  list-style: none;
}

.business-column li {
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.9;
}

/* フッターのリンクスタイルを調整：文字色を継承し、アンダーラインを削除 */
.business-column a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.business-column a:hover {
  opacity: 0.7;
}

/* Business Page Styles */
.business-main {
  padding-top: 0;
}

.business-services {
  padding: 80px 0;
  background: white;
}

.business-intro {
  color: #1c4c9e; /* 文字色を#1C4C9Eに変更 */
  margin-bottom: 60px;
  line-height: 1.8;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.business-service-list {
  display: flex;
  flex-direction: column;
  gap: 0; /* gapを0に変更してborderで区切りを表現 */
  max-width: 80%; /* 全体の80%のサイズに制限 */
  margin: 0 auto; /* 中央配置 */
}

.business-service-item {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px 0; /* 上下にパディングを追加 */
  border-top: 1px solid #e8e8e8; /* 上部に薄グレーのボーダーを追加 */
  border-bottom: 1px solid #e8e8e8; /* 下部に薄グレーのボーダーを追加 */
}

.business-service-item:first-child {
  border-top: 1px solid #e8e8e8; /* 最初の項目にも上部ボーダーを確保 */
}

.business-service-image {
  flex: 0 0 360px; /* 幅を360pxに拡大 */
}

.business-service-image img {
  width: 100%;
  height: 225px; /* 高さを225pxに拡大 */
  object-fit: cover;
  /*   border-radius: 8px; */
}

.business-service-content {
  flex: 1;
}

.business-service-title {
  font-size: 24px;
  color: #1c4c9e;
  margin-bottom: 10px;
  font-weight: bold;
}

.business-service-subtitle {
  font-size: 14px;
  color: #999;
  font-weight: normal;
  margin-left: 10px;
}

.business-service-description {
  color: #1c4c9e; /* 文字色を#1C4C9Eに変更 */
  line-height: 1.8;
  font-size: 14px;
}

/* Business Results Section */
.business-results {
  background: linear-gradient(180deg, #1e3a8a 0%, #0ea5e9 100%);
  color: white;
  padding: 80px 0;
}

.business-results .section-title-center {
  color: white;
}

.business-results .section-title-center::before,
.business-results .section-title-center::after {
  background: white;
}

.business-results-intro {
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.business-current-programs {
  margin-bottom: 60px;
}

.business-current-title {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 0;
}

.business-current-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: white;
  margin-left: 20px;
}

.business-program-slider {
  margin-bottom: 40px;
}

/* Replaced Swiper styles with Slick.js styles */
.business-slick-slider {
  margin: 20px 0;
}

.business-slick-slider .slick-slide {
  padding: 0 15px; /* パディングを増やして重なりを防ぐ */
  transition: all 0.3s ease;
  opacity: 0.7;
  transform: scale(0.8);
}

.business-slick-slider .slick-center {
  opacity: 1;
  transform: scale(1.05); /* スケールを1.2から1.05に縮小して重なりを防ぐ */
  z-index: 2; /* 中央の画像を前面に表示 */
  position: relative;
}

.business-slick-slider .slick-slide:not(.slick-center) {
  opacity: 0.7;
  transform: scale(0.8);
  z-index: 1;
}

.business-slick-slider .slick-prev,
.business-slick-slider .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  /*   border-radius: 50%; */
}

.business-slick-slider .slick-prev {
  left: -50px;
}

.business-slick-slider .slick-next {
  right: -50px;
}

.business-slick-slider .slick-prev:before,
.business-slick-slider .slick-next:before {
  color: #1c4c9e;
  font-size: 20px;
}

.business-slick-slider .slick-dots {
  bottom: -50px;
}

.business-slick-slider .slick-dots li button:before {
  color: white;
  font-size: 12px;
}

.business-program-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.business-program-thumbnail {
  position: relative;
  width: 380px;
  height: 220px;
  /*   border-radius: 8px; */
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.business-program-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-program-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 8px; /* パディングを増やして文字の表示を改善 */
  font-size: 13px; /* フォントサイズを少し大きく */
  font-weight: bold;
  text-align: center;
  white-space: nowrap; /* 文字の折り返しを防ぐ */
  overflow: hidden;
  text-overflow: ellipsis; /* 長い文字は省略記号で表示 */
}

.business-program-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.business-program-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.business-program-detail:first-child {
  border-top: none;
  padding-top: 0;
}

.business-program-detail h4 {
  font-size: 20px;
  font-weight: bold;
  color: #ffeb3b;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Past Works Section */
.business-past-works {
  margin-top: 60px;
}

.business-past-container {
  position: relative;
  cursor: pointer;
}

.business-past-title {
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: background 0.3s ease;
 /* PC時のホバー時に▼アイコンを追加 */
  position: relative;
}

/* スマホ時のみ▼アイコンを表示 */
@media (max-width: 768px) {
  .business-past-title::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 14px;
  }

  .business-past-container.active .business-past-title::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

.business-past-container:hover .business-past-title {
  background: rgba(255, 255, 255, 0.2);
}

.business-past-list {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 10px;
  animation: fadeIn 0.3s ease;
}


/* PC時はホバー、スマホ時はactive classで開閉 */
@media (min-width: 769px) {
  .business-past-container:hover .business-past-list {
    display: grid;
  }
}

@media (max-width: 768px) {
  .business-past-container.active .business-past-list {
    display: grid;
  }
}


.business-past-column p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: white;
}

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

/* Recruit Page Styles */
.recruit-main {
  padding-top: 0;
}

.recruit-hero {
  padding: 80px 0 40px;
  background: white;
  text-align: center;
}

.recruit-intro {
  color: #1c4c9e;
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.8;
}

.recruit-status {
  padding: 40px 0 80px;
  background: white;
}

.recruit-status-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.recruit-status-text {
  flex: 1;
}

.recruit-position {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.recruit-position:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.recruit-position h3 {
  font-size: 20px;
  color: #1c4c9e;
  margin-bottom: 10px;
  font-weight: bold;
}

.recruit-position p {
  color: #1c4c9e;
  font-size: 14px;
  line-height: 1.6;
}

.recruit-status-image {
  flex: 0 0 300px;
  text-align: center;
}

.recruit-status-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*   border-radius: 8px; */
}

.recruit-image-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.recruit-voice {
  padding: 60px 0;
  background: white;
  border-top: 1px solid #e8e8e8;
}

.recruit-voice-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.recruit-voice-text {
  flex: 1;
}

.recruit-voice-title {
  font-size: 18px;
  color: #e91e63;
  margin-bottom: 30px;
  font-weight: bold;
}

.recruit-qa {
  margin-bottom: 25px;
}

.recruit-question {
  font-size: 14px;
  color: #e91e63;
  margin-bottom: 8px;
  font-weight: bold;
}

.recruit-answer {
  font-size: 14px;
  color: #e91e63;
  line-height: 1.8;
  margin-left: 10px;
}

.recruit-voice-image {
  flex: 0 0 300px;
}

.recruit-voice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*   border-radius: 8px; */
}

/* Contact Page Styles */
.contact-main {
  padding-top: 0;
}

.contact-access {
  padding: 80px 0;
  background: white;
}

.contact-map {
  margin: 40px 0 60px;
  display: flex;
  justify-content: center;
}

.contact-map-placeholder {
  width: 100%;
  max-width: 900px;
  height: 400px;
  background: #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #666;
  border-radius: 8px;
}

.contact-info {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-info-table tr {
  border-bottom: 1px solid #e8e8e8;
}

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

.contact-info-label {
  padding: 20px 40px 20px 0;
  font-weight: bold;
  color: #1c4c9e;
  font-size: 16px;
  vertical-align: top;
  width: 150px;
}

.contact-info-value {
  padding: 20px 0;
  color: #1c4c9e;
  font-size: 16px;
  line-height: 1.6;
}

.contact-character {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.contact-coming-soon {
  margin-top: 40px;
  font-size: 24px;
  color: #1c4c9e;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
  .contact-map-placeholder {
    height: 250px;
    font-size: 18px;
  }

  .contact-info-table {
    font-size: 14px;
  }

  .contact-info-label {
    width: 120px;
    padding-right: 20px;
    font-size: 14px;
  }

  .contact-info-value {
    font-size: 14px;
  }

  .contact-coming-soon {
    font-size: 18px;
  }
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .company-content {
    flex-direction: column;
    gap: 40px;
  }

  .company-image {
    flex: none;
  }

  .footer-logo-large h1 {
    /* Mobile font size adjustment */
    font-size: 48px;
    letter-spacing: 6px;
  }
  .footer-logo-large h1 img{
    width:90%;
  }

  .social-links {
    gap: 20px;
  }

  .social-link {
    font-size: 24px;
  }

  .partner-logos {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-info {
    flex-direction: column;
    gap: 30px;
  }

  .business-info {
    flex-direction: column;
    gap: 20px;
  }

  .hero-video {
    height: 120%;
    width: 120%;
    top: -10%;
    left: -10%;
    position: relative;
  }
.timeline-content {
  margin-left:0px;
  padding-left:0px;
}
  .business-service-item {
    flex-direction: column;
    text-align: center;
  }

  .business-service-image {
    flex: none;
  }

  .business-program-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .business-program-details {
    gap: 20px;
  }

.business-program-detail h4 {
    text-align:center;
  }

  .business-slick-slider .slick-center {
    transform: scale(1.02); /* モバイルでのスケールをさらに小さく */
  }

  .business-slick-slider .slick-slide {
    padding: 0 10px; /* モバイルでのパディングを調整 */
  }

  /* Past Works Section */
  .business-past-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .recruit-status-content,
  .recruit-voice-content {
    flex-direction: column;
    gap: 30px;
  }

  .recruit-status-image,
  .recruit-voice-image {
    flex: none;
    max-width: 100%;
  }

  .recruit-voice-title {
    font-size: 16px;
  }
}

.hero-video.blurred {
  filter: blur(5px);
}
