@charset "UTF-8";
/* =========================================================
colors
========================================================= */
/* =========================================================
body
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;700&display=swap");
html {
  font-size: 62.5%;
  letter-spacing: 0.03em;
  line-height: 1.3rem;
  overflow-x: hidden;
}

body {
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W4","Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1rem;
  background: #FE0D87;
  -webkit-overflow-scrolling: touch;
}

img {
  width: 100%;
}

@media print {
  html, body {
    _zoom: 70% !important;
  }
}

main {
  display: block;
  /*IE*/
}

a {
  text-decoration: none;
}

/**** media ****/
/* =========================================================
layout
========================================================= */
/* =========================================================
colors
========================================================= */
@-webkit-keyframes fade-in {
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
}

.fade-in.animated {
  -webkit-animation: fade-in 0.4s ease-in both;
  animation: fade-in 0.4s ease-in both;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes fade-in-down {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-down {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in-down {
  opacity: 0;
}

.fade-in-down.animated {
  -webkit-animation: fade-in-down 0.4s ease-out both;
  animation: fade-in-down 0.4s ease-out both;
}

@-webkit-keyframes fade-in-up {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in-up {
  opacity: 0;
}

.fade-in-up.animated {
  -webkit-animation: fade-in-up 0.4s ease-out both;
  animation: fade-in-up 0.4s ease-out both;
}

@-webkit-keyframes fade-in-left {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-left {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in-left {
  opacity: 0;
}

.fade-in-left.animated {
  -webkit-animation: fade-in-left 0.4s ease-out both;
  animation: fade-in-left 0.4s ease-out both;
}

@-webkit-keyframes fade-in-right {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in-right {
  opacity: 0;
}

.fade-in-right.animated {
  -webkit-animation: fade-in-right 0.4s ease-out both;
  animation: fade-in-right 0.4s ease-out both;
}

@-webkit-keyframes fade-nav {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-nav {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-nav {
  opacity: 0;
}

.fade-nav.animated {
  -webkit-animation: fade-nav 0.4s ease-out both;
  animation: fade-nav 0.4s ease-out both;
}

/* jp-anime */
.passing-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

@-webkit-keyframes passing-bar-right {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 100%;
  }
}

@keyframes passing-bar-right {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 100%;
  }
}

.passing-bar-right {
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 0;
  background: #000;
}

.passing-bar-right.animated {
  -webkit-animation: passing-bar-right 1s ease 0s 1 normal forwards;
  animation: passing-bar-right 1s ease 0s 1 normal forwards;
}

@-webkit-keyframes passing-bar-left {
  0% {
    left: 100%;
    width: 100%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 0%;
    width: 0%;
  }
}

@keyframes passing-bar-left {
  0% {
    left: 100%;
    width: 100%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 0%;
    width: 0%;
  }
}

.passing-bar-left {
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 0;
  background: #000;
}

.passing-bar-left.animated {
  -webkit-animation: passing-bar-left 1s ease 0s 1 normal forwards;
  animation: passing-bar-left 1s ease 0s 1 normal forwards;
}

@-webkit-keyframes passing-bar-up {
  0% {
    top: 100%;
    height: 100%;
  }
  50% {
    top: 0%;
    height: 100%;
  }
  51% {
    top: 100%;
    height: 100%;
  }
  100% {
    top: 0%;
    height: 100%;
    opacity: 0;
  }
}

@keyframes passing-bar-up {
  0% {
    top: 100%;
    height: 100%;
  }
  50% {
    top: 0%;
    height: 100%;
  }
  51% {
    top: 100%;
    height: 100%;
  }
  100% {
    top: 0%;
    height: 100%;
    opacity: 0;
  }
}

.passing-bar-up {
  position: absolute;
  display: inline-block;
  height: 0%;
  width: 100%;
  background: #000;
}

.passing-bar-up.animated {
  -webkit-animation: passing-bar-up 1s ease 0s 1 normal forwards;
  animation: passing-bar-up 1s ease 0s 1 normal forwards;
}

@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.passing-txt {
  opacity: 0;
}

.passing-txt.animated {
  -webkit-animation: passing-txt 1s ease 0s 1 normal forwards;
  animation: passing-txt 1s ease 0s 1 normal forwards;
}

/* mouse */
@-webkit-keyframes cursor-anime {
  0% {
    opacity: 0;
  }
  79% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cursor-anime {
  0% {
    opacity: 0;
  }
  79% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.cursor-anime {
  opacity: 0;
  -webkit-animation: cursor-anime 5s infinite;
  animation: cursor-anime 5s infinite;
}

/* bnr */
@-webkit-keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rotation {
  -webkit-animation: 3s linear infinite rotation;
  animation: 3s linear infinite rotation;
}

.font-comfortaa {
  font-family: 'Comfortaa', cursive;
}

.font-bold {
  font-weight: bold;
}

@media (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}

@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================================================
mv
========================================================= */
.mv {
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: -1;
}

/* TOP animetion */
@-webkit-keyframes change_01 {
  0% {
    opacity: 1;
  }
  19% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes change_01 {
  0% {
    opacity: 1;
  }
  19% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes change_02 {
  0% {
    opacity: 1;
  }
  39% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes change_02 {
  0% {
    opacity: 1;
  }
  39% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes change_03 {
  0% {
    opacity: 1;
  }
  59% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes change_03 {
  0% {
    opacity: 1;
  }
  59% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes change_04 {
  0% {
    opacity: 1;
  }
  79% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes change_04 {
  0% {
    opacity: 1;
  }
  79% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes change_05 {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes change_05 {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.mv__list {
  position: relative;
}

.mv__list > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mv__list > *:nth-child(1) {
  z-index: 4;
  -webkit-animation: change_01 4s infinite;
  animation: change_01 4s infinite;
}

.mv__list > *:nth-child(2) {
  z-index: 3;
  -webkit-animation: change_02 4s infinite;
  animation: change_02 4s infinite;
}

.mv__list > *:nth-child(3) {
  z-index: 2;
  -webkit-animation: change_03 4s infinite;
  animation: change_03 4s infinite;
}

.mv__list > *:nth-child(4) {
  z-index: 1;
  -webkit-animation: change_04 4s infinite;
  animation: change_04 4s infinite;
}

.mv__list > *:nth-child(5) {
  z-index: 0;
  -webkit-animation: change_05 4s infinite;
  animation: change_05 4s infinite;
}

/* mouse */
#cursor {
  position: fixed;
  width: 160px;
  height: 160px;
  margin: -110px 0 0 -70px;
  z-index: 1000;
  pointer-events: none;
  transition: transform 0.5s;
  opacity: 0;
}

#cursor .cursor__inner {
  position: relative;
}

#cursor .cursor__inner-img {
  position: absolute;
}

@media (max-width: 769px) {
  #cursor {
    display: none;
  }
}

/* mvbnr */
.mv__bnr {
  position: fixed;
  top: 20px;
  left: 70px;
  z-index: 98;
}

@media (max-width: 769px) {
  .mv__bnr {
    top: 5px;
    left: auto;
    right: 70px;
  }
}

.mv__bnr-img {
  width: 132px;
  position: relative;
}

@media (max-width: 769px) {
  .mv__bnr-img {
    width: 54px;
  }
}

.mv__bnr-img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.mv__bnr-img a .bnr-txt {
  z-index: 2;
}

/* =========================================================
sidemenu
========================================================= */
.sidemenu-wrap {
  position: fixed;
  top: 0;
  background: #FFF;
  z-index: 10;
}

.sidemenu {
  width: 48px;
  height: 100vh;
  padding: 20px 15px 0px;
  box-sizing: border-box;
  position: relative;
  margin: auto;
}

.sidemenu__sns {
  display: flex;
  justify-items: center;
  flex-flow: column;
}

.sidemenu__sns li {
  margin: auto;
  margin-bottom: 10px;
}

.sidemenu__sns .sns__facebook {
  width: 9px;
}

.sidemenu__sns .sns__twitter {
  width: 15px;
}

.sidemenu__sns .sns__instagram {
  width: 16px;
}

.sidemenu__scroll-wrap {
  position: absolute;
  bottom: 120px;
}

.sidemenu__scroll {
  transform: rotate(90deg);
  position: relative;
  font-family: 'IBM Plex Sans', sans-serif;
  margin-left: -11px;
}

.sidemenu__scroll::after {
  content: "";
  position: absolute;
  border-top: 1px solid #000;
  top: 4px;
  right: -121px;
  width: 111px;
  height: 1px;
}

.sp-header__sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0 calc(1120 * (100vw / 750)) 24px;
}

.sp-header__sns-list {
  margin-right: 21px;
}

.sp-header__sns .sns__facebook {
  width: 12px;
}

.sp-header__sns .sns__twitter {
  width: 22px;
}

.sp-header__sns .sns__instagram {
  width: 22px;
}

/*menu*/
.sp-menu-wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  z-index: 99;
  background: #FE0D87;
}

.sp-menu {
  height: 18px;
  position: absolute;
  right: 16px;
  top: 21px;
  width: 28px;
  z-index: 99;
}

.sp-menu__line {
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}

.sp-menu__line-center {
  top: 8px;
  width: 75%;
}

.sp-menu__line-bottom {
  bottom: 0;
}

.sp-menu__line-top.active {
  top: 6px;
  transform: rotate(45deg);
}

.sp-menu__line-center.active {
  transform: scaleX(0);
}

.sp-menu__line-bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}

/*gnav*/
.gnav {
  background: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
  top: 0;
  left: 0;
}

.gnav__wrap {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
  pointer-events: auto;
}

.gnav__menu {
  margin-top: 13vh;
}

.gnav__menu__item {
  margin: 26px 0;
}

.gnav__menu__item a {
  color: #fff;
  font-size: 40px;
  font-weight: normal;
  padding: 0px;
  text-decoration: none;
  transition: .5s;
  font-family: 'IBM Plex Sans', sans-serif;
}

.gnav__menu__item a:hover {
  opacity: 0.7;
}

/* =========================================================
link menu
========================================================= */
.main-menu {
  position: fixed;
  top: 52%;
  left: 65px;
}

.main-menu__list li {
  margin-bottom: 20px;
}

.main-menu__list-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFF;
  opacity: 1;
}

.main-menu__list-link:hover {
  text-decoration: line-through;
}

.main-menu .is-active {
  text-decoration: line-through;
}

.mv__menu {
  width: 100%;
  margin-top: 668px;
  padding-left: 76px;
  box-sizing: border-box;
}

.mv__menu__list li {
  margin-bottom: 6px;
}

.mv__menu__list-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: calc(60 * (100vw / 1400));
  color: #FFF;
  opacity: 1;
}

.none-link {
  color: #FFF;
  opacity: 0.5;
  pointer-events: none;
}

/* =========================================================
Main
========================================================= */
.main-contents {
  max-width: 1280px;
  margin: auto;
  padding-left: 48px;
  box-sizing: border-box;
}

@media (max-width: 769px) {
  .main-contents {
    padding: 0px 10px;
  }
}

/* =========================================================
about
========================================================= */
.about {
  margin: calc(92 * (100vw / 1400)) 0 auto auto;
  max-width: 1083px;
}

@media (max-width: 1200px) {
  .about {
    margin: auto 10px auto 150px;
  }
}

@media (max-width: 769px) {
  .about {
    margin: auto 0px auto 0px;
    width: 100%;
    box-sizing: border-box;
  }
}

.about__ttl {
  margin: 0px;
}

.about__ttl-e {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: calc(160 * (100vw / 1400));
  font-weight: 700;
  color: #041FE7;
  text-shadow: 2px 2px 0 #21EF08, -2px -2px 0 #21EF08, -2px 2px 0 #21EF08, 2px -2px 0 #21EF08, 0px 2px 0 #21EF08, 0 -2px 0 #21EF08, -2px 0 0 #21EF08, 2px 0 0 #21EF08;
}

@media (max-width: 769px) {
  .about__ttl-e {
    font-size: 90px;
    margin: 0px auto auto -5px;
  }
}

.about__ttl-j {
  margin: calc(-47 * (100vw / 1400)) auto auto calc(58 * (100vw / 1400));
}

@media (max-width: 769px) {
  .about__ttl-j {
    margin: -20px auto auto 25px;
  }
}

.about__ttl-j p {
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-size: calc(48 * (100vw / 1400));
  display: inline-block;
  padding: calc(12 * (100vw / 1400)) calc(17 * (100vw / 1400)) calc(12 * (100vw / 1400)) calc(28 * (100vw / 1400));
  color: #FE0D87;
  background: #24FD00;
}

@media (max-width: 769px) {
  .about__ttl-j p {
    font-size: 20px;
    padding: 8px 10px;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .about__ttl-j p {
    font-family: Meiryo, sans-serif;
  }
}

.about__detail {
  max-width: 1000px;
  background: #FFF;
  padding: calc(166 * (100vw / 1400)) 10% calc(114 * (100vw / 1400));
  margin: calc(-125 * (100vw / 1400)) 0px auto calc(85 * (100vw / 1400));
  box-sizing: border-box;
  font-size: 16px;
  line-height: 2em;
}

@media (max-width: 769px) {
  .about__detail {
    padding: 83px 24px 54px;
    margin: -63px 0px auto 0px;
    width: 100%;
  }
}

.about__date {
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}

@media (max-width: 769px) {
  .about__date {
    font-size: 14px;
    margin-bottom: 3px;
  }
}

.about__date-number {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 30px;
  margin-left: 7px;
  font-weight: 700;
}

@media (max-width: 769px) {
  .about__date-number {
    font-size: 21px;
  }
}

.about__txt {
  letter-spacing: 0px;
  font-size: 16px;
}

@media (max-width: 769px) {
  .about__txt {
    font-size: 14px;
    line-height: 2em;
  }
}

.about__notes {
  margin-top: 30px;
  font-size: 14px;
}

@media (max-width: 769px) {
  .about__notes {
    margin-top: 20px;
    font-size: 12px;
    line-height: 2em;
    word-break: break-all;
  }
}

.about__notes a {
  text-decoration: underline;
  color: #000;
}

.about__notes a:hover {
  opacity: 0.7;
}

.about__overview {
  margin-top: 30px;
  letter-spacing: 0px;
  font-size: 16px;
}

.about__overview span {
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: bold;
}

@media (max-width: 769px) {
  .about__overview {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2em;
  }
}

/* =========================================================
news
========================================================= */
.news {
  max-width: 1080px;
  margin: calc(112 * (100vw / 1400)) calc(-10 * (100vw / 1400)) auto auto;
}

@media (max-width: 1200px) {
  .news {
    margin: calc(112 * (100vw / 1400)) 10px auto 150px;
  }
}

@media (max-width: 769px) {
  .news {
    margin: 75px auto auto auto;
  }
}

.news__ttl {
  margin: 0px;
  width: 100%;
}

.news__ttl-e {
  text-align: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: calc(160 * (100vw / 1400));
  font-weight: 700;
  color: #24FD00;
  text-shadow: 2px 2px 0 #FE0D87, -2px -2px 0 #FE0D87, -2px 2px 0 #FE0D87, 2px -2px 0 #FE0D87, 0px 2px 0 #FE0D87, 0 -2px 0 #FE0D87, -2px 0 0 #FE0D87, 2px 0 0 #FE0D87;
}

@media (max-width: 769px) {
  .news__ttl-e {
    font-size: 90px;
  }
}

.news__ttl-j {
  margin: calc(-32 * (100vw / 1400)) auto auto auto;
  text-align: center;
}

@media (max-width: 769px) {
  .news__ttl-j {
    margin: -17px auto auto auto;
  }
}

.news__ttl-j p {
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-size: calc(48 * (100vw / 1400));
  display: inline-block;
  padding: calc(12 * (100vw / 1400)) calc(28 * (100vw / 1400));
  color: #24FD00;
  background: #041FE7;
}

@media (max-width: 769px) {
  .news__ttl-j p {
    font-size: 20px;
    padding: 8px 18px;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .news__ttl-j p {
    font-family: Meiryo, sans-serif;
  }
}

.news__detail {
  max-width: 100%;
  background: #FFF;
  padding: calc(200 * (100vw / 1400)) 5.7% calc(57 * (100vw / 1400));
  margin: calc(-155 * (100vw / 1400)) 0 auto 0;
  box-sizing: border-box;
  line-height: 2em;
}

@media (max-width: 769px) {
  .news__detail {
    padding: 87px 5.7% 48px;
    margin: -67px 0 auto 0;
  }
}

.news__detail-list {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}

.news__detail-img {
  width: 22%;
  margin-bottom: 2%;
}

@media (max-width: 769px) {
  .news__detail-img {
    width: 48%;
  }
}

/* =========================================================
creators
========================================================= */
.creators {
  margin: calc(110 * (100vw / 1400)) 0px auto auto;
  max-width: 1080px;
}

@media (max-width: 1200px) {
  .creators {
    margin: calc(110 * (100vw / 1400)) 10px auto 150px;
  }
}

@media (max-width: 769px) {
  .creators {
    margin: 85px 0px auto auto;
  }
}

.creators__ttl {
  margin: 0px;
}

.creators__ttl-e {
  margin-left: calc(-50 * (100vw / 1400));
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: calc(160 * (100vw / 1400));
  font-weight: 700;
  color: #041FE7;
  text-shadow: 2px 2px 0 #21EF08, -2px -2px 0 #21EF08, -2px 2px 0 #21EF08, 2px -2px 0 #21EF08, 0px 2px 0 #21EF08, 0 -2px 0 #21EF08, -2px 0 0 #21EF08, 2px 0 0 #21EF08;
}

@media (max-width: 769px) {
  .creators__ttl-e {
    margin-left: -5px;
    font-size: 90px;
    line-height: 0.85em;
  }
}

.creators__ttl-j {
  margin: calc(-31 * (100vw / 1400)) auto auto calc(46 * (100vw / 1400));
}

@media (max-width: 769px) {
  .creators__ttl-j {
    margin: -95px auto auto 192px;
  }
}

@media (max-width: 320px) {
  .creators__ttl-j {
    margin: -95px auto auto 150px;
  }
}

.creators__ttl-j p {
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-size: calc(48 * (100vw / 1400));
  display: inline-block;
  padding: calc(12 * (100vw / 1400)) calc(6 * (100vw / 1400)) calc(12 * (100vw / 1400)) calc(14 * (100vw / 1400));
  color: #FE0D87;
  background: #24FD00;
}

@media (max-width: 769px) {
  .creators__ttl-j p {
    font-size: 20px;
    padding: 8px 13px;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .creators__ttl-j p {
    font-family: Meiryo, sans-serif;
  }
}

.creators__detail {
  max-width: 1080px;
  background: #FFF;
  padding: calc(197 * (100vw / 1400)) 5.4% calc(75 * (100vw / 1400)) 5.9%;
  margin: calc(-155 * (100vw / 1400)) 0px auto 0px;
  box-sizing: border-box;
  font-size: calc(16 * (100vw / 1400));
  line-height: 2em;
}

@media (max-width: 769px) {
  .creators__detail {
    font-size: 14px;
    padding: 142px 5.4% 35px 5.9%;
    margin: -60px 0px auto 0px;
  }
}

.creators__detail-list {
  display: flex;
  flex-flow: wrap;
}

.creators__detail-box {
  width: 22.6%;
  margin-bottom: 3%;
  margin-right: 3%;
  padding-top: 10px;
  counter-increment: section;
}

.creators__detail-box:nth-child(4n) {
  margin-right: 0;
}

@media (max-width: 769px) {
  .creators__detail-box:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 769px) {
  .creators__detail-box {
    width: 48%;
    margin-bottom: 30px;
    margin-right: 4%;
  }
}

.creators__detail-box-wrap {
  position: relative;
}

.creators__detail-box-wrap:after {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  left: -9px;
  top: -5px;
  height: 27px;
  width: 21px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: bold;
  display: inline-block;
  background: #FE0D87;
  padding: 0 12px 0 8px;
  color: #FFF;
  font-size: 21px;
  line-height: 1.3em;
  letter-spacing: -0.06em;
}

@media (max-width: 769px) {
  .creators__detail-box-wrap:after {
    left: -7px;
    top: -7px;
    font-size: 18px;
    padding: 0 6px;
    height: 25px;
  }
}

.creators__detail-box-wrap label {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 15;
  top: 0;
  left: 0;
  cursor: pointer;
}

.creators__detail-box-link {
  line-height: 0;
}

.creators__detail-box-img {
  position: relative;
}

.creators__detail-box-img:before {
  transition: 0.5s;
  position: absolute;
  content: "";
  color: #FFF;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0);
  border: none;
}

.creators__detail-box-img::after {
  position: absolute;
  content: " ";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.creators__detail-box-link:hover .creators__detail-box-img::before {
  background-color: rgba(0, 0, 0, 0.8);
  border: 4px solid #FFF;
  box-sizing: border-box;
}

.creators__detail-box-link:hover .creators__detail-box-img::after {
  content: "PROFILE";
  color: #FFF;
}

.creators__detail-name {
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.18em;
  margin-top: 10px;
}

.creators__detail-more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 30px;
  color: #FE0D87;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .creators__detail-more {
    font-size: calc(30 * (100vw / 1400));
  }
}

@media (max-width: 769px) {
  .creators__detail-more {
    font-size: 20px;
  }
}

@media (max-width: 320px) {
  .creators__detail-more {
    font-size: 18px;
  }
}

/* =========================================================
exhibition
========================================================= */
.exhibition {
  margin: calc(110 * (100vw / 1400)) 9% auto auto;
  max-width: 1000px;
}

@media (max-width: 1200px) {
  .exhibition {
    margin: calc(110 * (100vw / 1400)) 10px auto 150px;
  }
}

@media (max-width: 769px) {
  .exhibition {
    margin: 84px 0px auto 0px;
  }
}

.exhibition__ttl {
  margin: 0px;
}

.exhibition__ttl-e {
  margin-left: calc(-90 * (100vw / 1400));
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: calc(160 * (100vw / 1400));
  font-weight: 700;
  color: #24FD00;
  text-shadow: 2px 2px 0 #FE0D87, -2px -2px 0 #FE0D87, -2px 2px 0 #FE0D87, 2px -2px 0 #FE0D87, 0px 2px 0 #FE0D87, 0 -2px 0 #FE0D87, -2px 0 0 #FE0D87, 2px 0 0 #FE0D87;
}

@media (max-width: 769px) {
  .exhibition__ttl-e {
    margin: auto 0px auto -10px;
    font-size: 90px;
    line-height: 0.85em;
  }
}

.exhibition__ttl-j {
  margin: calc(-46 * (100vw / 1400)) auto auto calc(59 * (100vw / 1400));
}

@media (max-width: 769px) {
  .exhibition__ttl-j {
    margin: -95px auto auto 227px;
  }
}

@media (max-width: 320px) {
  .exhibition__ttl-j {
    margin: -95px auto auto 190px;
  }
}

.exhibition__ttl-j p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-size: calc(48 * (100vw / 1400));
  display: inline-block;
  padding: calc(12 * (100vw / 1400)) calc(14 * (100vw / 1400));
  color: #FE0D87;
  background: #041FE7;
  width: calc(50 * (100vw / 1400));
}

@media (max-width: 769px) {
  .exhibition__ttl-j p {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 8px 13px;
    width: auto;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .exhibition__ttl-j p {
    font-family: Meiryo, sans-serif;
  }
}

.exhibition__detail {
  max-width: 1000px;
  background: #FFF;
  padding: calc(144 * (100vw / 1400)) 5.7% calc(110 * (100vw / 1400));
  margin: calc(-272 * (100vw / 1400)) 0px auto 0px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 2em;
}

@media (max-width: 769px) {
  .exhibition__detail {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 140px 5.7% 72px;
    margin: -60px 0px auto 0px;
  }
}

.exhibition__detail-txt {
  max-width: 700px;
  margin-left: 17%;
  margin-bottom: calc(82 * (100vw / 1400));
}

@media (max-width: 769px) {
  .exhibition__detail-txt {
    font-size: 14px;
    line-height: 2em;
    margin-left: 0%;
  }
}

.exhibition__detail-box {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  border: solid 4px #FE0D87;
  padding: calc(25 * (100vw / 1400)) calc(25 * (100vw / 1400)) calc(15 * (100vw / 1400));
  margin: auto auto calc(40 * (100vw / 1400));
  box-sizing: border-box;
  box-shadow: 10px 10px #FE0D87;
  position: relative;
}

@media (max-width: 769px) {
  .exhibition__detail-box {
    flex-direction: column;
    margin: auto auto 27px -10px;
    padding: 22px 22px 20px;
  }
}

.exhibition__detail-box a {
  text-decoration: underline;
  color: #000;
}

.exhibition__detail-box a:hover {
  opacity: 0.7;
}

.exhibition__detail-box:last-child {
  margin: auto auto 0px;
}

@media (max-width: 769px) {
  .exhibition__detail-box:last-child {
    flex-direction: column;
    margin: auto auto 0px -10px;
  }
}

.exhibition__detail-box::before {
  position: absolute;
  content: "";
  top: -4px;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #FE0D87;
}

.exhibition__detail-box::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #FE0D87 transparent  transparent;
}


.exhibition__detail-box2 {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 10px;
}

@media (max-width: 769px) {
  .exhibition__detail-box2 {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.exhibition__detail-box2 a {
  text-decoration: underline;
  color: #000;
}

.exhibition__detail-box2 a:hover {
  opacity: 0.7;
}

.exhibition__detail-box2:last-child {
  margin: auto auto 0px;
}

@media (max-width: 769px) {
  .exhibition__detail-box2:last-child {
    flex-direction: column;
    margin: auto auto 0px -10px;
  }
}

.exhibition__detail-list2 {
  max-width: 800px;
  border: solid 4px #FE0D87;
  padding: calc(25 * (100vw / 1400)) calc(25 * (100vw / 1400)) calc(15 * (100vw / 1400));
  margin: auto auto calc(40 * (100vw / 1400));
  box-sizing: border-box;
  box-shadow: 10px 10px #FE0D87;
  position: relative;
}

@media (max-width: 769px) {
  .exhibition__detail-list2 {
    margin: auto auto 27px -10px;
    padding: 22px 22px 20px;
  }
}

.exhibition__detail-list2::before {
  position: absolute;
  content: "";
  top: -4px;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #FE0D87;
}

.exhibition__detail-list2::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #FE0D87 transparent  transparent;
}

.exhibition__detail-list2-ttl {
  font-size: 24px;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  margin-bottom: 15px;
  font-weight: bold;
}

@media (max-width: 769px) {
  .exhibition__detail-list2-ttl {
    font-size: 18px;
    line-height: 1.6em;
  }
}

.exhibition__detail-list2-txt {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 2em;
}



.exhibition__detail-img {
  width: 29.5%;
}

@media (max-width: 769px) {
  .exhibition__detail-img {
    width: 100%;
  }
}

.exhibition__detail-data {
  width: 64.5%;
  margin-left: 4%;
}

@media (max-width: 769px) {
  .exhibition__detail-data {
    width: 100%;
    margin-left: 0%;
  }
}

.exhibition__detail-ttl {
  width: 100%;
  font-size: 24px;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  margin: -2px auto 7px auto;
  font-weight: bold;
}

@media (max-width: 769px) {
  .exhibition__detail-ttl {
    font-size: 18px;
    line-height: 1.6em;
    margin: 4px auto 0px auto;
  }
}

.exhibition__detail-data-txt {
  font-size: 14px;
  line-height: 2.1em;
  margin-bottom: 2px;
}

@media (max-width: 769px) {
  .exhibition__detail-data-txt {
    line-height: 2em;
  }
}

.exhibition__detail-creator {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: #FE0D87;
}

@media (max-width: 769px) {
  .exhibition__detail-creator {
    line-height: 1em;
    margin: 15px 0px 8px;
  }
}

.exhibition__detail-link {
  font-size: 14px;
  line-height: 2.1em;
}

.exhibition__detail-link label {
  cursor: pointer;
}

@media (max-width: 769px) {
  .exhibition__detail-link {
    line-height: 2em;
  }
}

.exhibition__detail-icon {
  width: 21px;
  margin: -9px -7px auto auto;
}

@media (max-width: 769px) {
  .exhibition__detail-icon {
    margin: 5px auto auto 0px;
  }
}

/* =========================================================
popup
========================================================= */
.popup {
  margin: calc(117 * (100vw / 1400)) 0px auto auto;
  max-width: 1080px;
}

@media (max-width: 1200px) {
  .popup {
    margin: calc(117 * (100vw / 1400)) 10px auto 150px;
  }
}

@media (max-width: 769px) {
  .popup {
    margin: 81px 0px auto 0px;
  }
}

.popup__ttl {
  margin: 0px;
}

.popup__ttl-e {
  line-height: 0.9em;
  text-align: right;
  margin: auto calc(-14 * (100vw / 1400)) auto auto;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: calc(160 * (100vw / 1400));
  font-weight: 700;
  color: #FFFE41;
  text-shadow: 2px 2px 0 #21EF08, -2px -2px 0 #21EF08, -2px 2px 0 #21EF08, 2px -2px 0 #21EF08, 0px 2px 0 #21EF08, 0 -2px 0 #21EF08, -2px 0 0 #21EF08, 2px 0 0 #21EF08;
}

@media (max-width: 769px) {
  .popup__ttl-e {
    margin: auto auto auto -10px;
    font-size: 90px;
    text-align: left;
  }
}

.popup__ttl-e span {
  padding-right: calc(35 * (100vw / 1400));
}

.popup__ttl-j {
  margin: calc(-28 * (100vw / 1400)) calc(88 * (100vw / 1400)) auto auto;
  text-align: right;
}

@media (max-width: 769px) {
  .popup__ttl-j {
    margin: -95px auto auto 224px;
    text-align: left;
  }
}

@media (max-width: 320px) {
  .popup__ttl-j {
    margin: -95px auto auto 185px;
  }
}

.popup__ttl-j p {
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-size: calc(48 * (100vw / 1400));
  display: inline-block;
  padding: calc(12 * (100vw / 1400)) calc(14 * (100vw / 1400));
  color: #FE0D87;
  background: #24FD00;
}

@media (max-width: 769px) {
  .popup__ttl-j p {
    font-size: 20px;
    padding: 8px 14px;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .popup__ttl-j p {
    font-family: Meiryo, sans-serif;
  }
}

.popup__detail {
  max-width: 1000px;
  background: #FFF;
  padding: calc(205 * (100vw / 1400)) 5.7% calc(110 * (100vw / 1400));
  margin: calc(-230 * (100vw / 1400)) 0px auto 0px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 2em;
}

@media (max-width: 769px) {
  .popup__detail {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 140px 5.7% 72px;
    margin: -60px 0px auto 0px;
  }
}

.popup__detail-txt {
  max-width: 580px;
  margin-left: 4%;
  margin-bottom: calc(60 * (100vw / 1400));
}

@media (max-width: 769px) {
  .popup__detail-txt {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 2em;
    margin-left: 0%;
  }
}

.popup__detail-txt2 {
  margin-bottom: 20px;
}

@media (max-width: 769px) {
  .popup__detail-txt2 {
    width: 100%;
    font-size: 14px;
    line-height: 2em;
    margin-left: 0%;
  }
}

.popup__detail-list {
  max-width: 800px;
  border: solid 4px #FE0D87;
  padding: calc(25 * (100vw / 1400)) calc(25 * (100vw / 1400)) calc(15 * (100vw / 1400));
  margin: auto auto calc(40 * (100vw / 1400));
  box-sizing: border-box;
  box-shadow: 10px 10px #FE0D87;
  position: relative;
}

@media (max-width: 769px) {
  .popup__detail-list {
    margin: auto auto 27px -10px;
    padding: 22px 22px 20px;
  }
}

.popup__detail-list::before {
  position: absolute;
  content: "";
  top: -4px;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #FE0D87;
}

.popup__detail-list::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #FE0D87 transparent  transparent;
}

.popup__detail-list-ttl {
  font-size: 24px;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  margin-bottom: 15px;
  font-weight: bold;
}

@media (max-width: 769px) {
  .popup__detail-list-ttl {
    font-size: 18px;
    line-height: 1.6em;
  }
}

.popup__detail-list-txt {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 2em;
}

.popup__detail-box {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 10px;
}

@media (max-width: 769px) {
  .popup__detail-box {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.popup__detail-box a {
  text-decoration: underline;
  color: #000;
}

.popup__detail-box a:hover {
  opacity: 0.7;
}

.popup__detail-box:last-child {
  margin: auto auto 0px;
}

@media (max-width: 769px) {
  .popup__detail-box:last-child {
    flex-direction: column;
    margin: auto auto 0px -10px;
  }
}

.popup__detail-img {
  width: 29.5%;
}

@media (max-width: 769px) {
  .popup__detail-img {
    width: 100%;
  }
}

.popup__detail-data {
  width: 66.5%;
  margin-left: 4%;
}

@media (max-width: 769px) {
  .popup__detail-data {
    width: 100%;
    margin-left: 0%;
  }
}

.popup__detail-ttl {
  width: 100%;
  font-size: 24px;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: bold;
  margin: -2px auto 7px auto;
}

@media (max-width: 769px) {
  .popup__detail-ttl {
    font-size: 18px;
    line-height: 1.6em;
    margin: 4px auto 0px auto;
  }
}

.popup__detail-ttl a {
  text-decoration: none;
}

.popup__detail-data-txt {
  font-size: 14px;
  line-height: 2.1em;
  margin-bottom: 2px;
}

@media (max-width: 769px) {
  .popup__detail-data-txt {
    line-height: 2em;
  }
}

.popup__detail-info {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: #FE0D87;
}

@media (max-width: 769px) {
  .popup__detail-info {
    line-height: 1em;
    margin: 15px 0px 8px;
  }
}

.popup__detail-link {
  font-size: 14px;
  line-height: 2.1em;
}

.popup__detail-link label {
  cursor: pointer;
}

@media (max-width: 769px) {
  .popup__detail-link {
    line-height: 2em;
  }
}

.popup__detail-icon {
  width: 21px;
  margin: -9px -7px auto auto;
}

@media (max-width: 769px) {
  .popup__detail-icon {
    margin: 5px auto auto 0px;
  }
}

/* =========================================================
event
========================================================= */
.event {
  margin: calc(110 * (100vw / 1400)) 0px auto auto;
  max-width: 1080px;
}

@media (max-width: 1200px) {
  .event {
    margin: calc(110 * (100vw / 1400)) 10px auto 150px;
  }
}

@media (max-width: 769px) {
  .event {
    margin: 77px 0px auto 0px;
  }
}

.event__ttl {
  margin: 0px;
}

.event__ttl-e {
  margin-left: calc(-52 * (100vw / 1400));
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: calc(160 * (100vw / 1400));
  font-weight: 700;
  color: #041FE7;
  text-shadow: 2px 2px 0 #21EF08, -2px -2px 0 #21EF08, -2px 2px 0 #21EF08, 2px -2px 0 #21EF08, 0px 2px 0 #21EF08, 0 -2px 0 #21EF08, -2px 0 0 #21EF08, 2px 0 0 #21EF08;
}

@media (max-width: 769px) {
  .event__ttl-e {
    margin: 0px 0px auto -10px;
    font-size: 90px;
  }
}

.event__ttl-j {
  margin: calc(-31 * (100vw / 1400)) auto auto calc(-6 * (100vw / 1400));
}

@media (max-width: 769px) {
  .event__ttl-j {
    margin: -25px 0px auto 19px;
  }
}

.event__ttl-j p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-size: calc(48 * (100vw / 1400));
  display: inline-block;
  padding: calc(12 * (100vw / 1400)) calc(14 * (100vw / 1400));
  color: #FE0D87;
  background: #24FD00;
  width: calc(50 * (100vw / 1400));
}

@media (max-width: 769px) {
  .event__ttl-j p {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 8px 14px;
    margin: 0px 0px auto 0px;
    width: auto;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .event__ttl-j p {
    font-family: Meiryo, sans-serif;
  }
}

.event__detail {
  max-width: 1000px;
  background: #FFF;
  padding: calc(120 * (100vw / 1400)) 5.7% calc(110 * (100vw / 1400));
  margin: calc(-272 * (100vw / 1400)) 0px auto calc(20 * (100vw / 1400));
  box-sizing: border-box;
  font-size: 16px;
  line-height: 2em;
}

@media (max-width: 769px) {
  .event__detail {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 80px 5.7% 72px;
    margin: -60px 0px auto 0px;
  }
}

.event__detail-txt {
  max-width: 800px;
  margin-left: 4%;
  margin-bottom: calc(60 * (100vw / 1400));
}

@media (max-width: 769px) {
  .event__detail-txt {
    font-size: 14px;
    line-height: 2em;
    margin-left: 0%;
  }
}

.event__detail-txt span {
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: bold;
}

.event__detail-txt2 {
  max-width: 800px;
  margin: auto  auto 30px 4%;
}

@media (max-width: 769px) {
  .event__detail-txt2 {
    font-size: 14px;
    line-height: 2em;
    margin-left: 0%;
  }
}

.event__detail-box {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  border: solid 4px #FE0D87;
  padding: calc(25 * (100vw / 1400)) calc(25 * (100vw / 1400)) calc(15 * (100vw / 1400));
  margin: auto auto calc(40 * (100vw / 1400));
  box-sizing: border-box;
  box-shadow: 10px 10px #FE0D87;
  position: relative;
}

@media (max-width: 769px) {
  .event__detail-box {
    flex-direction: column;
    margin: auto auto 27px -10px;
    padding: 22px 22px 20px;
  }
}

.event__detail-box a {
  text-decoration: underline;
  color: #000;
}

.event__detail-box a:hover {
  opacity: 0.7;
}

.event__detail-box:last-child {
  margin: auto auto 0px;
}

@media (max-width: 769px) {
  .event__detail-box:last-child {
    flex-direction: column;
    margin: auto auto 0px -10px;
  }
}

.event__detail-box::before {
  position: absolute;
  content: "";
  top: -4px;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #FE0D87;
}

.event__detail-box::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #FE0D87 transparent  transparent;
}

.event__detail-box-ttl {
  width: 100%;
  font-size: 24px;
  line-height: 1.8em;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: bold;
  margin: -2px auto 7px auto;
}

@media (max-width: 769px) {
  .event__detail-box-ttl {
    font-size: 18px;
    line-height: 1.6em;
    margin: 4px auto 0px auto;
  }
}

.event__detail-box2 {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 10px;
}

@media (max-width: 769px) {
  .event__detail-box2 {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.event__detail-box2 a {
  text-decoration: underline;
  color: #000;
}

.event__detail-box2 a:hover {
  opacity: 0.7;
}

.event__detail-box2:last-child {
  margin: auto auto 0px;
}

@media (max-width: 769px) {
  .event__detail-box2:last-child {
    flex-direction: column;
    margin: auto auto 0px -10px;
  }
}



.event__detail-list {
  max-width: 800px;
  border: solid 4px #FE0D87;
  padding: calc(25 * (100vw / 1400)) calc(25 * (100vw / 1400)) calc(15 * (100vw / 1400));
  margin: auto auto calc(40 * (100vw / 1400));
  box-sizing: border-box;
  box-shadow: 10px 10px #FE0D87;
  position: relative;
}

@media (max-width: 769px) {
  .event__detail-list {
    margin: auto auto 27px -10px;
    padding: 22px 22px 20px;
  }
}

.event__detail-list::before {
  position: absolute;
  content: "";
  top: -4px;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #FE0D87;
}

.event__detail-list::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #FE0D87 transparent  transparent;
}

.event__detail-list-ttl {
  font-size: 24px;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  margin-bottom: 15px;
  font-weight: bold;
}

@media (max-width: 769px) {
  .event__detail-list-ttl {
    font-size: 18px;
    line-height: 1.6em;
  }
}

.event__detail-list-txt {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 2em;
}



.event__detail-img {
  width: 29.5%;
}

@media (max-width: 769px) {
  .event__detail-img {
    width: 100%;
  }
}

.event__detail-data {
  width: 66.5%;
  margin-left: 4%;
}

@media (max-width: 769px) {
  .event__detail-data {
    width: 100%;
    margin-left: 0%;
  }
}

.event__detail-ttl {
  width: 100%;
  font-size: 24px;
  line-height: 1.8em;
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: bold;
  margin: 50px auto 15px 4%;
}

@media (max-width: 769px) {
  .event__detail-ttl {
    font-size: 18px;
    line-height: 1.6em;
    margin: 4px auto 0px auto;
  }
}

.event__detail-data-txt {
  font-size: 14px;
  line-height: 2.1em;
  margin-bottom: 2px;
}

@media (max-width: 769px) {
  .event__detail-data-txt {
    line-height: 2em;
  }
}

.event__detail-link {
  font-size: 14px;
  line-height: 2.1em;
}

.event__detail-link label {
  cursor: pointer;
}

@media (max-width: 769px) {
  .event__detail-link {
    line-height: 2em;
  }
}

.event__detail-icon {
  width: 21px;
  margin: -9px -7px auto auto;
}

@media (max-width: 769px) {
  .event__detail-icon {
    margin: 5px auto auto 0px;
  }
}

.comingsoon {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: calc(60 * (100vw / 1400));
  font-weight: 700;
  text-align: center;
  margin: calc(90 * (100vw / 1400)) auto;
  color: #FFF;
}

@media (max-width: 769px) {
  .comingsoon {
    font-size: 30px;
    font-weight: 500;
  }
}

/* Modal */
.open-modal:checked ~ .modal__overlay,
.open-modal:checked ~ .modal__wrapper {
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
  overflow: visible;
  pointer-events: initial;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 0;
  height: 100%;
  max-height: 0;
  transition: opacity 0s;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  overflow: hidden;
  z-index: 998;
  pointer-events: none;
}

.modal__wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 86.66667vw;
  max-width: 0;
  height: calc(80vh - 9.33333vw);
  max-height: 0;
  margin: auto;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s;
  opacity: 0;
  overflow: hidden;
  z-index: 999;
  pointer-events: none;
}

@media (min-width: 769px) {
  .modal__wrapper {
    width: 53vw;
    height: auto;
    max-height: 80vh !important;
    margin: 70px auto auto;
  }
}

@media (max-width: 769px) {
  .modal__wrapper {
    width: 76vw;
  }
}

.modal__cont {
  display: flex;
  max-height: 80vh;
  justify-content: space-between;
  overflow: auto;
  box-sizing: border-box;
}

@media (max-width: 769px) {
  .modal__cont {
    flex-direction: column;
    margin-top: 0px;
  }
}

.modal__img {
  width: calc(250 * (100vw / 1400));
  margin: 10px 0 0 20px;
  position: relative;
}

@media (max-width: 769px) {
  .modal__img {
    width: 97%;
    margin: 10px 0 0 4px;
  }
}

.modal__img:after {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  left: -12px;
  top: -6px;
  height: 27px;
  width: 21px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: bold;
  display: inline-block;
  background: #FE0D87;
  padding: 0 12px 0 8px;
  color: #FFF;
  font-size: 21px;
  line-height: 1.3em;
  letter-spacing: -0.06em;
}

@media (max-width: 769px) {
  .modal__img:after {
    left: -6px;
    top: -4px;
    font-size: 18px;
    padding: 0 5px 0 8px;
    height: 25px;
  }
}

.modal__img img {
  display: inline-block;
}

.modal__data {
  width: calc(455 * (100vw / 1400));
  color: #FFF;
  font-family: "ヒラギノ角ゴ Pro W4","Hiragino Kaku Gothic Pro", sans-serif;
}

@media (max-width: 769px) {
  .modal__data {
    width: 100%;
    padding-left: 7px;
    box-sizing: border-box;
  }
}

.modal__data-ttl {
  font-size: 12px;
}

.modal__data-name {
  font-size: 18px;
  margin-bottom: 30px;
}

.modal__data-txt {
  font-size: 14px;
  line-height: 2em;
}

.modal__data-link {
  width: 22px;
  margin: auto 0px auto auto;
}

@media (max-width: 769px) {
  .modal__data-link {
    margin: 15px auto auto 0px;
  }
}

.modal__data-link-wrap {
  display: flex;
  width: 50px;
  margin: auto 0px auto auto;
}

@media (max-width: 769px) {
  .modal__data-link-wrap {
    margin: 0px auto auto 0px;
  }
}

.modal__btn-close {
  display: block;
  position: absolute;
  top: -9px;
  right: 0;
  width: 35px;
  height: 35px;
  padding-bottom: 1px;
  transform: translate(42px, -60%);
  color: #FFF;
  font-family: sans-serif;
  line-height: 1em;
  cursor: pointer;
  box-sizing: border-box;
}

@media (max-width: 769px) {
  .modal__btn-close {
    top: -53px;
    right: 10px;
  }
}

.modal__btn-close span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-7%, -180%);
  font-weight: bold;
  letter-spacing: 1px;
}

@media (min-width: 769px) {
  .modal__btn-close span {
    transform: translate(0, -180%);
    font-size: 18px;
  }
}

@media (min-width: 769px) {
  .modal__btn-close {
    width: 70px;
    height: 70px;
  }
  .modal__btn-close:hover {
    opacity: 0.7;
  }
}

.modal__btn-close:before, .modal__btn-close:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 3.33333vw;
  height: 2px;
  margin: auto;
  background-color: #FFF;
  content: '';
}

@media (min-width: 769px) {
  .modal__btn-close:before, .modal__btn-close:after {
    width: 40px;
  }
}

@media (max-width: 769px) {
  .modal__btn-close:before, .modal__btn-close:after {
    width: 7vw;
  }
}

.modal__btn-close:before {
  transform: rotate(45deg);
}

.modal__btn-close:after {
  transform: rotate(-45deg);
}

/* =========================================================
footer
========================================================= */
footer {
  max-width: 1280px;
  margin: auto;
  margin-bottom: 76px;
}

@media (max-width: 769px) {
  footer {
    margin-bottom: 50px;
  }
}

.copyright {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 8px;
  max-width: 1053px;
  margin: calc(24 * (100vw / 1400)) 0px auto auto;
  color: #FFF;
}

@media (max-width: 1200px) {
  .copyright {
    margin: calc(24 * (100vw / 1400)) 10px auto 200px;
  }
}

@media (max-width: 769px) {
  .copyright {
    margin: 50px auto auto auto;
    text-align: center;
  }
}

@media (max-width: 769px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

.no-visible {
  display: none;
}

/*# sourceMappingURL=map/style.css.map */
