@charset "UTF-8";
/*-------------------------------
#introduction
- 背景動画はセクション内（absolute・min 100vh）
- スクロールで #story へ進むと動画が消え、bg_snow が見える
-------------------------------*/
#introduction {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 20% 5%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #introduction {
    padding: 10% 0;
  }
}
#introduction > .story-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

.intro-wrapper {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  padding: 15% 5%;
  box-sizing: border-box;
}
@media screen and (min-width: 960px) {
  .intro-wrapper {
    padding: 5% 5%;
  }
}
.intro-wrapper .ttl-box {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.intro-box .intro-copy {
  margin-bottom: 1.5rem;
}
.intro-box p {
  text-align: justify;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .intro-box p {
    text-align: justify;
  }
}
.intro-box .space {
  letter-spacing: -0.01em;
}

.intro-gallery {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
}
.intro-gallery picture {
  display: block;
  line-height: 0;
  min-width: 0;
}
.intro-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-gallery {
  /* PC: picture 含む直下3つを均等幅（img単体への width:% は中の画像だけ縮む） */
}
@media screen and (min-width: 960px) {
  .intro-gallery > * {
    flex: 1 1 0;
    width: 33.333%;
    min-width: 0;
  }
}
.intro-gallery {
  /* SP: 2枚目が上段全幅、1・3枚目が下段50%ずつ */
}
@media screen and (max-width: 960px) {
  .intro-gallery {
    flex-wrap: wrap;
  }
  .intro-gallery > *:nth-child(1) {
    order: 2;
    width: 50%;
  }
  .intro-gallery > *:nth-child(2) {
    order: 1;
    width: 100%;
  }
  .intro-gallery > *:nth-child(3) {
    order: 3;
    width: 50%;
  }
}

/*
  背景レイヤー（下→上）
  1. #wrapper:before の bg_snow（共通CSS・fixed）
  2. #introduction 内の動画（セクションと一緒にスクロール）
  3. 各セクションのコンテンツ
*/
#story {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 100%;
  overflow-x: clip;
}

.story-wrapper {
  position: relative;
  padding: 10% 0 0;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .story-wrapper {
    padding: 8% 0% 0;
  }
}
.story-wrapper .ttl-box {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.story-box {
  padding: 0 5%;
  max-width: 960px;
  margin: 0 auto -1rem;
}
@media screen and (min-width: 960px) {
  .story-box {
    padding: 0 1% 0;
    margin: 0 auto -4rem;
  }
}
.story-box .story-copy {
  margin: 0 auto 1rem;
  max-width: 600px;
  width: 100%;
}
.story-box p {
  text-align: justify;
  line-height: 2;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 960px) {
  .story-box p {
    text-align: center;
  }
}
.story-box .space {
  letter-spacing: -0.01em;
}

#story .story-box {
  position: relative;
  z-index: 2;
}
#story .ttl-box {
  position: relative;
  z-index: 2;
}

/* テキスト下に少し潜り込ませる（顔が見切れないよう高さは自動） */
.story-visual {
  z-index: 1;
  width: 100%;
}
.story-visual picture,
.story-visual img {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}

#introduction .story-box p {
  text-shadow: 0 0 16px #fff, 0 0 32px #fff, 0 0 48px rgb(255, 255, 255);
}

.cast-staff {
  position: relative;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  background-color: transparent;
  padding: 5rem 0 0;
  overflow-x: clip;
}
.cast-staff:before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../../../assets/common/img/bg_snow02_pc.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .cast-staff:before {
    background-image: url(../../../assets/common/img/bg_snow02_pc.webp);
  }
}

/* ハンバーガーが header(z-index:1000) の下に隠れないようにする */
#drawer-btn {
  z-index: 1100;
}

#cast {
  position: relative;
  padding: 5% 0;
  margin-bottom: 10rem;
}
@media screen and (min-width: 960px) {
  #cast {
    padding: 5% 0;
    margin-bottom: 5rem;
  }
  #cast .cast-list {
    max-width: 808px;
    margin-left: auto;
    margin-right: auto;
  }
}

#staff {
  position: relative;
  padding: 5% 4% 2%;
  overflow-x: clip;
}
@media screen and (min-width: 960px) {
  #staff {
    padding: 5% 0 1%;
  }
}

.staff-car {
  position: relative;
  display: block;
  width: 55%;
  max-width: 200px;
  margin: 0.75rem 0 0 auto;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (min-width: 960px) {
  .staff-car {
    width: 28%;
    max-width: 280px;
    margin: 0.5rem 1.5rem 0 auto;
  }
}

.staff-car__mover {
  transform: translate3d(42%, -70%, 0);
  opacity: 0;
  transition: transform 2.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 2.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.staff-car.is-visible .staff-car__mover {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.staff-car__mover img {
  display: block;
  width: 100%;
  height: auto;
}

.staff-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.staff-wrapper .ttl-box {
  margin-bottom: 2rem;
}

.staff-profiles {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.staff-profile {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.staff-profile-name {
  font-size: 1.75rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  color: #30221b;
}
.staff-profile-name-role {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  color: #30221b;
}

.staff-profile-box {
  max-width: 800px;
  margin: 0 auto;
}

.staff-profile-ttl {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #b51d23;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}

.staff-profile-txt {
  line-height: 1.9;
  font-size: 1rem;
  color: #30221b;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  .staff-profile-txt {
    text-align: left;
    font-size: 0.9rem;
  }
}

#original {
  position: relative;
  z-index: 2;
  padding: 30% 4%;
  background: url(../img/original_bg_sp.webp) no-repeat top right/cover;
}
@media screen and (min-width: 960px) {
  #original {
    padding: 12% 0 14%;
    background-image: url(../img/original_bg.webp);
  }
}
#original .staff-wrapper {
  background: rgba(255, 255, 255, 0.9);
  padding: 10% 6%;
  box-sizing: border-box;
}
@media screen and (min-width: 960px) {
  #original .staff-wrapper {
    padding: 8% 5%;
  }
}
#original .staff-profile {
  padding-bottom: 0;
  border-bottom: none;
}
.original-wrapper {
  background: rgba(255, 255, 255, 0.85);
  padding: 10% 6%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 960px) {
  .original-wrapper {
    padding: 8% 5%;
  }
}
.original-wrapper .ttl-box {
  margin-bottom: 2rem;
}

.original-profiles .original-profile-name {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  color: #30221b;
}
.original-profiles .original-profile-sub-name {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  color: #30221b;
}
.original-profiles .original-profile-ttl {
  font-size: 1rem;
  line-height: 1.6;
  color: #b51d23;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 700;
}
.original-profiles .original-profile-txt {
  line-height: 1.9;
  font-size: 1rem;
  text-align: justify;
}

#footer {
  position: relative;
  z-index: 2;
  background: transparent;
}

.cast-wrapper {
  max-width: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .cast-wrapper {
    max-width: 800px;
  }
}
.cast-wrapper .ttl-box {
  margin-bottom: 2rem;
  padding: 0 4%;
}
@media screen and (min-width: 960px) {
  .cast-wrapper .ttl-box {
    padding: 0;
  }
}

.letter-space {
  letter-spacing: -0.1em;
}

.cast-list,
.staff-list {
  display: grid;
  gap: 0;
  margin-bottom: 0;
  line-height: 0;
}

.cast-row--lead {
  grid-template-columns: 1fr;
  background: #e8e8e8;
  overflow: hidden;
}
.cast-row--lead .cast-item-link {
  /* aspect-ratio は iOS で行間に隙間が出るため padding 方式 */
  height: 0;
  padding-bottom: 28.5714285714%;
  aspect-ratio: auto;
}
.cast-row--lead {
  /* iOS Safari の端数丸めで 1px 未満の隙間が見える場合があるため、
     リード（2と3がいる領域）だけ画像をわずかに拡大して重ねる */
}
@media screen and (max-width: 960px) {
  .cast-row--lead .cast-item-img {
    transform: scale(1.03);
  }
  .cast-row--lead .cast-item-link:hover .cast-item-img {
    transform: scale(1.08);
  }
}
.cast-row--lead .cast-item-plus {
  width: 56px;
}
.cast-row--lead .cast-item-text {
  top: 50%;
  bottom: auto;
  width: 50%;
  transform: translateY(-50%);
  background: none;
  padding: 0 16px;
  box-sizing: border-box;
  /* ラベル文字サイズをテキスト枠幅基準で縮尺 */
  container-type: inline-size;
  container-name: cast-label-box;
}
@media screen and (max-width: 960px) {
  .cast-row--lead .cast-item-text {
    padding: 0 25px;
  }
}
.cast-row--lead .cast-label {
  /* PC基準 3rem / 1.425rem（比率 0.475）を保ったまま枠幅に追従 */
  --cast-role-size: clamp(1.35rem, 20cqi, 3rem);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin: 0;
  line-height: 1;
  text-align: center;
  font-size: var(--cast-role-size);
}
.cast-row--lead .cast-role {
  font-size: 1em;
  line-height: 1;
  flex-shrink: 0;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}
.cast-row--lead .cast-name {
  font-size: 0.475em;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}

.cast-1 .cast-item-text,
.cast-3 .cast-item-text {
  left: 50%;
  right: 0;
  text-align: center;
}

.cast-2 .cast-item-text,
.cast-4 .cast-item-text {
  left: 0;
  right: 50%;
  text-align: center;
  color: #30221b;
}

.cast-row--5,
.cast-row--6 {
  grid-template-columns: repeat(4, 1fr);
}
.cast-row--5 .cast-item-link,
.cast-row--6 .cast-item-link {
  aspect-ratio: 1/1;
}
.cast-row--5 .cast-item-plus,
.cast-row--6 .cast-item-plus {
  width: 40px;
}
.cast-row--5 .cast-item-text,
.cast-row--6 .cast-item-text {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  transform: none;
  padding: 24px 3px 1px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
}
.cast-row--5 .cast-label,
.cast-row--6 .cast-label {
  margin: 0;
  line-height: 1;
}
.cast-row--5 .cast-role,
.cast-row--6 .cast-role {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}
.cast-row--5 .cast-name,
.cast-row--6 .cast-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}
@media screen and (min-width: 960px) {
  .cast-row--5 .cast-label,
  .cast-row--6 .cast-label {
    line-height: 1.2;
  }
  .cast-row--5 .cast-role,
  .cast-row--6 .cast-role {
    font-size: 1.25rem;
  }
  .cast-row--5 .cast-name,
  .cast-row--6 .cast-name {
    font-size: 1rem;
    line-height: inherit;
  }
}

.cast-row--7 {
  grid-template-columns: repeat(5, 1fr);
}
.cast-row--7 .cast-item-link {
  aspect-ratio: 1/1;
}
.cast-row--7 .cast-item-plus {
  width: 32px;
}
.cast-row--7 .cast-item-text {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  transform: none;
  padding: 24px 8px 3px 3px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
}
.cast-row--7 .cast-label {
  margin: 0;
  line-height: 1.2;
}
.cast-row--7 .cast-role {
  display: block;
  font-size: 0.875rem;
  line-height: 1.15;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}
.cast-row--7 .cast-name {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 1.15;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}
@media screen and (min-width: 960px) {
  .cast-row--7 .cast-label {
    line-height: 1.2;
  }
  .cast-row--7 .cast-role {
    font-size: 1.25rem;
    line-height: inherit;
  }
  .cast-row--7 .cast-name {
    font-size: 1rem;
    line-height: inherit;
  }
}

.cast-item,
.staff-item {
  padding: 0;
  background: #e8e8e8;
  overflow: hidden;
  line-height: 0;
}

.cast-item-link {
  display: block;
  position: relative;
  width: 100%;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  background: #e8e8e8;
  line-height: 0;
  font-size: 0;
}
.cast-item-link:hover .cast-item-img {
  transform: scale(1.05);
}

.cast-item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  vertical-align: bottom;
  background: #e8e8e8;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.cast-item-text {
  position: absolute;
  z-index: 2;
  color: #fff;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: normal;
}

.cast-label {
  text-align: left;
}

.cast-name,
.staff-name {
  line-height: 1.5;
  text-align: left;
}

.cast-role,
.staff-role {
  line-height: 1.5;
  text-align: left;
}

.cast-item-plus {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 32px;
  height: auto;
  display: block;
  vertical-align: bottom;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .cast-item-plus {
    transform: scale(0.5);
    transform-origin: right bottom;
  }
}

.staff-list {
  grid-template-columns: 1fr;
}

.cast-modal,
.staff-modal {
  display: none;
  max-width: 960px;
}

.modal-cast-container {
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 960px) {
  .modal-cast-container {
    flex-direction: row;
    align-items: stretch;
  }
}

.modal-cast-media {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  line-height: 0;
}
@media screen and (min-width: 960px) {
  .modal-cast-media {
    width: 42%;
    align-self: stretch;
  }
}
.modal-cast-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.modal-cast-media img {
  display: block;
  width: 100%;
  height: auto;
  background: #e8e8e8;
}
@media screen and (min-width: 960px) {
  .modal-cast-media img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

.modal-cast-body {
  flex: 1;
  min-width: 0;
  /* SP: 画像の下に役名／名前 → Character → Profile */
  padding: 20px 20px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (min-width: 960px) {
  .modal-cast-body {
    padding: 40px 40px 40px 40px;
    justify-content: center;
  }
}
.modal-cast-body .cast-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}
.modal-cast-body .cast-label .cast-role {
  font-size: 2rem;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}
.modal-cast-body .cast-label .cast-name {
  font-size: 1rem;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}

.modal-cast-thumb {
  margin-bottom: 16px;
}
.modal-cast-thumb img {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  background: #e8e8e8;
}

.comment-box {
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.comment-ttl {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: #b51d23;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}

.comment-txt {
  line-height: 1.5;
  white-space: pre-line;
  font-size: 1rem;
}
@media screen and (min-width: 960px) {
  .comment-txt {
    font-size: 0.875rem;
  }
}

.profile-box {
  margin-top: 20px;
}

.profile-ttl {
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-size: 0.875rem;
  color: #b51d23;
}

.profile-txt {
  line-height: 1.5;
  font-size: 1rem;
}
@media screen and (min-width: 960px) {
  .profile-txt {
    font-size: 0.875rem;
  }
}

body.is-cast-staff-modaal-open {
  overflow: hidden;
}

body.is-cast-staff-modaal-open .modaal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #000 !important;
  opacity: 0.7 !important;
}

.cast-staff-modaal.modaal-wrapper {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 9001;
}
.cast-staff-modaal .modaal-inner-wrapper {
  overflow: visible;
  pointer-events: none;
}
.cast-staff-modaal .modaal-container {
  position: relative;
  width: 100% !important;
  max-width: none;
  overflow: visible;
  background: #fff;
  color: #222;
  pointer-events: auto;
}
.cast-staff-modaal .modaal-content-container {
  position: relative;
  background: #fff;
  padding: 0;
  box-sizing: border-box;
}
.cast-staff-modaal .modal-cast-container,
.cast-staff-modaal .modal-cast-name,
.cast-staff-modaal .comment-txt,
.cast-staff-modaal .profile-txt {
  color: #222;
  text-align: justify;
}
.cast-staff-modaal .comment-ttl,
.cast-staff-modaal .profile-ttl {
  color: #b51d23;
}
.cast-staff-modaal .modaal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  border: none;
  opacity: 1;
  z-index: 10001;
  text-indent: -9999px;
  overflow: visible;
  pointer-events: auto;
  transform: none;
}
.cast-staff-modaal .modaal-close::before,
.cast-staff-modaal .modaal-close::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 17px;
  background: #000;
  width: 2px;
  height: 24px;
}
.cast-staff-modaal .modaal-close::before {
  transform: rotate(45deg);
}
.cast-staff-modaal .modaal-close::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 960px) {
  body.is-cast-staff-modaal-open .modaal-overlay {
    top: 0;
    height: 100vh;
    height: 100dvh;
  }
  .cast-staff-modaal.modaal-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
  .cast-staff-modaal .modaal-outer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: visible;
  }
  .cast-staff-modaal .modaal-inner-wrapper {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    /* 閉じるボタン分を上下均等に確保し、画面中央に寄せる */
    padding: 52px 20px;
    box-sizing: border-box;
    overflow: visible;
    vertical-align: middle;
  }
  .cast-staff-modaal .modaal-container {
    display: block;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: none;
    overflow: visible;
    background: #fff;
    border-radius: 0;
  }
  .cast-staff-modaal .modaal-content-container {
    max-height: calc(100dvh - 104px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
  }
  .cast-staff-modaal {
    /* 画像はモーダル上端・左右に隙間なし */
  }
  .cast-staff-modaal .modal-cast-media {
    width: 100%;
    margin: 0;
  }
  .cast-staff-modaal {
    /* 閉じるボタンはモーダル右上の外側（オーバーレイ上）・白 */
  }
  .cast-staff-modaal .modaal-close {
    top: -44px;
    right: 0;
  }
  .cast-staff-modaal .modaal-close::before, .cast-staff-modaal .modaal-close::after {
    background: #fff;
  }
}
@media screen and (min-width: 960px) {
  body.is-cast-staff-modaal-open .modaal-overlay {
    left: 0;
    width: 100%;
    top: 0;
    height: 100vh;
    height: 100dvh;
  }
  .cast-staff-modaal.modaal-wrapper {
    left: 0;
    width: 100%;
    top: 0;
    height: 100vh;
    height: 100dvh;
    overflow: visible;
  }
  .cast-staff-modaal .modaal-outer-wrapper,
  .cast-staff-modaal .modaal-inner-wrapper {
    height: 100%;
    overflow: visible;
  }
  .cast-staff-modaal .modaal-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
    overflow: visible;
  }
  .cast-staff-modaal .modaal-container {
    width: 90% !important;
    max-width: 960px;
    overflow: hidden;
    background: #fff;
    padding: 0;
  }
  .cast-staff-modaal .modaal-content-container {
    max-height: calc(100dvh - 80px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
  }
  .cast-staff-modaal .modaal-close {
    top: 12px;
    right: 12px;
    transform: none;
    z-index: 10001;
  }
}/*# sourceMappingURL=style.css.map */