@charset "UTF-8";



/************************************************************************
* 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: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 12.8px;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.6;
  -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;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
  background-color: #5FBFB3;
  font-size: 16px;
}

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;
  background-color: #5FBFB3;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

.only-pc {
  display: block;
}

.only-sp {
  display: none;
}

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

button {
  color: #3E3A39;
}

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

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

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: 19.2px;
  width: 1.2rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #3E3A39;
  width: 10.4px;
  width: .65rem;
  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: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

: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%);
  --header-height: 114.4px;
  --header-height: 7.15rem;
  --outside-bg: #5FBFB3;
}

.footer {
  width: 100%;
}

.footer__inner {
  margin-inline: auto;
  padding-block: 35.2px 38.4px;
  padding-block: 2.2rem 2.4rem;
  padding-inline: 122.4px;
  padding-inline: 7.65rem;
  background-color: #E5E5E4;
  width: 100%;
  max-width: 1456px;
  max-width: 91rem;
}

.footer__block {
  gap: 2.4px;
  gap: .15rem;
  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;
}

.footer__host {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.125;
}

.footer__grant {
  gap: 16px;
  gap: 1rem;
  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;
}

.footer__grant-label {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.125;
}

.footer__grant-logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 68px;
  width: 4.25rem;
  height: 69.6px;
  height: 4.35rem;
}

.footer__grant-logo img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__grant-text {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

.footer__copyright {
  padding-block: 21.6px;
  padding-block: 1.35rem;
  background-color: #fff;
  color: #4D4D4D;
  font-family: 'Noto Serif JP', 'YuMincho', 'Yu Mincho', serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 200;
  letter-spacing: .12em;
  line-height: 1.6;
  text-align: center;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #7F61A7;
  width: 100%;
  min-height: 114.4px;
  min-height: 7.15rem;
  color: #fff;
}

.header__inner {
  padding-inline: 40px 28px;
  padding-inline: 2.5rem 1.75rem;
  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;
  min-height: 114.4px;
  min-height: 7.15rem;
}

.header__logo {
  aspect-ratio: 135/95;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.header__logo-img {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  width: 108px;
  width: 6.75rem;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 4px;
  margin-top: .25rem;
  padding: 0;
  height: 52.8px;
  height: 3.3rem;
  list-style: none;
}

.header__nav-item {
  padding-inline: 26.4px;
  padding-inline: 1.65rem;
  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;
}

.header__nav-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  width: 2px;
  height: 100%;
  content: '';
}

.header__nav-item:last-child::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  width: 2px;
  height: 100%;
  content: '';
}

.header__nav-link {
  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;
  margin-top: 4px;
  margin-top: .25rem;
  color: #fff;
  text-decoration: none;
}

.header__nav-en {
  display: block;
  font-family: 'Josefin Sans', 'Arial', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}

.header__nav-ja {
  display: block;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 16.8px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
}

.header__hamburger {
  display: none;
}

.header__hamburger-line {
  display: block;
  -webkit-transition: opacity .3s, background-color .3s, -webkit-transform .3s;
  transition: opacity .3s, background-color .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s, background-color .3s;
  transition: transform .3s, opacity .3s, background-color .3s, -webkit-transform .3s;
  background-color: #7F61A7;
  width: 100%;
  height: 2.4px;
  height: .15rem;
}

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

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

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

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

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

.join-us {
  margin-inline: auto;
  padding-block: 96px 97.6px;
  padding-block: 6rem 6.1rem;
  margin-top: 80px;
  margin-top: 5rem;
  background-color: #E8F2E0;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.join-us__inner {
  margin-inline: auto;
  padding-inline: 68px;
  padding-inline: 4.25rem;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.join-us__heading {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.join-us__block {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.join-us__subheading {
  color: #7F61A7;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 30.4px;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.3157894737;
  text-align: center;
}

.join-us__group {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.join-us__label {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 27.2px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

.join-us__conditions {
  margin-top: 18.4px;
  margin-top: 1.15rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.join-us__audition {
  margin-top: 22.4px;
  margin-top: 1.4rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.1333333333;
}

.join-us__schedule {
  margin-top: 18.4px;
  margin-top: 1.15rem;
  border-top: 1px solid #888;
  border-left: 1px solid #888;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.join-us__scheduleMonth,
.join-us__scheduleDays {
  padding-block: 17.6px;
  padding-block: 1.1rem;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  color: #595757;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4333333333;
}

.join-us__scheduleMonth {
  background-color: #F5F5F5;
  width: 154.4px;
  width: 9.65rem;
  font-weight: 500;
  letter-spacing: .076em;
  text-align: center;
}

.join-us__scheduleDays {
  padding-inline: 12px 8px;
  padding-inline: .75rem .5rem;
  background-color: #fff;
  letter-spacing: -.015em;
  text-align: left;
}

.join-us__notes {
  margin-top: 22.4px;
  margin-top: 1.4rem;
}

.join-us__notesItem {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.3076923077;
}

.join-us__notesItem + .join-us__notesItem {
  margin-top: 0;
}

.join-us__supporterDesc {
  margin-top: 42.4px;
  margin-top: 2.65rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.join-us__cta {
  margin-top: 44.8px;
  margin-top: 2.8rem;
  text-align: center;
}

.join-us__deadline {
  color: #3E3A39;
  font-family: 'BIZ UDPGothic', 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 25.28px;
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: .063em;
  line-height: 1;
}

.join-us__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  margin-top: 56px;
  margin-top: 3.5rem;
  -webkit-box-shadow: .25rem .25rem .25rem rgba(62, 58, 57, .3);
  box-shadow: .25rem .25rem .25rem rgba(62, 58, 57, .3);
  border-radius: 9999px;
  background-color: #7F61A7;
  width: 379.2px;
  width: 23.7rem;
  max-width: 100%;
  height: 78.4px;
  height: 4.9rem;
  color: #fff;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 34.4px;
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: .053em;
  line-height: 1;
  text-decoration: none;
}

.wrapper {
  margin-inline: auto;
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 1456px;
  max-width: 91rem;
  overflow: visible;
}

.section-title {
  line-height: 1;
  text-align: center;
}

.section-title__en {
  display: block;
  color: #595757;
  font-family: 'Josefin Sans', 'Arial', sans-serif;
  font-size: 50.4px;
  font-size: 3.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}

.section-title__underline {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 22.4px;
  margin-top: 1.4rem;
  width: 133.376px;
  width: 8.336rem;
  height: 8px;
  height: .5rem;
}

.section-title__underline-main {
  display: block;
  background: #7F61A7;
  width: 94.992px;
  width: 5.937rem;
  height: 100%;
}

.section-title__underline-sub {
  display: block;
  background: #00AC67;
  width: 38.384px;
  width: 2.399rem;
  height: 100%;
}

.section-title__ja {
  display: block;
  margin-top: 11.2px;
  margin-top: .7rem;
  color: #595757;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 27.2px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.75;
}

.fv {
  width: 100%;
}

.fv__img {
  position: relative;
  width: 100%;
}

.fv__img--pc {
  aspect-ratio: 5458/5391;
}

.fv__img--sp {
  display: none;
}

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

.fv__fb {
  aspect-ratio: 1;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-clip-path: circle(50%);
  clip-path: circle(50%);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  border-radius: 100%;
}

.fv__img--pc .fv__fb {
  top: 89.9463%;
  left: 80.7072%;
  width: 13.155%;
}

.fv__img--sp .fv__fb {
  top: 92.9658%;
  left: 82.3843%;
  width: 21.8861%;
}

.intro {
  padding-top: 98.4px;
  padding-top: 6.15rem;
  width: 100%;
}

.intro__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.intro__heading {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.intro__lead {
  margin-top: 70.4px;
  margin-top: 4.4rem;
  color: #7F61A7;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 30.4px;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.3157894737;
  text-align: center;
}

.intro__desc {
  margin-top: 16px;
  margin-top: 1rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.5769230769;
  text-align: left;
}

.intro__song-label {
  margin-top: 33.6px;
  margin-top: 2.1rem;
  color: #7F61A7;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 34.4px;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.intro__song-label--second {
  margin-top: 80px;
  margin-top: 5rem;
}

.intro__song-name {
  margin-top: 16px;
  margin-top: 1rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: .021em;
  line-height: 1;
  text-align: center;
}

.intro__song-name--second {
  margin-top: 29.6px;
  margin-top: 1.85rem;
}

.movie {
  margin-inline: auto;
  margin-top: 68px;
  margin-top: 4.25rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  width: 100%;
}

.movie__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 960px;
  max-width: 60rem;
}

.movie__container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background-color: #000;
}

@supports not (aspect-ratio: 16 / 9) {
  .movie__container {
    height: 0;
    padding-top: 56.25%;
  }
}

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

.info {
  margin-inline: auto;
  padding-block: 76.8px 69.6px;
  padding-block: 4.8rem 4.35rem;
  margin-top: 68px;
  margin-top: 4.25rem;
  background-color: #E8F2E0;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.info__inner {
  margin-inline: auto;
  padding-inline: 4px;
  padding-inline: .25rem;
  width: 100%;
  max-width: 1078.4px;
  max-width: 67.4rem;
}

.info__heading {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.info__table {
  display: grid;
  grid-template-columns: 9.6345rem 1fr;
  margin-top: 67.2px;
  margin-top: 4.2rem;
  border-top: 1px solid #888;
  border-left: 1px solid #888;
  width: 100%;
}

.info__row {
  display: contents;
}

.info__label,
.info__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  min-height: 104px;
  min-height: 6.5rem;
  color: #595757;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .076em;
  line-height: 1.4333333333;
}

.info__label {
  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;
  background-color: #F5F5F5;
  text-align: center;
}

.info__content {
  padding-inline: 89.6px;
  padding-inline: 5.6rem;
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #fff;
}

.join-us {
  margin-inline: auto;
  padding-block: 96px 80.8px;
  padding-block: 6rem 5.05rem;
  margin-top: 96px;
  margin-top: 6rem;
  background-color: #E8F2E0;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.join-us__inner {
  margin-inline: auto;
  padding-inline: 68px;
  padding-inline: 4.25rem;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.join-us__heading {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.join-us__block {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.join-us__block--supporter {
  padding-inline: 12px;
  padding-inline: .75rem;
  margin-top: 136px;
  margin-top: 8.5rem;
}

.join-us__subheading {
  color: #7F61A7;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 30.4px;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.3157894737;
  text-align: center;
}

.join-us__group {
  padding-inline: 4px;
  padding-inline: .25rem;
  margin-top: 96.8px;
  margin-top: 6.05rem;
}

.join-us__group--second {
  margin-top: 29.6px;
  margin-top: 1.85rem;
}

.join-us__label {
  color: #231815;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 27.2px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

.join-us__conditions {
  margin-top: 2.4px;
  margin-top: .15rem;
  color: #231815;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.join-us__audition {
  margin-top: 6.4px;
  margin-top: .4rem;
  color: #231815;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.1333333333;
}

.join-us__schedule {
  margin-top: 18.4px;
  margin-top: 1.15rem;
  border-top: 1px solid #888;
  border-left: 1px solid #888;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.join-us__scheduleMonth,
.join-us__scheduleDays {
  padding-block: 17.6px;
  padding-block: 1.1rem;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  color: #595757;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4333333333;
}

.join-us__scheduleMonth {
  background-color: #F5F5F5;
  width: 154.4px;
  width: 9.65rem;
  font-weight: 500;
  letter-spacing: .076em;
  text-align: center;
}

.join-us__scheduleDays {
  padding-inline: 20px 8px;
  padding-inline: 1.25rem .5rem;
  background-color: #fff;
  letter-spacing: .04em;
  text-align: left;
}

.join-us__notes {
  gap: 4px;
  gap: .25rem;
  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;
  margin-top: 22.4px;
  margin-top: 1.4rem;
}

.join-us__notesItem {
  position: relative;
  padding-left: 1em;
  color: #231815;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.3076923077;
}

.join-us__notesItem--asterisk::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '※';
}

.join-us__notesItem--star::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '☆';
}

.join-us__notesItem + .join-us__notesItem {
  margin-top: 0;
}

.join-us__supporterDesc {
  margin-top: 42.4px;
  margin-top: 2.65rem;
  color: #231815;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.join-us__cta {
  margin-top: 96px;
  margin-top: 6rem;
  text-align: center;
}

.join-us__deadline {
  color: #3E3A39;
  font-family: 'BIZ UDPGothic', 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .063em;
  line-height: 1;
}

.join-us__deadline-unit {
  font-size: 25.6px;
  font-size: 1.6rem;
}

.join-us__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  margin-top: 60.8px;
  margin-top: 3.8rem;
  -webkit-box-shadow: .25rem .25rem .25rem rgba(35, 24, 21, .3);
  box-shadow: .25rem .25rem .25rem rgba(35, 24, 21, .3);
  border-radius: 9999px;
  background-color: #7F61A7;
  width: 379.2px;
  width: 23.7rem;
  max-width: 100%;
  height: 78.4px;
  height: 4.9rem;
  color: #fff;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 34.4px;
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: .053em;
  line-height: 1;
  text-decoration: none;
}

.staff {
  margin-inline: auto;
  padding-block: 96px 85.6px;
  padding-block: 6rem 5.35rem;
  margin-top: 93.6px;
  margin-top: 5.85rem;
  background-color: #E8F2E0;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.staff__inner {
  margin-inline: auto;
  padding-inline: 72px;
  padding-inline: 4.5rem;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.staff__heading {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.staff__director {
  margin-inline: auto;
  position: relative;
  margin-top: 36.8px;
  margin-top: 2.3rem;
  width: 100%;
  max-width: 1048px;
  max-width: 65.5rem;
}

.staff__director-photo {
  aspect-ratio: 921/1156;
  width: 70.3053435115%;
  overflow: hidden;
}

.staff__director-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.staff__director-info {
  position: absolute;
  top: 64.5328719723%;
  left: 61.5267175573%;
  width: 38.7786259542%;
}

.staff__director-heading {
  gap: 20.8px;
  gap: 1.3rem;
  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__director-role {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 28.8px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
}

.staff__director-name {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 33.6px;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
}

.staff__director-message {
  margin-top: 34.4px;
  margin-top: 2.15rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.5769230769;
}

.staff__profile {
  margin-inline: auto;
  margin-top: 0;
  max-width: 1048px;
  max-width: 65.5rem;
}

.staff__profile-label {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .021em;
  line-height: 1;
}

.staff__profile-text {
  margin-top: 10.4px;
  margin-top: .65rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.5769230769;
}

.staff__assistants {
  padding-inline: 0;
  gap: 72px;
  gap: 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 184px;
  margin-top: 11.5rem;
}

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

.staff__assistant-photo {
  aspect-ratio: 1;
  border-radius: 100%;
  width: 316.8px;
  width: 19.8rem;
  overflow: hidden;
}

.staff__assistant-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.staff__assistant-heading {
  gap: 9.6px;
  gap: .6rem;
  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;
  margin-top: 50.4px;
  margin-top: 3.15rem;
}

.staff__assistant-role {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 28.8px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .021em;
  line-height: 1;
}

.staff__assistant-name {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 33.6px;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: .021em;
  line-height: 1;
}

.staff__assistant-text {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-top: 45.6px;
  margin-top: 2.85rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.5769230769;
}

.staff__conductor {
  display: grid;
  grid-template-columns: 16.35rem 1fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 4.15rem;
  -moz-column-gap: 4.15rem;
  column-gap: 4.15rem;
  margin-top: 155.2px;
  margin-top: 9.7rem;
}

.staff__conductor-photo {
  aspect-ratio: 327/437;
  grid-column: 1;
  grid-row: 1/span 2;
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  align-self: end;
  width: 261.6px;
  width: 16.35rem;
  overflow: hidden;
}

.staff__conductor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.staff__conductor-title {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: 2;
  grid-row: 1;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-top: 56px;
  padding-top: 3.5rem;
}

.staff__conductor-role {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 28.8px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .021em;
  line-height: 1;
}

.staff__conductor-name {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 33.6px;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: .021em;
  line-height: 1;
}

.staff__conductor-text {
  grid-column: 2;
  grid-row: 2;
  margin-top: 25.6px;
  margin-top: 1.6rem;
  max-width: 744.8px;
  max-width: 46.55rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.5769230769;
}

.staff__orchestra {
  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;
  margin-top: 196.8px;
  margin-top: 12.3rem;
}

.staff__orchestra-title {
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-weight: 500;
  letter-spacing: .021em;
  line-height: 1.119047619;
  text-align: center;
}

.staff__orchestra-title-label {
  display: inline-block;
  font-size: 28.8px;
  font-size: 1.8rem;
  letter-spacing: .021em;
  line-height: 1.2;
}

.staff__orchestra-title-name {
  display: inline-block;
  margin-top: 4.8px;
  margin-top: .3rem;
  font-size: 33.6px;
  font-size: 2.1rem;
  line-height: 1.2;
}

.staff__orchestra-photo {
  aspect-ratio: 831/484;
  margin-top: 61.6px;
  margin-top: 3.85rem;
  width: 664.8px;
  width: 41.55rem;
  max-width: 100%;
  overflow: hidden;
}

.staff__orchestra-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.staff__orchestra-text {
  margin-inline: auto;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-top: 61.6px;
  margin-top: 3.85rem;
  max-width: 1072px;
  max-width: 67rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.5769230769;
}

.contact {
  position: relative;
  padding-top: 176px;
  padding-top: 11rem;
  padding-bottom: 97.6px;
  padding-bottom: 6.1rem;
  width: 100%;
}

.contact__inner {
  margin-inline: auto;
  padding-inline: 16px;
  padding-inline: 1rem;
  width: 100%;
  max-width: 1216px;
  max-width: 76rem;
}

.contact__heading {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.contact__client {
  margin-top: 111.2px;
  margin-top: 6.95rem;
  color: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 38.4px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

.contact__client-sub {
  font-size: 22.4px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.contact__methods {
  margin-inline: auto;
  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;
  margin-top: 56.8px;
  margin-top: 3.55rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
}

.contact__method {
  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: #3E3A39;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 38.4px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .07em;
  line-height: 1.375;
}

.contact__icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -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;
}

.contact__icon--tel {
  aspect-ratio: 78/104;
  width: 31.04px;
  width: 1.94rem;
}

.contact__icon--mail {
  aspect-ratio: 110/78;
  width: 43.6px;
  width: 2.725rem;
}

.contact__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contact__value {
  gap: 3.2px;
  gap: .2rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.contact__tel,
.contact__mail {
  color: #3E3A39;
  text-decoration: none;
}

.contact__note {
  font-size: 22.4px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.contact__sns {
  gap: 56px;
  gap: 3.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: 152px;
  margin-top: 9.5rem;
  list-style: none;
}

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

.contact__snsLink {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  text-decoration: none;
}

.contact__snsLink img {
  display: block;
  height: auto;
}

.contact__snsItem--instagram img {
  aspect-ratio: 1;
  width: 44.8px;
  width: 2.8rem;
}

.contact__snsItem--facebook img {
  aspect-ratio: 1;
  width: 48px;
  width: 3rem;
}

.contact__snsItem--x img {
  aspect-ratio: 93/95;
  width: 36.8px;
  width: 2.3rem;
}

.contact__snsItem--youtube img {
  aspect-ratio: 129/90;
  width: 51.2px;
  width: 3.2rem;
}

.contact__pageTop {
  aspect-ratio: 1;
  gap: 4.8px;
  gap: .3rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  right: 120px;
  right: 7.5rem;
  bottom: 24.8px;
  bottom: 1.55rem;
  -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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s, -webkit-transform .3s;
  -webkit-box-shadow: 0 .3rem .9rem rgba(0, 0, 0, .25);
  box-shadow: 0 .3rem .9rem rgba(0, 0, 0, .25);
  border-radius: 100%;
  background-color: #7F61A7;
  padding-top: 28px;
  padding-top: 1.75rem;
  width: 122.904px;
  width: 7.6815rem;
  color: #fff;
  text-decoration: none;
}

.contact__pageTop-icon {
  font-size: 18.8px;
  font-size: 1.175rem;
  line-height: 1;
}

.contact__pageTop-text {
  color: #fff;
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #7F61A7;
  width: 2em;
  height: 2em;
  color: #7F61A7;
  font-size: 11.2px;
  font-size: .7rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 8px;
  margin-left: .5rem;
}

.page-numbers.current {
  background-color: #7F61A7;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}
@media (max-width: 1456px) {

  html {
    font-size: calc(100vw / 91);
  }
}
@media screen and (max-width: 767px) {

  html {
    scroll-padding-top: 0;
  }

  html {
    font-size: calc(100vw / 18.75);
  }

  .only-pc {
    display: none;
  }

  .only-sp {
    display: block;
  }

  :root {
    --header-height: 48px;
    --header-height: 3rem;
  }

  .footer__inner {
    padding-block: 16.8px 12.8px;
    padding-block: 1.05rem .8rem;
    padding-inline: 13.2px;
    padding-inline: .825rem;
  }

  .footer__block {
    gap: 4.8px;
    gap: .3rem;
  }

  .footer__host {
    font-size: 8.8px;
    font-size: .55rem;
    line-height: 1.8181818182;
  }

  .footer__grant {
    gap: 11.2px;
    gap: .7rem;
  }

  .footer__grant-label {
    font-size: 8.8px;
    font-size: .55rem;
    line-height: 1.8181818182;
  }

  .footer__grant-logo {
    width: 32px;
    width: 2rem;
    height: 32.8px;
    height: 2.05rem;
  }

  .footer__grant-text {
    font-size: 8.8px;
    font-size: .55rem;
    line-height: 1.6363636364;
  }

  .footer__copyright {
    padding-block: 4.8px;
    padding-block: .3rem;
    padding-block: 12px;
    padding-block: .75rem;
    font-size: 6.4px;
    font-size: .4rem;
  }

  .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: transparent;
    min-height: 48px;
    min-height: 3rem;
    color: #595757;
  }

  .header__inner {
    padding-inline: 14.8px;
    padding-inline: .925rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    min-height: 48px;
    min-height: 3rem;
  }

  .header__logo {
    display: none;
  }

  .header__nav {
    inset: 0;
    -webkit-backdrop-filter: blur(3.2px);
    -webkit-backdrop-filter: blur(.2rem);
    display: block;
    position: fixed;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 1;
    backdrop-filter: blur(3.2px);
    backdrop-filter: blur(.2rem);
    -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(127, 97, 167, .95);
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
  }

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

  .header__nav-list {
    gap: 24px;
    gap: 1.5rem;
    -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__nav-item {
    padding-inline: 0;
    translate: 0 9.6px;
    translate: 0 .6rem;
    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%;
    height: auto;
  }

  .header__nav-item::before {
    display: none;
  }

  .header__nav-item:last-child::after {
    display: none;
  }

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

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

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

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

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

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

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

  .header__nav-link {
    padding-block: 3.2px;
    padding-block: .2rem;
    width: 100%;
  }

  .header__hamburger {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0;
    width: 20px;
    width: 1.25rem;
    height: 16px;
    height: 1rem;
  }

  .join-us {
    padding-block: 47.2px 60px;
    padding-block: 2.95rem 3.75rem;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 100%;
  }

  .join-us__inner {
    padding-inline: 14.4px;
    padding-inline: .9rem;
  }

  .join-us__block {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .join-us__subheading {
    font-size: 12.8px;
    font-size: .8rem;
    line-height: 1.5625;
  }

  .join-us__group {
    margin-top: 26.4px;
    margin-top: 1.65rem;
  }

  .join-us__label {
    font-size: 10.4px;
    font-size: .65rem;
  }

  .join-us__conditions {
    margin-top: 8.8px;
    margin-top: .55rem;
    font-size: 8.4px;
    font-size: .525rem;
    line-height: 1.4285714286;
  }

  .join-us__audition {
    margin-top: 10.4px;
    margin-top: .65rem;
    font-size: 8.4px;
    font-size: .525rem;
    line-height: 1.4285714286;
  }

  .join-us__schedule {
    margin-top: 7.2px;
    margin-top: .45rem;
  }

  .join-us__scheduleMonth,
  .join-us__scheduleDays {
    padding-block: 7.2px;
    padding-block: .45rem;
    font-size: 8.4px;
    font-size: .525rem;
    line-height: 1.5238095238;
  }

  .join-us__scheduleMonth {
    width: 47.2px;
    width: 2.95rem;
  }

  .join-us__scheduleDays {
    padding-inline: 6.4px 4.8px;
    padding-inline: .4rem .3rem;
  }

  .join-us__notes {
    margin-top: 8.8px;
    margin-top: .55rem;
  }

  .join-us__notesItem {
    font-size: 8.4px;
    font-size: .525rem;
    line-height: 1.4285714286;
  }

  .join-us__supporterDesc {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: .11em;
    line-height: 1.7142857143;
  }

  .join-us__cta {
    margin-top: 18.4px;
    margin-top: 1.15rem;
  }

  .join-us__deadline {
    font-size: 12.656px;
    font-size: .791rem;
    letter-spacing: .063em;
  }

  .join-us__btn {
    margin-top: 20px;
    margin-top: 1.25rem;
    -webkit-box-shadow: .125rem .125rem .125rem rgba(62, 58, 57, .3);
    box-shadow: .125rem .125rem .125rem rgba(62, 58, 57, .3);
    width: 189.776px;
    width: 11.861rem;
    height: 39.2px;
    height: 2.45rem;
    font-size: 17.2px;
    font-size: 1.075rem;
  }

  .wrapper {
    max-width: 100%;
  }

  .section-title__en {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .section-title__underline {
    margin-top: 12px;
    margin-top: .75rem;
    width: 53.352px;
    width: 3.3345rem;
    height: 3.2px;
    height: .2rem;
  }

  .section-title__underline-main {
    width: 38px;
    width: 2.375rem;
  }

  .section-title__underline-sub {
    width: 15.352px;
    width: .9595rem;
  }

  .section-title__ja {
    margin-top: 3.2px;
    margin-top: .2rem;
    font-size: 11.2px;
    font-size: .7rem;
  }

  .fv__img--pc {
    display: none;
  }

  .fv__img--sp {
    aspect-ratio: 1124/2104;
    display: block;
  }

  .intro {
    padding-top: 40px;
    padding-top: 2.5rem;
  }

  .intro__inner {
    padding-inline: 14.8px;
    padding-inline: .925rem;
  }

  .intro__lead {
    margin-top: 24.8px;
    margin-top: 1.55rem;
    font-size: 12.8px;
    font-size: .8rem;
    line-height: 1.5625;
  }

  .intro__desc {
    margin-top: 18.4px;
    margin-top: 1.15rem;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: .02em;
    line-height: 1.7142857143;
  }

  .intro__song-label {
    margin-top: 15.2px;
    margin-top: .95rem;
    font-size: 12.8px;
    font-size: .8rem;
  }

  .intro__song-label--second {
    margin-top: 31.2px;
    margin-top: 1.95rem;
  }

  .intro__song-name {
    margin-top: 4.8px;
    margin-top: .3rem;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: .11em;
  }

  .intro__song-name--second {
    margin-top: 10.4px;
    margin-top: .65rem;
  }

  .movie {
    margin-top: 33.6px;
    margin-top: 2.1rem;
    padding-inline: 16px;
    padding-inline: 1rem;
  }

  .movie__container {
    border-radius: 8px;
  }

  .info {
    padding-block: 47.2px 34.4px;
    padding-block: 2.95rem 2.15rem;
    margin-top: 33.6px;
    margin-top: 2.1rem;
    max-width: 100%;
  }

  .info__inner {
    padding-inline: 14.8px;
    padding-inline: .925rem;
  }

  .info__table {
    grid-template-columns: 3.645rem 1fr;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .info__label,
  .info__content {
    min-height: 52px;
    min-height: 3.25rem;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: .01em;
    line-height: 2.0476190476;
  }

  .info__label {
    font-size: 9.6px;
    font-size: .6rem;
    line-height: 1.75;
  }

  .info__content {
    padding-inline: 6px;
    padding-inline: .375rem;
    letter-spacing: -.01em;
  }

  .join-us {
    padding-block: 47.2px 27.2px;
    padding-block: 2.95rem 1.7rem;
    margin-top: 48px;
    margin-top: 3rem;
    max-width: 100%;
  }

  .join-us__inner {
    padding-inline: 14.4px;
    padding-inline: .9rem;
  }

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

  .join-us__block--supporter {
    padding-inline: 0;
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .join-us__subheading {
    font-size: 12.8px;
    font-size: .8rem;
    line-height: 1.5625;
  }

  .join-us__group {
    padding-inline: 0;
    margin-top: 34.4px;
    margin-top: 2.15rem;
  }

  .join-us__group--second {
    margin-top: 7.2px;
    margin-top: .45rem;
  }

  .join-us__label {
    font-size: 10.4px;
    font-size: .65rem;
  }

  .join-us__conditions {
    margin-top: 3.2px;
    margin-top: .2rem;
    font-size: 8.4px;
    font-size: .525rem;
    line-height: 1.4285714286;
  }

  .join-us__audition {
    margin-top: 2.4px;
    margin-top: .15rem;
    font-size: 8.4px;
    font-size: .525rem;
    line-height: 1.4285714286;
  }

  .join-us__schedule {
    margin-top: 5.6px;
    margin-top: .35rem;
  }

  .join-us__scheduleMonth,
  .join-us__scheduleDays {
    padding-block: 7.2px;
    padding-block: .45rem;
    font-size: 8.4px;
    font-size: .525rem;
    line-height: 1.5238095238;
  }

  .join-us__scheduleMonth {
    width: 47.2px;
    width: 2.95rem;
  }

  .join-us__scheduleDays {
    padding-inline: 6.4px 4.8px;
    padding-inline: .4rem .3rem;
  }

  .join-us__scheduleRow--wrap .join-us__scheduleMonth,
  .join-us__scheduleRow--wrap .join-us__scheduleDays {
    padding-block: 13.6px;
    padding-block: .85rem;
  }

  .join-us__notes {
    gap: 0;
    margin-top: 7.2px;
    margin-top: .45rem;
  }

  .join-us__notesItem {
    font-size: 8.4px;
    font-size: .525rem;
    line-height: 1.4285714286;
  }

  .join-us__supporterDesc {
    margin-top: 10.4px;
    margin-top: .65rem;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: .11em;
    line-height: 1.7142857143;
  }

  .join-us__cta {
    margin-top: 29.6px;
    margin-top: 1.85rem;
  }

  .join-us__deadline {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: .063em;
  }

  .join-us__deadline-unit {
    font-size: 12.8px;
    font-size: .8rem;
  }

  .join-us__btn {
    margin-top: 21.6px;
    margin-top: 1.35rem;
    -webkit-box-shadow: .125rem .125rem .125rem rgba(35, 24, 21, .3);
    box-shadow: .125rem .125rem .125rem rgba(35, 24, 21, .3);
    width: 189.776px;
    width: 11.861rem;
    height: 39.2px;
    height: 2.45rem;
    font-size: 17.2px;
    font-size: 1.075rem;
  }

  .staff {
    padding-block: 46.4px 27.2px;
    padding-block: 2.9rem 1.7rem;
    margin-top: 48px;
    margin-top: 3rem;
    max-width: 100%;
  }

  .staff__inner {
    padding-inline: 14.8px;
    padding-inline: .925rem;
  }

  .staff__director {
    gap: 34.4px;
    gap: 2.15rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -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: 23.2px;
    margin-top: 1.45rem;
    min-height: 0;
  }

  .staff__director-photo {
    aspect-ratio: 921/1156;
    width: 248px;
    width: 15.5rem;
    height: auto;
  }

  .staff__director-info {
    position: static;
    top: auto;
    left: auto;
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .staff__director-heading {
    gap: 4.8px;
    gap: .3rem;
    -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;
  }

  .staff__director-role {
    font-size: 12px;
    font-size: .75rem;
    text-align: center;
  }

  .staff__director-name {
    font-size: 14.4px;
    font-size: .9rem;
    text-align: center;
  }

  .staff__director-message {
    margin-top: 9.6px;
    margin-top: .6rem;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: 0;
    line-height: 1.7142857143;
    text-align: left;
  }

  .staff__profile {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .staff__profile-label {
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
  }

  .staff__profile-text {
    margin-top: 8px;
    margin-top: .5rem;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: 0;
    line-height: 1.7142857143;
  }

  .staff__assistants {
    gap: 62.4px;
    gap: 3.9rem;
    grid-template-columns: 1fr;
    margin-top: 80px;
    margin-top: 5rem;
  }

  .staff__assistant-photo {
    width: 158.4px;
    width: 9.9rem;
  }

  .staff__assistant-heading {
    gap: 4px;
    gap: .25rem;
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .staff__assistant-role {
    font-size: 14.4px;
    font-size: .9rem;
  }

  .staff__assistant-name {
    font-size: 16.8px;
    font-size: 1.05rem;
  }

  .staff__assistant-text {
    margin-top: 23.2px;
    margin-top: 1.45rem;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: 0;
    line-height: 1.7142857143;
    text-align: left;
  }

  .staff__conductor {
    gap: 15.2px;
    gap: .95rem;
    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;
    margin-top: 90.4px;
    margin-top: 5.65rem;
  }

  .staff__conductor-photo {
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 130.4px;
    width: 8.15rem;
  }

  .staff__conductor-title {
    gap: 3.2px;
    gap: .2rem;
    -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-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 0;
  }

  .staff__conductor-role {
    font-size: 14.4px;
    font-size: .9rem;
  }

  .staff__conductor-name {
    font-size: 16.8px;
    font-size: 1.05rem;
  }

  .staff__conductor-text {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    font-size: 8.4px;
    font-size: .525rem;
    letter-spacing: 0;
    line-height: 1.7142857143;
    text-align: left;
  }

  .staff__orchestra {
    margin-top: 94.4px;
    margin-top: 5.9rem;
  }

  .staff__orchestra-title-label {
    font-size: 14.4px;
    font-size: .9rem;
  }

  .staff__orchestra-title-name {
    margin-top: 1.6px;
    margin-top: .1rem;
    font-size: 16.8px;
    font-size: 1.05rem;
  }

  .staff__orchestra-photo {
    margin-top: 16px;
    margin-top: 1rem;
    width: 100%;
  }

  .staff__orchestra-text {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 10.4px;
    font-size: .65rem;
    letter-spacing: 0;
    line-height: 1.5769230769;
    text-align: left;
  }

  .contact {
    padding-top: 57.6px;
    padding-top: 3.6rem;
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }

  .contact__inner {
    padding-inline: 14.8px;
    padding-inline: .925rem;
  }

  .contact__client {
    margin-top: 60.8px;
    margin-top: 3.8rem;
    font-size: 16.8px;
    font-size: 1.05rem;
    line-height: 1.5714285714;
  }

  .contact__client-sub {
    display: block;
    font-size: 11.2px;
    font-size: .7rem;
  }

  .contact__methods {
    gap: 8px;
    gap: .5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 14.4px;
    margin-top: .9rem;
  }

  .contact__method {
    gap: 4px;
    gap: .25rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 16.8px;
    font-size: 1.05rem;
    line-height: 1.375;
  }

  .contact__icon {
    margin-top: 2px;
    margin-top: .125rem;
    height: 1.375em;
  }

  .contact__icon--tel {
    width: 11.2px;
    width: .7rem;
  }

  .contact__icon--mail {
    width: 15.2px;
    width: .95rem;
  }

  .contact__value {
    gap: 1.6px;
    gap: .1rem;
    -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;
  }

  .contact__note {
    font-size: 11.2px;
    font-size: .7rem;
  }

  .contact__sns {
    gap: 28px;
    gap: 1.75rem;
    margin-top: 52.8px;
    margin-top: 3.3rem;
  }

  .contact__snsItem--instagram img {
    width: 22.4px;
    width: 1.4rem;
  }

  .contact__snsItem--facebook img {
    width: 24px;
    width: 1.5rem;
  }

  .contact__snsItem--x img {
    width: 18.4px;
    width: 1.15rem;
  }

  .contact__snsItem--youtube img {
    width: 25.6px;
    width: 1.6rem;
  }

  .contact__pageTop {
    gap: 1.6px;
    gap: .1rem;
    right: 21.6px;
    right: 1.35rem;
    bottom: -30.4px;
    bottom: -1.9rem;
    padding-top: 12px;
    padding-top: .75rem;
    width: 60.8px;
    width: 3.8rem;
  }

  .contact__pageTop-icon {
    font-size: 11.2px;
    font-size: .7rem;
  }

  .contact__pageTop-text {
    font-size: 14.4px;
    font-size: .9rem;
  }
}
@media (hover: hover) and (pointer: fine) {

  .header__nav-link:hover,
  .header__logo:hover {
    opacity: .75;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }

  .join-us__btn:hover {
    opacity: .75;
  }

  .fv__img--pc .fv__fb:hover {
    background-color: rgba(255, 255, 255, .35);
  }

  .join-us__btn:hover {
    opacity: .75;
  }

  .contact__tel:hover,
  .contact__mail:hover {
    opacity: .7;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }

  .contact__snsLink:hover {
    opacity: .6;
  }

  .contact__pageTop:hover {
    opacity: .8;
  }
}
/*# sourceMappingURL=map/style.css.map */