@charset "UTF-8";

/* =========================
  Base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  --menu-button-left-shift: 30px;
  font-family: var(--font-body);
  color: #fff;
  background: #11131d;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: url("../images/common/texture-common.webp") left top / 320px 320px
    repeat;
  content: "";
  opacity: 0.1;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.inner {
  position: relative;
  width: min(100% - 40px, 1100px);
  margin-inline: auto;
}

/* =========================
  Header / Menu
========================= */

.header {
  position: fixed;
  top: var(--top-decoration-y, 0px);
  right: calc(
    var(--menu-button-right, clamp(16px, 2vw, 32px)) +
      var(--menu-button-left-shift, 0px)
  );
  z-index: 9999;
  width: var(--menu-button-size, 72px);
}

.menu_button {
  position: relative;
  z-index: 3;
  width: var(--menu-button-size, 72px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  perspective: 600px;
  transition:
    opacity 0.2s ease,
    transform 0.35s ease;
}

.menu_button_img {
  transform-origin: 50% 50%;
  animation: menu-star-spin 2.8s linear infinite;
}

.menu_button_text {
  position: absolute;
  top: 93%;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: var(--font-heading);
  font-size: clamp(20px, calc(var(--page-width, 1440px) * 30 / 1440), 30px);
  line-height: 1;
  color: #ffab24;
}

.site_menu {
  position: absolute;
  top: 0;
  right: 50%;
  display: block;
  width: clamp(150px, calc(var(--page-width, 1440px) * 178 / 1440), 178px);
  aspect-ratio: 155 / 513;
  background: url("../images/common/menu-click-pc.png") center top / contain
    no-repeat;
  opacity: 0;
  transform: translate(50%, -18%);
  transition:
    opacity 0.25s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site_menu[hidden] {
  display: none;
}

.site_menu.is-open {
  opacity: 1;
  transform: translate(50%, 0);
}

.site_menu a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: clamp(20px, calc(var(--page-width, 1440px) * 24 / 1440), 24px);
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 2px 3px rgb(0 0 0 / 0.45);
  transform: translateY(-50%);
  white-space: nowrap;
}

.site_menu a:nth-child(1) {
  top: 8%;
}

.site_menu a:nth-child(2) {
  top: 20%;
}

.site_menu a:nth-child(3) {
  top: 32%;
}

.site_menu a:nth-child(4) {
  top: 43%;
}

.site_menu a:nth-child(5) {
  top: 55%;
}

.site_menu a:hover,
.site_menu a:focus-visible {
  opacity: 0.68;
}

.header.is-menu-open .menu_button {
  top: clamp(264px, calc(var(--page-width, 1440px) * 328 / 1440), 328px);
  right: clamp(25px, calc(var(--page-width, 1440px) * 39 / 1440), 39px);
  width: clamp(64px, calc(var(--page-width, 1440px) * 80 / 1440), 80px);
  height: clamp(138px, calc(var(--page-width, 1440px) * 173 / 1440), 173px);
  opacity: 0;
  pointer-events: none;
}

.header.is-menu-open .menu_button_img,
.header.is-menu-open .menu_button_text {
  visibility: hidden;
}

.is-disabled {
  cursor: default;
  pointer-events: none;
  filter: grayscale(0.65);
  opacity: 0.58;
}

@keyframes menu-star-spin {
  0%,
  88% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes menu-sp-star-spin {
  0%,
  70% {
    transform: rotateY(0deg);
  }

  82%,
  100% {
    transform: rotateY(360deg);
  }
}

/* =========================
  Main Visual
========================= */

.main_visual {
  position: relative;
  min-height: min(100vh, 927px);
  aspect-ratio: 1910 / 927;
  overflow: hidden;
  background: url("../images/top/mv-bg.webp") center top / cover no-repeat;
}

.main_copy {
  position: absolute;
  top: 24%;
  left: 32%;
  z-index: 4;
  transform: translateX(-50%);
  text-align: center;
}

.lead {
  margin: 0 0 18px;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.main_title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 6.4vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
}

.main_visual_stars,
.performance_list_stars,
.contact_stars {
  position: absolute;
  top: var(--header-stars-top, 0);
  left: 0;
  width: 100%;
  height: var(--header-stars-height);
  max-width: none;
  overflow: hidden;
  background: url("../images/top/header-stars.png") left top /
    var(--header-stars-size, auto 100%) repeat-x;
  pointer-events: none;
}

.main_visual_myself {
  position: absolute;
  right: 16.5%;
  bottom: 12.5%;
  z-index: 6;
  width: min(23.5vw, 449px);
}

.main_visual_myself_right {
  position: absolute;
  right: 13.2%;
  bottom: 12.5%;
  z-index: 7;
  width: min(13.5vw, 257px);
}

.main_visual_dog {
  display: none;
}

.main_visual_people {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 5;
  width: 100%;
}

/* =========================
  Section Title
========================= */

.section_title {
  position: relative;
  z-index: 3;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #d82020;
  text-align: center;
  text-shadow: 0 4px 5px rgba(0, 0, 0, 0.28);
}

.section_ruby {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: clamp(14px, 0.9vw, 14px);
  line-height: 1;
  letter-spacing: 0.12em;
  color: inherit;
  white-space: nowrap;
  text-shadow: none;
}

/* =========================
  Introduction
========================= */

.introduction {
  position: relative;
  min-height: var(--intro-min-height, 1320px);
  margin-top: -1px;
  padding: 128px 0 120px;
  overflow: hidden;
  background: url("../images/top/introduction-bg.webp")
    var(--intro-bg-position-x, center) var(--intro-bg-position-y, top) /
    var(--intro-bg-size, cover) no-repeat #1f2330;
}

.introduction::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(168deg, rgba(255, 255, 238, 0.95) 0 12%, transparent 12.2%),
    radial-gradient(
      circle at 54% 49%,
      rgba(255, 244, 184, 0.95) 0 15%,
      rgba(255, 244, 184, 0.35) 18%,
      transparent 25%
    ),
    radial-gradient(
      circle at 33% 59%,
      rgba(255, 244, 184, 0.9) 0 13%,
      rgba(255, 244, 184, 0.28) 17%,
      transparent 23%
    );
  pointer-events: none;
}

.introduction .inner {
  min-height: 1070px;
}

.introduction .section_title {
  color: #d82020;
}

.profile_image {
  position: absolute;
  left: 12%;
  top: 520px;
  z-index: 2;
  width: min(30vw, 370px);
}

.profile {
  position: absolute;
  top: 485px;
  right: 9.5%;
  z-index: 3;
  width: 420px;
  color: #5b4939;
  text-align: center;
}

.role {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.profile h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.profile_copy {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.profile_text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
}

.intro_star {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.intro_star-left {
  top: 285px;
  left: -4%;
  width: min(24vw, 310px);
}

.intro_star-right {
  top: 180px;
  right: 0;
  width: min(18vw, 260px);
}

.intro_star-bottom {
  right: -3%;
  bottom: 5%;
  width: min(42vw, 540px);
}

/* =========================
  Speciality
========================= */

.speciality {
  position: relative;
  min-height: 1160px;
  margin-top: -1px;
  padding: 150px 0 180px;
  overflow: hidden;
  background: url("../images/top/speciality-bg.webp") center top / cover
    no-repeat;
}

.speciality .section_title {
  margin-bottom: 80px;
  color: #fff;
}

.speciality_title-star {
  position: absolute;
  top: 4px;
  z-index: 2;
  width: 78px;
}

.speciality_title-star-left {
  left: 30%;
}

.speciality_title-star-right {
  right: 30%;
}

.speciality-list {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.speciality-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 27px;
}

.speciality-item:last-child {
  margin-bottom: 0;
}

.speciality-item_label {
  width: 130px;
}

.speciality-item_text,
.speciality-item_tools {
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 4px rgba(60, 0, 0, 0.35);
}

.speciality-item_tools {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.55em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.speciality-item_tools li {
  display: inline-flex;
  align-items: baseline;
}

.speciality-item_tools li:not(:last-child)::after {
  margin-left: 0.55em;
  content: "/";
}

/* =========================
  Performances
========================= */

.performances {
  position: relative;
  min-height: 1530px;
  margin-top: -1px;
  padding: 245px 0 130px;
  overflow: hidden;
  background: url("../images/top/performances-bg.webp") center top / cover
    no-repeat;
}

.performances .section_title {
  transform: rotate(7deg);
  color: #d82020;
}

.works_books {
  position: relative;
  min-height: 1080px;
  margin-top: 10px;
}

.work_book,
.work_click {
  position: absolute;
  transition:
    opacity 0.45s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.25s ease;
  transition-delay: var(--works-item-delay, 0ms);
}

.works_books .work_book {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transform: translateY(28px) scale(0.94) rotate(var(--rotate, 0deg));
  visibility: hidden;
}

.works_books .work_click {
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
  visibility: hidden;
}

.work_book:not(.is-disabled):hover,
.work_book:not(.is-disabled):focus-visible {
  filter: brightness(1.05);
  transform: translateY(-4px) rotate(var(--rotate, 0deg)) scale(1.035);
}

.works_books .work_book.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1) rotate(var(--rotate, 0deg));
  visibility: visible;
}

.works_books .work_book.is-visible:not(.is-disabled):hover,
.works_books .work_book.is-visible:not(.is-disabled):focus-visible {
  filter: brightness(1.05);
  transform: translateY(-4px) scale(1.035) rotate(var(--rotate, 0deg));
}

.performance_title_star {
  opacity: 0;
  transition:
    opacity 0.38s ease,
    visibility 0.38s ease;
  visibility: hidden;
}

.performances.is-decorated .performance_title_star,
.performances.is-decorated .work_click {
  opacity: 1;
  visibility: visible;
}

.performances.is-decorated .work_click {
  transform: scale(1);
}

.work_salon {
  --rotate: -10deg;
  top: 70px;
  left: 4%;
  width: 305px;
  transform: rotate(var(--rotate));
}

.work_burger {
  --rotate: 4deg;
  top: 160px;
  left: 37%;
  width: 310px;
  transform: rotate(var(--rotate));
}

.work_ice {
  --rotate: 10deg;
  top: 135px;
  right: 4%;
  width: 320px;
  transform: rotate(var(--rotate));
}

.work_workers {
  --rotate: -7deg;
  top: 480px;
  left: 2%;
  width: 310px;
  transform: rotate(var(--rotate));
}

.work_cafe {
  --rotate: 3deg;
  top: 560px;
  left: 36%;
  width: 290px;
  transform: rotate(var(--rotate));
}

.work_mobile {
  --rotate: 10deg;
  top: 520px;
  right: 5%;
  width: 320px;
  transform: rotate(var(--rotate));
}

.click1 {
  top: 18px;
  left: 7%;
  width: 105px;
}

.click2 {
  top: 98px;
  left: 34%;
  width: 100px;
}

.more_link {
  position: absolute;
  right: 11%;
  bottom: 135px;
  z-index: 3;
  display: inline-block;
  padding-bottom: 8px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: #d82020;
  letter-spacing: 0.08em;
  transform: rotate(-7deg);
}

.more_link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  content: "";
  background: currentColor;
}

/* =========================
  Casting Call
========================= */

.casting_call {
  position: relative;
  min-height: 1040px;
  margin-top: -1px;
  padding: 330px 0 120px;
  overflow: hidden;
  text-align: center;
  background: #11131d;
}

.casting_call::before,
.casting_call::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.casting_call .section_title {
  position: relative;
  z-index: 3;
  margin-bottom: 300px;
}

.closing-text {
  position: relative;
  z-index: 3;

  margin: 0 auto 42px;
  max-width: 720px;

  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.contact_img {
  position: relative;
  z-index: 3;

  width: 260px;
  margin: 0 auto;
}

/* =========================
  Footer
========================= */

.footer {
  position: relative;
  height: 270px;
  margin-top: -1px;
  overflow: hidden;
  background: #11131d;
}

.footer_wood-floor {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.footer_illust {
  position: absolute;
  left: 10%;
  bottom: 44px;
  z-index: 2;
  width: 150px;
}

.copyright {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  margin: 0;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
}

/* =========================
  Comp Based Layout
========================= */

:root {
  --page-width: min(100vw, 1440px);
  --bg-width: max(100vw, 1920px);
  --stage-left: calc((100vw - var(--page-width)) / 2);
  --top-decoration-y: 0px;
  --mv-curtain-scale: 1;
  --mv-curtain-width: calc(
    var(--page-width) * 1910 / 1440 * var(--mv-curtain-scale)
  );
  --mv-curtain-height: calc(var(--mv-curtain-width) * 927 / 1910);
  --mv-switch-delay: 1.2s;
  --mv-image-spot-x: 0.42;
  --mv-image-spot-y: 0.35;
  --mv-character-y: 0px;
  --mv-people-width: calc(var(--page-width) * 0.82);
  --mv-people-shift: calc(var(--mv-people-width) * 0.8);
  --menu-button-size: clamp(62px, calc(var(--page-width) * 88 / 1440), 88px);
  --menu-button-right: calc(var(--page-width) * 30 / 1440);
  --menu-button-gap: calc(var(--page-width) * 22 / 1440);
  --header-stars-height: calc(var(--page-width) * 287 / 1440);
  --header-curtain-height: calc(var(--page-width) * 770 / 1440);
  --intro-pair-offset: calc(var(--page-width) * 0.17);
  --intro-height: calc(var(--page-width) * 1821 / 1440);
  --intro-min-height: 1320px;
  --intro-bg-position-x: center;
  --intro-bg-position-y: top;
  --intro-bg-size: 1920px auto;
  --intro-spot-y: 32%;
  --intro-spot-left-size: calc(var(--page-width) * 0.19);
  --intro-spot-right-size: calc(var(--page-width) * 0.19);
  --intro-spot-left-x: 47%;
  --intro-spot-right-x: 53%;
  --intro-spot-left-offset-x: 0px;
  --intro-spot-left-offset-y: 0px;
  --intro-spot-right-offset-x: 0px;
  --intro-spot-right-offset-y: 0px;
  --intro-spot-left-motion-x: -100vw;
  --intro-spot-right-motion-x: 100vw;
  --intro-text-box-offset-y: 16%;
  --intro-profile-comment-gap-y: 8%;
  --intro-profile-image-x: 50%;
  --intro-profile-image-y: 30%;
  --intro-profile-image-offset-x: 0px;
  --intro-profile-image-offset-y: 0px;
  --intro-profile-image-opacity: 0;
  --intro-comment-bubble-offset-x: -50px;
  --intro-comment-bubble-offset-y: -30px;
  --intro-title-light-left: 100%;
  --intro-title-light-right: 100%;
  --intro-title-light-opacity: 0;
  --intro-star-left-x: calc(50% - var(--page-width) * 0.42);
  --intro-star-left-y: 12%;
  --intro-star-right-x: calc(50% + var(--page-width) * 0.28);
  --intro-star-right-y: 8%;
  --intro-star-bottom-x: calc(50% + var(--page-width) * 0.08);
  --intro-star-bottom-y: 68%;
  --speciality-overlap: calc(var(--page-width) * -600 / 1440);
  --speciality-overlap-offset: calc(var(--page-width) * 200 / 1440);
  --speciality-bg-height: calc(var(--page-width) * 1712 / 1440);
  --speciality-bg-width: calc(var(--speciality-bg-height) * 9293 / 6901);
  --speciality-side-fade: 6%;
  --speciality-top-fade-end: 10%;
  --speciality-fade-start: 75%;
  --speciality-fade-end: 90%;
  --dog-peek-x: calc(var(--page-width) * 0.5);
  --dog-peek-y: 81.5%;
  --dog-peek-width: clamp(
    120px,
    calc(var(--speciality-bg-width) * 160 / 1440),
    213px
  );
  --dog-peek-motion-start: 0.8;
  --dog-peek-motion-range: 0.5;
  --dog-left-paw-x: 27%;
  --dog-left-paw-y: 31%;
  --dog-left-paw-width: 13%;
  --dog-right-paw-x: 52%;
  --dog-right-paw-y: 37%;
  --dog-right-paw-width: 15%;
  --dog-left-y: 70%;
  --dog-right-y: 70%;
  --dog-face-y: 82%;
  --dog-left-opacity: 0;
  --dog-right-opacity: 0;
  --dog-face-opacity: 0;
  /* Performances book background controls */
  --performances-bg-scale: 1.5;
  --performances-start-overlap: calc(var(--page-width) * -70 / 1440);
  --performances-bg-y: calc(var(--page-width) * -400 / 1440);
  --performances-bg-bleed: calc(var(--page-width) * 260 / 1440);
  --performances-overlap: calc(var(--page-width) * -880 / 1440);
  --works-bg-width: calc(
    var(--page-width) * 2014 / 1440 * var(--performances-bg-scale)
  );
  --works-stage-y: calc(var(--works-bg-width) * 0 / 1440);
  --works-more-x: 68%;
  --works-more-y: 78%;
  --works-dog-left-start: 36;
  --works-dog-left-range: 24;
  --works-dog-top-start: 10.5;
  --works-dog-top-range: 4;
  --casting-title-y: 26%;
  --casting-left-spot-motion-x: -100vw;
  --casting-right-spot-motion-x: 100vw;
}

body {
  overflow-x: hidden;
}

html.is-performance-overlay-open,
body.is-performance-overlay-open {
  overflow: hidden;
}

html:has(.performance_work_overlay.is-active),
html:has(.performance_work_overlay:target),
body:has(.performance_work_overlay.is-active),
body:has(.performance_work_overlay:target) {
  overflow: hidden;
}

main,
.footer {
  width: 100%;
  margin-inline: auto;
}

.inner {
  width: var(--page-width);
  height: 100%;
  margin-inline: auto;
}

.main_visual,
.introduction,
.speciality,
.performances,
.casting_call,
.footer {
  min-height: 0;
  padding: 0;
}

.main_visual {
  height: calc(var(--page-width) * 927 / 1440);
  aspect-ratio: auto;
  background-position: center top;
  background-size: var(--mv-curtain-width) auto;
  background-repeat: repeat-x;
}

.main_visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: url("../images/top/mv-bg-righton.webp") center top /
    var(--mv-curtain-width) auto repeat-x;
  opacity: 0;
  animation: mv-piece-pop 0.01s step-end var(--mv-switch-delay) forwards;
  pointer-events: none;
}

.main_visual::after {
  position: absolute;
  left: 0;
  bottom: calc(var(--page-width) * -92 / 1440 + var(--mv-character-y));
  z-index: 8;
  width: 100%;
  height: calc(var(--page-width) * 420 / 1440);
  content: "";
  background-image:
    url("../images/top/MV-people.png"), url("../images/top/MV-people.png");
  background-position:
    center bottom,
    calc(50% + var(--mv-people-shift)) bottom;
  background-size:
    var(--mv-people-width) auto,
    var(--mv-people-width) auto;
  background-repeat: repeat-x;
  pointer-events: none;
}

.main_copy {
  isolation: isolate;
  top: calc(var(--mv-curtain-height) * var(--mv-image-spot-y));
  left: calc(
    50% - var(--mv-curtain-width) / 2 + var(--mv-curtain-width) *
      var(--mv-image-spot-x)
  );
  z-index: 4;
}

.lead {
  margin-bottom: calc(var(--page-width) * 18 / 1440);
  font-size: clamp(14px, calc(var(--page-width) * 20 / 1440), 20px);
}

.main_title {
  font-size: clamp(56px, calc(var(--page-width) * 96 / 1440), 96px);
}

.main_visual .lead,
.main_visual .main_title {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: mv-piece-pop 0.01s step-end var(--mv-switch-delay) forwards;
}

.main_visual_stars {
  --header-stars-top: var(--top-decoration-y);
  z-index: 3;
  opacity: 0;
  transform: translateY(-110%);
  animation: mv-stars-drop 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s forwards;
}

.main_visual_stars::before,
.main_visual_stars::after {
  display: none;
}

.main_visual_myself {
  right: calc(var(--stage-left) + var(--page-width) * 0.145);
  bottom: calc(3% + var(--mv-character-y));
  z-index: 6;
  width: calc(var(--page-width) * 250 / 1440);
}

.main_visual_myself_right {
  right: calc(var(--stage-left) + var(--page-width) * 0.296);
  bottom: calc(14% + var(--mv-character-y));
  z-index: 7;
  width: calc(var(--page-width) * 130 / 1440);
  max-width: none;
  opacity: 0;
  animation: mv-piece-pop 0.01s step-end var(--mv-switch-delay) forwards;
}

.main_visual_welcome {
  position: absolute;
  right: calc(var(--stage-left) + var(--page-width) * 0.105);
  top: calc(var(--page-width) * 520 / 1440);
  z-index: 8;
  width: calc(var(--page-width) * 149 / 1440);
  max-width: none;
  opacity: 0;
  transform: translateY(12px) rotate(-2deg);
  animation: mv-welcome-appear 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 1.72s
    forwards;
}

.main_visual_people {
  display: none;
}

@keyframes mv-stars-drop {
  0% {
    opacity: 0;
    transform: translateY(-110%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mv-piece-pop {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mv-welcome-appear {
  0% {
    opacity: 0;
    transform: translateY(12px) rotate(-2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.section_title {
  font-size: clamp(42px, calc(var(--page-width) * 76 / 1440), 76px);
}

.section_ruby {
  top: calc(var(--page-width) * -18 / 1440);
  font-size: clamp(14px, calc(var(--page-width) * 14 / 1440), 14px);
}

.introduction {
  margin-top: calc(var(--page-width) * -1 / 1440);
  height: var(--intro-height);
  background-color: #1f2330;
  background-position: var(--intro-bg-position-x) var(--intro-bg-position-y);
  background-size: var(--intro-bg-size);
  background-repeat: no-repeat;
}

.introduction::before {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(
      circle var(--intro-spot-right-size) at
        calc(
          var(--intro-spot-right-x) + var(--intro-spot-right-offset-x) +
            var(--intro-spot-right-motion-x)
        )
        calc(var(--intro-spot-y) + var(--intro-spot-right-offset-y)),
      rgba(255, 244, 184, 0.92) 50%,
      rgba(255, 244, 184, 0.36) 60%,
      transparent 70%
    ),
    radial-gradient(
      circle var(--intro-spot-left-size) at
        calc(
          var(--intro-spot-left-x) + var(--intro-spot-left-offset-x) +
            var(--intro-spot-left-motion-x)
        )
        calc(var(--intro-spot-y) + var(--intro-spot-left-offset-y)),
      rgba(255, 244, 184, 0.92) 50%,
      rgba(255, 244, 184, 0.36) 60%,
      transparent 70%
    );
  pointer-events: none;
}

.introduction::after {
  position: absolute;
  top: 0%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 17%;
  content: "";
  background: rgba(255, 255, 238, 0.96);
  opacity: var(--intro-title-light-opacity);
  clip-path: polygon(
    var(--intro-title-light-left) 20%,
    var(--intro-title-light-right) 1%,
    var(--intro-title-light-right) 18%,
    var(--intro-title-light-left) 100%
  );
  pointer-events: none;
}

.introduction .section_title {
  position: absolute;
  z-index: 3;
  top: 4.2%;
  left: 50%;
  transform: translateX(-50%);
  text-shadow:
    -0.18em 0.08em 0 rgba(60, 60, 60, 0.36),
    0 0.04em 0.08em rgba(0, 0, 0, 0.22);
}

.profile_image {
  top: calc(var(--intro-profile-image-y) + var(--intro-profile-image-offset-y));
  left: calc(
    var(--intro-profile-image-x) + var(--intro-profile-image-offset-x)
  );
  width: calc(var(--page-width) * 400 / 1440);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: var(--intro-profile-image-opacity);
  transform: translate(-50%, -50%);
}

.profile_image img {
  width: 100%;
}

.profile_click_bubble {
  position: absolute;
  top: -8%;
  right: -24%;
  width: clamp(72px, calc(var(--page-width) * 112 / 1440), 112px);
  max-width: none;
  pointer-events: none;
}

.profile_click_bubble img {
  width: 100%;
  max-width: none;
}

.profile {
  top: calc(var(--intro-spot-y) + var(--intro-text-box-offset-y));
  right: auto;
  left: 50%;
  width: calc(var(--page-width) * 1000 / 1440);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.role {
  margin-bottom: calc(var(--page-width) * 22 / 1440);
  font-size: clamp(13px, calc(var(--page-width) * 16 / 1440), 16px);
  letter-spacing: 0.08em;
}

.profile h3 {
  margin-bottom: calc(var(--page-width) * 10 / 1440);
  font-size: clamp(32px, calc(var(--page-width) * 42 / 1440), 42px);
  letter-spacing: 0.12em;
}

.profile_copy {
  margin-bottom: 0;
  font-size: clamp(20px, calc(var(--page-width) * 18 / 1440), 18px);
  letter-spacing: 0.1em;
  line-height: 2;
}

.profile_comment {
  position: absolute;
  top: calc(
    var(--intro-spot-y) + var(--intro-text-box-offset-y) +
      var(--intro-profile-comment-gap-y)
  );
  left: 50%;
  z-index: 4;
  width: calc(var(--page-width) * 860 / 1440);
  transform: translateX(-50%);
  color: #fff;
}

.profile_comment_bubble {
  display: none;
}

.profile_text {
  position: relative;
  font-size: clamp(15px, calc(var(--page-width) * 15 / 1440), 15px);
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 2px 4px rgb(0 0 0 / 0.55);
}

.intro_sparkles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.intro_sparkle {
  position: absolute;
  max-width: none;
}

.intro_sparkle-1 {
  top: 12%;
  left: 7%;
  width: calc(var(--page-width) * 108 / 1440);
}

.intro_sparkle-2 {
  top: 8%;
  right: 8%;
  width: calc(var(--page-width) * 88 / 1440);
}

.intro_sparkle-3 {
  top: 34%;
  left: 5%;
  width: calc(var(--page-width) * 60 / 1440);
}

.intro_sparkle-4 {
  top: 20%;
  left: 10%;
  width: calc(var(--page-width) * 150 / 1440);
}

.intro_sparkle-5 {
  top: 28%;
  right: 5%;
  width: calc(var(--page-width) * 58 / 1440);
}

.intro_sparkle-6 {
  top: 66%;
  left: 7%;
  width: calc(var(--page-width) * 56 / 1440);
}

.intro_sparkle-7 {
  top: 72%;
  right: 8%;
  width: calc(var(--page-width) * 72 / 1440);
}

.intro_sparkle-8 {
  top: 62%;
  right: 4%;
  width: calc(var(--page-width) * 132 / 1440);
}

.intro_sparkle-9 {
  top: 46%;
  left: 12%;
  width: calc(var(--page-width) * 84 / 1440);
}

.intro_sparkle-10 {
  top: 46%;
  right: 14%;
  width: calc(var(--page-width) * 48 / 1440);
}

.intro_sparkle-11 {
  top: 50%;
  left: 3%;
  width: calc(var(--page-width) * 54 / 1440);
}

.intro_sparkle-12 {
  top: 82%;
  left: 18%;
  width: calc(var(--page-width) * 68 / 1440);
}

.intro_sparkle-13 {
  top: 86%;
  right: 16%;
  width: calc(var(--page-width) * 118 / 1440);
}

.intro_sparkle-14 {
  top: 56%;
  right: 6%;
  width: calc(var(--page-width) * 44 / 1440);
}

.intro_dog_peek {
  z-index: auto;
}

.speciality_dog_peek,
.speciality_dog_peek_paws {
  display: none;
}

.speciality {
  /* 幕の上下位置はここで調整。もっと上げるなら -455 を -500 のように大きいマイナス値へ変更。 */
  z-index: 1;
  margin-top: var(--speciality-overlap);
  height: var(--speciality-bg-height);
  background: none;
}

.speciality::before,
.speciality::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--speciality-bg-width);
  height: 100%;
  content: "";
  transform: translateX(-50%);
  background: url("../images/top/speciality-bg.webp") center top / auto 100%
    no-repeat;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0,
      #000 var(--speciality-top-fade-end) var(--speciality-fade-start),
      transparent var(--speciality-fade-end)
    ),
    linear-gradient(
      to right,
      transparent 0,
      #000 var(--speciality-side-fade),
      #000 calc(100% - var(--speciality-side-fade)),
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0,
      #000 var(--speciality-top-fade-end) var(--speciality-fade-start),
      transparent var(--speciality-fade-end)
    ),
    linear-gradient(
      to right,
      transparent 0,
      #000 var(--speciality-side-fade),
      #000 calc(100% - var(--speciality-side-fade)),
      transparent 100%
    );
  mask-composite: intersect;
  pointer-events: none;
}

.speciality::before {
  z-index: 0;
}

.speciality::after {
  z-index: 2;
}

.speciality .inner {
  z-index: auto;
}

.speciality {
  background-position: center top;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.speciality .section_title {
  position: absolute;
  top: calc(15.5% + var(--speciality-overlap-offset));
  left: 50%;
  z-index: 3;
  margin: 0;
  transform: translateX(-50%);
}

.speciality_title-star {
  top: calc(15.1% + var(--speciality-overlap-offset));
  z-index: 3;
  width: calc(var(--page-width) * 86 / 1440);
}

.speciality_title-star-left {
  left: 30%;
}

.speciality_title-star-right {
  right: 30%;
}

.dog_peek {
  position: absolute;
  top: var(--dog-peek-y);
  left: var(--dog-peek-x);
  width: var(--dog-peek-width);
  aspect-ratio: 254 / 170;
  overflow: hidden;
  pointer-events: none;
  margin-left: calc(var(--dog-peek-width) / -2);
}

.dog_peek_part {
  position: absolute;
  display: block;
  max-width: none;
  will-change: opacity, transform;
}

.dog_peek_paw {
  z-index: 4;
}

.dog_peek_paw-left {
  left: var(--dog-left-paw-x);
  bottom: var(--dog-left-paw-y);
  width: var(--dog-left-paw-width);
  opacity: var(--dog-left-opacity);
  transform: translateY(var(--dog-left-y));
}

.dog_peek_paw-right {
  left: var(--dog-right-paw-x);
  bottom: var(--dog-right-paw-y);
  width: var(--dog-right-paw-width);
  opacity: var(--dog-right-opacity);
  transform: translateY(var(--dog-right-y));
}

.dog_peek_face {
  left: 0;
  bottom: -43%;
  z-index: 0;
  width: 100%;
  opacity: var(--dog-face-opacity);
  transform: translateY(var(--dog-face-y));
}

.speciality-list {
  position: absolute;
  top: calc(24% + var(--speciality-overlap-offset));
  left: 50%;
  z-index: 3;
  width: calc(var(--page-width) * 760 / 1440);
  transform: translateX(-50%);
}

.speciality-item {
  grid-template-columns: calc(var(--page-width) * 130 / 1440) 1fr;
  gap: calc(var(--page-width) * 48 / 1440);
  margin-bottom: calc(var(--page-width) * 28 / 1440);
}

.speciality-item_label {
  width: calc(var(--page-width) * 130 / 1440);
}

.speciality-item_text,
.speciality-item_tools {
  font-size: clamp(14px, calc(var(--page-width) * 20 / 1440), 20px);
}

.performances {
  position: relative;
  z-index: 2;
  margin-top: var(--performances-start-overlap);
  height: calc(
    var(--works-bg-width) * 1398 / 2014 + var(--performances-bg-bleed)
  );
  overflow-x: clip;
  overflow-y: visible;
  background: none;
}

.performances::before {
  display: none;
}

.performances .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.works_book_stage {
  position: absolute;
  top: var(--performances-bg-y);
  left: 50%;
  z-index: 1;
  width: var(--works-bg-width);
  transform: translateX(-50%);
}

.works_book_bg {
  width: 100%;
  max-width: none;
}

.works_book_overlay {
  position: absolute;
  inset: 0;
}

.works_walking_dog {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: calc(var(--works-bg-width) * 72 / 1440);
  aspect-ratio: 165 / 172;
  pointer-events: none;
  transform: translate3d(
      calc(var(--works-bg-width) * var(--works-dog-left-ratio, 0.36)),
      calc(
        var(--works-bg-width) * 1398 / 2014 * var(--works-dog-top-ratio, 0.105)
      ),
      0
    )
    translate(-50%, -100%) rotate(-7deg);
  will-change: transform;
}

.works_walking_dog_frame {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: none;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  transition: opacity 0.08s linear;
}

.works_walking_dog_frame-1 {
  opacity: 1;
}

.works_walking_dog_frame-2 {
  opacity: 0;
}

.works_walking_dog.is-step-2 .works_walking_dog_frame-1 {
  opacity: 0;
}

.works_walking_dog.is-step-2 .works_walking_dog_frame-2 {
  opacity: 1;
}

.performances .section_title {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%) rotate(20deg);
}

.performance_title_star {
  position: absolute;
  z-index: 5;
  max-width: none;
  pointer-events: none;
}

.performance_title_star-left {
  top: 16%;
  left: 42%;
  width: calc(var(--works-bg-width) * 30 / 1440);
  transform: translate(-100%, -25%) rotate(20deg);
}

.performance_title_star-right {
  top: 27%;
  left: 58%;
  width: calc(var(--works-bg-width) * 50 / 1440);
  transform: translate(0, -28%) rotate(20deg);
}

.works_books {
  position: absolute;
  top: var(--works-stage-y);
  left: 50%;
  width: 100%;
  min-height: 0;
  height: 100%;
  margin: 0;
  transform: translateX(-50%);
}

.work_salon {
  top: 20%;
  left: 30%;
  width: calc(var(--works-bg-width) * 200 / 1440);
}

.work_burger {
  top: 30%;
  left: 43%;
  width: calc(var(--works-bg-width) * 220 / 1440);
}

.work_ice {
  top: 25%;
  right: 27%;
  width: calc(var(--works-bg-width) * 200 / 1440);
}

.work_workers {
  top: 45%;
  left: 30%;
  width: calc(var(--works-bg-width) * 200 / 1440);
}

.work_cafe {
  top: 53%;
  left: 45%;
  width: calc(var(--works-bg-width) * 180 / 1440);
}

.work_mobile {
  top: 50%;
  right: 27%;
  width: calc(var(--works-bg-width) * 220 / 1440);
}

.click1 {
  top: 47%;
  left: 60%;
  right: auto;
  width: calc(var(--works-bg-width) * 80 / 1440);
  z-index: 20;
}

.click2 {
  top: 17%;
  left: 30%;
  width: calc(var(--works-bg-width) * 80 / 1440);
}

.click5 {
  top: 41%;
  left: 28%;
  width: calc(var(--works-bg-width) * 80 / 1440);
}

.more_link {
  top: var(--works-more-y);
  left: var(--works-more-x);
  right: auto;
  bottom: auto;
  width: calc(var(--works-bg-width) * 90 / 1440);
  padding: 0;
  font-size: 0;
  transform: translateX(-50%);
}

.more_link img {
  width: 100%;
}

.more_link::after {
  display: none;
}

.casting_call {
  margin-top: var(--performances-overlap);
  height: calc(var(--page-width) * 1206 / 1440);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.casting_call::after {
  display: block;
}

.casting_call .section_title {
  position: absolute;
  z-index: 2;
  top: var(--casting-title-y);
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.closing-text {
  position: absolute;
  top: 58%;
  left: 50%;
  width: calc(var(--page-width) * 720 / 1440);
  margin: 0;
  transform: translateX(-50%);
  font-size: clamp(14px, calc(var(--page-width) * 20 / 1440), 20px);
}

.contact_img {
  position: absolute;
  top: 75%;
  left: 50%;
  width: calc(var(--page-width) * 340 / 1440);
  transform: translateX(-50%);
}

.contact_link {
  position: absolute;
  top: 75%;
  left: 50%;
  z-index: 3;
  display: block;
  width: calc(var(--page-width) * 340 / 1440);
  transform: translateX(-50%);
}

.contact_link .contact_img {
  position: static;
  width: 100%;
  transform: none;
}

.footer {
  margin-top: 0;
  height: calc(var(--page-width) * 230 / 1440);
  overflow: visible;
  background: transparent;
}

.footer_wood-floor {
  display: block;
  bottom: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.footer_illust {
  left: calc(var(--stage-left) + var(--page-width) * 0.115);
  bottom: calc(var(--page-width) * 45 / 1440);
  width: calc(var(--page-width) * 260 / 1440);
}

.copyright {
  bottom: calc(var(--page-width) * 14 / 1440);
  font-size: clamp(14px, calc(var(--page-width) * 11 / 1440), 14px);
}

@media screen and (max-width: 640px) {
  .header {
    top: var(--top-decoration-y);
  }

  .menu_button_text {
    font-size: 16px;
  }

  .lead {
    font-size: clamp(14px, calc(var(--page-width) * 20 / 1440), 14px);
  }

  .main_title {
    font-size: clamp(32px, calc(var(--page-width) * 96 / 1440), 44px);
  }

  .section_title {
    font-size: clamp(26px, calc(var(--page-width) * 76 / 1440), 36px);
  }

  .section_ruby {
    top: -12px;
    font-size: 14px;
  }

  .introduction {
    height: max(var(--intro-height), 760px);
  }

  .introduction .section_title {
    top: 6%;
  }

  .profile_image {
    top: 25%;
    width: min(52vw, 190px);
  }

  .profile {
    top: 43%;
    width: min(84vw, 360px);
  }

  .profile_comment {
    top: 58%;
    width: min(86vw, 420px);
  }

  .profile_comment_bubble {
    display: none;
  }

  .role {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .profile h3 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .profile_copy {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
  }

  .profile_text {
    font-size: 14px;
    line-height: 1.8;
  }

  .intro_sparkle-1 {
    top: 11%;
    left: 8%;
    width: 72px;
  }

  .intro_sparkle-2 {
    top: 13%;
    right: 8%;
    width: 60px;
  }

  .intro_sparkle-3 {
    top: 34%;
    left: 5%;
    width: 44px;
  }

  .intro_sparkle-4 {
    top: 20%;
    left: 18%;
    width: 90px;
  }

  .intro_sparkle-5 {
    top: 48%;
    right: 5%;
    width: 42px;
  }

  .intro_sparkle-6 {
    top: 76%;
    left: 10%;
    width: 44px;
  }

  .intro_sparkle-7 {
    top: 80%;
    right: 18%;
    width: 56px;
  }

  .intro_sparkle-8 {
    display: none;
  }

  .intro_sparkle-9 {
    top: 45%;
    left: 12%;
    width: 60px;
  }

  .intro_sparkle-10 {
    top: 40%;
    right: 14%;
    width: 36px;
  }

  .intro_sparkle-11 {
    display: none;
  }

  .intro_sparkle-12 {
    top: 86%;
    left: 34%;
    width: 48px;
  }

  .intro_sparkle-13 {
    top: 72%;
    right: 8%;
    width: 78px;
  }

  .intro_sparkle-14 {
    display: none;
  }

  .intro_dog_peek {
    top: 77%;
    left: 78%;
    width: 96px;
  }

  .speciality {
    height: max(calc(var(--page-width) * 1712 / 1440), 600px);
  }

  .speciality .section_title {
    top: calc(13% + var(--speciality-overlap-offset));
  }

  .speciality_title-star {
    top: calc(12.5% + var(--speciality-overlap-offset));
    width: 34px;
  }

  .speciality_title-star-left {
    left: 18%;
  }

  .speciality_title-star-right {
    right: 18%;
  }

  .speciality-list {
    top: calc(22% + var(--speciality-overlap-offset));
    width: min(86vw, 360px);
  }

  .speciality-item {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }

  .speciality-item_label {
    width: 58px;
  }

  .speciality-item_text,
  .speciality-item_tools {
    font-size: 14px;
    line-height: 1.55;
  }

  .speciality-item_tools {
    gap: 0 0.45em;
  }

  .speciality-item_tools li:not(:last-child)::after {
    margin-left: 0.45em;
  }

  .works_walking_dog {
    width: calc(var(--works-bg-width) * 88 / 1440);
  }

  .closing-text {
    width: min(84vw, 360px);
    font-size: 14px;
    line-height: 1.8;
  }

  .contact_link {
    width: min(48vw, 200px);
  }

  .copyright {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1000px) {
  :root {
    --menu-button-gap: calc(var(--page-width) * 10 / 1440);
  }
}

@media screen and (max-width: 768px) {
  body::before {
    position: fixed;
  }

  :root {
    --page-width: 100vw;
    --top-decoration-y: 0px;
    --menu-button-size: clamp(54px, 13.5vw, 74px);
    --sp-menu-button-top: -40px;
    --sp-menu-button-right: 14px;
    --sp-menu-open-button-top: clamp(220px, 57vw, 292px);
    --sp-menu-open-button-right: clamp(18px, 5vw, 34px);
    --header-stars-height: clamp(88px, 25vw, 140px);
    --header-curtain-height: clamp(240px, 63vw, 360px);
    --mv-curtain-scale: 1.5;
    --mv-sp-curtain-width: 946px;
    --mv-sp-curtain-x: 50%;
    --mv-sp-curtain-y: -40px;
    --mv-sp-copy-x: 50%;
    --mv-sp-copy-y: 150px;
    --mv-character-y: 0px;
    --mv-people-width: 138vw;
    --mv-people-shift: 85vw;
    --intro-profile-image-opacity: 1;
    --intro-height: 1040px;
    --intro-min-height: 0;
    /* SP introduction background controls */
    --intro-bg-position-x: center;
    --intro-bg-position-y: -72px;
    --intro-bg-size: auto 1269px;
    --intro-title-light-y: 0px;
    --intro-title-light-height: 180px;
    --speciality-intro-bg-position-y: -992px;
    --intro-profile-image-x: 50%;
    --intro-profile-image-y: 30%;
    --intro-text-box-offset-y: 18%;
    --intro-spot-y: 36%;
    --intro-spot-left-x: 42%;
    --intro-spot-right-x: 60%;
    --intro-spot-left-size: 44vw;
    --intro-spot-right-size: 42vw;
    --speciality-overlap: clamp(-260px, -32vw, -160px);
    --speciality-overlap-offset: 0px;
    --speciality-bg-height: max(calc(var(--page-width) * 1712 / 1440), 600px);
    --speciality-top-fade-end: 0%;
    --speciality-fade-start: 93%;
    --speciality-fade-end: 98%;
    /* SP performances book background controls */
    --performances-bg-scale: 3;
    --performances-start-overlap: -20vw;
    --performances-bg-y: 23vw;
    --performances-bg-bleed: 42vw;
    --performances-overlap: -60px;
    --works-more-x: 58%;
    --works-more-y: 83%;
    --works-dog-left-start: 36;
    --works-dog-left-range: 24;
    --works-dog-top-start: 10;
    --works-dog-top-range: 6;
    --works-click1-x: 58%;
    --works-click1-y: 41%;
    --works-click1-width: clamp(64px, 20vw, 100px);
    --works-click2-x: 38%;
    --works-click2-y: 20%;
    --works-click2-width: clamp(72px, 22vw, 112px);
    --works-click5-x: 38%;
    --works-click5-y: 40%;
    --works-click5-width: clamp(72px, 22vw, 112px);
    --casting-title-y: 22%;
  }

  .inner {
    width: min(100% - 32px, 560px);
  }

  .introduction,
  .speciality,
  .performances,
  .casting_call,
  .footer {
    contain-intrinsic-size: 800px;
  }

  .header {
    top: var(--sp-menu-button-top);
    right: var(--sp-menu-button-right);
  }

  .menu_button {
    top: 50px;
  }

  .menu_button_img {
    content: url("../images/common/menu-sp.png");
    filter: none;
    animation: menu-sp-star-spin 3s ease-in-out infinite;
  }

  .menu_button::before {
    position: absolute;
    inset: 10px 8px 4px;
    z-index: -1;
    border-radius: 50%;
    background: rgb(0 0 0 / 0.28);
    filter: blur(6px);
    content: "";
  }

  .menu_button_text {
    top: 25%;
    display: block;
    font-size: clamp(25px, 4vw, 18px);
    color: #fff;
    text-shadow:
      0 2px 2px rgb(0 0 0 / 0.72),
      0 0 5px rgb(72 35 8 / 0.55);
  }

  .site_menu {
    right: 0;
    width: clamp(86px, 22vw, 112px);
    aspect-ratio: 97 / 405;
    background-image: url("../images/common/menu-click-sp.png");
    transform: translateY(0%);
  }

  .site_menu.is-open {
    transform: translateY(8%);
  }

  .site_menu a {
    left: 48%;
    right: auto;
    width: max-content;
    min-width: 100%;
    font-size: clamp(16px, 4.2vw, 20px);
    transform: translate(-50%, -50%);
  }

  .site_menu a:nth-child(1) {
    top: 7.5%;
  }

  .site_menu a:nth-child(2) {
    top: 21%;
  }

  .site_menu a:nth-child(3) {
    top: 36%;
  }

  .site_menu a:nth-child(4) {
    top: 50%;
  }

  .site_menu a:nth-child(5) {
    top: 64%;
  }

  .header.is-menu-open .menu_button {
    top: var(--sp-menu-open-button-top);
    right: var(--sp-menu-open-button-right);
  }

  .main_visual {
    height: clamp(620px, 167vw, 650px);
    background-image: url("../images/top/mv-bg-sp.webp");
    background-size: var(--mv-sp-curtain-width) auto;
    background-position: var(--mv-sp-curtain-x) var(--mv-sp-curtain-y);
    background-repeat: repeat-x;
  }

  .main_visual::before {
    background-image: url("../images/top/mv-bg-righton-sp.webp");
    background-size: var(--mv-sp-curtain-width) auto;
    background-position: var(--mv-sp-curtain-x) var(--mv-sp-curtain-y);
    background-repeat: repeat-x;
  }

  .main_visual::after {
    bottom: -12px;
    height: 150px;
    min-height: 0;
    background-image: url("../images/top/MV-people.png");
    background-position: center bottom;
    background-size: 820px auto;
    background-repeat: no-repeat;
  }

  .main_copy {
    top: 150px;
    left: 50%;
    width: min(84vw, 250px);
    transform: translateX(-50%);
  }

  .lead {
    margin-bottom: 12px;
    font-size: clamp(14px, 3.8vw, 15px);
    line-height: 1.7;
  }

  .main_title {
    font-size: clamp(50px, 14vw, 55px);
    line-height: 0.98;
  }

  .main_visual_myself {
    right: 38px;
    bottom: 55px;
    width: 104px;
  }

  .main_visual_myself_right {
    right: 77px;
    bottom: 185px;
    width: 135px;
  }

  .main_visual_dog {
    position: absolute;
    left: 33px;
    bottom: 56px;
    z-index: 6;
    display: block;
    width: 62px;
    opacity: 1;
    animation: none;
  }

  .main_visual_welcome {
    right: 3%;
    top: auto;
    bottom: 31%;
    width: clamp(74px, 19vw, 118px);
  }

  .section_title {
    font-size: clamp(34px, 10vw, 56px);
    line-height: 1.02;
  }

  .section_ruby {
    top: -13px;
    font-size: 13px;
  }

  .introduction {
    height: var(--intro-height);
    min-height: var(--intro-min-height);
    padding: 62px 0 72px;
    overflow: visible;
    background-position: var(--intro-bg-position-x) var(--intro-bg-position-y);
    background-size: var(--intro-bg-size);
  }

  .introduction .inner {
    min-height: 710px;
  }

  .introduction::before {
    background:
      radial-gradient(
        circle var(--intro-spot-left-size) at
          calc(var(--intro-spot-left-x) + var(--intro-spot-left-motion-x))
          var(--intro-spot-y),
        rgba(255, 244, 184, 0.88) 42%,
        rgba(255, 244, 184, 0.28) 61%,
        transparent 72%
      ),
      radial-gradient(
        circle var(--intro-spot-right-size) at
          calc(var(--intro-spot-right-x) + var(--intro-spot-right-motion-x))
          var(--intro-spot-y),
        rgba(255, 244, 184, 0.88) 42%,
        rgba(255, 244, 184, 0.26) 61%,
        transparent 72%
      );
  }

  .introduction::after {
    top: var(--intro-title-light-y);
    height: var(--intro-title-light-height);
  }

  .introduction .section_title {
    top: -3%;
  }

  .profile_image {
    top: 300px;
    width: clamp(300px, 41vw, 400px);
  }

  .profile_click_bubble {
    top: -10px;
    right: -18px;
    width: 82px;
  }

  .profile {
    top: 550px;
    width: min(86vw, 420px);
  }

  .role {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .profile h3 {
    margin-bottom: 10px;
    font-size: clamp(28px, 7vw, 38px);
  }

  .profile_copy {
    font-size: clamp(14px, 3.7vw, 17px);
    line-height: 1.75;
  }

  .profile_comment {
    z-index: 6;
    top: 640px;
    width: min(88vw, 480px);
  }

  .profile_text {
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.72;
  }

  /* SP introduction decoration controls */
  .intro_sparkle-1 {
    display: block;
    top: 8%;
    left: 5%;
    right: auto;
    width: 66px;
  }

  .intro_sparkle-2 {
    display: block;
    top: 9%;
    left: auto;
    right: 6%;
    width: 56px;
  }

  .intro_sparkle-3 {
    display: block;
    top: 34%;
    left: 5%;
    right: auto;
    width: 40px;
  }

  .intro_sparkle-4 {
    display: block;
    top: 18%;
    left: 13%;
    right: auto;
    width: 92px;
  }

  .intro_sparkle-5 {
    display: none;
    top: 86%;
    left: auto;
    right: 12%;
    width: 38px;
  }

  .intro_sparkle-6 {
    display: block;
    top: 103%;
    left: 10%;
    right: auto;
    width: 42px;
  }

  .intro_sparkle-7 {
    display: none;
    top: 90%;
    left: auto;
    right: 23%;
    width: 52px;
  }

  .intro_sparkle-8 {
    display: none;
    top: 92%;
    left: auto;
    right: 3%;
    width: 76px;
  }

  .intro_sparkle-9 {
    display: none;
    top: 89%;
    left: 22%;
    right: auto;
    width: 58px;
  }

  .intro_sparkle-10 {
    display: none;
    top: 82%;
    left: auto;
    right: 32%;
    width: 34px;
  }

  .intro_sparkle-11 {
    display: none;
    top: 92%;
    left: 4%;
    right: auto;
    width: 54px;
  }

  .intro_sparkle-12 {
    display: block;
    top: 95%;
    left: 90%;
    right: auto;
    width: 46px;
  }

  .intro_sparkle-13 {
    display: block;
    top: 96%;
    left: auto;
    right: 80%;
    width: 76px;
  }

  .intro_sparkle-14 {
    display: none;
    top: 88%;
    left: auto;
    right: 6%;
    width: 44px;
  }

  .intro_dog_peek {
    display: none;
  }

  .speciality_dog_peek {
    display: block;
    top: 12%;
    left: 50%;
    z-index: 1;
    width: 150px;
    overflow: hidden;
    --dog-peek-motion-start: 0.78;
    --dog-peek-motion-range: 0.34;
  }

  .speciality_dog_peek > .dog_peek_paw {
    display: none;
  }

  .speciality_dog_peek_paws {
    display: block;
    top: 12%;
    left: 50%;
    z-index: 3;
    width: 150px;
    overflow: visible;
    --dog-peek-motion-start: 0.78;
    --dog-peek-motion-range: 0.34;
  }

  .speciality {
    height: auto;
    min-height: 680px;
    margin-top: -120px;
    padding: 216px 0 82px;
    background-image: url("../images/top/introduction-bg.webp");
    background-position: center var(--speciality-intro-bg-position-y);
    background-size: var(--intro-bg-size);
    background-repeat: no-repeat;
  }

  .speciality .section_title {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 52px;
    transform: none;
    text-align: center;
  }

  .speciality_title-star {
    top: 0px;
    width: 42px;
  }

  .speciality_title-star-left {
    left: calc(50% - 150px);
  }

  .speciality_title-star-right {
    right: calc(50% - 150px);
  }

  .speciality-list {
    position: relative;
    top: auto;
    left: auto;
    width: min(90vw, 500px);
    margin-inline: auto;
    transform: none;
  }

  .speciality-item {
    grid-template-columns: clamp(60px, 15vw, 86px) 1fr;
    gap: clamp(14px, 4vw, 28px);
    margin-bottom: 14px;
  }

  .speciality-item_label {
    width: clamp(60px, 15vw, 86px);
  }

  .speciality-item_tools {
    font-size: clamp(13px, 3.55vw, 16px);
    line-height: 1.62;
  }

  .performances {
    z-index: 4;
    height: calc(var(--works-bg-width) * 1398 / 2014);
    overflow-x: clip;
    overflow-y: visible;
  }

  .works_book_stage {
    top: 0;
    z-index: 4;
    width: var(--works-bg-width);
  }

  .works_walking_dog {
    width: calc(var(--works-bg-width) * 60 / 1440);
  }

  .performances .section_title {
    top: 18%;
    transform: translateX(-50%) rotate(12deg);
  }

  .performance_title_star-left {
    top: 16%;
    left: 42%;
    width: calc(var(--works-bg-width) * 30 / 1440);
    transform: translate(-100%, -25%) rotate(20deg);
  }

  .performance_title_star-right {
    top: 23%;
    left: 58%;
    width: calc(var(--works-bg-width) * 50 / 1440);
    transform: translate(0, -28%) rotate(20deg);
  }

  /* SP works card controls: top/left move each card, width changes each card size. */
  .work_salon {
    top: 23%;
    left: 40%;
    width: calc(var(--works-bg-width) * 150 / 1440);
  }

  .work_burger {
    top: 25%;
    left: 50%;
    width: calc(var(--works-bg-width) * 160 / 1440);
  }

  .work_ice {
    top: 40%;
    left: 40%;
    right: auto;
    width: calc(var(--works-bg-width) * 170 / 1440);
  }

  .work_workers {
    top: 43%;
    left: 50%;
    width: calc(var(--works-bg-width) * 160 / 1440);
  }

  .work_cafe {
    top: 58%;
    left: 40%;
    width: calc(var(--works-bg-width) * 150 / 1440);
  }

  .work_mobile {
    top: 59%;
    left: 50%;
    right: auto;
    width: calc(var(--works-bg-width) * 180 / 1440);
  }

  .click1 {
    content: url("../images/top/performances-click1-sp.png");
    top: var(--works-click1-y);
    left: var(--works-click1-x);
    right: auto;
    width: var(--works-click1-width);
  }

  .click2 {
    content: url("../images/top/Performances-click2-sp.png");
    top: var(--works-click2-y);
    left: var(--works-click2-x);
    right: auto;
    width: var(--works-click2-width);
  }

  .click5 {
    content: url("../images/top/Performances-click2-sp.png");
    top: var(--works-click5-y);
    left: var(--works-click5-x);
    right: auto;
    width: var(--works-click5-width);
  }

  .more_link {
    top: 82%;
    left: 31%;
    width: 78px;
  }

  .casting_call {
    z-index: 1;
    height: 760px;
    margin-top: -220px;
  }

  .casting_call::before {
    background: url("../images/top/castingcall-bg.webp") center top / cover
      no-repeat;
  }

  .casting_call::after {
    background:
      radial-gradient(
        circle at calc(36% + var(--casting-left-spot-motion-x)) 26%,
        rgba(255, 243, 170, 0.96) 0 18%,
        rgba(255, 243, 170, 0.38) 23%,
        transparent 30%
      ),
      radial-gradient(
        circle at calc(66% + var(--casting-right-spot-motion-x)) 27%,
        rgba(255, 243, 170, 0.92) 0 18%,
        rgba(255, 243, 170, 0.34) 23%,
        transparent 30%
      );
  }

  .casting_call .section_title {
    top: 34%;
  }

  .closing-text {
    top: 58%;
    width: min(84vw, 460px);
    font-size: clamp(13px, 3.55vw, 16px);
    line-height: 1.85;
  }

  .contact_link {
    top: 78%;
    width: clamp(160px, 40vw, 230px);
  }

  .footer {
    height: clamp(260px, 64vw, 340px);
    margin-top: -110px;
  }

  .footer_wood-floor {
    bottom: 0;
    height: clamp(135px, 34vw, 170px);
  }

  .footer_illust {
    left: 9%;
    bottom: clamp(90px, 20vw, 100px);
    width: clamp(124px, 34vw, 178px);
  }

  .copyright {
    bottom: 12px;
    width: 100%;
    font-size: 12px;
    text-align: center;
  }
}

@media screen and (min-width: 1921px) {
  :root {
    --intro-bg-size: 100vw auto;
    --speciality-side-fade: 8%;
  }
}

/* =========================
  Casting Call Layers / Confetti
========================= */

.casting_call {
  position: relative;
  overflow: visible;
}

.casting_call::before {
  inset: 0;
  z-index: 0;
  background: url("../images/top/introduction-bg.webp") center top / 130% auto
    no-repeat;
}

.casting_call::after {
  display: block;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at calc(43% + var(--casting-left-spot-motion-x)) 30%,
      rgba(255, 243, 170, 0.98) 0 15%,
      rgba(255, 243, 170, 0.45) 18%,
      transparent 20%
    ),
    radial-gradient(
      circle at calc(59% + var(--casting-right-spot-motion-x)) 30%,
      rgba(255, 243, 170, 0.96) 0 15%,
      rgba(255, 243, 170, 0.4) 18%,
      transparent 20%
    );
}

.confetti_area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.casting_call .inner {
  position: relative;
  z-index: 3;
}

.casting_call .section_title,
.closing-text,
.contact_img {
  z-index: 3;
}

.confetti {
  position: absolute;
  top: -40px;
  width: var(--confetti-size);
  opacity: 0;
  content-visibility: auto;
}

.confetti_area.is-animated .confetti {
  animation: confetti-fall var(--confetti-duration) linear infinite;
  animation-delay: var(--confetti-delay);
}

@media (prefers-reduced-motion: reduce) {
  .confetti_area.is-animated .confetti {
    animation: none;
  }
}

@keyframes confetti-fall {
  0% {
    transform: translate3d(0, -40px, 0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translate3d(var(--confetti-sway), 140vh, 0)
      rotate(var(--confetti-rotate));
    opacity: 0;
  }
}

.footer_wood-floor {
  z-index: 1;
}

.footer_illust {
  z-index: 2;
}

.copyright {
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .performances {
    z-index: 1;
  }

  .works_book_stage {
    z-index: 1;
  }

  .more_link {
    top: var(--works-more-y);
    left: var(--works-more-x);
    z-index: 8;
    width: 100px;
    opacity: 1;
    visibility: visible;
  }

  .casting_call {
    z-index: 6;
    height: 810px;
    margin-top: clamp(-200px, -26vw, -92px);
    background: url("../images/top/castingcall-bg.webp") center top / cover
      no-repeat;
  }

  .casting_call::before {
    display: none;
  }

  .casting_call::after {
    inset: 0;
    background:
      radial-gradient(
        circle at calc(36% + var(--casting-left-spot-motion-x)) 22%,
        rgba(255, 243, 170, 0.96) 0 13%,
        rgba(255, 243, 170, 0.38) 17%,
        transparent 25%
      ),
      radial-gradient(
        circle at calc(66% + var(--casting-right-spot-motion-x)) 22%,
        rgba(255, 243, 170, 0.92) 0 13%,
        rgba(255, 243, 170, 0.34) 17%,
        transparent 25%
      );
  }

  .casting_call .section_title {
    top: 18%;
  }

  .closing-text {
    top: 45%;
  }

  .contact_link {
    top: 60%;
  }

  .footer {
    z-index: 7;
    height: 340px;
    margin-top: -250px;
    overflow: visible;
    background: transparent;
  }

  .footer_wood-floor {
    bottom: 0;
    height: 150px;
  }

  .footer_illust {
    bottom: 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  :root {
    --speciality-overlap: -220px;
    --speciality-overlap-offset: 130px;
    --speciality-bg-height: 1063px;
    --speciality-bg-width: 1431px;
    --dog-peek-width: 159px;
  }

  .intro_dog_peek {
    display: none;
  }

  .speciality_dog_peek {
    display: block;
    top: 15%;
    left: 50.5%;
    z-index: 1;
    width: 150px;
    overflow: hidden;
  }

  .speciality_dog_peek > .dog_peek_paw {
    display: none;
  }

  .speciality_dog_peek_paws {
    display: block;
    top: 15%;
    left: 50.5%;
    z-index: 3;
    width: 150px;
    overflow: visible;
  }
}

@media screen and (max-width: 320px) {
  :root {
    --intro-height: 1080px;
    --speciality-intro-bg-position-y: -1032px;
  }

  .profile_comment {
    top: 600px;
    width: min(94vw, 480px);
  }
}

/* =========================
  Performances List Page
========================= */

.performance_list_page {
  --pl-page-width: min(100vw, 1440px);
  --pl-stage-left: calc((100vw - var(--pl-page-width)) / 2);
  --pd-page-width: var(--pl-page-width);
  --pd-stage-left: var(--pl-stage-left);
  --pd-footer-illust-height: calc(var(--pd-page-width) * 380 / 1440);
  --pl-stars-width: calc(var(--pl-page-width) * 1276 / 1440);
  --pl-stars-height: calc(var(--pl-stars-width) * 302 / 1276);
  --pl-frame-size: calc(var(--pl-page-width) * 417 / 1440);
  --pl-art-size: calc(var(--pl-frame-size) * 0.78);
  --pl-column-gap: calc(var(--pl-page-width) * 120 / 1440);
  color: #fff;
  background:
    url("../images/common/night.webp") center top / 866px 866px repeat,
    #121522;
}

.performance_list_main,
.performance_list_footer {
  width: 100%;
  overflow: hidden;
}

.performance_list_hero {
  position: relative;
  min-height: calc(var(--pl-page-width) * 3060 / 1440);
  padding-top: calc(var(--header-curtain-height) * 0.4);
  background:
    url("../images/common/night.webp") center top / 866px 866px repeat,
    #121522;
}

.performance_list_stars {
  z-index: 2;
}

.performance_list_curtain {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: max(100vw, 1517px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.performance_bg_star {
  position: absolute;
  z-index: 2;
  top: calc(var(--pl-page-width) * 300 / 1440);
  bottom: 0;
  width: calc(var(--pl-page-width) * 100 / 1440);
  max-width: none;
  pointer-events: none;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: repeat-y;
}

.performance_bg_star-left {
  left: calc(var(--pl-stage-left) + var(--pl-page-width) * 0.04);
  background-image: url("../images/performance-common/star-bg-left.png");
}

.performance_bg_star-right {
  right: calc(var(--pl-stage-left) + var(--pl-page-width) * 0.04);
  width: calc(var(--pl-page-width) * 100 / 1440);
  background-image: url("../images/performance-common/star-bg-right.png");
}

.performance_list_inner {
  position: relative;
  z-index: 3;
  width: var(--pl-page-width);
  margin-inline: auto;
}

.performance_list_title {
  position: relative;
  width: fit-content;
  margin: 0 auto calc(var(--pl-page-width) * 120 / 1440);
  font-family: "sketchnote-square", sans-serif;
  font-size: clamp(42px, calc(var(--pl-page-width) * 60 / 1440), 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
}

.performance_list_title_star {
  position: absolute;
  top: 50%;
  width: calc(var(--pl-page-width) * 68 / 1440);
  max-width: none;
  pointer-events: none;
}

.performance_list_title_star-left {
  left: calc(var(--pl-page-width) * -40 / 1440);
  transform: translate(-100%, -35%);
}

.performance_list_title_star-right {
  right: calc(var(--pl-page-width) * -40 / 1440);
  transform: translate(100%, -35%);
}

.performance_list_ruby {
  position: absolute;
  top: calc(var(--pl-page-width) * -8 / 1440);
  right: 0;
  font-family: var(--font-body);
  font-size: clamp(14px, calc(var(--pl-page-width) * 20 / 1440), 20px);
  line-height: 1;
  letter-spacing: 0.12em;
}

.performance_gallery {
  display: grid;
  grid-template-columns: repeat(2, var(--pl-frame-size));
  justify-content: center;
  column-gap: var(--pl-column-gap);
  row-gap: calc(var(--pl-page-width) * 185 / 1440);
  margin: 0;
  padding: 0;
  list-style: none;
}

.performance_gallery_item {
  position: relative;
}

.performance_gallery_item a,
.performance_gallery_card {
  display: block;
  text-decoration: none;
}

.performance_gallery_item::before {
  position: absolute;
  top: calc(var(--pl-frame-size) * -0.3);
  left: calc(var(--pl-frame-size) * -0.33);
  z-index: -1;
  width: calc(var(--pl-frame-size) * 1.65);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 250, 206, 0.92) 0 48%,
    rgba(255, 250, 206, 0.45) 60%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.performance_gallery_item:hover::before {
  opacity: 1;
}

.performance_frame {
  position: relative;
  display: block;
  width: var(--pl-frame-size);
  aspect-ratio: 1;
}

.performance_frame::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background: url("../images/performances-list/wood-frame.png") center / contain
    no-repeat;
  pointer-events: none;
}

.performance_frame_img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--pl-art-size);
  height: var(--pl-art-size);
  z-index: 1;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.performance_frame_img-color {
  opacity: 0;
}

.performance_frame-slideshow .performance_frame_img {
  animation: performance-fade-a 6s ease-in-out infinite;
}

.performance_frame-slideshow .performance_frame_img-slide-b {
  animation-name: performance-fade-b;
}

.performance_frame-slideshow .performance_frame_img-color {
  opacity: 0;
  animation-name: performance-hide;
}

.performance_gallery_item:hover
  .performance_frame-slideshow
  .performance_frame_img-mono {
  animation-name: performance-hide;
}

.performance_gallery_item:hover
  .performance_frame-slideshow
  .performance_frame_img-color.performance_frame_img-slide-a {
  animation-name: performance-fade-a;
}

.performance_gallery_item:hover
  .performance_frame-slideshow
  .performance_frame_img-color.performance_frame_img-slide-b {
  animation-name: performance-fade-b;
}

.performance_gallery_item:hover .performance_frame_img-mono {
  opacity: 0;
}

.performance_gallery_item:hover .performance_frame_img-color {
  opacity: 1;
}

@keyframes performance-fade-a {
  0%,
  38% {
    opacity: 1;
  }

  50%,
  88% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes performance-fade-b {
  0%,
  38% {
    opacity: 0;
  }

  50%,
  88% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes performance-hide {
  0%,
  100% {
    opacity: 0;
  }
}

.performance_label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--pl-frame-size) * 0.86);
  min-height: calc(var(--pl-page-width) * 70 / 1440);
  margin: calc(var(--pl-page-width) * 24 / 1440) auto 0;
  padding: 0 calc(var(--pl-page-width) * 14 / 1440);
  font-size: clamp(15px, calc(var(--pl-page-width) * 22 / 1440), 22px);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #2c2924;
  text-align: center;
  background: rgba(255, 252, 242, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.sp_only_br {
  display: none;
}

.pc_only_br {
  display: inline;
}

.performance_contact_link {
  display: block;
  width: calc(var(--pl-page-width) * 350 / 1440);
  margin: calc(var(--pl-page-width) * 205 / 1440) auto 0;
  transform: rotate(-4deg);
}

.performance_back_link {
  display: block;
  width: calc(var(--pl-page-width) * 96 / 1440);
  margin: calc(var(--pl-page-width) * 190 / 1440) auto 0;
  perspective: 600px;
}

.performance_back_link img {
  width: 100%;
  transform-origin: 50% 50%;
  transition: transform 0.65s ease;
}

.performance_back_link:hover img {
  transform: rotateY(360deg);
}

.performance_list_footer {
  position: relative;
  height: calc(var(--pl-page-width) * 360 / 1440);
  margin-top: calc(var(--pl-page-width) * 120 / 1440);
  overflow: visible;
  background:
    url("../images/common/night.webp") center bottom / 866px 866px repeat,
    #121522;
}

.performance_list_footer_floor {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: calc(var(--pl-page-width) * 255 / 1440);
  max-width: none;
  object-fit: cover;
}

.performance_list_footer_illust {
  position: absolute;
  right: calc(var(--pd-stage-left) + var(--pd-page-width) * 0.15);
  bottom: calc(var(--pd-page-width) * 37 / 1440);
  z-index: 2;
  width: auto;
  height: var(--pd-footer-illust-height);
  max-width: none;
}

@media screen and (max-width: 768px) {
  .performance_list_page {
    --pl-frame-size: clamp(128px, 37vw, 170px);
    --pl-art-size: calc(var(--pl-frame-size) * 0.78);
    --pl-column-gap: clamp(34px, 11vw, 72px);
  }

  .performance_list_hero {
    min-height: auto;
    padding: calc(var(--header-curtain-height) * 0.48) 0 180px;
  }

  .performance_list_title {
    max-width: min(68vw, 280px);
    margin-bottom: 70px;
    font-size: 42px;
  }

  .performance_list_ruby {
    top: -10px;
    right: 4px;
    font-size: 14px;
  }

  .performance_gallery {
    grid-template-columns: repeat(2, var(--pl-frame-size));
    column-gap: var(--pl-column-gap);
    row-gap: 64px;
  }

  .performance_label {
    width: calc(var(--pl-frame-size) * 0.9);
    min-height: 52px;
    margin-top: 12px;
    padding-inline: 8px;
    font-size: clamp(13px, 3.7vw, 15px);
    line-height: 1.35;
  }

  .sp_only_br {
    display: inline;
  }

  .pc_only_br {
    display: none;
  }

  .performance_gallery_item:hover::before {
    opacity: 0;
  }

  .performance_gallery_item:active::before,
  .performance_gallery_item:focus-within::before,
  .performance_gallery_item.is-spotlit::before {
    opacity: 1;
  }

  .performance_frame_img-mono,
  .performance_frame-slideshow .performance_frame_img-mono {
    opacity: 0;
    animation-name: performance-hide;
  }

  .performance_frame_img-color {
    opacity: 1;
  }

  .performance_frame-slideshow
    .performance_frame_img-color.performance_frame_img-slide-a {
    animation-name: performance-fade-a;
  }

  .performance_frame-slideshow
    .performance_frame_img-color.performance_frame_img-slide-b {
    animation-name: performance-fade-b;
  }

  .performance_contact_link {
    width: clamp(160px, 40vw, 230px);
    margin-top: 100px;
  }

  .performance_contact_link img {
    width: 100%;
    max-width: none;
  }

  .performance_back_link {
    margin-top: 120px;
    width: 72px;
  }

  .performance_list_footer {
    height: 210px;
    margin-top: -30px;
  }

  .performance_list_footer_floor {
    height: 130px;
  }

  .performance_list_footer_illust {
    right: 8vw;
    bottom: 30px;
    width: auto;
    height: min(42vw, 180px);
  }
}

/* =========================
  Performance Detail Page
========================= */

.performance_detail_page {
  --pd-page-width: min(100vw, 1440px);
  --pd-stage-left: calc((100vw - var(--pd-page-width)) / 2);
  --pd-footer-illust-height: calc(var(--pd-page-width) * 300 / 1440);
  --pl-page-width: var(--pd-page-width);
  --pl-stage-left: var(--pd-stage-left);
  --menu-button-right: calc(var(--pd-page-width) * 30 / 1440);
  --menu-button-size: clamp(62px, calc(var(--pd-page-width) * 88 / 1440), 88px);
  color: #fff;
  background:
    url("../images/common/night.webp") center top / 866px 866px repeat,
    #121522;
}

.performance_detail_main {
  width: 100%;
  overflow: hidden;
}

.performance_detail_hero {
  position: relative;
  min-height: calc(var(--pd-page-width) * 3860 / 1440);
  padding-top: calc(var(--header-curtain-height) * 0.4);
  background:
    url("../images/common/night.webp") center top / 866px 866px repeat,
    #121522;
}

.performance_ice_page .performance_detail_hero {
  min-height: calc(var(--pd-page-width) * 3300 / 1440);
  padding-bottom: calc(var(--pd-page-width) * 130 / 1440);
}

.performance_burger_page .performance_detail_hero {
  min-height: calc(var(--pd-page-width) * 5000 / 1440);
  padding-bottom: calc(var(--pd-page-width) * 200 / 1440);
}

.performance_workers_page .performance_detail_hero {
  min-height: calc(var(--pd-page-width) * 3900 / 1440);
  padding-bottom: calc(var(--pd-page-width) * 130 / 1440);
}

.performance_hairsalon_page .performance_detail_hero {
  min-height: calc(var(--pd-page-width) * 4500 / 1440);
  padding-bottom: calc(var(--pd-page-width) * 130 / 1440);
}

.performance_designcafe_page .performance_detail_hero {
  min-height: calc(var(--pd-page-width) * 4200 / 1440);
  padding-bottom: calc(var(--pd-page-width) * 130 / 1440);
}

.performance_detail_curtain {
  width: max(100vw, calc(var(--pd-page-width) * 1449 / 1440));
}

.performance_detail_curtain_picture {
  display: contents;
}

.performance_detail_inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), calc(var(--pd-page-width) * 1050 / 1440));
  margin-inline: auto;
  text-align: center;
}

.performance_detail_intro {
  margin-bottom: calc(var(--pd-page-width) * 40 / 1440);
}

.performance_detail_intro h1,
.performance_detail_intro h2 {
  margin: 0 0 calc(var(--pd-page-width) * 34 / 1440);
  font-family: var(--font-heading);
  font-size: clamp(21px, calc(var(--pd-page-width) * 34 / 1440), 34px);
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.performance_detail_intro p,
.performance_detail_section p,
.performance_detail_note {
  margin: 0;
  font-size: clamp(14px, calc(var(--pd-page-width) * 18 / 1440), 18px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.performance_mockup {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, calc(var(--pd-page-width) * 720 / 1440))
    calc(var(--pd-page-width) * 245 / 1440);
  align-items: center;
  justify-content: center;
  gap: calc(var(--pd-page-width) * 70 / 1440);
  margin-bottom: calc(var(--pd-page-width) * 54 / 1440);
}

.performance_click_bubble {
  position: absolute;
  top: calc(var(--pd-page-width) * 3 / 1440);
  left: calc(50% - var(--pd-page-width) * 535 / 1440);
  z-index: 2;
  width: calc(var(--pd-page-width) * 112 / 1440);
  max-width: none;
  animation: performance-click-float 2.6s ease-in-out infinite;
}

@keyframes performance-click-float {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(calc(var(--pd-page-width) * -12 / 1440)) rotate(-8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .performance_click_bubble {
    animation: none;
  }
}

.performance_mockup_pc {
  width: 100%;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.performance_mockup_sp {
  width: 100%;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.performance_mockup_link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
}

.performance_mockup_link:hover,
.performance_mockup_link:focus-visible {
  opacity: 1;
}

.performance_mockup:hover .performance_mockup_pc,
.performance_mockup:hover .performance_mockup_sp,
.performance_mockup:focus-within .performance_mockup_pc,
.performance_mockup:focus-within .performance_mockup_sp {
  transform: scale(1.045);
}

.performance_mockup_link:hover .performance_mockup_pc,
.performance_mockup_link:focus-visible .performance_mockup_pc,
.performance_mockup_link:hover .performance_mockup_sp,
.performance_mockup_link:focus-visible .performance_mockup_sp,
.performance_mockup_link:hover + .performance_mockup_sp,
.performance_mockup_link:focus-visible + .performance_mockup_sp {
  transform: scale(1.045);
}

.performance_mockup_link-ice {
  display: grid;
  grid-template-columns:
    minmax(0, calc(var(--pd-page-width) * 720 / 1440))
    calc(var(--pd-page-width) * 245 / 1440);
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  gap: calc(var(--pd-page-width) * 70 / 1440);
  width: 100%;
}

.performance_mockup-burger {
  display: block;
  margin-bottom: calc(var(--pd-page-width) * 44 / 1440);
}

.performance_mockup_link-burger {
  display: grid;
  gap: calc(var(--pd-page-width) * 28 / 1440);
  width: min(100%, calc(var(--pd-page-width) * 880 / 1440));
  margin-inline: auto;
}

.performance_mockup_link-burger .performance_click_bubble {
  left: calc(50% - var(--pd-page-width) * 410 / 1440);
}

.burger_mockup_row {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, calc(var(--pd-page-width) * 648 / 1440))
    calc(var(--pd-page-width) * 228 / 1440);
  align-items: center;
  justify-content: end;
  gap: calc(var(--pd-page-width) * 34 / 1440);
}

.burger_mockup_icon {
  position: absolute;
  left: calc(var(--pd-page-width) * -50 / 1440);
  top: calc(var(--pd-page-width) * 16 / 1440);
  width: calc(var(--pd-page-width) * 75 / 1440);
  max-width: none;
}

.burger_mockup_pc,
.burger_mockup_sp {
  width: 100%;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.performance_mockup-burger:hover .burger_mockup_pc,
.performance_mockup-burger:hover .burger_mockup_sp,
.performance_mockup-burger:focus-within .burger_mockup_pc,
.performance_mockup-burger:focus-within .burger_mockup_sp {
  transform: scale(1.045);
}

.performance_mockup_slide {
  display: grid;
  position: relative;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.performance_mockup-slideshow:hover .performance_mockup_slide,
.performance_mockup-slideshow:focus-within .performance_mockup_slide,
.performance_mockup_link-ice:hover .performance_mockup_slide,
.performance_mockup_link-ice:focus-visible .performance_mockup_slide {
  transform: scale(1.045);
}

.performance_mockup_slide-pc {
  width: 100%;
}

.performance_mockup_slide-sp {
  width: 100%;
}

.performance_mockup_img {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  animation: performance-mockup-fade-a 6s ease-in-out infinite;
}

.performance_mockup_img-b {
  animation-name: performance-mockup-fade-b;
}

@keyframes performance-mockup-fade-a {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes performance-mockup-fade-b {
  0%,
  42% {
    opacity: 0;
  }

  50%,
  92% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .performance_mockup_img {
    animation: none;
  }

  .performance_mockup_link {
    transition: none;
  }

  .performance_mockup_img-a {
    opacity: 1;
  }

  .performance_mockup_img-b {
    opacity: 0;
  }
}

.performance_detail_meta {
  display: grid;
  grid-template-columns: repeat(
    2,
    minmax(0, calc(var(--pd-page-width) * 440 / 1440))
  );
  justify-content: center;
  gap: calc(var(--pd-page-width) * 12 / 1440)
    calc(var(--pd-page-width) * 36 / 1440);
  margin: 0 auto calc(var(--pd-page-width) * 142 / 1440);
  color: #fff;
}

.performance_detail_meta div {
  display: grid;
  grid-template-columns: calc(var(--pd-page-width) * 120 / 1440) 1fr;
  min-height: calc(var(--pd-page-width) * 34 / 1440);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.performance_detail_meta div:last-child {
  grid-column: 1 / 2;
}

.performance_detail_meta-burger div:last-child {
  grid-column: auto;
}

.performance_detail_meta-workers div:last-child {
  grid-column: 1 / 2;
}

.performance_detail_meta-site div:last-child {
  grid-column: 1 / 2;
}

.performance_number_list {
  display: inline-grid;
  gap: calc(var(--pd-page-width) * 10 / 1440);
  margin: calc(var(--pd-page-width) * 28 / 1440) 0 0;
  padding: 0;
  text-align: left;
  counter-reset: requirement;
}

.performance_number_list li {
  display: grid;
  grid-template-columns: calc(var(--pd-page-width) * 34 / 1440) auto;
  align-items: start;
  gap: calc(var(--pd-page-width) * 10 / 1440);
  font-size: clamp(14px, calc(var(--pd-page-width) * 16 / 1440), 16px);
  line-height: 1.55;
  letter-spacing: 0.08em;
  counter-increment: requirement;
}

.performance_number_list li::before {
  display: grid;
  place-items: center;
  width: calc(var(--pd-page-width) * 28 / 1440);
  height: calc(var(--pd-page-width) * 28 / 1440);
  margin-top: 0.05em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  color: #252835;
  font-size: clamp(15px, calc(var(--pd-page-width) * 20 / 1440), 20px);
  line-height: 1;
  content: counter(requirement);
}

.performance_detail_meta dt,
.performance_detail_meta dd {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: calc(var(--pd-page-width) * 6 / 1440)
    calc(var(--pd-page-width) * 12 / 1440);
  font-family: var(--font-body);
  font-size: clamp(14px, calc(var(--pd-page-width) * 16 / 1440), 16px);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.performance_detail_meta dt {
  color: #252835;
  background: rgba(255, 255, 255, 0.96);
}

.performance_detail_meta dd {
  border-left: 1px solid rgba(255, 255, 255, 0.78);
}

.performance_detail_section {
  margin-bottom: calc(var(--pd-page-width) * 142 / 1440);
}

.performance_caption_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--pd-page-width) * 25 / 1440);
  margin: 0 0 calc(var(--pd-page-width) * 54 / 1440);
  font-family: var(--font-heading);
  font-size: clamp(18px, calc(var(--pd-page-width) * 26 / 1440), 26px);
  line-height: 1.45;
  letter-spacing: 0.18em;
  color: #f6c65b;
}

.performance_caption_title img {
  width: calc(var(--pd-page-width) * 32 / 1440);
  max-width: none;
}

.performance_point_grid {
  display: grid;
  grid-template-columns: repeat(2, calc(var(--pd-page-width) * 335 / 1440));
  justify-content: center;
  gap: calc(var(--pd-page-width) * 68 / 1440)
    calc(var(--pd-page-width) * 58 / 1440);
  margin: calc(var(--pd-page-width) * 60 / 1440) 0 0;
  padding: 0;
}

.performance_point_grid li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--pd-page-width) * 108 / 1440);
  padding: calc(var(--pd-page-width) * 38 / 1440)
    calc(var(--pd-page-width) * 18 / 1440)
    calc(var(--pd-page-width) * 18 / 1440);
  text-align: center;
  color: #252835;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
}

.performance_point_grid img {
  position: absolute;
  top: calc(var(--pd-page-width) * -31 / 1440);
  left: 50%;
  width: calc(var(--pd-page-width) * 112 / 1440);
  max-width: none;
  transform: translateX(-50%);
}

.performance_point_grid h3 {
  margin: 0 0 calc(var(--pd-page-width) * 8 / 1440);
  font-size: clamp(15px, calc(var(--pd-page-width) * 18 / 1440), 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.performance_point_grid p {
  margin: 0;
  font-size: clamp(14px, calc(var(--pd-page-width) * 15 / 1440), 15px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.performance_focus_list {
  display: grid;
  grid-template-columns: repeat(2, calc(var(--pd-page-width) * 295 / 1440));
  justify-content: center;
  gap: calc(var(--pd-page-width) * 16 / 1440)
    calc(var(--pd-page-width) * 35 / 1440);
  margin: calc(var(--pd-page-width) * 38 / 1440) 0 0;
  padding: 0;
}

.performance_focus_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--pd-page-width) * 44 / 1440);
  padding: calc(var(--pd-page-width) * 8 / 1440)
    calc(var(--pd-page-width) * 18 / 1440);
  font-size: clamp(14px, calc(var(--pd-page-width) * 17 / 1440), 17px);
  line-height: 1.35;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
}

.performance_sample_section {
  width: min(100%, calc(var(--pd-page-width) * 880 / 1440));
  margin-inline: auto;
}

.performance_sample_row {
  display: grid;
  grid-template-columns:
    calc(var(--pd-page-width) * 232 / 1440)
    minmax(0, 1fr);
  align-items: center;
  gap: calc(var(--pd-page-width) * 78 / 1440);
  text-align: left;
}

.performance_sample_row-points {
  grid-template-columns:
    calc(var(--pd-page-width) * 232 / 1440)
    minmax(0, calc(var(--pd-page-width) * 680 / 1440));
}

.performance_sample_card {
  position: relative;
  margin: 0;
}

.performance_sample_card > img:last-child {
  width: 100%;
}

.performance_sample_icon {
  width: calc(var(--pd-page-width) * 75 / 1440);
  margin: 0 0 calc(var(--pd-page-width) * 12 / 1440);
}

.performance_point_grid-compact {
  grid-template-columns: repeat(2, calc(var(--pd-page-width) * 265 / 1440));
  gap: calc(var(--pd-page-width) * 56 / 1440)
    calc(var(--pd-page-width) * 36 / 1440);
  margin-top: 0;
  padding-top: calc(var(--pd-page-width) * 31 / 1440);
}

.performance_point_grid-compact li {
  min-height: calc(var(--pd-page-width) * 96 / 1440);
  padding-top: calc(var(--pd-page-width) * 42 / 1440);
}

.performance_point_grid-compact h3 {
  margin-bottom: 0;
  font-size: clamp(14px, calc(var(--pd-page-width) * 16 / 1440), 16px);
}

.performance_focus_list-burger {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  width: 100%;
}

.performance_focus_list-burger li:last-child {
  grid-column: 1 / 2;
}

.burger_slide_section {
  position: relative;
}

.burger_slide_viewport {
  overflow: hidden;
}

.burger_slide_track {
  display: flex;
  align-items: stretch;
  width: 200%;
  transition: transform 0.45s ease;
}

.burger_slide_section[data-active-slide="b"] .burger_slide_track {
  transform: translateX(-50%);
}

.burger_slide_panel {
  flex: 0 0 50%;
  min-width: 0;
  padding-inline: 1px;
}

.burger_slide_toggle {
  display: block;
  width: fit-content;
  margin-top: calc(var(--pd-page-width) * 28 / 1440);
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger_slide_toggle_img {
  display: block;
  width: calc(var(--pd-page-width) * 150 / 1440);
  max-width: none;
}

.performance_check_list {
  display: inline-grid;
  gap: calc(var(--pd-page-width) * 12 / 1440);
  margin: calc(var(--pd-page-width) * 28 / 1440) 0 0;
  padding: 0;
  text-align: left;
}

.performance_check_list li {
  position: relative;
  padding-left: calc(var(--pd-page-width) * 26 / 1440);
  font-size: clamp(14px, calc(var(--pd-page-width) * 18 / 1440), 18px);
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.performance_check_list li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: calc(var(--pd-page-width) * 12 / 1440);
  height: calc(var(--pd-page-width) * 12 / 1440);
  background: #fff;
  content: "";
}

.performance_detail_contact {
  display: block;
  width: calc(var(--pd-page-width) * 340 / 1440);
  margin: calc(var(--pd-page-width) * 44 / 1440) auto 0;
  transform: rotate(-5deg);
}

.performance_detail_note {
  margin-bottom: calc(var(--pd-page-width) * 128 / 1440);
  font-size: 14px;
}

.performance_detail_nav {
  display: grid;
  grid-template-columns: repeat(3, calc(var(--pd-page-width) * 170 / 1440));
  align-items: end;
  justify-content: space-between;
  width: min(100%, calc(var(--pd-page-width) * 950 / 1440));
  margin: 0 auto;
}

.performance_detail_nav_item {
  display: block;
  width: calc(var(--pd-page-width) * 135 / 1440);
}

.performance_detail_nav_item:last-child {
  justify-self: end;
  width: calc(var(--pd-page-width) * 121 / 1440);
}

.performance_detail_back {
  display: grid;
  justify-items: center;
  gap: calc(var(--pd-page-width) * 8 / 1440);
  font-family: var(--font-display);
  font-size: clamp(15px, calc(var(--pd-page-width) * 22 / 1440), 22px);
  line-height: 1.22;
  letter-spacing: 0.12em;
  color: #f6d66a;
  text-decoration: none;
}

.performance_detail_back span {
  text-decoration: none;
}

.performance_detail_back img {
  width: calc(var(--pd-page-width) * 28 / 1440);
}

.performance_detail_footer {
  position: relative;
  height: calc(var(--pd-page-width) * 300 / 1440);
  overflow: visible;
  background:
    url("../images/common/night.webp") center bottom / 866px 866px repeat,
    #121522;
}

.performance_detail_footer_floor {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: calc(var(--pd-page-width) * 255 / 1440);
  max-width: none;
  object-fit: cover;
}

.performance_detail_footer_illust {
  position: absolute;
  left: calc(var(--pd-stage-left) + var(--pd-page-width) * 0.19);
  bottom: calc(var(--pd-page-width) * 37 / 1440);
  z-index: 2;
  width: auto;
  height: var(--pd-footer-illust-height);
  max-width: none;
}

.performance_detail_footer_illust-workers {
  left: calc(var(--pd-stage-left) + var(--pd-page-width) * 0.15);
  bottom: calc(var(--pd-page-width) * 24 / 1440);
  height: calc(var(--pd-page-width) * 380 / 1440);
}

.performance_detail_footer_illust-hairsalon {
  left: calc(var(--pd-stage-left) + var(--pd-page-width) * 0.14);
  bottom: calc(var(--pd-page-width) * 22 / 1440);
  height: calc(var(--pd-page-width) * 350 / 1440);
}

.performance_detail_footer_illust-designcafe {
  left: auto;
  right: calc(var(--pd-stage-left) + var(--pd-page-width) * 0.13);
  bottom: calc(var(--pd-page-width) * 22 / 1440);
  height: calc(var(--pd-page-width) * 400 / 1440);
}

.performance_work_overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.performance_work_overlay-site,
.performance_work_overlay-workers {
  align-items: flex-start;
}

.performance_work_overlay:target,
.performance_work_overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.performance_work_overlay_backdrop {
  position: fixed;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.performance_work_view_close {
  position: fixed;
  top: 30px;
  right: 34px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.performance_work_view_close::before,
.performance_work_view_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 1px;
  background: #fff;
  content: "";
}

.performance_work_view_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.performance_work_view_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.performance_work_overlay_img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 760px);
  max-height: 82vh;
  object-fit: contain;
}

.performance_work_overlay_images {
  --performance-work-overlay-gap: min(6vw, 100px);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--performance-work-overlay-gap);
  width: min(100%, 1100px);
}

.performance_work_overlay-site .performance_work_overlay_images,
.performance_work_overlay-workers .performance_work_overlay_images {
  align-items: flex-start;
}

.performance_work_overlay-dual .performance_work_overlay_img {
  max-width: min(48%, 520px);
}

.performance_work_overlay-dual .performance_work_overlay_img-page,
.performance_work_overlay_img-page {
  max-width: min(100%, 900px);
  max-height: none;
}

.performance_work_overlay-workers .performance_work_overlay_images {
  width: min(100%, 1280px);
  overflow: visible;
}

.performance_work_overlay-workers .performance_work_overlay_img {
  max-height: none;
}

.performance_work_overlay-workers .performance_work_overlay_img:first-child {
  width: min(
    calc((100% - var(--performance-work-overlay-gap)) * 0.8077),
    962px
  );
  max-width: none;
}

.performance_work_overlay-workers .performance_work_overlay_img:last-child {
  width: min(
    calc((100% - var(--performance-work-overlay-gap)) * 0.1923),
    229px
  );
  max-width: none;
}

.performance_work_overlay-site .performance_work_overlay_images {
  width: min(100%, 1280px);
  overflow: visible;
}

.performance_work_overlay-site .performance_work_overlay_img {
  max-height: none;
}

.performance_work_overlay-site .performance_work_overlay_img:first-child {
  width: min(
    calc((100% - var(--performance-work-overlay-gap)) * 0.8077),
    962px
  );
  max-width: none;
}

.performance_work_overlay-site .performance_work_overlay_img:last-child {
  width: min(
    calc((100% - var(--performance-work-overlay-gap)) * 0.1923),
    229px
  );
  max-width: none;
}

/* =========================
  Contact / Thanks Pages
========================= */

.contact_page {
  --contact-page-width: min(100vw, 1440px);
  --contact-stage-left: calc((100vw - var(--contact-page-width)) / 2);
  --menu-button-right: calc(var(--contact-page-width) * 30 / 1440);
  --menu-button-size: clamp(
    62px,
    calc(var(--contact-page-width) * 88 / 1440),
    88px
  );
  min-height: 100vh;
  color: #333;
  background:
    url("../images/common/contact-bg.webp") center top / 534px 534px repeat,
    #e7e2d8;
}

.thanks_page {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.thanks_page .contact_main {
  flex: 1 0 auto;
}

.thanks_page .contact_footer {
  flex-shrink: 0;
}

.contact_main {
  width: 100%;
  overflow: hidden;
}

.contact_stage {
  position: relative;
  min-height: calc(var(--contact-page-width) * 1545 / 1440);
  padding-top: calc(var(--contact-page-width) * 238 / 1440);
}

.thanks_stage {
  min-height: calc(var(--contact-page-width) * 930 / 1440);
}

.contact_curtain {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: max(100vw, calc(var(--contact-page-width) * 1449 / 1440));
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact_curtain_picture {
  display: contents;
}

.contact_stars {
  z-index: 2;
}

.contact_inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), calc(var(--contact-page-width) * 930 / 1440));
  margin: 0 auto;
  text-align: center;
}

.contact_title,
.thanks_title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, calc(var(--contact-page-width) * 92 / 1440), 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #e51f28;
}

.contact_title span {
  display: block;
  margin-top: calc(var(--contact-page-width) * -6 / 1440);
  padding-left: calc(var(--contact-page-width) * 350 / 1440);
  font-family: var(--font-heading);
  font-size: clamp(18px, calc(var(--contact-page-width) * 28 / 1440), 28px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.contact_form {
  display: grid;
  gap: calc(var(--contact-page-width) * 60 / 1440);
  margin-top: calc(var(--contact-page-width) * 145 / 1440);
}

.contact_form_row {
  display: grid;
  grid-template-columns:
    calc(var(--contact-page-width) * 260 / 1440)
    minmax(0, calc(var(--contact-page-width) * 660 / 1440));
  align-items: center;
  justify-content: center;
  gap: calc(var(--contact-page-width) * 40 / 1440);
}

.contact_form_row label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  font-family: var(--font-body);
  font-size: clamp(17px, calc(var(--contact-page-width) * 25 / 1440), 25px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.contact_required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 38px;
  min-height: 20px;
  padding: 3px 7px;
  border: 1px solid rgb(255 255 255 / 0.75);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  background: #e51f28;
}

.contact_form_row input,
.contact_form_row textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #333;
  font: inherit;
  outline-offset: 4px;
}

.contact_form_row input {
  height: calc(var(--contact-page-width) * 70 / 1440);
  padding: 0 calc(var(--contact-page-width) * 18 / 1440);
}

.contact_form_row textarea {
  min-height: calc(var(--contact-page-width) * 290 / 1440);
  padding: calc(var(--contact-page-width) * 18 / 1440);
  resize: vertical;
}

.contact_form_row-message {
  align-items: start;
}

.contact_form_row-message label {
  padding-top: calc(var(--contact-page-width) * 8 / 1440);
}

.contact_submit {
  justify-self: center;
  width: calc(var(--contact-page-width) * 314 / 1440);
  margin-top: calc(var(--contact-page-width) * 28 / 1440);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: rotate(-11deg);
  transition: transform 0.25s ease;
}

.contact_submit:hover,
.contact_submit:focus-visible {
  transform: rotate(-11deg) scale(1.06);
}

.contact_submit img {
  width: 100%;
  max-width: none;
}

.contact_footer {
  position: relative;
  height: calc(var(--contact-page-width) * 352 / 1440);
  background:
    url("../images/common/contact-bg.webp") center top / 534px 534px repeat,
    #e7e2d8;
}

.contact_footer_floor {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: calc(var(--contact-page-width) * 294 / 1440);
  max-width: none;
  object-fit: cover;
}

.contact_footer_illust {
  position: absolute;
  left: calc(var(--contact-stage-left) + var(--contact-page-width) * 0.14);
  bottom: calc(var(--contact-page-width) * 30 / 1440);
  z-index: 2;
  width: calc(var(--contact-page-width) * 403 / 1440);
  max-width: none;
}

.contact_footer_comment {
  position: absolute;
  left: calc(var(--contact-stage-left) + var(--contact-page-width) * 0.25);
  bottom: calc(var(--contact-page-width) * 380 / 1440);
  z-index: 3;
  width: calc(var(--contact-page-width) * 181 / 1440);
  max-width: none;
}

.thanks_inner {
  padding-top: calc(var(--contact-page-width) * 15 / 1440);
}

.thanks_message {
  margin: calc(var(--contact-page-width) * 80 / 1440) 0 0;
  font-family: var(--font-body);
  font-size: clamp(19px, calc(var(--contact-page-width) * 28 / 1440), 28px);
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.thanks_back {
  display: block;
  width: calc(var(--contact-page-width) * 96 / 1440);
  margin: calc(var(--contact-page-width) * 112 / 1440) auto 0;
  transition: transform 0.25s ease;
}

.thanks_back:hover,
.thanks_back:focus-visible {
  transform: scale(1.08);
}

.thanks_back img {
  width: 100%;
  max-width: none;
}

.thanks_footer {
  height: calc(var(--contact-page-width) * 294 / 1440);
}

.thanks_footer_illust {
  position: absolute;
  left: 50%;
  bottom: calc(var(--contact-page-width) * 40 / 1440);
  z-index: 2;
  width: calc(var(--contact-page-width) * 228 / 1440);
  max-width: none;
  transform: translateX(-50%);
}

/* =========================
  Loading Page
========================= */

.loading_page {
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #351505;
}

.loading_stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.loading_door_frame {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #351505;
}

.loading_door_frame::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(circle at center, transparent 0 42%, rgb(0 0 0 / 0.2) 100%),
    linear-gradient(
      90deg,
      rgb(0 0 0 / 0.32),
      transparent 18% 82%,
      rgb(0 0 0 / 0.32)
    );
  content: "";
  pointer-events: none;
}

.loading_door_open {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.loading_door {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 50.8vw;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 1.35s cubic-bezier(0.72, 0, 0.18, 1);
  will-change: transform;
}

.loading_door-left {
  left: 0;
  object-position: right center;
}

.loading_door-right {
  right: 0;
  object-position: left center;
}

.loading_content {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 100svh;
  place-content: center;
  justify-items: center;
  transform: translateY(-3vh);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.loading_message {
  margin: 0 0 44px;
  font-family: var(--font-heading);
  font-size: clamp(21px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 3px 6px rgb(0 0 0 / 0.45);
}

.loading_clock {
  position: relative;
  width: clamp(176px, 18.6vw, 267px);
  aspect-ratio: 1;
}

.loading_clock::after {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 5.4%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.loading_clock_number {
  width: 100%;
  max-width: none;
}

.loading_clock_hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 4px;
  max-width: none;
  border-radius: 999px;
  background: #fff;
  transform-origin: 50% 100%;
  will-change: transform;
}

.loading_clock_hand-short {
  z-index: 2;
  height: 24%;
  transform: translateX(-50%) rotate(var(--loading-short-hand-angle, 0deg));
}

.loading_clock_hand-long {
  z-index: 3;
  height: 34%;
  transform: translateX(-50%) rotate(var(--loading-long-hand-angle, 0deg));
}

.loading_page.is-opening .loading_door_open {
  opacity: 1;
}

.loading_page.is-opening .loading_door-left {
  transform: translateX(-104%);
}

.loading_page.is-opening .loading_door-right {
  transform: translateX(104%);
}

.loading_page.is-opening .loading_content {
  opacity: 0;
  transform: translateY(-3vh) scale(0.96);
}

@keyframes loading-clock-short {
  from {
    transform: translate(-50%, -50%) rotate(-165deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@keyframes loading-clock-long {
  from {
    transform: translate(-50%, -50%) rotate(-405deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  .performance_detail_hero {
    min-height: auto;
    padding: calc(var(--header-curtain-height) * 0.48) 0 120px;
  }

  .performance_ice_page .performance_detail_hero {
    min-height: auto;
    padding-bottom: 86px;
  }

  .performance_burger_page .performance_detail_hero {
    min-height: auto;
    padding-bottom: 86px;
  }

  .performance_workers_page .performance_detail_hero {
    min-height: auto;
    padding-bottom: 86px;
  }

  .performance_hairsalon_page .performance_detail_hero,
  .performance_designcafe_page .performance_detail_hero {
    min-height: auto;
    padding-bottom: 86px;
  }

  .performance_detail_inner {
    width: min(100% - 32px, 520px);
  }

  .performance_burger_page .performance_detail_inner {
    width: min(100% - 32px, 640px);
  }

  .performance_detail_intro {
    width: min(100%, 440px);
    margin-inline: auto;
    margin-bottom: 34px;
  }

  .performance_detail_section > p,
  .performance_detail_note {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .performance_detail_intro h1,
  .performance_detail_intro h2 {
    font-size: 21px;
  }

  .performance_detail_intro p,
  .performance_detail_section p,
  .performance_detail_note {
    font-size: 14px;
    line-height: 1.5;
  }

  .performance_mockup {
    --pd-sp-mockup-gap: 14px;
    --pd-sp-mockup-phone-width: clamp(92px, 24vw, 150px);
    grid-template-columns:
      minmax(
        0,
        calc(100% - var(--pd-sp-mockup-phone-width) - var(--pd-sp-mockup-gap))
      )
      var(--pd-sp-mockup-phone-width);
    gap: var(--pd-sp-mockup-gap);
    margin-bottom: 36px;
  }

  .performance_mockup_link-ice {
    grid-template-columns:
      minmax(
        0,
        calc(100% - var(--pd-sp-mockup-phone-width) - var(--pd-sp-mockup-gap))
      )
      var(--pd-sp-mockup-phone-width);
    gap: var(--pd-sp-mockup-gap);
  }

  .performance_mockup_link-burger {
    gap: 24px;
    width: 100%;
  }

  .performance_mockup_link-burger .performance_click_bubble {
    left: calc(50% - min(100%, 460px) / 2 - 4px);
  }

  .burger_mockup_row {
    grid-template-columns: minmax(0, 1fr) clamp(118px, 23vw, 172px);
    gap: clamp(18px, 4vw, 30px);
  }

  .burger_mockup_icon {
    left: -4px;
    top: 50px;
    width: 54px;
  }

  .performance_click_bubble {
    top: -8px;
    left: calc(50% - min(100%, 460px) / 2 - 4px);
    width: 70px;
  }

  .performance_mockup_pc {
    width: 100%;
    margin-inline: auto;
  }

  .performance_mockup_sp {
    width: 100%;
    margin-inline: auto;
  }

  .performance_mockup_slide-pc {
    width: 100%;
    margin-inline: auto;
  }

  .performance_mockup_slide-sp {
    width: 100%;
    margin-inline: auto;
  }

  .performance_detail_meta {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 86px;
  }

  .performance_detail_meta div:last-child {
    grid-column: auto;
  }

  .performance_detail_meta-workers div:last-child {
    grid-column: auto;
  }

  .performance_detail_meta-site div:last-child {
    grid-column: auto;
  }

  .performance_detail_meta div {
    grid-template-columns: 96px 1fr;
    min-height: 32px;
  }

  .performance_detail_meta dt,
  .performance_detail_meta dd {
    font-size: 14px;
  }

  .performance_detail_section {
    margin-bottom: 86px;
  }

  .performance_caption_title {
    gap: 12px;
    margin-bottom: 32px;
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .performance_caption_title img {
    width: 22px;
  }

  .performance_point_grid,
  .performance_focus_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 12px;
  }

  .performance_point_grid {
    margin-top: 44px;
  }

  .performance_focus_list {
    gap: 10px 12px;
  }

  .performance_point_grid li {
    min-height: 102px;
    padding: 30px 10px 14px;
  }

  .performance_point_grid img {
    top: -24px;
    width: 96px;
  }

  .performance_point_grid h3 {
    font-size: 14px;
  }

  .performance_point_grid p,
  .performance_focus_list li {
    font-size: clamp(12px, 3.4vw, 14px);
  }

  .performance_focus_list li {
    min-height: 40px;
    padding-inline: 8px;
  }

  .performance_number_list {
    gap: 8px;
    margin-top: 22px;
  }

  .performance_number_list li {
    grid-template-columns: 28px auto;
    gap: 8px;
    font-size: 14px;
  }

  .performance_number_list li::before {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .performance_sample_section {
    width: 100%;
  }

  .performance_sample_row,
  .performance_sample_row-points {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100%, 440px);
    margin-inline: auto;
    text-align: center;
  }

  .performance_sample_card {
    width: min(58vw, 210px);
    margin-inline: auto;
  }

  .performance_sample_icon {
    width: 54px;
    margin-bottom: 10px;
  }

  .performance_burger_page .burger_slide_section .performance_sample_card {
    --burger-sample-card-size: min(58vw, 210px);
    display: grid;
    grid-template-rows: 64px var(--burger-sample-card-size);
    justify-items: center;
    align-items: center;
    width: var(--burger-sample-card-size);
  }

  .performance_burger_page .burger_slide_section .performance_sample_icon {
    align-self: start;
    margin-bottom: 0;
  }

  .performance_burger_page
    .burger_slide_section
    .performance_sample_card
    > img:last-child {
    align-self: center;
    width: 100%;
    max-height: var(--burger-sample-card-size);
    object-fit: contain;
  }

  .burger_intent_slide_section .performance_sample_row > p {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
  }

  .performance_point_grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 12px;
    padding-top: 0px;
  }

  .burger_points_slide_section .performance_point_grid-compact {
    grid-auto-rows: 118px;
  }

  .burger_points_slide_section .performance_point_grid-compact li {
    min-height: 0;
    height: 100%;
  }

  .performance_point_grid-compact h3 {
    font-size: 14px;
  }

  .performance_focus_list-burger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .burger_effect_slide_section .performance_focus_list-burger {
    grid-auto-rows: 68px;
  }

  .burger_effect_slide_section .performance_focus_list-burger li {
    min-height: 0;
    height: 100%;
  }

  .performance_focus_list-burger li:last-child {
    grid-column: auto;
  }

  .burger_slide_toggle {
    margin-top: 24px;
  }

  .burger_slide_toggle_img {
    width: 102px;
  }

  .performance_check_list {
    gap: 8px;
    margin-top: 22px;
  }

  .performance_check_list li {
    padding-left: 20px;
    font-size: 14px;
  }

  .performance_check_list li::before {
    width: 10px;
    height: 10px;
  }

  .performance_detail_contact {
    width: min(40vw, 260px);
  }

  .performance_detail_note {
    margin-bottom: 76px;
  }

  .performance_detail_nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
  }

  .performance_detail_nav_item,
  .performance_detail_nav_item:last-child {
    width: 76px;
  }

  .performance_detail_back {
    font-size: 15px;
  }

  .performance_detail_back img {
    width: 20px;
  }

  .performance_detail_footer {
    height: 210px;
  }

  .performance_detail_footer_floor {
    height: 130px;
  }

  .performance_detail_footer_illust {
    left: 12vw;
    bottom: 30px;
    width: auto;
    height: min(34vw, 150px);
  }

  .performance_detail_footer_illust-workers {
    left: 9vw;
    bottom: 24px;
    height: min(40vw, 170px);
  }

  .performance_detail_footer_illust-hairsalon {
    left: 10vw;
    bottom: 24px;
    height: min(40vw, 170px);
  }

  .performance_detail_footer_illust-designcafe {
    right: 7vw;
    bottom: 24px;
    height: min(42vw, 176px);
  }

  .performance_work_overlay {
    padding: 70px 18px 34px;
  }

  .performance_work_view_close {
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
  }

  .performance_work_view_close::before,
  .performance_work_view_close::after {
    width: 40px;
  }

  .performance_work_overlay_img {
    max-width: 100%;
    max-height: none;
  }

  .performance_work_overlay_images {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-height: none;
    overflow: visible;
  }

  .performance_work_overlay-dual .performance_work_overlay_img {
    max-width: 100%;
  }

  .performance_work_overlay-workers .performance_work_overlay_images {
    align-items: center;
    max-height: none;
    overflow: visible;
  }

  .performance_work_overlay-workers .performance_work_overlay_img:first-child {
    width: min(100%, 720px);
  }

  .performance_work_overlay-workers .performance_work_overlay_img:last-child {
    width: min(58vw, 229px);
  }

  .performance_work_overlay-site .performance_work_overlay_images {
    align-items: center;
    max-height: none;
    overflow: visible;
  }

  .performance_work_overlay-site .performance_work_overlay_img:first-child {
    width: min(100%, 720px);
  }

  .performance_work_overlay-site .performance_work_overlay_img:last-child {
    width: min(58vw, 229px);
  }

  .contact_stage {
    min-height: auto;
    padding: calc(var(--header-curtain-height) * 0.48) 0 80px;
  }

  .contact_page::before {
    position: fixed;
  }

  .thanks_stage {
    min-height: auto;
    padding-bottom: 120px;
  }

  .contact_curtain {
    width: max(100vw, calc(var(--contact-page-width) * 1449 / 1440));
  }

  .contact_inner {
    width: min(100% - 72px, 480px);
  }

  .contact_title,
  .thanks_title {
    font-size: 54px;
  }

  .contact_title span {
    margin-top: 8px;
    padding-left: 0px;
    font-size: 17px;
  }

  .contact_form {
    gap: 28px;
    margin-top: 70px;
  }

  .contact_form_row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact_form_row label {
    justify-self: start;
    gap: 8px;
    font-size: 15px;
  }

  .contact_required {
    min-width: 34px;
    min-height: 18px;
    padding: 3px 6px;
    font-size: 11px;
  }

  .contact_form_row input {
    height: 48px;
    padding-inline: 14px;
  }

  .contact_form_row textarea {
    min-height: 180px;
    padding: 14px;
  }

  .contact_form_row-message label {
    padding-top: 0;
  }

  .contact_submit {
    width: 190px;
    margin-top: 16px;
  }

  .contact_footer {
    height: 250px;
  }

  .contact_footer_floor {
    height: 150px;
  }

  .contact_footer_illust {
    left: 6vw;
    bottom: 32px;
    width: clamp(210px, 58vw, 260px);
  }

  .contact_footer_comment {
    left: 36vw;
    bottom: 220px;
    width: 128px;
  }

  .thanks_message {
    margin-top: 52px;
    font-size: 16px;
  }

  .thanks_back {
    width: 78px;
    margin-top: 76px;
  }

  .thanks_footer {
    height: 260px;
  }

  .thanks_footer_illust {
    bottom: 92px;
    width: clamp(128px, 35vw, 150px);
  }

  .loading_content {
    transform: translateY(-2vh);
  }

  .loading_message {
    margin-bottom: 34px;
    font-size: 21px;
    line-height: 1.7;
  }

  .loading_clock {
    width: min(52vw, 210px);
  }

  .loading_page.is-opening .loading_content {
    transform: translateY(-2vh) scale(0.96);
  }
}
