@charset "UTF-8";



html {
  font-size: 1.25vw;
}

body {
  background-color: #FAF0E4;
  overflow-x: clip;
}

.only-pc {
  display: block;
}

.only-sp {
  display: none;
}

/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  overflow-x: clip;
  font-size: 100%;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

.footer {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  margin-top: 105px;
  margin-top: 6.5625rem;
  width: 1200px;
  width: 75rem;
  max-width: 100%;
}

.footer__top-area {
  padding-block: 20px 40px;
  padding-block: 1.25rem 2.5rem;
  position: relative;
}

.footer__inner {
  padding-inline: 96px;
  padding-inline: 6rem;
}

.footer__info {
  gap: 64px;
  gap: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.footer__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 151px;
  width: 9.4375rem;
}

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

.footer__contact {
  margin-top: 21px;
  margin-top: 1.3125rem;
}

.footer__address {
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 200;
  line-height: 1.5;
}

.footer__tel {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3px;
  margin-top: .1875rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.06;
}

.footer__tel-icon {
  width: 18px;
  width: 1.125rem;
  height: auto;
}

.footer__sns {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.footer__sns-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  width: 40px;
  width: 2.5rem;
}

.footer__sns-item img {
  width: auto;
  max-height: 37px;
  max-height: 2.3125rem;
}

.footer__credit {
  -webkit-box-shadow: 0 -.125rem .3125rem rgba(0, 0, 0, .1);
  box-shadow: 0 -.125rem .3125rem rgba(0, 0, 0, .1);
  background-color: #e6e6e6;
}

.footer__credit-inner {
  margin-inline: auto;
  padding-block: 18px;
  padding-block: 1.125rem;
  padding-inline: 96px;
  padding-inline: 6rem;
  width: 1200px;
  width: 75rem;
  max-width: 100%;
}

.footer__credit-text {
  color: #333;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 200;
  line-height: 1.5;
}

.footer__credit-grant {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 200;
  line-height: 1.72;
}

.footer__credit-grant-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.footer__credit-logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 44px;
  width: 2.75rem;
  height: auto;
}

.footer__copyright {
  padding-block: 16px;
  padding-block: 1rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 200;
  letter-spacing: .12em;
  line-height: 1.4;
  text-align: center;
}

.footer__pagetop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 171px;
  top: 10.6875rem;
  right: 171px;
  right: 10.6875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-box-shadow: 0 .1875rem .75rem rgba(0, 0, 0, .2);
  box-shadow: 0 .1875rem .75rem rgba(0, 0, 0, .2);
  border-radius: 100%;
  background-color: #666;
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  color: #fff;
}

.footer__pagetop-arrow {
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1;
}

.footer__pagetop-text {
  margin-bottom: 6px;
  margin-bottom: .375rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

.header__inner {
  margin-inline: auto;
  padding-inline: 90px;
  padding-inline: 5.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #1d2087;
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  height: 95px;
  height: 5.9375rem;
}

.header__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__logo-link {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.05;
}

.header__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__item {
  position: relative;
}

.header__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  width: 1px;
  height: 45px;
  height: 2.8125rem;
  content: '';
}

.header__item:last-child::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  width: 1px;
  height: 45px;
  height: 2.8125rem;
  content: '';
}

.header__link {
  gap: 2px;
  gap: .125rem;
  padding-inline: 27px;
  padding-inline: 1.6875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.header__link-en {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
}

.header__link-ja {
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  line-height: 1.4;
}

.header__hamburger {
  display: none;
}

.header__hamburger span {
  display: block;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
  background-color: #1d2087;
  width: 100%;
  height: 2px;
  height: .125rem;
}

.header__hamburger.is-active span {
  background-color: #fff;
}

.header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(.625rem) rotate(45deg);
  transform: translateY(.625rem) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-.625rem) rotate(-45deg);
  transform: translateY(-.625rem) rotate(-45deg);
}

.is-nav-locked {
  overflow: hidden;
}

.body {
  position: relative;
  overflow-x: clip;
}

.body::before, .body::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 25px;
  width: 1.5625rem;
  pointer-events: none;
  content: '';
}

.body::before {
  translate: -100% 0;
  left: calc(50% - 37.5rem);
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .09)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to left, rgba(0, 0, 0, .09), rgba(0, 0, 0, 0));
}

.body::after {
  translate: 100% 0;
  right: calc(50% - 37.5rem);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .09)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, .09), rgba(0, 0, 0, 0));
}

.bg-deco {
  display: none;
}

.bg-deco::before, .bg-deco::after {
  position: absolute;
  top: 0;
  background-image: url('../img/top/ex-back-side.webp');
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  width: calc((100% - 1200px) / 2);
  height: 100%;
  content: '';
}

.bg-deco::before {
  left: 0;
}

.bg-deco::after {
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.main {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  background-color: #fff;
  width: 1200px;
  width: 75rem;
  max-width: 100%;
}

.fv {
  padding-top: 95px;
  padding-top: 5.9375rem;
}

.fv__title {
  margin: 0;
}

.fv__img {
  display: block;
  width: 100%;
  height: auto;
}

.schedule-area {
  position: relative;
  z-index: 1;
  margin-top: -260px;
  margin-top: -16.25rem;
}

.sns {
  position: absolute;
  top: -136px;
  top: -8.5rem;
  left: 201px;
  left: 12.5625rem;
  z-index: 2;
}

.sns__wrap {
  border-radius: .9375rem;
  background-color: #fff;
  padding: 10px;
  padding: .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.sns__box {
  padding-block: 24px 6px;
  padding-block: 1.5rem .375rem;
  padding-inline: 5px;
  padding-inline: .3125rem;
  border: 1px solid #1d2087;
  border-radius: .9375rem;
  background-color: rgba(255, 255, 255, .8);
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
  text-align: center;
}

.sns__lead {
  display: inline-block;
  position: relative;
  color: #1d2087;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.sns__lead::before, .sns__lead::after {
  translate: 0 -50%;
  position: absolute;
  top: 50%;
  background-color: #1d2087;
  width: 4px;
  width: .25rem;
  height: 72px;
  height: 4.5rem;
  content: '';
}

.sns__lead::before {
  top: 35px;
  top: 2.1875rem;
  left: -15px;
  left: -.9375rem;
  rotate: -12deg;
}

.sns__lead::after {
  top: 35px;
  top: 2.1875rem;
  right: -15px;
  right: -.9375rem;
  rotate: 12deg;
}

.sns__icons {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 12px;
  margin-top: .75rem;
}

.sns__link {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.sns__icon img {
  aspect-ratio: 1/1;
  width: 37px;
  width: 2.3125rem;
  height: auto;
}

.sns__hash {
  margin-top: 8px;
  margin-top: .5rem;
  line-height: 1.4;
}

.sns__hash-tag {
  color: #e95689;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.sns__hash-search {
  color: #3e3a39;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.schedule {
  position: relative;
  z-index: 1;
}

.schedule__inner {
  margin-inline: auto;
  padding-block: 60px;
  padding-block: 3.75rem;
  padding-inline: 65px;
  padding-inline: 4.0625rem;
  background-color: #f4f3f9;
  width: 900px;
  width: 56.25rem;
  max-width: 100%;
}

.schedule__list {
  margin-top: 59px;
  margin-top: 3.6875rem;
}

.section-head {
  text-align: center;
}

.section-head__en {
  color: #1d2087;
  font-family: 'Roboto Slab', serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.5;
}

.section-head__ja {
  margin-top: -4px;
  margin-top: -.25rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.story .section-head__en {
  font-size: 28px;
  font-size: 1.75rem;
}

.accordion {
  border-bottom: 1px solid #1d2087;
}

.schedule__item:first-child .accordion {
  border-top: 1px solid #1d2087;
}

.accordion__summary {
  gap: 13px;
  gap: .8125rem;
  padding-block: 23.5px;
  padding-block: 1.46875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: pointer;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 10px;
  padding-left: .625rem;
  list-style: none;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.schedule__item .accordion__summary {
  display: grid;
  grid-template-columns: 6.25rem 18.75rem 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
}

.schedule__item .accordion__date {
  margin-left: 47px;
  margin-left: 2.9375rem;
  line-height: 1.7692307692;
}

.schedule__item .accordion__place {
  margin-left: 8px;
  margin-left: .5rem;
}

.accordion__name {
  color: #1d2087;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.4;
}

.accordion__date,
.accordion__place {
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.4;
}

.accordion__icon {
  translate: 0 -50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  right: 10px;
  right: .625rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #1d2087;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
}

.accordion.is-open > .accordion__summary .accordion__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion__body {
  padding-block: 40px 32px;
  padding-block: 2.5rem 2rem;
  padding-inline: 50px;
  padding-inline: 3.125rem;
  background-color: #fff;
  overflow: hidden;
}

.schedule__item:not(:first-child) .accordion__body {
  padding-block: 25px;
  padding-block: 1.5625rem;
}

.accordion__text {
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.75;
}

.accordion__text--second {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.accordion__mark {
  color: #1d2087;
}

.accordion__tri::before {
  translate: 0 -2px;
  translate: 0 -.125rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-right: .5rem;
  border-width: 7px 5px 0;
  border-width: .4375rem .3125rem 0;
  border-style: solid;
  border-color: #4d4d4d transparent transparent;
  content: '';
}

.accordion__grant {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.accordion__grant-logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 54px;
  width: 3.375rem;
  height: auto;
}

.accordion__text--grant {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.accordion__link {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  color: #1d2087;
  text-decoration: none;
}

.accordion__info-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.accordion__info-item {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.accordion__info-item:nth-child(2) {
  margin-top: 44px;
  margin-top: 2.75rem;
}

.accordion__info-item:nth-child(3) {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.accordion__info-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 25px;
  margin-left: 1.5625rem;
  width: 70px;
  width: 4.375rem;
  height: auto;
}

.accordion__info-icon--big {
  aspect-ratio: 99/80;
  margin-left: 0;
  width: 99px;
  width: 6.1875rem;
}

.accordion__info-label {
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.75;
}

.accordion__info-item--tight {
  gap: 0;
}

.accordion__info-item--tight .accordion__info-label {
  margin-top: 7px;
  margin-top: .4375rem;
  line-height: 1;
}

.accordion__btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.accordion-project {
  border-bottom: 1px solid #1d2087;
}

.project__item:first-child .accordion-project {
  border-top: 1px solid #1d2087;
}

.accordion-project__summary {
  gap: 13px;
  gap: .8125rem;
  padding-block: 29px;
  padding-block: 1.8125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: pointer;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 10px;
  padding-left: .625rem;
  list-style: none;
}

.accordion-project__summary::-webkit-details-marker {
  display: none;
}

.accordion-project__name {
  color: #1d2087;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.4;
  white-space: normal;
}

.accordion-project__icon {
  translate: 0 -50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  right: 10px;
  right: .625rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #1d2087;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
}

.accordion-project.is-open > .accordion-project__summary .accordion-project__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-project__body {
  padding-block: 35px 25px;
  padding-block: 2.1875rem 1.5625rem;
  padding-inline: 50px;
  padding-inline: 3.125rem;
  background-color: #fff;
  overflow: hidden;
}

.accordion-project__text {
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.75;
}

.accordion-project__link {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  color: #1d2087;
  text-decoration: none;
}

.button {
  padding-block: 10px;
  padding-block: .625rem;
  padding-inline: 32px;
  padding-inline: 2rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .3s, color .3s, border-color .3s;
  transition: background-color .3s, color .3s, border-color .3s;
  border: 1px solid #1d2087;
  border-radius: 2.1875rem;
  background-color: #fff;
  min-height: 70px;
  min-height: 4.375rem;
}

.button__label {
  -webkit-transition: color .3s;
  transition: color .3s;
  color: #1d2087;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.4;
}

.button__note {
  -webkit-transition: color .3s;
  transition: color .3s;
  margin-top: 2px;
  margin-top: .125rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.4;
}

.button--fill {
  border-color: #1d2087;
  background-color: #1d2087;
}

.button--fill .button__label,
.button--fill .button__note {
  color: #fff;
}

.story {
  margin-top: 110px;
  margin-top: 6.875rem;
}

.story__inner {
  margin-inline: auto;
  position: relative;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  width: 640px;
  width: 40rem;
  max-width: 100%;
}

.story__deco {
  position: absolute;
  top: -34px;
  top: -2.125rem;
  right: -369px;
  right: -23.0625rem;
  width: 330px;
  width: 20.625rem;
  height: auto;
}

.story__label {
  color: #1d2087;
  font-family: 'Roboto Slab', serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.4;
  text-align: center;
}

.story__num {
  margin-top: 16px;
  margin-top: 1rem;
  color: #666;
  font-family: 'Roboto Slab', serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: .76;
  text-align: center;
}

.story .section-head {
  margin-top: 8px;
  margin-top: .5rem;
}

.story__text {
  margin-top: 35px;
  margin-top: 2.1875rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: .08em;
  line-height: 1.875;
  text-align: justify;
}

.story__lead {
  color: #1d2087;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1.6666666667;
}

.story__strong {
  font-weight: 600;
}

.concept {
  margin-top: 64px;
  margin-top: 4rem;
}

.concept__inner {
  margin-inline: auto;
  position: relative;
  width: 640px;
  width: 40rem;
  max-width: 100%;
}

.concept__deco {
  aspect-ratio: 255/64;
  position: absolute;
  top: -22px;
  top: -1.375rem;
  left: -337px;
  left: -21.0625rem;
  width: 254px;
  width: 15.875rem;
  height: auto;
}

.concept__en {
  color: #ccc;
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.concept__box {
  padding-block: 36px;
  padding-block: 2.25rem;
  padding-inline: 36px;
  padding-inline: 2.25rem;
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
  border: 1px solid #1d2087;
  background-color: #f4f3f9;
}

.concept__comma {
  position: absolute;
  top: -25px;
  top: -1.5625rem;
  left: 22px;
  left: 1.375rem;
  width: 52px;
  width: 3.25rem;
  height: auto;
}

.concept__text {
  color: #1d2087;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: .08em;
  line-height: 1.69;
}

.cast {
  margin-top: 120px;
  margin-top: 7.5rem;
  overflow-x: clip;
}

.cast__inner {
  margin-inline: auto;
  padding-block: 44px 55px;
  padding-block: 2.75rem 3.4375rem;
  padding-inline: 57px;
  padding-inline: 3.5625rem;
  position: relative;
  background-color: #f4f3f9;
  width: 900px;
  width: 56.25rem;
  max-width: 100%;
}

.cast .section-head__en {
  font-size: 28px;
  font-size: 1.75rem;
}

.cast__deco {
  aspect-ratio: 562/247;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  right: -112px;
  right: -7rem;
  width: 285px;
  width: 17.8125rem;
  height: auto;
}

.cast__list {
  row-gap: 70px;
  row-gap: 4.375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.3125rem;
  -moz-column-gap: 2.3125rem;
  column-gap: 2.3125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.cast__item {
  text-align: center;
}

.cast__photo {
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 1.25rem;
  width: 215px;
  width: 13.4375rem;
  overflow: hidden;
}

.cast__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cast__role {
  margin-top: 14px;
  margin-top: .875rem;
  min-height: 22px;
  min-height: 1.375rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.6;
}

.cast__name {
  margin-top: 4px;
  margin-top: .25rem;
  color: #1d2087;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.15;
}

.cast__roma {
  margin-top: 4px;
  margin-top: .25rem;
  color: #3e3a39;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.4;
}

.cast__desc {
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 10px;
  margin-top: .625rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.72;
  text-align: justify;
}

.cast__coming {
  margin-inline: auto;
  position: relative;
  margin-top: 136px;
  margin-top: 8.5rem;
  width: 648px;
  width: 40.5rem;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}

.cast__coming iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.staff {
  margin-top: 114px;
  margin-top: 7.125rem;
}

.staff__inner {
  margin-inline: auto;
  position: relative;
  width: 900px;
  width: 56.25rem;
  max-width: 100%;
}

.staff .section-head__en {
  font-size: 28px;
  font-size: 1.75rem;
}

.staff__deco {
  aspect-ratio: 410/166;
  position: absolute;
  top: -25px;
  top: -1.5625rem;
  left: -178px;
  left: -11.125rem;
  width: 205px;
  width: 12.8125rem;
  height: auto;
}

.staff__main {
  gap: 50px;
  gap: 3.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 53px;
  margin-top: 3.3125rem;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}

.staff__photo {
  aspect-ratio: 205/240;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 3px;
  margin-top: .1875rem;
  width: 205px;
  width: 12.8125rem;
}

.staff__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.staff__profile {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.staff__role {
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: .08em;
  line-height: 1.875;
}

.staff__desc {
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 200;
  letter-spacing: .08em;
  line-height: 1.72;
}

.staff__lists {
  gap: 112px;
  gap: 7rem;
  padding-inline: 32px;
  padding-inline: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 33px;
  margin-top: 2.0625rem;
}

.staff__list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.staff__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.staff__row dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  width: 166px;
  width: 10.375rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: .08em;
  line-height: 1.875;
}

.staff__row dt::after {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: 8px;
  margin-left: .5rem;
  background-image: radial-gradient(circle, #4d4d4d .0625rem, transparent .1rem);
  background-position: 0 center;
  background-repeat: repeat-x;
  background-size: .3125rem .1875rem;
  height: 3px;
  height: .1875rem;
  content: '';
}

.staff__row dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 8px;
  margin-left: .5rem;
  min-width: 0;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: .08em;
  line-height: 1.875;
}

.project {
  margin-top: 129px;
  margin-top: 8.0625rem;
}

.project .section-head__en {
  font-size: 28px;
  font-size: 1.75rem;
}

.project .section-head__ja {
  font-weight: 600;
}

.project__inner {
  margin-inline: auto;
  padding-block: 44px 55px;
  padding-block: 2.75rem 3.4375rem;
  padding-inline: 65px;
  padding-inline: 4.0625rem;
  position: relative;
  background-color: #f4f3f9;
  width: 900px;
  width: 56.25rem;
  max-width: 100%;
}

.project__deco {
  aspect-ratio: 608/246;
  position: absolute;
  top: -155px;
  top: -9.6875rem;
  right: -255px;
  right: -15.9375rem;
  width: 304px;
  width: 19rem;
  height: auto;
}

.project__list {
  margin-top: 32px;
  margin-top: 2rem;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

@media only screen and (min-width: 768px) {

  html {
    font-size: 1.3333333333vw;
    font-size: calc(var(--vw-unitless) / 1200 * 100%);
  }

  :root {
    --header-height: 80px;
  }
}

@media (min-width: 1200px) {

  html {
    font-size: 100%;
  }
}

@media only screen and (min-width: 1201px) {

  .bg-deco {
    inset: 0;
    display: block;
    position: fixed;
    z-index: 0;
    pointer-events: none;
  }
}

@media only screen and (min-width: 1281px) {

  html {
    --fv-zoom: calc(100vw / 1280px);
  }
}

@media only screen and (max-width: 767px) {

  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (max-width: 767px) {

  html {
    font-size: 4.2666666667vw;
  }

  .only-pc {
    display: none;
  }

  .only-sp {
    display: block;
  }

  .footer {
    margin-top: 46px;
    margin-top: 2.875rem;
  }

  .footer__top-area {
    padding-block: 0;
  }

  .footer__inner {
    padding-inline: 20px;
    padding-inline: 1.25rem;
  }

  .footer__info {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .footer__logo {
    width: 105px;
    width: 6.5625rem;
  }

  .footer__contact {
    margin-top: 13px;
    margin-top: .8125rem;
  }

  .footer__address {
    font-size: 13px;
    font-size: .8125rem;
    line-height: 1.6153846154;
    text-align: center;
  }

  .footer__tel {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .footer__tel-icon {
    width: 14px;
    width: .875rem;
  }

  .footer__sns {
    gap: 37px;
    gap: 2.3125rem;
    margin-top: 75px;
    margin-top: 4.6875rem;
  }

  .footer__sns-link {
    width: 30px;
    width: 1.875rem;
  }

  .footer__credit {
    margin-top: 41px;
    margin-top: 2.5625rem;
    -webkit-box-shadow: 0 -.0625rem .125rem rgba(0, 0, 0, .1);
    box-shadow: 0 -.0625rem .125rem rgba(0, 0, 0, .1);
  }

  .footer__credit-inner {
    padding-block: 28px 32px;
    padding-block: 1.75rem 2rem;
    padding-inline: 30px 5px;
    padding-inline: 1.875rem .3125rem;
  }

  .footer__credit-text {
    font-size: 10px;
    font-size: .625rem;
    line-height: 2;
  }

  .footer__credit-grant {
    gap: 0;
    margin-top: 5px;
    margin-top: .3125rem;
  }

  .footer__credit-grant-text {
    font-size: 10px;
    font-size: .625rem;
    line-height: 1.5;
  }

  .footer__credit-logo {
    width: 32px;
    width: 2rem;
  }

  .footer__copyright {
    padding-block: 11px;
    padding-block: .6875rem;
    font-size: 10px;
    font-size: .625rem;
  }

  .footer__pagetop {
    top: -96px;
    top: -6rem;
    right: 39px;
    right: 2.4375rem;
    width: 56px;
    width: 3.5rem;
    height: 56px;
    height: 3.5rem;
  }

  .footer__pagetop-text {
    margin-top: 0;
    margin-bottom: 9px;
    margin-bottom: .5625rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .header__inner {
    padding-inline: 10px;
    padding-inline: .625rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: transparent;
    height: 60px;
    height: 3.75rem;
  }

  .header__logo {
    display: none;
  }

  .header__nav {
    inset: 0;
    -webkit-backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(.25rem);
    position: fixed;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 1;
    backdrop-filter: blur(4px);
    backdrop-filter: blur(.25rem);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    background-color: rgba(29, 32, 135, .9);
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
  }

  .header.is-nav-open .header__nav {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .header__list {
    gap: min(30px, 30px);
    gap: min(1.875rem, 30px);
    padding-block: min(60px, 60px);
    padding-block: min(3.75rem, 60px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100%;
  }

  .header__item {
    translate: 0 12px;
    translate: 0 .75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: opacity .4s ease, translate .4s ease;
    transition: opacity .4s ease, translate .4s ease;
    width: 100%;
  }

  .header.is-nav-open .header__item {
    translate: 0 0;
    opacity: 1;
  }

  .header.is-nav-open .header__item:nth-child(1) {
    -webkit-transition-delay: .18s;
    transition-delay: .18s;
  }

  .header.is-nav-open .header__item:nth-child(2) {
    -webkit-transition-delay: .24s;
    transition-delay: .24s;
  }

  .header.is-nav-open .header__item:nth-child(3) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
  }

  .header.is-nav-open .header__item:nth-child(4) {
    -webkit-transition-delay: .36s;
    transition-delay: .36s;
  }

  .header.is-nav-open .header__item:nth-child(5) {
    -webkit-transition-delay: .42s;
    transition-delay: .42s;
  }

  .header.is-nav-open .header__item:nth-child(6) {
    -webkit-transition-delay: .48s;
    transition-delay: .48s;
  }

  .header__item::before {
    display: none;
  }

  .header__item:last-child::after {
    display: none;
  }

  .header__link {
    gap: min(6px, 6px);
    gap: min(.375rem, 6px);
    padding-block: min(4px, 4px);
    padding-block: min(.25rem, 4px);
    width: 100%;
  }

  .header__link-en {
    color: #fff;
    font-size: min(22px, 22px);
    font-size: min(1.375rem, 22px);
    letter-spacing: .08em;
  }

  .header__link-ja {
    color: rgba(255, 255, 255, .7);
    font-size: min(12px, 12px);
    font-size: min(.75rem, 12px);
    letter-spacing: .1em;
  }

  .header__hamburger {
    gap: 8px;
    gap: .5rem;
    padding-block: 10px;
    padding-block: .625rem;
    padding-inline: 8px;
    padding-inline: .5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    width: 44px;
    width: 2.75rem;
    height: 44px;
    height: 2.75rem;
  }

  .fv {
    padding-top: 0;
  }

  .schedule-area {
    margin-top: 0;
  }

  .sns {
    position: static;
  }

  .sns__wrap {
    margin-inline: auto;
  }

  .sns__box {
    padding-block: 0;
    border: none;
    width: 295px;
    width: 18.4375rem;
  }

  .sns__lead {
    font-size: 15px;
    font-size: .9375rem;
  }

  .sns__lead::before, .sns__lead::after {
    width: 3px;
    width: .1875rem;
    height: 65px;
    height: 4.0625rem;
  }

  .sns__icons {
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .sns__icon img {
    width: 29px;
    width: 1.8125rem;
    height: auto;
  }

  .sns__icon--facebook img {
    width: 31px;
    width: 1.9375rem;
    height: auto;
  }

  .sns__icon--x img {
    width: 24px;
    width: 1.5rem;
    height: auto;
  }

  .sns__hash {
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .sns__hash-tag {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .sns__hash-search {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .schedule {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }

  .schedule__inner {
    padding-block: 37px 45px;
    padding-block: 2.3125rem 2.8125rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
    width: 335px;
    width: 20.9375rem;
  }

  .schedule__list {
    margin-top: 33px;
    margin-top: 2.0625rem;
  }

  .section-head__en {
    font-size: 21px;
    font-size: 1.3125rem;
  }

  .section-head__ja {
    font-weight: 600;
  }

  .schedule .section-head__en {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1.75;
  }

  .schedule .section-head__ja {
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.5;
  }

  .story .section-head__en {
    font-size: 21px;
    font-size: 1.3125rem;
  }

  .accordion__summary {
    gap: 0;
    padding-block: 20px;
    padding-block: 1.25rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 35px;
    padding-right: 2.1875rem;
    padding-left: 5px;
    padding-left: .3125rem;
  }

  .schedule__item .accordion__summary {
    gap: 2px;
    gap: .125rem;
    padding-block: 15px 5px;
    padding-block: .9375rem .3125rem;
    grid-template-columns: 1fr;
  }

  .schedule__item .accordion__date,
  .schedule__item .accordion__place {
    margin-left: 0;
  }

  .accordion__name {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 900;
  }

  .accordion__date,
  .accordion__place {
    font-size: 13px;
    font-size: .8125rem;
    font-weight: 200;
    line-height: 1.77;
  }

  .schedule .accordion__name {
    line-height: 1;
  }

  .schedule .accordion__date,
  .schedule .accordion__place {
    font-weight: 500;
  }

  .accordion__icon {
    right: 5px;
    right: .3125rem;
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem;
  }

  .accordion__body {
    padding-block: 20px 30px;
    padding-block: 1.25rem 1.875rem;
    padding-inline: 15px;
    padding-inline: .9375rem;
  }

  .schedule__item:not(:first-child) .accordion__body {
    padding-block: 23px;
    padding-block: 1.4375rem;
  }

  .schedule__item .accordion__body {
    padding-block: 10px 22px;
    padding-block: .625rem 1.375rem;
  }

  .schedule .accordion__text {
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.42;
  }

  .schedule .accordion__text--second {
    margin-top: 6px;
    margin-top: .375rem;
  }

  .accordion__tri::before {
    margin-right: 3px;
    margin-right: .1875rem;
  }

  .accordion__grant {
    gap: 8px;
    gap: .5rem;
    margin-top: 12px;
    margin-top: .75rem;
  }

  .accordion__grant-logo {
    width: 48px;
    width: 3rem;
  }

  .accordion__info-list {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .accordion__info-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .schedule .accordion__info-item {
    gap: 4px;
    gap: .25rem;
  }

  .schedule .accordion__info-item:nth-child(2) {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .schedule .accordion__info-item:nth-child(3) {
    margin-top: 6px;
    margin-top: .375rem;
  }

  .schedule .accordion__info-icon {
    margin-left: 21px;
    margin-left: 1.3125rem;
    width: 56px;
    width: 3.5rem;
  }

  .schedule .accordion__info-icon--big {
    margin-left: 10px;
    margin-left: .625rem;
    width: 71px;
    width: 4.4375rem;
  }

  .schedule .accordion__info-label {
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.42;
  }

  .accordion__info-item--tight img {
    margin-top: 2px;
    margin-top: .125rem;
  }

  .accordion-project__summary {
    gap: 0;
    padding-block: 18px;
    padding-block: 1.125rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 35px;
    padding-right: 2.1875rem;
    padding-left: 5px;
    padding-left: .3125rem;
    min-height: 84px;
    min-height: 5.25rem;
  }

  .accordion-project__name {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.5;
  }

  .accordion-project__icon {
    right: 5px;
    right: .3125rem;
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem;
  }

  .accordion-project__body {
    padding-block: 20px 30px;
    padding-block: 1.25rem 1.875rem;
    padding-inline: 15px;
    padding-inline: .9375rem;
  }

  .accordion-project__text {
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.4166666667;
  }

  .schedule .button {
    padding-block: 6px;
    padding-block: .375rem;
    padding-inline: 39px;
    padding-inline: 2.4375rem;
    min-height: 43px;
    min-height: 2.6875rem;
  }

  .schedule .button__label {
    font-size: 10px;
    font-size: .625rem;
    line-height: 1;
  }

  .schedule .button__note {
    margin-top: 7px;
    margin-top: .4375rem;
    font-size: 9px;
    font-size: .5625rem;
    line-height: 1;
  }

  .story {
    margin-top: 167px;
    margin-top: 10.4375rem;
  }

  .story__inner {
    width: 295px;
    width: 18.4375rem;
  }

  .story__deco {
    aspect-ratio: 375/115;
    top: -112px;
    top: -7rem;
    right: -60px;
    right: -3.75rem;
    z-index: 1;
    width: 180px;
    width: 11.25rem;
  }

  .story__num {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .story .section-head {
    margin-top: 2px;
    margin-top: .125rem;
  }

  .story__text {
    margin-top: 45px;
    margin-top: 2.8125rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 2;
  }

  .story__lead {
    font-size: 17px;
    font-size: 1.0625rem;
    letter-spacing: .02em;
  }

  .concept {
    margin-top: 53px;
    margin-top: 3.3125rem;
  }

  .concept__inner {
    width: 295px;
    width: 18.4375rem;
  }

  .concept__deco {
    aspect-ratio: 281/117;
    top: 442px;
    top: 27.625rem;
    left: -48px;
    left: -3rem;
    width: 140px;
    width: 8.75rem;
  }

  .concept__box {
    margin-inline: -20px;
    margin-inline: -1.25rem;
    padding-block: 30px;
    padding-block: 1.875rem;
    padding-inline: 18px;
    padding-inline: 1.125rem;
    margin-top: 58px;
    margin-top: 3.625rem;
  }

  .concept__comma {
    aspect-ratio: 27/21;
    top: -15px;
    top: -.9375rem;
    left: 11px;
    left: .6875rem;
    width: 27px;
    width: 1.6875rem;
  }

  .cast {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .cast__inner {
    padding-inline: 20px;
    padding-inline: 1.25rem;
    background-color: rgba(255, 255, 255, 0);
    width: 335px;
    width: 20.9375rem;
  }

  .cast .section-head__en {
    font-size: 21px;
    font-size: 1.3125rem;
  }

  .cast__deco {
    aspect-ratio: 461/189;
    top: 1416px;
    top: 88.5rem;
    right: -99px;
    right: -6.1875rem;
    z-index: -1;
    width: 230px;
    width: 14.375rem;
  }

  .cast__list {
    row-gap: 85px;
    row-gap: 5.3125rem;
    grid-template-columns: 1fr;
    margin-top: 48px;
    margin-top: 3rem;
  }

  .cast__role {
    margin-top: 11px;
    margin-top: .6875rem;
  }

  .cast__roma {
    margin-top: 7px;
    margin-top: .4375rem;
  }

  .cast__desc {
    padding-inline: 0;
    margin-top: 20px;
    margin-top: 1.25rem;
    font-weight: 200;
  }

  .cast__coming {
    margin-top: 34px;
    margin-top: 2.125rem;
    width: 86%;
    height: auto;
  }

  .staff {
    margin-top: 63px;
    margin-top: 3.9375rem;
  }

  .staff__inner {
    width: 335px;
    width: 20.9375rem;
  }

  .staff .section-head__en {
    font-size: 21px;
    font-size: 1.3125rem;
  }

  .staff__deco {
    aspect-ratio: 385/171;
    top: -40px;
    top: -2.5rem;
    right: -100px;
    right: -6.25rem;
    left: auto;
    width: 192px;
    width: 12rem;
  }

  .staff__main {
    gap: 20px;
    gap: 1.25rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-bottom: 55px;
    padding-bottom: 3.4375rem;
  }

  .staff__photo {
    margin-top: 0;
    width: 170px;
    width: 10.625rem;
    height: auto;
  }

  .staff__desc {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .staff__lists {
    gap: 42px;
    gap: 2.625rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 48px;
    margin-top: 3rem;
  }

  .staff__list {
    width: 100%;
  }

  .staff__row dt {
    width: 172px;
    width: 10.75rem;
  }

  .project {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .project .section-head__en {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.2;
  }

  .project__inner {
    padding-inline: 20px;
    padding-inline: 1.25rem;
    padding-block: 68px;
    padding-block: 4.25rem;
    width: 335px;
    width: 20.9375rem;
  }

  .project__inner .section-head__ja {
    margin-top: 0;
  }

  .project__deco {
    aspect-ratio: 465/171;
    top: -35px;
    top: -2.1875rem;
    right: auto;
    left: -90px;
    left: -5.625rem;
    width: 232px;
    width: 14.5rem;
  }

  .project__list {
    margin-top: 47px;
    margin-top: 2.9375rem;
  }
}

@media (hover: hover) and (pointer: fine) {

  a:not([class]):hover {
    text-decoration: underline;
  }

  .footer__sns-link:hover {
    opacity: .6;
  }

  .footer__pagetop:hover {
    opacity: .7;
  }

  .header__logo-link:hover {
    opacity: .6;
  }

  .header__link:hover {
    opacity: .6;
  }

  .sns__link:hover {
    opacity: .6;
  }

  .accordion__summary:hover {
    opacity: .6;
  }

  .accordion__link:hover {
    opacity: .6;
  }

  .accordion-project__summary:hover {
    opacity: .6;
  }

  .accordion-project__link:hover {
    opacity: .6;
  }

  .button:hover {
    border-color: #1d2087;
    background-color: #1d2087;
  }

  .button:hover .button__label, .button:hover .button__note {
    color: #fff;
  }

  .button--fill:hover {
    opacity: .6;
  }
}
/*# sourceMappingURL=map/style.css.map */