/* グローバルオーバーフロー防止 */
html,
body {
  overflow-x: hidden;
}

/* =============================
	About Section
============================= */
.section-about {
  position: relative;
  background: #fff;
  padding: clamp(80px, 12vh, 160px) 0 clamp(200px, 22vh, 300px);
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  color: #333;
}
.section-about .about-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: normal;
}
.section-about__inner {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 clamp(18px, 5vw, 64px);
  box-sizing: border-box;
}
.section-heading {
  text-align: center;
  margin: 0 0 68px;
  position: relative;
}
.section-heading__title {
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  color: #3a3d40;
}
.section-heading__subtitle {
  margin: 10px 0 0;
  font-size: clamp(14px, 1.1vw, 19px);
  letter-spacing: 0.12em;
  color: #555;
}

.about-body {
  max-width: 960px;
  flex: 1 1 54%;
}
.about-layout {
  display: flex;
  align-items: stretch;
  gap: 6vw;
}
.about-figure {
  flex: 1 1 46%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/10;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 38px -12px rgba(0, 0, 0, 0.25),
    0 4px 18px -6px rgba(0, 0, 0, 0.18);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.35) 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(108%) contrast(102%);
  transition: transform 1.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) 60ms;
}
.about-photo:hover img {
  transform: none;
}

@media (max-width: 980px) {
  .about-layout {
    flex-direction: column;
  }
  .about-figure {
    order: -1;
  }
  .about-photo {
    max-width: 400px;
    margin: 0 auto 34px;
  }
  .section-about {
    padding-bottom: 40px;
  }
}
.about-lead {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 44px;
}
.about-lead__em {
  font-weight: 600;
}
.about-text p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.07em;
  margin: 0 0 28px;
}
.about-text p:last-child {
  margin-bottom: 0;
}

.about-lead {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(12px);
  transition: opacity 1s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55), filter 1s;
}
.about-lead.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.about-text p {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity 0.75s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    transform 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55), filter 0.9s;
}
.about-text p.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.solution-card__number {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 7rem;
  color: #b2c1f2;
  background: none;
  border: none;
  font-weight: 900;
  opacity: 0.22;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .solution-card__number {
    display: none;
  }
}

/* News list reveal */
.news-list .news-item {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  transition: opacity 0.6s ease,
    transform 0.75s cubic-bezier(0.68, -0.55, 0.27, 1.55), filter 0.75s;
}
.news-list .news-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.news-list .news-item:nth-child(1) {
  transition-delay: 0.05s;
}
.news-list .news-item:nth-child(2) {
  transition-delay: 0.12s;
}
.news-list .news-item:nth-child(3) {
  transition-delay: 0.19s;
}
.news-list .news-item:nth-child(4) {
  transition-delay: 0.26s;
}
.news-list .news-item:nth-child(5) {
  transition-delay: 0.33s;
}

/* Heading animation base */
.js-split-target {
  display: inline-block;
  position: relative;
}
/* Heading underline (single style kept) */
.section-heading {
  position: relative;
  padding-bottom: 0;
}
.section-heading__title {
  position: relative;
  display: inline-block;
  margin: 0;
}
.heading-divider {
  display: block;
  width: 0;
  height: 4px;
  margin: 32px auto 28px;
  background: linear-gradient(90deg, #0a84ff, #64d2ff);
  border-radius: 4px;
  box-shadow: 0 0 18px -4px rgba(10, 132, 255, 0.55);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center center;
}
.heading-divider.is-animated {
  animation: hdCenterLine 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
@keyframes hdCenterLine {
  0% {
    width: 0;
    opacity: 0;
    transform: scaleX(0.3);
  }
  55% {
    opacity: 1;
  }
  100% {
    width: 220px;
    opacity: 1;
    transform: scaleX(1);
  }
}

/* =============================
	Business Section (Horizontal Panels)
============================= */
.section-business {
  position: relative;
  padding-top: 0;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23dadfff' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* === New Business section (simple like About) === */
.section-business {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
}
.section-business__inner {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 64px);
  box-sizing: border-box;
}

.solution-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #0a84ff;
  text-decoration: none;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  line-height: 1.4;
  transition: color 0.35s;
}

.solution-card__more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.45s;
  opacity: 0.55;
}

.solution-card__more:hover,
.solution-card__more:focus-visible {
  color: #086dd0;
}
.solution-card__more:hover::after,
.solution-card__more:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.solution-card__title {
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.solution-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 4px;
  background: linear-gradient(90deg, #0a84ff, #64d2ff);
  border-radius: 4px;
  box-shadow: 0 4px 14px -4px rgba(10, 132, 255, 0.55);
}

/* Accessibility utility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* removed counter / dots / bg variant controls */
/* heading block spacing */
.solutions-heading-block {
  margin-bottom: 60px;
}
.solution-card__title,
.solution-card__text {
  color: #27333a;
}
.solution-card__body {
  color: #4f5b62;
}

.solution-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 56px;
  align-items: center;
  margin: 0 0 80px;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s, transform 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    filter 0.8s;
}
.solution-card .is-current {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}
.solution-card__media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  max-width: 560px;
  background: #ffffff;
  box-shadow: 0 10px 38px -12px rgba(0, 0, 0, 0.25),
    0 4px 18px -6px rgba(0, 0, 0, 0.18);
}
.solution-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.solution-card__body {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.06em;
}
.solution-card__title {
  font-size: clamp(20px, 1.6vw, 28px);
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}
.solution-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 120px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0a84ff, #64d2ff);
  box-shadow: 0 0 14px -4px rgba(10, 132, 255, 0.6);
}
.solution-card__text {
  margin: 0;
}
/* 事業内容カードふわっと表示アニメーション */
.pre-fade {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.6, 0.2, 0.2, 1),
    transform 0.8s cubic-bezier(0.6, 0.2, 0.2, 1);
  pointer-events: auto;
}
@media (max-width: 1080px) {
  .business-solutions-grid {
    grid-template-columns: 1fr;
  }
  .solutions-sticky {
    top: 70px;
    margin-bottom: 80px;
  }
  .solution-card {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 160px;
  }
  .solution-card__media {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media (max-width: 600px) {
  .solution-card {
    margin-bottom: 120px;
  }
  .solution-card__title {
    font-size: 22px;
  }
}

.section-business__inner {
  position: relative;
  width: 100%;
}
.business-sticky {
  position: sticky;
  top: 0;
  overflow: visible;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.business-panels {
  flex: 1 1 auto;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.6, 0.05, 0.2, 1);
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(10px, 4vh, 46px) 0 40px;
  box-sizing: border-box;
}
.business-panel {
  flex: 0 0 auto;
  padding: 8px clamp(34px, 5.2vw, 90px) 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
.business-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 34px clamp(28px, 3.6vw, 58px) 46px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 40px -18px rgba(10, 132, 255, 0.28),
    0 4px 14px -6px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}
.business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
/* カード上下余白: 下固定余白→上方向軽い余白に変更し下貼り付き感を軽減 */
.business-card {
  margin: clamp(4px, 1.2vh, 18px) 0 0;
}
/* 見出し下の余白を明示 */
.section-business .section-heading {
  margin: 0 0 clamp(14px, 3.8vh, 54px);
}
.business-panel__media {
  flex: 0 0 clamp(340px, 42%, 600px);
  margin: 0;
}
.business-panel__content {
  flex: 1 1 auto;
  max-width: 720px;
}
/* 交互レイアウト解除 */
.business-panel__title {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #20303a;
}
.business-panel__title {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 clamp(18px, 2.4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #20303a;
  line-height: 1.15;
}
.business-panel__text {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #3d4a53;
  max-width: 780px;
}
.business-panel__media {
  margin: 0 0 10px;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #0a84ff0f;
  box-shadow: 0 14px 48px -16px rgba(10, 132, 255, 0.35),
    0 4px 18px -6px rgba(0, 0, 0, 0.22);
  /* backdrop-filter: blur(4px) saturate(140%); */
}
.business-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(108%) saturate(110%);
  transition: transform 1.8s ease, filter 0.8s ease;
}
.business-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 132, 255, 0.18),
    rgba(100, 210, 255, 0.1) 45%,
    rgba(255, 255, 255, 0) 70%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}
.business-panel__media:hover img {
  transform: scale(1.06);
  filter: contrast(112%) saturate(118%);
}

/* スクロール用スペーサー (#business 内末尾) */
#business .business-scroll-spacer {
  width: 100%;
  pointer-events: none;
}

/* === Business / News 出現アニメーション (About と同様のフェード＋スライド) === */
.biz-anim,
.news-anim {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    transform 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55), filter 0.9s;
}
.biz-anim.is-visible,
.news-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* 多少短い要素向け微調整 */
.biz-anim[data-fast],
.news-anim[data-fast] {
  transition-duration: 0.65s;
}

/* =============================
	Recruit Section
============================= */
.section-recruit {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 18vh, 160px) 0 clamp(120px, 20vh, 200px);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  overflow: hidden;
}
.section-recruit__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(4, 12, 20, 0.4),
      rgba(4, 12, 20, 0.75)
    ),
    url("../images/recruit/recruit-01.webp") center/cover no-repeat fixed;
}
.section-recruit__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(34px, 6vh, 64px);
  padding: 0 clamp(18px, 5vw, 56px);
  box-sizing: border-box;
}

.solution-card__linkwrap {
  padding-top: 20px;
}

/* Recruit heading: remove decorative frame */
.recruit-heading-box {
  position: relative;
  padding: 0 0 34px;
  border: none;
  box-shadow: none;
}
.recruit-heading-box::before,
.recruit-heading-box::after {
  content: none;
}
/* Recruit 見出しは他セクションと統一: section-heading__title / __subtitle を上書き調整 */
#recruit .section-heading__title {
  color: #fff;
  letter-spacing: 0.05em;
}
#recruit .section-heading__subtitle {
  color: #fff;
}
/* Recruit は共通 .heading-divider アニメーションを使用 */
.recruit-lead {
  font-size: clamp(18px, 1.6vw, 26px);
  letter-spacing: 0.12em;
  line-height: 1.75;
  margin: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}
.recruit-cta {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: background 0.55s, color 0.55s, box-shadow 0.55s;
  background: rgba(255, 255, 255, 0.06);
  /* backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%); */
}
.recruit-cta:hover,
.recruit-cta:focus-visible {
  background: linear-gradient(90deg, #0a84ff, #64d2ff);
  color: #fff;
  box-shadow: 0 6px 22px -8px rgba(10, 132, 255, 0.55);
}
@media (max-width: 640px) {
  .recruit-heading-box {
    padding: 0 0 28px;
  }
  .recruit-lead {
    font-size: 15px;
  }
  .recruit-cta {
    padding: 12px 28px;
  }
}

/* =============================
	Footer / Company Info
============================= */
.site-footer {
  background: #0b1620;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23063458' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: #dce6ed;
  font-family: "Noto Sans JP", sans-serif;
  padding: clamp(80px, 14vh, 140px) 0 clamp(60px, 10vh, 120px);
  position: relative;
  overflow: hidden;
}
.site-footer__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 clamp(18px, 5vw, 56px);
  box-sizing: border-box;
}
.site-footer__title {
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.18;
  margin: 0 0 40px;
  padding-bottom: 6px;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: linear-gradient(90deg, #64d2ff, #0a84ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.site-footer__layout {
  display: flex;
  flex-direction: row;
  gap: 40px 60px;
  align-items: flex-start;
}

@media (max-width: 840px) {
  .site-footer__layout {
    flex-direction: column;
    gap: 40px 0;
    align-items: stretch;
  }
}

.company-info {
  max-width: 720px;
  margin: 0 auto;
}
.footer-map {
  max-width: 720px;
}
.site-footer__col--info .company-info,
.site-footer__col--map .footer-map {
  width: 100%;
  max-width: 100%;
}
.site-footer__col {
  flex: 1 1 420px;
  min-width: 320px;
  width: auto;
}

.site-footer__col--info {
  flex: 0 1 60%;
  max-width: 60%;
  width: 60%;
}

.site-footer__col--map {
  position: relative;
  flex: 0 1 40%;
  max-width: 40%;
  width: 40%;
}
@media (min-width: 961px) {
  .site-footer__inner {
    max-width: 1200px;
  }
  .site-footer__layout {
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .site-footer__col {
    flex: 1 1 50%;
    min-width: 0;
  }
  .site-footer__col--info {
    max-width: none;
  }
  .site-footer__col--map {
    flex: 1 1 50%;
  }
}
.footer-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 28px -10px rgba(0, 0, 0, 0.55);
}
.footer-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.05) brightness(0.95);
}
.footer-map__link {
  position: absolute;
  inset: 0;
}
@media (max-width: 840px) {
  .site-footer__layout {
    flex-direction: column;
  }
  .footer-map {
    aspect-ratio: 16/11;
  }
}
.company-info {
  margin: 0 0 50px;
  padding: 0;
}
.company-info__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.company-info__row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.company-info dt {
  flex: 0 0 120px;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #8fb6cc;
}
.company-info dd {
  flex: 1 1 auto;
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.site-footer__copy {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #7fa2b6;
}
@media (max-width: 640px) {
  .company-info dt {
    flex: 0 0 90px;
    font-size: 12px;
  }
  .company-info dd {
    font-size: 13px;
  }
  .site-footer__layout {
    flex-direction: column;
  }
  .site-footer__col,
  .site-footer__col--info,
  .site-footer__col--map {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
}
@media (min-width: 641px) and (max-width: 960px) {
  /* 2列入らず折り返した場合でも各列を全幅に */
  .site-footer__col {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
  .site-footer__col--info {
    max-width: 100%;
  }
  .site-footer__col--map {
    max-width: 100%;
  }
}

/* Background pattern container modifications */
#business {
  --biz-bg-accent: #0a84ff;
}

/* ===== Business 終了直後の余白圧縮 ===== */
.section-business + .section-news {
  padding-top: clamp(40px, 8vh, 90px);
}

@media (max-width: 580px) {
  .business-panel {
    padding: 10px 16px 34px;
    gap: 16px;
  }
  .business-card {
    padding: 24px 20px 34px;
    gap: 24px;
    margin-top: 18px;
  }
  .business-panel__title {
    font-size: clamp(22px, 7.4vw, 30px);
  }
  .business-panel__text {
    font-size: 13px;
    line-height: 1.75;
  }
  .business-panel__media {
    border-radius: 16px;
    aspect-ratio: 16 / 10;
  }
}

/* =============================
		News Section
	============================= */
.section-news {
  padding: clamp(80px, 14vh, 160px) 0 clamp(120px, 18vh, 200px);
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #ffffff;
}
.section-news__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 56px);
  box-sizing: border-box;
}
.section-news .section-heading {
  margin: 0 0 48px;
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d9dee2;
}
.news-item {
  border-bottom: 1px solid #d9dee2;
}
.news-item a {
  display: flex;
  gap: 46px;
  align-items: flex-start;
  text-decoration: none;
  padding: 18px clamp(10px, 1.2vw, 18px);
  color: #1d2f38;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  transition: background 0.35s, color 0.35s;
}
.news-item a:hover,
.news-item a:focus-visible {
  background: #f4f8fb;
  color: #0a84ff;
}
.news-date {
  flex: 0 0 140px;
  font-family: monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #4a5a63;
  line-height: 1.6;
}
.news-title {
  flex: 1 1 auto;
  display: block;
}
@media (max-width: 640px) {
  .news-item a {
    flex-direction: column;
    gap: 4px;
    padding: 16px 8px;
  }
  .news-date {
    flex: 0 0 auto;
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .site-footer__col--info {
    max-width: 100% !important;
    width: 100% !important;
    flex-basis: 100% !important;
  }
}
@media (max-width: 1200px) {
  .site-footer__col--info {
    max-width: 100%;
    width: 100%;
    flex-basis: 100%;
  }
}

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

.certification img {
  max-width: 180px;
  height: auto;
}

@media (max-width: 840px) {
  .certification {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .certification img {
    max-width: 120px;
  }
}

@media (max-width: 640px) {
  .section-recruit__bg {
    background-position: right;
  }
}