:root {
  --color-main: #007c7d;
  --color-bg: #f1faf7;
  --color-text: #111;
  --color-darkblue: #001f2e;
  --color-emerald: #42829d;
  --color-orange: #ed9f4f;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Shippori Mincho", serif;
  --font-shippori: "Shippori Antique", sans-serif;
  /*

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

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


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

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

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

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

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  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-emerald);
  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 li {
  text-align: center;
  font-weight: 400;
  font-size: calc(18 / var(--base) * 100vw);
}
.header .list-menu li:not(:last-of-type) {
  margin-bottom: calc(12 / var(--base) * 100vw);
}
.header .list-menu a,
.header .list-menu button {
  display: inline-block;
  padding: calc(4 / var(--base) * 100vw);
  text-decoration: none;
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-size: inherit;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  transition: color var(--duration-transition);
  border-style: none;
  cursor: pointer;
}
.header .list-menu a:hover,
.header .list-menu button:hover {
  color: var(--color-main);
}
.header .list-menu a.preparing,
.header .list-menu button.preparing {
  color: #eee;
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
.header .list-menu a.preparing:hover,
.header .list-menu button.preparing:hover {
  color: #999;
}
.header .list-sns {
  display: flex;
  gap: calc(20 / var(--base) * 100vw);
  justify-content: center;
  margin-top: calc(40 / var(--base) * 100vw);
}
.header .list-sns li {
  margin: 0;
  background-color: #fff;
  border-radius: 300px;
  overflow: hidden;
  width: min(32px, calc(32 / var(--base) * 100vw));
  height: min(32px, calc(32 / var(--base) * 100vw));
}
.header .list-sns li.x {
  background-color: #000;
}
.header .list-sns li.x a {
  background-color: #fff;
  -webkit-mask-image: url("../images/icon_x.svg");
          mask-image: url("../images/icon_x.svg");
}
.header .list-sns li.instagram a {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  -webkit-mask-image: url("../images/icon_instagram.svg");
          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));
  -webkit-mask-size: cover;
          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 .content {
    display: block;
    margin: 0 auto;
    padding: 0 0;
    height: auto;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
  }
  .header .menu {
    margin: 0 calc(100 / 1440 * 100vw);
    padding: 0;
    overflow: visible;
  }
  .header .list-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: min(80px, 80 / 1440 * 100vw);
    width: 100%;
    gap: min(32px, 32 / 1240 * 100vw);
  }
  .header .list-menu li {
    margin: 0;
    position: relative;
    font-size: 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-main);
  }
  .header .list-menu button:hover,
  .header .list-menu a:hover {
    color: var(--color-orange);
  }
  .header .list-sns {
    display: flex;
    gap: min(24px, calc(24 / var(--base) * 100vw));
    align-items: center;
    margin-top: 0;
  }
  .header .list-sns li {
    margin: 0;
    background-color: transparent;
    transition: background-color var(--duration-transition);
  }
  .header .list-sns li.x:hover {
    background-color: #fff;
  }
  .header .list-sns li.x:hover a {
    background-color: var(--color-emerald);
  }
  .header .list-sns a {
    transition: background-color var(--duration-transition);
  }
  .header.open {
    background-color: var(--color-bg);
  }
}

.menu-sw {
  margin: 0;
  position: absolute;
  top: calc(10 / var(--base) * 100vw);
  right: calc(10 / var(--base) * 100vw);
  width: calc(40 / var(--base) * 100vw);
  height: calc(40 / var(--base) * 100vw);
  z-index: 20;
  overflow: hidden;
}
.menu-sw button {
  padding: 0;
  display: block;
  border-style: none;
  border-radius: 0;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--color-emerald);
  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-emerald);
}
.menu-sw.open span i {
  transform: rotate(-45deg);
  background-color: var(--color-emerald);
}
.menu-sw.open span::after {
  transform: translate(0, 0) rotate(45deg);
  background-color: var(--color-emerald);
}
@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(40px, calc(40 / var(--base) * 100vw)) 0;
  background-color: var(--color-main);
}
.footer .date {
  margin: 0 calc(24 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .footer .date {
    margin: 0 auto;
    width: min(496px, calc(496 / 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;
  }
}

p {
  margin-bottom: 1em;
  font-size: calc(14 / var(--base) * 100vw);
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
}
p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 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(33px, calc(33 / var(--base) * 100vw)) auto;
  padding: min(8px, calc(8 / var(--base) * 100vw)) min(16px, calc(16 / var(--base) * 100vw));
  line-height: 1;
  background-color: var(--color-emerald);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(24px, calc(24 / var(--base) * 100vw));
  font-weight: 400;
}
.title-mid.color-white {
  background-color: #fff;
  color: var(--color-emerald);
}
.title-mid.color-white-black {
  background-color: #fff;
  color: var(--color-text);
}
.title-mid.bg-main {
  background-color: var(--color-main);
}

/* ----------------- 
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: 0 calc(24 / var(--base) * 100vw) 0 calc(24 / 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: 1px solid var(--color-main);
}
.table-schedule th {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: calc(12 / 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(12 / 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 {
  line-height: 1.6;
  font-size: calc(12 / 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 {
  padding: 10px 20px 10px 20px;
  text-align: left;
  background-color: var(--color-main);
  color: #fff;
}
.table-schedule tbody th {
  text-align: left;
  font-weight: 400;
  border-top: 1px solid var(--color-main);
}
.table-schedule tbody td {
  text-align: left;
  border-top: 1px solid var(--color-main);
}
@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 {
    font-size: calc(14 / var(--base) * 100vw);
  }
  .table-schedule p {
    font-size: 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 th,
  .table-schedule td {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .table-schedule tbody th {
    width: 10%;
  }
  .table-schedule tbody td:nth-of-type(1) {
    width: 20%;
  }
  .table-schedule tbody td:nth-of-type(2) {
    width: 20%;
  }
  .table-schedule tbody td:nth-of-type(3) {
    white-space: wrap;
  }
  .table-schedule p {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}

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

.t {
  display: grid;
  padding: calc(24 / var(--base) * 100vw);
  align-items: start;
  justify-content: center;
  font-family: var(--font-shippori);
  font-weight: 400;
  letter-spacing: 0;
}
.t .main {
  margin-bottom: calc(20 / var(--base) * 100vw);
  overflow: visible;
}
.t .director {
  margin-bottom: calc(10 / var(--base) * 100vw);
  line-height: 1.5;
  font-size: calc(24 / var(--base) * 100vw);
}
.t .director .apd {
  font-size: calc(16 / var(--base) * 100vw);
}
.t .title {
  margin-bottom: calc(29 / var(--base) * 100vw);
  font-size: calc(48 / var(--base) * 100vw);
  font-weight: 500;
  line-height: 1;
  color: #000;
}
.t .title .sub-title {
  font-size: calc(32 / var(--base) * 100vw);
}
.t .billing {
  margin-bottom: calc(23 / var(--base) * 100vw);
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 1.5;
}
.t .date {
  line-height: 1.5;
  font-size: calc(16 / var(--base) * 100vw);
  font-weight: 700;
}
.t .date .day {
  font-size: calc(10 / var(--base) * 100vw);
}
.t .youtube {
  margin: calc(24 / var(--base) * 100vw) 0;
}
.t .youtube .inner {
  padding: 56.9% 0 0 0;
  position: relative;
}
.t .youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  .t {
    --base: 480;
  }
}
@media screen and (min-width: 1024px) {
  .t {
    --base: 1240;
    margin: 0 auto;
    padding: min(40px, calc(40 / var(--base) * 100vw)) 0;
    grid-template-columns: min(600px, calc(600 / var(--base) * 100vw)) 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;
    width: min(1106px, calc(1106 / var(--base) * 100vw));
    gap: min(40px, calc(40 / var(--base) * 100vw));
  }
  .t .main {
    padding-top: 0;
    margin-bottom: 0;
    align-self: start;
    overflow: hidden;
    grid-column: 1;
    grid-row: 1;
  }
  .t .lead {
    margin-bottom: min(7px, calc(7 / var(--base) * 100vw));
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .t .copy {
    margin-top: min(16px, calc(16 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
  .t .title {
    margin-bottom: min(32px, calc(32 / var(--base) * 100vw));
    font-size: min(64px, calc(64 / var(--base) * 100vw));
    word-wrap: normal;
  }
  .t .title .sub-title {
    font-size: calc(32 / var(--base) * 100vw);
  }
  .t .billing {
    margin-bottom: min(27px, calc(27 / var(--base) * 100vw));
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .t .date {
    font-size: min(20px, calc(20 / var(--base) * 100vw));
  }
  .t .date .day {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .t .youtube {
    display: block;
    grid-row: 2;
    grid-column: 1/3;
    width: 100%;
  }
  .t .youtube .inner {
    width: 100%;
    margin: calc(24 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  }
}

.unit-top {
  padding: calc(24 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(35 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
}
.unit-top .space-image {
  margin: 0 0 calc(16 / var(--base) * 100vw) 0;
  position: relative;
}
.unit-top .copy {
  margin: 0;
  width: calc(51 / var(--base) * 100vw);
  position: absolute;
  z-index: 2;
  inset: calc(107 / var(--base) * 100vw) calc(45 / var(--base) * 100vw) auto auto;
}
.unit-top .awards {
  margin-bottom: calc(11 / var(--base) * 100vw);
}
.unit-top .lead {
  line-height: 1.5;
  font-weight: 600;
  font-size: calc(14 / var(--base) * 100vw);
}
.unit-top .title {
  margin-bottom: calc(16 / var(--base) * 100vw);
}
.unit-top .billing-en {
  margin-bottom: calc(12 / var(--base) * 100vw);
}
.unit-top .billing-ja {
  margin-bottom: calc(16 / var(--base) * 100vw);
  font-size: calc(7 / var(--base) * 100vw);
}
.unit-top .billing-ja .pandora {
  display: inline block;
  padding-right: calc(24 / var(--base) * 100vw);
  text-decoration: none;
  position: relative;
}
.unit-top .billing-ja .pandora::after {
  content: "";
  width: calc(21 / var(--base) * 100vw);
  height: calc(22 / var(--base) * 100vw);
  -webkit-mask-image: url(../images/top-pandra-cat.webp);
          mask-image: url(../images/top-pandra-cat.webp);
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color-text);
  position: absolute;
  inset: 50% 0 auto auto;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .unit-top {
    padding: calc(48 / var(--base) * 100vw) calc(124 / var(--base) * 100vw) calc(43 / var(--base) * 100vw) calc(124 / var(--base) * 100vw);
  }
  .unit-top .copy {
    width: calc(64 / var(--base) * 100vw);
    inset: calc(198 / var(--base) * 100vw) auto auto calc(105 / var(--base) * 100vw);
  }
  .unit-top .awards {
    margin-bottom: calc(19 / var(--base) * 100vw);
  }
  .unit-top .lead {
    font-size: calc(20 / var(--base) * 100vw);
  }
  .unit-top .billing-en {
    width: min(496px, calc(496 / var(--base) * 100vw));
    margin-bottom: min(12px, calc(12 / var(--base) * 100vw));
  }
  .unit-top .billing-ja {
    margin-bottom: calc(21 / var(--base) * 100vw);
    font-size: calc(10 / var(--base) * 100vw);
  }
  .unit-top .billing-ja .pandora {
    padding-right: 24px;
  }
  .unit-top .billing-ja .pandora::after {
    width: 21px;
    height: 22px;
  }
  .unit-top .date {
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
  .unit-top .date .num {
    font-size: min(28px, calc(28 / var(--base) * 100vw));
  }
  .unit-top .date .day {
    font-size: min(12px, calc(12 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1024px) {
  .unit-top {
    --base: 1440;
    display: grid;
    margin: 0 auto;
    padding: 0 0 min(80px, calc(80 / var(--base) * 100vw)) 0;
    grid-template-columns: min(710px, calc(710 / var(--base) * 100vw)) 1fr;
    gap: calc(32 / var(--base) * 100vw);
    width: min(1340px, 1340 / 1440 * 100vw);
  }
  .unit-top .space-image {
    margin: 0;
  }
  .unit-top .copy {
    width: min(64px, calc(64 / var(--base) * 100vw));
    inset: min(198px, calc(198 / var(--base) * 100vw)) auto auto min(105px, calc(105 / var(--base) * 100vw));
  }
  .unit-top .awards {
    margin-top: min(32px, calc(32 / var(--base) * 100vw));
    margin-bottom: min(34px, calc(34 / var(--base) * 100vw));
    width: min(496px, calc(496 / var(--base) * 100vw));
  }
  .unit-top .lead {
    margin-bottom: min(25px, calc(25 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
  .unit-top .title {
    margin-bottom: min(40px, calc(40 / var(--base) * 100vw));
    width: min(456px, calc(456 / var(--base) * 100vw));
  }
  .unit-top .date {
    margin-bottom: min(218px, calc(218 / var(--base) * 100vw));
    width: min(486px, calc(486 / var(--base) * 100vw));
    text-align: left;
  }
  .unit-top .billing-en {
    margin-bottom: min(23px, calc(23 / var(--base) * 100vw));
  }
  .unit-top .billing-ja {
    margin-bottom: min(16px, calc(16 / var(--base) * 100vw));
    font-size: min(10px, calc(10 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1440px) {
  .unit-top {
    width: 1440px;
  }
}

.unit-intro {
  padding-top: calc(616 / var(--base) * 100vw);
  padding-bottom: calc(58 / var(--base) * 100vw);
  background-image: url(../images/intro-bg.webp);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: var(--color-darkblue);
}
.unit-intro .content {
  margin: 0 calc(24 / var(--base) * 100vw);
}
.unit-intro p {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.unit-intro .lead {
  margin-bottom: calc(10 / var(--base) * 100vw);
  font-size: calc(18 / var(--base) * 100vw);
  line-height: 1.5;
}
.unit-intro .lead + .lead {
  margin-top: calc(-5 / var(--base) * 100vw);
}
.unit-intro p + .lead {
  margin-top: calc(29 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-intro {
    padding-top: calc(720 / var(--base) * 100vw);
    padding-bottom: min(80px, calc(80 / var(--base) * 100vw));
    background-image: url(../images/intro-bg-md.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: var(--color-darkblue);
  }
  .unit-intro .content {
    margin: 0 calc(50 / var(--base) * 100vw);
  }
  .unit-intro .lead {
    margin-bottom: min(18px, calc(18 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
    letter-spacing: -0.05em;
  }
  .unit-intro .lead + .lead {
    margin-top: max(-13 / var(--base) * 100vw, -13px);
  }
  .unit-intro p + .lead {
    margin-top: min(29px, calc(29 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1024px) {
  .unit-intro {
    padding-top: min(80px, calc(80 / var(--base) * 100vw));
    background-image: url(../images/intro-bg-lg.webp);
    background-size: cover;
    background-position: right center;
    position: relative;
  }
  .unit-intro::before {
    content: "";
    width: calc(1128 / var(--base) * 100vw);
    height: 100%;
    position: absolute;
    inset: 0 auto 0 0;
    background: linear-gradient(90deg, rgba(0, 32, 51, 0.6) 0%, rgba(0, 32, 51, 0.6) 60%, rgba(0, 32, 51, 0) 100%);
  }
  .unit-intro .content {
    margin: 0 auto;
    padding-right: min(420px, calc(420 / var(--base) * 100vw));
    width: min(1240px, 1240 / 1440 * 100vw);
    position: relative;
    z-index: 2;
  }
  .unit-intro .title-mid {
    margin-right: auto;
    margin-left: 0;
  }
}

.unit-story {
  padding: calc(64 / var(--base) * 100vw) 0 0 0;
}
.unit-story .photos {
  display: grid;
  margin: 0 calc(24 / var(--base) * 100vw);
  gap: calc(16 / var(--base) * 100vw);
}
.unit-story .content {
  margin: calc(32 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  padding: calc(40 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  border: 1px solid var(--color-main);
  background-color: #fff;
}
.unit-story .lead {
  font-size: calc(20 / var(--base) * 100vw);
  text-align: center;
  color: var(--color-main);
}
.unit-story .note {
  font-size: calc(12 / var(--base) * 100vw);
}
.unit-story .snap {
  margin: calc(26 / var(--base) * 100vw) auto calc(22 / var(--base) * 100vw) auto;
  width: calc(168 / var(--base) * 100vw);
}
.unit-story .people {
  margin: calc(22 / var(--base) * 100vw) auto 0 auto;
  width: calc(290 / var(--base) * 100vw);
}
.unit-story .still-5 {
  margin: calc(64 / var(--base) * 100vw) 0 0 0;
}
@media screen and (min-width: 768px) {
  .unit-story {
    padding: min(80px, calc(80 / var(--base) * 100vw)) 0 0 0;
  }
  .unit-story .photos {
    display: grid;
    margin: 0 calc(50 / var(--base) * 100vw);
    grid-template-columns: repeat(3, 1fr);
    gap: calc(16 / var(--base) * 100vw);
  }
  .unit-story .photos picture:nth-of-type(4) {
    grid-column: 1/4;
    margin: 0 auto;
    width: calc(816 / 1240 * 100vw);
  }
  .unit-story .content {
    margin: calc(48 / var(--base) * 100vw) calc(50 / var(--base) * 100vw) calc(32 / var(--base) * 100vw) calc(50 / var(--base) * 100vw);
    padding: calc(40 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
    position: relative;
  }
  .unit-story .snap {
    margin: 0;
    position: absolute;
    inset: calc(-24 / var(--base) * 100vw) calc(-24 / var(--base) * 100vw) auto auto;
    width: calc(320 / 1240 * 100vw);
  }
  .unit-story .people {
    width: calc(876 / 1240 * 100vw);
  }
  .unit-story .still-5 {
    margin: min(80px, calc(80 / var(--base) * 100vw)) 0 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .unit-story .photos {
    margin: 0 auto;
    gap: calc(32 / var(--base) * 100vw);
    width: min(1240px, 1240 / 1440 * 100vw);
  }
  .unit-story .photos picture:nth-of-type(4) {
    width: min(816px, 816 / 1440 * 100vw);
  }
  .unit-story .content {
    margin: min(48px, calc(48 / var(--base) * 100vw)) auto 0 auto;
    padding: min(60px, calc(60 / var(--base) * 100vw)) min(48px, calc(48 / var(--base) * 100vw));
    width: min(1028px, 1028 / 1440 * 100vw);
  }
  .unit-story .lead {
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
  .unit-story .note {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .unit-story .snap {
    inset: max(-12px, -14 / var(--base) * 100vw) max(-80px, -80 / var(--base) * 100vw) auto auto;
    width: min(320px, 320 / 1440 * 100vw);
  }
  .unit-story .people {
    width: min(876px, 876 / 1440 * 100vw);
  }
}

.unit-director {
  padding: calc(64 / var(--base) * 100vw) 0;
}
.unit-director .content {
  margin: 0 calc(24 / var(--base) * 100vw);
}
.unit-director .photo {
  margin: calc(48 / var(--base) * 100vw) auto calc(22 / var(--base) * 100vw) auto;
  width: calc(260 / var(--base) * 100vw);
}
.unit-director .name {
  margin-bottom: calc(16 / var(--base) * 100vw);
  font-size: calc(24 / var(--base) * 100vw);
}
.unit-director .name .ja {
  display: block;
  text-align: center;
}
.unit-director .name .original {
  display: block;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 400;
}
.unit-director .filmography {
  margin: calc(19 / var(--base) * 100vw) 0 0 0;
}
.unit-director .filmography dt {
  margin-bottom: calc(5 / var(--base) * 100vw);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: calc(16 / var(--base) * 100vw);
}
.unit-director .filmography dd {
  margin: calc(4 / var(--base) * 100vw) 0;
  line-height: 1.5;
  font-size: calc(14 / var(--base) * 100vw);
}
.unit-director .message {
  margin: calc(33 / var(--base) * 100vw) 0 0 0;
  padding: calc(18 / var(--base) * 100vw) calc(16 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
  background-color: #fff;
  border: 1px solid var(--color-main);
  box-sizing: border-box;
}
.unit-director .message .title {
  margin-bottom: calc(20 / var(--base) * 100vw);
  font-size: calc(20 / var(--base) * 100vw);
  font-family: var(--font-sans);
  font-weight: 400;
}
.unit-director .message .lead {
  margin-bottom: calc(10 / var(--base) * 100vw);
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.5;
  letter-spacing: 0;
}
.unit-director .message p + .lead {
  margin-top: calc(27 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-director {
    padding: min(80px, calc(80 / var(--base) * 100vw)) 0;
  }
  .unit-director .content {
    display: grid;
    margin: 0 calc(50 / var(--base) * 100vw);
    grid-template-columns: min(286px, 286 / 1240 * 100vw) 1fr;
    gap: 0 min(32px, calc(32 / var(--base) * 100vw));
  }
  .unit-director .photo {
    margin: 0;
    width: auto;
    grid-row: 1/3;
  }
  .unit-director .name .ja {
    text-align: left;
  }
  .unit-director .name .original {
    text-align: left;
  }
  .unit-director .filmography {
    grid-column: 2;
    grid-row: 3;
  }
  .unit-director .message {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1024px) {
  .unit-director .content {
    margin: 0 auto;
    width: min(1028px, 1028 / 1440 * 100vw);
    grid-template-columns: min(286px, 286 / 1440 * 100vw) 1fr;
    gap: 0 min(32px, calc(32 / var(--base) * 100vw));
  }
  .unit-director .photo {
    margin: 0;
    width: auto;
    grid-row: 1/3;
  }
  .unit-director .name {
    margin-bottom: min(18px, calc(18 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
  .unit-director .summary {
    margin-bottom: min(18px, calc(18 / var(--base) * 100vw));
  }
  .unit-director .filmography {
    margin-top: 0;
  }
  .unit-director .filmography dt {
    margin-bottom: min(13px, calc(13 / var(--base) * 100vw));
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .unit-director .filmography dd {
    margin: min(5px, calc(5 / var(--base) * 100vw)) 0;
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .unit-director .message {
    padding: min(25px, calc(25 / var(--base) * 100vw)) min(40px, calc(40 / var(--base) * 100vw)) min(27px, calc(27 / var(--base) * 100vw)) min(40px, calc(40 / var(--base) * 100vw));
  }
  .unit-director .message .title {
    margin-bottom: min(21px, calc(21 / var(--base) * 100vw));
    font-size: min(20px, calc(20 / var(--base) * 100vw));
  }
  .unit-director .message .lead {
    margin-bottom: min(10px, calc(10 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
}

.unit-side {
  padding: 0 0 calc(64 / var(--base) * 100vw) 0;
  background-color: #fff;
}
.unit-side .photos {
  margin-bottom: calc(64 / var(--base) * 100vw);
}
.unit-side .content {
  margin: 0 calc(24 / var(--base) * 100vw);
}
.unit-side .maps {
  display: grid;
  gap: calc(16 / var(--base) * 100vw);
  margin: calc(25 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) 0 calc(24 / var(--base) * 100vw);
}
.unit-side .maps picture:nth-of-type(1) {
  width: calc(260 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-side {
    padding: 0 0 min(80px, calc(80 / var(--base) * 100vw)) 0;
  }
  .unit-side .photos {
    margin-bottom: min(80px, calc(80 / var(--base) * 100vw));
  }
  .unit-side .content {
    margin: 0 calc(50 / var(--base) * 100vw);
  }
  .unit-side .maps {
    margin: calc(25 / var(--base) * 100vw) calc(50 / var(--base) * 100vw) 0 calc(50 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .unit-side .photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .unit-side .content {
    margin: 0 auto min(41px, calc(41 / var(--base) * 100vw)) auto;
    width: min(816px, 816 / 1440 * 100vw);
  }
  .unit-side .maps {
    margin: 0 auto;
    width: min(1240px, 1240 / 1440 * 100vw);
    grid-template-columns: min(816px, 816 / 1440 * 100vw) 1fr;
    gap: calc(16 / var(--base) * 100vw);
  }
  .unit-side .maps picture:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
    width: auto;
  }
}

.unit-reviews {
  padding: calc(64 / var(--base) * 100vw) 0;
  background-image: url(../images/reviews-bg.webp);
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .unit-reviews {
    padding: min(80px, calc(80 / var(--base) * 100vw)) 0;
    background-image: url(../images/reviews-bg-md.webp);
    background-position: center bottom;
  }
}
@media screen and (min-width: 1024px) {
  .unit-reviews {
    box-sizing: border-box;
    background-position: center bottom;
  }
  .unit-reviews .content {
    margin: 0 auto;
    width: min(1028px, 1028 / 1440 * 100vw);
  }
  .unit-reviews .title-mid {
    margin: 0 auto 0 0;
  }
}

.list-reviews {
  margin: calc(72 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) 0 calc(24 / var(--base) * 100vw);
}
.list-reviews li {
  margin: 0 0 auto auto;
  max-width: calc(306 / var(--base) * 100vw);
}
.list-reviews li:nth-of-type(2n) {
  margin: 0 auto auto 0;
}
.list-reviews li:not(:last-of-type) {
  margin-bottom: calc(32 / var(--base) * 100vw);
}
.list-reviews .comment {
  margin-bottom: 0;
  padding: calc(9 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
  background-color: var(--color-emerald);
  color: #fff;
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 600;
}
.list-reviews .source {
  display: flex;
  margin: -1px 0 0 auto;
  padding: 0 calc(16 / var(--base) * 100vw) calc(8 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: calc(8 / var(--base) * 100vw);
  background-color: var(--color-emerald);
  color: #fff;
  font-family: var(--font-en);
  font-size: calc(16 / var(--base) * 100vw);
  font-weight: 600;
}
.list-reviews .source::before {
  display: block;
  content: "";
  width: calc(24 / var(--base) * 100vw);
  height: 1px;
  background-color: #fff;
}
.list-reviews .source span {
  line-height: 1.2;
}
.list-reviews .source .sub {
  font-size: calc(12 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .list-reviews {
    margin: calc(80 / var(--base) * 100vw) calc(50 / var(--base) * 100vw) 0 calc(50 / var(--base) * 100vw);
  }
  .list-reviews li {
    margin: 0 0 auto auto;
    max-width: min(816px, 816 / 1240 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .list-reviews {
    margin: min(160px, calc(160 / var(--base) * 100vw)) auto 0 auto;
    width: min(1240px, 1240 / 1440 * 100vw);
  }
  .list-reviews li {
    margin: 0 0 auto auto;
    max-width: min(864px, 864 / 1440 * 100vw);
    width: -moz-fit-content;
    width: fit-content;
  }
  .list-reviews .comment {
    padding: min(11px, calc(11 / var(--base) * 100vw)) min(24px, calc(24 / var(--base) * 100vw));
    font-size: min(18px, calc(18 / var(--base) * 100vw));
  }
  .list-reviews .source {
    padding: min(11px, calc(11 / var(--base) * 100vw)) min(24px, calc(24 / var(--base) * 100vw));
    gap: min(8px, calc(8 / var(--base) * 100vw));
    font-size: min(20px, calc(20 / var(--base) * 100vw));
  }
  .list-reviews .source::before {
    width: min(24px, calc(24 / var(--base) * 100vw));
  }
}

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