/* ===== Base ===== */
:root {
  --header-height: 64px;
  --navy: #3b4e68;
  --yellow: #f2b300;
  --text: #ffffff;
  /* Scroll Video + Content section */
  --sv-bgL: #d7d2c6;
  --sv-bgR: #fbfaf7;
  --sv-text: #1f1f1f;
  --sv-muted: #6b6b6b;
  --sv-rule: rgba(0, 0, 0, 0.12);
  --sv-max: 1300px;
  --sv-gap: clamp(18px, 4vw, 56px);
  --sv-pad: clamp(18px, 4vw, 46px);
  --sv-stickyTop: var(--header-height, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
}

body {
  margin: 0;
  padding-top: 68px;
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


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

.logo {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.logo a {
  display: block;
}

.logo-img {
  display: block;
  height: auto;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Nav toggle (mobile) - 表示はモバイルで、768px以上で非表示 */
.nav-toggle {
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle::after {
  top: 28px;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Navigation - モバイルではドロワー、768px以上で横並び */
.nav-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a,
.nav-list > li > .nav-parent {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 1px solid #e2e8f0;
}

.nav-list > li > .nav-parent {
  cursor: pointer;
}

/* モバイル：ナビはドロワー */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  padding: 5rem 0 2rem;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: auto;
}

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

.nav-list > li > a:hover {
  color: #2F4566;
}

.nav-contact {
  margin: 1rem 1.5rem 0;
  padding: 0.5rem 1.25rem !important;
  background: #f2b300;
  color: #fff !important;
  font-weight: 700;
  border-radius: 0;
  text-align: center;
}

.nav-contact:hover {
  background: #e0a600;
  color: #fff !important;
}

/* Dropdown - モバイルではアコーディオン、768px以上でホバー表示 */
.dropdown {
  position: static;
  min-width: 220px;
  padding: 0;
  background: #f8fafc;
  box-shadow: none;
  border-radius: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: max-height 0.3s;
}

.has-dropdown.is-open .dropdown {
  max-height: 300px;
}

.has-dropdown > a::after,
.has-dropdown > .nav-parent::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
  transition: transform 0.2s;
}

.has-dropdown.is-open > a::after,
.has-dropdown.is-open > .nav-parent::after {
  transform: rotate(180deg);
}

.dropdown li a {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  font-size: 0.75rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown li a:hover {
  background: #f0f4f8;
  color: #2F4566;
}

/* ===== Main（モバイルファースト） ===== */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 3rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ----- トップ：ヒーロー＋動画（横並び → スクロールで動画がフル幅に） ----- */
.hero-with-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

.hero-with-video .hero-catch {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 2rem clamp(20px, 6vw, 80px);
  background: transparent;
  z-index: 1;
  position: relative;
  transform: translateY(-70px);
}

.hero-video-cell {
  position: relative;
  min-height: 100vh;
}

.video-parallax-bg-spacer {
  display: block;
  height: 100vh;
  width: 100%;
}

/* 1本の動画レイヤー（main 直下・ヒーロー〜video-parallax で共通）、JS で left/width をスクロールに合わせて変化 */
.video-parallax-bg {
  position: fixed;
  top: 0;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 68%;
  width: 32%;
  transition: none;
}

/* 動画レイヤー（z-index:0）の上にコンテンツを表示するため */
.main > .hero-with-video,
.main > .hero-scroll-hint,
.main > .video-parallax,
.sv,
.news-section,
.recruit,
.footer-hero,
.contact-band,
.footer {
  position: relative;
  z-index: 1;
}

.hero-catch-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 20vw, 10rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: #111;
  white-space: nowrap;
}

.hero-catch-bottom {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero-catch-lead {
  margin: 0;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.85;
  color: #111;
}

.hero-catch-lead-line {
  display: block;
}

.hero-catch-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: clamp(14px, 2vw, 22px) clamp(28px, 4vw, 48px);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #f2b300;
  border: none;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.hero-catch-cta-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.hero-catch-cta-icon svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
}

.hero-catch-cta:hover {
  filter: brightness(0.95);
}

.hero-catch-cta:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

/* ヒーロー内・画面下部：スクロール誘導（中央・アニメーション） */
.hero-scroll-hint {
  position: absolute;
  bottom: calc(1.5rem + 100px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #111;
  opacity: 0.85;
}

.hero-scroll-hint-text {
  text-transform: lowercase;
}

.hero-scroll-hint-arrow {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  animation: hero-scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
  .hero-with-video {
    grid-template-columns: 1fr;
    min-height: 82vh;
  }

  .hero-with-video .hero-catch {
    min-height: 48vh;
    padding: 1.5rem 20px 2rem;
    justify-content: center;
    transform: translateY(-24px);
  }

  .hero-catch-title {
    font-size: clamp(2.75rem, 14vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: 0.03em;
  }

  .hero-with-video .hero-catch {
    position: static;
  }

  .hero-catch-bottom {
    margin-top: 1.35rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .hero-catch-lead {
    font-size: clamp(0.9rem, 2.8vw, 1.15rem);
    letter-spacing: 0.05em;
    line-height: 1.75;
  }

  /* モバイル：お問い合わせボタンを scroll の少し上・中央に大きく表示 */
  .hero-catch-cta {
    position: absolute;
    bottom: calc(1.5rem - 250px);
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 280px;
    padding: 20px 40px;
    font-size: 1.25rem;
    z-index: 2;
  }

  .hero-video-cell {
    min-height: 34vh;
  }

  .video-parallax-bg-spacer {
    height: 34vh;
    min-height: 200px;
  }

  .video-parallax-video {
    object-fit: cover;
    object-position: center 35%;
  }

  /* モバイル：背景動画の表示を少し上寄せにする */
  .video-parallax-bg {
    align-items: flex-start;
    padding-top: 0;
  }

  /* モバイル：scroll↓を少し下に下げる */
  .hero-scroll-hint {
    bottom: 0.75rem;
  }
}

/* ----- トップ：背景動画エリア（コンテンツのみ、動画は .video-parallax-bg が固定で背面に） ----- */
.video-parallax {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: 1;
  background: transparent;
}


/* 動画は端が切れないよう contain で縮小表示、JSで --video-scale によりスクロール連動 */
.video-parallax-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.4;
  background-color: #fff;
  transform: scale(var(--video-scale, 0));
  object-position: center center;
}

.video-parallax-bg-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

/* 文章は通常フローでスクロール、動画の上に重なる（上寄せ） */
.video-parallax-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 20px 20px 0px;
  color: #111;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .video-parallax-content {
    width: 94%;
    max-width: 94vw;
  }

  /* モバイル：2行で収まるように文字サイズを調整（1行目・2行目それぞれ折り返しなし） */
  .video-parallax-text {
    font-size: clamp(11px, 2.6vw, 15px);
    letter-spacing: 0.02em;
  }

  .video-parallax-text [data-split] {
    white-space: nowrap;
    display: block;
  }
}

.video-parallax-spacer {
  height: 0;
  width: 100%;
  pointer-events: none;
}

/* 文章アニメーション：表示時に段々と表示される */
/* モバイルファースト：テキスト小さめ */
.video-parallax-text {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: #111;
}

/* data-split スプリット文字（デジタル技術の浸透に留まらず / 真の企業変革を実現する） */
.video-parallax-text [data-split],
.video-parallax-text [data-split] span {
  display: inline-block;
}

.video-parallax-text [data-split] .inner {
  display: block;
  position: relative;
  overflow: hidden;
}

.video-parallax-text [data-split] .back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.video-parallax-text [data-split] .char {
  transition: all 0.4s cubic-bezier(0.2, 0.63, 0.4, 1.02);
  transition-delay: calc(0.015s * var(--index));
}

.video-parallax-text [data-split] .back .char {
  opacity: 0;
  transform: translateY(101%) skewX(55deg);
}

.video-parallax-text [data-split-type="scroll"].is-animated .back .char {
  opacity: 1;
  transform: none;
}

.video-parallax-text [data-split-type="scroll"].is-animated .front .char {
  opacity: 0;
  transform: translateY(-101%) skewX(-55deg);
}

.video-parallax-text .reveal-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: parallax-char-reveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.video-parallax-content.is-visible .video-parallax-text .reveal-char {
  animation-delay: calc(var(--i, 0) * 0.04s);
}

@keyframes parallax-char-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-parallax-sub {
  margin: 0.75rem 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #333;
  white-space: pre-line;
}

.video-parallax-sub .reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-parallax-sub .reveal-line.line-in-view {
  opacity: 0.9;
  transform: translateY(0);
}

@keyframes parallax-line-reveal {
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

/* タブレット以上：テキスト大きく */
@media (min-width: 641px) {
  .video-parallax-text {
    font-size: 34px;
  }
  .video-parallax-sub {
    font-size: 14px;
    margin-top: 1rem;
  }
}

@media (min-width: 769px) {
  .video-parallax-text {
    font-size: 40px;
  }
  .video-parallax-sub {
    font-size: 16px;
  }
}

/* ===== Scroll Video + Content (sv) ===== */
.sv {
  width: 100%;
  background: var(--sv-bgR);
  color: var(--sv-text);
}

.sv-grid {
  display: grid;
  grid-template-columns: 50vw 1fr;
  gap: var(--sv-gap);
  padding: 0 var(--sv-pad) 0 0;
  margin: 0;
  max-width: none;
  width: 100%;
  min-height: 100vh;
}

.sv-left {
  position: sticky;
  top: var(--sv-stickyTop);
  height: calc(100vh - var(--sv-stickyTop));
  background: var(--sv-bgL);
  overflow: hidden;
  min-width: 0;
}

.sv-videoStage {
  position: relative;
  width: 100%;
  height: 100%;
}

.sv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.8s ease;
}

.sv-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.sv-right {
  padding: clamp(40px, 6vh, 80px) 0 120px;
}

.sv-panel {
  position: relative;
  min-height: 110vh;
  padding: 36px 0 70px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sv-panel:first-child {
  border-top: none;
}

.sv-kicker {
  text-align: center;
  color: #ff3b00;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.sv-kicker span {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid #ff3b00;
}

.sv-title {
  margin: 14px 0 18px;
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

/* sv-title スプリット文字（DX支援事業 / TITANコンサル / 貿易事業） */
.sv-title [data-split],
.sv-title [data-split] span {
  display: inline-block;
}

.sv-title [data-split] .inner {
  display: block;
  position: relative;
  overflow: hidden;
}

.sv-title [data-split] .back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.sv-title [data-split] .char {
  transition: all 0.4s cubic-bezier(0.2, 0.63, 0.4, 1.02);
  transition-delay: calc(0.015s * var(--index));
}

.sv-title [data-split] .back .char {
  opacity: 0;
  transform: translateY(101%) skewX(55deg);
}

.sv-title [data-split-type="scroll"].is-animated .back .char {
  opacity: 1;
  transform: none;
}

.sv-title [data-split-type="scroll"].is-animated .front .char {
  opacity: 0;
  transform: translateY(-101%) skewX(-55deg);
}

.sv-rule {
  height: 1px;
  width: 100%;
  background: var(--sv-rule);
  margin: 14px 0 28px;
}

.sv-eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--sv-muted);
  font-weight: 800;
}

.sv-metric {
  margin: 6px 0 22px;
  font-size: clamp(28px, 3.2vw, 56px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.sv-body {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 2.05;
  color: #2a2a2a;
  white-space: pre-line;
}

.sv-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sv-cta .arrow {
  transition: transform 0.2s ease;
}

.sv-cta:hover .arrow {
  transform: translateX(4px);
}

.sv-thumbs {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 100%;
  max-width: 630px;
  overflow: hidden;
}

.sv-thumbs-track {
  display: flex;
  align-items: flex-start;
  width: 266.67%;
  min-height: 0;
  will-change: transform;
}

.sv-thumbs-track img {
  flex: 0 0 12.5%;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  margin-right: 10px;
}

.sv-thumbs-track img:last-child {
  margin-right: 0;
}

@media (max-width: 980px) {
  .sv-grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .sv-left {
    position: relative;
    top: auto;
    height: 56vh;
  }

  .sv-right {
    padding: 26px var(--sv-pad) 80px;
    background: var(--sv-bgR);
  }

  .sv-panel {
    min-height: auto;
    padding: 28px 0 58px;
    display: flex;
    flex-direction: column;
  }

  .sv-panel .sv-cta {
    align-self: flex-end;
  }

  .sv-thumbs {
    position: static;
    max-width: 100%;
    margin-top: 22px;
  }
}

.hero {
  padding: 3rem 16px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin: 0 -16px 3rem;
}

.hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  color: #1a1a2e;
}

.hero-lead {
  margin: 0;
  font-size: 0.875rem;
  color: #555;
}

.section {
  margin-bottom: 3rem;
  padding-top: 1.5rem;
}

.section > p {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #555;
}

.section h2 {
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  border-bottom: 3px solid #2F4566;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a2e;
}

.card p {
  margin: 0;
  font-size: 0.8125rem;
  color: #555;
}

/* ===== Recruit（BE A GAME CHANGER 上） ===== */
.recruit {
  position: relative;
  z-index: 2;
  background: #D73900;
  padding: clamp(60px, 8vw, 140px) 20px;
  overflow: hidden;
}

.recruit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.recruit-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 18vw, 400px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.recruit-image {
  overflow: hidden;
  position: relative;
}

.recruit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.2s ease;
}

.recruit-image:hover img {
  transform: scale(1.18);
}

.recruit-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recruit-content .btn {
  align-self: flex-end;
}

.recruit-head .mini {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-bottom: 20px;
}

.recruit-head h2 {
  font-size: clamp(36px, 10vw, 140px);
  margin: 0 0 25px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.recruit .desc {
  font-size: 16px;
  line-height: 2;
  opacity: 0.85;
  margin-bottom: 35px;
}

.recruit .btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #e13200;
  padding: 18px 55px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.recruit .btn .arrow {
  transition: transform 0.3s ease;
}

.recruit .btn:hover {
  background: #cecece;
}

.recruit .btn:hover .arrow {
  transform: translateX(6px);
}

/* 全ページ共通：スクロールで表示されるフェードアップ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

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

.recruit .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.recruit .fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

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

  .recruit-bg-text {
    font-size: 120px;
  }

  .recruit .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== トップページ ニュースセクション ===== */
.news-section {
  padding: clamp(48px, 6vw, 80px) 20px;
  background: #f8f9fb;
}

.news-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.news-section-head {
  margin-bottom: 1.5rem;
}

.news-section-kicker {
  display: block;
  font-size: 12px;
  color: #6b7280;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.news-section-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.02em;
  color: #1a1a2e;
}

.news-section-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e7eb;
}

.news-section-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 16px;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.news-section-date {
  font-size: 13px;
  color: #374151;
  flex-shrink: 0;
}

.news-section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.news-section-badge.badge-pr {
  background: rgba(211, 57, 0, 0.12);
  color: #d73900;
}

.news-section-badge.badge-ir {
  background: rgba(47, 69, 102, 0.12);
  color: #2F4566;
}

.news-section-link {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: #111827;
  text-decoration: none;
}

.news-section-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-section-more {
  margin: 1.5rem 0 0;
  text-align: right;
}

.news-section-more .sv-cta {
  margin-top: 0;
}

/* モバイル：ニュースセクションの文字を小さく */
@media (max-width: 768px) {
  .news-section-kicker {
    font-size: 11px;
  }

  .news-section-title {
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  }

  .news-section-date {
    font-size: 12px;
  }

  .news-section-badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .news-section-link {
    font-size: 13px;
  }
}

/* ===== Footer上キャッチ（モバイルファースト） ===== */
.footer-hero {
  width: 100%;
  padding: 2rem 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background-color: #2F4566;
  background-image: linear-gradient(180deg, rgba(47, 69, 102, 0.75), rgba(47, 69, 102, 0.88)), url(../img/bethegamechanger.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* モバイル基準：2行で画面に収めつつ可読サイズ、背景は文字の高さに合わせる */
.footer-hero-title {
  margin: 0;
  width: 100%;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 25vw, 50vh);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
}

.footer-hero-title span {
  display: block;
  white-space: nowrap;
}

/* モバイル：BE THE GAME CHANGER の文字を小さく */
@media (max-width: 640px) {
  .footer-hero-title {
    font-size: clamp(1.75rem, 18vw, 35vh);
  }
}

/* 1行目→2行目の順に左からなめらかに表示される clip-path アニメーション */
.footer-hero-title.smooth {
  display: block;
}

/* 表示されるまでアニメーションは止めておく（JSで .in-view が付いたら開始） */
.footer-hero-title.smooth span {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

.footer-hero.in-view .footer-hero-title.smooth span:nth-child(1) {
  animation: footer-hero-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.footer-hero.in-view .footer-hero-title.smooth span:nth-child(2) {
  animation: footer-hero-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes footer-hero-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* タブレット以上 */
@media (min-width: 481px) {
  .footer-hero {
    padding: 2.5rem 24px 2.5rem 24px;
  }

  .footer-hero-title {
    font-size: clamp(3rem, 18vw, 50vh);
  }
}

/* PC以上：画面幅からはみ出さないよう vw で制限 */
@media (min-width: 769px) {
  .footer-hero {
    padding: 3rem 32px 3rem 32px;
    min-height: 100vh;
    align-items: center;
  }

  .footer-hero-title {
    font-size: clamp(2rem, 22vw, 40vw);
    max-width: 100%;
  }
}

/* ===== Contact band（ENTRYセクションと同じ背景） ===== */
.contact-band {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 30% 40%, rgba(255, 230, 0, 0.95), rgba(70, 120, 255, 0.92), rgba(120, 0, 255, 0.86));
  color: #fff;
  padding: clamp(34px, 5vw, 70px) 16px;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  color: #fff;
}

.contact-sub {
  margin: 10px 0 0;
  font-size: 16px;
  letter-spacing: 0.12em;
  opacity: 0.95;
  color: #fff;
}

.contact-desc {
  margin: 42px auto 0;
  max-width: 980px;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  opacity: 0.95;
  color: #fff;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 44px;
  border-radius: 0;
  background: var(--yellow);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.contact-btn:active {
  transform: translateY(0);
}

@media (max-width: 520px) {
  .contact-desc {
    margin-top: 28px;
    font-size: 14px;
  }

  .contact-btn {
    width: 100%;
    max-width: 360px;
    padding: 14px 18px;
  }
}

/* モバイル：contact-band のお問い合わせボタンを採用情報ボタンと同じ大きさ・デザイン（色はそのまま） */
@media (max-width: 900px) {
  .contact-band .contact-btn {
    width: 100%;
    max-width: none;
    padding: 18px 55px;
    justify-content: center;
    border-radius: 0;
  }
}

/* ===== Footer（モバイルファースト：1カラム） ===== */
.footer {
  background: #fff;
  color: #000;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.footer-nav-list {
  justify-content: flex-start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  max-height: 32px;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

/* 大メニュー（トップレベル） */
.footer-nav-list > li > a,
.footer-nav-list > li > .footer-nav-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #000;
  transition: color 0.2s;
}

.footer-nav-list > li > span.footer-nav-label {
  cursor: default;
  text-decoration: none;
}

.footer-nav-list > li > a:hover,
.footer-nav-list > li > a.footer-nav-label:hover {
  color: #555;
}

.footer-nav-list > li > a.footer-nav-label {
  text-decoration: none;
}

/* 小メニュー（子項目） */
.footer-nav-list > li > ul {
  margin: 0 0 0 0;
  padding-left: 0;
}

.footer-nav-list > li > ul li {
  margin-bottom: 0.2rem;
}

.footer-nav-list > li > ul a {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  color: #444;
  padding: 0.15rem 0;
  transition: color 0.2s;
}

.footer-nav-list > li > ul a:hover {
  color: #000;
}

/* プライバシーポリシー・情報セキュリティ基本方針：メニュー下・細字・小さく */
.footer-legal {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 300;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #000;
  text-decoration: underline;
}
.footer-legal-sep {
  margin: 0 0.35rem;
  color: #999;
  font-weight: 300;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.copyright {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 300;
  color: #333;
}

/* ===== モバイルファースト：タブレット・PC ===== */
@media (min-width: 481px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    padding: 1rem 24px;
  }

  .main {
    padding: 0 24px 4rem;
  }

  .hero {
    margin: 0 -24px 3rem;
    padding: 4rem 24px;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
  }

  .nav-list > li > a,
  .nav-list > li > .nav-parent {
    padding: 0.6rem 0.85rem;
    border-bottom: none;
  }

  .nav-contact {
    margin: 0 0 0 0.5rem;
    text-align: left;
  }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .has-dropdown > a::after {
    border: none;
    display: none;
  }

  .dropdown li a {
    padding: 0.5rem 1rem;
  }
}

@media (min-width: 901px) {
  .footer-inner {
    padding: 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding-bottom: 2rem;
  }
}

/* ===== 以下：各ページ用スタイル（company, recruit, news, member, job, collum, contact）===== */

/* ===== company.css ===== */
/* ===== 企業情報ページ（Company）===== */

/* ----- ヒーロー（一番上：写真＋タイトル）ニュースページと同じレイアウト ----- */
.company-hero {
  position: relative;
  height: 35vh;
  min-height: 180px;
  max-height: 280px;
  overflow: hidden;
  background: #000;
}

.company-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}

.company-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
}

.company-hero-title {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  letter-spacing: 0.08em;
}

.company-hero-title h1 {
  margin: 0;
  font-size: clamp(1.25rem, 5vw, 28px);
  font-weight: 700;
}

.company-hero-title p {
  margin: 8px 0 0;
  font-size: 11px;
  opacity: 0.9;
  letter-spacing: 0.2em;
}

/* ----- メイン（Sticky Visual + Scroll Content）----- */
.company-main {
  padding: 28px 20px 80px;
  background: #eef0f3;
}

.company-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3.5vw, 34px);
}

/* ----- 企業情報ハブ（3リンク）----- */
.company-hub {
  padding: 48px 0 80px;
}

.company-hub-title {
  margin: 0 0 28px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #2F4566;
  text-align: center;
}

.company-hub-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 641px) {
  .company-hub-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 24px;
  }
}

.company-hub-lead {
  margin: 0 auto 32px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.85;
  color: #334155;
  text-align: center;
}

.company-hub-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  overflow: hidden;
}

.company-hub-card:hover {
  border-color: rgba(47, 69, 102, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.company-hub-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #eef0f3;
}

.company-hub-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.company-hub-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #2F4566;
  opacity: 0.9;
  margin-bottom: 6px;
}

.company-hub-name {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.company-hub-arrow {
  font-size: 20px;
  color: #2F4566;
  margin-top: auto;
}

.company-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
}

/* 左：スティッキー画像 */
.company-left {
  position: sticky;
  top: 22px;
  height: calc(100vh - 44px);
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-visual {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  opacity: 0;
  transform: translateY(8px) scale(0.99);
  transition: opacity 0.35s ease, transform 0.45s ease;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.08));
}

.company-visual img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.company-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4572e;
}

.company-sep {
  opacity: 0.4;
  margin: 0 6px;
}

/* 右：スクロールコンテンツ */
.company-right {
  padding-top: 200px;
}

.company-panel {
  background: transparent;
  border-radius: 18px;
  padding: 26px 0 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 28vh;
}

#philosophy {
  scroll-margin-top: 80px;
}

.company-panel:first-child {
  padding-top: 8px;
}

.company-panel:last-child {
  margin-bottom: 0;
  padding-bottom: 48px;
}

.company-minihead {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #111;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.company-minihead .company-dot {
  transform: translateY(1px);
}

.company-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* PC版のみ「社会に残す。」で改行 */
@media (min-width: 981px) {
  .company-panel h2 .company-h2-break::before {
    content: "\A";
    white-space: pre;
  }
}

.company-panel p {
  margin: 0;
  color: #111;
  opacity: 0.88;
  line-height: 2.05;
  font-size: 14px;
  max-width: 520px;
  white-space: pre-line;
}

.company-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 620px;
}

.company-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.company-card h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.company-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-weight: 800;
}

.company-en {
  color: #e4572e;
  font-weight: 900;
  font-size: 12px;
}

.company-card-wide {
  grid-column: 1 / -1;
}

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

/* ----- 代表挨拶（左固定写真＋右スクロール文章）----- */
.company-message {
  background: #fff;
  margin-top: 48px;
}

.company-message-wrap {
  width: 100%;
  max-width: none;
  padding: 0;
}

.company-message-section-title {
  margin: 0 auto 0;
  padding: 48px 0 32px;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #2F4566;
  text-align: center;
}

.company-message-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  min-height: 100vh;
}

.company-message-left {
  position: sticky;
  top: var(--header-height, 64px);
  height: calc(100vh - var(--header-height, 64px));
  min-height: calc(100vh - var(--header-height, 64px));
  overflow: hidden;
}

.company-message-left img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.company-message-right {
  padding: 0 clamp(16px, 4vw, 44px) 90px 0;
  max-width: 720px;
}

.company-message-title {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #0b1220;
}

.company-message-body {
  margin: 0;
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.02em;
  white-space: pre-line;
  color: #334155;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.company-message-sign {
  margin-top: 26px;
  text-align: right;
}

.company-message-sign img {
  display: inline-block;
  max-height: 48px;
  width: auto;
  height: auto;
}

@media (max-width: 980px) {
  .company-message-wrap {
    padding: 0;
  }

  .company-message-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .company-message-left {
    position: relative;
    top: auto;
    height: calc(100vh - var(--header-height, 64px));
    min-height: calc(100vh - var(--header-height, 64px));
  }

  .company-message-right {
    padding: 0 clamp(16px, 4vw, 44px) 72px;
  }

  .company-message-sign {
    text-align: right;
  }
}

/* ----- 会社概要 ----- */
.company-overview {
  background: #eef0f3;
  padding: 56px 20px 80px;
}

.company-overview-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ----- プライバシー・セキュリティ方針ページ ----- */
.policy-article {
  background: #fff;
  border-radius: 12px;
  padding: 32px clamp(20px, 4vw, 40px) 48px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  max-width: 720px;
  margin: 0 auto;
}

.policy-updated {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 24px;
}

.policy-article h2 {
  font-size: 16px;
  font-weight: 700;
  color: #2F4566;
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.policy-article h2:first-of-type {
  margin-top: 0;
}

.policy-article p,
.policy-article ul {
  margin: 0 0 1em;
  font-size: 14px;
  line-height: 1.9;
  color: #334155;
}

.policy-article ul {
  padding-left: 1.25em;
}

.policy-article a {
  color: #2F4566;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.company-overview-title {
  margin: 0 0 28px;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #2F4566;
  text-align: center;
}

.company-overview-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
}

.company-overview-list dt,
.company-overview-list dd {
  margin: 0;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  line-height: 1.6;
}

.company-overview-list dt {
  font-weight: 700;
  color: #2F4566;
}

.company-overview-list dd {
  color: #334155;
}

.company-overview-list > dt:last-of-type,
.company-overview-list > dd:last-of-type {
  border-bottom: none;
}

.company-overview-map {
  margin-top: 28px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  background: #fff;
}

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

@media (min-width: 641px) {
  .company-overview-map iframe {
    height: 360px;
  }

  .company-overview-list {
    grid-template-columns: 160px 1fr;
  }
}

@media (max-width: 540px) {
  .company-overview-list {
    grid-template-columns: 1fr;
  }

  .company-overview-list dd {
    padding-top: 4px;
    border-bottom: 1px solid #e2e8f0;
  }

  .company-overview-list dt {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 980px) {
  .company-overview {
    padding: 40px 16px 64px;
  }
}

/* ----- モバイル：見やすい縦積みレイアウト ----- */
@media (max-width: 980px) {
  .company-main {
    padding: 24px 0 64px;
  }

  .company-wrap {
    padding: 0 20px;
  }

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

  /* 上：画像エリア（1枚目のみ表示・スクロールで流れる） */
  .company-left {
    position: relative;
    width: 100%;
    height: 38vh;
    min-height: 220px;
    max-height: 320px;
    border-radius: 0;
    flex-shrink: 0;
    overflow: hidden;
  }

  .company-visual {
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 220px;
  }

  .company-visual img {
    object-fit: cover;
    padding: 0;
  }

  /* モバイルでは1枚目だけ表示（切り替えなし） */
  .company-visual img:not(:first-child) {
    display: none !important;
  }

  .company-visual img:first-child {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    object-fit: contain;
    object-position: center center;
  }

  /* 下：文章エリア */
  .company-right {
    padding-top: 0;
    padding-bottom: 24px;
    background: #eef0f3;
  }

  .company-panel {
    padding: 32px 0 40px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .company-panel:first-child {
    min-height: 0;
    padding-top: 36px;
    display: block;
  }

  .company-panel:last-child {
    margin-bottom: 0;
    padding-bottom: 48px;
  }

  .company-minihead {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .company-panel h2 {
    font-size: clamp(22px, 5.5vw, 28px);
    margin-bottom: 14px;
    line-height: 1.35;
  }

  .company-panel p {
    font-size: 15px;
    line-height: 2;
    max-width: none;
  }

  .company-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
    max-width: none;
  }

  .company-card {
    padding: 18px 16px;
  }

  .company-card h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .company-list,
  .company-list li {
    font-size: 14px;
  }

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

@media (min-width: 641px) {
  .company-hero {
    height: 260px;
    min-height: 260px;
    max-height: none;
  }

  .company-hero-title h1 {
    font-size: 28px;
  }

  .company-hero-title p {
    font-size: 12px;
    margin: 10px 0 0;
  }

  .company-main {
    padding: 36px 20px 72px;
  }
}

/* ===== recruit.css ===== */
/* ===== Recruit LP ===== */
:root {
  --recruit-bg: #ffffff;
  --recruit-text: #0f172a;
  --recruit-muted: #6b7280;
  --recruit-line: #e5e7eb;
  --recruit-ink: #111827;
  --recruit-dark: #0b0f19;
  --recruit-radius: 22px;
  --recruit-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  --recruit-accent: #111;
  --recruit-btn: #111827;
  --recruit-btnText: #fff;
  --recruit-max: 1120px;
  --recruit-pad: clamp(18px, 4vw, 44px);
}

body.recruit-page {
  margin: 0;
  color: var(--recruit-text);
  background: var(--recruit-bg);
}

.recruit-page .recruit-container {
  max-width: var(--recruit-max);
  margin: 0 auto;
  padding: 0 var(--recruit-pad);
}

/* helpers */
.recruit-page .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--recruit-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.recruit-page .kicker .dots {
  display: inline-flex;
  gap: 4px;
}

.recruit-page .kicker .dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #111;
  opacity: 0.7;
  display: block;
}

.recruit-page .recruit-h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #0b1020;
}

.recruit-page .recruit-subjp {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--recruit-muted);
  line-height: 1.9;
}

.recruit-page .recruit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--recruit-btn);
  color: var(--recruit-btnText);
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.16);
  transition: transform 0.05s ease, filter 0.2s ease;
}

.recruit-page .recruit-btn:hover {
  filter: brightness(0.98);
}

.recruit-page .recruit-btn:active {
  transform: translateY(1px);
}

.recruit-page .recruit-btn .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: 900;
}

.recruit-page .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #e8f7e9;
  color: #0d7a16;
}

/* スタート（About us）だけ斜めグレー、以降は単色グレー */
.recruit-page .diag {
  position: relative;
  overflow: hidden;
}

.recruit-page .about.diag::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 40%;
  width: 130%;
  height: 120%;
  background: #f3f4f6;
  transform: rotate(-10deg);
  transform-origin: center;
  z-index: -1;
}

.recruit-page .split {
  background: #2F4566;
}

.recruit-page .work.diag {
  background: #fff;
}

/* HERO */
.recruit-page .recruit-hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 0 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* リボン背景：丸ベース・スクロール連動のふにゃふにゃ変形（JSで --r-N-* を更新） */
.recruit-page .ribbon {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: saturate(1.1) contrast(1.05);
  opacity: 0.85;
  z-index: -2;
  will-change: transform;
  transition: transform 0.28s ease-out;
}

.recruit-page .ribbon.ribbon-1 {
  left: -120px;
  top: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 105, 180, 0.9), rgba(90, 140, 255, 0.75));
  transform: scaleX(var(--r-1-sx, 1)) scaleY(var(--r-1-sy, 1)) rotate(var(--r-1-rot, 0deg)) translate(var(--r-1-tx, 0), var(--r-1-ty, 0));
}

.recruit-page .ribbon.ribbon-2 {
  right: -100px;
  top: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 70% 30%, rgba(90, 140, 255, 0.85), rgba(255, 165, 0, 0.7));
  transform: scaleX(var(--r-2-sx, 1)) scaleY(var(--r-2-sy, 1)) rotate(var(--r-2-rot, 0deg)) translate(var(--r-2-tx, 0), var(--r-2-ty, 0));
}

.recruit-page .ribbon.ribbon-3 {
  left: 15%;
  bottom: 40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.8), rgba(255, 105, 180, 0.65));
  transform: scaleX(var(--r-3-sx, 1)) scaleY(var(--r-3-sy, 1)) rotate(var(--r-3-rot, 0deg)) translate(var(--r-3-tx, 0), var(--r-3-ty, 0));
}

.recruit-page .ribbon.ribbon-4 {
  right: 10%;
  bottom: 60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 40% 60%, rgba(255, 105, 180, 0.75), rgba(90, 140, 255, 0.7));
  transform: scaleX(var(--r-4-sx, 1)) scaleY(var(--r-4-sy, 1)) rotate(var(--r-4-rot, 0deg)) translate(var(--r-4-tx, 0), var(--r-4-ty, 0));
}

.recruit-page .ribbon.ribbon-5 {
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  margin-left: -110px;
  margin-top: -110px;
  background: radial-gradient(circle at 50% 50%, rgba(90, 140, 255, 0.6), rgba(255, 165, 0, 0.5));
  opacity: 0.7;
  transform: scaleX(var(--r-5-sx, 1)) scaleY(var(--r-5-sy, 1)) rotate(var(--r-5-rot, 0deg)) translate(var(--r-5-tx, 0), var(--r-5-ty, 0));
}

.recruit-page .ribbon.ribbon-6 {
  right: -60px;
  bottom: 20px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 60% 70%, rgba(255, 165, 0, 0.75), rgba(255, 105, 180, 0.6));
  transform: scaleX(var(--r-6-sx, 1)) scaleY(var(--r-6-sy, 1)) rotate(var(--r-6-rot, 0deg)) translate(var(--r-6-tx, 0), var(--r-6-ty, 0));
}

/* モバイル：ヒーローの丸をばらけさせて自然なレイアウトに */
@media (max-width: 768px) {
  .recruit-page .ribbon.ribbon-1 {
    left: -100px;
    top: 2%;
    width: 260px;
    height: 260px;
  }
  .recruit-page .ribbon.ribbon-2 {
    right: -90px;
    top: 18%;
    width: 280px;
    height: 280px;
  }
  .recruit-page .ribbon.ribbon-3 {
    left: -60px;
    bottom: 28%;
    width: 220px;
    height: 220px;
  }
  .recruit-page .ribbon.ribbon-4 {
    right: -70px;
    bottom: 12%;
    width: 240px;
    height: 240px;
  }
  .recruit-page .ribbon.ribbon-5 {
    left: 50%;
    top: 38%;
    margin-left: -90px;
    margin-top: -90px;
    width: 180px;
    height: 180px;
  }
  .recruit-page .ribbon.ribbon-6 {
    right: -50px;
    bottom: -40px;
    width: 260px;
    height: 260px;
  }

  .recruit-page .recruit-hero h1 {
    white-space: nowrap;
    font-size: clamp(28px, 7vw, 44px);
    letter-spacing: 0.06em;
  }
}

.recruit-page .recruit-hero-inner {
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 80px var(--recruit-pad) 52px;
}

.recruit-page .recruit-hero-copy {
  will-change: transform;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.recruit-page .recruit-hero-label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #0f172a;
  opacity: 0.85;
  animation: recruit-hero-tagline-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.recruit-page .recruit-hero h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #0f172a;
  text-transform: uppercase;
  animation: recruit-hero-title-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.recruit-page .recruit-hero .tagline {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 12px;
  color: #111;
  opacity: 0.9;
  letter-spacing: 0.12em;
  animation: recruit-hero-tagline-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes recruit-hero-title-in {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes recruit-hero-tagline-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.recruit-page .scroll {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #111;
  opacity: 0.7;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.recruit-page .scroll .chev {
  width: 1px;
  height: 18px;
  background: #111;
  position: relative;
}

.recruit-page .scroll .chev::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: -2px;
  width: 9px;
  height: 9px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: rotate(45deg);
  opacity: 0.8;
}

/* ABOUT */
.recruit-page .recruit-section {
  padding: 72px 0;
}

.recruit-page .about {
  padding-top: 56px;
}

.recruit-page .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.recruit-page .illus {
  border-radius: var(--recruit-radius);
  overflow: hidden;
  box-shadow: var(--recruit-shadow);
  background: #fff;
}

.recruit-page .illus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-page .illus.illus--transparent {
  background: transparent;
  box-shadow: none;
}

.recruit-page .sidebox {
  padding: 0;
}

.recruit-page .sidebox h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.recruit-page .sidebox .recruit-subjp {
  margin: 0 0 18px;
}

.recruit-page .side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.recruit-page .recruit-btn.ghost {
  background: #fff;
  color: #111;
  border: 1px solid var(--recruit-line);
  box-shadow: none;
}

.recruit-page .recruit-btn.ghost .dot {
  background: #111;
  color: #fff;
}

/* INTERVIEW */

.recruit-page .iv-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 34px;
  gap: 34px;
  align-items: center;
}

.recruit-page .iv-photo {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--recruit-shadow);
  background: #fff;
}

.recruit-page .iv-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.recruit-page .iv-card {
  position: relative;
  padding: 18px 0 0;
}

.recruit-page .iv-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.recruit-page .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
  flex: 0 0 auto;
}

.recruit-page .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-page .iv-title {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
}

.recruit-page .iv-name {
  margin: 8px 0 0;
  color: var(--recruit-muted);
  font-size: 12px;
  line-height: 1.8;
}

.recruit-page .iv-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.recruit-page .iv-nav button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--recruit-line);
  background: #fff;
  cursor: pointer;
}

.recruit-page .iv-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.recruit-page .iv-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  display: block;
}

.recruit-page .iv-dots i.active {
  background: #111827;
}

/* WORK STYLE */
.recruit-page .work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.recruit-page .ws-card {
  background: #fff;
  border-radius: var(--recruit-radius);
  padding: 18px 18px 20px;
  box-shadow: var(--recruit-shadow);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruit-page .ws-ico {
  height: 110px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(250, 204, 21, 0.18), rgba(16, 185, 129, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.recruit-page .ws-ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-page .ws-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.recruit-page .ws-desc {
  margin: 0;
  color: var(--recruit-muted);
  font-size: 12px;
  line-height: 1.9;
}

/* JOBS */
.recruit-page .jobs {
  background: #2F4566;
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.recruit-page .jobs .recruit-h2 {
  color: #fff;
}

.recruit-page .jobs .recruit-subjp {
  color: rgba(255, 255, 255, 0.72);
}

.recruit-page .job-chips {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.recruit-page .chip {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.recruit-page .chip .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recruit-page .chip .icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.recruit-page .jobs .to-list {
  margin-top: 26px;
  display: flex;
  justify-content: flex-start;
}

.recruit-page .jobs .to-list .recruit-btn {
  background: #fff;
  color: #111;
}

.recruit-page .jobs .to-list .recruit-btn .dot {
  background: #2F4566;
  color: #fff;
}

/* Split cards */
.recruit-page .split {
  padding: 64px 0 72px;
}

.recruit-page .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.recruit-page .split-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: var(--recruit-radius);
  padding: 22px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  overflow: hidden;
}

.recruit-page .split-card img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
}

.recruit-page .split-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.recruit-page .split-card p {
  margin: 8px 0 14px;
  color: var(--recruit-muted);
  font-size: 12px;
  line-height: 1.9;
}

.recruit-page .split-card .recruit-btn {
  height: 40px;
  font-size: 12px;
}

/* ENTRY */
.recruit-page .entry {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(120% 140% at 30% 40%, rgba(255, 230, 0, 0.95), rgba(70, 120, 255, 0.92), rgba(120, 0, 255, 0.86));
}

.recruit-page .entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
}

.recruit-page .entry .recruit-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.recruit-page .entry h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.recruit-page .entry .right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.recruit-page .entry .apply {
  background: #F2B300;
  color: #fff;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.recruit-page .entry .apply .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #F2B300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.recruit-page .entry .link {
  color: #fff;
  opacity: 0.92;
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* responsive */
@media (max-width: 920px) {
  .recruit-page .about-grid,
  .recruit-page .iv-wrap {
    grid-template-columns: 1fr;
  }

  .recruit-page .side-actions {
    justify-content: flex-end;
  }

  .recruit-page .iv-photo img {
    height: 320px;
  }

  .recruit-page .iv-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .recruit-page .iv-card .recruit-btn,
  .recruit-page .iv-card .iv-nav {
    align-self: flex-end;
  }

  .recruit-page .jobs .to-list {
    display: flex;
    justify-content: flex-end;
  }

  .recruit-page .work-grid {
    grid-template-columns: 1fr;
  }

  .recruit-page .ws-ico {
    width: 100%;
    height: 160px;
  }

  .recruit-page .split-grid {
    grid-template-columns: 1fr;
  }

  .recruit-page .split-card {
    grid-template-columns: 1fr;
  }

  .recruit-page .split-card img {
    width: 100%;
    height: 160px;
  }

  .recruit-page .split-card > div {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .recruit-page .split-card .recruit-btn {
    align-self: flex-end;
  }

  .recruit-page .entry .recruit-container {
    flex-direction: column;
    align-items: stretch;
  }

  .recruit-page .entry .right {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ===== news.css ===== */
/* ===== NEWS ===== */
:root {
  --text: #111;
  --muted: #6b7280;
  --line: #e5e7eb;
  --tab: #ffffff;
  --tabActive: #2f4566;
  --bg: #ffffff;
  --max: 980px;
  --badgeRed: #ff4d4f;
  --badgeBlue: #2563eb;
}

* {
  box-sizing: border-box;
}

/* body font inherited from base style.css */
/* ===== HERO（モバイルファースト・画面に合わせる） ===== */
.hero {
  position: relative;
  height: 35vh;
  min-height: 180px;
  max-height: 280px;
  overflow: hidden;
  background: #000;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
}

.hero-title {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  letter-spacing: 0.08em;
}

.hero-title h1 {
  margin: 0;
  font-size: clamp(1.25rem, 5vw, 28px);
  font-weight: 700;
}

.hero-title p {
  margin: 8px 0 0;
  font-size: 11px;
  opacity: 0.9;
  letter-spacing: 0.2em;
}

/* ===== LAYOUT（モバイルファースト） ===== */
.section {
  padding: 24px 16px 56px;
  width: 100%;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

/* ===== TABS（モバイル：画面幅に合わせる） ===== */
.tabs-wrap {
  display: flex;
  justify-content: center;
  margin: 10px 0 28px;
}

.tabs {
  display: flex;
  width: 100%;
  max-width: var(--max);
  border: 1px solid var(--line);
  background: #fff;
}

.tab {
  flex: 1;
  min-width: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  background: var(--tab);
  color: #1f2937;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  padding: 0 8px;
}

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

.tab[aria-selected="true"] {
  background: var(--tabActive);
  color: #fff;
  font-weight: 700;
}

/* ===== LIST（モバイル：縦積み） ===== */
.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.news-date {
  width: auto;
  color: #374151;
  font-size: 12px;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  min-width: 64px;
  padding: 0 8px;
  font-size: 11px;
  border: 1px solid currentColor;
  line-height: 1;
  white-space: nowrap;
  background: #fff;
}

.badge.red {
  color: var(--badgeRed);
}

.badge.blue {
  color: var(--badgeBlue);
}

.news-title {
  flex: 1;
  font-size: 13px;
  color: #111827;
  text-decoration: none;
  line-height: 1.55;
  width: 100%;
}

.news-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== MORE ===== */
.more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.more-btn {
  width: 100%;
  max-width: 220px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: #111827;
  font-size: 14px;
  cursor: pointer;
}

.more-btn:hover {
  background: #f9fafb;
}

/* ===== モバイルファースト：タブレット・PC ===== */
@media (min-width: 641px) {
  .hero {
    height: 260px;
    min-height: 260px;
    max-height: none;
  }

  .hero-title h1 {
    font-size: 28px;
  }

  .hero-title p {
    font-size: 12px;
    margin: 10px 0 0;
  }

  .section {
    padding: 56px 20px 72px;
  }

  .tabs-wrap {
    margin: 12px 0 44px;
  }

  .tabs {
    display: inline-flex;
    width: auto;
  }

  .tab {
    flex: none;
    min-width: 180px;
    height: 42px;
    font-size: 14px;
    padding: 0 18px;
  }

  .news-item {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
  }

  .news-date {
    width: 110px;
    font-size: 13px;
  }

  .news-title {
    font-size: 14px;
  }

  .badge {
    height: 22px;
    min-width: 70px;
    padding: 0 10px;
    font-size: 12px;
  }

  .more-wrap {
    margin-top: 44px;
  }

  .more-btn {
    width: 220px;
  }
}

/* ===== news-child.css ===== */
/* ===== NEWS詳細 ===== */
:root {
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --card: #ffffff;
  --primary: #2f4566;
  --badgeBlue: #2563eb;
  --badgeRed: #ff4d4f;
  --max: 820px;
  --maxWide: 980px;
}

* {
  box-sizing: border-box;
}

/* body font inherited from base style.css */
a {
  color: inherit;
}

/* ===== Breadcrumb（モバイルファースト） ===== */
.breadcrumb {
  padding: 12px 16px;
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid #f3f4f6;
}

.breadcrumb .wrap {
  max-width: var(--maxWide);
  margin: 0 auto;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb .sep {
  opacity: 0.6;
}

/* ===== Main（モバイルファースト） ===== */
.article {
  background: var(--card);
  border: 1px solid #f3f4f6;
  padding: 24px 16px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  min-width: 58px;
  padding: 0 10px;
  font-size: 12px;
  border: 1px solid currentColor;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  background: #fff;
  margin-bottom: 14px;
}

.badge.blue {
  color: var(--badgeBlue);
}

.badge.red {
  color: var(--badgeRed);
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(1.125rem, 4vw, 22px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.date {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.content {
  font-size: 13px;
  line-height: 2;
  color: #374151;
  white-space: pre-wrap;
}

.content p {
  margin: 0 0 1em;
  white-space: normal;
}

.content p:last-child {
  margin-bottom: 0;
}

.caption {
  margin: 18px 0 10px;
  font-size: 12px;
  color: var(--muted);
}

.article-img {
  width: 100%;
  border: 1px solid #f3f4f6;
  display: block;
  margin-top: 12px;
}

.article-cta-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

/* Prev/Next（左：前の記事、右：次の記事） */
.pn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.pn a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 10px;
  text-decoration: none;
  color: #374151;
  font-size: 12px;
}

.pn a:hover {
  background: #f9fafb;
}

.pn .pn-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.pn .prev {
  border-right: none;
  border-bottom: 1px solid var(--line);
  justify-content: flex-start;
}

.pn .next {
  justify-content: flex-start;
  text-align: left;
}

.pn .pn-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pn .arrow {
  font-size: 16px;
  opacity: 0.7;
}

/* ===== Latest list（モバイル：縦積み） ===== */
.latest {
  margin-top: 40px;
  text-align: center;
}

.latest h2 {
  font-size: 14px;
  margin: 0 0 14px;
  letter-spacing: 0.08em;
  border-bottom: none;
}

.news-list {
  max-width: var(--maxWide);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  text-align: left;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.news-date {
  width: auto;
  color: #374151;
  font-size: 12px;
  white-space: nowrap;
}

.badgeRect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  min-width: 64px;
  padding: 0 10px;
  font-size: 12px;
  border: 1px solid currentColor;
  background: #fff;
  line-height: 1;
  white-space: nowrap;
}

.badgeRect.red {
  color: var(--badgeRed);
}

.badgeRect.blue {
  color: var(--badgeBlue);
}

.news-title {
  flex: 1;
  font-size: 13px;
  color: #111827;
  text-decoration: none;
  line-height: 1.55;
  width: 100%;
}

.news-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.to-list {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.to-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.to-list a:hover {
  filter: brightness(0.98);
}

/* ===== モバイルファースト：タブレット・PC ===== */
@media (min-width: 721px) {
  .breadcrumb {
    padding: 14px 20px;
    font-size: 12px;
  }

  .section {
    padding: 40px 20px 80px;
  }

  .article {
    padding: 42px 46px;
  }

  h1 {
    font-size: 22px;
  }

  .date {
    font-size: 12px;
    margin-bottom: 22px;
  }

  .content {
    font-size: 14px;
    line-height: 2.05;
  }

  .pn {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .pn a {
    padding: 16px 10px;
    font-size: 13px;
  }

  .pn .prev {
    border-right: 1px solid var(--line);
    border-bottom: none;
  }

  .pn .next {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
  }

  .latest {
    margin-top: 56px;
  }

  .latest h2 {
    font-size: 16px;
    margin: 0 0 18px;
    border-bottom: none;
  }

  .news-item {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
  }

  .news-date {
    width: 110px;
    font-size: 13px;
  }

  .news-title {
    font-size: 14px;
  }

  .to-list a {
    width: 240px;
    height: 46px;
    font-size: 14px;
  }
}

/* ===== member-child.css ===== */
/* ===== メンバーインタビュー（子ページ）===== */
:root {
  --member-accent: #2F4566;
  --member-muted: #5c6b7e;
  --member-bg: #fafbfc;
  --member-border: #e8ecf0;
  --member-article-width: 720px;
  --member-wide: 1000px;
}

.member-child-page .member-child-main {
  min-height: 60vh;
  padding: 0 0 80px;
}

/* ----- サムネイルヒーロー ----- */
.member-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  max-height: 58vh;
  overflow: hidden;
  background: #111;
}

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

.member-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 20px 28px;
}

.member-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
}

.member-hero-title {
  margin: 0;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.02em;
  max-width: var(--member-wide);
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .member-hero-overlay {
    padding: 48px 24px 40px;
  }
  .member-hero-title {
    padding: 0 24px;
  }
}

/* ----- 記事コンテナ ----- */
.member-article {
  max-width: var(--member-wide);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .member-article {
    padding: 0 24px;
  }
}

/* ----- プロフィール ----- */
.member-profile {
  display: grid;
  gap: 24px;
  margin-top: -24px;
  margin-bottom: 48px;
  padding: 28px 24px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(47, 69, 102, 0.08);
  border: 1px solid var(--member-border);
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .member-profile {
    grid-template-columns: 160px 1fr;
    gap: 32px;
    padding: 32px 36px 40px;
    margin-top: -32px;
  }
}

.member-profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid var(--member-border);
}

@media (min-width: 640px) {
  .member-profile-photo {
    width: 160px;
    height: 160px;
    margin: 0;
  }
}

.member-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-profile-body {
  min-width: 0;
}

.member-profile-name {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.02em;
}

.member-profile-role {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--member-accent);
  font-weight: 700;
}

.member-profile-lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--member-muted);
}

.member-career {
  margin: 0;
  font-size: 13px;
}

.member-career dt {
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.member-career dd {
  margin: 0;
  color: var(--member-muted);
  line-height: 1.8;
}

.member-career ul {
  list-style: none;
  padding: 0;
}

.member-career li {
  position: relative;
  padding-left: 1.2em;
}

.member-career li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--member-accent);
}

/* ----- 目次 ----- */
.member-toc {
  margin-bottom: 48px;
  padding: 24px 24px 28px;
  background: var(--member-bg);
  border-radius: 12px;
  border-left: 4px solid var(--member-accent);
}

.member-toc-title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.05em;
}

.member-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.member-toc-list li {
  counter-increment: toc;
  margin-bottom: 10px;
}

.member-toc-list li:last-child {
  margin-bottom: 0;
}

.member-toc-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--member-muted);
  font-size: 14px;
  transition: color .2s;
}

.member-toc-list a::before {
  content: counter(toc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--member-accent);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  flex-shrink: 0;
}

.member-toc-list a:hover {
  color: var(--member-accent);
}

/* ----- 本文 ----- */
.member-body {
  max-width: var(--member-wide);
  margin: 0 auto;
}

.member-section {
  margin-bottom: 56px;
}

.member-section:last-of-type {
  margin-bottom: 40px;
}

.member-section-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.02em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--member-accent);
}

.member-body p {
  margin: 0 0 1.4em;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

.member-body p:last-child {
  margin-bottom: 0;
}

/* 画像ブロック：コメントなし・角四角・横長16:9 */
.member-figure {
  margin: 28px 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

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

.member-figure figcaption {
  display: none;
}

/* ----- 五人のインタビュー一覧（一番下） ----- */
.member-others {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--member-border);
}

.member-others-heading {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.05em;
}

.member-others-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.member-others-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--member-border);
  transition: box-shadow .2s, border-color .2s;
}

.member-others-item:hover {
  box-shadow: 0 8px 24px rgba(47, 69, 102, 0.12);
  border-color: var(--member-accent);
}

.member-others-thumb {
  flex-shrink: 0;
  width: 100px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8ecf0;
}

.member-others-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-others-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px;
  min-width: 0;
}

.member-others-item-title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #111;
  line-height: 1.4;
}

.member-others-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.member-others-role {
  display: block;
  font-size: 12px;
  color: var(--member-muted);
}

@media (min-width: 560px) {
  .member-others-thumb {
    width: 120px;
  }
  .member-others-body {
    padding: 20px 24px;
    gap: 8px;
  }
  .member-others-item-title {
    font-size: 15px;
  }
}

/* ===== job.css ===== */
/* ===== 職種紹介・募集要項ページ（Jobs）===== */

.job-page {
  --job-bg: #ffffff;
  --job-paper: #ffffff;
  --job-text: #0f172a;
  --job-muted: #64748b;
  --job-line: #e5e7eb;
  --job-line2: #cbd5e1;
  --job-blue: #2F4566;
  --job-navy: #0b1220;
  --job-radius: 18px;
  --job-radius2: 14px;
  --job-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --job-max: 1040px;
  --job-pad: clamp(16px, 3.6vw, 34px);
}

/* ----- ヒーロー（一番上：画像＋タイトル）----- */
.job-hero {
  position: relative;
  height: 35vh;
  min-height: 180px;
  max-height: 280px;
  overflow: hidden;
  background: #000;
}

.job-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}

.job-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
}

.job-hero-title {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  letter-spacing: 0.08em;
}

.job-hero-title h1 {
  margin: 0;
  font-size: clamp(1.25rem, 5vw, 28px);
  font-weight: 700;
}

.job-hero-title p {
  margin: 8px 0 0;
  font-size: 11px;
  opacity: 0.9;
  letter-spacing: 0.2em;
}

/* ----- メイン・レイアウト ----- */
.job-main {
  padding: 0 0 80px;
  background: var(--job-bg);
  color: var(--job-text);
}

.job-wrap {
  max-width: var(--job-max);
  margin: 0 auto;
  padding: 18px var(--job-pad) 0;
}

.job-breadcrumb {
  font-size: 12px;
  color: var(--job-muted);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}

.job-breadcrumb a {
  color: var(--job-muted);
}

.job-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.job-breadcrumb-sep {
  opacity: 0.6;
}

.job-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 18px;
}

.job-page-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--job-text);
}

.job-subnote {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--job-muted);
}

.job-divider {
  height: 1px;
  background: var(--job-line);
  margin: 18px 0 22px;
}

.job-section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--job-muted);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.job-section-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--job-text);
}

/* ----- フレーム・アコーディオン ----- */
.job-frame {
  border: 1px solid var(--job-line2);
  border-radius: var(--job-radius);
  padding: 18px;
  background: var(--job-paper);
}

.job-acc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.job-acc-item {
  border: 1px solid var(--job-line2);
  border-radius: var(--job-radius2);
  overflow: hidden;
  background: #fff;
}

.job-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.job-acc-head:hover {
  background: #f8fafc;
}

.job-acc-left {
  min-width: 0;
}

.job-acc-role {
  font-weight: 900;
  font-size: 14px;
  margin: 0 0 6px;
  color: var(--job-text);
}

.job-acc-desc {
  margin: 0;
  font-size: 12px;
  color: var(--job-muted);
  line-height: 1.8;
  max-width: 740px;
}

.job-acc-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--job-line2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--job-blue);
  background: #fff;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.job-acc-item[data-open="true"] .job-acc-icon {
  transform: rotate(45deg);
}

.job-acc-panel {
  height: 0;
  overflow: hidden;
  border-top: 1px solid var(--job-line);
  transition: height 0.28s ease;
}

.job-acc-inner {
  padding: 16px 16px 18px;
}

/* ----- 詳細ブロック ----- */
.job-block-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  color: var(--job-text);
}

.job-bullets {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #111827;
  font-size: 12px;
  line-height: 1.9;
}

.job-bullets li {
  margin: 4px 0;
  color: #111827;
}

.job-muted {
  color: var(--job-muted);
  display: block;
  margin-top: 6px;
}

.job-spec {
  border-top: 1px solid var(--job-line);
  margin-top: 14px;
  padding-top: 12px;
}

.job-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 12px;
}

.job-spec-table th,
.job-spec-table td {
  border-bottom: 1px solid var(--job-line);
  padding: 12px 10px;
  vertical-align: top;
  line-height: 1.9;
}

.job-spec-table th {
  width: 140px;
  color: var(--job-text);
  font-weight: 900;
  background: #fff;
}

.job-spec-table td {
  color: #111827;
}

.job-entry-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.job-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--job-navy);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.18);
}

.job-entry-btn:hover {
  opacity: 0.95;
  color: #fff;
}

.job-entry-go {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* ----- バナー ----- */
.job-banner {
  margin-top: 44px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--job-shadow);
  background: #0b1d33;
  color: #fff;
  position: relative;
}

.job-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 160px;
}

.job-banner-img {
  background:
    linear-gradient(120deg, rgba(21, 102, 255, 0.55), rgba(21, 102, 255, 0)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=60");
  background-size: cover;
  background-position: center;
}

.job-banner-copy {
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12));
}

.job-banner-copy h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.job-banner-copy p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.job-btn-pill {
  margin-top: 8px;
  width: fit-content;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.job-btn-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.job-btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

.job-banner .job-btn-dot {
  background: #e53935;
  opacity: 1;
}

/* ----- responsive ----- */
@media (min-width: 768px) {
  .job-hero {
    height: 260px;
    min-height: 260px;
    max-height: none;
  }

  .job-hero-title h1 {
    font-size: 28px;
  }

  .job-hero-title p {
    font-size: 12px;
    margin: 10px 0 0;
  }
}

@media (max-width: 860px) {
  .job-page-head {
    flex-wrap: wrap;
  }

  .job-frame {
    padding: 14px;
  }

  .job-spec-table th {
    width: 120px;
  }

  .job-banner-inner {
    grid-template-columns: 1fr;
  }

  .job-banner-img {
    min-height: 140px;
  }
}

/* ===== collum.css ===== */
/* ===== ページヒーロー（写真＋タイトル） ===== */
.page-hero {
  position: relative;
  height: 35vh;
  min-height: 180px;
  max-height: 280px;
  overflow: hidden;
  background: #000;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
}

.page-hero-title {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  letter-spacing: 0.08em;
}

.page-hero-title h1 {
  margin: 0;
  font-size: clamp(1.25rem, 5vw, 28px);
  font-weight: 700;
}

.page-hero-title p {
  margin: 8px 0 0;
  font-size: 11px;
  opacity: 0.9;
  letter-spacing: 0.2em;
}

@media (min-width: 641px) {
  .page-hero {
    height: 260px;
    min-height: 260px;
    max-height: none;
  }

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

  .page-hero-title p {
    font-size: 12px;
    margin: 10px 0 0;
  }
}

/* ===== コラムページ ===== */
.column-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 56px;
  width: 100%;
}

.column-lead {
  display: none;
}

/* タブ：中央寄せ・同じ大きさ・小さく */
.column-tabs-wrap {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.column-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.column-tab {
  width: 64px;
  min-width: 64px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5e7eb;
  background: #fff;
  color: #1f2937;
  font-size: 11px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  padding: 0 6px;
}

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

.column-tab[aria-selected="true"] {
  background: #2f4566;
  color: #fff;
  font-weight: 600;
}

/* 検索 */
.column-search-wrap {
  margin-bottom: 24px;
}

.column-search-label {
  display: block;
  font-size: 12px;
  color: #374151;
  margin-bottom: 6px;
}

.column-search-input {
  width: 100%;
  max-width: 320px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
}

.column-search-input::placeholder {
  color: #9ca3af;
}

.column-no-result {
  margin: 24px 0 0;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

/* サムネイル＋タイトルのグリッド（左揃え） */
.column-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.column-card {
  margin: 0;
}

.column-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.column-link:hover {
  opacity: 0.88;
}

.column-link:hover .column-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* サムネイル：16:9 横長（角丸なし） */
.column-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  background: #e2e8f0;
  margin-bottom: 10px;
}

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

/* タイトル：小さく・太字にしない */
.column-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.45;
}

/* タブレット：2カラム */
@media (min-width: 640px) {
  .column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .column-wrap {
    padding: 32px 20px 64px;
  }
}

/* PC：3カラム */
@media (min-width: 900px) {
  .column-tabs-wrap {
    margin-bottom: 20px;
  }

  .column-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .column-wrap {
    padding: 40px 24px 72px;
  }

  .column-title {
    font-size: 0.8125rem;
  }
}

/* ===== contact.css ===== */
/* ===== お申し込み / お問い合わせ ===== */
:root {
  --contact-bg: #f3f7fb;
  --contact-card: #ffffff;
  --contact-text: #0f172a;
  --contact-muted: #6b7280;
  --contact-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  --contact-radius: 14px;
  --contact-green: #18b300;
  --contact-navy: #0b3a63;
  --contact-max: 900px;
}

body.contact-page {
  background: var(--contact-bg);
}

.contact-wrap {
  max-width: var(--contact-max);
  margin: 0 auto;
  padding: 24px 16px 40px;
}

/* モバイルファースト：1カラム → 861px以上で2カラム */
.contact-wrap .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-wrap .card {
  background: var(--contact-card);
  border-radius: var(--contact-radius);
  box-shadow: var(--contact-shadow);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}

.contact-wrap .card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--contact-navy);
}

.contact-wrap .card.green::before {
  background: var(--contact-green);
}

.contact-wrap .card.navy::before {
  background: var(--contact-navy);
}

.contact-wrap .card h3 {
  margin: 4px 0 6px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.contact-wrap .card p {
  margin: 0;
  color: var(--contact-text);
  font-size: 12px;
  line-height: 1.65;
}

.contact-wrap .muted {
  color: var(--contact-muted);
}

/* ===== LINE card ===== */
.contact-wrap .line-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.contact-wrap .qr {
  margin: 4px auto 0;
  width: 120px;
  height: 120px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-wrap .qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-wrap .line-btn {
  margin: 2px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  background: var(--contact-green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  border-radius: 0;
  box-shadow: 0 6px 16px rgba(24, 179, 0, 0.18);
  transition: transform 0.05s ease, filter 0.2s ease;
}

.contact-wrap .line-btn:hover {
  filter: brightness(0.98);
  color: #fff;
}

.contact-wrap .line-btn:active {
  transform: translateY(1px);
}

.contact-wrap .line-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-wrap .line-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== メールでお問い合わせ（上揃え） ===== */
.contact-wrap .email-box {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.contact-wrap .email-time {
  margin-top: 0;
  font-size: 12px;
  color: var(--contact-text);
}

.contact-wrap .mail-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.contact-wrap .mail-link:hover {
  opacity: 0.85;
}

.contact-wrap .email-address {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--contact-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-wrap .email-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--contact-navy);
  opacity: 0.9;
}

.contact-wrap .email-note {
  margin: 0;
  font-size: 11px;
  color: var(--contact-muted);
  line-height: 1.6;
}

/* ===== reservation big card ===== */
.contact-wrap .big {
  margin-top: 14px;
  padding: 20px 18px 18px;
}

.contact-wrap .big::before {
  background: var(--contact-navy);
}

.contact-wrap .big-title {
  text-align: center;
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--contact-navy);
}

.contact-wrap .big-underline {
  width: 32px;
  height: 2px;
  background: var(--contact-navy);
  border-radius: 999px;
  margin: 6px auto 10px;
}

.contact-wrap .big-sub {
  text-align: center;
  margin: 0 0 12px;
  color: var(--contact-muted);
  font-size: 11px;
}

.contact-wrap .iframe-wrap {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* オンライン予約：縦長・中はスクロールしない（高さで収める） */
.contact-wrap iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
  background: #fff;
  overflow: hidden;
}

/* ===== モバイルファースト：タブレット・PC ===== */
@media (min-width: 861px) {
  .contact-wrap .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .contact-wrap .email-address {
    font-size: 18px;
  }

  .contact-wrap iframe {
    height: 620px;
  }
}

/* ===== 事業内容ページ：サービスカード ===== */
.service-section {
  background: #f4f4f4;
  padding: 48px 20px 100px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.service-card + .service-card {
  margin-top: 50px;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-card.reverse .service-label {
  left: auto;
  right: 20px;
}

.service-image {
  flex: 1;
  position: relative;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
}

.service-label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #375368;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #253652;
}

.service-content p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.service-content .service-metric {
  margin-bottom: 20px;
  font-size: 15px;
}

.service-content .service-metric strong {
  color: #253652;
}

.skill-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.skill-cta-row .skill-grid {
  margin-bottom: 0;
}

.skill-cta-row .sv-cta {
  margin-top: 0;
  flex-shrink: 0;
}

.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.skill-grid img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.more-btn {
  display: inline-block;
  background: #2c3e50;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.more-btn:hover {
  background: #1a252f;
}

@media (max-width: 900px) {
  .service-section {
    padding-left: 0;
    padding-right: 0;
  }

  .service-card {
    flex-direction: column;
    padding: 30px 20px;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }

  .service-card.reverse {
    flex-direction: column;
  }

  .skill-grid img {
    width: 56px;
    height: 56px;
  }

  .skill-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .skill-cta-row .sv-cta {
    align-self: flex-end;
  }

  .skill-grid {
    justify-content: flex-start;
  }
}

/* ===== オープニングシャッター（index.html のみ） ===== */
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1e1e1e;
  z-index: 9999;
  animation: byeShutter 2.6s forwards;
  pointer-events: none;
}

.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #f3f3f3;
  width: 0;
  height: 1px;
  animation: shutterOpen 2.6s forwards;
}

/* 進捗％：画面中心に固定表示（線の少し上） */
.shutter-progress {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 32px));
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 8vw, 56px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #f3f3f3;
  opacity: 0.92;
  pointer-events: none;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

