/* ============================
   背景：黒大理石
============================ */
.mjlux4-staff-section {
  background: url('images/black-marble-hq.jpg') center/cover no-repeat fixed;
  padding: 100px 0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

/* 見出し */
.mjlux4-staff-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #6bdcff;
  text-shadow: 0 0 12px rgba(107,220,255,0.5);
  margin-bottom: 20px;
}

.mjlux4-staff-subtext {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 70px;
  line-height: 1.9;
}

/* PC：3列 */
.mjlux4-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  padding: 0 100px;
}

/* カード */
.mjlux4-staff-card {
  background:
    linear-gradient(135deg, rgba(20,20,20,0.9), rgba(10,10,10,0.9)),
    url('images/metal-texture.jpg');
  background-size: cover;

  padding: 40px 35px;
  border-radius: 20px;
  border: 1px solid rgba(107,220,255,0.4);
  box-shadow: 0 0 40px rgba(107,220,255,0.25);
  backdrop-filter: blur(6px);
  transition: 0.35s ease;
  text-align: center;
}

.mjlux4-staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 55px rgba(107,220,255,0.55);
  border-color: rgba(107,220,255,0.8);
}

/* ============================
   二重リング
============================ */
.mjlux4-photo-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
}



/* 写真（静止） */
.mjlux4-staff-photo {
  position: absolute;
  top: 14px;
  left: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border-radius: 50%;
  object-fit: cover;
  z-index: 3;
  border: 10px double rgba(107,220,255,0.9);
}


/* 情報ボックス */
.mjlux4-info-box {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(107,220,255,0.4);
  border-radius: 14px;
  padding: 18px 15px;
  margin-top: 10px;
  box-shadow: inset 0 0 12px rgba(107,220,255,0.25);
}

.mjlux4-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.mjlux4-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6bdcff;
  margin-bottom: 10px;
}

.mjlux4-comment {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* モバイル */
@media (max-width: 900px) {
  .mjlux4-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mjlux4-staff-grid {
    grid-template-columns: 1fr;
  }
}
