@charset "UTF-8";

/* reset
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-primary: #F91B09;
  --font-ja: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --line-height-base: 2;
  --line-height-md: 1.6;
  --line-height-sm: 1.4;
  --opacity-hover: 0.8;
  --easing: cubic-bezier(0, 0.55, 0.45, 1);
}

/* base
-------------------------------------------------------------- */
html {
  font-size: 10px;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 1.0416666667vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: max(1.3020833333vw, 10px);
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 10px;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  position: relative;
  z-index: 0;
  font-family: var(--font-ja);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.5rem;
  line-height: var(--line-height-base);
  color: var(--color-primary);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 576px) {
  body {
    text-size-adjust: 100%;
  }
}

::-moz-selection {
  color: #FFF;
  background: var(--color-primary);
}

::selection {
  color: #FFF;
  background: var(--color-primary);
}

/* a
-------------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: underline;
}

a:hover,
a:active {
  text-decoration: none;
}

/* img 
-------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* l-header
---------------------------------------------------------- */
.l-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-inline: 2.4rem;
  background: #FFF;
  transition: transform 0.3s var(--easing);
}

@media screen and (max-width: 960px) {
  .l-header {
    padding-block: 3rem;
    padding-inline: 1.5rem;
    background: none;
  }
}

/* l-header__nav
---------------------------------------------------------- */
@media screen and (max-width: 960px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  flex-wrap: nowrap;
}

.l-header__nav-item {
  overflow: hidden;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding-block: 0.8rem;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.3s var(--easing);
}

.l-header__nav-item:not(:last-child) {
  margin-right: 6rem;
}

@media screen and (max-width: 1440px) {
  .l-header__nav-item:not(:last-child) {
    margin-right: 4.1666666667vw;
  }
}

.l-header__nav-sns {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.l-header__nav-sns>a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s var(--easing);
}

.l-header__nav-sns>a:not(:last-child) {
  margin-right: 3rem;
}

.l-header__nav-sns>a:nth-child(2) {
  transform: translateY(0.1rem);
}

@media (any-hover: hover) {
  .l-header__nav-item:hover {
    opacity: 0.7;
  }

  .l-header__nav-sns>a:hover {
    opacity: 0.7;
  }
}

/* l-header__modal
---------------------------------------------------------- */
.l-header__modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  background: #fff;
  transition: opacity 0.4s var(--easing), visibility 0.4s var(--easing);
}

.l-header__modal.is-active {
  opacity: 1;
  visibility: visible;
}

.l-header__modal-body {
  overflow-y: scroll;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-top: min(10.9550561798vh, 7.8rem);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 5rem;
}

.l-header__modal-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: min(-0.702247191vh, -0.5rem);
}

.l-header__modal-list>a {
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  padding-block: 0.8rem;
}

.l-header__modal-list>a:not(:last-child) {
  margin-bottom: 1.2rem;
}

.l-header__modal-item {
  letter-spacing: 0.2em;
}

.l-header__modal-sns {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 960px) {
  .l-header__modal-sns {
    padding-top: 4rem;
  }
}

.l-header__modal-sns>a {
  display: inline-block;
  text-decoration: none;
}

.l-header__modal-sns>a:not(:last-child) {
  margin-right: 3rem;
}

.l-header__modal-sns>a:nth-child(2) {
  transform: translateY(0.1rem);
}

/* l-header__menu
---------------------------------------------------------- */
.l-header__menu {
  display: none;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  cursor: pointer;
}

.l-header__menu.is-active .l-header__menu-label {
  opacity: 1;
  visibility: visible;
}

.l-header__menu.is-active .l-header__menu-line>span:nth-of-type(1) {
  transform: translateY(2rem) scale(0);
}

.l-header__menu.is-active .l-header__menu-line>span:nth-of-type(2) {
  transform: rotate(-45deg);
}

.l-header__menu.is-active .l-header__menu-line>span:nth-of-type(2):after {
  transform: rotate(90deg);
}

.l-header__menu.is-active .l-header__menu-line>span:nth-of-type(3) {
  transform: translateY(-2rem) scale(0);
}

@media screen and (max-width: 960px) {
  .l-header__menu {
    display: flex;
  }
}

.l-header__menu-line>span {
  position: relative;
  z-index: 2;
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--color-primary);
  transition: transform 0.3s var(--easing);
}

.l-header__menu-line>span:not(:last-child) {
  margin-bottom: 0.8rem;
}

.l-header__menu-line>span:nth-of-type(2):after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--color-primary);
  transition: transform 0.3s var(--easing);
  transform-origin: center;
  border-radius: 1px;
}

.l-header__menu-line>span:not(:last-child) {
  margin-bottom: 0.6rem;
}

.l-header__menu-label {
  opacity: 0;
  visibility: hidden;
  margin-right: 1.2rem;
  letter-spacing: 0.1em;
  transition: opacity 0.2 var(--easing), visibility 0.2 var(--easing);
}

/* l-main
---------------------------------------------------------- */
.l-main {
  display: block;
}

/* l-modal
------------------------------------------------------------- */
.l-modal {
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  background: #FFF;
  transition: visibility 0.4s var(--easing), opacity 0.4s var(--easing), transform 0.4s var(--easing);
}

.l-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.l-modal__bg {
  width: 100%;
  min-height: 100%;
}

.l-modal__body {
  position: absolute;
  z-index: 4;
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 960px) {
  .l-modal__body {
    top: 7.5rem;
  }
}

@media screen and (max-width: 576px) {
  .l-modal__body {
    top: 7rem;
    width: 100%;
  }
}

.l-modal__container {
  position: relative;
  z-index: 0;
}

.l-modal__close {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 2.8rem;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .l-modal__close {
    top: -4rem;
  }
}

@media screen and (max-width: 576px) {
  .l-modal__close {
    top: -3.5rem;
    right: 1.7rem;
  }
}

.l-modal__close>span {
  display: block;
  position: relative;
  z-index: 0;
  width: 2.8rem;
  margin-left: 1.5rem;
}

.l-modal__close>span:before,
.l-modal__close>span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: var(--color-primary);
}

.l-modal__close>span:before {
  transform: rotate(-135deg);
}

.l-modal__close>span:after {
  transform: rotate(135deg);
}

.l-modal__cast {
  position: relative;
  z-index: 0;
}

.l-modal__cast-image {
  width: 51.6145833333vw;
  line-height: 0;
}

@media screen and (min-width: 961px) {
  .l-modal__cast-image {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 960px) {
  .l-modal__cast-image {
    width: 90.3645833333vw;
    margin-inline: auto;
  }

  .l-modal__cast-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 694/355;
    object-position: top center;
  }
}

@media screen and (max-width: 576px) {
  .l-modal__cast-image {
    width: calc(100vw - 1.7rem);
    margin-left: 0;
  }

  .l-modal__cast-image img {
    aspect-ratio: 355/358;
  }
}

.l-modal__cast-detail {
  position: relative;
  z-index: 1;
  width: 43.8541666667vw;
  margin-left: 34.0625vw;
  padding-top: 2.3958333333vw;
  padding-left: 3.4895833333vw;
  padding-right: 4.1666666667vw;
  padding-bottom: 3.3333333333vw;
  background: #FFF;
}

@media screen and (min-width: 961px) {
  .l-modal__cast-detail {
    min-height: 100vh;
    transform: translateY(3.6rem);
  }
}

@media screen and (max-width: 960px) {
  .l-modal__cast-detail {
    transform: translateX(4.8177083333vw);
    width: 83.0729166667vw;
    margin-top: -3.90625vw;
    margin-left: auto;
    padding-top: 3.515625vw;
    padding-left: 5.2083333333vw;
    padding-right: 6.9010416667vw;
    padding-bottom: 6.9010416667vw;
  }
}

@media screen and (max-width: 576px) {
  .l-modal__cast-detail {
    transform: none;
    width: 89.6vw;
    margin-top: -2.4rem;
    padding-bottom: 6rem;
  }
}

@media screen and (min-width: 961px) {
  .l-modal__cast-inner {
    padding-left: 1.1rem;
  }
}

.l-modal__cast-name {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  line-height: var(--line-height-sm);
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
  margin-bottom: 3.8rem;
  white-space: nowrap;
}

@media screen and (max-width: 960px) {
  .l-modal__cast-name {
    font-size: 1.5rem;
    margin-bottom: 3.2552083333vw;
  }
}

@media screen and (max-width: 576px) {
  .l-modal__cast-name {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.8rem;
  }
}

.l-modal__cast-name>span:nth-child(1) {
  font-size: 1.8rem;
  padding-left: 5vw;
}

@media screen and (max-width: 960px) {
  .l-modal__cast-name>span:nth-child(1) {
    font-size: 1.5rem;
    padding-left: 14.0625vw;
  }
}

@media screen and (max-width: 576px) {
  .l-modal__cast-name>span:nth-child(1) {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    margin-left: 4rem;
  }
}

.l-modal__cast-name>span:nth-child(2) {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  font-size: 1.4rem;
}

@media screen and (max-width: 576px) {
  .l-modal__cast-name>span:nth-child(2) {
    margin-left: auto;
  }
}

.l-modal__cast-name>span:nth-child(2):before {
  content: "";
  display: block;
  width: max(3.75vw, 2rem);
  height: 0.1rem;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  transform: translateY(-0.5rem);
  background: var(--color-primary);
}

@media screen and (max-width: 960px) {
  .l-modal__cast-name>span:nth-child(2):before {
    width: max(9.375vw, 1rem);
  }
}

.l-modal__cast-title {
  margin-bottom: 0.6rem;
}

@media screen and (max-width: 576px) {
  .l-modal__cast-title+.l-modal__cast-text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.l-modal__cast-text {
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}

.l-modal__cast-text+.l-modal__cast-title {
  padding-top: 3.6rem;
}

.l-modal__iframe {
  overflow: hidden;
  position: relative;
  width: 66.3020833333vw;
  aspect-ratio: 560/315;
}

@media screen and (max-width: 576px) {
  .l-modal__iframe {
    width: 100%;
  }
}

.l-modal__iframe>iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#modal-opening .l-modal__body {
  top: 50%;
  transform: translate(-50%, -50%);
  padding-inline: 2.5rem;
}

#modal-opening .l-modal__bg {
  background: rgba(0, 0, 0, 0.9);
}

#modal-opening .l-modal__close {
  top: 2.1875vw;
  right: 3.8020833333vw;
}

#modal-opening .l-modal__close>span {
  margin-left: 0;
}

#modal-opening .l-modal__close>span:before,
#modal-opening .l-modal__close>span:after {
  background: #FFF;
}

.l-modal__button {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1.9rem;
  margin-top: 2.1875vw;
}

.l-modal__button>div {
  text-align: center;
  flex: 1;
  font-size: 1.6666666667vw;
  line-height: var(--line-height-sm);
  padding-block: 1rem;
  padding-inline: 2rem;
  text-decoration: none;
  color: var(--color-primary);
  background: #FFF;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .l-modal__button>div {
    font-size: 1.5rem;
  }
}

.l-modal__button>div.is-active {
  color: #FFF;
  background: var(--color-primary);
}

/* =============================================================
animation
============================================================= */
/* fade-in-image
------------------------------------------------------------- */
[data-animation=fade-in-image].is-in-view img {
  opacity: 1;
  transform: scale(1);
}

.js-fade-in-image {
  overflow: hidden;
  line-height: 0;
}

.js-fade-in-image img {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s var(--easing), transform 0.8s var(--easing);
}

/* fade-in-up
------------------------------------------------------------- */
[data-animation=fade-in-up] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(4rem);
  transition: visibility 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-animation=fade-in-up].is-in-view {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
home
============================================================= */
/* p-home-fv
------------------------------------------------------------- */
.p-home-fv {
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100dvh;
}

@media screen and (max-width: 960px) {
  .p-home-fv {
    height: 87.1rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv {
    height: 55.6rem;
  }
}

.p-home-fv__image {
  width: 100%;
  height: 100%;
}

.p-home-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home-fv__catch-01 {
  position: absolute;
  z-index: 2;
  top: 6.8rem;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 4.2rem;
}

@media screen and (max-width: 960px) {
  .p-home-fv__catch-01 {
    top: 6.6rem;
    width: 45.5rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv__catch-01 {
    left: auto;
    transform: none;
    top: 2.6rem;
    margin-left: 4rem;
  }
}

.p-home-fv__catch-02--pc {
  position: absolute;
  z-index: 1;
  bottom: 4.6rem;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 960px) {
  .p-home-fv__catch-02--pc {
    width: 30.7291666667vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv__catch-02--pc {
    display: none;
  }
}

.p-home-fv__catch-02--sp {
  display: block;
  width: 78.6666666667vw;
  margin-inline: auto;
  margin-bottom: 1.4rem;
}

@media screen and (min-width: 577px) {
  .p-home-fv__catch-02--sp {
    display: none;
  }
}

.p-home-fv__catch-02--sp img {
  width: 100%;
}

.p-home-fv__footer {
  position: absolute;
  z-index: 2;
  bottom: 5rem;
  right: 8.75vw;
}

@media screen and (max-width: 960px) {
  .p-home-fv__footer {
    right: 0.7rem;
    bottom: 4.3rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv__footer {
    right: auto;
    bottom: 1.1rem;
    width: 100%;
  }
}

.p-home-fv__date-title {
  margin-bottom: 2rem;
}

@media screen and (max-width: 576px) {
  .p-home-fv__date-title {
    margin-bottom: 0.4rem;
    padding-inline: 6rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv__date-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
    padding-inline: 6rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv__date-item {
    flex: 1;
  }
}

@media screen and (min-width: 577px) {
  .p-home-fv__date-item:not(:last-child) {
    margin-bottom: 2.2rem;
  }
}

.p-home-fv__date-item img {
  display: block;
}

@media screen and (max-width: 576px) {
  .p-home-fv__date-item:nth-child(1) img {
    width: 22.1333333333vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv__date-item:nth-child(2) {
    margin-top: -0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv__date-item:nth-child(2) img {
    width: 27.7333333333vw;
  }
}

.p-home-fv__date-text {
  font-size: 1.1rem;
  line-height: 1.1818181818;
  color: #FFF;
  white-space: nowrap;
  margin-top: 1rem;
}

@media screen and (max-width: 960px) {
  .p-home-fv__date-text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-fv__date-text {
    font-size: 1.8666666667vw;
    margin-top: 0.5rem;
    line-height: 1.4285714286;
  }
}

/* p-home-outline
------------------------------------------------------------- */
.p-home-outline {
  padding-top: 8.2rem;
  padding-bottom: 12rem;
}

.p-home-outline ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 960px) {
  .p-home-outline {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-outline {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.p-home-outline__body {
  padding-inline: 4rem;
}

@media screen and (max-width: 960px) {
  .p-home-outline__body {
    padding-inline: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-outline__body {
    padding-inline: 1.6rem;
  }
}

.p-home-outline__title-main {
  text-align: center;
  margin-bottom: 7.4rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__title-main {
    width: 23.3rem;
    margin-inline: auto;
    margin-bottom: 4.8rem;
  }
}

.p-home-outline__cast-01 {
  margin-bottom: 4.4rem;
}

@media screen and (max-width: 960px) {
  .p-home-outline__cast-01 {
    margin-bottom: 9.1rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-outline__cast-01 {
    margin-bottom: 4.1rem;
  }
}

.p-home-outline__cast-01>li {
  display: inline;
  font-size: 2rem;
}

.p-home-outline__cast-01>li:not(:last-child) {
  margin-right: 10.5rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__cast-01>li:not(:last-child) {
    margin-right: 5.7rem;
  }
}

.p-home-outline__cast-02 {
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 960px) {
  .p-home-outline__cast-02 {
    margin-bottom: 0.3rem;
  }
}

.p-home-outline__cast-02>li {
  font-size: 1.5rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__cast-02>li {
    font-size: 1rem;
  }
}

.p-home-outline__cast-02>li:not(:last-child) {
  margin-right: 1em;
}

.p-home-outline__cast-03 {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__cast-03 {
    margin-bottom: 2.2rem;
  }
}

.p-home-outline__cast-03>li {
  font-size: 1.2rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__cast-03>li {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

.p-home-outline__cast-03>li:not(:last-child) {
  margin-right: 1em;
}

.p-home-outline__cast-04 {
  margin-bottom: 2.6rem;
}

@media screen and (max-width: 960px) {
  .p-home-outline__cast-04 {
    margin-top: -1.1rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 960px) {
  .p-home-outline__cast-04 {
    margin-bottom: 1rem;
  }
}

.p-home-outline__cast-04>li {
  font-size: 1.5rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__cast-04>li {
    font-size: 1rem;
  }
}

.p-home-outline__cast-04>li .is-sm {
  font-size: 1rem;
}

.p-home-outline__cast-04>li:not(:last-child) {
  margin-right: 1em;
}

.p-home-outline__staff-01 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__staff-01 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 960px) {
  .p-home-outline__staff-01 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-outline__staff-01 {
    margin-bottom: 0.3rem;
  }
}

.p-home-outline__staff-01 .is-sm {
  font-size: 0.8em;
}

.p-home-outline__staff-02 {
  margin-bottom: 1rem;
}

@media screen and (max-width: 960px) {
  .p-home-outline__staff-02 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .p-home-outline__staff-02 {
    margin-bottom: 1rem;
  }
}

.p-home-outline__staff-02>li {
  font-size: 1.2rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__staff-02>li {
    font-size: 0.8rem;
  }
}

.p-home-outline__staff-02>li .is-sm {
  font-size: 0.8333333333em;
}

.p-home-outline__staff-02>li:not(:last-child) {
  margin-right: 1em;
}

.p-home-outline__other-01 {
  line-height: 1.5;
}

.p-home-outline__other-01>li {
  font-size: 0.8rem;
}

@media screen and (max-width: 960px) {
  .p-home-outline__other-01>li {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-outline__other-01>li {
    font-size: 0.5rem;
  }
}

.p-home-outline__other-01>li:not(:last-child) {
  margin-right: 1em;
}

.p-home-outline__other-02 {
  margin-top: 1rem;
  margin-bottom: 2.4rem;
}

@media screen and (max-width: 960px) {
  .p-home-outline__other-02 {
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-outline__other-02 {
    margin-bottom: 1.4rem;
  }
}

.p-home-outline__other-02>li {
  font-size: 0.8rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__other-02>li {
    font-size: 0.5rem;
  }
}

.p-home-outline__other-02>li>img {
  transform: translateY(0.2rem);
}

.p-home-outline__other-02>li:not(:last-child) {
  margin-right: 1.6em;
}

.p-home-outline__partner {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 3.6rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__partner {
    font-size: 0.5rem;
    margin-bottom: 3.2rem;
  }
}

.p-home-outline__partner>span {
  display: block;
  line-height: var(--line-height-sm);
}

@media screen and (max-width: 960px) {
  .p-home-outline__partner>span {
    margin-bottom: 1.8rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-outline__partner>span {
    margin-bottom: 0;
  }
}

.p-home-outline__sns {
  position: relative;
  z-index: 0;
  padding-bottom: 2.3rem;
}

@media screen and (max-width: 576px) {
  .p-home-outline__sns {
    padding-bottom: 0.8rem;
  }
}

.p-home-outline__sns:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 17.5rem;
  height: 1px;
  background: var(--color-primary);
}

@media screen and (max-width: 576px) {
  .p-home-outline__sns:after {
    width: 10rem;
  }
}

.p-home-outline__sns-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.p-home-outline__sns-list>a {
  transition: opacity 0.3s var(--easing);
}

@media screen and (max-width: 576px) {
  .p-home-outline__sns-list>a {
    width: 1.8rem;
  }
}

.p-home-outline__sns-list>a:not(:last-child) {
  margin-right: 2.3rem;
}

@media (any-hover: hover) {
  .p-home-outline__sns-list>a:hover {
    opacity: 0.7;
  }
}

.p-home-outline__ticket-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.4rem;
  transition: opacity 0.3s var(--easing);
}

@media (any-hover: hover) {
  .p-home-outline__ticket-link:hover {
    opacity: 0.7;
  }
}

#mvtk-widgets-container {
  margin-top: 9.5rem;
  margin-inline: auto;
}

@media screen and (max-width: 960px) {
  #mvtk-widgets-container {
    margin-top: 6.5rem;
  }
}

/* p-home-story
------------------------------------------------------------- */
.p-home-story {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding-top: 2.5rem;
  padding-bottom: 60.8rem;
}

@media screen and (max-width: 960px) {
  .p-home-story {
    padding-top: 0;
    padding-bottom: 52.8rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story {
    padding-bottom: 28.3rem;
  }
}

.p-home-story__body {
  width: min(100%, 164rem);
  padding-inline: 4rem;
  margin-inline: auto;
}

@media screen and (max-width: 960px) {
  .p-home-story__body {
    padding-inline: 2rem;
  }
}

.p-home-story__container {
  position: relative;
  z-index: 1;
}

.p-home-story__image-01 {
  position: relative;
  z-index: 0;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 960px) {
  .p-home-story__image-01 {
    margin-bottom: 1.4rem;
  }
}

.p-home-story__image-01>div:nth-child(1) {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 20.641025641%;
}

@media screen and (max-width: 960px) {
  .p-home-story__image-01>div:nth-child(1) {
    width: 41.9270833333vw;
    left: -2rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__image-01>div:nth-child(1) {
    width: 20.3rem;
    left: -2rem;
  }
}

.p-home-story__image-01>div:nth-child(2) {
  width: 45%;
  margin-left: 16.2179487179%;
  padding-top: 9.6153846154%;
}

@media screen and (max-width: 960px) {
  .p-home-story__image-01>div:nth-child(2) {
    width: 66.9270833333vw;
    margin-left: 24.7395833333vw;
    padding-top: 25.2604166667vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__image-01>div:nth-child(2) {
    width: 33.2rem;
    margin-left: 0;
    padding-top: 11rem;
  }
}

.p-home-story__image-02 {
  position: absolute;
  z-index: 1;
  bottom: 7.7083333333vw;
  right: 0;
  width: 20.9615384615%;
  padding-right: 2.2435897436%;
}

@media screen and (max-width: 960px) {
  .p-home-story__image-02 {
    position: relative;
    width: min(41.015625vw, 31.5rem);
    margin-top: 2rem;
    margin-left: auto;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__image-02 {
    width: 16.9rem;
    margin-top: 2.8rem;
    margin-left: 13.8rem;
  }
}

.p-home-story__image-02>div:nth-child(1) {
  width: min(100%, 29.2rem);
}

.p-home-story__image-02>div:nth-child(2) {
  position: absolute;
  z-index: 0;
  bottom: -4.3rem;
  right: 0;
  width: 29.0519877676%;
}

@media screen and (max-width: 960px) {
  .p-home-story__image-02>div:nth-child(2) {
    width: 13.0208333333vw;
    bottom: -5.2083333333vw;
    right: -1.3020833333vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__image-02>div:nth-child(2) {
    width: 6.4rem;
    right: -1rem;
  }
}

.p-home-story__image-03 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.p-home-story__image-03 img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .p-home-story__image-03 img {
    aspect-ratio: 768/797;
    object-fit: cover;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__image-03 img {
    aspect-ratio: 375/527;
  }
}

.p-home-story__detail {
  position: relative;
  z-index: 1;
  width: 65.5128205128%;
  margin-left: 15.1282051282%;
  padding-top: 3.1rem;
  padding-left: 6.858974359%;
  padding-right: 2.5%;
  background: #FFF;
}

@media screen and (max-width: 960px) {
  .p-home-story__detail {
    width: 87.6302083333vw;
    margin-left: 7.1614583333vw;
    padding-top: 2rem;
    padding-right: 6.5104166667vw;
    padding-left: 6.5104166667vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__detail {
    width: 89.3333333333vw;
    margin-left: 1.7rem;
    padding-top: 1rem;
    padding-right: 3.4rem;
    padding-left: 2.6rem;
  }
}

.p-home-story__title-main {
  margin-bottom: 4.2rem;
}

@media screen and (max-width: 960px) {
  .p-home-story__title-main {
    margin-bottom: 3.1rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__title-main {
    width: 11.1rem;
    margin-bottom: 2.6rem;
  }
}

.p-home-story__text {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 960px) {
  .p-home-story__text {
    line-height: 2.2;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__text {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}

.p-home-story__title-sub {
  position: relative;
  z-index: 1;
  margin-top: -7.9166666667vw;
  margin-left: 15.3846153846%;
}

@media screen and (max-width: 960px) {
  .p-home-story__title-sub {
    margin-top: -28.6458333333vw;
    margin-left: 10.4166666667vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__title-sub {
    margin-top: -19.5rem;
    margin-left: 3.3rem;
  }
}

.p-home-story__title-sub>img:nth-child(1) {
  width: 3.6363636364%;
}

@media screen and (max-width: 960px) {
  .p-home-story__title-sub>img:nth-child(1) {
    width: 6.5104166667vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__title-sub>img:nth-child(1) {
    width: 3.7rem;
  }
}

.p-home-story__title-sub>img:nth-child(2) {
  width: 33.8636363636%;
  margin-left: 5.6818181818%;
  transform: translateY(1.3rem);
}

@media screen and (max-width: 960px) {
  .p-home-story__title-sub>img:nth-child(2) {
    width: 60.8072916667vw;
    margin-left: 9.375vw;
    transform: translateY(2.9947916667vw);
  }
}

@media screen and (max-width: 576px) {
  .p-home-story__title-sub>img:nth-child(2) {
    width: 30rem;
    margin-left: 0.8rem;
    transform: scale(1.15);
    margin-top: -2.5rem;
  }
}

/* p-home-introduction
------------------------------------------------------------- */
.p-home-introduction {
  padding-top: 11.1rem;
}

@media screen and (max-width: 960px) {
  .p-home-introduction {
    padding-top: 4rem;
  }
}

@media screen and (max-width: 960px) {
  .p-home-introduction {
    padding-top: 5rem;
  }
}

.p-home-introduction__body {
  position: relative;
  z-index: 0;
}

.p-home-introduction__image {
  width: 100%;
  height: 88.8rem;
  margin-top: -36.6rem;
  background: url(../img/top/img_introduction_01.jpg) no-repeat bottom center;
  background-size: cover;
}

@media screen and (max-width: 576px) {
  .p-home-introduction__image {
    height: 70.7rem;
    margin-top: -28rem;
  }
}

.p-home-introduction__container {
  position: relative;
  z-index: 1;
  width: 94.7rem;
  margin-left: auto;
  margin-right: 11.3020833333vw;
  padding-top: 3.1rem;
  padding-left: 3.3rem;
  padding-right: 2.8rem;
  padding-bottom: 8.8rem;
  background: #FFF;
}

@media screen and (max-width: 1440px) {
  .p-home-introduction__container {
    margin-right: 2.6041666667vw;
  }
}

@media screen and (max-width: 960px) {
  .p-home-introduction__container {
    width: 87.6302083333vw;
    padding-left: 6.5104166667vw;
    padding-right: 6.5104166667vw;
    padding-bottom: 2.8645833333vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-introduction__container {
    width: 87.6302083333vw;
    margin-right: 0;
    padding-left: 2rem;
    padding-right: 3.5rem;
    padding-bottom: 4rem;
  }
}

.p-home-introduction__title-main {
  margin-bottom: 4.2rem;
}

@media screen and (max-width: 576px) {
  .p-home-introduction__title-main {
    width: 17rem;
    margin-bottom: 3.8rem;
  }
}

.p-home-introduction__title-sub {
  font-size: 2rem;
  line-height: var(--line-height-sm);
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 960px) {
  .p-home-introduction__title-sub {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-introduction__title-sub {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 2.8rem;
  }
}

.p-home-introduction__text {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 960px) {
  .p-home-introduction__text {
    line-height: 2.2;
  }
}

@media screen and (max-width: 576px) {
  .p-home-introduction__text {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}

/* p-home-cast
------------------------------------------------------------- */
.p-home-cast {
  padding-top: 19.6rem;
  padding-bottom: 32rem;
}

@media screen and (max-width: 960px) {
  .p-home-cast {
    padding-top: 6.6rem;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .p-home-cast {
    padding-top: 10.6rem;
    padding-bottom: 0;
  }
}

.p-home-cast__body {
  width: min(100%, 140.6rem);
  padding-inline: 4rem;
  margin-inline: auto;
}

@media screen and (max-width: 960px) {
  .p-home-cast__body {
    padding-inline: 7.5520833333vw;
  }
}

.p-home-cast__title-main {
  text-align: center;
  margin-bottom: 10.6rem;
}

@media screen and (max-width: 960px) {
  .p-home-cast__title-main {
    margin-bottom: 5.6rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-cast__title-main {
    width: 11rem;
    margin-inline: auto;
    margin-bottom: 1.6rem;
  }
}

@media screen and (min-width: 961px) {
  .p-home-cast__list-01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 2.2rem;
  }
}

.p-home-cast__list-01 .p-home-cast__name {
  margin-top: 1.4rem;
}

@media screen and (max-width: 960px) {
  .p-home-cast__list-01 .p-home-cast__name {
    margin-top: 0.9rem;
  }
}

.p-home-cast__list-01 .p-home-cast__name>div {
  margin-top: -0.4rem;
  margin-left: 8rem;
}

@media screen and (max-width: 960px) {
  .p-home-cast__list-01 .p-home-cast__name>div {
    margin-top: -1.1rem;
  }
}

@media screen and (max-width: 960px) {
  .p-home-cast__list-01 .p-home-cast__item:not(:last-child) {
    margin-bottom: 4.3rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-cast__list-01 .p-home-cast__item:not(:last-child) {
    margin-bottom: 5.6rem;
  }
}

.p-home-cast__list-02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 3.2rem 0.9rem;
  margin-top: 12rem;
}

@media screen and (max-width: 960px) {
  .p-home-cast__list-02 {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4.6rem;
    gap: 3.9rem 0.9rem;
  }
}

.p-home-cast__list-02 .p-home-cast__name {
  margin-top: 0.9rem;
}

@media screen and (max-width: 960px) {
  .p-home-cast__list-02 .p-home-cast__name>div {
    margin-top: -1.1rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-cast__list-02 .p-home-cast__name>div {
    line-height: var(--line-height-sm);
    margin-top: -0.6rem;
    margin-left: 0;
  }
}

.p-home-cast__item {
  cursor: pointer;
}

.p-home-cast__item-image {
  width: 100%;
}

@media (any-hover: hover) {
  .p-home-cast__item-image:hover {
    transform: scale(1.05) !important;
  }
}

.p-home-cast__name {
  letter-spacing: 0.1em;
}

.p-home-cast__name>div {
  display: block;
  margin-left: 6.4rem;
}

.p-home-cast__name .is-sm {
  font-size: 1.2rem;
}

/* p-home-staff
------------------------------------------------------------- */
.p-home-staff {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  padding-bottom: 16.4rem;
}

@media screen and (max-width: 960px) {
  .p-home-staff {
    padding-top: 10.4rem;
    padding-bottom: 7.4rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff {
    padding-top: 13.4rem;
    padding-bottom: 5.3rem;
  }
}

.p-home-staff__body {
  width: min(100%, 139.6rem);
  padding-inline: 4rem;
  margin-inline: auto;
}

@media screen and (max-width: 960px) {
  .p-home-staff__body {
    padding-inline: 8.984375vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff__body {
    padding-inline: 10.1333333333vw;
  }
}

.p-home-staff__title-main {
  text-align: center;
  margin-bottom: 8rem;
}

@media screen and (max-width: 960px) {
  .p-home-staff__title-main {
    margin-bottom: 6.2rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff__title-main {
    width: 10.9rem;
    margin-inline: auto;
    margin-bottom: 4.2rem;
  }
}

@media screen and (min-width: 961px) {
  .p-home-staff__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 17rem 11rem;
    padding-left: 2.5vw;
  }
}

.p-home-staff__item:nth-child(1) {
  grid-column: span 2;
}

.p-home-staff__item:nth-child(1) .p-home-staff__image {
  width: 34rem;
}

@media screen and (max-width: 576px) {
  .p-home-staff__item:nth-child(1) .p-home-staff__image {
    width: 100%;
    margin-bottom: 1.4rem;
  }
}

.p-home-staff__item:nth-child(1) .p-home-staff__item-header {
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .p-home-staff__item:nth-child(1) .p-home-staff__item-header {
    margin-bottom: 4.7rem;
  }
}

.p-home-staff__item:nth-child(1) .p-home-staff__detail {
  padding-left: 3.6rem;
}

@media screen and (max-width: 960px) {
  .p-home-staff__item:nth-child(1) .p-home-staff__detail {
    padding-left: 3rem;
    padding-top: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff__item:nth-child(1) .p-home-staff__detail {
    padding-left: 0;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff__item:nth-child(1) .p-home-staff__role-en {
    width: 13rem;
    margin-inline: auto;
  }

  .p-home-staff__item:nth-child(1) .p-home-staff__role-en img {
    width: 8rem;
  }
}

.p-home-staff__item:nth-child(1) .p-home-staff__role-ja {
  margin-top: 1.5rem;
  margin-bottom: 4.8rem;
}

@media screen and (max-width: 576px) {
  .p-home-staff__item:nth-child(1) .p-home-staff__role-ja {
    width: 13.6rem;
    margin-inline: auto;
    margin-top: 0.9rem;
  }
}

.p-home-staff__item:nth-child(1) .p-home-staff__role-ja>span {
  margin-right: 2.8rem;
}

@media screen and (min-width: 577px) {
  .p-home-staff__item:nth-child(n+2) .p-home-staff__image {
    width: 23.5rem;
  }
}

.p-home-staff__item:nth-child(n+2) .p-home-staff__item-header {
  margin-bottom: 4rem;
}

@media screen and (max-width: 960px) {
  .p-home-staff__item:nth-child(n+2) .p-home-staff__item-header {
    margin-bottom: 3.6rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff__item:nth-child(n+2) .p-home-staff__item-header {
    margin-bottom: 3rem;
  }
}

.p-home-staff__item:nth-child(n+2) .p-home-staff__detail {
  padding-left: 3rem;
}

@media screen and (max-width: 960px) {
  .p-home-staff__item:nth-child(n+2) .p-home-staff__detail {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff__item:nth-child(n+2) .p-home-staff__detail {
    padding-left: 0;
  }
}

@media screen and (max-width: 576px) {

  .p-home-staff__item:nth-child(n+2) .p-home-staff__role-en,
  .p-home-staff__item:nth-child(n+2) .p-home-staff__role-ja {
    width: 13rem;
    margin-inline: auto;
  }
}

.p-home-staff__item:nth-child(n+2) .p-home-staff__role-en img {
  width: 6.6rem;
}

.p-home-staff__item:nth-child(3) .p-home-staff__role-en img {
  width: 4.7rem;
}

@media screen and (max-width: 960px) {
  .p-home-staff__item:not(:last-child) {
    margin-bottom: 18.5rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff__item:not(:last-child) {
    margin-bottom: 17.5rem;
  }
}

@media screen and (min-width: 577px) {
  .p-home-staff__item-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

@media screen and (max-width: 960px) {
  .p-home-staff__image img {
    width: 100%;
  }
}

.p-home-staff__detail {
  flex: 1;
}

.p-home-staff__title-sub {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-top: 3.6rem;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 960px) {
  .p-home-staff__title-sub {
    margin-top: 0;
  }
}

@media screen and (max-width: 576px) {
  .p-home-staff__title-sub {
    margin-top: 3.6rem;
  }
}

.p-home-staff__role-ja {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  margin-bottom: 2.4rem;
  line-height: var(--line-height-md);
  white-space: nowrap;
}

@media screen and (max-width: 576px) {
  .p-home-staff__role-ja {
    letter-spacing: 0.3em;
  }
}

.p-home-staff__role-ja>span {
  display: inline-block;
  position: relative;
  z-index: 0;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  margin-right: 1.4rem;
}

.p-home-staff__role-ja>span:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: min(100%, 2.8rem);
  height: 1px;
  background: var(--color-primary);
}

.p-home-staff__text {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 960px) {
  .p-home-staff__text {
    line-height: 1.6666666667;
  }
}

@media screen and (max-width: 960px) {
  .p-home-staff__text {
    line-height: 1.3333333333;
  }
}

@media screen and (max-width: 960px) {
  .p-home-staff__text--pc {
    display: none;
  }
}

@media screen and (min-width: 961px) {
  .p-home-staff__text--sp {
    display: none;
  }
}

/* p-home-loop-slider
------------------------------------------------------------- */
.p-home-loop-slider {
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 20rem;
}

@media screen and (max-width: 960px) {
  .p-home-loop-slider {
    margin-bottom: 13.4rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-loop-slider {
    display: none;
  }
}

.p-home-loop-slider__list {
  animation: loop-slider 40s infinite linear 0.5s both;
  display: flex;
}

.p-home-loop-slider__item {
  width: 16.6666666667vw;
}

@media screen and (max-width: 960px) {
  .p-home-loop-slider__item {
    width: 41.6666666667vw;
  }
}

.p-home-loop-slider__item img {
  display: block;
  width: 100%;
}

@keyframes loop-slider {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* p-home-theater
------------------------------------------------------------- */
.p-home-theater {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding-top: 10rem;
}

.p-home-theater:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 172.9166666667vw;
  background: url(../img/top/bg_footer.png) center bottom no-repeat;
  background-size: contain;
}

@media screen and (max-width: 960px) {
  .p-home-theater:after {
    width: 149.7395833333vw;
    height: 261.0677083333vw;
  }
}

@media screen and (max-width: 960px) {
  .p-home-theater {
    padding-top: 6rem;
  }
}

.p-home-theater__body {
  width: min(100%, 111rem);
  padding-inline: 4rem;
  padding-bottom: 67.8rem;
  margin-inline: auto;
}

@media screen and (max-width: 960px) {
  .p-home-theater__body {
    padding-inline: 8.984375vw;
  }
}

@media screen and (max-width: 576px) {
  .p-home-theater__body {
    padding-inline: 0.6rem;
    padding-bottom: 24.8rem;
  }
}

.p-home-theater__title-main {
  text-align: center;
  margin-bottom: 11rem;
}

@media screen and (max-width: 960px) {
  .p-home-theater__title-main {
    margin-bottom: 4.8rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-theater__title-main {
    width: 11rem;
    margin-inline: auto;
    margin-bottom: 1.8rem;
  }
}

.p-home-theater__table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.p-home-theater__table:not(:last-child) {
  margin-bottom: 14.6rem;
}

@media screen and (max-width: 960px) {
  .p-home-theater__table:not(:last-child) {
    margin-bottom: 12rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-theater__table:not(:last-child) {
    margin-bottom: 7.2rem;
  }
}

.p-home-theater__table tr:first-child th,
.p-home-theater__table tr:first-child td {
  padding-top: 3.3rem;
  padding-bottom: 0.7rem;
}

@media screen and (max-width: 960px) {

  .p-home-theater__table tr:first-child th,
  .p-home-theater__table tr:first-child td {
    padding-top: 0.4rem;
  }
}

@media screen and (max-width: 576px) {

  .p-home-theater__table tr:first-child th,
  .p-home-theater__table tr:first-child td {
    padding-bottom: 0.2rem;
  }
}

.p-home-theater__table th,
.p-home-theater__table td {
  text-align: center;
  padding-block: 4rem;
  padding-inline: 0.5em;
  border-bottom: 1px solid hwb(from var(--color-primary) h w b/0.23);
  line-height: 1.5384615385;
}

@media screen and (max-width: 960px) {

  .p-home-theater__table th,
  .p-home-theater__table td {
    padding-block: 1.9rem;
  }
}

@media screen and (max-width: 576px) {

  .p-home-theater__table th,
  .p-home-theater__table td {
    font-size: 1.3rem;
    padding-block: 2.3rem;
  }
}

@media screen and (max-width: 960px) {
  .p-home-theater__table th {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-theater__table th {
    font-size: 1.1rem;
  }
}

.p-home-theater__area {
  text-align: center;
  font-size: 1.6rem;
  line-height: var(--line-height-sm);
  letter-spacing: 0.5em;
  padding-block: 1.7rem;
  padding-inline: 2rem;
  color: #FFF;
  background: var(--color-primary);
}

@media screen and (max-width: 960px) {
  .p-home-theater__area {
    padding-block: 0.7rem;
  }
}

@media screen and (max-width: 576px) {
  .p-home-theater__area {
    margin-bottom: 2rem;
  }
}

.p-home-theater__copy-right {
  text-align: center;
  font-size: 1.1rem;
  padding-bottom: 1.8rem;
  color: #FFF;
}

@media screen and (max-width: 960px) {
  .p-home-theater__copy-right {
    font-size: 1rem;
  }
}

@media screen and (max-width: 960px) {
  .p-home-theater__copy-right {
    padding-bottom: 0.4rem;
  }
}

/* =============================================================
utility
============================================================= */
/* display
------------------------------------------------------------- */
[class^=u-d-block-] {
  display: none;
}

@media screen and (max-width: 960px) {
  .u-d-none-lg {
    display: none;
  }

  .u-d-block-lg {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-d-none-md {
    display: none;
  }

  .u-d-block-md {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .u-d-none-sm {
    display: none;
  }

  .u-d-block-sm {
    display: block;
  }
}

/* text-align
------------------------------------------------------------- */
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

/* font-weight
------------------------------------------------------------- */
.u-weight-normal {
  font-weight: normal;
}

.u-weight-bold {
  font-weight: bold;
}

/* margin
------------------------------------------------------------- */
.u-mt-05 {
  margin-top: 0.5rem;
}

.u-mt-10 {
  margin-top: 1rem;
}

.u-mt-15 {
  margin-top: 1.5rem;
}

.u-mb-05 {
  margin-bottom: 0.5rem;
}

.u-mb-10 {
  margin-bottom: 1rem;
}

.u-mb-15 {
  margin-bottom: 1.5rem;
}

.u-mb-20 {
  margin-bottom: 2rem;
}

.u-mb-25 {
  margin-bottom: 2.5rem;
}

.u-mb-30 {
  margin-bottom: 3rem;
}