section.main {
  position: relative;
  width: 100%;
}
section.main .breadcrumb {
  display: none;
  padding: 5px 3%;
}
section.main .breadcrumb a {
  text-decoration: underline;
}
section.main ul {
  position: relative;
  width: 100%;
}
section.main ul li {
  position: relative;
  width: 100%;
}
section.main ul li .black {
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
section.main ul li a {
  position: relative;
  display: block;
  width: 100%;
}
section.main ul li a img {
  display: block;
  width: 100%;
}
section.main ul li a .title {
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-shadow: 0 0 8px #000;
  z-index: 3;
}

@media screen and (max-width: 562.5px) {
  section.main ul li a .title {
    font-size: 10vw;
  }
}