.mainVisual{
  position: relative;
  top: calc(var(--gnb-height) * -1);
  left: 0;
  right: 0;
  margin-bottom: calc(var(--gnb-height) * -1);
  width: 100%;
}
.mainVisual .imgBox img{
  width: 100%;
}
.mainVisual .textWrap{
  position: absolute;
  width: var(--main-width);
  max-width: var(--max-width);
  height: 100%;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.textWrap .textBox{
  width: 100%;
  color: var(--primary-color);
  padding-top: var(--gnb-height);
}

/* 섹션 공통 */
section .contentBox{
  width: var(--main-width);
  max-width: var(--max-width);
  margin: 0 auto;
}
.brMob{
  display: none;
}

@media (max-width: 767px) {
  .mainVisual{
    height: 100vh;
  }
  .mainVisual .imgBox{
    height: 100%;
  }
  .mainVisual .imgBox img{
    height: 100%;
    object-fit: cover;
  }
  .shadow .textBox{
    width: var(--mobile-width);
  }
  section .contentBox{
    width: var(--mobile-width);
  }
  .brMob{
    display: block;
  }
  .brPc{
    display: none;
  }
}