@charset "UTF-8";
:root {
  --color-bg: #f2fcff;
  --color-main: #2082a4;
  --color-text: #111;
  --color-green: #548a4b;
  --color-lightgreen: #f6fff5;
  --color-beige: #fffcf0;
  --color-brown: #a5754d;
  --color-lightbrown: #bfa590;
  --font-sans: "Noto Sans JP", serif;
  --font-serif: "Noto Serif JP", serif;
  --font-lora: "Lora", serif;
  --base: 375;
  --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;
  }
}

/* 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) * 100vw);
  }
}

#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) * 100vw);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-feature-settings: "palt";
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-serif);
  font-weight: 400;
  background-color: var(--color-bg);
  overflow-x: clip;
}
body.supporters {
  background-color: var(--color-lightgreen);
}
body.menu-open {
  overflow: clip;
}
@media screen and (min-width: 1024px) {
  body {
    scroll-padding-top: min(60px, 60 / var(--base) * 100vw);
  }
  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: #fff;
  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: -moz-fit-content;
  width: fit-content;
}
.header .list-menu .item {
  font-weight: 400;
}
.header .list-menu .item:not(:last-of-type) {
  margin-bottom: calc(4 / var(--base) * 100vw);
}
.header .list-menu a,
.header .list-menu .trailer,
.header .list-menu .button-flyer {
  display: block;
  padding: calc(4 / var(--base) * 100vw) calc(8 / var(--base) * 100vw);
  text-decoration: none;
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-size: inherit;
  font-weight: 400;
  color: var(--color-text);
  background-color: transparent;
  transition: color var(--duration-transition);
  border-style: none;
  cursor: pointer;
}
.header .list-menu a:hover,
.header .list-menu .trailer:hover,
.header .list-menu .button-flyer:hover {
  color: var(--color-main);
}
.header .list-menu a.preparing,
.header .list-menu .trailer.preparing,
.header .list-menu .button-flyer.preparing {
  color: #999;
  cursor: default;
  opacity: 0.5;
}
.header .list-menu a.preparing:hover,
.header .list-menu .trailer.preparing:hover,
.header .list-menu .button-flyer.preparing:hover {
  color: #999;
}
.header .list-menu .button-flyer {
  padding-bottom: 0;
  pointer-events: none;
}
.header .space-flyer .button-close {
  display: none;
}
.header .list-flyer {
  display: grid;
  margin: calc(11 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) 0 calc(10 / var(--base) * 100vw);
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16 / var(--base) * 100vw);
  width: calc(160 / var(--base) * 100vw);
}
.header .list-flyer a {
  padding: 0;
}
.header .list-sns {
  display: flex;
  justify-content: start;
  margin-top: calc(40 / var(--base) * 100vw);
}
.header .list-sns .item-sns {
  margin: 0 10px;
}
.header .list-sns .svg {
  width: 36px;
  height: 36px;
  transition: fill var(--duration-transition);
}
.header .list-sns .svg.x {
  fill: #000;
}
.header .list-sns .svg.facebook {
  fill: #0866ff;
}
.header .list-sns a {
  padding: 0;
}
.header .list-sns a:hover .svg {
  fill: var(--color-main);
}
@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);
  }
  .header .list-flyer {
    margin: calc(19 / var(--base) * 100vw) 0 0 calc(10 / var(--base) * 100vw);
    gap: calc(16 / var(--base) * 100vw);
    width: calc(240 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .header {
    margin: 0 auto;
    padding: 0;
    transition: background-color 300ms;
    background-color: #fff;
  }
  .header.home {
    background-color: transparent;
  }
  .header .content {
    display: block;
    margin: 0 auto;
    padding: 0 0;
    height: min(60px, 60 / var(--base) * 100vw);
    width: min(1440px, 1440 / var(--base) * 100vw);
    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;
    font-size: min(15px, 15 / var(--base) * 100vw);
    overflow: visible;
  }
  .header .list-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: min(60px, 60 / var(--base) * 100vw);
    width: 100%;
    gap: min(15px, 15 / var(--base) * 100vw);
  }
  .header .list-menu .item {
    margin: 0;
    position: relative;
  }
  .header .list-menu .item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .header .list-menu .trailer,
  .header .list-menu .button-flyer,
  .header .list-menu a {
    padding: 0;
    color: var(--color-text);
  }
  .header .list-menu .trailer:hover,
  .header .list-menu .button-flyer:hover,
  .header .list-menu a:hover {
    color: var(--color-main);
  }
  .header .list-menu .button-flyer {
    pointer-events: all;
  }
  .header .space-flyer {
    padding: min(40px, 40 / var(--base) * 100vw);
    position: absolute;
    left: 0;
    bottom: max(-305 / var(--base) * 100vw, -305px);
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    width: min(300px, 300 / var(--base) * 100vw);
    border-radius: calc(var(--radius) * 0.5);
    filter: drop-shadow(0 0 5px #000);
    z-index: 2;
    transition: opacity var(--duration-transition);
  }
  .header .space-flyer::before {
    content: "";
    width: min(16px, 16 / var(--base) * 100vw);
    height: min(20px, 20 / var(--base) * 100vw);
    background-color: #fff;
    position: absolute;
    left: min(20px, 20 / var(--base) * 100vw);
    top: max(-15 / var(--base) * 100vw, -15px);
    clip-path: polygon(0 100%, 50% 0%, 100% 100%);
    z-index: 2;
  }
  .header .space-flyer .button-close {
    display: block;
    width: min(30px, 30 / var(--base) * 100vw);
    height: min(30px, 30 / var(--base) * 100vw);
    background-color: #666;
    position: absolute;
    right: min(10px, 10 / var(--base) * 100vw);
    top: min(10px, 10 / var(--base) * 100vw);
    border-radius: min(20px, 20 / var(--base) * 100vw);
    text-indent: -1000px;
    white-space: nowrap;
    cursor: pointer;
    border-style: none;
    overflow: hidden;
  }
  .header .space-flyer .button-close::after, .header .space-flyer .button-close::before {
    display: block;
    content: "";
    width: min(20px, 20 / var(--base) * 100vw);
    height: min(1px, 1 / var(--base) * 100vw);
    background-color: #fff;
    top: 50%;
    left: min(5px, 5 / var(--base) * 100vw);
    position: absolute;
  }
  .header .space-flyer .button-close::before {
    rotate: 45deg;
  }
  .header .space-flyer .button-close::after {
    rotate: -45deg;
  }
  .header .space-flyer.on {
    opacity: 1;
    pointer-events: all;
  }
  .header .list-flyer {
    margin: 0;
    gap: min(16px, 16 / var(--base) * 100vw);
    width: 100%;
  }
  .header .list-flyer .item {
    margin: 0;
  }
  .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 {
    width: min(36px, 36 / var(--base) * 100vw);
    height: min(36px, 36 / var(--base) * 100vw);
  }
  .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);
  }
}

.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-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: 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 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;
  }
}

.main {
  overflow: hidden;
}
.footer {
  padding: calc(48 / var(--base) * 100vw) 0;
  background-color: #fff;
}
.footer .title {
  margin: 0 auto calc(8 / var(--base) * 100vw) auto;
  width: calc(250 / var(--base) * 100vw);
}
.footer .director {
  margin: 0 auto calc(24 / var(--base) * 100vw) auto;
  width: calc(160 / var(--base) * 100vw);
}
.footer .date {
  margin: 0 auto calc(16 / var(--base) * 100vw) auto;
  width: calc(250 / var(--base) * 100vw);
}
.footer .billing {
  margin: 0 auto;
  width: calc(335 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .footer .title {
    margin: 0 auto calc(8 / var(--base) * 100vw) auto;
    width: calc(410 / var(--base) * 100vw);
  }
  .footer .director {
    margin: 0 auto calc(16 / var(--base) * 100vw) auto;
    width: calc(160 / var(--base) * 100vw);
  }
  .footer .date {
    margin: 0 auto calc(24 / var(--base) * 100vw) auto;
    width: calc(580 / var(--base) * 100vw);
  }
  .footer .billing {
    margin: 0 auto;
    width: calc(480 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: min(64px, 64 / var(--base) * 100vw) 0;
  }
  .footer .title {
    margin: 0 auto min(16px, 16 / var(--base) * 100vw) auto;
    width: min(620px, 620 / var(--base) * 100vw);
  }
  .footer .director {
    margin: 0 auto min(32px, 32 / var(--base) * 100vw) auto;
    width: min(180px, 180 / var(--base) * 100vw);
  }
  .footer .date {
    margin: 0 auto min(32px, 32 / var(--base) * 100vw) auto;
    width: min(840px, 840 / var(--base) * 100vw);
  }
  .footer .billing {
    margin: 0 auto;
    width: min(620px, 620 / var(--base) * 100vw);
  }
}

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

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

.name {
  margin-bottom: calc(12 / var(--base) * 100vw);
  text-align: center;
  font-size: calc(20 / var(--base) * 100vw);
  line-height: 1.4;
  font-weight: 400;
}
.name .role {
  font-size: calc(12 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .name .role {
    display: inline;
  }
}
@media screen and (min-width: 1024px) {
  .name {
    font-size: min(24px, 24 / var(--base) * 100vw);
  }
  .name .role {
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
}

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

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

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

/* ----------------- 
titletitle
----------------- */
.title-mid {
  margin-bottom: calc(36 / var(--base) * 100vw);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: calc(7 / var(--base) * 100vw);
  font-size: calc(20 / var(--base) * 100vw);
  color: var(--color-main);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid currentColor;
  width: -moz-fit-content;
  width: fit-content;
}
.title-mid.green {
  color: var(--color-green);
}
.title-mid.brown {
  color: var(--color-brown);
}
@media screen and (min-width: 768px) {
  .title-mid {
    font-size: min(24px, 24 / var(--base) * 100vw);
    margin-bottom: min(48px, 48 / var(--base) * 100vw);
    margin-left: 0;
  }
  .title-mid.center {
    margin-left: auto;
    margin-right: auto;
  }
}

.title-round {
  margin: 0 auto calc(4 / var(--base) * 100vw) auto;
  padding: 0 calc(16 / var(--base) * 100vw);
  color: #fff;
  background-color: var(--color-brown);
  font-family: var(--font-sans);
  font-size: calc(18 / var(--base) * 100vw);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: min(40px, 40 / var(--base) * 100vw);
}
.title-round.bg-green {
  background-color: var(--color-green);
}
.title-round.bg-main {
  background-color: var(--color-main);
}
@media screen and (min-width: 1024px) {
  .title-round {
    margin-bottom: 18px;
    font-size: 24px;
    padding: 0 24px;
  }
}

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

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

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

.button {
  display: flex;
  align-items: center;
  padding: 0.2em 0.6em;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-main);
  color: #fff;
  font-family: var(--font-sans);
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  border-radius: calc(var(--radius) / 2);
  border-bottom: 3px solid #157596;
}
.button.form {
  margin: 0 auto;
  padding-right: 1em;
  background-color: var(--color-green);
  border-bottom: 3px solid #226916;
}
.button.form svg {
  width: calc(26 / var(--base) * 100vw);
  height: calc(26 / var(--base) * 100vw);
}
.button svg,
.button img {
  margin-left: calc(8 / var(--base) * 100vw);
  width: 20px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: calc(16 / var(--base) * 100vw);
    padding: 0.4em 0.8em;
  }
}

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

.fx-b2t {
  opacity: 0;
  translate: 0 calc(-30 / var(--base) * 100vw);
  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: #fff;
}
.t .main {
  container-type: inline-size;
}
.t .content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: min(100%, 768px);
}
.t .poster {
  margin-bottom: calc(24 / var(--base) * 100vw);
}
.t .text {
  grid-row: 2;
  padding: 0 calc(24 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  align-self: self-start;
}
.t .title {
  margin-bottom: calc(24 / var(--base) * 100vw);
  font-weight: 400;
  line-height: 1.4;
}
.t .title .sub {
  display: block;
  text-align: center;
  font-size: calc(16 / var(--base) * 100vw);
}
.t .title .main {
  display: block;
  text-align: center;
  font-size: calc(48 / var(--base) * 100vw);
}
.t .comment {
  margin-bottom: calc(32 / var(--base) * 100vw);
  padding: calc(24 / var(--base) * 100vw);
  border: 1px solid currentColor;
}
.t .comment p {
  line-height: 1.8;
  font-size: calc(14 / var(--base) * 100vw);
  color: var(--color-text);
}
.t .comment p:not(:last-of-type) {
  margin-bottom: 1em;
}
.t .comment p.author {
  display: flex;
  justify-content: end;
  align-items: center;
  font-family: var(--font-sans-serif);
  font-weight: 700;
}
.t .comment p.author .sub {
  font-size: calc(12 / var(--base) * 100vw);
}
.t .comment p.author::before {
  margin-right: calc(8 / var(--base) * 100vw);
  content: "";
  width: calc(30 / var(--base) * 100vw);
  height: calc(1 / var(--base) * 100vw);
  background-color: currentColor;
}
.t .theater {
  text-align: center;
  font-family: var(--font-sans-serif);
  font-weight: 700;
  font-size: calc(24 / var(--base) * 100vw);
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.t .theater .unit {
  font-size: calc(20 / var(--base) * 100vw);
}
.t .theater .day {
  font-size: calc(14 / var(--base) * 100vw);
}
.t__sns {
  display: flex;
  justify-content: space-between;
  gap: min(16px, 16 / var(--base) * 100vw);
  margin: min(24 / var(--base) * 100vw, 16px) auto;
  padding: min(16px, 16 / var(--base) * 100vw) 0;
  width: -moz-fit-content;
  width: fit-content;
}
.t__sns svg {
  width: min(36 / var(--base) * 100vw, 36px);
  height: min(36 / var(--base) * 100vw, 36px);
}
@media screen and (min-width: 1024px) {
  .t {
    margin: 0 auto;
    width: min(100%, 1440px);
  }
  .t .content {
    margin: 0 auto;
    width: min(1060px, 1060 / var(--base) * 100vw);
    grid-template-columns: min(510px, 510 / var(--base) * 100vw) 1fr;
    grid-template-rows: auto;
    gap: min(40px, 40 / var(--base) * 100vw);
  }
  .t .poster {
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1;
  }
  .t .text {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
    align-self: center;
  }
  .t .title {
    margin-bottom: calc(24 / var(--base) * 100vw);
  }
  .t .title .sub {
    font-size: calc(24 / var(--base) * 100vw);
  }
  .t .title .main {
    font-size: calc(48 / var(--base) * 100vw);
  }
  .t .theater {
    letter-spacing: 0.05em;
  }
}

.unit-top {
  display: grid;
  padding-bottom: calc(20 / var(--base) * 100vw);
  grid-template-columns: repeat(2, 1fr);
  background-image: url(../images/top_bg-svg.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.unit-top .flg {
  display: none;
}
.unit-top .photo {
  grid-column: 1/3;
  grid-row: 1;
  position: relative;
}
.unit-top .photo .bg {
  position: relative;
}
.unit-top .photo .copy-1 {
  margin: 0;
  width: calc(45 / var(--base) * 100vw);
  position: absolute;
  top: calc(170 / var(--base) * 100vw);
  right: calc(20 / var(--base) * 100vw);
}
.unit-top .photo .copy-2 {
  margin: 0;
  width: calc(53 / var(--base) * 100vw);
  position: absolute;
  top: calc(244 / var(--base) * 100vw);
  left: calc(20 / var(--base) * 100vw);
}
.unit-top .title {
  grid-column: 1/3;
  grid-row: 2;
  padding: calc(20 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) calc(15 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
}
.unit-top .director {
  grid-column: 1/3;
  grid-row: 3;
  text-align: center;
}
.unit-top .director img {
  width: calc(206 / var(--base) * 100vw);
}
.unit-top .billing {
  grid-column: 1/3;
  grid-row: 4;
  padding: calc(10 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) 0 calc(20 / var(--base) * 100vw);
}
.unit-top .date {
  grid-column: 1/3;
  grid-row: 5;
  padding: 0 calc(20 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
}
.unit-top .flyer {
  display: grid;
  margin: 0 calc(10 / var(--base) * 100vw) 0 calc(20 / var(--base) * 100vw);
  padding: calc(10 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  gap: calc(8 / var(--base) * 100vw);
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  grid-column: 1;
  grid-row: 6/10;
  align-self: self-start;
  background-color: #fdf9ef;
  border-radius: calc(var(--radius) / 2);
}
.unit-top .flyer dt {
  grid-column: 1/3;
  grid-row: 1;
  text-align: center;
  font-size: calc(10 / var(--base) * 100vw);
  font-weight: 700;
  font-family: sans-serif;
}
.unit-top .movie-screening,
.unit-top .ud,
.unit-top .supporters,
.unit-top .shop {
  margin: 0 calc(20 / var(--base) * 100vw) calc(8 / var(--base) * 100vw) 0;
}
@media screen and (min-width: 768px) {
  .unit-top {
    padding: calc(60 / var(--base) * 100vw) calc(80 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) calc(80 / var(--base) * 100vw);
    background-image: url(../images/top_bg-svg_md.svg);
    background-repeat: no-repeat;
    background-size: 220% auto;
    background-position: top center;
  }
  .unit-top .photo .copy-1 {
    width: calc(77 / var(--base) * 100vw);
    top: calc(295 / var(--base) * 100vw);
    right: calc(34 / var(--base) * 100vw);
    filter: drop-shadow(0 0 3px #000);
  }
  .unit-top .photo .copy-2 {
    width: calc(91 / var(--base) * 100vw);
    top: calc(422 / var(--base) * 100vw);
    left: calc(35 / var(--base) * 100vw);
    filter: drop-shadow(0 0 3px #000);
  }
  .unit-top .title {
    grid-column: 1/3;
    grid-row: 2;
    padding: calc(32 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  }
  .unit-top .director img {
    width: calc(240 / var(--base) * 100vw);
  }
  .unit-top .billing {
    grid-column: 1/3;
    grid-row: 4;
    padding: calc(24 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) 0 calc(24 / var(--base) * 100vw);
  }
  .unit-top .date {
    grid-column: 1/3;
    grid-row: 5;
    padding: 0 calc(24 / var(--base) * 100vw) calc(16 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  }
  .unit-top .flyer {
    display: grid;
    margin: 0 calc(24 / var(--base) * 100vw) 0 0;
    padding: calc(16 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
    gap: calc(8 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
  }
  .unit-top .flyer dt {
    font-size: calc(12 / var(--base) * 100vw);
  }
  .unit-top .movie-screening,
  .unit-top .ud,
  .unit-top .supporters,
  .unit-top .shop {
    margin: 0 0 calc(16 / var(--base) * 100vw) 0;
  }
}
@media screen and (min-width: 1024px) {
  .unit-top {
    padding: min(60px, 60 / var(--base) * 100vw) calc(80 / var(--base) * 100vw) calc(90 / var(--base) * 100vw) calc(80 / var(--base) * 100vw);
    background-size: 100% auto;
    grid-template-columns: calc(200 / var(--base) * 100vw) calc(370 / var(--base) * 100vw) 1fr calc(200 / var(--base) * 100vw);
    grid-template-rows: auto auto auto;
    position: relative;
  }
  .unit-top .flg {
    display: block;
    z-index: 2;
    position: absolute;
    top: min(100px, 100 / var(--base) * 100vw);
    left: 10;
    width: 1px;
    height: 1px;
  }
  .unit-top .photo {
    grid-column: 1/5;
  }
  .unit-top .photo .copy-1 {
    width: calc(61 / var(--base) * 100vw);
    top: calc(41 / var(--base) * 100vw);
    right: calc(110 / var(--base) * 100vw);
  }
  .unit-top .photo .copy-2 {
    width: calc(88 / var(--base) * 100vw);
    top: calc(134 / var(--base) * 100vw);
    left: calc(114 / var(--base) * 100vw);
  }
  .unit-top .title {
    grid-column: 2/4;
    grid-row: 2/4;
    padding: calc(40 / var(--base) * 100vw) calc(130 / var(--base) * 100vw) calc(32 / var(--base) * 100vw) calc(130 / var(--base) * 100vw);
    text-align: center;
  }
  .unit-top .director {
    margin: 0;
    padding: 0 calc(40 / var(--base) * 100vw) 0 calc(130 / var(--base) * 100vw);
    grid-column: 2;
    grid-row: 4;
    box-sizing: border-box;
    align-self: start;
  }
  .unit-top .director img {
    width: 100%;
  }
  .unit-top .billing {
    margin: 0;
    padding: calc(3 / var(--base) * 100vw) calc(130 / var(--base) * 100vw) 0 0;
    grid-column: 3;
    grid-row: 4;
  }
  .unit-top .date {
    margin: 0;
    padding: calc(20 / var(--base) * 100vw) calc(130 / var(--base) * 100vw) 0 calc(130 / var(--base) * 100vw);
    grid-column: 2/4;
    grid-row: 5;
    align-self: end;
  }
  .unit-top .flyer {
    margin: calc(16 / var(--base) * 100vw) 0 0 0;
    grid-column: 4;
    grid-row: 2/6;
    padding: calc(16 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
    gap: calc(8 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
  }
  .unit-top .flyer dt {
    font-size: calc(12 / var(--base) * 100vw);
  }
  .unit-top .ud {
    margin: calc(16 / var(--base) * 100vw) 0 0 0;
    grid-column: 4;
    grid-row: 4/6;
    translate: 0 calc(12 / var(--base) * 100vw);
  }
  .unit-top .movie-screening {
    margin: 0 0 calc(12 / var(--base) * 100vw) 0;
    grid-column: 1;
    grid-row: 3;
    align-self: end;
  }
  .unit-top .supporters {
    margin: 0;
    grid-column: 1;
    grid-row: 4;
    align-self: end;
  }
  .unit-top .shop {
    margin: 0;
    grid-column: 1;
    grid-row: 5;
    align-self: end;
    translate: 0 calc(6 / var(--base) * 100vw);
  }
}

.intm-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1024px) {
  .intm-images {
    grid-template-columns: repeat(4, 1fr);
  }
}

.unit-intro .content {
  margin: 0 calc(20 / var(--base) * 100vw);
}
.unit-intro .content:not(:last-of-type) {
  margin-bottom: calc(32 / var(--base) * 100vw);
}
.unit-intro .content:nth-of-type(2) {
  display: grid;
}
.unit-intro .content:nth-of-type(2) .text {
  grid-row: 2;
}
.unit-intro .content:nth-of-type(2) .photos {
  grid-row: 1;
}
.unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(1) {
  grid-column: 1;
}
.unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(3) {
  grid-column: 1/3;
}
.unit-intro .content:nth-of-type(2) .photos picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.unit-intro .content .photos {
  display: grid;
  margin-bottom: calc(16 / var(--base) * 100vw);
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
}
.unit-intro .content .photos picture {
  border-radius: var(--radius);
  overflow: hidden;
}
.unit-intro .content .photos picture:nth-of-type(1) {
  grid-column: 1/3;
}
.unit-intro .content .text {
  padding: calc(24 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.unit-intro .content .lead {
  margin-bottom: calc(14 / var(--base) * 100vw);
  line-height: 1.8;
  font-size: calc(16 / var(--base) * 100vw);
  color: var(--color-main);
  font-weight: 400;
}
.unit-intro .content .lead:nth-of-type(2) {
  margin-bottom: calc(22 / var(--base) * 100vw);
}
.unit-intro .tsugeno-hs {
  margin: calc(40 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) 0 calc(20 / var(--base) * 100vw);
  padding: calc(24 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: var(--radius);
  overflow: hidden;
}
.unit-intro .tsugeno-hs .title {
  margin-bottom: calc(14 / var(--base) * 100vw);
  line-height: 1.5;
  font-size: calc(20 / var(--base) * 100vw);
  color: var(--color-main);
  font-weight: 400;
}
.unit-intro .tsugeno-hs .para-button {
  margin-bottom: calc(24 / var(--base) * 100vw);
}
.unit-intro .tsugeno-hs .photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(16 / var(--base) * 100vw);
}
.unit-intro .tsugeno-hs .photos .item {
  border-radius: calc(var(--radius) * 0.5);
  overflow: hidden;
  width: calc(50% - 8 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-intro .content {
    margin: 0 calc(40 / var(--base) * 100vw);
  }
  .unit-intro .content:not(:last-of-type) {
    margin-bottom: calc(40 / var(--base) * 100vw);
  }
  .unit-intro .content:nth-of-type(2) .text {
    grid-row: 2;
  }
  .unit-intro .content:nth-of-type(2) .photos {
    grid-row: 1;
  }
  .unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(1) {
    grid-column: 1;
  }
  .unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(3) {
    grid-column: 1/3;
  }
  .unit-intro .content:nth-of-type(2) .photos picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .unit-intro .content .photos {
    margin-bottom: calc(24 / var(--base) * 100vw);
    grid-template-columns: repeat(2, 1fr);
    gap: calc(16 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
  }
  .unit-intro .content .photos picture {
    border-radius: var(--radius);
    overflow: hidden;
  }
  .unit-intro .content .photos picture:nth-of-type(1) {
    grid-column: 1/3;
  }
  .unit-intro .content .text {
    padding: calc(40 / var(--base) * 100vw) calc(40 / var(--base) * 100vw);
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .unit-intro .content .text p {
    margin-top: calc(32 / var(--base) * 100vw);
  }
  .unit-intro .content .lead {
    margin-bottom: calc(26 / var(--base) * 100vw);
    font-size: min(24px, 24 / var(--base) * 100vw);
  }
  .unit-intro .tsugeno-hs {
    margin: calc(40 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) 0 calc(40 / var(--base) * 100vw);
    padding: calc(24 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
    background-color: #fff;
    border: 2px solid var(--color-main);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .unit-intro .tsugeno-hs .title {
    margin-bottom: calc(15 / var(--base) * 100vw);
    font-size: calc(24 / var(--base) * 100vw);
  }
  .unit-intro .tsugeno-hs .para-button {
    margin-bottom: calc(24 / var(--base) * 100vw);
  }
  .unit-intro .tsugeno-hs .photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(16 / var(--base) * 100vw);
  }
  .unit-intro .tsugeno-hs .photos .item {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .unit-intro .content {
    display: grid;
    margin: 0 auto;
    width: min(1280px, 1280 / var(--base) * 100vw);
    position: relative;
  }
  .unit-intro .content:nth-of-type(1) {
    grid-template-columns: repeat(2, 1fr);
    gap: min(40px, 40 / var(--base) * 100vw);
  }
  .unit-intro .content:nth-of-type(1)::after {
    content: "";
    position: absolute;
    width: min(840px, 840 / var(--base) * 100vw);
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: var(--radius);
    z-index: 0;
  }
  .unit-intro .content:nth-of-type(1) .text {
    padding: min(56px, 56 / var(--base) * 100vw) min(32px, 32 / var(--base) * 100vw) min(56px, 56 / var(--base) * 100vw) min(64px, 64 / var(--base) * 100vw);
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
    background-color: transparent;
  }
  .unit-intro .content:nth-of-type(1) .photos {
    margin-top: min(40px, 40 / var(--base) * 100vw);
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: repeat(2, min(290px, 290 / var(--base) * 100vw));
    grid-template-rows: min(364px, 364 / var(--base) * 100vw) min(170px, 170 / var(--base) * 100vw);
    gap: min(24px, 24 / var(--base) * 100vw) min(40px, 40 / var(--base) * 100vw);
    position: relative;
    z-index: 2;
  }
  .unit-intro .content:nth-of-type(1) .photos img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .unit-intro .content:nth-of-type(2) {
    margin-top: min(104px, 104 / var(--base) * 100vw);
    grid-template-columns: repeat(2, 1fr);
    gap: min(40px, 40 / var(--base) * 100vw);
  }
  .unit-intro .content:nth-of-type(2)::after {
    content: "";
    position: absolute;
    width: min(840px, 840 / var(--base) * 100vw);
    height: calc(100% - min(48px, 48 / var(--base) * 100vw));
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: var(--radius);
    z-index: 0;
  }
  .unit-intro .content:nth-of-type(2) .text {
    padding: min(56px, 56 / var(--base) * 100vw) min(64px, 64 / var(--base) * 100vw) min(56px, 56 / var(--base) * 100vw) min(32px, 32 / var(--base) * 100vw);
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
    background-color: transparent;
  }
  .unit-intro .content:nth-of-type(2) .photos {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: max(-40 / var(--base) * 100vw, -40px);
    gap: min(24px, 24 / var(--base) * 100vw);
    position: relative;
    z-index: 2;
  }
  .unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(1) {
    width: min(216px, 216 / var(--base) * 100vw);
    height: min(168px, 168 / var(--base) * 100vw);
  }
  .unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(2) {
    width: min(290px, 290 / var(--base) * 100vw);
    height: min(168px, 168 / var(--base) * 100vw);
  }
  .unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(3) {
    width: min(336px, 336 / var(--base) * 100vw);
    height: min(168px, 168 / var(--base) * 100vw);
  }
  .unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(4) {
    width: min(219px, 219 / var(--base) * 100vw);
    height: min(168px, 168 / var(--base) * 100vw);
  }
  .unit-intro .content:nth-of-type(2) .photos picture:nth-of-type(5) {
    width: min(336px, 336 / var(--base) * 100vw);
    height: min(168px, 168 / var(--base) * 100vw);
  }
  .unit-intro .content:nth-of-type(2) .photos picture img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .unit-intro .content .text .lead {
    margin-top: 0;
    margin-bottom: min(10px, 10 / var(--base) * 100vw);
    line-height: 1.6;
  }
  .unit-intro .tsugeno-hs {
    margin: min(64px, 64 / var(--base) * 100vw) auto 0 auto;
    padding: min(48px, 48 / var(--base) * 100vw) min(64px, 64 / var(--base) * 100vw);
    width: min(1060px, 1060 / var(--base) * 100vw);
    box-sizing: border-box;
  }
}

.unit-comments {
  background-color: var(--color-lightgreen);
}

.list-comments {
  margin: 0 calc(20 / var(--base) * 100vw);
}
.list-comments .item {
  padding: calc(24 / var(--base) * 100vw);
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-sizing: border-box;
}
.list-comments .item:not(:last-of-type) {
  margin-bottom: calc(32 / var(--base) * 100vw);
}
.list-comments .item:nth-of-type(2n) {
  margin-left: auto;
}
.list-comments .content p:not(:last-of-type) {
  margin-bottom: 1.2em;
}
.list-comments .source {
  margin-top: calc(16 / var(--base) * 100vw);
  text-align: right;
  line-height: 1.4;
  color: var(--color-green);
  font-family: var(--font-sans);
}
.list-comments .source .main {
  font-size: calc(20 / var(--base) * 100vw);
}
.list-comments .source .sub {
  font-size: calc(12 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .list-comments {
    margin: 0 calc(40 / var(--base) * 100vw);
  }
  .list-comments .item {
    padding: calc(40 / var(--base) * 100vw);
    width: min(620px, 70%);
  }
  .list-comments .item:not(:last-of-type) {
    margin-bottom: calc(40 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .list-comments {
    margin: 0 auto;
    width: min(1060px, 1060 / var(--base) * 100vw);
  }
  .list-comments .item {
    padding: min(40px, 40 / var(--base) * 100vw);
    width: min(620px, 620 / var(--base) * 100vw);
  }
  .list-comments .item:not(:last-of-type) {
    margin-bottom: calc(40 / var(--base) * 100vw);
  }
}

.unit-staff .message {
  margin: 0 calc(20 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  padding: calc(24 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.unit-staff .message .title {
  margin-bottom: calc(20 / var(--base) * 100vw);
  font-size: calc(16 / var(--base) * 100vw);
  font-weight: 400;
}
.unit-staff .director {
  margin: 0 calc(20 / var(--base) * 100vw) calc(32 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
}
.unit-staff .director .photo {
  margin: 0 auto calc(13 / var(--base) * 100vw);
  width: calc(160 / var(--base) * 100vw);
}
.unit-staff .director .photo img {
  border-radius: var(--radius);
  overflow: hidden;
}
.unit-staff .others {
  margin: 0 calc(20 / var(--base) * 100vw);
}
.unit-staff .others .item:not(:last-of-type) {
  margin-bottom: calc(32 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-staff .message {
    margin: 0 auto calc(40 / var(--base) * 100vw) auto;
    width: min(840px, 80%);
    padding: calc(40 / var(--base) * 100vw);
    box-sizing: border-box;
  }
  .unit-staff .message .title {
    margin-bottom: calc(19 / var(--base) * 100vw);
    font-size: calc(20 / var(--base) * 100vw);
  }
  .unit-staff .director {
    display: grid;
    margin: 0 auto min(40px, 40 / var(--base) * 100vw) auto;
    width: min(620px, 620 / var(--base) * 100vw);
    grid-template-columns: min(160px, 160 / var(--base) * 100vw) 1fr;
    gap: 0 min(40px, 40 / var(--base) * 100vw);
  }
  .unit-staff .director .photo {
    margin: 0;
    width: min(160px, 160 / var(--base) * 100vw);
    grid-row: 1/3;
  }
  .unit-staff .director .name {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
  .unit-staff .director p {
    grid-column: 2;
    grid-row: 2;
  }
  .unit-staff .others {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(24 / var(--base) * 100vw) calc(32 / var(--base) * 100vw);
    margin: 0 calc(40 / var(--base) * 100vw);
  }
  .unit-staff .others .item {
    width: calc(50% - 16 / var(--base) * 100vw);
  }
  .unit-staff .others .item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .unit-staff .message {
    margin: 0 auto min(40px, 40 / var(--base) * 100vw) auto;
    width: min(840px, 840 / var(--base) * 100vw);
    padding: min(32px, 32 / var(--base) * 100vw) min(40px, 40 / var(--base) * 100vw);
  }
  .unit-staff .message .title {
    margin-bottom: calc(18 / var(--base) * 100vw);
    font-size: min(24px, 24 / var(--base) * 100vw);
  }
  .unit-staff .others {
    display: grid;
    margin: 0 auto;
    width: min(1060px, 1060 / var(--base) * 100vw);
    grid-template-columns: repeat(3, 1fr);
    gap: calc(48 / var(--base) * 100vw);
  }
  .unit-staff .others .item {
    width: auto;
  }
  .unit-staff .others .item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.unit-theaters {
  background-color: var(--color-beige);
}
.unit-theaters .barrier-free {
  margin: calc(32 / var(--base) * 100vw) calc(32 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) calc(32 / var(--base) * 100vw);
}
.unit-theaters .barrier-free h3 {
  margin-bottom: calc(20 / var(--base) * 100vw);
  text-align: center;
  font-size: calc(16 / var(--base) * 100vw);
  line-height: 1.5;
  font-weight: 400;
}
.unit-theaters .barrier-free .logo {
  margin: 0 auto calc(21 / var(--base) * 100vw) auto;
  width: min(277px, 277 / var(--base) * 100vw);
}
.unit-theaters .barrier-free p {
  font-size: calc(12 / var(--base) * 100vw);
}
.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;
}
.unit-theaters .para-button {
  margin: calc(16 / var(--base) * 100vw) auto calc(54 / var(--base) * 100vw) auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .unit-theaters .barrier-free {
    margin: calc(24 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) calc(40 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .unit-theaters .barrier-free {
    margin: min(32px, 32 / var(--base) * 100vw) auto min(48px, 48 / var(--base) * 100vw) auto;
    width: min(814px, 814 / var(--base) * 100vw);
  }
  .unit-theaters .barrier-free h3 {
    margin-bottom: min(19px, 19 / var(--base) * 100vw);
    font-size: min(20px, 20 / var(--base) * 100vw);
  }
  .unit-theaters .barrier-free p {
    font-size: min(14px, 14 / var(--base) * 100vw);
  }
}

.movie-screening {
  margin-bottom: calc(40 / var(--base) * 100vw);
}
.movie-screening .screening-item {
  margin: 0 calc(20 / var(--base) * 100vw);
  padding: calc(16 / var(--base) * 100vw) 0;
}
.movie-screening .screening-item + .screening-item {
  margin-top: calc(11 / var(--base) * 100vw);
  padding-top: calc(21 / var(--base) * 100vw);
  border-top: 1px solid var(--color-main);
}
.movie-screening .date {
  margin-bottom: calc(-4 / var(--base) * 100vw);
  text-align: center;
  font-size: calc(14 / var(--base) * 100vw);
}
.movie-screening .title-screening {
  margin-bottom: calc(8 / var(--base) * 100vw);
  text-align: center;
  font-weight: 400;
  font-size: calc(16 / var(--base) * 100vw);
}
.movie-screening .table-screening table {
  width: 100%;
}
.movie-screening .table-screening th {
  padding: calc(5 / var(--base) * 100vw) calc(16 / var(--base) * 100vw) calc(5 / var(--base) * 100vw) 0;
  text-align: left;
  vertical-align: top;
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}
.movie-screening .table-screening td {
  padding: calc(5 / var(--base) * 100vw) 0;
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 400;
  line-height: 1.5;
}
.movie-screening .table-screening p {
  margin-bottom: 0.5em;
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .movie-screening {
    margin-bottom: cwmin(40);
  }
  .movie-screening .screening-item {
    margin: 0 auto;
    width: 560px;
  }
  .movie-screening .screening-item + .screening-item {
    margin-top: min(19px, 19 / var(--base) * 100vw);
    padding-top: min(29px, 29 / var(--base) * 100vw);
  }
  .movie-screening .date {
    margin-bottom: -4px;
    font-size: 16px;
  }
  .movie-screening .title-screening {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .movie-screening .table-screening th {
    padding: 4px 16px 4px 0;
    font-size: 14px;
  }
  .movie-screening .table-screening td {
    padding: 4px 0 4px 8px;
    font-size: 14px;
  }
  .movie-screening .table-screening p {
    font-size: 14px;
  }
}

.table-schedule {
  margin: calc(29 / var(--base) * 100vw) 0 0 0;
  padding: 0 calc(32 / var(--base) * 100vw) 20px calc(32 / var(--base) * 100vw);
  overflow-x: scroll;
}
.table-schedule .content {
  display: table;
  padding: calc(6 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
  border: calc(1 / var(--base) * 100vw) solid var(--color-brown);
  background-color: #fff;
}
.table-schedule .content::after {
  content: "";
  display: block;
  width: calc(32 / var(--base) * 100vw);
}
.table-schedule table {
  margin: 0 calc(30 / var(--base) * 100vw) 0 0;
  width: 100%;
  position: relative;
  border-collapse: separate;
}
.table-schedule th {
  padding: calc(8 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  white-space: nowrap;
  font-size: calc(12 / var(--base) * 100vw);
  vertical-align: middle;
}
.table-schedule td {
  padding: calc(8 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  white-space: nowrap;
  font-size: calc(12 / var(--base) * 100vw);
  text-align: center;
  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) * 100vw);
  font-family: var(--font-sans);
  font-weight: 400;
}
.table-schedule p:not(:last-of-type) {
  margin-bottom: 1em;
}
.table-schedule a {
  text-decoration: underline;
}
.table-schedule thead th {
  padding-bottom: calc(12 / var(--base) * 100vw);
  text-align: left;
  font-family: var(--font-sans);
}
.table-schedule tbody th {
  text-align: left;
  font-weight: 400;
  border-top: 1px solid var(--color-lightbrown);
}
.table-schedule tbody td {
  text-align: left;
  border-top: 1px solid var(--color-lightbrown);
}
@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 {
    width: 100%;
    box-sizing: border-box;
  }
  .table-schedule .content::after {
    display: none;
  }
  .table-schedule table {
    width: 100%;
  }
  .table-schedule th,
  .table-schedule td {
    padding: min(13px, 13 / var(--base) * 100vw) min(20px, 20 / var(--base) * 100vw);
    font-size: calc(14 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .table-schedule {
    margin: min(29px, 29 / var(--base) * 100vw) auto 0 auto;
    overflow-x: hidden;
    padding: 0;
    width: min(1026px, 1026 / var(--base) * 100vw);
  }
  .table-schedule .content {
    width: 100%;
    box-sizing: border-box;
    padding: min(14px, 14 / var(--base) * 100vw) min(24px, 24 / var(--base) * 100vw);
  }
  .table-schedule .content::after {
    display: none;
  }
  .table-schedule table {
    width: 100%;
  }
  .table-schedule th,
  .table-schedule td {
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .table-schedule td:nth-of-type(3) {
    white-space: wrap;
  }
  .table-schedule p {
    font-size: min(14px, 14 / var(--base) * 100vw);
  }
}

.unit-supporters {
  margin: calc(64 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  padding: calc(24 / var(--base) * 100vw);
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-sizing: border-box;
}
.unit-supporters .title {
  margin-bottom: calc(32 / var(--base) * 100vw);
}
.unit-supporters .title .sub {
  display: block;
  margin-bottom: calc(8 / var(--base) * 100vw);
}
.unit-supporters .title .main {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-green);
  font-size: calc(16 / var(--base) * 100vw);
}
.unit-supporters .title .main svg {
  margin: 0 calc(8 / var(--base) * 100vw);
  width: 40px;
  height: 40px;
}
.unit-supporters .title .main svg:nth-of-type(2) {
  scale: -1 1;
}
.unit-supporters .present .photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.unit-supporters .present p {
  display: flex;
  align-items: center;
  margin: calc(-24 / var(--base) * 100vw) auto 0 auto;
  padding: calc(16 / var(--base) * 100vw);
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 2;
  position: relative;
  width: calc(240 / var(--base) * 100vw);
  box-sizing: border-box;
  color: #c1532e;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 1.6;
}
.unit-supporters .present p img {
  display: block;
  margin: 0 calc(8 / var(--base) * 100vw) 0 0;
  width: calc(60 / var(--base) * 100vw);
}
.unit-supporters .content {
  margin: calc(16 / var(--base) * 100vw) 0 0 0;
}
.unit-supporters .details {
  margin-top: calc(32 / var(--base) * 100vw);
  padding: calc(24 / var(--base) * 100vw);
  border: 1px solid var(--color-green);
  border-radius: var(--radius);
}
.unit-supporters .details .title {
  margin-bottom: calc(9 / var(--base) * 100vw);
  text-align: center;
  font-size: calc(16 / var(--base) * 100vw);
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-green);
}
.unit-supporters .details .list {
  font-size: calc(14 / var(--base) * 100vw);
}
.unit-supporters .details .list .item {
  padding-left: 1.2em;
  position: relative;
}
.unit-supporters .details .list .item:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.unit-supporters .details .list .item::before {
  display: block;
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.unit-supporters .details .para-button {
  margin: calc(16 / var(--base) * 100vw) 0;
}
.unit-supporters .details .contact {
  font-size: calc(12 / var(--base) * 100vw);
  text-align: center;
}
.unit-supporters .details .contact dt b {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .unit-supporters {
    margin: calc(64 / var(--base) * 100vw) calc(40 / var(--base) * 100vw);
    padding: calc(40 / var(--base) * 100vw) calc(64 / var(--base) * 100vw);
  }
  .unit-supporters .title {
    margin-bottom: calc(32 / var(--base) * 100vw);
  }
  .unit-supporters .title .sub {
    display: block;
    margin-bottom: calc(16 / var(--base) * 100vw);
  }
  .unit-supporters .title .main {
    font-size: calc(24 / var(--base) * 100vw);
  }
  .unit-supporters .title .main svg {
    margin: 0 calc(8 / var(--base) * 100vw);
  }
  .unit-supporters .present p {
    margin: min(-48px, -48 / var(--base) * 100vw) auto 0 auto;
    padding: min(20px, 20 / var(--base) * 100vw);
    width: min(480px, 480 / var(--base) * 100vw);
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .unit-supporters .present p img {
    margin: 0 min(16px, 16 / var(--base) * 100vw) 0 0;
    width: min(110px, 110 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .unit-supporters {
    margin: min(96px, 96 / var(--base) * 100vw) auto;
    padding: min(64px, 64 / var(--base) * 100vw) min(110px, 110 / var(--base) * 100vw);
    width: min(840px, 840 / var(--base) * 100vw);
  }
  .unit-supporters .title {
    margin-bottom: min(32px, 32 / var(--base) * 100vw);
  }
  .unit-supporters .title .sub {
    margin-bottom: min(24px, 24 / var(--base) * 100vw);
  }
  .unit-supporters .title .main {
    font-size: min(32px, 32 / var(--base) * 100vw);
  }
  .unit-supporters .title .main svg {
    margin: 0 min(24px, 24 / var(--base) * 100vw);
  }
  .unit-supporters .details {
    margin-top: min(32px, 32 / var(--base) * 100vw);
    padding: min(32px, 32 / var(--base) * 100vw) min(48px, 48 / var(--base) * 100vw);
  }
  .unit-supporters .details .title {
    margin-bottom: min(9px, 9 / var(--base) * 100vw);
    font-size: min(20px, 20 / var(--base) * 100vw);
  }
  .unit-supporters .details .list {
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .unit-supporters .details .para-button {
    margin: min(24px, 24 / var(--base) * 100vw) 0;
  }
  .unit-supporters .details .contact {
    font-size: calc(12 / var(--base) * 100vw);
    text-align: left;
  }
  .unit-supporters .details .contact dt b {
    font-weight: 700;
  }
}

.page-movie-screening {
  margin: calc(64 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  border-radius: var(--radius);
  overflow: hidden;
  box-sizing: border-box;
}
.page-movie-screening .title-screening {
  margin-bottom: calc(34 / var(--base) * 100vw);
}
.page-movie-screening .title-screening .main {
  display: block;
  margin-top: calc(4 / var(--base) * 100vw);
  font-weight: 400;
  font-size: calc(24 / var(--base) * 100vw);
  text-align: center;
  line-height: 1.5;
  color: var(--color-main);
}
.page-movie-screening .lead {
  font-weight: 700;
  color: var(--color-main);
  font-family: var(--font-sans);
  font-size: calc(16 / var(--base) * 100vw);
  line-height: 1.8;
  text-align: center;
}
.page-movie-screening .unit {
  margin: calc(32 / var(--base) * 100vw) 0 0 0;
  padding: calc(24 / var(--base) * 100vw);
  border-radius: var(--radius);
  border: 1px solid var(--color-main);
}
.page-movie-screening .title {
  margin-bottom: calc(9 / var(--base) * 100vw);
  text-align: center;
  font-size: calc(16 / var(--base) * 100vw);
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-main);
}
.page-movie-screening .title:not(:first-of-type) {
  margin-top: calc(32 / var(--base) * 100vw);
}
.page-movie-screening .list-dl .item:not(:last-of-type) {
  margin-bottom: calc(16 / var(--base) * 100vw);
  text-align: center;
}
.page-movie-screening .list-dl .item .button {
  display: block;
  padding: calc(13 / var(--base) * 100vw) 0;
  width: auto;
  text-align: center;
}
.page-movie-screening .list-fee dt {
  font-weight: 700;
  font-family: var(--font-sans);
}
.page-movie-screening .list-fee dt:not(:first-of-type) {
  margin-top: calc(13 / var(--base) * 100vw);
}
.page-movie-screening .table-pr table {
  width: 100%;
}
.page-movie-screening .table-pr th {
  padding: calc(13 / var(--base) * 100vw) calc(5 / var(--base) * 100vw);
  text-align: left;
  white-space: nowrap;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-family: var(--font-sans);
}
.page-movie-screening .table-pr td {
  padding: calc(13 / var(--base) * 100vw) calc(5 / var(--base) * 100vw);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-family: var(--font-sans);
}
.page-movie-screening .list-note {
  margin-left: 2em;
}
.page-movie-screening .list-note .item {
  list-style-type: disc;
}
.page-movie-screening .list-note .item:not(:last-of-type) {
  margin-bottom: calc(5 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .page-movie-screening {
    margin: 0;
    padding: calc(104 / var(--base) * 100vw);
  }
  .page-movie-screening .para-contact {
    text-align: center;
  }
  .page-movie-screening .list-dl .item .button {
    padding: min(13px, 13 / var(--base) * 100vw) 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-movie-screening {
    margin: min(96px, 96 / var(--base) * 100vw) auto;
    padding: min(64px, 64 / var(--base) * 100vw) 0;
    width: min(840px, 840 / var(--base) * 100vw);
  }
  .page-movie-screening .title-screening {
    margin-bottom: calc(34 / var(--base) * 100vw);
  }
  .page-movie-screening .title-screening .main {
    margin-top: min(18px, 18 / var(--base) * 100vw);
    font-size: min(40px, 40 / var(--base) * 100vw);
  }
  .page-movie-screening .lead {
    margin-bottom: min(18px, 18 / var(--base) * 100vw);
    font-size: min(24px, 24 / var(--base) * 100vw);
  }
  .page-movie-screening .unit {
    margin: min(48px, 48 / var(--base) * 100vw) 0 0 0;
    padding: min(32px, 32 / var(--base) * 100vw) min(32px, 32 / var(--base) * 100vw) min(40px, 40 / var(--base) * 100vw) min(32px, 32 / var(--base) * 100vw);
  }
  .page-movie-screening .title {
    margin-bottom: min(14px, 14 / var(--base) * 100vw);
    font-size: min(24px, 24 / var(--base) * 100vw);
  }
  .page-movie-screening .title:not(:first-of-type) {
    margin-top: min(50px, 50 / var(--base) * 100vw);
  }
  .page-movie-screening .list-dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(20px, 20 / var(--base) * 100vw);
  }
  .page-movie-screening .list-dl .item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .page-movie-screening .list-dl .item .button {
    padding: min(13px, 13 / var(--base) * 100vw) 0;
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .page-movie-screening .list-fee {
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .page-movie-screening .list-fee dt {
    text-align: center;
  }
  .page-movie-screening .list-fee dt:not(:first-of-type) {
    margin-top: min(20px, 20 / var(--base) * 100vw);
  }
  .page-movie-screening .table-pr table {
    width: 100%;
  }
  .page-movie-screening .table-pr th {
    padding: min(20px, 20 / var(--base) * 100vw) min(8px, 8 / var(--base) * 100vw);
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .page-movie-screening .table-pr td {
    padding: min(20px, 20 / var(--base) * 100vw) min(8px, 8 / var(--base) * 100vw);
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .page-movie-screening .list-note {
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .page-movie-screening .list-note .item:not(:last-of-type) {
    margin-bottom: min(5px, 5 / var(--base) * 100vw);
  }
}/*# sourceMappingURL=style.css.map */