@charset "UTF-8";
h1 {
  padding: 5% 6%;
  border-bottom: 1px solid #ffe8e8;
}
/* ===================================
   レイアウト
=================================== */
.site-wrap {
  display: flex;
}
.global-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 80px;
  height: 100vh;
  background: #fff;
  border-right: 1px solid #ffe8e8;
  z-index: 100;
  z-index: 1100;
}
.content-wrap {
  width: 100%;
  padding-left: 80px;
}
.top {
  display: flex;
}
#top,
#story,
#cast-staff,
#youtube,
#comics {
  scroll-margin-top: 100px;
}
/* ===================================
  コンテンツ
=================================== */
.content-right {
  width: 57%;
  background: #f6f6f6;
  display: grid;
  place-items: center;
  font-size: 48px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.content-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}
.content-right.show::after {
  transform: translateX(105%);
}
.content-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.read {
  position: absolute;
  width: 16%;
  top: 1%;
  right: 0%;
}

.content-left {
  width: 43%;
  display: flex;
  flex-direction: column;
}

/* ==================================================
    メインビジュアル動き
================================================== */

.content-right > img {
  transform: scale(1.1);
  filter: blur(8px);
  transition:
    transform 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    filter 1.4s ease 0.1s;
  will-change: transform;
}

.content-right.show > img {
  transform: scale(1);
  filter: blur(0);
}

.content-right::after {
  transition: transform 2.15s cubic-bezier(0.77, 0, 0.175, 1);
}

.content-right.show::after {
  transform: translateX(105%);
}

/* read画像 */
.content-right .read {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1s ease 0.75s,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.75s;
  z-index: 3;
}

.content-right.show .read {
  opacity: 1;
  transform: translateY(0);
}

.content-right .read img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .content-right > img {
    transition:
      transform 4.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
      filter 2.2s ease 0.2s;
  }

  .content-right::after {
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .content-right .read {
    transition:
      opacity 1.2s ease 1.3s,
      transform 1.6s cubic-bezier(0.22, 1, 0.36, 1) 1.3s;
  }
}
/* ===================================
  nav
=================================== */
.nav {
  border-bottom: 1px solid #ffe8e8;
  padding: 0 3%;
  background: url(../_img/bg.png);
  background-size: 5%;
  gap: 5%;
  padding: 3% 0;
  display: flex;
  align-items: center;
}
.nav ul {
  display: flex;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  gap: 30px;
}
.nav ul li {
  width: 20%;
}

/* ===================================
  ニュース
=================================== */
.news {
  background: url(../_img/news_bg.png) no-repeat right -40px bottom -40px;
  background-size: 180px;
}
.news ul li {
  padding: 3% 6%;
  container-type: inline-size;
  border-bottom: 1px solid #ffe8e8;
  background-image: linear-gradient(-90deg, transparent 80%, #fff6f6);
}
.news ul li a:hover {
  color: rgb(214, 40, 40);
}

.news ul li a {
  transition: all 0.5s;
  display: block;
}
.news_txt {
  font-size: 4.1cqw;
  line-height: 1.6;
}

.news_txt_all {
  width: 200px;
  background-color: #000;
  height: 60px;
  width: 100%;
  display: flex;
  border-bottom: 1px solid #ffe8e8;
}
.news_txt_all_l {
  background: url(../_img/bg.png);
  background-size: 5%;
  width: 70%;
}
.news_txt_all_r {
  color: #000;
  background-color: #fff;
  width: 30%;
  display: flex;
}
.news_txt_all_r a {
  display: block;
  height: 100%;
  width: 100%;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.day {
  font-size: 2cqw;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 1%;
  align-items: baseline;
  color: #666;
}
.day::before {
  content: '';
  width: 2em;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  color: #e2adc5;
}
.day span {
  font-size: 3cqw;
}

/* ===================================
   youtube
=================================== */

.youtube {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background: url(../_img/bg.png);
  background-size: 5%;
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube-icon {
  position: absolute;
  width: 18%;
  top: -3%;
  right: -3%;
  z-index: 100;
  animation: youtube-iconmovie 2s linear infinite;
}
@media (max-width: 768px) {
  .youtube-icon {
    width: 15%;
    top: -3%;
    right: auto;
    left: 0;
  }
}
@keyframes youtube-iconmovie {
  0%,
  70%,
  100% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(-8px);
  }
  14% {
    transform: translateY(0);
  }
  18% {
    transform: translateY(-2px);
  }
  22% {
    transform: translateY(0);
  }
}
/* ===================================
  ストーリー
=================================== */
.story {
  margin-top: 10%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    url(../_img/story_bg.png) repeat-x,
    url(../_img/story_bg.png) repeat-x,
    url(../_img/bg.png);

  background-size: 100%, 100%, 2.4%;
  background-position:
    top center,
    bottom center,
    center;
}
.story_ttl {
  position: absolute;
  width: min(10%, 110px);
  top: -7%;
  left: 47%;
}
.story_txt {
  text-align: center;
  padding: 15% 0 6%;
}
.story_txt p {
  font-size: 1.5cqw;
  margin-bottom: 30px;
}
.story_txt p span {
  display: inline;
  background: #4f5e85;
  color: #fff;
  line-height: 2.8;
  padding: 0.2em 0.5em 0.3em;

  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* ==================================================
   ストーリー サムネイル
================================================== */

.story-thumbnails {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* 共通 */
.story-thumbnail {
  position: absolute;
  width: 22%;
  opacity: 1;

  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(45, 43, 38, 0.16);
  background: #fff;
  overflow: hidden;
}

.story-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}
/* 左上 */
.story-thumbnail:nth-child(1) {
  left: 1%;
  top: 20%;
  transform: rotate(3deg);
}

/* 左中央 */
.story-thumbnail:nth-child(2) {
  left: 3%;
  top: 45%;
  transform: rotate(-3deg);
}

/* 左下 */
.story-thumbnail:nth-child(3) {
  left: 1%;
  top: 70%;
  transform: rotate(3deg);
}

/* 右上 */
.story-thumbnail:nth-child(4) {
  right: 1%;
  top: 20%;
  transform: rotate(-3deg);
}

/* 右中央 */
.story-thumbnail:nth-child(5) {
  right: 3%;
  top: 45%;
  transform: rotate(3deg);
}

/* 右下 */
.story-thumbnail:nth-child(6) {
  right: 1%;
  top: 70%;
  transform: rotate(-3deg);
}

/* タイトル・文章を画像より前へ */
.story_txt {
  z-index: 2;
}

/* タブレット */
@media (max-width: 1200px) {
  .story-thumbnail {
    width: 230px;
  }

  .story-thumbnail:nth-child(1),
  .story-thumbnail:nth-child(3) {
    left: -80px;
  }

  .story-thumbnail:nth-child(4),
  .story-thumbnail:nth-child(6) {
    right: -80px;
  }
}

/* ===================================
制作陣
=================================== */

.cast-staff {
  position: relative;
  margin-top: 10%;
  display: grid;
  place-items: center;
  font-size: 1.5cqw;
  background:
    url(../_img/cast_bg2.png) repeat-x,
    url(../_img/cast_bg2.png) repeat-x,
    url(../_img/cast_bg.png);

  background-size: 100%, 100%, 3%;
  background-position:
    top center,
    bottom center,
    top center;
  background-color: #fff;
  overflow-x: clip;
}

.cast-staff__inner {
  width: min(1000px, 100%);
  margin: 0 auto;
}

/* タイトル */
.cast-staff__title {
  position: absolute;
  width: min(10%, 110px);
  top: -7%;
  left: 47%;
}

.cast-staff__title img {
  display: block;
  width: 100%;
  height: auto;
}

/* 2カラム */
.cast-staff__columns {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 9vw, 140px);
  padding: 20% 0;
}

/* 見出し */
.cast-staff__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 55px;
}

.cast-staff__heading h3 {
  flex-shrink: 0;
  margin: 0;
  color: #8e8e8e;
  font-size: clamp(24px, 2.5vw, 22px);
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
}

/* 横線 */
.cast-staff__line {
  display: block;
  width: 100%;
  height: 1px;
  background: #8e8e8e;
  transform: scaleX(0);
  transform-origin: left center;
}

/* リスト */
.cast-staff__list {
  margin: 0;
}

.cast-staff__item {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

/* 薄い区切り線 */
.cast-staff__item::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(222, 59, 59, 0.15);
  transform: scaleX(0);
  transform-origin: left center;
}

/* 赤ラベル*/
.cast-staff__item dt {
  display: inline-block;
  padding: 4px 12px 6px;
  background: #de3737;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1;
  opacity: 0;
  transform: scale(0.9);
  transform-origin: left center;
}

/* 名前 */
.cast-staff__item dd {
  margin: 0;
  color: #111;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.5;

  clip-path: inset(0 100% 0 0);
  transform: translateX(-12px);
}
.cast-staff__item dd span {
  display: block;
  font-size: 14px;
}

/* ===================================
  コミックス
=================================== */
.comics {
  position: relative;
  margin-top: 10%;
  display: grid;
  place-items: center;
  font-size: 1.5cqw;

  background-color: #fff;
  padding-bottom: 10%;
}
.comics_ttl {
  position: absolute;
  width: min(10%, 110px);
  top: -4%;
  left: 47%;
}
.comics_ttl img {
  width: 100%;
}

ul.comics_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 20px;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 14% 0 4% 0;
  list-style: none;
}
ul.comics_list li {
  transition: transform 0.3s ease;
  position: relative;
}

ul.comics_list img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.comics_txt {
  line-height: 1.8;
  text-align: center;
}
.link_btn {
  margin: 1rem auto;
  background: url(../_img/bg2.png);
  background-size: 5%;
  border-radius: 200px;
  border: 1px solid #ffe8e8;
  width: 500px;
}
.link_btn a {
  color: #fff;
  line-height: 0;
  padding: 2rem 0 2.1rem;
  display: block;
}
.saishin {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #df2121;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 10px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 100;
}
/* ===================================
   ハンバーガーメニュー
=================================== */

.menu-btn {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1200;
}

.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-btn span:nth-child(1) {
  top: 0;
}

.menu-btn span:nth-child(2) {
  top: 13px;
}

.menu-btn span:nth-child(3) {
  top: 26px;
}

.menu-btn.is-open span {
  background: #000;
}

.menu-btn.is-open span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* ===================================
   Fixed Nav
=================================== */

.side-text {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  font-size: 11px;
}
.side-text span {
  font-size: 20px;
}

.x-link {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
}

/* ===================================
   メニュー開いた時
=================================== */
.side-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;

  background-image: url(../_img/cast_bg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;

  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.9s;
}

.side-menu.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.menu-list-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  gap: clamp(80px, 6vw, 80px);
}

/* それぞれの列 */
.menu-list {
  width: auto;
  margin: 0;
  padding: 0;
  text-align: left;
  list-style: none;
}

.menu-list li {
  overflow: hidden;
}

.menu-list a {
  display: inline-block;
  color: #000;

  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
  white-space: nowrap;

  opacity: 0;
  transform: translateY(110%);

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
  font-size: clamp(30px, 3vw, 50px);
}
.menu-list a span {
  font-size: clamp(12px, 1vw, 20px);
}

.side-menu.is-open .menu-list a {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s;
}
.menu-list li a:hover {
  color: rgb(219, 88, 88);
}
@media (max-width: 768px) {
  .menu-list-wrap {
    display: block;
  }

  .menu-list + .menu-list {
    margin-top: 0;
  }

  .menu-list a {
    line-height: 1.65;
  }
}

/* ===================================
   動き
=================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.delay1 {
  transition-delay: 0.7s;
}
.delay2 {
  transition-delay: 0.8s;
}
.delay3 {
  transition-delay: 0.9s;
}
.delay4 {
  transition-delay: 1s;
}
.delay5 {
  transition-delay: 1.1s;
}
.delay6 {
  transition-delay: 1.2s;
}

/* ===================================
   デコレーション
=================================== */

.deco_cloud1 img {
  display: block;
  width: 100%;
}
.deco_cloud1,
.deco_cloud2,
.deco_flower1,
.deco_flower2,
.deco_flower3 {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  animation: cloudFloat 8s ease-in-out infinite;
}
.deco_cloud1 {
  width: 6%;
  top: 14%;
  left: 4%;
}
.deco_cloud2 {
  width: 6%;
  top: 43%;
  right: 49%;
}

@keyframes cloudFloat {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
}
.deco_flower1 {
  width: 6%;
  top: 1%;
  left: 15%;
}
.deco_flower2 {
  width: 4%;
  top: 9%;
  left: 5%;
}
.deco_flower3 {
  width: 35%;
  top: 70%;
  left: -1%;
  animation: rotation 8s ease-in-out infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* =====================================================
========================================================
========================================================
   スマホ
======================================================== 
========================================================
===================================================== */

@media (max-width: 768px) {
  .global-nav {
    width: 100%;
    height: 60px;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .content-wrap {
    padding-left: 0;
    padding-top: 60px;
  }

  .menu-btn {
    left: 20px;
    transform: none;
    top: 16px;
    width: 32px;
    height: 24px;
  }

  .menu-btn span:nth-child(2) {
    top: 11px;
  }

  .menu-btn span:nth-child(3) {
    top: 22px;
  }

  .menu-btn.is-open span:nth-child(1),
  .menu-btn.is-open span:nth-child(3) {
    top: 11px;
  }

  .global-nav .side-text {
    position: absolute;
    top: 20px;
    left: 70px;
    transform: none;
    writing-mode: horizontal-tb;
    font-size: 10px;
    line-height: 0.8;
  }

  .x-link {
    display: none;
  }

  .side-menu {
    transform: translate3d(0, -100%, 0);
    background-position: top 40px right -100px;
  }

  .side-menu.is-open {
    transform: translate3d(0, 0, 0);
  }
  .menu-list a {
    font-size: clamp(32px, 7vw, 54px);
  }
  .read {
    width: 20%;
    top: 6%;
    right: 2%;
  }

  /* ===================================
  nav
=================================== */
  .nav {
    border-bottom: 1px solid #ffe8e8;
    padding: 0 3%;
    background: url(../_img/bg.png);
    background-size: 5%;
    gap: 5%;
    padding: 5% 0;

    display: flex;
    align-items: center;
  }
  .nav ul {
    width: 65%;
    gap: 15px;
  }
  /* ===================================
  ニュース
=================================== */
  .news_txt {
    font-size: 5.5cqw;
  }

  /* ==================================================
   レイアウト
================================================== */
  .top {
    display: flex;

    flex-direction: column;
  }

  .content-right {
    order: -1;
    width: 100%;
  }

  .content-left {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  h1 {
    order: 2;
  }

  .nav {
    order: 3;
  }

  .news {
    order: 4;
  }

  .youtube {
    order: 5;
  }
  /* ==================================================
   ストーリー
================================================== */
  .story {
    margin-top: 20%;
    padding: 90px 20px 60px;
    font-size: 16px;
    background-size:
      200% auto,
      200% auto,
      25px;
  }

  .story_ttl {
    width: 16%;
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
  }

  .story_txt {
    text-align: center;
    padding: 9% 0 20%;
  }
  .story_txt p {
    font-size: 3.5vw;
    margin-bottom: 30px;
  }
  .story_txt p span {
    display: inline;
    background: #4f5e85;
    color: #fff;
    padding: 0.2em 0.5em 0.3em;

    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .story-thumbnail {
    width: 32%;
  }

  .story-thumbnail:nth-child(1) {
    top: 2%;
    left: 2%;
  }
  .story-thumbnail:nth-child(2) {
    left: auto;
    top: 2%;
    right: 2%;
  }
  .story-thumbnail:nth-child(3) {
    left: 1%;
    top: auto;
    bottom: 6%;
  }

  .story-thumbnail:nth-child(4) {
    display: none;
  }

  .story-thumbnail:nth-child(5) {
    right: 34%;
    top: auto;
    bottom: 6%;
  }

  .story-thumbnail:nth-child(6) {
    right: 1%;
    top: auto;
    bottom: 6%;
  }

  /* ===================================
制作陣
=================================== */

  .cast-staff {
    margin-top: 20%;
    padding: 50px 20px 60px;
    font-size: 16px;
    background-size:
      200% auto,
      200% auto,
      55px;
  }
  .cast-staff__title {
    width: 16%;
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
  }

  /* 見出し */
  .cast-staff__heading {
    gap: 20px;
    margin-bottom: 24px;
  }

  .cast-staff__columns {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 20% 0 5% 0;
  }

  .cast-staff__item {
    margin-bottom: 38px;
  }
  /* リスト */
  .cast-staff__list {
    margin: 0 0 0 auto;
    width: 100%;
  }

  /* 名前 */
  .cast-staff__item dd {
    font-size: 24px;
  }
  .cast-staff__item {
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  /* ===================================
  コミックス
=================================== */
  .comics {
    margin-top: 20%;
    padding: 0;
    font-size: 16px;
    background-size:
      200% auto,
      200% auto,
      55px;
  }
  .comics_ttl {
    width: 16%;
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
  }

  ul.comics_list {
    grid-template-columns: repeat(3, 1fr);
    padding: 30% 0 4% 0;
    gap: 10px 10px;

    margin: 0 auto;
  }
  ul.comics_list img {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  }
  .comics_txt {
    line-height: 1.8;
    text-align: center;
  }
  .link_btn {
    width: 100%;
  }

  /* ===================================
   デコレーション
=================================== */

  .deco_cloud1 {
    width: 12%;
    top: 13%;
    left: 4%;
  }
  .deco_cloud2 {
    width: 13%;
    top: 92%;
    right: 2%;
  }
  .deco_flower1 {
    width: 12%;
    top: 1%;
    left: 15%;
  }
  .deco_flower2 {
    width: 13%;
    top: 20%;
    left: auto;
    right: 2%;
  }
  .deco_flower3 {
    width: 35%;
    top: 66%;
    left: auto;
    right: 5%;
    animation: rotation 8s ease-in-out infinite;
  }
}

/* ===================================
   ローディング
=================================== */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;

  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.6s ease,
    visibility 0s linear 0.6s;
}

#loading img {
  width: 55%;
  max-width: 400px;
  height: auto;
}

#loading.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loadingLogo {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}
.cast-staff__item::after {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cast-staff__item.is-visible::after {
  transform: scaleX(1);
}
body.is-menu-open {
  overflow: hidden;
}
