@charset "UTF-8";
body * {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/*---------------------------------------------
共通部分
---------------------------------------------*/
body {
  overflow-x: hidden;
}

.commonWidth {
  margin: 0 15px;
}

.mon {
  font-family: "Montserrat", sans-serif;
}

.tlWrap * {
  text-align: center;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.tlWrap .en {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.tlWrap h2 {
  font-size: clamp(14px, 6.15vw, 24px);
  font-weight: 500;
  padding-top: 7px;
  letter-spacing: 0.06em;
}

#mainContent {
  overflow: hidden;
}
#mainContent .pageContent {
  position: relative;
}
#mainContent .pageContent .pageGridArea {
  position: fixed;
  display: grid;
  grid-template-columns: 1fr 390px 1fr;
  grid-template-rows: 1fr max-content;
  height: 100%;
  width: 100vw;
}
#mainContent .pageContent .pageGridArea .pageLeft {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 126px);
}
#mainContent .pageContent .pageGridArea .pageLeft .logoArea {
  position: absolute;
  left: 5%;
  top: 30px;
  width: 90%;
}
#mainContent .pageContent .pageGridArea .pageLeft .wrap {
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainContent .pageContent .pageGridArea .pageLeft .navArea {
  border: 1px solid #1D1D1D;
  padding: 38px clamp(0.875rem, -3.5rem + 7vw, 1.75rem);
  background: #fff;
  border-radius: 10px;
  box-shadow: 4px 4px;
  margin: 48px auto 0;
  z-index: 1;
  position: relative;
  max-width: 264px;
  width: 90%;
}
#mainContent .pageContent .pageGridArea .pageLeft .navArea h2 {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #1D1D1D;
  padding: 1px 16px 3px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainContent .pageContent .pageGridArea .pageRight {
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 126px);
}
#mainContent .pageContent .pageGridArea .pageRight .btn1 {
  font-size: clamp(0.875rem, -0.25rem + 2vw, 1rem);
}
#mainContent .pageContent .pageGridArea .pageRight .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
#mainContent .pageContent .pageGridArea .pageRight .wrap .innerWrap {
  width: 90%;
}
#mainContent .pageContent .pageGridArea .pageRight .wrap .lineArea {
  margin: 0 auto;
  max-width: 335px;
  background: #06C755;
  padding: 40px 0;
  border-radius: 5px;
}
#mainContent .pageContent .pageGridArea .pageRight .wrap .lineArea .imgArea {
  margin: 0 auto 20px;
  width: 90%;
  text-align: center;
}
#mainContent .pageContent .pageGridArea .pageRight .wrap .btnWrap {
  position: relative;
  top: -25px;
}
#mainContent .pageContent .pageGridArea .pageRight .wrap .btnWrap .imgArea {
  text-align: center;
}
#mainContent .pageContent .pageGridArea .pageBottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 126px;
  background: #D9376E;
  border-top: 1px solid #1D1D1D;
  z-index: 0;
}
#mainContent .contentArea {
  background: #fff;
  position: relative;
  border-left: 2px solid #1D1D1D;
  border-right: 2px solid #1D1D1D;
  height: 100%;
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

@media screen and (max-width: 900px) {
  #mainContent .pageContent .pageGridArea {
    grid-template-columns: 1fr;
  }
  #mainContent .pageContent .pageGridArea .pageLeft {
    display: none;
  }
  #mainContent .pageContent .pageGridArea .pageRight {
    display: none;
  }
  #mainContent .pageContent .pageGridArea .contentArea {
    width: 100%;
  }
}
@media screen and (max-width: 390px) {
  #mainContent .contentArea {
    border-left: none;
    border-right: none;
  }
}
.emptyArea {
  position: relative;
}

.cta {
  z-index: 100;
  position: fixed;
  right: calc(50% - 260px);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 13px;
  width: 146px;
  height: 146px;
}
.cta .anim,
.cta .ctaImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.cta .anim {
  left: 0;
  top: 0;
  animation: 30s linear infinite rotation;
}

@keyframes rotation {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0);
  }
}
.imgBk {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  min-width: 3000px;
  min-height: 3000px;
}

.lineBtn {
  background: #EAFF00;
  box-shadow: 4px 4px;
  max-width: 255px;
  width: 90%;
  padding: 15px 20px;
  font-weight: bold;
  color: #1D1D1D;
}

.comBtn {
  font-size: 16px;
  letter-spacing: 0.04em;
  margin: 0 auto;
  display: flex;
  border-radius: 3px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #1D1D1D;
  line-height: 150%;
}

.btn1 {
  padding: 10px 15px;
  font-weight: 500;
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
  color: #1D1D1D;
  background: #fff;
}

.secHeader {
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  z-index: 1400;
  transition: opacity 0.3s;
  top: 30px;
  left: calc(50% - 170px);
}
.secHeader .secHeaderIn {
  transition: all 0.3s;
  margin: 0 auto;
}
.secHeader .secHeaderIn .logoArea {
  position: relative;
  transition: 0.3s;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .secHeader .secHeaderIn {
    top: 0;
    padding: 0px 0;
  }
}
@media screen and (max-width: 500px) {
  .secHeader .secHeaderIn .logoArea h1 {
    font-size: 14px;
  }
}
.global-nav {
  position: fixed;
  opacity: 0;
  top: 0%;
  max-width: 386px;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  height: 100dvh;
  transition: all 0.6s;
  z-index: 1290;
  overflow-y: auto;
  visibility: hidden;
  margin: 0 auto;
  text-align: center;
  display: flex;
}
.global-nav .global-nav-inner {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  min-height: 900px;
  margin: 0 auto;
  border-radius: 10px;
  transition: 0.6s;
  margin: 10px auto;
  background: #1D1D1D;
  text-align: center;
  margin-left: auto;
  position: relative;
}
.global-nav .global-nav-inner .smt-nav-link {
  opacity: 0;
  transition: all 0.6s;
  text-align: center;
  margin: 0 auto 0;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.hamburgerWrap {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: fixed;
  z-index: 1300;
  top: 10px;
  right: calc(50% - 210px);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #1D1D1D;
  border-radius: 50%;
  cursor: pointer;
}
.hamburgerWrap .hamburger {
  margin-right: 0;
  margin-left: auto;
  width: 26px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.hamburgerWrap .hamburger .hamburger__line {
  width: 20px;
  height: 2px;
  transition: all 0.6s;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.hamburgerWrap .hamburger .hamburger__line--1,
.hamburgerWrap .hamburger .hamburger__line--2,
.hamburgerWrap .hamburger .hamburger__line--3 {
  background-color: #fff;
  width: 26px;
}
.hamburgerWrap .hamburger .hamburger__line--1 {
  top: -1px;
}
.hamburgerWrap .hamburger .hamburger__line--2 {
  top: 7px;
}
.hamburgerWrap .hamburger .hamburger__line--3 {
  top: 15px;
}

/* 表示された時用のCSS */
.onMenu {
  height: 100%;
  overflow: hidden;
}
.onMenu .secHeader .logoArea {
  filter: invert(1);
}
.onMenu .global-nav {
  visibility: visible;
  opacity: 1;
  justify-content: center;
  background: #fff;
}
.onMenu .global-nav-inner {
  opacity: 1;
}
.onMenu .global-nav-inner .smt-nav-link {
  opacity: 1;
}

.onMenu .hamburger__line--1,
.onModal .hamburger__line--1 {
  top: 8px !important;
  width: 32px !important;
  transform: translateX(-50%) rotate(45deg) !important;
  -webkit-transform: translateX(-50%) rotate(45deg) !important;
  -ms-transform: translateX(-50%) rotate(45deg) !important;
}
.onMenu .hamburger__line--2,
.onModal .hamburger__line--2 {
  opacity: 0;
}
.onMenu .hamburger__line--3,
.onModal .hamburger__line--3 {
  transform: translateX(-50%) rotate(-45deg) !important;
  -webkit-transform: translateX(-50%) rotate(-45deg) !important;
  -ms-transform: translateX(-50%) rotate(-45deg) !important;
  top: 8px !important;
  width: 32px !important;
}

.pageLeft .navList,
.global-nav .navList {
  display: grid;
  gap: 13px;
}
.pageLeft .navList li a,
.global-nav .navList li a {
  display: grid;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}
.pageLeft .navList li a span,
.global-nav .navList li a span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(0.688rem, 0.125rem + 1vw, 0.75rem);
  letter-spacing: 0.07em;
}

.pageLeft .navList li a span {
  color: #818181;
}

.global-nav .global-nav-inner .smt-nav-link {
  padding: 100px 12px 50px;
  flex-direction: column;
}
.global-nav .global-nav-inner .smt-nav-link .navList {
  justify-content: left;
  gap: 30px;
  margin-right: auto;
}
.global-nav .global-nav-inner .smt-nav-link .navList li a {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  color: #fff;
  justify-content: left;
}
.global-nav .global-nav-inner .smt-nav-link .navList li a span {
  color: #fff;
}
.global-nav .global-nav-inner .smt-nav-link .btnWrap {
  margin-top: 50px;
  width: 100%;
  display: grid;
  gap: 20px;
}
.global-nav .global-nav-inner .smt-nav-link .btnWrap .comBtn {
  max-width: initial;
  border-radius: 5px;
}
.global-nav .global-nav-inner .smt-nav-link .btnWrap .line {
  background: #06C755;
  width: 100%;
  padding: 10px 15px;
  height: 70px;
}
.global-nav .global-nav-inner .smt-nav-link .btnWrap .line * {
  color: #fff;
}
.global-nav .global-nav-inner .smt-nav-link .btnWrap .line > div {
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: baseline;
  justify-content: left;
}
.global-nav .global-nav-inner .smt-nav-link .btnWrap .line > div span {
  position: relative;
  bottom: -3px;
  font-size: 30px;
  font-weight: 600;
}

footer {
  background: #1D1D1D;
  padding: 24px 0;
}
footer p {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.navWrap {
  justify-content: flex-end;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.navWrap .pnkzList {
  font-size: 12px;
  font-weight: 400;
  color: #1D1D1D;
}
.navWrap span:last-of-type {
  color: #1D1D1D;
}
.navWrap .pnkzArrow:before {
  color: #1D1D1D;
  content: ">";
}

@media screen and (max-width: 767px) {
  .navWrap {
    justify-content: left;
  }
  .navWrap .pnkzList:last-child {
    overflow: hidden;
    max-width: 200px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}
.secSchedule .tlWrap {
  padding: 26px 0 26px;
  border-bottom: 1px solid #1D1D1D;
  border-top: 1px solid #1D1D1D;
}
.secSchedule .scWrap .scCategory:first-of-type {
  padding-top: 30px;
}
.secSchedule .scWrap .scCategory {
  padding-bottom: 30px;
}
.secSchedule .scWrap .scCategory .scList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.secSchedule .scWrap .scCategory .scList.min60 {
  grid-template-columns: 1fr;
}
.secSchedule .scWrap .scCategory .scList.min60 .info_min60 {
  font-size: clamp(16px, 6.67vw, 26px);
  text-align: center;
  font-weight: bold;
  padding: 28px 0;
}
.secSchedule .scWrap .scCategory .scList .scItem {
  margin-top: 5px;
  border: 1px solid #1D1D1D;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info {
  padding: 13px 0;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .year {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap {
  display: flex;
  gap: 5px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .date {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-box-trim: trim-end;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .week {
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .week.red {
  background: #D93737;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .week.blue {
  background: #378BD9;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .week.black {
  background: #1D1D1D;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .time {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 600;
  width: 15px;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .time.red {
  color: #D93737;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .time.blue {
  color: #378BD9;
}
.secSchedule .scWrap .scCategory .scList .scItem a .info .wrap .time.black {
  color: #1D1D1D;
}
.secSchedule .scWrap .scCategory .scList .scItem a .bottom {
  width: 100%;
  background: #1D1D1D;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
}
.secSchedule .scWrap .scCategory .scList .scItem a .bottom img {
  width: 7px;
}
.secSchedule .comBtn {
  width: 100%;
  padding: 18px 15px;
  font-weight: 500;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background: #D9376E;
  border: none;
}

#anime {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0px;
}
#anime .text-infinity-scroll {
  width: 100%;
  display: flex;
  overflow: hidden;
}
#anime .text-infinity-scroll .first,
#anime .text-infinity-scroll .second {
  flex-shrink: 0;
  width: auto;
  height: auto;
  text-wrap: nowrap;
  word-break: keep-all;
  display: inline;
  opacity: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 84px;
  color: #fff;
  line-height: 150%;
  letter-spacing: -0.001em;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000;
}
#anime .text-infinity-scroll .first {
  animation: anim--first 250s infinite linear 0.1s both;
}
#anime .text-infinity-scroll .second {
  animation: anim--second 250s infinite linear 0.1s both;
}

@keyframes anim--first {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes anim--second {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.secLine {
  background: #fff;
  padding: 20px 0 40px;
}
.secLine .topImg {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0 auto;
}
.secLine .content {
  border: 1px solid #1D1D1D;
  text-align: center;
  box-shadow: 4px 4px;
  border-radius: 10px;
  background: #06C755;
  padding: 40px 20px;
}
.secLine p {
  font-size: clamp(14px, 5.64vw, 22px);
  font-weight: bold;
  padding-bottom: 10px;
  color: #fff;
}
.secLine .line {
  border-top: 1px dashed #fff;
  width: 100%;
  margin: 40px 0 35px;
}
.secLine .comBtn {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .secLine p {
    padding-bottom: 0;
  }
}/*# sourceMappingURL=common.css.map */