body {
  z-index: 0;
}

section {
  text-align: center;
  margin: 60px auto;
}
section:first-of-type {
  margin-top: 0;
}
section .section-header-container {
  position: relative;
  width: 100%;
  height: calc(16vw + 100px);
}
section .section-header-container .section-header {
  width: inherit;
  top: -16vw;
  padding: 16vw 0;
  text-align: center;
  clip-path: polygon(0% 16vw, 100% 0%, 100% calc(100% - 16vw), 0% 100%);
}
section .section-header-container .section-header .thumbnail-container {
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
section .section-header-container .section-header .thumbnail-container img {
  width: 100%;
}
section .section-header-container .section-header .section-header-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100px;
}
section .section-header-container .section-header .section-header-content .section-header-jp {
  font-size: 1.6rem;
  line-height: 1;
  color: white;
}
section .section-header-container .section-header .section-header-content .section-header-en {
  font-size: 3.2rem;
  line-height: 1.2;
  font-family: "Poppins";
}
section .section-header-container .section-header:after {
  content: "";
  position: absolute;
  background-color: #d7000f;
  z-index: -1;
  bottom: 0;
  left: 0;
  height: 6vw;
  width: 25vw;
  clip-path: polygon(0% 4vw, 100% 0%, 100% 2vw, 0% 100%);
}
section .section-title-container .section-title-jp {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  section .section-title-container .section-title-jp {
    font-size: 2.4rem;
  }
}
section .section-title-container .section-title-en {
  font-family: "Poppins";
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: bold;
  color: #d7000f;
}
@media only screen and (max-width: 768px) {
  section .section-title-container .section-title-en {
    font-size: 2rem;
  }
}

.scroll-bar-container {
  overflow: hidden;
  position: relative;
  height: 80px;
  width: 1px;
  margin: 30px auto;
}
.scroll-bar-container .scroll-bar {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  animation: 2.4s ease infinite running bar-anim;
  background-color: #d7000f;
}

@keyframes bar-anim {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}
.fold {
  white-space: nowrap;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
}

@media only screen and (max-width: 768px) {
  .sp-fold {
    white-space: initial;
  }
}

.op-05 {
  background-color: rgba(215, 0, 15, 0.7) !important;
}/*# sourceMappingURL=common.css.map */