@charset "UTF-8";
:root {
  --color-bg: #02150c;
  --color-main: #02150c;
  --color-text: #111;
  --color-lightgreen: #536705;
  --font-sans: "Noto Sans JP", serif;
  --font-serif: "Noto Serif JP", serif;
  --font-lora: "Lora", serif;
  --base: 375;
  --radius-photo: 15px;
  --duration-transition: 800ms;
}
@media screen and (min-width: 768px) {
  :root {
    --base: 768;
    --radius-photo: 30px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --base: 1440;
  }
}

/* rest */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* -----------------------------------------
body
--------------------------------------------*/
html {
  font-size: 62.5%;
  font-family: var(--font-sans-serif);
  font-weight: 400;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: min(80px, 80 / var(--base) * 100cqw);
  }
}

#body_wrapper {
  position: relative;
  overflow: hidden;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* -----------------------------------------
common
--------------------------------------------*/
/* --- clearfix --- */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

/* css sprite */
.s {
  background: url(../images/sprite@2x.png) no-repeat 0 0;
  background-size: 500px 500px;
  text-indent: 200%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  border-style: none;
}

.sb::before,
.sa::after {
  content: "";
  background-image: url(../images/sprite@2x.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 500px 500px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  border-style: none;
}

.nobi {
  /*
  margin-right: 5px;
  letter-spacing: -5px;
  */
  transform: scale(2, 1);
  transform-origin: top left;
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 1em;
}

/* ----------------- 
reset
----------------- */
@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;
  }
}

em {
  font-style: normal;
}

b {
  font-weight: 700;
  color: inherit;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.img-resp {
  width: 100%;
  height: auto;
}

.svg-resp {
  width: 100%;
  height: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* table */
.table_table table {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .table_table th,
  .table_table td {
    text-align: center;
    font-size: 1.6rem;
  }
}

.table_dl {
  display: block;
}
.table_dl table {
  width: 100%;
}
.table_dl thead {
  display: none;
}
.table_dl tbody,
.table_dl tr {
  display: block;
}
.table_dl th {
  padding: 0 0 0.4em 0;
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
  font-weight: normal;
}
.table_dl td {
  padding: 0 0 1em 0;
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
}
@media screen and (min-width: 640px) {
  .table_dl table {
    display: table;
    width: 100%;
  }
  .table_dl thead,
  .table_dl tbody {
    display: table-row-group;
  }
  .table_dl tr {
    display: table-row;
  }
  .table_dl th {
    padding: 15px 0 10px 10px;
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 30%;
  }
  .table_dl td {
    padding: 15px 10px 10px 10px;
    display: table-cell;
    vertical-align: top;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .table_dl {
    margin: 0 auto;
  }
  .table_dl th,
  .table_dl td {
    font-size: 1.4rem;
  }
}

#bg_black {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}

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

body {
  margin: 0;
  padding: 0;
  font-size: calc(14 / var(--base) * 100cqw);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-serif);
  font-weight: 400;
  position: relative;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}
.header .content {
  background-color: #eaeaea;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  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);
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.9);
  opacity: 0;
}
.header .content.open {
  visibility: visible;
  pointer-events: all;
  transform: none;
  opacity: 1;
}
.header .menu {
  padding: 20px;
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: 14px;
  overflow-y: auto;
}
.header .list-menu {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.header .list-menu .item {
  font-size: calc(24 / var(--base) * 100cqw);
  font-weight: 400;
}
.header .list-menu a {
  display: block;
  padding: 10px 10px;
  text-decoration: none;
  color: var(--color-main);
  transition: color var(--duration-transition);
}
.header .list-menu a:hover {
  color: var(--color-lightgreen);
}
.header .list-menu a.preparing {
  color: var(--color-text);
  cursor: none;
  opacity: 0.5;
}
.header .list-menu .trailer {
  padding: 10px 10px;
  letter-spacing: 0.03em;
  font-family: var(--font-serif);
  border-style: none;
  font-weight: 400;
  font-size: calc(24 / var(--base) * 100cqw);
  background-color: transparent;
  cursor: pointer;
  color: var(--color-main);
  transition: color var(--duration-transition);
}
.header .list-menu .trailer:hover {
  color: var(--color-lightgreen);
}
.header .list-sns {
  display: flex;
  justify-content: start;
  margin-top: calc(40 / var(--base) * 100cqw);
}
.header .list-sns .item-sns {
  margin: 0 10px;
}
.header .list-sns .svg {
  width: 36px;
  height: 36px;
  fill: var(--color-main);
  transition: fill var(--duration-transition);
}
.header .list-sns a {
  padding: 0;
}
.header .list-sns a:hover .svg {
  fill: var(--color-lightgreen);
}
@media screen and (min-width: 1024px) {
  .header {
    margin: 0 auto;
    padding: 0;
    transition: background-color 300ms;
    background-color: transparent;
  }
  .header .content {
    display: block;
    margin: 0 auto;
    padding: 0 min(100px, 100 / var(--base) * 100cqw);
    height: min(80px, 80 / var(--base) * 100cqw);
    width: min(1440px, 1440 / var(--base) * 100cqw);
    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 {
    padding: 0;
  }
  .header .list-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: min(80px, 80 / var(--base) * 100cqw);
    width: 100%;
  }
  .header .list-menu .item {
    margin: 0;
    font-size: min(20px, 20 / var(--base) * 100cqw);
  }
  .header .list-menu .item:not(:last-of-type) {
    border-bottom-style: none;
  }
  .header .list-menu .item a {
    color: color-mix(in srgb, #fff 10%, transparent 80%);
  }
  .header .list-menu .item a:hover {
    color: #fff;
  }
  .header .list-menu .trailer {
    padding: 10px 10px;
    font-size: min(20px, 20 / var(--base) * 100cqw);
    background-color: transparent;
    cursor: pointer;
    color: color-mix(in srgb, #fff 10%, transparent 80%);
    transition: color var(--duration-transition);
  }
  .header .list-menu .trailer:hover {
    color: #fff;
  }
  .header .list-sns {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 0;
    height: 100%;
  }
  .header .list-sns .item-sns {
    margin: 0 10px;
  }
  .header .list-sns .svg {
    fill: color-mix(in srgb, #fff 10%, transparent 80%);
    transition: fill var(--duration-transition);
  }
  .header .list-sns a {
    padding: 0;
  }
  .header .list-sns a:hover .svg {
    fill: #fff;
  }
  .header.open {
    background-color: #fff;
  }
  .header.open .list-menu a {
    color: var(--color-text);
  }
  .header.open .list-menu a:hover {
    color: var(--color-lightgreen);
  }
  .header.open .list-menu .trailer {
    color: var(--color-text);
  }
  .header.open .list-menu .trailer:hover {
    color: var(--color-lightgreen);
  }
  .header.open .list-sns .svg {
    fill: var(--color-main);
  }
  .header.open .list-sns a {
    padding: 0;
  }
  .header.open .list-sns a:hover .svg {
    fill: var(--color-lightgreen);
  }
}
@media screen and (min-width: 1440px) {
  .header {
    margin: 0 auto;
  }
}

.main {
  overflow: hidden;
}

.menu-sw {
  margin: 0;
  position: fixed;
  top: 10px;
  right: 2.6666666667vw;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  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-main);
  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: 5.3333333333vw;
  height: 5.3333333333vw;
  top: 2.6666666667vw;
  left: 2.6666666667vw;
}
.menu-sw span::before, .menu-sw span::after,
.menu-sw span i {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 0.5333333333vw;
  background-color: #fff;
  margin: -0.2666666667vw 0 0 0;
  transition: background-color 500ms, transform 500ms;
}
.menu-sw span::before {
  transform: translate(0, -1.8666666667vw);
  transition: transform 500ms;
}
.menu-sw span::after {
  transform: translate(0, 1.8666666667vw);
  transition: transform 500ms;
}
.menu-sw--open span::before {
  transform: translate(0, 0) rotate(45deg);
}
.menu-sw--open span i {
  transform: rotate(-45deg);
}
.menu-sw--open span::after {
  transform: translate(0, 0) rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .menu-sw {
    display: none;
  }
}

.footer .footer-main {
  padding: 50px 0;
  background-image: -webkit-image-set(url(../images/footer_bg.webp) type("image/webp"), url(../images/footer_bg.avif) type("image/avif"));
  background-image: image-set(url(../images/footer_bg.webp) type("image/webp"), url(../images/footer_bg.avif) type("image/avif"));
  background-size: cover;
}
.footer .theater {
  margin: 0 calc(32 / var(--base) * 100cqw);
  filter: drop-shadow(0 0 20px #000);
}
.footer .copyright {
  padding: calc(21 / var(--base) * 100cqw) 0;
  text-align: center;
  color: var(--color-text);
  background-color: #fff;
  font-size: calc(14 / var(--base) * 100cqw);
}
@media screen and (min-width: 768px) {
  .footer .footer-main {
    padding: 50px 0;
    background-image: -webkit-image-set(url(../images/footer_bg_lg.webp) type("image/webp"), url(../images/footer_bg_lg.avif) type("image/avif"));
    background-image: image-set(url(../images/footer_bg_lg.webp) type("image/webp"), url(../images/footer_bg_lg.avif) type("image/avif"));
    background-size: cover;
  }
  .footer .title {
    margin: 0 auto calc(16 / var(--base) * 100cqw) auto;
    width: calc(456 / var(--base) * 100cqw);
  }
  .footer .theater {
    margin: 0 auto;
    width: calc(450 / var(--base) * 100cqw);
    filter: drop-shadow(0 0 10px #000);
  }
  .footer .copyright {
    padding: calc(21 / var(--base) * 100cqw) 0;
    text-align: center;
    color: var(--color-text);
    background-color: #fff;
    font-size: min(14px, 14 / var(--base) * 100cqw);
  }
}

_:-ms-lang(x)::-ms-backdrop,
.selector {
  /* IE11 のみ適用される */
}

p {
  font-size: calc(14 / var(--base) * 100cqw);
  line-height: 2;
  color: #fff;
  text-align: justify;
}
p:not(:last-of-type) {
  margin-bottom: 1em;
}
@media screen and (min-width: 1024px) {
  p {
    font-size: min(16px, 16 / var(--base) * 100cqw);
  }
}

.name {
  color: #fff;
  margin-bottom: calc(16 / var(--base) * 100cqw);
  text-align: center;
  font-family: var(--font-sans);
  font-size: calc(20 / var(--base) * 100cqw);
  line-height: 1.6;
}
.name .sub {
  display: block;
  font-size: calc(12 / var(--base) * 100cqw);
}
@media screen and (min-width: 768px) {
  .name .sub {
    display: inline;
  }
}

.nobashi {
  margin-left: 0em;
  transform: scale(2, 1);
  transform-origin: left center;
  display: inline-block;
  width: 2em;
}

/* main */
/* section */
.unit {
  padding: calc(69 / var(--base) * 100cqw) 0 calc(72 / var(--base) * 100cqw) 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .unit {
    padding: calc(55 / var(--base) * 100cqw) 0;
  }
}
@media screen and (min-width: 1024px) {
  .unit {
    padding: min(100px, 100 / var(--base) * 100cqw) 0;
  }
}

.content-block, .reviews__note, .unit-filmmaker .content, .unit-intro .content {
  margin: 0 8vw;
}
@media screen and (min-width: 768px) {
  .content-block, .reviews__note, .unit-filmmaker .content, .unit-intro .content {
    margin: 0 5.2083333333vw;
  }
}
@media screen and (min-width: 1024px) {
  .content-block, .reviews__note, .unit-filmmaker .content, .unit-intro .content {
    margin: 0 auto;
    width: min(1240px, 1240 / var(--base) * 100cqw);
  }
}

/* ----------------- 
titletitle
----------------- */
.title-mid {
  margin-bottom: calc(36 / var(--base) * 100cqw);
  color: #fff;
  text-align: center;
  font-family: var(--font-lora);
  line-height: 1.5;
  font-weight: 400;
  font-size: calc(32 / var(--base) * 100cqw);
  letter-spacing: 0.03em;
}
.title-mid.black {
  color: var(--color-text);
}
.title-mid.shadow {
  text-shadow: 0 0 20px black;
}
@media screen and (min-width: 768px) {
  .title-mid.intro {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .title-mid {
    font-size: min(48px, 48 / var(--base) * 100cqw);
    margin-bottom: min(52px, 52 / var(--base) * 100cqw);
  }
}

.lead-1 {
  font-family: var(--font-sans);
  line-height: 1.5;
  font-weight: 700;
  font-size: calc(24 / var(--base) * 100cqw);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .lead-1 {
    font-size: calc(24 / var(--base) * 100cqw);
  }
}
@media screen and (min-width: 1024px) {
  .lead-1 {
    font-size: min(32px, 32 / var(--base) * 100cqw);
  }
}

.lead-2 {
  font-family: var(--font-sans);
  line-height: 1.5;
  font-weight: 700;
  font-size: calc(16 / var(--base) * 100cqw);
  color: #fff;
}
.lead-2:not(:last-of-type) {
  margin-bottom: calc(28 / var(--base) * 100cqw);
}
@media screen and (min-width: 768px) {
  .lead-2 {
    font-size: calc(18 / var(--base) * 100cqw);
  }
}
@media screen and (min-width: 1024px) {
  .lead-2 {
    font-size: min(24px, 24 / var(--base) * 100cqw);
  }
}

/* ----------------- 
linklink
----------------- */
/* for inline */
/* 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;
  }
}

.flyer-oda2025 {
  margin: min(50px, 50 / var(--base) * 100cqw) min(20px, 20 / var(--base) * 100cqw);
  background-color: #fff;
  position: relative;
}
.flyer-oda2025 .para-close {
  margin: 0;
  padding: 0;
  width: calc(30 / var(--base) * 100cqw);
  height: calc(30 / var(--base) * 100cqw);
  position: absolute;
  top: calc(-30 / var(--base) * 100cqw);
  right: 0;
  white-space: nowrap;
}
.flyer-oda2025 .para-close .button-close {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  text-indent: -1000px;
  overflow: hidden;
  background-color: transparent;
  border-style: none;
}
.flyer-oda2025 .para-close .button-close::before, .flyer-oda2025 .para-close .button-close::after {
  content: "";
  width: 80%;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.flyer-oda2025 .para-close .button-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.flyer-oda2025 .para-close .button-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.flyer-oda2025 .flyer {
  display: grid;
  padding: min(20px, 20 / var(--base) * 100cqw);
  grid-template-columns: auto;
  grid-template-rows: auto auto;
  gap: min(20px, 20 / var(--base) * 100cqw);
  overflow: auto;
  height: calc(100vh - min(100px, 100 / var(--base) * 100cqw));
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .flyer-oda2025 {
    margin: min(60px, 60 / var(--base) * 100cqw) min(40px, 40 / var(--base) * 100cqw);
  }
  .flyer-oda2025 .para-close {
    width: calc(40 / var(--base) * 100cqw);
    height: calc(40 / var(--base) * 100cqw);
    top: calc(-40 / var(--base) * 100cqw);
    right: calc(0 / var(--base) * 100cqw);
  }
  .flyer-oda2025 .flyer {
    padding: min(20px, 20 / var(--base) * 100cqw);
    gap: min(20px, 20 / var(--base) * 100cqw);
    height: calc(100vh - min(120px, 120 / var(--base) * 100cqw));
  }
}
@media screen and (min-width: 1024px) {
  .flyer-oda2025 {
    margin: auto min(100px, 100 / var(--base) * 100cqw);
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
  .flyer-oda2025 .para-close {
    width: min(80px, 80 / var(--base) * 100cqw);
    height: min(80px, 80 / var(--base) * 100cqw);
    top: min(-40px, -40 / var(--base) * 100cqw);
    right: min(-80px, -80 / var(--base) * 100cqw);
  }
  .flyer-oda2025 .flyer {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    padding: min(20px, 20 / var(--base) * 100cqw);
    gap: min(20px, 20 / var(--base) * 100cqw);
    height: auto;
  }
}

.fx-b2t {
  opacity: 0;
  translate: 0 calc(-30 / var(--base) * 100cqw);
  transition: opacity var(--duration-transition), translate var(--duration-transition);
  transition-delay: 200ms;
}
.fx-b2t.on {
  opacity: 1;
  translate: 0 0;
}

.fx-opacity {
  opacity: 0;
  scale: 1.2;
  transition: opacity var(--duration-transition), scale var(--duration-transition);
}
.fx-opacity.on {
  opacity: 1;
  scale: 1;
}

.t {
  background-color: #000;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  justify-content: center;
  height: 100vh;
  font-family: serif;
}
.t__poster {
  margin: 0 0 20px 0;
}
.t__title {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}
.t__title__lead {
  line-height: 1.4;
  margin-bottom: 10px;
  display: block;
}
.t__title__main {
  line-height: 1.3;
  display: block;
  font-size: 32px;
}
.t__comment {
  margin: 0 15px 20px 15px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.t__theater {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-family: sans-serif;
}
.t__x__link {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 36px;
  height: 36px;
}
.t__x__svg {
  margin: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  fill: #fff;
}
.t__scomment {
  margin: 32px 5.3333333333vw 8px 5.3333333333vw;
  padding: 5.3333333333vw;
  border: 1px solid #fff;
}
.t__scomment__para {
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}
.t__scomment__by {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
  color: #fff;
  text-align: right;
  font-size: 16px;
}
.t__scomment__by::before {
  margin: 0 8px 0 0;
  content: "";
  width: 32px;
  height: 1px;
  background-color: #fff;
}
.t__scomment__by__role {
  font-size: 12px;
}
.t__trailer {
  margin: 0 5.3333333333vw;
  position: relative;
}
.t__trailer__content {
  margin: 50px 0;
  padding: 0 0 56.25% 0;
  width: 100%;
  position: relative;
  background: #000;
}
.t__trailer iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .t__poster {
    margin: 0 auto 30px auto;
    max-width: 900px;
  }
  .t__title__lead {
    font-size: 20px;
  }
  .t__title__main {
    font-size: 50px;
  }
  .t__comment {
    font-size: 16px;
  }
  .t__theater {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .t__scomment {
    margin: 40px auto 8px auto;
    width: 900px;
    padding: 40px;
    box-sizing: border-box;
  }
  .t__scomment__para {
    font-size: 24px;
  }
  .t__scomment__by {
    font-size: 24px;
  }
  .t__scomment__by__role {
    font-size: 16px;
  }
}

.t2 {
  background-color: #000;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  justify-content: center;
  height: 100vh;
  font-family: serif;
}
.t2__poster {
  margin: 0 0 20px 0;
}
.t2__title {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}
.t2__title__lead {
  line-height: 1.4;
  margin-bottom: 10px;
  display: block;
}
.t2__title__main {
  line-height: 1.3;
  display: block;
  font-size: 32px;
}
.t2__comment {
  margin: 0 15px 20px 15px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.t2__theater {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-family: sans-serif;
}
.t2__x__link {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 36px;
  height: 36px;
}
.t2__x__svg {
  margin: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  fill: #fff;
}
.t2__trailer {
  margin: 0 5.3333333333vw;
  position: relative;
}
.t2__trailer__content {
  margin: 50px 0;
  padding: 0 0 56.25% 0;
  width: 100%;
  position: relative;
  background: #000;
}
.t2__trailer iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .t2__poster {
    margin: 0 auto 30px auto;
    max-width: 900px;
  }
  .t2__title__lead {
    font-size: 20px;
  }
  .t2__title__main {
    font-size: 50px;
  }
  .t2__comment {
    font-size: 16px;
  }
  .t2__theater {
    font-size: 24px;
  }
}

.top {
  padding: 0;
  position: relative;
}
.top .content {
  margin: 0;
  position: relative;
  z-index: 2;
}
.top .title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  filter: drop-shadow(0 0 20px #000);
}
.top .copy {
  margin: 0;
  width: calc(24 / var(--base) * 100cqw);
  position: absolute;
  top: calc(216 / var(--base) * 100cqw);
  right: calc(22 / var(--base) * 100cqw);
}
.top .theater {
  position: absolute;
  top: calc(450 / var(--base) * 100cqw);
  left: calc(32 / var(--base) * 100cqw);
  right: calc(32 / var(--base) * 100cqw);
  filter: drop-shadow(0 0 20px #000);
}
.top .retrospective {
  position: absolute;
  top: calc(555 / var(--base) * 100cqw);
  left: calc(32 / var(--base) * 100cqw);
  right: calc(32 / var(--base) * 100cqw);
  border: 1px solid #fff;
}
.top .retrospective a {
  display: block;
  padding: calc(8 / var(--base) * 100cqw) calc(16 / var(--base) * 100cqw);
  text-decoration: none;
  color: #fff;
}
.top .retrospective p {
  color: #fff;
  filter: drop-shadow(0 0 20px #000);
  font-size: calc(20 / var(--base) * 100cqw);
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}
.top .retrospective p .note {
  font-size: calc(14 / var(--base) * 100cqw);
}
.top .director-cast {
  position: absolute;
  top: calc(668 / var(--base) * 100cqw);
  left: 0;
  right: 0;
  filter: drop-shadow(0 0 20px #000);
  text-align: center;
}
.top .director-cast img {
  width: calc(148 / var(--base) * 100cqw);
}
.top .staff {
  position: absolute;
  top: calc(707 / var(--base) * 100cqw);
  left: 0;
  right: 0;
  filter: drop-shadow(0 0 20px #000);
  text-align: center;
}
.top .staff img {
  width: calc(335 / var(--base) * 100cqw);
}
.top .bg {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top {
    overflow: hidden;
  }
  .top .title {
    margin: calc(-40 / var(--base) * 100cqw) 0 0 calc(-236 / var(--base) * 100cqw);
    width: calc(1240 / var(--base) * 100cqw);
    filter: drop-shadow(0 0 10px #000);
  }
  .top .copy {
    top: calc(430 / var(--base) * 100cqw);
    right: calc(192 / var(--base) * 100cqw);
  }
  .top .theater {
    top: calc(660 / var(--base) * 100cqw);
    left: calc(72 / var(--base) * 100cqw);
    right: calc(72 / var(--base) * 100cqw);
    filter: drop-shadow(0 0 10px #000);
  }
  .top .retrospective {
    top: calc(755 / var(--base) * 100cqw);
    left: calc(72 / var(--base) * 100cqw);
    right: calc(72 / var(--base) * 100cqw);
  }
  .top .retrospective a {
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color var(--duration-transition);
  }
  .top .retrospective a:hover {
    color: var(--color-text);
    background-color: rgba(0, 0, 0, 0.8);
  }
  .top .retrospective p {
    font-size: calc(16 / var(--base) * 100cqw);
  }
  .top .retrospective p .note {
    font-size: calc(12 / var(--base) * 100cqw);
  }
  .top .director-cast {
    top: calc(810 / var(--base) * 100cqw);
  }
  .top .director-cast img {
    width: calc(198 / var(--base) * 100cqw);
    filter: drop-shadow(0 0 10px #000);
  }
  .top .staff {
    top: calc(860 / var(--base) * 100cqw);
  }
  .top .staff img {
    width: calc(447 / var(--base) * 100cqw);
    filter: drop-shadow(0 0 10px #000);
  }
  .top .bg {
    height: calc(1024 / var(--base) * 100cqw);
  }
  .top .bg img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .top {
    height: calc(1000 / var(--base) * 100cqw);
  }
  .top .title {
    margin: 0 auto;
    width: calc(1240 / var(--base) * 100cqw);
  }
  .top .copy {
    top: calc(380 / var(--base) * 100cqw);
    right: calc(170 / var(--base) * 100cqw);
    width: calc(27 / var(--base) * 100cqw);
  }
  .top .theater {
    top: calc(624 / var(--base) * 100cqw);
    left: calc(400 / var(--base) * 100cqw);
    right: calc(400 / var(--base) * 100cqw);
  }
  .top .retrospective {
    top: calc(705 / var(--base) * 100cqw);
    left: calc(400 / var(--base) * 100cqw);
    right: calc(400 / var(--base) * 100cqw);
  }
  .top .retrospective p {
    font-size: calc(16 / var(--base) * 100cqw);
  }
  .top .retrospective p .note {
    font-size: calc(14 / var(--base) * 100cqw);
  }
  .top .director-cast {
    top: calc(780 / var(--base) * 100cqw);
  }
  .top .staff {
    top: calc(832 / var(--base) * 100cqw);
  }
  .top .bg {
    height: calc(1000 / var(--base) * 100cqw);
  }
  .top .bg img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top .flg {
    position: absolute;
    top: calc(80 / var(--base) * 100cqw);
    width: 1px;
    height: 1px;
    pointer-events: none;
    opacity: 0;
  }
}

.unit-preface {
  padding: calc(100 / var(--base) * 100cqw) calc(32 / var(--base) * 100cqw);
  position: relative;
  background-image: -webkit-image-set(url("../images/preface_bg.webp") type("image/webp"), url("../images/preface_bg.avif") type("image/avif"));
  background-image: image-set(url("../images/preface_bg.webp") type("image/webp"), url("../images/preface_bg.avif") type("image/avif"));
  background-size: cover;
}
.unit-preface .content {
  padding: calc(16 / var(--base) * 100cqw);
  z-index: 2;
  background-color: rgba(1, 0, 4, 0.7);
  position: relative;
  transition-delay: 400ms;
}
.unit-preface .content::before {
  content: "";
  inset: calc(1 / var(--base) * 100cqw);
  border: calc(1 / var(--base) * 100cqw) solid #fff;
  position: absolute;
}
.unit-preface p {
  color: #fff;
}
.unit-preface p.author {
  display: flex;
  justify-content: end;
  align-items: center;
  color: #fff;
}
.unit-preface p.author::before {
  margin-right: calc(8 / var(--base) * 100cqw);
  content: "";
  width: calc(40 / var(--base) * 100cqw);
  height: calc(1 / var(--base) * 100cqw);
  background-color: #fff;
}
.unit-preface p.author .sub {
  font-size: calc(12 / var(--base) * 100cqw);
}
@media screen and (min-width: 768px) {
  .unit-preface {
    padding: calc(120 / var(--base) * 100cqw) calc(129 / var(--base) * 100cqw);
    background-image: -webkit-image-set(url("../images/preface_bg_lg.webp") type("image/webp"), url("../images/preface_bg_lg.avif") type("image/avif"));
    background-image: image-set(url("../images/preface_bg_lg.webp") type("image/webp"), url("../images/preface_bg_lg.avif") type("image/avif"));
  }
  .unit-preface .content {
    padding: calc(32 / var(--base) * 100cqw);
  }
  .unit-preface p {
    font-size: calc(16 / var(--base) * 100cqw);
  }
  .unit-preface p.author {
    font-size: calc(20 / var(--base) * 100cqw);
  }
  .unit-preface p.author .sub {
    font-size: calc(12 / var(--base) * 100cqw);
    translate: 0 calc(2 / var(--base) * 100cqw);
  }
}
@media screen and (min-width: 1024px) {
  .unit-preface {
    padding: min(160px, 160 / var(--base) * 100cqw) 0;
  }
  .unit-preface .content {
    margin: 0 auto;
    width: min(815px, 815 / var(--base) * 100cqw);
    padding: min(32px, 32 / var(--base) * 100cqw) min(40px, 40 / var(--base) * 100cqw);
    box-sizing: border-box;
  }
  .unit-preface p {
    font-size: min(24px, 24 / var(--base) * 100cqw);
  }
  .unit-preface p.author {
    font-size: min(24px, 24 / var(--base) * 100cqw);
  }
  .unit-preface p.author .sub {
    font-size: min(16px, 16 / var(--base) * 100cqw);
    translate: 0 calc(2 / var(--base) * 100cqw);
  }
}

.unit-intro {
  padding-bottom: 0;
}
.unit-intro .photo {
  margin: calc(48 / var(--base) * 100cqw) 0;
}
.unit-intro .photo:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .unit-intro .content:nth-of-type(1) {
    margin-right: calc(218 / var(--base) * 100cqw);
  }
  .unit-intro .content.content2 {
    margin: calc(-56 / var(--base) * 100cqw) calc(40 / var(--base) * 100cqw) 0 calc(129 / var(--base) * 100cqw);
    padding: calc(24 / var(--base) * 100cqw);
    background-color: color-mix(in srgb, var(--color-bg) 80%, transparent 0%);
    position: relative;
    z-index: 2;
  }
  .unit-intro .photo:nth-of-type(1) {
    margin-right: calc(129 / var(--base) * 100cqw);
    margin-bottom: 0;
  }
  .unit-intro .photo:nth-of-type(2) {
    margin-top: calc(-56 / var(--base) * 100cqw);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .unit-intro .content:nth-of-type(1) {
    margin: 0 auto;
    padding-right: min(320px, 320 / var(--base) * 100cqw);
    width: min(1026px, 1026 / var(--base) * 100cqw);
    box-sizing: border-box;
  }
  .unit-intro .content.content2 {
    margin: min(-72px, -72 / var(--base) * 100cqw) min(110px, 110 / var(--base) * 100cqw) 0 auto;
    padding: min(32px, 32 / var(--base) * 100cqw);
    width: min(810px, 810 / var(--base) * 100cqw);
    box-sizing: border-box;
  }
  .unit-intro .container {
    margin: 0 auto;
    width: min(1240px, 1240 / var(--base) * 100cqw);
    position: relative;
    z-index: 2;
  }
  .unit-intro .photo:nth-of-type(1) {
    margin: calc(61 / var(--base) * 100cqw) auto 0 0;
    width: calc(1140 / var(--base) * 100cqw);
  }
  .unit-intro .photo:nth-of-type(2) {
    margin: min(-72px, -72 / var(--base) * 100cqw) auto 0 auto;
    width: min(100%, 1440px);
  }
}

.unit-cast {
  background-color: #fff;
}
.unit-cast .name {
  color: var(--color-text);
}

.list-cast .item:not(:last-of-type) {
  margin-bottom: calc(65 / var(--base) * 100cqw);
}
.list-cast .portrait {
  margin: 0 auto calc(18 / var(--base) * 100cqw) auto;
}
.list-cast .portrait.matsunaga {
  width: calc(147 / var(--base) * 100cqw);
}
.list-cast p {
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .list-cast .item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 calc(40 / var(--base) * 100cqw);
  }
  .list-cast .portrait {
    grid-column: 1;
    grid-row: 1/3;
  }
  .list-cast .portrait.matsunaga {
    display: block;
    margin-right: 0;
    margin-left: auto;
    width: min(387px, 387 / 1440 * 100cqw);
  }
  .list-cast .name {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
  .list-cast .name .sub {
    display: inline-block;
  }
  .list-cast p {
    grid-column: 2;
    grid-row: 2;
  }
}

.unit-filmmaker .portrait {
  margin: 0 auto calc(18 / var(--base) * 100cqw) auto;
  width: calc(147 / var(--base) * 100cqw);
}
.unit-filmmaker .portrait figcaption {
  color: #fff;
  display: none;
}
.unit-filmmaker .content {
  display: grid;
}
.unit-filmmaker .history {
  margin-bottom: calc(27 / var(--base) * 100cqw);
}
.unit-filmmaker .filmography h3 {
  color: #fff;
  margin-bottom: calc(11 / var(--base) * 100cqw);
  font-family: var(--font-sans);
  text-align: center;
  font-size: c(16);
}
.unit-filmmaker .filmography h4 {
  color: #fff;
  margin-bottom: calc(9 / var(--base) * 100cqw);
  font-family: var(--font-sans);
  text-align: center;
  font-size: c(14);
}
.unit-filmmaker .photo {
  display: none;
}
.unit-filmmaker .message {
  border: calc(1 / var(--base) * 100cqw) solid #fff;
  padding: calc(24 / var(--base) * 100cqw);
}
.unit-filmmaker .message h3 {
  margin-bottom: calc(15 / var(--base) * 100cqw);
  text-align: center;
  font-size: calc(20 / var(--base) * 100cqw);
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .unit-filmmaker .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto calc(190 / var(--base) * 100cqw) auto auto auto;
    gap: 0 min(40px, 40 / var(--base) * 100cqw);
  }
  .unit-filmmaker .portrait {
    grid-column: 2;
    grid-row: 1/3;
    margin: 0 0 min(21px, 21 / var(--base) * 100cqw) 0;
    align-self: left;
    width: min(387px, 387 / 1440 * 100cqw);
  }
  .unit-filmmaker .portrait figcaption {
    margin-top: calc(4 / var(--base) * 100cqw);
    display: block;
    font-size: min(14px, 14 / var(--base) * 100cqw);
    font-family: var(--font-sans);
    font-weight: 400;
    text-align: right;
  }
  .unit-filmmaker .portrait img {
    display: block;
    width: calc(387 / 1440 * 100cqw);
    margin: 0 auto 0 0;
  }
  .unit-filmmaker .name {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }
  .unit-filmmaker .history {
    margin-bottom: min(27px, 27 / var(--base) * 100cqw);
    grid-column: 1;
    grid-row: 2/4;
  }
  .unit-filmmaker .filmography {
    margin-bottom: min(40px, 40 / var(--base) * 100cqw);
    grid-column: 2;
    grid-row: 3/5;
    align-self: flex-start;
  }
  .unit-filmmaker .filmography h3 {
    color: #fff;
    margin-bottom: min(11px, 11 / var(--base) * 100cqw);
    font-size: min(16px, 16 / var(--base) * 100cqw);
    text-align: left;
  }
  .unit-filmmaker .filmography h4 {
    color: #fff;
    margin-bottom: min(9px, 9 / var(--base) * 100cqw);
    text-align: left;
    font-size: min(14px, 14 / var(--base) * 100cqw);
  }
  .unit-filmmaker .photo {
    display: block;
    margin-bottom: min(80px, 80 / var(--base) * 100cqw);
    grid-column: 1;
    grid-row: 4/5;
    margin-left: min(-40px, -40 / var(--base) * 100cqw);
  }
  .unit-filmmaker .message {
    grid-column: 1/3;
    grid-row: 6;
    padding: min(24px, 24 / var(--base) * 100cqw) min(32px, 32 / var(--base) * 100cqw);
    margin: 0 auto;
  }
  .unit-filmmaker .message h3 {
    margin-bottom: calc(15 / var(--base) * 100cqw);
    text-align: center;
    font-size: calc(20 / var(--base) * 100cqw);
    color: #fff;
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .unit-filmmaker .content {
    grid-template-rows: auto min(360px, 360 / var(--base) * 100cqw) auto auto auto;
  }
  .unit-filmmaker .portrait {
    width: min(387px, 387 / var(--base) * 100cqw);
  }
  .unit-filmmaker .portrait img {
    width: min(387px, 387 / var(--base) * 100cqw);
  }
  .unit-filmmaker .photo {
    margin-left: min(-100px, -100 / var(--base) * 100cqw);
  }
  .unit-filmmaker .message {
    width: min(814px, 814 / var(--base) * 100cqw);
  }
}

.list-film {
  margin-bottom: calc(26 / var(--base) * 100cqw);
  color: #fff;
}
.list-film.long .info {
  display: block;
}
.list-film.long .item:not(:last-of-type) {
  margin-bottom: calc(17 / var(--base) * 100cqw);
}
.list-film .item {
  line-height: 1.8;
  font-size: calc(14 / var(--base) * 100cqw);
}
.list-film .item:not(:last-of-type) {
  margin-bottom: calc(5 / var(--base) * 100cqw);
}
.list-film .info {
  font-size: calc(12 / var(--base) * 100cqw);
}
.list-film .awards {
  display: block;
  font-size: calc(12 / var(--base) * 100cqw);
}
@media screen and (min-width: 1024px) {
  .list-film.short {
    -moz-column-count: 2;
         column-count: 2;
  }
  .list-film .item {
    font-size: min(16px, 16 / var(--base) * 100cqw);
  }
  .list-film .item:not(:last-of-type) {
    margin-bottom: min(4px, 4 / var(--base) * 100cqw);
  }
  .list-film .info {
    font-size: min(14px, 14 / var(--base) * 100cqw);
  }
  .list-film .awards {
    font-size: min(14px, 14 / var(--base) * 100cqw);
  }
}

.unit-comments {
  padding: calc(69 / var(--base) * 100cqw) calc(32 / var(--base) * 100cqw);
  background-image: -webkit-image-set(url("../images/comment_bg.webp") type("image/webp"), url("../images/comment_bg.avif") type("image/avif"));
  background-image: image-set(url("../images/comment_bg.webp") type("image/webp"), url("../images/comment_bg.avif") type("image/avif"));
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .unit-comments {
    padding: calc(69 / var(--base) * 100cqw) calc(32 / var(--base) * 100cqw);
    background-image: -webkit-image-set(url("../images/comment_bg_lg.webp") type("image/webp"), url("../images/comment_bg_lg.avif") type("image/avif"));
    background-image: image-set(url("../images/comment_bg_lg.webp") type("image/webp"), url("../images/comment_bg_lg.avif") type("image/avif"));
    background-position: center center;
    background-size: cover;
  }
}

.list-comments .item {
  margin-right: auto;
  width: calc(273 / var(--base) * 100cqw);
  padding: calc(24 / var(--base) * 100cqw);
  box-sizing: border-box;
  background-color: rgba(2, 21, 12, 0.5);
  border: calc(1 / var(--base) * 100cqw) solid #fff;
  transition-delay: 400ms;
}
.list-comments .item:not(:last-of-type) {
  margin-bottom: calc(72 / var(--base) * 100cqw);
}
.list-comments .item:nth-of-type(2n) {
  margin-right: 0;
  margin-left: auto;
}
.list-comments .source {
  display: flex;
  margin-top: calc(16 / var(--base) * 100cqw);
  justify-content: end;
  align-items: center;
  font-size: calc(16 / var(--base) * 100cqw);
  line-height: 1.2;
}
.list-comments .source::before {
  display: block;
  margin-right: calc(8 / var(--base) * 100cqw);
  content: "";
  width: calc(40 / var(--base) * 100cqw);
  height: calc(1 / var(--base) * 100cqw);
  background-color: #fff;
}
.list-comments .source .title {
  font-size: calc(10 / var(--base) * 100cqw);
}
@media screen and (min-width: 768px) {
  .list-comments .item {
    width: calc(420 / var(--base) * 100cqw);
    padding: calc(24 / var(--base) * 100cqw);
  }
  .list-comments .item:not(:last-of-type) {
    margin-bottom: calc(72 / var(--base) * 100cqw);
  }
  .list-comments .source .title {
    font-size: calc(12 / var(--base) * 100cqw);
  }
}
@media screen and (min-width: 1024px) {
  .list-comments {
    margin: 0 auto;
    width: min(1026px, 1026 / var(--base) * 100cqw);
  }
  .list-comments .item {
    width: min(600px, 600 / var(--base) * 100cqw);
    padding: min(32px, 32 / var(--base) * 100cqw) min(24px, 24 / var(--base) * 100cqw);
  }
  .list-comments .item:not(:last-of-type) {
    margin-bottom: min(56px, 56 / var(--base) * 100cqw);
  }
  .list-comments .source {
    font-size: min(18px, 18 / var(--base) * 100cqw);
  }
  .list-comments .source .title {
    font-size: min(14px, 14 / var(--base) * 100cqw);
  }
}

.reviews {
  background-color: #fff;
}
.reviews__note {
  margin-bottom: 20px;
  text-align: right;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .reviews__note {
    text-align: center;
    font-size: 14px;
  }
}

.list-reviews {
  margin: 0 8vw;
}
.list-reviews__item:not(:last-of-type) {
  margin-bottom: 40px;
}
.list-reviews__content {
  margin-bottom: 12px;
  padding: 5.3333333333vw;
  line-height: 2;
  font-weight: 700;
  font-size: 14px;
  border: 5px solid var(--color-bg);
}
.list-reviews__source {
  margin: 0 15px 0 auto;
  text-align: right;
  line-height: 1.2;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-main);
}
.list-reviews__source__role {
  font-size: 1rem;
  letter-spacing: 0;
}
.list-reviews__source__text {
  display: inline-block;
  position: relative;
}
.list-reviews__source__text::before {
  content: "─  ";
  margin-right: 1.5em;
  transform: scale(1.5, 1);
  transform-origin: left center;
  display: inline-block;
  width: 2em;
  color: color-mix(in srgb, var(--color-main) 50%, transparent);
}
@media screen and (min-width: 768px) {
  .list-reviews__item {
    width: 80%;
  }
  .list-reviews__item:nth-of-type(2n) {
    margin-right: 0;
    margin-left: auto;
  }
  .list-reviews__content {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .list-reviews {
    margin: 0 auto;
    width: 900px;
  }
  .list-reviews__item {
    width: 640px;
  }
  .list-reviews__item:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .list-reviews__content {
    padding: 40px;
    font-size: 16px;
  }
  .list-reviews__source {
    font-size: 18px;
  }
  .list-reviews__source__role {
    font-size: 12px;
  }
}

.unit-theaters .barrier-free {
  margin: 0 calc(32 / var(--base) * 100cqw);
}
.unit-theaters .barrier-free h3 {
  margin-bottom: calc(20 / var(--base) * 100cqw);
  text-align: center;
  font-size: calc(16 / var(--base) * 100cqw);
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
}
.unit-theaters .barrier-free .logo {
  margin: 0 auto calc(21 / var(--base) * 100cqw) auto;
  width: min(277px, 277 / var(--base) * 100cqw);
}
.unit-theaters .barrier-free p {
  font-size: calc(12 / var(--base) * 100cqw);
}
.unit-theaters .barrier-free p a {
  color: #fff;
}
.unit-theaters .button-flyer-oda2025 {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.5;
  border-style: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .unit-theaters .barrier-free {
    margin: 0 calc(40 / var(--base) * 100cqw);
  }
}
@media screen and (min-width: 1024px) {
  .unit-theaters .barrier-free {
    margin: 0 auto;
    width: min(814px, 814 / var(--base) * 100cqw);
  }
  .unit-theaters .barrier-free h3 {
    margin-bottom: min(19px, 19 / var(--base) * 100cqw);
    font-size: min(20px, 20 / var(--base) * 100cqw);
  }
  .unit-theaters .barrier-free p {
    font-size: min(14px, 14 / var(--base) * 100cqw);
  }
}

.table-schedule {
  margin: calc(29 / var(--base) * 100cqw) 0 0 0;
  padding: 0 calc(32 / var(--base) * 100cqw) 20px calc(32 / var(--base) * 100cqw);
  overflow-x: scroll;
}
.table-schedule .content {
  display: table;
  padding: calc(6 / var(--base) * 100cqw) calc(16 / var(--base) * 100cqw);
  border: calc(1 / var(--base) * 100cqw) solid #fff;
}
.table-schedule .content::after {
  content: "";
  display: block;
  width: calc(32 / var(--base) * 100cqw);
}
.table-schedule table {
  margin: 0 30px 0 0;
  width: 100%;
  position: relative;
  border-collapse: separate;
  color: #fff;
}
.table-schedule th {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: calc(12 / var(--base) * 100cqw);
  color: #fff;
  vertical-align: middle;
}
.table-schedule td {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: calc(12 / var(--base) * 100cqw);
  text-align: center;
  color: #fff;
  vertical-align: middle;
}
.table-schedule td:nth-of-type(3) {
  text-align: left;
}
.table-schedule p {
  line-height: 1.6;
  font-size: calc(12 / var(--base) * 100cqw);
  font-family: var(--font-sans);
  font-weight: 400;
}
.table-schedule p:not(:last-of-type) {
  margin-bottom: 1em;
}
.table-schedule a {
  color: #fff;
  text-decoration: underline;
}
.table-schedule thead th {
  padding: 10px 20px 10px 20px;
  text-align: left;
  font-family: var(--font-sans);
  color: #fff;
}
.table-schedule tbody tr:first-of-type th,
.table-schedule tbody tr:first-of-type td {
  border-top-width: calc(2 / var(--base) * 100cqw);
}
.table-schedule tbody th {
  text-align: left;
  font-weight: 400;
  border-top: calc(1 / var(--base) * 100cqw) solid #fff;
}
.table-schedule tbody td {
  text-align: left;
  border-top: calc(1 / var(--base) * 100cqw) solid #fff;
}
@media screen and (min-width: 768px) {
  .table-schedule {
    margin: calc(29 / var(--base) * 100cqw) 0 0 0;
    padding: 0 calc(40 / var(--base) * 100cqw) 20px calc(40 / var(--base) * 100cqw);
    overflow-x: hidden;
  }
  .table-schedule .content {
    width: 100%;
    box-sizing: border-box;
  }
  .table-schedule .content::after {
    display: none;
  }
  .table-schedule table {
    width: 100%;
  }
  .table-schedule th,
  .table-schedule td {
    font-size: calc(14 / var(--base) * 100cqw);
  }
}
@media screen and (min-width: 1024px) {
  .table-schedule {
    margin: min(29px, 29 / var(--base) * 100cqw) auto 0 auto;
    padding: 0;
    width: min(1026px, 1026 / var(--base) * 100cqw);
  }
  .table-schedule .content {
    width: 100%;
    box-sizing: border-box;
    padding: min(14px, 14 / var(--base) * 100cqw) min(24px, 24 / var(--base) * 100cqw);
  }
  .table-schedule .content::after {
    display: none;
  }
  .table-schedule table {
    width: 100%;
  }
  .table-schedule th,
  .table-schedule td {
    font-size: min(16px, 16 / var(--base) * 100cqw);
  }
  .table-schedule td:nth-of-type(3) {
    white-space: wrap;
  }
  .table-schedule p {
    font-size: min(14px, 14 / var(--base) * 100cqw);
  }
}/*# sourceMappingURL=style.css.map */