/* =============================================
   PLUS PIVOT - Mid Career Recruitment Page
   ============================================= */

/* --- Base / Reset --- */
:root {
  --primary: #20B2D3;
  --primary-dark: #01448D;
  --text-dark: #555555;
  --text-secondary: #5A5A5A;
  --text-muted: #9E9E9E;
  --bg-light: #F5F5F5;
  --bg-blue-light: #E8F6FA;
  --footer-bg: #212529;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  background: linear-gradient(180deg, #feffff 0%, #e8ecfe 100%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
  color: var(--primary);
}

.big-font {
  font-size: 1.75rem;
}

.blue {
  color: var(--primary);
}

/* --- Section Common --- */
.section-eng-title {
  font-size: 120px;
  font-weight: 700;
  color: rgba(32, 178, 211, 0.08);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  pointer-events: none;
  z-index: 0;
  margin-bottom: -40px;
}

.section-header {
  position: relative;
  margin-bottom: 80px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 65px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
}

/* --- Navigation --- */
.navbar-recruit {
  background: rgb(255 255 255 / .8);
  box-shadow: 4px 4px 10px rgb(0 0 0 / .5);
  transition: .5s;
  height: 96px;
  z-index: 1000;
}

.navbar-recruit .navbar-brand img {
  height: 48px;
  width: auto;
}

.btn-recruit-badge {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 4px;
  margin-left: 12px;
  border: none;
}

.btn-recruit-badge:hover {
  background: #1a9ab8;
  color: #fff;
}

.navbar-recruit .nav-link {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 10px !important;
  white-space: nowrap;
}

.btn-entry-nav {
  background: var(--footer-bg);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .5s;
}

.btn-entry-nav:hover {
  background: #333;
  color: #fff !important;
  border: 2px solid var(--primary);
}

/* Hamburger Button */
.hamburger-btn {
  width: 40px;
  height: 40px;
  padding: 8px 6px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* SP Offcanvas Menu */
.sp-offcanvas {
  width: 300px !important;
  background: #fff;
}

.sp-offcanvas .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.sp-close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
}

.sp-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-nav-links li {
  border-bottom: 1px solid #eee;
}

.sp-nav-links li a {
  display: block;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.sp-nav-links li a:hover {
  background: var(--bg-light);
  opacity: 1;
}

.btn-entry-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px;
  background: var(--primary);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 50px;
  text-align: center;
}

.btn-entry-sp:hover {
  background: #1a9ab8;
  color: #fff !important;
}

/* Hero mode navbar (index.php only, toggled by JS) */
.navbar-hero-mode {
  background: rgb(255 255 255 / 0);
  box-shadow: 0 0 0 rgb(0 0 0 / 0);
}

.navbar-hero-mode .nav-link {
  color: #fff !important;
}

.navbar-hero-mode .hamburger-btn span {
  background: #fff;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  overflow: hidden;
  background-image: url('../images/mv.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 50px;
  z-index: 10;
  color: #fff;
  width: 100%;
}

.hero-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: start;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.hero-bg-line {
  background: linear-gradient(to right, rgb(13 90 184/1) 0%, rgb(74 159 207/1) 100%);
  padding: 10px 20px 20px;
  margin-bottom: 15px;
  line-height: 1;
  display: inline-block;
}

.hero-content h1::before {
  /*content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  z-index: -1;
  height: 60%;
  width: 110%;
  border-radius: 50px;
  background: rgba(32, 178, 211, 0.7);*/
}

.hero-content .hero-sub {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  width: 100%;
  text-align: center;
}

/* --- MVV Section --- */
.mvv-section {
  padding: 80px 0;
}

.mvv-section+.mvv-section {
  padding: 0 0 80px;
}

.mvv-eng {
  font-size: 120px;
  font-weight: 700;
  color: rgba(32, 178, 211, 0.08);
  line-height: 1;
  margin-bottom: -40px;
}

.mvv-label {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  padding-left: 50px;
  position: relative;
  margin-bottom: 48px;
}

.mvv-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 3px;
  background: var(--primary);
}

.mvv-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
  border-left: 10px solid #00D6AF;
  border-image: linear-gradient(180deg, #20B2D3 0%, rgba(0, 0, 0, 0.00) 100%);
  border-image-slice: 1;
  padding: 0 0 20px 20px;
}

.mvv-heading .highlight {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.mvv-lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.mvv-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Value Cards */
.value-card {
  background: rgba(255, 255, 255, 0.7);
  padding: 30px 24px;
  text-align: left;
  height: 100%;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.value-card .value-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  color: var(--primary);
  flex-shrink: 0;
  background: #20B2D31A;
  padding: 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card .value-icon i {
  font-size: 36px;
  color: var(--primary);
}

.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.value-card h4 .small {
  color: #555555;
  font-weight: normal;
  font-size: .8rem;
}

.value-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.7;
}

/* --- Pivot Reals Section --- */
.reals-section {
  padding: 80px 0 0;
}

/* Stats */
.stat-item {
  border-radius: 12px;
  padding: 40px 30px;
  text-align: start;
  background: #fff;
}

.stat-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 4px solid #333;
  text-align: start;
}

.stat-num-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.stat-num {
  font-size: 120px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-unit {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-dark);
  padding-bottom: 16px;
}

.stat-icon {
  height: 128px;
  width: auto;
  margin: auto;
  margin-top: 2rem;
  text-align: center;
}

.stat-icon img {
  width: auto;
  height: 100%;
}

.reals-data-note {
  font-size: 14px;
  color: var(--text-muted);
  text-align: right;
  margin-bottom: 60px;
}

/* Vision Block */
.reals-vision {
  position: relative;
  text-align: center;
}

.reals-vision::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
}

.reals-vision-year {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
}

.reals-vision-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
  line-height: 1.3;
}

.slash {
  color: var(--primary);
  font-size: 38px;
  font-weight: 900;
}

.reals-vision-body p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 16px;
}

.reals-vision-body p:last-child {
  margin-bottom: 0;
}

.reals-vision-close {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reals-vision-line1,
.reals-vision-line2,
.reals-vision-line3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  background: linear-gradient(transparent 80%, #20B2D3 80%);
  display: inline-block;
}

.reals-vision-line3 {
  margin-bottom: 0;
}

.reals-vision-note {
  border-radius: 8px;
  padding: 20px 24px;
}

.reals-vision-note p {
  font-size: 18px;
  margin: 0;
  line-height: 1.9;
}

/* --- Capable Worker Section --- */
.capable-section {
  padding: 80px 0 0;
}

.capable-hero-img {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin: 40px 0 0;
}

.capable-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

/* 画像未配置時のプレースホルダー */
.capable-hero-img:not(:has(img[src$=".jpg"])),
.capable-hero-img img[src="assets/images/capable-bg.jpg"] {
  background: rgba(32, 178, 211, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.capable-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(32, 178, 211, 0.15);
}

.capable-row:last-child {
  border-bottom: none;
  padding-bottom: 80px;
}

.capable-row-reverse {
  flex-direction: row-reverse;
}

.capable-deco {
  border-radius: 100%;
  flex: 0 0 224px;
  width: 224px;
  height: 224px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
  position: relative;
}

.capable-deco::before {
  content: "";
  width: 133px;
  height: 110px;
  position: absolute;
  bottom: -50px;
  left: -20%;
}

.circle01 {
  background: linear-gradient(to bottom, #20B2D3 0%, #6db2c2 100%);
}

.circle02 {
  background: linear-gradient(to bottom, #3F51B5 0%, #5C6BC0 100%);
}

.circle03 {
  background: linear-gradient(to bottom, #26A69A 0%, #66BB6A 100%);
}

.circle01::before {
  background: url("../images/carable_icon01.png")no-repeat top center/100% auto;
}

.circle02::before {
  background: url("../images/carable_icon02.png")no-repeat top center/100% auto;
}

.circle03::before {
  background: url("../images/carable_icon03.png")no-repeat top center/100% auto;
}

.capable-deco-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.8;
  text-align: center;
}

.capable-text {
  flex: 1;
}

.capable-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.capable-desc {
  font-size: 16px;
  color: rgba(102, 102, 102, 1);
  line-height: 1.9;
  margin: 0;
}

/* --- Jobs Section --- */
.jobs-section {
  padding: 80px 0 0;
}

.job-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 5px rgb(0 0 0 / .2);
}

.job-card:last-child {
  margin-bottom: 0;
}

.job-card .row {
  align-items: stretch;
}

.job-card-img {
  aspect-ratio: 1/1;
  border-radius: 15px;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  max-width: 255px;
  max-height: 255px;
}

.job-card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.job-card-body {
  padding: 30px 40px;
}

.job-card-body h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.job-card-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 6px 20px;
  background: transparent;
}

.btn-detail:hover {
  background: var(--primary);
  color: #fff;
}

/* --- Interview Section --- */
.interview-section {
  padding: 80px 0 0;
  overflow: hidden;
}

.interview-header-row {
  gap: 40px;
  margin-bottom: 48px;
}

.interview-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 2rem 0 0;
  line-height: 1.9;
}

/* 水色背景エリア */
.interview-bg {
  background: linear-gradient(to bottom, #C1E8F1 0%, #C1E8F1 70%, rgb(0 0 0/0) 70%, rgb(0 0 0/0) 100%);
  padding: 48px 0;
}

/* 5枚横並びカード */
.interview-cards-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.interview-card {
  flex: 1;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.interview-card:nth-child(odd) {
  margin-top: 1rem;
}

.interview-card:nth-child(even) {
  margin-bottom: 1rem;
}

.interview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 1;
}

.interview-card-img {
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 300px;
}

.interview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.interview-card-body {
  padding: 14px 16px;
  background: #fff;
  min-height: 87px;
}

.interview-card-body .dept {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.5;
}

.interview-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  display: flex;
  align-items: center;
}

.interview-card-body h4 .arrow-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* --- Career Section --- */
.career-section {
  padding: 80px 0;
}

.career-sub-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  text-align: center;
}

/* Evaluation Cards */
.evaluation-card {
  padding: 24px 16px;
  height: 100%;
  text-align: center;
  background: transparent;
}

.evaluation-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.evaluation-circle {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.evaluation-circle img {
  width: 55%;
  height: 55%;
  object-fit: contain;
}

.evaluation-label {
  font-size: 24px;
  font-weight: 800;
  color: #212529;
  margin-bottom: 12px;
}

.evaluation-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(33, 37, 41, 0.8);
  margin-bottom: 14px;
  line-height: 1.6;
}

.evaluation-card p {
  font-size: 14px;
  color: rgba(33, 37, 41, 0.7);
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* Career Main Card */
.career-main-card {
  background: linear-gradient(to right bottom, #ecf6fe 0%, #fef7ff 50%, #f7f4f8 80%, #fdecf0 100%);
  border-radius: 14px;
  padding: 40px 48px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10), 0 10px 15px rgba(0, 0, 0, 0.10);
}

.career-main-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 48px;
  text-align: center;
}

.career-path-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Career Badge Items */
.career-badge-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.career-badge-item.last-item {
  border-bottom: none;
  margin-bottom: 0;
}

.career-badge-item p {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
  padding-top: 10px;
}

.career-badge {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  padding: 12px 24px;
  border-radius: 50px;
  white-space: nowrap;
  display: inline-block;
}

.badge-leader {
  background: #ddccff;
}

.badge-office {
  background: #f7ecef;
}

.badge-area {
  background: #cbe5e8;
}

/* Career Training Items */
.career-training-item {
  border-top: 1px solid var(--primary);
  padding: 20px 0;
}

.career-training-item:last-child {
  padding-bottom: 0;
}

.career-training-title {
  font-size: 18px;
  font-weight: 700;
  color: #5779cb;
  margin-bottom: 8px;
}

.career-training-item p {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

/* --- Flow Section --- */
.flow-section {
  padding: 80px 0;
}

.flow-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 2;
}

.flow-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  position: relative;
}

.flow-cards::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
}

.flow-card {
  border: 2px solid var(--primary);
  padding: 24px 16px;
  position: relative;
  background: rgb(255 255 255/1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 15px rgb(0 0 0 / .3);
}

.flow-card .step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.flow-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.flow-card .step-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.flow-card .step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.flow-card .step-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 6px;
  border-top: 1px solid #e0e0e0;
}

.flow-note {
  text-align: center;
  margin-top: 40px;
}

.flow-note .note-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFE9E9;
  border: none;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.flow-note .note-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* --- CTA Section --- */
.cta-section {
  padding: 0 0 80px;
  text-align: center;
  position: relative;
}

.cta-section .container {
  background: linear-gradient(to bottom, rgb(255 255 255/0) 0%, rgb(255 255 255/0) 20%, var(--primary) 20%, var(--primary) 100%);
  padding-bottom: 40px;
}

.cta-section .entry-title {
  font-size: 100px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 24px;
}

.cta-section .cta-text {
  font-size: 18px;
  color: #fff;
  line-height: 2;
  margin-bottom: 40px;
}

.btn-entry-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 60px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.btn-entry-cta:hover {
  background: #f0f0f0;
  color: var(--primary);
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
  background: var(--footer-bg);
  padding: 60px 0 30px;
  color: #fff;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  width: 100%;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 254, 254, 1);
}

.footer-links li a:hover {
  color: var(--primary);
}

.footer-links li a::after {
  content: "\203A";
  font-size: 18px;
}

.footer-external {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-external li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-external li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-external li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 254, 254, 1);
}

.footer-external li a::after {
  content: "\203A";
  font-size: 18px;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 254, 254, 0.7);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Responsive --- */
@media (max-width: 1199px) {
  nav .container-fluid {
    flex-direction: column !important;
  }
}

@media (max-width: 991px) {
  nav .container-fluid {
    flex-direction: row !important;
  }

  /* capable */
  .capable-row {
    flex-direction: column;
    gap: 24px;
    padding: 36px 0;
  }

  .capable-row-reverse {
    flex-direction: column;
  }

  .capable-deco {
    flex: none;
    width: 220px;
    height: 220px;
    margin-bottom: 50px;
  }

  /* interview */
  .interview-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .interview-desc {
    text-align: left;
  }

  .interview-cards-row {
    gap: 12px;
  }

  .interview-card-img {
    min-height: 200px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content .hero-sub {
    font-size: 20px;
  }

  .mvv-eng,
  .section-eng-title {
    font-size: 70px;
  }

  .flow-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-card {
    border-radius: 8px !important;
    border: 2px solid var(--primary) !important;
  }

  .cta-section .entry-title {
    font-size: 60px;
  }

  .job-card-img {
    height: auto;
    width: 100%;
  }

  .stat-num {
    font-size: 72px;
  }

  .reals-vision {
    padding: 40px 32px;
  }

  .reals-vision-heading {
    font-size: 36px;
  }

  .career-main-card {
    padding: 32px 32px;
  }
}


.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {


  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .hero-overlay {
    display: none;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .mvv-section+.mvv-section {
    padding: 0 0 40px;
  }

  .interview-bg {
    padding: 48px 0 0;
  }

  .flow-note .note-text {
    margin-bottom: 0;
  }

  /* capable */
  .capable-hero-img {
    height: 220px;
  }

  /* interview */
  .interview-cards-row {
    flex-wrap: wrap;
  }

  .interview-card {
    flex: 0 0 calc(50% - 8px);
  }

  .interview-card-img {
    min-height: 180px;
  }

  .hero-content h1 {
    font-size: 7vw;
    max-width: 85%;
  }

  .hero-content .hero-sub {
    font-size: 14px;
  }

  .hero-content {
    bottom: 40px;
    left: 20px;
  }

  .mvv-section,
  .reals-section,
  .capable-section,
  .jobs-section,
  .interview-section,
  .career-section,
  .flow-section {
    padding: 50px 0;
    overflow: hidden;
  }

  .cta-section {
    padding: 0 0 50px;
  }

  .cta-section .container {
    background: linear-gradient(to bottom, rgb(255 255 255/0) 0%, rgb(255 255 255/0) 10%, var(--primary) 10%, var(--primary) 100%);
  }

  .mvv-eng,
  .section-eng-title {
    font-size: 60px;
    margin-bottom: -30px;
  }

  .mvv-heading {
    font-size: 22px;
  }

  .mvv-heading .highlight {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
    margin: 0;
  }

  .flow-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-cards::before {
    display: none;
  }

  .job-card {
    padding: 20px;
  }

  .job-card-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: auto;
    text-align: center;
  }

  .job-card-body {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .job-card-body h3 {
    font-size: 22px;
  }

  .cta-section .entry-title {
    font-size: 44px;
  }

  .cta-section .cta-text {
    font-size: 14px;
  }

  .stat-item.border-x {
    border-left: none;
    border-right: none;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }

  .stat-num {
    font-size: 80px;
  }

  .reals-vision {
    padding: 0;
  }

  .reals-vision-heading {
    font-size: 28px;
  }

  .reals-vision-year {
    font-size: 4vw;
  }

  .slash {
    font-size: 6vw;
  }

  .reals-vision-body p {
    font-size: 15px;
  }

  .career-main-card {
    padding: 24px 20px;
  }

  .career-badge-item {
    flex-direction: column;
    gap: 8px;
  }

  .career-badge-item p {
    padding-top: 0;
  }

  #floating-btn {
    position: fixed;
    bottom: .8rem;
    right: 0;
    text-align: end;
    color: #fff;
  }

  #floating-btn a {
    background: var(--primary);
    border-radius: 5px;
    color: #fff;
    padding: 3px 20px;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgb(0 0 0 / .3);
  }

  .job-card-img {
    height: auto;
    width: 100%;
  }

  .capable-row:last-child {
    padding-bottom: 0;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1100px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1100px;
  }
}