@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : highlight.css
Description : みどころ
===================================================================== */
@keyframes textAnime {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
/* =====================================================================
    ticket
======================================================================*/
.highlight .sec_ttl {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: textAnime 1s steps(9) forwards;
  display: inline-block;
}
.highlight .inner {
  width: 80%;
  max-width: 1080px;
}
.highlight h3.third_ttl {
  text-align: center;
  padding: 0 0 4rem;
  margin-bottom: 4rem;
}
.highlight h3.third_ttl.mark {
  margin-top: 25.5rem;
}
.highlight h3.third_ttl.mark::before {
  top: -15rem;
  left: calc(50% - 2.5rem);
}
.highlight h4 {
  color: #d94869;
  font-size: 3rem;
  font-family: "BIZ UDPMincho", serif;
  text-align: left;
  padding: 2rem 0 3rem;
  line-height: 1.6;
}
.highlight p {
  text-align: left;
  line-height: 1.9;
  margin: auto auto 2rem;
  font-size: 2.6rem;
}
.highlight .border_line {
  margin: 10rem 0;
}

@media screen and (min-width: 768px) {
  .highlight h3.third_ttl.mark {
    margin-top: 25.5rem;
  }
  .highlight h3.third_ttl.mark::before {
    top: -15rem;
    left: calc(50% - 1.77rem);
  }
  .highlight h4 {
    font-size: 2.2rem;
    padding: 2rem 0;
  }
  .highlight p {
    font-size: 1.8rem;
  }
}