:root {
  --color-main: #f4dc80;
  --color-bg: #982532;
  --color-text: #fff;
  --color-darkred: #8c1f2b;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Shippori Mincho", serif;
  --font-en: "Outfit", sans-serif;
  /*

  .noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

  .shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }


  .outfit-<uniquifier> {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

  */
  --transition-duration: 800ms;
  --base: 400;
  --radius: 10px;
  --duration-transition: 800ms;
}
@media screen and (min-width: 768px) {
  :root {
    --base: 768;
    --radius: 16px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --base: 1440;
  }
}

:where(:focus-visible, :target) {
  scroll-margin-block: 0;
}

html {
  scroll-behavior: smooth;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-serif);
  font-weight: 400;
  transition: background-color var(--duration-transition);
}
body.menu-open {
  overflow: clip;
}
body.bg-unit-intro {
  background-color: var(--color-darkblue);
}
@media screen and (min-width: 1024px) {
  body.menu-open {
    overflow-x: visible;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}
.header .content {
  z-index: 10;
  background-color: var(--color-darkred);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 800ms, opacity 300ms, visibility 300ms;
  transition-timing-function: cubic-bezier(0.65, 0.06, 0.36, 0.95);
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.9);
  opacity: 0;
  box-sizing: border-box;
  height: 100vh;
}
.header .content.open {
  visibility: visible;
  pointer-events: all;
  transform: none;
  opacity: 1;
}
.header .menu {
  padding: calc(24 / var(--base) * 100vw);
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: calc(16 / var(--base) * 100vw);
  overflow-y: auto;
}
.header .list-menu {
  margin: 0 auto;
  width: fit-content;
}
.header .list-menu li {
  text-align: center;
  font-weight: 400;
  font-size: calc(18 / var(--base) * 100vw);
}
.header .list-menu li:not(:last-of-type) {
  margin-bottom: calc(12 / var(--base) * 100vw);
}
.header .list-menu a,
.header .list-menu button {
  display: inline-block;
  padding: calc(4 / var(--base) * 100vw);
  text-decoration: none;
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-size: inherit;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  transition: color var(--duration-transition);
  border-style: none;
  cursor: pointer;
}
.header .list-menu a:hover,
.header .list-menu button:hover {
  color: var(--color-main);
}
.header .list-menu a.preparing,
.header .list-menu button.preparing {
  color: #eee;
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
.header .list-menu a.preparing:hover,
.header .list-menu button.preparing:hover {
  color: #999;
}
.header .list-sns {
  display: flex;
  gap: calc(20 / var(--base) * 100vw);
  justify-content: center;
  margin-top: calc(40 / var(--base) * 100vw);
}
.header .list-sns li {
  margin: 0;
  background-color: #fff;
  border-radius: 300px;
  overflow: hidden;
  width: min(32px, calc(32 / var(--base) * 100vw));
  height: min(32px, calc(32 / var(--base) * 100vw));
}
.header .list-sns li.x {
  background-color: #000;
}
.header .list-sns li.x a {
  background-color: #fff;
  mask-image: url("../images/icon_x.svg");
}
.header .list-sns li.instagram a {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  mask-image: url("../images/icon_instagram.svg");
}
.header .list-sns a {
  display: block;
  width: min(32px, calc(32 / var(--base) * 100vw));
  height: min(32px, calc(32 / var(--base) * 100vw));
  mask-size: cover;
  text-indent: -1000px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header .menu {
    padding: calc(24 / var(--base) * 100vw);
    font-size: calc(20 / var(--base) * 100vw);
  }
  .header .list-menu .item:not(:last-of-type) {
    margin-bottom: calc(20 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .header {
    margin: 0 auto;
    padding: 0;
    transition: background-color 300ms;
    background-color: transparent;
    inset: 0 0 auto 0;
    background-color: var(--color-darkred);
  }
  .header .content {
    display: block;
    margin: 0 auto;
    padding: 0 0;
    height: auto;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
  }
  .header .menu {
    margin: 0 calc(100 / 1440 * 100vw);
    padding: 0;
    overflow: visible;
  }
  .header .list-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: min(80px, 80 / 1440 * 100vw);
    width: 100%;
    gap: min(32px, 32 / 1240 * 100vw);
  }
  .header .list-menu li {
    margin: 0;
    position: relative;
    font-size: 1rem;
  }
  .header .list-menu li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .header .list-menu button,
  .header .list-menu a {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: var(--color-main);
  }
  .header .list-menu button:hover,
  .header .list-menu a:hover {
    color: var(--color-orange);
  }
  .header .list-sns {
    display: flex;
    gap: min(24px, calc(24 / var(--base) * 100vw));
    align-items: center;
    margin-top: 0;
  }
  .header .list-sns li {
    margin: 0;
    background-color: transparent;
    transition: background-color var(--duration-transition);
  }
  .header .list-sns li.x:hover {
    background-color: #fff;
  }
  .header .list-sns li.x:hover a {
    background-color: var(--color-emerald);
  }
  .header .list-sns a {
    transition: background-color var(--duration-transition);
  }
  .header.open {
    background-color: var(--color-bg);
  }
}

.menu-sw {
  margin: 0;
  position: absolute;
  top: calc(10 / var(--base) * 100vw);
  right: calc(10 / var(--base) * 100vw);
  width: calc(40 / var(--base) * 100vw);
  height: calc(40 / var(--base) * 100vw);
  z-index: 20;
  overflow: hidden;
}
.menu-sw button {
  padding: 0;
  display: block;
  border-style: none;
  border-radius: 0;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--color-darkred);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: background-color 500ms;
  overflow: hidden;
  cursor: pointer;
}
.menu-sw span {
  position: absolute;
  width: calc(20 / var(--base) * 100vw);
  height: calc(20 / var(--base) * 100vw);
  top: calc(10 / var(--base) * 100vw);
  left: calc(10 / var(--base) * 100vw);
}
.menu-sw span::before, .menu-sw span::after,
.menu-sw span i {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: calc(2 / var(--base) * 100vw);
  background-color: #fff;
  margin: calc(-1 / var(--base) * 100vw) 0 0 0;
  transition: background-color 500ms, transform 500ms;
}
.menu-sw span::before {
  transform: translate(0, calc(-7 / var(--base) * 100vw));
  transition: transform 500ms;
}
.menu-sw span::after {
  transform: translate(0, calc(7 / var(--base) * 100vw));
  transition: transform 500ms;
}
.menu-sw.open button {
  background-color: #fff;
}
.menu-sw.open span::before {
  transform: translate(0, 0) rotate(45deg);
  background-color: var(--color-darkred);
}
.menu-sw.open span i {
  transform: rotate(-45deg);
  background-color: var(--color-darkred);
}
.menu-sw.open span::after {
  transform: translate(0, 0) rotate(45deg);
  background-color: var(--color-darkred);
}
@media screen and (min-width: 1024px) {
  .menu-sw {
    display: none;
  }
}

.main {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .main {
    padding-top: min(80px, 80 / 1440 * 100vw);
  }
}

.footer {
  margin: min(16px, calc(16 / var(--base) * 100vw)) calc(24 / var(--base) * 100vw) 0 calc(24 / var(--base) * 100vw);
  padding: min(24px, calc(24 / var(--base) * 100vw)) 0;
  border-top: 1px solid #fff;
}
.footer p {
  text-align: center;
  line-height: 1.5;
  font-size: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 2em 0;
    margin-left: auto;
    margin-right: auto;
    width: 784px;
  }
  .footer p {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 640px) {
  .xs-only {
    display: none;
  }
}

.sm-only {
  display: none;
}
@media screen and (min-width: 640px) {
  .sm-only {
    display: inline;
  }
}

.md-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-only {
    display: inline;
  }
}

.ts-only {
  display: block;
}
@media screen and (min-width: 1024px) {
  .ts-only {
    display: none;
  }
}

.lg-only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg-only {
    display: inline;
  }
}

.b2t {
  transition: translate var(--duration-transition), opacity var(--duration-transition);
  translate: 0 20px;
  opacity: 0;
}
.b2t.open {
  translate: 0 0;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .b2t {
    translate: 0 40px;
  }
}

p {
  margin-bottom: 1em;
  font-size: calc(14 / var(--base) * 100vw);
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
}
p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

figure {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
}

/* section */
.unit {
  padding: calc(64 / var(--base) * 100vw) 0 calc(58 / var(--base) * 100vw) 0;
}
@media screen and (min-width: 1024px) {
  .unit {
    padding: calc(80 / var(--base) * 100vw) 0;
  }
}

/* youtube */
#overlay {
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  min-height: 700px;
  overflow: hidden;
}

.youtube_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 51;
}
.youtube_wrapper .youtube_stage {
  width: 100%;
  padding: 50px 10px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.youtube_wrapper .youtube_inner {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  background: #000;
}
.youtube_wrapper .youtube_close {
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -30px;
  right: 0;
  white-space: nowrap;
}
.youtube_wrapper .youtube_close span {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
}
.youtube_wrapper .youtube_close span::before, .youtube_wrapper .youtube_close span::after {
  content: "";
  width: 80%;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.youtube_wrapper .youtube_close span::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.youtube_wrapper .youtube_close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.youtube_wrapper .youtube_player {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 640px) {
  .youtube_wrapper .youtube_close {
    width: 50px;
    height: 50px;
    top: -60px;
  }
}
@media screen and (min-width: 768px) {
  .youtube_wrapper .youtube_stage {
    max-width: 130vh;
    width: 100%;
  }
  .youtube_wrapper .youtube_close {
    width: 60px;
    height: 60px;
    top: -70px;
  }
}

/* ----------------- 
titletitle
----------------- */
.title-mid {
  margin: 0 auto 1.66em auto;
  padding: 0.5em 1em 0.65em 1em;
  line-height: 1;
  vertical-align: top;
  color: #fff;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 400;
  border: 1px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .title-mid {
    font-size: 2rem;
  }
}

/* ----------------- 
linklink
----------------- */
a {
  text-decoration: underline;
  color: var(--color-text);
}

button {
  cursor: pointer;
}

dl,
dt,
dd,
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* for inline */
.table-schedule {
  padding-left: calc(24 / var(--base) * 100vw);
  overflow-x: scroll;
}
.table-schedule .content {
  display: table;
  padding: calc(16 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  margin-right: calc(24 / var(--base) * 100vw);
  background-color: var(--color-darkred);
}
.table-schedule table {
  margin: 0;
  width: 100%;
  position: relative;
  border-collapse: collapse;
  color: var(--color-text);
}
.table-schedule th {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 0.875rem;
  color: var(--color-text);
  vertical-align: middle;
}
.table-schedule td {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 0.875rem;
  text-align: center;
  color: var(--color-text);
  vertical-align: middle;
}
.table-schedule td:nth-of-type(3) {
  text-align: left;
}
.table-schedule p {
  line-height: 1.6;
  font-size: 0.875rem;
  font-weight: 400;
}
.table-schedule p:not(:last-of-type) {
  margin-bottom: 1em;
}
.table-schedule a {
  color: #fff;
  text-decoration: none;
}
.table-schedule a:hover {
  text-decoration: underline;
}
.table-schedule thead th {
  padding: 10px 20px 10px 20px;
  text-align: left;
  color: #fff;
}
.table-schedule tbody th {
  text-align: left;
  font-weight: 400;
  border-top: 1px solid #fff;
}
.table-schedule tbody td {
  text-align: left;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .table-schedule {
    margin: calc(29 / var(--base) * 100vw) 0 0 0;
    padding: 0 calc(40 / var(--base) * 100vw) 20px calc(40 / var(--base) * 100vw);
  }
  .table-schedule .content {
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .table-schedule .content::after {
    display: none;
  }
  .table-schedule table {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .table-schedule {
    padding: 0 calc(60 / var(--base) * 100vw) 20px calc(60 / var(--base) * 100vw);
  }
  .table-schedule th,
  .table-schedule td {
    font-size: 1rem;
  }
  .table-schedule tbody th {
    width: 10%;
  }
  .table-schedule tbody td:nth-of-type(1) {
    width: 20%;
  }
  .table-schedule tbody td:nth-of-type(2) {
    width: 20%;
  }
  .table-schedule tbody td:nth-of-type(3) {
    white-space: wrap;
  }
  .table-schedule p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .table-schedule {
    margin: 0 auto;
    padding: 0;
    width: min(992px, calc(992 / var(--base) * 100vw));
    overflow-x: hidden;
  }
  .table-schedule .content {
    padding: 24px 32px;
    display: block;
  }
}

.fx-opacity {
  opacity: 0;
  transition: opacity calc(var(--duration-transition) / 2);
}
.fx-opacity.on {
  opacity: 1;
}

.fx-b2t {
  opacity: 0;
  translate: 0 2em;
  transition: opacity var(--duration-transition), translate var(--duration-transition);
}
.fx-b2t.on {
  opacity: 1;
  translate: none;
}

.unit-top {
  display: grid;
  padding: calc(32 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(35 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
}
.unit-top .content {
  display: contents;
}
.unit-top .poster {
  grid-row: 1;
}
.unit-top .page-title {
  margin: 16px 0;
  padding: 20px 0 24px 0;
  grid-row: 2;
  text-align: center;
  background-color: var(--color-darkred);
  position: relative;
}
.unit-top .page-title::before, .unit-top .page-title::after {
  display: block;
  content: "";
  width: calc(100% + 16px);
  height: calc(100% - 8px);
  border: 1px solid var(--color-main);
  position: absolute;
  inset: 2px auto auto -4px;
}
.unit-top .page-title::after {
  border-width: 1.5px;
  inset: 6px auto auto -8px;
}
.unit-top .page-title p {
  font-size: 0.625rem;
  text-align: center;
}
.unit-top .page-title h1 {
  font-weight: 600;
}
.unit-top .theaters {
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-weight: 900;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}
.unit-top .text a,
.unit-top .text b {
  font-family: var(--font-sans);
  font-weight: 900;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .unit-top {
    padding: calc(40 / var(--base) * 100vw) calc(64 / var(--base) * 100vw);
  }
  .unit-top .page-title {
    margin: 16px 0;
    padding: 24px 0 28px 0;
    grid-row: 2;
  }
  .unit-top .page-title p {
    font-size: 1.2rem;
    text-align: center;
  }
  .unit-top .page-title h1 {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .unit-top {
    display: block;
    padding: min(32px, calc(32 / var(--base) * 100vw)) 0 min(80px, calc(80 / var(--base) * 100vw)) 0;
    margin: 0 auto;
    width: min(1200px, calc(1200 / var(--base) * 100vw));
  }
  .unit-top .content {
    display: grid;
    grid-template-columns: min(576px, 576 / 1440 * 100vw) 1fr;
    gap: 0 min(48px, calc(48 / var(--base) * 100vw));
    align-items: center;
  }
  .unit-top .theaters {
    margin: 1em 0;
    font-size: 1.75rem;
  }
  .unit-top .text p {
    font-size: clamp(20px, 24 / var(--base) * 100vw, 1.5rem);
  }
}

.unit-about {
  padding: 0;
}
.unit-about .content {
  margin: calc(56 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
}
.unit-about .title {
  font-size: 2rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  line-height: 0.9;
  font-weight: 600;
}
.unit-about .title .title-sub {
  font-size: 1rem;
}
.unit-about p {
  color: #fff;
}
.unit-about .awards {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
}
.unit-about .billing {
  margin-top: 19px;
  padding: 13px 0;
  border-top: 1px solid #fff;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .unit-about .photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .unit-about .content {
    margin: min(80px, calc(80 / var(--base) * 100vw)) calc(64 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .unit-about .content {
    margin: min(80px, calc(80 / var(--base) * 100vw)) auto;
    width: 784px;
  }
  .unit-about .title {
    margin-bottom: 0.8em;
    font-size: 3rem;
    line-height: 0.7;
  }
  .unit-about .title .title-sub {
    font-size: 1.5rem;
  }
  .unit-about p {
    font-size: 1rem;
  }
  .unit-about .awards {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .unit-about .billing {
    margin-top: 19px;
    padding: 19px 0;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.unit-director {
  padding: calc(56 / var(--base) * 100vw) 0;
  background-color: var(--color-darkred);
}
.unit-director .content {
  display: grid;
  margin: 0 calc(24 / var(--base) * 100vw);
  justify-content: center;
}
.unit-director .photo {
  margin: 0 auto 22px auto;
  width: 260px;
  grid-row: 1;
}
.unit-director .name {
  grid-row: 2;
  margin-bottom: calc(16 / var(--base) * 100vw);
  font-size: 1.5rem;
  text-align: center;
}
.unit-director .name .ja {
  display: block;
  text-align: center;
}
.unit-director .name .en {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .unit-director {
    padding: min(80px, calc(80 / var(--base) * 100vw)) 0;
  }
  .unit-director .content {
    grid-template-columns: min(268px, 268 / 784 * 100vw) 1fr;
    gap: 0 min(48px, 48 / 784 * 100vw);
    margin: 0 calc(64 / var(--base) * 100vw);
    justify-content: center;
  }
  .unit-director .name {
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .unit-director .photo {
    margin: 0;
    width: auto;
    grid-column: 1;
    grid-row: 2;
  }
  .unit-director p {
    grid-column: 2;
    grid-row: 2;
  }
}
@media screen and (min-width: 1024px) {
  .unit-director .content {
    margin: 0 auto;
    width: 784px;
  }
}

.unit-theaters {
  padding: calc(64 / var(--base) * 100vw) 0;
}
@media screen and (min-width: 768px) {
  .unit-theaters {
    padding: min(80px, calc(80 / var(--base) * 100vw)) 0;
  }
}/*# sourceMappingURL=style.css.map */