/* header height */
/* sub-header height */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking-s {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-zoom-out {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-clip-left {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-right {
  from {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-down {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-center {
  from {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes fade-clip-circle {
  from {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes fade-clip-skew {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    opacity: 1;
  }
}
@keyframes fade-clip-wave {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    transition: all 0.5s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translateX(-30px) scale(0.8) skew(8deg);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    transform: translateX(0) scale(1) skew(0);
    opacity: 1;
  }
}
@keyframes cover-left {
  0%, 20% {
    transform-origin: 0 50%;
  }
  20%, 100% {
    transform-origin: 100% 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-right {
  0%, 20% {
    transform-origin: 100% 50%;
  }
  20%, 100% {
    transform-origin: 0 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-up {
  0%, 20% {
    transform-origin: 50% 100%;
  }
  20%, 100% {
    transform-origin: 50% 0;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes cover-down {
  0%, 20% {
    transform-origin: 50% 0;
  }
  20%, 100% {
    transform-origin: 50% 100%;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes hover-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hover-zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-zoom-in-blink {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes hover-zoom-out-blink {
  0% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.works-detail {
  padding-bottom: 120px;
}
.works-detail .movie-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 50px;
}
.works-detail .movie-container iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.works-detail .movie-container video {
  width: 100%;
  height: auto;
}
.works-detail .movie-container img {
  width: 100%;
  height: auto;
}
.works-detail__info {
  width: 100%;
  margin-bottom: 100px;
}
.works-detail__ttl {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.25rem;
  margin-bottom: 50px;
}
.works-detail__text {
  font-weight: normal;
  line-break: strict;
  line-height: 200%;
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.works-detail__text p {
  font-weight: normal;
  line-break: strict;
  line-height: 200%;
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.works-detail__text a {
  text-decoration: underline;
  will-change: transform opacity;
}
.works-detail__credit {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 50px;
}
.works-detail__credit__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.works-detail__credit__item {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  margin-bottom: 50px;
  padding: 0 0px;
}
.works-detail__credit__item h2, .works-detail__credit__item h3, .works-detail__credit__item h4 {
  width: 100%;
  text-align: center;
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 40px;
}
.works-detail__credit__item div {
  text-align: left;
  font-weight: normal;
  line-break: strict;
  line-height: 200%;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .works-detail {
    padding-bottom: 120px;
  }
  .works-detail__ttl {
    line-height: 1.6;
    font-size: 1.25rem;
  }
  .works-detail__text {
    line-height: 200%;
    font-size: 1.125rem;
  }
  .works-detail__text p {
    line-height: 200%;
    font-size: 1.125rem;
  }
  .works-detail__credit {
    padding-left: 30px;
    padding-right: 30px;
  }
  .works-detail__credit__inner {
    flex-direction: row;
  }
  .works-detail__credit__item {
    width: auto;
    margin-bottom: 0px;
    padding: 0 50px;
  }
  .works-detail__credit__item h2, .works-detail__credit__item h3, .works-detail__credit__item h4 {
    line-height: 1.6;
    font-size: 1.125rem;
  }
  .works-detail__credit__item div {
    line-height: 200%;
    font-size: 0.875rem;
  }
}
@media (min-width: 1100px) {
  .works-detail {
    padding-bottom: 120px;
  }
  .works-detail .movie-container {
    margin-bottom: 86px;
  }
  .works-detail__info {
    margin-bottom: 124px;
  }
  .works-detail__ttl {
    line-height: 1.6;
    font-size: 2rem;
  }
  .works-detail__ttl {
    margin-bottom: 52px;
  }
  .works-detail__text {
    line-height: 200%;
    font-size: 1.75rem;
  }
  .works-detail__text {
    margin-bottom: 40px;
  }
  .works-detail__text p {
    line-height: 200%;
    font-size: 1.75rem;
  }
  .works-detail__text p {
    margin-bottom: 40px;
  }
  .works-detail__credit {
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .works-detail__credit {
    margin-bottom: 100px;
  }
  .works-detail__credit__item h2, .works-detail__credit__item h3, .works-detail__credit__item h4 {
    line-height: 1.6;
    font-size: 1.3125rem;
  }
  .works-detail__credit__item h2, .works-detail__credit__item h3, .works-detail__credit__item h4 {
    margin-bottom: 40px;
  }
  .works-detail__credit__item div {
    line-height: 200%;
    font-size: 1.125rem;
  }
}
@media (hover: hover) {
  .works-detail__text a:hover {
    animation: blinking 0.5s ease 0s both;
  }
}