/*********************************************
*
*  MV（背景動画 + 中央テキスト）
*
*********************************************/

#usautech-mv {
  position: relative;
  overflow: hidden;
}

#usautech-mv .mv-video {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#usautech-mv .mv-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ★ 中央配置するボックス（画像＋テキスト） */
.layer-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 40%;
  max-width: 450px;
  text-align: center;

  padding: 20px;
  background: rgba(0, 0, 0, 0.55); /* 半透明背景 */
  border-radius: 12px;
}

/* テキスト */
.layer-deco .layer-text {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.6;
  display: block;
}

/* 画像 */
.layer-deco img {
  width: 100%;
  height: auto;
}

/* ★ スマホ最適化 */
@media screen and (max-width: 767px) {
  .layer-deco {
    width: 80%;
    padding: 15px;
  }

  .layer-deco .layer-text {
    font-size: 14px;
  }
}
.layer-deco {
  color: #fff;      /* ← 子要素の文字すべて白に */
}

