@charset "UTF-8";
/* panelリンクのホバーエフェクト */
.panel__link,
.panel a,
.grid3__item > a {
  /* ホバーアウト時は即座に消える */
}
.panel__link:not(:hover) .panel__img .color-bar,
.panel a:not(:hover) .panel__img .color-bar,
.grid3__item > a:not(:hover) .panel__img .color-bar {
  width: 0;
  transition-delay: 0s;
  transition-duration: 0.2s;
}

@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;
  }
}
@keyframes expandWidth {
  from {
    width: 95%;
  }
  to {
    width: 100%;
  }
}
.works-detail {
  padding-top: 124px;
}
.works-detail__inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}
.works-detail__hero {
  width: 100;
  height: auto;
  margin-bottom: 40px;
}
.works-detail__hero--top {
  margin-bottom: 31px;
}
.works-detail__hero__inner {
  width: 100%;
  height: auto;
}
.works-detail__hero__img-wrapper {
  overflow: hidden;
  margin-bottom: 33px;
}
.works-detail__hero__img {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.works-detail__hero__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: var(--mask-height);
}
.works-detail__hero__body {
  width: 100%;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.works-detail__hero__description {
  width: 100%;
  height: auto;
}
.works-detail__hero__subttl {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 13px;
}
.works-detail__hero__ttl {
  font-size: 1.5rem;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 100px;
}
.works-detail__hero__content {
  width: 100%;
  height: auto;
}
.works-detail__hero__content__title {
  font-size: 1.25rem;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 34px;
}
.works-detail__hero__content__text {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: #000;
}
.works-detail__credit {
  width: 100%;
  height: auto;
  padding: 33px 0;
}
.works-detail__credit__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.works-detail__credit__ttl {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 26px;
}
.works-detail__credit__body {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.works-detail__credit__body p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #000;
}
.works-detail__credit__body p strong {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 8px;
}
.works-detail .description {
  width: 100%;
  height: auto;
}
.works-detail .description__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.works-detail .description__content {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.works-detail .description__img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}
.works-detail .description__img img {
  width: 100%;
  height: auto;
}
.works-detail .description__text p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 20px;
}
.works-detail .movie {
  width: 100%;
  height: auto;
}
.works-detail .movie__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.works-detail .movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 32px;
}
.works-detail .article {
  width: 100%;
  height: auto;
}
.works-detail .article__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.works-detail .article__content {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.works-detail .article__img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}
.works-detail .article__img img {
  width: 100%;
  height: auto;
}
.works-detail .article__ttl p {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 56px;
}
.works-detail .article__text p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 20px;
}
.works-detail__back-btn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works-detail__back-btn a {
  font-size: 1rem;
  font-weight: 400;
  border-radius: 50vh;
  padding: 8px 42px;
  border: 1px solid #000;
  background-color: #ffffff;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.works-detail__back-btn a:hover {
  background-color: #fff;
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}
@media (min-width: 640px) {
  .works-detail {
    padding-bottom: 200px;
  }
  .works-detail {
    padding-top: 145px;
  }
  .works-detail__hero {
    margin-bottom: 80px;
  }
  .works-detail__hero--top {
    margin-bottom: 100px;
  }
  .works-detail__hero__img-wrapper {
    margin-bottom: 63px;
  }
  .works-detail__hero__subttl {
    font-size: 0.875rem;
  }
  .works-detail__hero__subttl {
    margin-bottom: 26px;
  }
  .works-detail__hero__ttl {
    font-size: 1.5rem;
  }
  .works-detail__hero__content__title {
    font-size: 1.25rem;
  }
  .works-detail__hero__content__title {
    margin-bottom: 30px;
  }
  .works-detail__hero__content__text {
    font-size: 1rem;
  }
  .works-detail__credit {
    padding: 33px 0;
  }
  .works-detail__credit__ttl {
    font-size: 1rem;
  }
  .works-detail__credit__ttl {
    margin-bottom: 52px;
  }
  .works-detail__credit__body {
    margin-bottom: 40px;
  }
  .works-detail__credit__body p {
    font-size: 1rem;
  }
  .works-detail__credit__body p strong {
    margin-bottom: 10px;
  }
  .works-detail .description__text p {
    font-size: 1rem;
  }
  .works-detail .article__ttl p {
    font-size: 1rem;
  }
  .works-detail .article__ttl p {
    margin-bottom: 56px;
  }
  .works-detail .article__text p {
    font-size: 1rem;
  }
  .works-detail__back-btn a {
    font-size: 1rem;
  }
}
@media (min-width: 1100px) {
  .works-detail {
    padding-bottom: 200px;
  }
  .works-detail__inner {
    padding-left: 0px;
    padding-right: 0px;
  }
  .works-detail__hero--top {
    margin-bottom: 167px;
  }
  .works-detail__hero__img-wrapper {
    height: var(--mask-height);
    margin-bottom: 90px;
  }
  .works-detail__hero__img {
    width: 95%;
    animation: expandWidth 0.3s ease 0.25s forwards !important;
  }
  .works-detail__hero__img .no-transition {
    width: 100%;
  }
  .works-detail__hero__body {
    max-width: 1150px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .works-detail__hero__subttl {
    font-size: 1rem;
  }
  .works-detail__hero__ttl {
    font-size: 2.25rem;
  }
  .works-detail__hero__ttl {
    margin-bottom: 126px;
  }
  .works-detail__hero__content {
    width: 640px;
  }
  .works-detail__hero__content--right {
    margin-left: auto;
  }
  .works-detail__hero__content__title {
    font-size: 1.5rem;
  }
  .works-detail__hero__content__text {
    font-size: 1rem;
  }
  .works-detail__credit__inner {
    max-width: 1150px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .works-detail__credit__ttl {
    font-size: 1rem;
  }
  .works-detail__credit__body p {
    font-size: 1rem;
  }
  .works-detail .description__inner {
    max-width: 1150px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .works-detail .description__content {
    width: 640px;
    margin-bottom: 96px;
  }
  .works-detail .description__content--right {
    margin-left: auto;
  }
  .works-detail .description__img {
    margin-bottom: 96px;
  }
  .works-detail .description__text p {
    font-size: 1rem;
  }
  .works-detail .movie__inner {
    max-width: 1150px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .works-detail .movie iframe {
    margin-bottom: 96px;
  }
  .works-detail .article__inner {
    max-width: 1150px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .works-detail .article__content {
    width: 640px;
    margin-bottom: 96px;
  }
  .works-detail .article__content--right {
    margin-left: auto;
  }
  .works-detail .article__img {
    margin-bottom: 96px;
  }
  .works-detail .article__ttl p {
    font-size: 1.5rem;
  }
  .works-detail .article__text p {
    font-size: 1rem;
  }
  .works-detail__back-btn a {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .panel__link:hover .panel__img .color-bar,
.panel a:hover .panel__img .color-bar,
.grid3__item > a:hover .panel__img .color-bar {
    width: 100%;
  }
}
@media (max-width: 639.98px) {
  .works-detail {
    padding-bottom: 100px;
  }
}