@charset "UTF-8";

#heading br {
  display: none;
}

/*-------------------------------------------
  mv
-------------------------------------------*/

.mv {
  width: 100%;
  height: 50vh;
  min-height: 360px;
  background: rgba(0, 0, 0, .2);
  position: relative;
}

.mv-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv-ttl {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  line-height: 1.4;
}

.mv-ttl>p {
  font-size: 5rem;
  font-weight: 700;
}

.mv-ttl>h2 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8;
}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1024px) {}

@media screen and (max-width:896px) {}

@media screen and (max-width:786px) {}

@media screen and (max-width:680px) {}

@media screen and (max-width:480px) {
  #heading {
    top: calc(var(--vh, 1vh) * 37.5);
  }

  #heading br {
    display: block;
  }

  .mv {
    height: calc(var(--vh, 1vh) * 45);
    min-height: initial;
  }

  .mv-inner {
    top: 50%
  }

  .mv-ttl>h2 {
    font-size: 1rem;
  }

  .mv-ttl>p {
    font-size: 4rem;
  }
}