:root {
  --color-bg: #fffdf6;
  --color-main: #220000;
  --color-text: #111;
  --color-lightbrown: #b6ac89;
  --font-sans: "Noto Sans JP", serif;
  /* font-optical-sizing: auto; */
  --font-serif: "Noto Serif JP", serif;
  --base: 375;
  --duration-transition: 800ms;
}
@media screen and (min-width: 768px) {
  :root {
    --radius-photo: 30px;
    --base: 768;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --radius-photo: 30px;
    --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-noto-serif-jp);
  font-weight: 400;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 60px;
  }
}

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

@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.menu-open {
  overflow: clip;
}
@media screen and (min-width: 1024px) {
  body {
    scroll-padding-top: min(64px, 64 / 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(12 / var(--base) * 100vw);
}
.header .list-menu a,
.header .list-menu .trailer {
  display: 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: 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 {
  color: var(--color-main);
}
.header .list-menu a.preparing,
.header .list-menu .trailer.preparing {
  color: #999;
  cursor: default;
  opacity: 0.5;
}
.header .list-menu a.preparing:hover,
.header .list-menu .trailer.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 calc(16 / var(--base) * 100vw) 0 0;
}
.header .list-sns .svg {
  width: min(36px, 36 / var(--base) * 100vw);
  height: min(36px, 36 / var(--base) * 100vw);
  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: var(--color-bg);
  }
  .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%;
  }
  .header .list-menu .item {
    margin: 0 min(15px, 15 / var(--base) * 100vw);
    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);
    -webkit-clip-path: polygon(0 100%, 50% 0%, 100% 100%);
            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;
}
@media screen and (min-width: 1024px) {
  .main {
    padding-top: min(64px, 64 / var(--base) * 100vw);
  }
}

.footer {
  padding: calc(48 / var(--base) * 100vw) 0;
  background-color: #fff;
}
.footer .title {
  margin: 0 auto calc(24 / var(--base) * 100vw) auto;
  width: calc(240 / var(--base) * 100vw);
}
.footer .date {
  margin: 0 auto calc(16 / var(--base) * 100vw) auto;
  width: calc(320 / var(--base) * 100vw);
}
.footer .billing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 calc(24 / var(--base) * 100vw);
  line-height: 2;
}
.footer .billing .item {
  margin: 0 calc(4 / var(--base) * 100vw);
  font-size: calc(10 / var(--base) * 100vw);
  text-align: center;
}
.footer .billing .item.long {
  width: 100%;
}
.footer .billing .item b {
  margin-right: calc(4 / var(--base) * 100vw);
  font-size: calc(8 / var(--base) * 100vw);
  font-family: var(--font-sans);
}
@media screen and (min-width: 768px) {
  .footer .title {
    margin: 0 auto calc(8 / var(--base) * 100vw) auto;
    width: calc(410 / 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: min(480px, 480 / var(--base) * 100vw);
  }
  .footer .billing .item {
    margin: 0 min(4px, 4 / var(--base) * 100vw);
    font-size: min(12px, 12 / var(--base) * 100vw);
  }
  .footer .billing .item b {
    margin-right: min(4px, 4 / var(--base) * 100vw);
    font-size: min(10px, 10 / 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(400px, 400 / var(--base) * 100vw);
  }
  .footer .date {
    margin: 0 auto min(32px, 32 / var(--base) * 100vw) auto;
    width: min(620px, 620 / var(--base) * 100vw);
  }
}

p {
  font-feature-settings: "palt";
  margin-bottom: 1em;
  font-size: min(16px, 16 / var(--base) * 100vw);
  line-height: 2;
}
p:last-of-type {
  margin-bottom: 0;
}

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

/* main */
/* section */
.unit {
  padding: calc(60 / var(--base) * 100vw) 0;
}
@media screen and (min-width: 768px) {
  .unit {
    padding: calc(80 / var(--base) * 100vw) 0;
  }
}
@media screen and (min-width: 768px) {
  .unit {
    padding: min(80px, 80 / var(--base) * 100vw) 0;
  }
}

/* ----------------- 
titletitle
----------------- */
.title-mid {
  margin: 0 auto calc(32 / var(--base) * 100vw) auto;
  padding: 0 calc(16 / var(--base) * 100vw);
  color: var(--color-main);
  background-color: #fff;
  line-height: 1.5;
  font-size: calc(32 / var(--base) * 100vw);
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .title-mid {
    margin: 0 auto calc(40 / var(--base) * 100vw) auto;
    padding: min(4px, 4 / var(--base) * 100vw) min(20px, 20 / var(--base) * 100vw);
    font-size: min(48px, 48 / var(--base) * 100vw);
  }
}

.name {
  margin-bottom: calc(20 / var(--base) * 100vw);
  line-height: 1.5;
  font-weight: 400;
}
.name .role {
  display: block;
  text-align: center;
  font-size: calc(20 / var(--base) * 100vw);
}
.name .main {
  display: block;
  padding-top: 0;
  text-align: center;
  font-size: calc(24 / var(--base) * 100vw);
}
.name .sub {
  display: block;
  text-align: center;
  font-size: calc(14 / var(--base) * 100vw);
}
@media screen and (min-width: 1024px) {
  .name {
    margin-bottom: min(28px, 28 / var(--base) * 100vw);
  }
  .name .role {
    font-size: min(20px, 20 / var(--base) * 100vw);
  }
  .name .main {
    font-size: min(32px, 32 / var(--base) * 100vw);
  }
  .name .sub {
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
}

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

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

.t {
  background-color: #fffdf6;
}
.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;
  max-width: 720px;
}
.t__photo {
  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);
}
.t__staff {
  margin-bottom: calc(37 / var(--base) * 100vw);
  line-height: 1.8;
  font-family: var(--font-sans-serif);
  font-size: min(12 / var(--base) * 100vw, 16px);
  text-align: center;
}
.t__theater {
  margin: 0 auto;
  width: calc(240 / 375 * 100vw);
  line-height: 1.4;
  text-align: center;
}
.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(1240px, 1240 / var(--base) * 100vw);
    grid-template-columns: min(600px, 600 / var(--base) * 100vw) 1fr;
    grid-template-rows: auto;
    max-width: none;
    gap: min(40px, 40 / var(--base) * 100vw);
  }
  .t__photo {
    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: min(48px, 48 / var(--base) * 100vw);
  }
  .t__staff {
    margin-bottom: min(77px, 77 / var(--base) * 100vw);
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .t__theater {
    margin: 0 auto;
    width: min(360px, 360 / var(--base) * 100vw);
  }
}

.unit-top {
  position: relative;
  padding-bottom: calc(24 / var(--base) * 100vw);
}
.unit-top .copy {
  margin: 0;
  position: absolute;
  width: calc(77 / var(--base) * 100vw);
  top: calc(114 / var(--base) * 100vw);
  right: calc(30 / var(--base) * 100vw);
}
.unit-top .title {
  padding: calc(16 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
}
.unit-top .billing {
  margin: calc(13 / var(--base) * 100vw) 0;
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 1.5;
  text-align: center;
}
.unit-top .banner-talkevent {
  margin: 0;
  position: absolute;
  width: calc(100 / var(--base) * 100vw);
  inset: calc(520 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) auto auto;
}
.unit-top .banner-present {
  margin: 0;
  position: absolute;
  width: calc(100 / var(--base) * 100vw);
  inset: calc(630 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) auto auto;
}
@media screen and (min-width: 768px) {
  .unit-top {
    margin: calc(40 / var(--base) * 100vw) calc(120 / var(--base) * 100vw);
  }
  .unit-top .banner-talkevent {
    width: calc(160 / var(--base) * 100vw);
    inset: calc(620 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) auto auto;
  }
  .unit-top .banner-present {
    width: calc(160 / var(--base) * 100vw);
    inset: calc(800 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) auto auto;
  }
}
@media screen and (min-width: 1024px) {
  .unit-top {
    display: grid;
    margin: 0 auto;
    width: calc(1280 / var(--base) * 100vw);
    grid-template-columns: calc(560 / var(--base) * 100vw) calc(730 / var(--base) * 100vw);
    grid-template-rows: calc(440 / var(--base) * 100vw) auto auto auto;
  }
  .unit-top .copy {
    width: calc(78 / var(--base) * 100vw);
    top: calc(146 / var(--base) * 100vw);
    right: auto;
    left: calc(484 / var(--base) * 100vw);
  }
  .unit-top .title {
    padding: calc(30 / var(--base) * 100vw) 0;
    grid-column: 2;
    grid-row: 2;
    text-align: center;
  }
  .unit-top .title img {
    width: calc(454 / var(--base) * 100vw);
  }
  .unit-top .date {
    padding: 0 calc(32 / var(--base) * 100vw);
    grid-column: 2;
    grid-row: 3;
  }
  .unit-top .billing {
    margin: 0;
    font-size: calc(14 / var(--base) * 100vw);
    grid-column: 2;
    grid-row: 4;
  }
  .unit-top .banner-talkevent {
    width: calc(150 / var(--base) * 100vw);
    inset: calc(200 / var(--base) * 100vw) calc(-40 / var(--base) * 100vw) auto auto;
  }
  .unit-top .banner-present {
    width: calc(160 / var(--base) * 100vw);
    inset: calc(370 / var(--base) * 100vw) calc(-40 / var(--base) * 100vw) auto auto;
  }
}

.unit-intro {
  padding-top: 0;
  padding-bottom: calc(32 / var(--base) * 100vw);
}
.unit-intro .content {
  padding: calc(24 / var(--base) * 100vw) calc(32 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(32 / var(--base) * 100vw);
}
.unit-intro .content.content1 {
  padding-top: calc(64 / var(--base) * 100vw);
  color: #fff;
  background-color: var(--color-main);
  background-image: url(../images/intro_1.webp);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.unit-intro .content.content1 .title-mid {
  margin-bottom: calc(288 / var(--base) * 100vw);
}
.unit-intro .content.content1 .lead-1 {
  margin-bottom: calc(11 / var(--base) * 100vw);
  line-height: 1.5;
  font-size: calc(22 / var(--base) * 100vw);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.unit-intro .content.content1 .lead-1:nth-of-type(2) {
  margin-bottom: calc(21 / var(--base) * 100vw);
}
.unit-intro figure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.unit-intro figure picture:nth-of-type(3) {
  grid-column: 1/3;
  grid-row: 2;
}
.unit-intro .lead-2 {
  margin-bottom: calc(11 / var(--base) * 100vw);
  line-height: 1.8;
  font-size: calc(20 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-intro {
    padding-bottom: calc(64 / var(--base) * 100vw);
  }
  .unit-intro .content {
    padding: calc(80 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) calc(80 / var(--base) * 100vw) calc(40 / var(--base) * 100vw);
  }
  .unit-intro .content.content1 {
    padding-top: calc(80 / var(--base) * 100vw);
    color: #fff;
    background-color: var(--color-main);
    background-image: url(../images/intro_1_md.webp);
    background-size: auto 100%;
    background-position: center top;
  }
  .unit-intro .content.content1 .title-mid {
    margin-bottom: calc(32 / var(--base) * 100vw);
  }
  .unit-intro .content.content1 p {
    width: calc(400 / var(--base) * 100vw);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.9);
  }
  .unit-intro .content.content1 .lead-1 {
    margin-bottom: calc(11 / var(--base) * 100vw);
    line-height: 1.5;
    font-size: calc(22 / var(--base) * 100vw);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.9);
  }
  .unit-intro .content.content1 .lead-1:nth-of-type(2) {
    margin-bottom: calc(21 / var(--base) * 100vw);
  }
  .unit-intro div.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: calc(32 / var(--base) * 100vw);
    padding: calc(40 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) 0 calc(40 / var(--base) * 100vw);
    align-items: start;
    justify-content: space-between;
  }
  .unit-intro div.row .content {
    padding: 0;
  }
  .unit-intro div.row .content:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .unit-intro div.row .content:nth-of-type(2) {
    grid-column: 1/3;
    grid-row: 2;
  }
  .unit-intro div.row figure {
    grid-template-columns: auto;
    gap: calc(32 / var(--base) * 100vw);
    grid-column: 1;
    grid-row: 1;
  }
  .unit-intro div.row figure picture:nth-of-type(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .unit-intro .lead-2 {
    margin-bottom: calc(11 / var(--base) * 100vw);
    line-height: 1.8;
    font-size: calc(20 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .unit-intro {
    margin-top: min(80px, 80 / var(--base) * 100vw);
    padding-bottom: min(64px, 64 / var(--base) * 100vw);
  }
  .unit-intro .content {
    padding: min(32px, 32 / var(--base) * 100vw) min(190px, 190 / var(--base) * 100vw) min(32px, 32 / var(--base) * 100vw) min(190px, 190 / var(--base) * 100vw);
  }
  .unit-intro .content.content1 {
    padding-top: calc(32 / var(--base) * 100vw);
    padding-bottom: calc(32 / var(--base) * 100vw);
    background-size: cover;
    background-position: center center;
    padding-top: min(80px, 80 / var(--base) * 100vw);
    background-color: transparent;
  }
  .unit-intro .content.content1 .inner {
    margin: 0 auto;
    width: min(1060px, 1060 / var(--base) * 100vw);
  }
  .unit-intro .content.content1 .title-mid {
    margin-left: 0;
  }
  .unit-intro .content.content1 p {
    width: min(510px, 510 / var(--base) * 100vw);
  }
  .unit-intro .content.content1 .lead-1 {
    margin-bottom: min(16px, 16 / var(--base) * 100vw);
    font-size: min(32px, 32 / var(--base) * 100vw);
    width: auto;
  }
  .unit-intro .content.content1 .lead-1:nth-of-type(2) {
    margin-bottom: min(32px, 32 / var(--base) * 100vw);
  }
  .unit-intro div.row {
    margin: 0 auto;
    padding: min(48px, 48 / var(--base) * 100vw) 0;
    width: min(1060px, 1060 / var(--base) * 100vw);
    gap: min(40px, 40 / var(--base) * 100vw);
  }
  .unit-intro div.row figure {
    gap: min(40px, 40 / var(--base) * 100vw);
    grid-row: 1/3;
  }
  .unit-intro div.row .content:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }
  .unit-intro .lead-2 {
    margin-bottom: calc(11 / var(--base) * 100vw);
    line-height: 1.8;
    font-size: min(24px, 24 / var(--base) * 100vw);
  }
}

.unit-summary {
  background-image: url(../images/summary_1.webp);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: var(--color-main);
}
.unit-summary .content {
  margin: 0 calc(32 / var(--base) * 100vw);
}
.unit-summary .title-mid {
  margin-bottom: calc(240 / var(--base) * 100vw);
}
.unit-summary .lead {
  margin-bottom: calc(11 / var(--base) * 100vw);
  line-height: 1.8;
  font-size: calc(20 / var(--base) * 100vw);
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.unit-summary p {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 768px) {
  .unit-summary {
    background-image: url(../images/summary_1_md.webp);
    background-size: auto 100%;
    background-position: 70% 0;
    background-color: transparent;
  }
  .unit-summary .content {
    margin: 0 calc(40 / var(--base) * 100vw);
    padding: calc(40 / var(--base) * 100vw);
    background-color: rgba(0, 0, 0, 0.5);
    width: 60%;
    box-sizing: border-box;
  }
  .unit-summary .title-mid {
    margin-left: 0;
    padding: 0;
    margin-bottom: calc(32 / var(--base) * 100vw);
    background-color: transparent;
    color: #fff;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .unit-summary {
    background-size: cover;
    background-position: center center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .unit-summary .content {
    margin: 0 auto;
    padding: min(112px, 112 / var(--base) * 100vw) 0;
    width: min(1280px, 1280 / var(--base) * 100vw);
    background-image: none;
    background-color: transparent;
  }
  .unit-summary .content .inner {
    margin: 0 auto 0 0;
    padding: min(40px, 40 / var(--base) * 100vw);
    background-color: rgba(0, 0, 0, 0.5);
    width: min(730px, 730 / var(--base) * 100vw);
    box-sizing: border-box;
  }
  .unit-summary .title-mid {
    margin-left: 0;
    padding: 0;
    margin-bottom: min(32px, 32 / var(--base) * 100vw);
  }
  .unit-summary .lead {
    margin-bottom: min(16px, 16 / var(--base) * 100vw);
    font-size: min(32px, 32 / var(--base) * 100vw);
  }
}

.unit-character {
  padding-left: calc(32 / var(--base) * 100vw);
  padding-right: calc(32 / var(--base) * 100vw);
}
.unit-character .portrait {
  margin: 0 auto calc(16 / var(--base) * 100vw) auto;
  width: calc(230 / var(--base) * 100vw);
}
.unit-character .history-title {
  margin: calc(44 / var(--base) * 100vw) auto calc(19 / var(--base) * 100vw) auto;
  padding: calc(3 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  color: var(--color-main);
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid currentColor;
  background-color: #fff;
}
.unit-character .list-history .item {
  margin: calc(36 / var(--base) * 100vw) auto calc(19 / var(--base) * 100vw) auto;
}
.unit-character .list-history dl {
  display: grid;
  grid-template-columns: 1fr calc(106 / var(--base) * 100vw);
  gap: 0 calc(20 / var(--base) * 100vw);
}
.unit-character .list-history dl:not(:has(dd:nth-of-type(2))) {
  grid-template-columns: 1fr;
  gap: 0;
}
.unit-character .list-history dl:not(:has(dd:nth-of-type(2))) dd {
  grid-column: auto;
}
.unit-character .list-history dt {
  margin-bottom: calc(12 / var(--base) * 100vw);
  padding: calc(3 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  text-align: center;
  color: #fff;
  background-color: var(--color-main);
  font-family: var(--font-sans);
  font-size: calc(16 / var(--base) * 100vw);
  font-weight: 400;
  width: min(168px, 168 / var(--base) * 100vw);
  box-sizing: border-box;
  grid-column: 1/3;
}
.unit-character .list-history dd:nth-of-type(1) {
  padding: calc(12 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  background-color: #fff;
  font-size: calc(14 / var(--base) * 100vw);
  grid-row: 2;
  grid-column: 1;
}
@media screen and (min-width: 768px) {
  .unit-character {
    padding-left: calc(40 / var(--base) * 100vw);
    padding-right: calc(40 / var(--base) * 100vw);
  }
  .unit-character .content {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-rows: auto auto;
    gap: 0 calc(32 / var(--base) * 100vw);
  }
  .unit-character .name {
    grid-column: 1/3;
    grid-row: 1;
  }
  .unit-character .portrait {
    grid-column: 1;
    grid-row: 2;
    width: auto;
  }
  .unit-character p {
    grid-column: 2;
    grid-row: 2;
  }
  .unit-character .history-title {
    margin: calc(44 / var(--base) * 100vw) auto calc(27 / var(--base) * 100vw) auto;
    padding: calc(3 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  }
  .unit-character .list-history {
    position: relative;
  }
  .unit-character .list-history::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--color-main);
    position: absolute;
    left: 50%;
    top: 0;
  }
  .unit-character .list-history .item {
    margin: 0;
  }
  .unit-character .list-history .item:nth-of-type(2n) dt::before {
    display: block;
  }
  .unit-character .list-history .item:nth-of-type(2n) dt::after {
    display: none;
  }
  .unit-character .list-history .item:nth-of-type(2n) dd:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .unit-character .list-history .item:nth-of-type(2n) dd:nth-of-type(2) {
    grid-column: 1;
    grid-row: 1;
  }
  .unit-character .list-history .item:nth-of-type(2n) dl:not(:has(dd:nth-of-type(2))) dd {
    grid-column: 1/3;
  }
  .unit-character .list-history .item:last-of-type dl::after {
    content: "";
    width: 50%;
    height: 100%;
    background-color: var(--color-bg);
    position: absolute;
    left: 40%;
    z-index: 0;
  }
  .unit-character .list-history .item:nth-of-type(2) {
    margin-top: calc(-32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(5) {
    margin-top: calc(-32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(6) {
    margin-top: calc(-240 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(7) {
    margin-top: calc(-146 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(8) {
    margin-top: calc(-16 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(10) {
    margin-top: calc(-32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(11) {
    margin-top: calc(-64 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(12) {
    margin-top: calc(-32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(13) {
    margin-top: calc(-32 / var(--base) * 100vw);
  }
  .unit-character .list-history dl {
    display: grid;
    grid-template-columns: calc(180 / 1440 * 100vw) calc(290 / 1440 * 100vw) calc(180 / 1440 * 100vw) calc(290 / 1440 * 100vw) calc(180 / 1440 * 100vw);
    grid-template-columns: 16% 1fr 20% 1fr 16%;
    gap: 0 calc(24 / 1440 * 100vw);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
  }
  .unit-character .list-history dl:not(:has(dd:nth-of-type(2))) {
    grid-template-columns: 16% 1fr 20% 1fr 16%;
    gap: 0 calc(16 / 1440 * 100vw);
  }
  .unit-character .list-history dl:not(:has(dd:nth-of-type(2))) dd:nth-of-type(1) {
    grid-column: 4/6;
    grid-row: 1;
  }
  .unit-character .list-history dt {
    grid-column: 3;
    margin-bottom: calc(12 / var(--base) * 100vw);
    padding: calc(3 / var(--base) * 100vw) 0;
    font-size: calc(12 / var(--base) * 100vw);
    width: auto;
    align-self: self-start;
    position: relative;
    z-index: 2;
  }
  .unit-character .list-history dt::before, .unit-character .list-history dt::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    top: 50%;
  }
  .unit-character .list-history dt::before {
    display: none;
    left: -30px;
    z-index: 1;
  }
  .unit-character .list-history dt::after {
    right: -30px;
    z-index: 1;
  }
  .unit-character .list-history dd {
    align-self: self-start;
    position: relative;
    z-index: 2;
  }
  .unit-character .list-history dd:nth-of-type(1) {
    grid-column: 4;
    grid-row: 1;
    padding: calc(12 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
    background-color: #fff;
    font-size: calc(13 / var(--base) * 100vw);
  }
  .unit-character .list-history dd:nth-of-type(2) {
    grid-column: 5;
    grid-row: 1;
  }
}
@media screen and (min-width: 1024px) {
  .unit-character {
    padding-left: 0;
    padding-right: 0;
  }
  .unit-character .content {
    margin: 0 auto;
    width: min(1060px, 1060 / var(--base) * 100vw);
    grid-template-columns: min(400px, 400 / var(--base) * 100vw) 1fr;
    gap: 0 min(40px, 40 / var(--base) * 100vw);
  }
  .unit-character .history-title {
    margin: min(42px, 42 / var(--base) * 100vw) auto;
    padding: min(10px, 10 / var(--base) * 100vw) min(28px, 28 / var(--base) * 100vw);
    font-size: min(24px, 24 / var(--base) * 100vw);
  }
  .unit-character .list-history {
    margin: 0 auto;
    width: min(1280px, 1280 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(2) {
    margin-top: min(-32px, -32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(5) {
    margin-top: min(-32px, -32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(6) {
    margin-top: min(-32px, -32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(7) {
    margin-top: min(-146px, -146 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(8) {
    margin-top: min(-16px, -16 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(10) {
    margin-top: min(-32px, -32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(11) {
    margin-top: min(-64px, -64 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(12) {
    margin-top: min(-32px, -32 / var(--base) * 100vw);
  }
  .unit-character .list-history .item:nth-of-type(13) {
    margin-top: 0;
  }
  .unit-character .list-history dl {
    grid-template-columns: min(180px, 180 / var(--base) * 100vw) 1fr min(180px, 180 / var(--base) * 100vw) 1fr min(180px, 180 / var(--base) * 100vw);
    gap: 0 min(40px, 40 / var(--base) * 100vw);
  }
  .unit-character .list-history dl:not(:has(dd:nth-of-type(2))) {
    grid-template-columns: min(180px, 180 / var(--base) * 100vw) 1fr min(180px, 180 / var(--base) * 100vw) 1fr min(180px, 180 / var(--base) * 100vw);
    gap: 0 min(40px, 40 / var(--base) * 100vw);
  }
  .unit-character .list-history dt {
    margin-bottom: min(12px, 12 / var(--base) * 100vw);
    padding: min(4px, 4 / var(--base) * 100vw) 0;
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .unit-character .list-history dt::before, .unit-character .list-history dt::after {
    width: min(100px, 100 / var(--base) * 100vw);
  }
  .unit-character .list-history dt::before {
    left: max(-95 / var(--base) * 100vw, -95px);
  }
  .unit-character .list-history dt::after {
    right: max(-95 / var(--base) * 100vw, -95px);
  }
  .unit-character .list-history dd:nth-of-type(1) {
    padding: min(12px, 12 / var(--base) * 100vw) min(20px, 20 / var(--base) * 100vw);
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
}

.unit-staff figure {
  margin: 0 auto calc(24 / var(--base) * 100vw) auto;
  width: calc(153 / var(--base) * 100vw);
}
.unit-staff p {
  margin: 0 calc(32 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-staff {
    padding-left: calc(40 / var(--base) * 100vw);
    padding-right: calc(40 / var(--base) * 100vw);
  }
  .unit-staff .row {
    display: flex;
    flex-direction: row-reverse;
    gap: 0 calc(32 / var(--base) * 100vw);
  }
  .unit-staff .row figure {
    width: 30%;
  }
  .unit-staff .row p {
    margin: 0;
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .unit-staff {
    padding-right: 0;
    padding-left: 0;
  }
  .unit-staff .row {
    margin: 0 auto;
    width: min(1060px, 1060 / var(--base) * 100vw);
    gap: 0 min(40px, 40 / var(--base) * 100vw);
  }
  .unit-staff .row figure {
    width: min(400px, 400 / var(--base) * 100vw);
  }
  .unit-staff .row figure img {
    width: min(290px, 290 / var(--base) * 100vw);
  }
}

.unit-comments {
  background-color: #fff;
}
.unit-comments .comment-note {
  margin: calc(20 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) 0 calc(20 / var(--base) * 100vw);
  text-align: right;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .unit-comments .comment-note {
    margin: 0 calc(40 / 768 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .unit-comments .comment-note {
    margin: 0 auto;
    width: min(1060px, 1060 / 1440 * 100vw);
  }
}

.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: var(--color-bg);
  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 {
  font-size: 16px;
}
.list-comments .content p:not(:last-of-type) {
  margin-bottom: 1.2em;
}
.list-comments .content b {
  font-weight: 700;
}
.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-serif);
  font-weight: 400;
}
.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 / 768 * 100vw);
  }
  .list-comments .item {
    padding: calc(40 / 768 * 100vw);
    width: min(620px, 80%);
  }
  .list-comments .item:not(:last-of-type) {
    margin-bottom: calc(40 / 768 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .list-comments {
    margin: 0 auto;
    width: min(1060px, 1060 / 1440 * 100vw);
  }
  .list-comments .item {
    padding: min(40px, 40 / 1440 * 100vw);
    width: min(720px, 720 / 1440 * 100vw);
  }
  .list-comments .item:not(:last-of-type) {
    margin-bottom: min(56px, 56 / 1440 * 100vw);
  }
}

.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-main);
  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(16 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  white-space: nowrap;
  font-size: calc(14 / var(--base) * 100vw);
  vertical-align: middle;
}
.table-schedule td {
  padding: calc(16 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  white-space: nowrap;
  font-size: calc(14 / 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);
  border-bottom: 2px solid currentColor;
}
.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 table {
    width: 100%;
  }
  .table-schedule th,
  .table-schedule td {
    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;
    padding: 0;
    width: min(1026px, 1026 / var(--base) * 100vw);
    overflow-x: hidden;
  }
  .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-present {
  padding-left: calc(30 / var(--base) * 100vw);
  padding-right: calc(30 / var(--base) * 100vw);
}
.unit-present .title {
  margin-bottom: calc(19 / var(--base) * 100vw);
  text-align: center;
  font-weight: 400;
  font-size: calc(20 / var(--base) * 100vw);
  line-height: 1.5;
}
.unit-present .photo {
  margin-bottom: calc(8 / var(--base) * 100vw);
}
.unit-present p {
  font-size: calc(14 / var(--base) * 100vw);
}
.unit-present .detail {
  margin: calc(12 / var(--base) * 100vw) 0 calc(28 / var(--base) * 100vw) 0;
  padding: calc(12 / var(--base) * 100vw) calc(12 / var(--base) * 100vw);
  background-color: #fff;
}
.unit-present .detail .title {
  margin-bottom: calc(5 / var(--base) * 100vw);
  font-size: calc(16 / var(--base) * 100vw);
  text-align: left;
  line-height: 1.6;
  font-weight: 700;
  font-family: var(--font-sans);
}
.unit-present .detail table {
  font-size: calc(12 / var(--base) * 100vw);
  width: 100%;
  font-family: var(--font-sans);
}
.unit-present .about {
  padding: calc(12 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  border: 1px solid var(--color-lightbrown);
}
.unit-present .about .logo {
  margin: 0 auto calc(16 / var(--base) * 100vw) auto;
  width: calc(80 / var(--base) * 100vw);
}
.unit-present .about .title {
  font-size: calc(16 / var(--base) * 100vw);
}
.unit-present .about p {
  font-size: calc(12 / var(--base) * 100vw);
}
.unit-present .about .links {
  margin: calc(20 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) 0 calc(20 / var(--base) * 100vw);
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(8 / var(--base) * 100vw) calc(8 / var(--base) * 100vw);
  line-height: 1.5;
}
.unit-present .about .links .item {
  width: 100%;
  text-align: center;
}
.unit-present .about .links .item.icon {
  margin-top: calc(4 / var(--base) * 100vw);
  width: calc(32 / var(--base) * 100vw);
}
.unit-present .about .links .svg {
  width: calc(32 / var(--base) * 100vw);
  height: calc(32 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .unit-present {
    padding-left: calc(40 / var(--base) * 100vw);
    padding-right: calc(40 / var(--base) * 100vw);
  }
  .unit-present .title {
    margin-bottom: calc(26 / var(--base) * 100vw);
    font-size: calc(28 / var(--base) * 100vw);
  }
  .unit-present .lead {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: min(16px, 16 / var(--base) * 100vw);
  }
  .unit-present .detail {
    padding: calc(20 / var(--base) * 100vw) 0;
  }
  .unit-present .detail .title {
    text-align: center;
    font-size: min(18px, 18 / var(--base) * 100vw);
  }
  .unit-present .detail table {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .unit-present .detail td {
    padding: 0 5px;
  }
  .unit-present .about {
    display: grid;
    grid-template-columns: min(120px, 120 / var(--base) * 100vw) 1fr;
    grid-template-rows: auto auto auto auto;
    align-items: start;
    padding: calc(20 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) calc(12 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  }
  .unit-present .about .logo {
    grid-column: 1;
    grid-row: 1/5;
  }
  .unit-present .about .title {
    margin: 0;
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
  .unit-present .about p {
    margin: 0;
    grid-column: 2;
    grid-row: 2/4;
    font-size: min(14px, 14 / var(--base) * 100vw);
  }
  .unit-present .about .links {
    margin: 0;
    grid-column: 2;
    grid-row: 4;
    align-items: center;
    gap: min(20px, 20 / var(--base) * 100vw);
  }
  .unit-present .about .links .item {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .unit-present {
    padding-left: auto;
    padding-right: auto;
  }
  .unit-present .title {
    margin-bottom: min(40px, 40 / var(--base) * 100vw);
    font-size: min(32px, 32 / var(--base) * 100vw);
  }
  .unit-present .lead {
    margin: 0 auto;
    width: min(840px, 840 / var(--base) * 100vw);
    gap: min(40px, 40 / var(--base) * 100vw);
  }
  .unit-present .lead p {
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .unit-present .detail {
    margin: min(40px, 40 / var(--base) * 100vw) auto;
    width: min(840px, 840 / var(--base) * 100vw);
    padding: min(24px, 24 / var(--base) * 100vw) 0;
  }
  .unit-present .detail .title {
    font-size: min(18px, 18 / var(--base) * 100vw);
  }
  .unit-present .detail table {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    font-size: min(16px, 16 / var(--base) * 100vw);
  }
  .unit-present .detail td {
    padding: 0 5px;
  }
  .unit-present .about {
    margin: 0 auto;
    width: min(620px, 620 / var(--base) * 100vw);
    padding: min(20px, 20 / var(--base) * 100vw) min(20px, 20 / var(--base) * 100vw) min(12px, 12 / var(--base) * 100vw) min(20px, 20 / var(--base) * 100vw);
    gap: 0 min(16px, 16 / var(--base) * 100vw);
  }
  .unit-present .about .logo {
    grid-column: 1;
    grid-row: 1/5;
  }
  .unit-present .about .title {
    margin: 0;
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
  .unit-present .about p {
    margin: 0;
    grid-column: 2;
    grid-row: 2/4;
    font-size: min(14px, 14 / var(--base) * 100vw);
  }
  .unit-present .about .links {
    margin-top: min(16px, 16 / var(--base) * 100vw);
    gap: min(4px, 4 / var(--base) * 100vw);
    font-size: min(14px, 14 / var(--base) * 100vw);
    justify-content: start;
  }
  .unit-present .about .links .item {
    width: 100%;
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */