@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  article.css
// style info :  下層共通のスタイル指定
=================================================================== */
/* -----------------------------------------------------
 section
----------------------------------------------------- */
.section {
  margin-top: 100px;
}
@media only screen and (max-width: 991px) {
  .section {
    margin-top: 60px;
  }
}

/* -----------------------------------------------------
 pageTtl
----------------------------------------------------- */
.pageTtl {
  font-size: 72px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin: auto;
  z-index: 5;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .pageTtl {
    font-size: 8vw;
    top: calc(50% - 35px);
  }
}
@media screen and (max-width: 420px) {
  .pageTtl {
    font-size: 10vw;
  }
}