:root {
  --color-bg: #fffef6;
  --color-text: #333;
  /*
  --color-main: #5f4d00;
  --color-gold: #c7af81;
  --color-emerald: #42829d;
  --color-orange: #ed9f4f;
  */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: serif;
  --font-maru: "Zen Maru Gothic", sans-serif;
  /*

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

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


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

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

html {
  scroll-behavior: smooth;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: min(80px, 80 / 1440 * 100vw);
  }
}

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

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

.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-gold);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: background-color 500ms;
  overflow: hidden;
  cursor: pointer;
}
.menu-sw span {
  position: absolute;
  width: calc(20 / var(--base) * 100vw);
  height: calc(20 / var(--base) * 100vw);
  top: calc(10 / var(--base) * 100vw);
  left: calc(10 / var(--base) * 100vw);
}
.menu-sw span::before, .menu-sw span::after,
.menu-sw span i {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: calc(2 / var(--base) * 100vw);
  background-color: #fff;
  margin: calc(-1 / var(--base) * 100vw) 0 0 0;
  transition: background-color 500ms, transform 500ms;
}
.menu-sw span::before {
  transform: translate(0, calc(-7 / var(--base) * 100vw));
  transition: transform 500ms;
}
.menu-sw span::after {
  transform: translate(0, calc(7 / var(--base) * 100vw));
  transition: transform 500ms;
}
.menu-sw.open button {
  background-color: #fff;
}
.menu-sw.open span::before {
  transform: translate(0, 0) rotate(45deg);
  background-color: var(--color-main);
}
.menu-sw.open span i {
  transform: rotate(-45deg);
  background-color: var(--color-main);
}
.menu-sw.open span::after {
  transform: translate(0, 0) rotate(45deg);
  background-color: var(--color-main);
}
@media screen and (min-width: 1024px) {
  .menu-sw {
    display: none;
  }
}

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

.footer {
  padding: min(80px, calc(80 / var(--base) * 100vw)) 0;
  background-color: #fff;
  background-image: url(../images/footer-bg.webp);
  background-size: cover;
}
.footer .title {
  margin: 0 auto calc(40 / var(--base) * 100vw) auto;
  width: calc(256 / var(--base) * 100vw);
}
.footer .theater {
  margin: 0 auto;
  width: min(344px, calc(344 / var(--base) * 100vw));
}
@media screen and (min-width: 1024px) {
  .footer .title {
    margin: 0 auto min(26px, calc(26 / var(--base) * 100vw)) auto;
    width: min(280px, calc(280 / var(--base) * 100vw));
  }
  .footer .theater {
    margin: 0 auto;
    width: min(380px, calc(380 / var(--base) * 100vw));
  }
}

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

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

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

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

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

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

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

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: 768px) {
  p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  p {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}

figure {
  margin: 0;
  padding: 0;
}

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

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

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

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

/* ----------------- 
titletitle
----------------- */
.title-mid {
  margin: 0 auto min(32px, calc(32 / var(--base) * 100vw)) auto;
  padding: 0;
  line-height: 1;
  color: var(--color-main);
  font-family: var(--font-maru);
  font-size: calc(24 / var(--base) * 100vw);
  white-space: nowrap;
  text-align: center;
}
.title-mid.line {
  display: flex;
  margin-bottom: min(25px, calc(25 / var(--base) * 100vw));
  align-items: center;
  gap: calc(12 / var(--base) * 100vw);
}
.title-mid.line::after {
  display: block;
  content: "";
  background-color: var(--color-gold);
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .title-mid {
    font-size: min(32px, 32 / 1216 * 100vw);
    margin: 0 auto min(56px, 56 / 1216 * 100vw) auto;
  }
  .title-mid.line {
    margin-bottom: min(30px, 30 / 1216 * 100vw);
    gap: min(16px, 16 / 1216 * 100vw);
  }
}

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

button {
  cursor: pointer;
}

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

/* for inline */
.table-schedule {
  margin: calc(29 / var(--base) * 100vw) 0 0 0;
  padding: 0 0 10px 0;
  overflow-x: scroll;
}
.table-schedule .content {
  display: table;
  padding: calc(40 / var(--base) * 100vw);
}
.table-schedule .content::after {
  content: "";
  display: block;
  width: calc(24 / var(--base) * 100vw);
}
.table-schedule table {
  margin: 0;
  width: 100%;
  position: relative;
  border-collapse: collapse;
  color: var(--color-text);
  border: calc(40 / var(--base) * 100vw) solid #fff;
}
.table-schedule th {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: calc(14 / var(--base) * 100vw);
  color: var(--color-text);
  vertical-align: middle;
  background-color: #fff;
}
.table-schedule td {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: calc(14 / var(--base) * 100vw);
  text-align: center;
  color: var(--color-text);
  vertical-align: middle;
  background-color: #fff;
}
.table-schedule td:nth-of-type(3) {
  text-align: left;
}
.table-schedule p {
  margin: 0;
  line-height: 1.6;
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 400;
}
.table-schedule p:not(:last-of-type) {
  margin-bottom: 1em;
}
.table-schedule a {
  color: var(--color-main);
  text-decoration: none;
}
.table-schedule a:hover {
  text-decoration: underline;
}
.table-schedule thead th {
  text-align: left;
  color: var(--color-main);
  font-family: var(--font-maru);
}
.table-schedule tbody {
  border-bottom: 1px solid var(--color-gold);
}
.table-schedule tbody th {
  text-align: left;
  font-weight: 400;
  border-top: 1px solid var(--color-gold);
}
.table-schedule tbody td {
  text-align: left;
  border-top: 1px solid var(--color-gold);
}
@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, calc(13 / var(--base) * 100vw)) 20px;
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .table-schedule p {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1024px) {
  .table-schedule {
    margin: min(32px, calc(32 / var(--base) * 100vw)) auto 0 auto;
    padding: 0;
    width: min(1028px, 1028 / 1240 * 100vw);
  }
  .table-schedule .content {
    display: block;
    width: 100%;
    padding: 0;
  }
  .table-schedule .content::after {
    display: none;
  }
  .table-schedule table {
    width: 100%;
  }
  .table-schedule tbody th {
    width: 10%;
  }
  .table-schedule tbody td:nth-of-type(1) {
    width: 20%;
  }
  .table-schedule tbody td:nth-of-type(2) {
    width: 20%;
  }
  .table-schedule tbody td:nth-of-type(3) {
    white-space: wrap;
  }
}

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

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

body:has(.t) {
  background: linear-gradient(135deg, #eca897 0%, #f4dc80 48%, #f4dc80 63%, #eead49 100%);
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 100dvh;
}

.t {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.t .poster {
  padding: calc(16 / var(--base) * 100vw) 0;
  margin-inline: calc(24 / var(--base) * 100vw);
}
.t h1 {
  margin: 0 auto calc(12 / var(--base) * 100vw) auto;
  padding: 0;
  width: calc(320 / var(--base) * 100vw);
  align-self: end;
}
.t .billing {
  margin-bottom: calc(16 / var(--base) * 100vw);
  align-self: center;
}
.t .billing p {
  text-align: center;
  font-size: calc(10 / var(--base) * 100vw);
  line-height: 1.5;
}
.t .billing .director {
  font-size: calc(14 / var(--base) * 100vw);
  margin-bottom: 0;
}
.t .billing .aca {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  gap: calc(4 / var(--base) * 100vw);
}
.t .billing .aca img {
  width: calc(21 / var(--base) * 100vw);
  height: auto;
}
.t .billing .aca .text {
  text-align: left;
}
.t .date {
  align-self: start;
  margin: 0 auto;
  padding-bottom: calc(16 / var(--base) * 100vw);
  width: calc(280 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .t {
    --base: 480;
  }
}
@media screen and (min-width: 1024px) {
  .t {
    --base: 1440;
    margin: 0 auto;
    width: min(1190px, calc(1190 / var(--base) * 100vw));
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    height: 100dvh;
  }
  .t .poster {
    padding: 0 0 0 min(102px, calc(102 / var(--base) * 100vw));
    margin: 0;
  }
  .t .text {
    align-self: center;
  }
  .t h1 {
    margin: 0 auto min(24px, calc(24 / var(--base) * 100vw)) auto;
    width: min(480px, calc(480 / var(--base) * 100vw));
  }
  .t .billing {
    margin-bottom: min(40px, calc(40 / var(--base) * 100vw));
  }
  .t .billing p {
    font-size: min(12px, calc(12 / var(--base) * 100vw));
  }
  .t .billing .director {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
    margin-bottom: 0;
  }
  .t .billing .aca {
    gap: min(4px, calc(4 / var(--base) * 100vw));
  }
  .t .billing .aca img {
    width: min(24px, calc(24 / var(--base) * 100vw));
  }
  .t .date {
    padding-bottom: min(48px, calc(48 / var(--base) * 100vw));
    width: min(360px, calc(360 / var(--base) * 100vw));
  }
}

.unit-reviews {
  padding: calc(54 / var(--base) * 100vw) 0 calc(160 / var(--base) * 100vw) 0;
  background-image: url(../images/reviews-bg.webp);
  background-size: cover;
  background-position: center bottom;
}
.unit-reviews .title-mid {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.unit-reviews .note {
  text-align: center;
  font-family: var(--font-maru);
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: calc(14 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-reviews {
    padding: min(80px, 80 / 1216 * 100vw) min(112px, 112 / 1216 * 100vw);
    background-image: url(../images/reviews-bg-md.webp);
  }
}
@media screen and (min-width: 1024px) {
  .unit-reviews {
    box-sizing: border-box;
  }
  .unit-reviews .content {
    margin: 0 auto;
    width: min(1028px, 1028 / 1440 * 100vw);
  }
  .unit-reviews .note {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1440px) {
  .unit-reviews {
    background-image: url(../images/reviews-bg-lg.webp);
  }
}

.list-reviews {
  margin: calc(48 / var(--base) * 100vw) calc(28 / var(--base) * 100vw) 0 calc(28 / var(--base) * 100vw);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.list-reviews li {
  margin: 0 auto 0 0;
  width: min(100%, 300 / var(--base) * 100vw);
}
.list-reviews li:nth-of-type(2n) {
  margin: 0 0 0 auto;
}
.list-reviews li:not(:last-of-type) {
  margin-bottom: min(45px, calc(45 / var(--base) * 100vw));
}
.list-reviews .comment {
  margin: 0 0 calc(7 / var(--base) * 100vw) 0;
  padding: 0;
  font-family: var(--font-maru);
  font-size: calc(16 / var(--base) * 100vw);
  line-height: 1.8;
  color: #fff;
}
.list-reviews .comment + .comment {
  margin-top: 1em;
}
.list-reviews .source {
  display: flex;
  margin: 0 0 0 auto;
  padding: 0;
  align-items: baseline;
  gap: 0 calc(8 / var(--base) * 100vw);
  color: #fff;
  font-family: var(--font-sans);
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 700;
  white-space: nowrap;
}
.list-reviews .source::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  align-self: center;
}
.list-reviews .source span {
  line-height: 1.2;
}
.list-reviews .source .sub {
  font-size: calc(16 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .list-reviews li {
    width: min(100%, 480 / var(--base) * 100vw);
  }
  .list-reviews li.onomasatsugu {
    width: min(100%, 640 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .list-reviews {
    margin: min(69px, calc(69 / var(--base) * 100vw)) auto;
    width: min(100%, 1216px);
  }
  .list-reviews li {
    margin-right: auto;
    width: min(488px, calc(488 / var(--base) * 100vw));
  }
  .list-reviews li:nth-of-type(4n-3) {
    margin-left: min(208px, calc(208 / var(--base) * 100vw));
  }
  .list-reviews li:nth-of-type(4n-2) {
    margin-right: 0;
  }
  .list-reviews li:nth-of-type(4n-1) {
    margin-right: auto;
    margin-left: 0;
  }
  .list-reviews li:nth-of-type(4n) {
    margin-left: min(480px, calc(480 / var(--base) * 100vw));
  }
  .list-reviews li.onomasatsugu {
    width: min(100%, min(720px, calc(720 / var(--base) * 100vw)));
  }
  .list-reviews li.hitotoyo {
    width: min(100%, min(592px, calc(592 / var(--base) * 100vw)));
  }
  .list-reviews li:not(:last-of-type) {
    margin-bottom: min(45px, calc(45 / var(--base) * 100vw));
  }
  .list-reviews .comment {
    margin-bottom: min(7px, calc(7 / var(--base) * 100vw));
    font-size: min(20px, calc(20 / var(--base) * 100vw));
  }
  .list-reviews .source {
    gap: min(8px, calc(8 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
  .list-reviews .source .sub {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}

.unit-theaters {
  padding: calc(56 / var(--base) * 100vw) 0;
}/*# sourceMappingURL=style.css.map */