@charset "utf-8";

@media print {
  img {
    display: none !important;
  }
}/**/


* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #111;
  background: #f5f5f5;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.en,
.sectionHead__en,
.loadingText,
.castCard__commentHead,
.staffCard__commentHead,
.castCard__profileHead,
.staffCard__profileHead,
.infoLabel,
.site-footer small {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .08em;
}

ruby {
  line-height: 1.4;
}

ruby rt {
  font-size: 0.6em;
}

/* =========================
   PC BODY BG
========================= */

@media (min-width: 992px) {
  body {
    background:
      linear-gradient(rgba(238, 240, 243, .96), rgba(238, 240, 243, .96)),
      url("../img/logo_02.webp") center top / cover no-repeat fixed,
      #eef0f3;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.guard-img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* =========================
   LOADING
========================= */

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, .92)),
    #eef0f3;
  transition: opacity .45s ease, visibility .45s ease;
}

@media (min-width: 992px) {
  .loading {
    background:
      linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, .92)),
      url("../img/logo_02.webp") center top / cover no-repeat fixed,
      #eef0f3;
  }
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loadingDoor {
  position: relative;
  width: 72px;
  height: 108px;
}

.loadingDoor__panel {
  position: absolute;
  inset: 0;
  border: 2px solid #2459b3;
  background: rgba(255, 255, 255, .72);
}

.loadingDoor__panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(36, 89, 179, .45);
}

.loadingDoor__knob {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #2459b3;
}

.loadingDoor__knock {
  position: absolute;
  right: 28px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border: 2px solid #2459b3;
  border-radius: 50%;
  animation: knockDot 1.1s ease-in-out infinite;
  transform-origin: center center;
}

.loadingText {
  margin: 0;
  color: #2459b3;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

@keyframes knockDot {
  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: .45;
  }

  20% {
    transform: translateX(6px) scale(1.08);
    opacity: 1;
  }

  40% {
    transform: translateX(0) scale(1);
    opacity: .55;
  }

  60% {
    transform: translateX(6px) scale(1.08);
    opacity: 1;
  }
}

/* =========================
   LAYOUT / HERO
========================= */

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wrap.-narrow {
  width: min(860px, calc(100% - 15px));
}

.hero {
  width: 100%;
  overflow: hidden;
}

.heroImage {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.06);
  opacity: 0;
  animation:
    heroReveal 1.2s ease forwards,
    heroSettle 5.8s ease-out .2s forwards;
  will-change: transform, opacity;
}

.heroIntro{
  padding:0;
  margin-top:-1px;
  background:linear-gradient(180deg, rgba(14,20,36,.94) 0%, rgba(23,31,54,.82) 100%);
  border-top:1px solid rgba(36,89,179,.28);
  border-bottom:1px solid rgba(36,89,179,.28);
}

.heroIntro .wrap{
  padding:20px 16px 22px;
}

.heroIntro__lead{
  margin:0 0 8px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.75;
  font-weight:500;
  letter-spacing:.02em;
  text-align:center;
}

.heroIntro__lead strong{
  color:#fff;
  font-weight:700;
}

.heroIntro__copy{
  margin:0;
  text-align:center;
  font-size:24px;
  line-height:1.3;
  color:#fff;
}

.heroIntro__copy strong{
  color:#fff;
  font-weight:700;
  letter-spacing:.03em;
}

@media (max-width:480px){
  .heroIntro__copy{
    font-size:21px;
  }

  .heroIntro__lead{
    font-size:12px;
    line-height:1.7;
    letter-spacing:0;
  }
}

@media (min-width:992px){
  .heroIntro .wrap{
    padding:24px 16px 26px;
  }

  .heroIntro__lead{
    margin-bottom:10px;
    font-size:18px;
    line-height:1.65;
    letter-spacing:.03em;
  }

  .heroIntro__copy{
    font-size:36px;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroSettle {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes copyIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   SECTION / H2
========================= */

.section {
  padding: 80px 0;
  position: relative;
}

.sectionHead {
  width: 100%;
  margin: 0 auto 60px;
  text-align: center;
}

.sectionHead__en {
  display: block;
  margin: 0;
  color: #2459b3;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}

.sectionHead__en::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #2459b3;
  margin: 18px auto 0;
  opacity: .9;
}

@media (min-width: 992px) {
  .sectionHead__en {
    font-size: 58px;
  }

  .sectionHead__en::after {
    width: 160px;
    margin-top: 20px;
  }
}

/* =========================
   INTRODUCTION
========================= */

.introBox {
  max-width: 820px;
  margin: 0 auto;
  border-top: 2px solid #2459b3;
  border-bottom: 2px solid #2459b3;
  padding: 28px 0 22px;
}

.introCatch {
  margin: 0 auto 26px;
  text-align: center;
}

.introCatch img {
  width: min(100%, 720px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.introH3{
  margin:0 0 18px;
  color:#2459b3;
  font-size:20px;
  line-height:1.7;
  font-weight:700;
  letter-spacing:.02em;
}

.introH3:not(:first-child){
  margin-top:42px;
}

.introH3__kicker{
  display:block;
  margin:0 0 8px;
  font-family:"Bebas Neue", sans-serif;
  font-size:14px;
  letter-spacing:.18em;
  color:#2459b3;
  opacity:.8;
}

.introBox p {
  margin: 0;
  font-size: 15px;
  line-height: 2.15;
  color: #2f2f2f;
}

.introBox p + p {
  margin-top: 18px;
}

.introBox strong {
  color: #2459b3;
  font-weight: 700;
}

@media (min-width: 992px) {
  .introBox {
    max-width: 780px;
    padding: 34px 0 28px;
  }

  .introCatch {
    margin: 0 auto 32px;
  }

  .introCatch img {
    width: min(100%, 760px);
  }

  .introBox p {
    font-size: 16px;
    line-height: 2.2;
  }

  .introBox p + p {
    margin-top: 20px;
  }
	

  .introH3{
    font-size:24px;
    line-height:1.75;
  }

  .introH3__kicker{
    font-size:16px;
  }
	
}


/* =========================
   CAST / STAFF
========================= */

.castGrid,
.staffGrid {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  justify-items: center;
}

.castCard,
.staffCard {
  width: 100%;
  margin: 0 auto;
  border-top: 3px solid #2459b3;
  padding-top: 52px;
  text-align: center;
}

.castCard__photo {
  margin: 0 auto 14px;
  width: 80%;
  max-width: 320px;
  background: #d8d8d8;
  overflow: hidden;
  border: 1px solid rgba(36, 89, 179, .22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .08);
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.castCard__photo.is-visible {
  transform: translateY(0);
}

.castCard__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: none;
  transition: transform 1.2s ease;
}

.castCard:hover .castCard__photo img {
  transform: scale(1.04);
}

.castCard__role,
.staffCard__role {
  margin: 0 0 8px;
  color: #2459b3;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.castCard__name,
.staffCard__name {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 700;
}

.castCard__comment,
.staffCard__comment {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(36, 89, 179, .22);
}

.staffCard__work{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.7;
  color:#2459b3;
  font-weight:500;
}

.castCard__commentHead,
.staffCard__commentHead {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #2459b3;
}

.castCard__commentText,
.staffCard__commentText {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #4f4f4f;
  text-align: left;
}

.castCard__profile,
.staffCard__profile {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(36, 89, 179, .18);
}

.castCard__profileHead,
.staffCard__profileHead {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #2459b3;
}

.castCard__profileText,
.staffCard__profileText {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  text-align: left;
}

.staffCard {
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

@media (min-width: 992px) {
  .castGrid,
  .staffGrid {
    gap: 68px;
  }

  .castCard,
  .staffCard {
    padding-top: 48px;
  }

  .castCard__name,
  .staffCard__name {
    font-size: 40px;
  }

	  .staffCard__work{
    font-size:14px;
  }
	
  .castCard__commentText,
  .staffCard__commentText {
    font-size: 15px;
    line-height: 1.95;
  }

  .castCard__profileText,
  .staffCard__profileText {
    font-size: 13px;
  }
}

/* =========================
   SCHEDULE
========================= */

.infoBox {
  max-width: 820px;
  margin: 0 auto;
  border-top: 2px solid #2459b3;
  border-bottom: 2px solid #2459b3;
  padding: 8px 0;
}

.infoRow {
  padding: 32px 0 30px;
  border-bottom: 1px solid rgba(36, 89, 179, .18);
}

.infoRow:last-child {
  border-bottom: none;
}

.infoLabel {
  margin: 0 0 14px;
  color: #2459b3;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-align: center;
}

.infoVenue {
  text-align: center;
}

.infoVenueLogo {
  width: min(82%, 260px);
  margin: 0 auto 14px;
  display: block;
}

.infoDate {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
}

.infoPlace {  text-align:center;
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .01em;
}

.infoPlace a {
  color: #2459b3;
  text-decoration: none;
  border-bottom: 1px solid rgba(36, 89, 179, .35);
  transition: border-color .2s ease, opacity .2s ease;
}

.infoPlace a:hover {
  opacity: .75;
  border-bottom-color: #2459b3;
}

.infoSub {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

.infoAccess {
  margin: 14px 0 0;
  padding-top: 14px;
  font-size: 12px;
  line-height: 1.8;
  color: #333;
}
.infoRow--credit{
  text-align:center;  border-bottom:none;
  padding-bottom:10px;
}

.infoCredit{
  margin:0;
  font-size:14px;
  line-height:1.9;
  color:#333;
}
@media (min-width: 992px) {
  .infoBox {
    max-width: 780px;
  }

  .infoRow {
    padding: 42px 0 40px;
  }

  .infoLabel {
    margin-bottom: 16px;
    font-size: 26px;
    text-align: center;
  }

  .infoVenue {
    text-align: center;
  }

  .infoVenueLogo {
    width: min(100%,300px);
    margin: 0 auto 14px;
  }

  .infoDate {
    font-size: 26px;
    text-align: center;
  }

  .infoPlace {
    font-size: 28px;
  }

  .infoSub {
    font-size: 13px;
  }

  .infoAccess {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 13px;
  }
	
	  .infoCredit{
    font-size:15px;
  }

}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  padding: 42px 0 28px;
  border-top: 1px solid rgba(36, 89, 179, .22);
  background: #e7eaee;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(231, 234, 238, .86), rgba(231, 234, 238, .86)),
    url("../img/logo_02.webp") center center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

@media (min-width: 992px) {
  .site-footer::before {
    background: transparent;
  }
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-footer small {
  font-size: 11px;
  color: #666;
}


.footerSNS{
  display:flex;
  gap:18px;
}

.footerX {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 70px;
  color: #2459b3;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.footerX:hover{
  opacity:.5;
  transform:translateY(-2px);
  background:rgba(255,255,255,.9);
  box-shadow:0 0 14px rgba(36,89,179,.18);
}

.footerX__icon {
  width: 36px;
  height: 36px;
  fill: currentColor;
  display: block;
}
.footerIn__icon{
  width: 44px;
  height: 44px;
}
/* =========================
   SCROLL REVEAL / MOTION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded .heroIntro {
  animation: introGlow 1.4s ease;
}

@keyframes introGlow {
  0% {
    box-shadow: 0 0 0 rgba(36, 89, 179, 0);
  }

  45% {
    box-shadow: 0 0 28px rgba(36, 89, 179, .12);
  }

  100% {
    box-shadow: 0 0 0 rgba(36, 89, 179, 0);
  }
}

/* =========================
   GLOBAL NAV
========================= */

.siteHeader{
  position:fixed;
  top:18px;
  right:18px;
  z-index:1001;
}

.menuToggle{
  appearance:none;
  border:1px solid rgba(36,89,179,.28);
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#2459b3;
  width:74px;
  height:74px;
  padding:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    opacity .2s ease;
}

.menuToggle:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.96);
  border-color:rgba(36,89,179,.48);
}

.menuToggle__lines{
  width:28px;
  height:18px;
  position:relative;
  display:block;
}

.menuToggle__lines span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#2459b3;
  transform-origin:center;
  transition:transform .24s ease, opacity .2s ease, top .24s ease;
}

.menuToggle__lines span:nth-child(1){ top:0; }
.menuToggle__lines span:nth-child(2){ top:8px; }
.menuToggle__lines span:nth-child(3){ top:16px; }

.menuToggle__text{
  font-size:13px;
  line-height:1;
  letter-spacing:.14em;
}

.siteMenu{
  position:fixed;
  inset:0;
  z-index:1000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .3s ease, visibility .3s ease;
  background:
    linear-gradient(rgba(244,246,249,.95), rgba(244,246,249,.95)),
    url("../img/logo_02.webp") center center / cover no-repeat;
}

.siteMenu.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

body.is-menu-open .siteHeader{
  opacity:0;
  pointer-events:none;
}

.siteMenu__inner{
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:100px 24px 40px;
  position:relative;
}

.menuClose{
  appearance:none;
  border:none;
  background:transparent;
  color:#2459b3;
  position:absolute;
  top:18px;
  right:18px;
  width:74px;
  height:74px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transition:transform .2s ease, opacity .2s ease;
}

.menuClose:hover{
  transform:translateY(-1px);
  opacity:.82;
}

.menuClose__icon{
  width:28px;
  height:28px;
  position:relative;
  display:block;
}

.menuClose__icon::before,
.menuClose__icon::after{
  content:"";
  position:absolute;
  top:13px;
  left:0;
  width:100%;
  height:2px;
  background:#2459b3;
}

.menuClose__icon::before{
  transform:rotate(45deg);
}

.menuClose__icon::after{
  transform:rotate(-45deg);
}

.menuClose__text{
  font-size:13px;
  line-height:1;
  letter-spacing:.14em;
}

.siteMenu__list{
  list-style:none;
  margin:0;
  padding:0;
  width:min(100%, 760px);
  border-top:1px solid rgba(36,89,179,.22);
}

.siteMenu__list li{
  border-bottom:1px solid rgba(36,89,179,.22);
}

.siteMenu__link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:72px;
  padding:18px 20px;
  color:#2459b3;
  font-size:34px;
  line-height:1.1;
  letter-spacing:.08em;
  text-align:center;
  transition:background .2s ease, letter-spacing .2s ease, opacity .2s ease;
}

.siteMenu__link:hover{
  background:rgba(36,89,179,.05);
  letter-spacing:.11em;
}

.menuToggle,
.menuClose{
  width:56px;
  height:56px;
}

body.is-menu-open{
  overflow:hidden;
}

@media (min-width:992px){
  .siteHeader{
    top:24px;
    right:24px;
  }

.menuToggle,
.menuClose{
  width:64px;
  height:64px;
}
  .siteMenu__link{
    min-height:84px;
    font-size:52px;
  }
}

/* ------------------------------------------------------------------- 
 * e.t.c
/*-------------------------------------------------------------------*/
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
/* ------------------------------------------------------------------- 
 * responsive:
 *  e.t.c
 * ------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
} /*end*/
