@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  outline.css
// style info :  スタイル指定
=================================================================== */
/* -----------------------------------------------------
 pageTtl
----------------------------------------------------- */
#soundproofingPage .pageTtl {
  /* position: inherit;
  left: auto;
  transform: translate(0,0);
  text-align: center; */
  top: 40%;
  z-index: 5;
  color: #333 !important;
  letter-spacing: .05em !important;
}
#soundproofingPage .kv {
  height: calc(100vh - 90px);
}
#soundproofingPage .kv__innr {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: 100%;
}
#soundproofingPage .kv h2 {
  margin-top: 0;
  white-space: nowrap;
}
#soundproofingPage .kv p {
  position: absolute;
  top: 50%;
  opacity: .5;
}
#soundproofingPage .contactWrap #topBtn {
  display: none;
}
@media screen and (max-width: 960px) {
  #soundproofingPage .kv p {
    font-size: min(1.4vw,14px);
    top: 45%;
  }
  
}
@media screen and (max-width: 560px) {
  #soundproofingPage .kv {
    height: calc(100vh - 90px);
  }
  #soundproofingPage .kv p {
    font-size: 3.5vw;
    top: 45%;
  }
}

/* -----------------------------------------------------
	background
----------------------------------------------------- */
.fullscreen-bg {
  position: fixed;            /* ビューポートに固定 */
  top: 65%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;          /* 切り取りつつ全面表示 */
  z-index: -2;                /* 最背面に配置（下に背景色があれば注意） */
  pointer-events: none;       /* クリック等の邪魔をしない */
  opacity: 1;
}