@charset "UTF-8";
.topHeaderWrapper {
  z-index: 9999;
  max-width: 100%;
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 1s;
  transform: translateY(-100%);
}
@media screen and (max-width: 420px) {
  .topHeaderWrapper {
    display: none;
  }
}
.topHeaderWrapper.isShow {
  opacity: 1;
  transform: translateY(0%);
}

.tempHeaderWrapper {
  z-index: 9999;
  max-width: 100%;
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform 1.25s ease, opacity 1.25s ease;
  transform: translateY(-100%);
}
@media screen and (max-width: 420px) {
  .tempHeaderWrapper {
    display: none;
  }
}
.tempHeaderWrapper.isShow {
  opacity: 1;
  transform: translateY(0%);
  pointer-events: auto;
}

.animate {
  opacity: 0;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

@media screen and (max-width: 420px) {
  .animate {
    opacity: 0;
  }
  .animate.animated {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fadeInScale {
  animation-name: fadeInScale;
}

.dispON_pc {
  display: none;
}
@media screen and (max-width: 1160px) {
  .dispON_pc {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .dispON_pc {
    display: block;
  }
}

.dispOFF_pc {
  display: block;
}
@media screen and (max-width: 1160px) {
  .dispOFF_pc {
    display: block;
  }
}
@media screen and (max-width: 1060px) {
  .dispOFF_pc {
    display: none;
  }
}

.dispON_Ltb {
  display: none;
}
@media screen and (max-width: 1060px) {
  .dispON_Ltb {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .dispON_Ltb {
    display: block;
  }
}

.dispOFF_Ltb {
  display: block;
}
@media screen and (max-width: 1060px) {
  .dispOFF_Ltb {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .dispOFF_Ltb {
    display: none;
  }
}

.dispON_Mtb {
  display: none;
}
@media screen and (max-width: 1060px) {
  .dispON_Mtb {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .dispON_Mtb {
    display: block;
  }
}

.dispOFF_Mtb {
  display: block;
}
@media screen and (max-width: 1060px) {
  .dispOFF_Mtb {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .dispOFF_Mtb {
    display: none;
  }
}

.dispON_tb {
  display: none;
}
@media screen and (max-width: 1060px) {
  .dispON_tb {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .dispON_tb {
    display: block;
  }
}

.dispOFF_Lsp {
  display: block;
}
@media screen and (max-width: 767px) {
  .dispOFF_Lsp {
    display: none;
  }
}

.dispON_Lsp {
  display: none;
}
@media screen and (max-width: 840px) {
  .dispON_Lsp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .dispON_Lsp {
    display: block;
  }
}

.dispOFF_LMsp {
  display: block;
}
@media screen and (max-width: 640px) {
  .dispOFF_LMsp {
    display: none;
  }
}

.dispON_Msp {
  display: none;
}
@media screen and (max-width: 520px) {
  .dispON_Msp {
    display: block;
  }
}

.dispOFF_Msp {
  display: block;
}
@media screen and (max-width: 520px) {
  .dispOFF_Msp {
    display: none;
  }
}

.dispON_sp {
  display: none;
}
@media screen and (max-width: 420px) {
  .dispON_sp {
    display: block;
  }
}

.kazari-K__module {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.kazari-K__module img {
  width: 100%;
}

.PC-header__module {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 10px 0px rgba(128, 128, 128, 0.5);
  z-index: 11;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 767px) {
  .PC-header__module {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

.site-header__content__module {
  height: auto;
  padding: 10px 0 10px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .site-header__content__module {
    padding: 0;
  }
}
.site-header__content__module .site-branding {
  max-width: 120px;
}
@media screen and (max-width: 767px) {
  .site-header__content__module .site-branding {
    max-width: 70px;
    padding-left: 10px;
    padding-top: 4px;
  }
}
.site-header__content__module .site-branding img {
  width: 100%;
}
.site-header__content__module .site-branding {
  transition: opacity 1s ease;
}
.site-header__content__module .site-branding:hover {
  opacity: 0.4;
}
.site-header__content__module .site-nav {
  height: 64px;
  font-weight: 700;
  color: #ff4d5d;
}
@media screen and (max-width: 767px) {
  .site-header__content__module .site-nav {
    height: auto;
    transition: 0.2s;
  }
  .site-header__content__module .site-nav.active {
    height: 100vh;
    max-width: 100%;
    width: 100%;
    padding: 0.5vw 15vw 10vw 15vw;
    background-color: #ffffff;
    overflow-y: scroll;
  }
}
.site-header__content__module .site-nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .site-header__content__module .site-nav > ul {
    display: none;
    flex-direction: column;
  }
  .site-header__content__module .site-nav > ul.active {
    display: block;
  }
}
.site-header__content__module .site-nav li {
  height: 64px;
  border-left: 1px solid #ff4d5d;
  width: 124px;
  text-align: center;
}
@media screen and (max-width: 1160px) {
  .site-header__content__module .site-nav li {
    width: 100px;
  }
}
@media screen and (max-width: 960px) {
  .site-header__content__module .site-nav li {
    width: 90px;
  }
}
@media screen and (max-width: 900px) {
  .site-header__content__module .site-nav li {
    width: 77px;
  }
}
@media screen and (max-width: 767px) {
  .site-header__content__module .site-nav li {
    border-left: none;
    font-size: 1.0625rem;
    max-width: 100%;
    width: 100%;
    border-bottom: 1px solid #ff4d5d;
    height: auto;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .site-header__content__module .site-nav li:first-child img {
    max-width: 35%;
    width: 100%;
    margin-bottom: 6px;
  }
  .site-header__content__module .site-nav li:last-child {
    border-bottom: none;
  }
  .site-header__content__module .site-nav li .spSubMenuWrapper .spSubMenuList {
    padding-top: 6px;
  }
  .site-header__content__module .site-nav li .spSubMenuWrapper .spSubMenuList li {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 44px;
    text-align: left;
    border-bottom: none;
    color: #ff4d5d;
    font-size: 0.9375rem;
    font-weight: 500;
  }
  .site-header__content__module .site-nav li .spSubMenuWrapper .spSubMenuList li.subLocalMenu {
    padding-left: 4em;
    color: #f7717c;
  }
  .site-header__content__module .site-nav li .spSubMenuWrapper .spSubMenuList li a {
    display: inline-block;
  }
}
.site-header__content__module .site-nav li .site-nav-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .site-header__content__module .site-nav li .site-nav-item {
    flex-direction: row;
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.site-header__content__module .site-nav li .site-nav-item > .nav-icon {
  width: 24px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.site-header__content__module .site-nav li .site-nav-item > .nav-icon img {
  width: 80%;
  height: auto;
}
.site-header__content__module .site-nav li .site-nav-item > p {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .site-header__content__module .site-nav li .site-nav-item > p {
    font-size: 1rem;
    padding-left: 8px;
    justify-content: flex-start;
    text-align: left;
  }
}
.site-header__content__module .site-nav li.sns_iconWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media screen and (max-width: 1160px) {
  .site-header__content__module .site-nav li.sns_iconWrap {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
@media screen and (max-width: 960px) {
  .site-header__content__module .site-nav li.sns_iconWrap {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
@media screen and (max-width: 900px) {
  .site-header__content__module .site-nav li.sns_iconWrap {
    -moz-column-gap: 4px;
         column-gap: 4px;
  }
}
.site-header__content__module .site-nav li.sns_iconWrap .sns_icon {
  max-width: 32px;
}
.site-header__content__module .site-nav li.sns_iconWrap .sns_icon img {
  width: 100%;
}

.container__module {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .container__module {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .container__module {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.menuBtn {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  display: hidden;
  width: 50px;
  height: 50px;
  z-index: 10000;
  background-color: #ff4d5d;
}
@media screen and (max-width: 767px) {
  .menuBtn {
    visibility: visible;
    display: block;
  }
}
.menuBtn .menu-button {
  display: block;
  position: absolute;
  top: 48%;
  right: 5px;
  width: 38px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  text-indent: -9999px;
  border-radius: 9999px;
}
.menuBtn .menu-button::before, .menuBtn .menu-button::after {
  display: block;
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  width: 38px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  border-radius: 9999px;
}
.menuBtn .menu-button::before {
  margin-top: -12px;
}
.menuBtn .menu-button::after {
  margin-top: 8px;
}
.menuBtn .menu-button.active {
  background-color: transparent;
}
.menuBtn .menu-button.active::before {
  transform: translateY(10px) rotate(-45deg);
}
.menuBtn .menu-button.active::after {
  transform: translateY(-10px) rotate(45deg);
}

.clickhereLinkBtn__module {
  max-width: 246px;
  display: block;
  margin: 0 auto;
}
.clickhereLinkBtn__module img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .clickhereLinkBtn__module {
    max-width: 190px;
  }
}

.clickhereLinkBtn__module.AdjustLeft {
  margin-left: 16px;
}

.clickhereLinkBtn__module.AdjustSize {
  max-width: 368px;
}
@media screen and (max-width: 767px) {
  .clickhereLinkBtn__module.AdjustSize {
    max-width: 200px;
  }
}

.btn__module {
  cursor: pointer;
  transition-duration: 0.1s;
}
.btn__module:hover {
  transform: scale(1.05);
}

.btn__opacity__module {
  cursor: pointer;
  transition: opacity 1s ease;
}
.btn__opacity__module:hover {
  opacity: 0.6;
}

.site-footer__module {
  padding: 46px 10px;
  background-color: #231815;
}
@media screen and (max-width: 767px) {
  .site-footer__module {
    padding: 24px 0;
  }
}
.site-footer__module .site-footer__inner {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: end;
  margin: 0 auto;
}
@media screen and (max-width: 1160px) {
  .site-footer__module .site-footer__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
}
.site-footer__module .site-footer__inner .footerLogo_Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.site-footer__module .site-footer__inner .footerLogo_Wrap .footerLogo_yostar {
  max-width: 142px;
}
.site-footer__module .site-footer__inner .footerLogo_Wrap .footerLogo_yostar img {
  width: 100%;
}
@media screen and (max-width: 520px) {
  .site-footer__module .site-footer__inner .footerLogo_Wrap .footerLogo_yostar {
    max-width: 78px;
  }
}
.site-footer__module .site-footer__inner .footerLogo_Wrap .footerLogo_cat {
  max-width: 128px;
}
.site-footer__module .site-footer__inner .footerLogo_Wrap .footerLogo_cat img {
  width: 100%;
}
@media screen and (max-width: 520px) {
  .site-footer__module .site-footer__inner .footerLogo_Wrap .footerLogo_cat {
    max-width: 70px;
  }
}
.site-footer__module .site-footer__inner .site-footer__right {
  color: #ffffff;
  font-weight: 500;
}
.site-footer__module .site-footer__inner .site-footer__right .footer-nav {
  margin-bottom: 10px;
}
.site-footer__module .site-footer__inner .site-footer__right .footer-nav .footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}
.site-footer__module .site-footer__inner .site-footer__right .footer-nav .footer-nav__list > li > a {
  padding: 0 13px 0 13px;
  display: block;
  border-right: 1px solid #ffffff;
  font-size: 0.8125rem;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .site-footer__module .site-footer__inner .site-footer__right .footer-nav .footer-nav__list > li > a {
    font-size: 0.5rem;
    padding: 0 8px 0 8px;
  }
}
@media screen and (max-width: 520px) {
  .site-footer__module .site-footer__inner .site-footer__right .footer-nav .footer-nav__list > li > a {
    font-size: 0.34375rem;
    padding: 0 4px 0 4px;
  }
}
.site-footer__module .site-footer__inner .site-footer__right .footer-nav .footer-nav__list > li:nth-last-child(1) > a {
  padding: 0 0 0 13px;
  border-right: none;
}
.site-footer__module .site-footer__inner .site-footer__right .footer-nav .footer-nav__list > li {
  transition: opacity 1s ease;
}
.site-footer__module .site-footer__inner .site-footer__right .footer-nav .footer-nav__list > li:hover {
  opacity: 0.6;
}
.site-footer__module .site-footer__inner .site-footer__right .site-footer__copy {
  font-size: 0.6875rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .site-footer__module .site-footer__inner .site-footer__right .site-footer__copy {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 520px) {
  .site-footer__module .site-footer__inner .site-footer__right .site-footer__copy {
    font-size: 0.28125rem;
  }
}

main.lowPage_ly__module .lowPage_content_Wrap__module {
  padding-top: 74px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 420px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module {
  background-image: url("../images/top_contents_bg.jpg");
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module {
    background-image: url("../images/top_contents_bg_sp.jpg");
    background-repeat: repeat;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPageInner__module {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 17px;
}
@media screen and (max-width: 420px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPageInner__module {
    padding: 0 12px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPageInner__module.adjustStagePage {
  padding: 0 6%;
}
@media screen and (max-width: 420px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_mainttl__module.adjustMB {
    margin-bottom: 36px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_mainttl__module {
  width: 100%;
  max-width: 648px;
  margin: 0 auto;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_mainttl__module {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 420px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_mainttl__module {
    margin-bottom: 24px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_mainttl__module img {
  width: 100%;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_mainttl__module {
  position: relative;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_mainttl__module .chara-position_SP {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl_Wrap__module {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl_Wrap__module {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 520px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module.adjustFS {
    font-size: 0.875rem;
  }
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module.adjustFS::after {
    position: absolute;
    top: -4px;
    right: 0;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module {
  font-size: 1.9375rem;
  font-weight: 900;
  color: #604c3f;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  line-height: 1.4em;
}
@media screen and (max-width: 960px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module {
    font-size: 1.5rem;
    padding-left: 34px;
    padding-right: 34px;
  }
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module {
    font-size: 1.0625rem;
    padding-left: 30px;
    padding-right: 30px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module::before, main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../images/lowPage_ttl_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module::before {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module::before {
    top: 0;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module::before {
    top: 0;
    width: 16px;
    height: 16px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module::after {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 960px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module::after {
    top: 0;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module::after {
    top: 0;
    width: 16px;
    height: 16px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module.admission_ttl__module {
  padding-left: 0;
  padding-right: 0;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module.admission_ttl__module::before, main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_ttl__module.admission_ttl__module::after {
  display: none;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ff4d5d;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module {
    font-size: 0.9375rem;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module.adjustTerakoya {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module.adjustTerakoya {
    margin-bottom: 18px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .stampAdjustMB {
  margin-bottom: 16px;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module.addMB-Pc50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module.addMB-Pc50 {
    margin-bottom: 24px !important;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module.addMB-Pc40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module.addMB-Pc40 {
    margin-bottom: 12px !important;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_subttl__module.addMB-Pc15 {
  margin-bottom: 15px;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_text__module {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #231815;
  line-height: 2em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_text__module {
    font-size: 0.9375rem;
    line-height: 1.85em;
    text-align: left;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_text__module.bold {
  font-weight: 700;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage-attention_text__module {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage-attention_text__module {
    font-size: 0.8125rem;
    line-height: 1.5em;
    text-align: left;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module {
  margin: 0 auto;
  max-width: 750px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  align-items: stretch;
  border-top: 1px solid #b59667;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module:nth-last-of-type(1) {
  border-bottom: 1px solid #b59667;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_ttl__module {
  padding: 20px 0 16px 16px;
  width: 18%;
  font-size: 1rem;
  font-weight: 700;
  color: #b59667;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_ttl__module {
    font-size: 0.9375rem;
    padding: 16px 0 0 0;
    width: 100%;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_date__module {
  padding: 16px 0 16px 16px;
  width: 82%;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_date__module {
    padding: 12px 0 12px 0;
    font-size: 0.9375rem;
    width: 100%;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_date__module > .Table_attention__module {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_date__module > .Table_attention__module {
    font-size: 0.8125rem;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_dateList__module {
  text-indent: -1em;
  padding-left: 1em;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_dateList__module.pro-vnoma {
  text-indent: 0;
  padding-left: 0;
  position: relative;
  padding-left: 1em;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_dateList__module.pro-vnoma::before {
  content: "・";
  position: absolute;
  left: 0;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_attention__module.addMT {
  margin-top: 20px;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_attention__module {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.5em !important;
  text-indent: -1em !important;
  padding-left: 1em !important;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_attention__module {
    font-size: 0.8125rem;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_yakuman-challenge__module {
  padding: 15px;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_yakuman-challenge__module .Table_yakuman-challenge_Icon__module {
  width: 14%;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_yakuman-challenge__module .Table_yakuman-challenge_Icon__module img {
  width: 100%;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_yakuman-challenge__module .Table_yakuman-challenge_textArea__module {
  width: 83%;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module .Table_yakuman-challenge__module .Table_yakuman-challenge_text__module {
  font-size: 0.875rem;
  line-height: 1.65em;
  font-weight: 500;
  color: #b93728;
  letter-spacing: 0em;
  margin-bottom: 24px;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module.addmission_SP {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module.addmission_SP > .Table_date__module {
    padding: 0 0 12px 0;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module.adjust_admission {
  border-top: none;
  display: flex;
  flex-direction: column;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module.adjust_admission:nth-last-of-type(1) {
  border-bottom: none;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .lowPage_Table__module.adjust_admission > .Table_dateList__module {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.875em;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .addMT-Pc8 {
  margin-top: 8px;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .addMT-Pc40 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .addMT-Pc40 {
    margin-top: 0;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .addMT-Pc50 {
  margin-top: 50px;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .addMT-Pc70 {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .addMT-Pc70 {
    margin-top: 20px;
  }
}
main.lowPage_ly__module .lowPage_content_Wrap__module .addMB-Pc20 {
  margin-bottom: 20px;
}
main.lowPage_ly__module .lowPage_content_Wrap__module .addMB-Pc40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  main.lowPage_ly__module .lowPage_content_Wrap__module .addMB-Pc40 {
    margin-bottom: 20px;
  }
}

.dispON_pc {
  display: none;
}
@media screen and (max-width: 1160px) {
  .dispON_pc {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .dispON_pc {
    display: block;
  }
}

.dispOFF_pc {
  display: block;
}
@media screen and (max-width: 1160px) {
  .dispOFF_pc {
    display: block;
  }
}
@media screen and (max-width: 1060px) {
  .dispOFF_pc {
    display: none;
  }
}

.dispON_Ltb {
  display: none;
}
@media screen and (max-width: 1060px) {
  .dispON_Ltb {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .dispON_Ltb {
    display: block;
  }
}

.dispOFF_Ltb {
  display: block;
}
@media screen and (max-width: 1060px) {
  .dispOFF_Ltb {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .dispOFF_Ltb {
    display: none;
  }
}

.dispON_Mtb {
  display: none;
}
@media screen and (max-width: 1060px) {
  .dispON_Mtb {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .dispON_Mtb {
    display: block;
  }
}

.dispOFF_Mtb {
  display: block;
}
@media screen and (max-width: 1060px) {
  .dispOFF_Mtb {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .dispOFF_Mtb {
    display: none;
  }
}

.dispON_tb {
  display: none;
}
@media screen and (max-width: 1060px) {
  .dispON_tb {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .dispON_tb {
    display: block;
  }
}

.dispOFF_Lsp {
  display: block;
}
@media screen and (max-width: 767px) {
  .dispOFF_Lsp {
    display: none;
  }
}

.dispON_Lsp {
  display: none;
}
@media screen and (max-width: 840px) {
  .dispON_Lsp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .dispON_Lsp {
    display: block;
  }
}

.dispOFF_LMsp {
  display: block;
}
@media screen and (max-width: 640px) {
  .dispOFF_LMsp {
    display: none;
  }
}

.dispON_Msp {
  display: none;
}
@media screen and (max-width: 520px) {
  .dispON_Msp {
    display: block;
  }
}

.dispOFF_Msp {
  display: block;
}
@media screen and (max-width: 520px) {
  .dispOFF_Msp {
    display: none;
  }
}

.dispON_sp {
  display: none;
}
@media screen and (max-width: 420px) {
  .dispON_sp {
    display: block;
  }
}

/* ------------------------
html body基本設定
------------------------*/
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
  overflow-y: auto;
  /* or scroll */
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "kozuka-gothic-pro", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  color: #3e3a39;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
  word-break: normal;
  hanging-punctuation: last allow-end;
  min-height: 100svh;
  max-width: 100%;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  min-height: -webkit-fill-available;
  opacity: 1;
  transition: opacity 1.5s ease;
  /* or scroll marge */
  margin: 0;
}
body.fixed {
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 767px) {
  body.fixed .site-branding a.headerLogo {
    display: none;
  }
}

body.preload {
  opacity: 0;
}

header .site-nav__wrap {
  position: relative;
}

header .global-nav ul,
.topHeaderWrapper .global-nav ul,
.tempHeaderWrapper .global-nav ul {
  padding: 25px 0;
  display: flex;
  justify-content: center;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
@media screen and (max-width: 900px) {
  header .global-nav ul,
  .topHeaderWrapper .global-nav ul,
  .tempHeaderWrapper .global-nav ul {
    -moz-column-gap: 14px;
         column-gap: 14px;
  }
}
header .global-nav ul li,
.topHeaderWrapper .global-nav ul li,
.tempHeaderWrapper .global-nav ul li {
  position: relative;
}
header .global-nav ul li::before,
.topHeaderWrapper .global-nav ul li::before,
.tempHeaderWrapper .global-nav ul li::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fbc322;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: scaleX(0.95);
  transform-origin: center;
  transition: transform 1s ease, opacity 1s ease;
}
header .global-nav ul li:hover::before, header .global-nav ul li:focus-within::before,
.topHeaderWrapper .global-nav ul li:hover::before,
.topHeaderWrapper .global-nav ul li:focus-within::before,
.tempHeaderWrapper .global-nav ul li:hover::before,
.tempHeaderWrapper .global-nav ul li:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}
header .global-nav ul li a,
.topHeaderWrapper .global-nav ul li a,
.tempHeaderWrapper .global-nav ul li a {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #000000;
  transition: color 0.75s ease;
}
@media screen and (max-width: 1060px) {
  header .global-nav ul li a,
  .topHeaderWrapper .global-nav ul li a,
  .tempHeaderWrapper .global-nav ul li a {
    font-size: 0.75rem;
  }
}
header .global-nav ul li:hover a, header .global-nav ul li:focus-within a,
.topHeaderWrapper .global-nav ul li:hover a,
.topHeaderWrapper .global-nav ul li:focus-within a,
.tempHeaderWrapper .global-nav ul li:hover a,
.tempHeaderWrapper .global-nav ul li:focus-within a {
  color: #fbc322;
}

main.topPage_ly .mainvisual {
  max-height: 810px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .mainvisual {
    margin-top: 50px;
  }
}
main.topPage_ly .mainvisual .slider img {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .mainvisual .slider {
    max-height: 60vh;
    height: 60vh;
  }
  main.topPage_ly .mainvisual .slider .spCoverImg {
    background-image: url(../images/top_mv_SP.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    animation: mv 35s ease-in-out infinite;
    text-indent: -9999px;
    height: 100%;
    width: 100%;
  }
  @keyframes mv {
    0%, 10%, 100% {
      background-position: center center;
    }
    30% {
      background-position: right 0 center;
    }
    60% {
      background-position: left 0 center;
    }
  }
}
main.topPage_ly .mainvisual .MV_siteLogo_SP {
  position: absolute;
  z-index: 1;
  /* 10 */
  bottom: -20%;
  /* -10% */
  width: 100%;
}
@media screen and (max-width: 640px) {
  main.topPage_ly .mainvisual .MV_siteLogo_SP {
    bottom: -15%;
  }
}
@media screen and (max-width: 520px) {
  main.topPage_ly .mainvisual .MV_siteLogo_SP {
    bottom: -12%;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .mainvisual .MV_siteLogo_SP {
    bottom: -10%;
  }
}
@media screen and (max-width: 378px) {
  main.topPage_ly .mainvisual .MV_siteLogo_SP {
    bottom: -8%;
  }
}
main.topPage_ly .mainvisual .MV_siteLogo_SP img {
  width: 100%;
}
main.topPage_ly .main_content_Wrap {
  position: relative;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap {
  position: absolute;
  width: 100%;
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap .MV_muryouBtn {
  max-width: 188px;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap .MV_muryouBtn img {
  width: 100%;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap .MV_siteLogo {
  max-width: 33%;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap .MV_siteLogo img {
  width: 100%;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap .MV_LinkBtn {
  max-width: 150px;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap .MV_LinkBtn img {
  transition: 0.3s;
  width: 100%;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap .MV_LinkBtn:hover img {
  transition: 0.3s;
  opacity: 0.9;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .mv_btn_itemWrap .MV_LinkBtn {
  animation: btnBoyon 5s infinite;
}
@keyframes btnBoyon {
  0% {
    transform: scale(1);
  }
  4% {
    transform: scale(1.1);
  }
  8% {
    transform: scale(0.95);
  }
  12% {
    transform: scale(1.05);
  }
  16% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .MV_LinkBtn,
main.topPage_ly .main_content_Wrap .mv_btn_Wrap_SP .MV_LinkBtn {
  max-width: 150px;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .MV_LinkBtn img,
main.topPage_ly .main_content_Wrap .mv_btn_Wrap_SP .MV_LinkBtn img {
  width: 100%;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap .MV_LinkBtn,
main.topPage_ly .main_content_Wrap .mv_btn_Wrap_SP .MV_LinkBtn {
  animation: btnBoyon 5s infinite;
}
@keyframes btnBoyon {
  0% {
    transform: scale(1);
  }
  4% {
    transform: scale(1.1);
  }
  8% {
    transform: scale(0.95);
  }
  12% {
    transform: scale(1.05);
  }
  16% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap_SP .mv_btn_itemWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap_SP .mv_btn_itemWrap .MV_LinkBtn {
  width: 30%;
}
main.topPage_ly .main_content_Wrap .mv_btn_Wrap_SP .mv_btn_itemWrap .MV_LinkBtn img {
  width: 100%;
}
main.topPage_ly .main_content_Wrap {
  padding-top: 12%;
  padding-bottom: 80px;
  background-image: url("../images/top_contents_bg.jpg");
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .main_content_Wrap {
    background-image: url("../images/top_contents_bg_sp.jpg");
    background-repeat: repeat;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .main_content_Wrap {
    padding-top: 8%;
  }
}
main.topPage_ly .overview {
  padding-bottom: 80px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .overview {
    padding-bottom: 14px;
  }
}
main.topPage_ly .overview .top_ov_left,
main.topPage_ly .overview .top_ov_right {
  max-width: 32%;
}
main.topPage_ly .overview .top_ov_left img,
main.topPage_ly .overview .top_ov_right img {
  width: 100%;
}
@media screen and (max-width: 1420px) {
  main.topPage_ly .overview .top_ov_left,
  main.topPage_ly .overview .top_ov_right {
    max-width: 25%;
  }
}
main.topPage_ly .overview .top_ov_left {
  position: absolute;
  top: 0;
  left: -6%;
}
@media screen and (max-width: 1420px) {
  main.topPage_ly .overview .top_ov_left {
    left: 2%;
  }
}
main.topPage_ly .overview .top_ov_right {
  position: absolute;
  top: 0;
  right: -6%;
}
@media screen and (max-width: 1420px) {
  main.topPage_ly .overview .top_ov_right {
    right: 2%;
  }
}
main.topPage_ly .overview .day {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 28px;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .overview .day {
    font-size: 2.6875rem;
    margin-bottom: 10px;
  }
}
main.topPage_ly .overview .week {
  font-size: 1.75rem;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .overview .week {
    font-size: 1.125rem;
  }
}
main.topPage_ly .overview .time {
  font-size: 2.375rem;
  font-weight: 900;
  margin-bottom: 14px;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .overview .time {
    font-size: 1.625rem;
    margin-bottom: 4px;
  }
}
main.topPage_ly .overview .last {
  font-size: 1.5rem;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .overview .last {
    font-size: 1.0625rem;
  }
}
main.topPage_ly .overview .timeCaption {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .overview .timeCaption {
    font-size: 0.8125rem;
    margin-bottom: 10px;
  }
}
main.topPage_ly .overview .place {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .overview .place {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .overview .place {
    font-size: 1.125rem;
  }
}
main.topPage_ly .overview .accessLinkBtn {
  max-width: 210px;
  display: block;
  margin: 0 auto;
}
main.topPage_ly .overview .accessLinkBtn img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .overview .accessLinkBtn {
    margin-top: 20px;
  }
}
main.topPage_ly .musubi {
  max-width: 832px;
  margin: 0 auto;
}
main.topPage_ly .musubi img {
  width: 100%;
}
main.topPage_ly .musubi {
  position: relative;
}
main.topPage_ly .musubi .ov-top-illust_left {
  position: absolute;
  top: -210%;
  left: -11%;
  width: 22%;
}
main.topPage_ly .musubi .ov-top-illust_left img {
  width: 100%;
}
@media screen and (max-width: 1240px) {
  main.topPage_ly .musubi .ov-top-illust_left {
    left: -8%;
    width: 18%;
  }
}
@media screen and (max-width: 960px) {
  main.topPage_ly .musubi .ov-top-illust_left {
    top: -180%;
    left: 0;
    width: 14%;
  }
}
main.topPage_ly .musubi .ov-top-illust_right {
  position: absolute;
  top: -220%;
  right: -12%;
  width: 24%;
}
main.topPage_ly .musubi .ov-top-illust_right img {
  width: 100%;
}
@media screen and (max-width: 1240px) {
  main.topPage_ly .musubi .ov-top-illust_right {
    right: -8%;
    width: 20%;
  }
}
@media screen and (max-width: 960px) {
  main.topPage_ly .musubi .ov-top-illust_right {
    top: -180%;
    right: 0;
    width: 16%;
  }
}
main.topPage_ly .catchCopy {
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .catchCopy {
    padding-top: 18px;
    padding-bottom: 30px;
  }
}
main.topPage_ly .catchCopy rt {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 4px;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .catchCopy rt {
    font-size: 0.5rem;
  }
}
main.topPage_ly .catchCopy .main_title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 36px;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .catchCopy .main_title {
    font-size: 1.375rem;
    margin-bottom: 16px;
  }
}
main.topPage_ly .catchCopy .maincopy {
  font-size: 1.125rem;
  line-height: 2.05em;
  margin-bottom: 36px;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .catchCopy .maincopy {
    font-size: 0.9375rem;
    margin-bottom: 32px;
    line-height: 1.75em;
  }
}
main.topPage_ly .catchCopy .ov-mid-illust {
  position: relative;
}
main.topPage_ly .catchCopy .ov-mid-illust > .ov-mid-illust_left {
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 11%;
}
main.topPage_ly .catchCopy .ov-mid-illust > .ov-mid-illust_left img {
  width: 100%;
}
main.topPage_ly .catchCopy .ov-mid-illust > .ov-mid-illust_right {
  position: absolute;
  bottom: -50%;
  right: 0;
  width: 11%;
}
main.topPage_ly .catchCopy .ov-mid-illust > .ov-mid-illust_right img {
  width: 100%;
}
main.topPage_ly .catchCopy .ov-bottom-illust {
  position: relative;
}
main.topPage_ly .catchCopy .ov-bottom-illust > .ov-bottom-illust_left {
  position: absolute;
  bottom: -120%;
  left: 8%;
  width: 9%;
}
main.topPage_ly .catchCopy .ov-bottom-illust > .ov-bottom-illust_left img {
  width: 100%;
}
@media screen and (max-width: 1240px) {
  main.topPage_ly .catchCopy .ov-bottom-illust > .ov-bottom-illust_left {
    left: 4%;
  }
}
main.topPage_ly .catchCopy .ov-bottom-illust > .ov-bottom-illust_right {
  position: absolute;
  bottom: -120%;
  right: 6%;
  width: 10%;
}
main.topPage_ly .catchCopy .ov-bottom-illust > .ov-bottom-illust_right img {
  width: 100%;
}
@media screen and (max-width: 1240px) {
  main.topPage_ly .catchCopy .ov-bottom-illust > .ov-bottom-illust_right {
    right: 3%;
  }
}
main.topPage_ly .catchCopy .ov-illust_Wrap_SP {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
main.topPage_ly .catchCopy .ov-illust_Wrap_SP .ov-illust_SP {
  width: 14%;
}
main.topPage_ly .catchCopy .ov-illust_Wrap_SP .ov-illust_SP img {
  width: 100%;
}
main.topPage_ly .linkCastBtn {
  max-width: 746px;
  margin: 0 auto;
  margin-bottom: 112px;
}
main.topPage_ly .linkCastBtn img {
  width: 100%;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .linkCastBtn {
    margin-bottom: 24px;
  }
}
main.topPage_ly .sectionTTL_inner.adjust_position {
  position: relative;
  z-index: 10;
  top: 20px;
}
main.topPage_ly .topMap {
  padding: 0 20px;
  margin-bottom: 30px;
  margin-top: -45px;
}
main.topPage_ly .topMap img {
  width: 100%;
}
main.topPage_ly .dlModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
main.topPage_ly .dlModal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
main.topPage_ly .dlModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
main.topPage_ly .dlModal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(92vw, 560px);
  background: #fff;
  border-radius: 24px;
  padding: 48px 24px 28px;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
main.topPage_ly .dlModal.is-open .dlModal__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
main.topPage_ly .dlModal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
main.topPage_ly .dlModal__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
  color: #222;
  margin: 0 0 32px;
}
main.topPage_ly .dlModal__btnWrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}
main.topPage_ly .dlModal__btn {
  min-width: 160px;
  padding: 18px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
main.topPage_ly .dlModal__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
main.topPage_ly .dlModal__btn.view {
  background: #f2f2f2;
  color: #222;
}
main.topPage_ly .dlModal__btn.download {
  background: #ff4d5d;
  color: #fff;
}
main.topPage_ly body.is-fixed {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .dlModal__inner {
    width: 90vw;
    border-radius: 20px;
    padding: 44px 16px 20px;
  }
  main.topPage_ly .dlModal__text {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  main.topPage_ly .dlModal__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 378px) {
  main.topPage_ly .dlModal__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  main.topPage_ly .dlModal__btnWrap {
    flex-direction: column;
    gap: 12px;
  }
  main.topPage_ly .dlModal__btn {
    min-width: auto;
    width: 100%;
    font-size: 20px;
    padding: 16px 12px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  main.topPage_ly .dlModal__btn {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 378px) {
  main.topPage_ly .dlModal__btn {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  main.topPage_ly .dlModal__close {
    top: 12px;
    right: 12px;
    font-size: 28px;
  }
}
main.topPage_ly .mb_LinkBtn {
  margin-bottom: 30px;
}
main.topPage_ly .sectionTTL_inner {
  max-width: 1200px;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .sectionTTL_inner {
    padding: 0 3%;
  }
}
main.topPage_ly .sectionTTL_inner .sectionTTL {
  width: 14%;
}
main.topPage_ly .sectionTTL_inner .sectionTTL img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .sectionTTL_inner .sectionTTL {
    width: 27%;
  }
}
main.topPage_ly .events {
  padding: 0 3%;
  margin-bottom: 114px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .events {
    display: block;
    margin-bottom: 50px;
  }
}
main.topPage_ly .events .eventsLinkBtn {
  width: 49%;
}
main.topPage_ly .events .eventsLinkBtn img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .events .eventsLinkBtn {
    width: 100%;
  }
}
main.topPage_ly .events .eventsLinkBtn.last-flex {
  margin: 0 auto;
}
main.topPage_ly .streaming {
  padding: 0 15px;
  position: relative;
}
main.topPage_ly .streaming .stream-illust {
  position: absolute;
  z-index: 3;
  right: 10%;
  top: -80px;
  max-width: 100px;
}
main.topPage_ly .streaming .stream-illust img {
  width: 100%;
}
main.topPage_ly .streaming .sentionInner {
  position: relative;
}
main.topPage_ly .streaming .sentionInner .streaming_ttl {
  position: absolute;
  left: calc(50% - 115px);
  top: -32px;
  max-width: 230px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .sentionInner .streaming_ttl {
    max-width: 150px;
    left: calc(50% - 75px);
    top: -28px;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .streaming .sentionInner .streaming_ttl {
    max-width: 140px;
    left: calc(50% - 70px);
    top: -26px;
  }
}
main.topPage_ly .streaming .sentionInner .streaming_ttl img {
  width: 100%;
}
main.topPage_ly .streaming .streaming_ContentsInner {
  padding: 8%;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .streaming_ContentsInner {
    padding: 10% 4%;
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap.upper {
  margin-bottom: 24px;
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap.bottom {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap.bottom {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemText {
  width: 38%;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemText {
    width: 100%;
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemText .streaming_itemTTL {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ff4d5d;
  margin-bottom: 24px;
  padding-left: 42px;
  position: relative;
}
@media screen and (max-width: 420px) {
  main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemText .streaming_itemTTL {
    font-size: 1.125rem;
    padding-left: 32px;
    margin-bottom: 15px;
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemText .streaming_itemTTL::before {
  position: absolute;
  left: 0;
  top: calc(50% - 17px);
  content: "";
  background-image: url("../images/top_streaming-ttl_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 34px;
  height: 34px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemText .streaming_itemTTL::before {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemText .streaming_baseText {
  font-weight: 500;
  margin-bottom: 36px;
  line-height: 1.875em;
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemText .streaming_daytime {
  font-size: 1.0625rem;
  font-weight: 700;
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemImg {
  width: 58%;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemImg {
    width: 100%;
    margin-bottom: 15px;
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_itemWrap .streaming_itemImg img {
  width: 100%;
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_smallTTL {
  font-size: 0.875rem;
  font-weight: 900;
  margin-bottom: 15px;
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_List.upper {
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .streaming_ContentsInner .streaming_List.upper {
    margin-bottom: 0;
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .streaming_List > li {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.15em;
  text-indent: -8px;
  padding-left: 10px;
}
main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap {
  margin-bottom: 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 74px;
       column-gap: 74px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap {
    margin-bottom: 24px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap .top-cast_itemWrap {
  max-width: 240px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap .top-cast_itemWrap {
    max-width: 180px;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap .top-cast_itemWrap {
    max-width: 145px;
  }
}
main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap .top-cast_itemWrap .top-cast_Img img {
  width: 100%;
}
main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap .top-cast_itemWrap .top-cast_Img {
  margin-bottom: 8px;
}
main.topPage_ly .streaming .streaming_ContentsInner .top-cast_Wrap .top-cast_itemWrap .top-cast_Name {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 900;
  color: #b59667;
}
main.topPage_ly .footer_Area_bg {
  background: #ffffff url("../images/top_footer_bg.png") repeat;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .footer_Area_bg {
    background: #ffffff url("../images/top_footer_bg_sp.png") repeat;
  }
}
main.topPage_ly .event_attention_Wrap {
  padding: 70px 20px;
  max-width: 1080px;
  margin: 0 auto;
}
main.topPage_ly .event_attention_Wrap h2 {
  cursor: pointer;
  display: block;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #b59667;
}
main.topPage_ly .event_attention_Wrap h2 > .attention-open {
  font-size: 1.9375rem;
  font-weight: 900;
  color: #ff4d5d;
  position: relative;
}
@media screen and (max-width: 960px) {
  main.topPage_ly .event_attention_Wrap h2 > .attention-open {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  main.topPage_ly .event_attention_Wrap h2 > .attention-open {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .event_attention_Wrap h2 > .attention-open {
    font-size: 0.9375rem;
  }
}
main.topPage_ly .event_attention_Wrap h2 > .attention-open::before, main.topPage_ly .event_attention_Wrap h2 > .attention-open::after {
  position: absolute;
  right: -60px;
  top: calc(50% - 2px);
  content: "";
  width: 26px;
  height: 4px;
  background: #ff4d5d;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .event_attention_Wrap h2 > .attention-open::before, main.topPage_ly .event_attention_Wrap h2 > .attention-open::after {
    right: -40px;
    width: 20px;
    height: 3px;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .event_attention_Wrap h2 > .attention-open::before, main.topPage_ly .event_attention_Wrap h2 > .attention-open::after {
    right: -30px;
    width: 14px;
    height: 2px;
  }
}
main.topPage_ly .event_attention_Wrap h2 > .attention-open::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
main.topPage_ly .event_attention_Wrap h2 .attention-open.active::after {
  transform: rotate(0);
}
main.topPage_ly .event_attention_Wrap .Event-Attention_text_wrap.active {
  display: block;
}
main.topPage_ly .event_attention_Wrap .Event-Attention_text_wrap {
  display: none;
  border-bottom: 1px solid #b59667;
}
main.topPage_ly .event_attention_Wrap .Event-Attention_text_wrap .Event-Attention_text {
  padding-top: 30px;
  padding-bottom: 30px;
}
main.topPage_ly .event_attention_Wrap .Event-Attention_text_wrap .Event-Attention_text > ul > li {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.15em;
  text-indent: -8px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .event_attention_Wrap .Event-Attention_text_wrap .Event-Attention_text > ul > li {
    font-size: 0.8125rem;
  }
}
main.topPage_ly .apply_link_Wrap .jyantamaLogo {
  max-width: 158px;
  margin: 0 auto;
  margin-bottom: 20px;
  cursor: pointer;
}
main.topPage_ly .apply_link_Wrap .jyantamaLogo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .apply_link_Wrap .jyantamaLogo {
    max-width: 110px;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .apply_link_Wrap .jyantamaLogo {
    max-width: 80px;
  }
}
main.topPage_ly .apply_link_Wrap .app_Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
main.topPage_ly .apply_link_Wrap .app_Wrap .app {
  max-width: 118px;
}
@media screen and (max-width: 767px) {
  main.topPage_ly .apply_link_Wrap .app_Wrap .app {
    max-width: 110px;
  }
}
@media screen and (max-width: 420px) {
  main.topPage_ly .apply_link_Wrap .app_Wrap .app {
    max-width: 88px;
  }
}
main.topPage_ly .apply_link_Wrap .app_Wrap .app img {
  width: 100%;
}

.chara-position {
  position: relative;
}
.chara-position .page_chara {
  position: absolute;
  right: -50px;
  bottom: -50px;
}

.stagePage_content_ly {
  position: relative;
  z-index: 1;
}
.stagePage_content_ly .page_chara {
  position: absolute;
  top: -180px;
  right: -60px;
  width: 22%;
  z-index: -1;
}
.stagePage_content_ly .page_chara img {
  width: 100%;
}

main.eventPage .playPage_Card_Wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  row-gap: 30px;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly {
  max-height: 520px;
  padding-top: 20px;
  padding-bottom: 78px;
  aspect-ratio: 1/1.375;
  background-image: url("../images/playPage_Card_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_img {
  width: 90%;
  margin: 0 auto;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_img img {
  width: 100%;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly {
  width: 85%;
  margin: 0 auto;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_caption {
  display: block;
  font-size: 0.875rem;
  font-weight: 900;
  margin-bottom: 5px;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_caption.opacity {
  opacity: 0;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl {
  font-size: 1.125rem;
  font-weight: 900;
  text-align: center;
  background-color: #b6cf35;
  padding: 10px 0;
  border-radius: 24px;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 420px) {
  main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl .playPage_Card_ttl_small {
  font-size: 0.75rem;
}
@media screen and (max-width: 378px) {
  main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl .playPage_Card_ttl_small {
    font-size: 0.6875rem;
  }
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl .playPage_Card_ttl_adjust {
  font-size: 1rem;
}
@media screen and (max-width: 420px) {
  main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl .playPage_Card_ttl_adjust {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 378px) {
  main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl .playPage_Card_ttl_adjust {
    font-size: 0.8125rem;
  }
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl::before, main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-image: url("../images/playPage_Card_ttl_icon.png");
  background-repeat: no-repeat;
  background-size: cover;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl::before {
  position: absolute;
  top: calc(50% - 9.5px);
  left: 3%;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_ttl::after {
  position: absolute;
  top: calc(50% - 9.5px);
  right: 3%;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_Subttl {
  font-size: 1rem;
  font-weight: 900;
  color: #ff4d5d;
  margin-bottom: 15px;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.875em;
  text-align: justify;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_text > .adjustLS {
  letter-spacing: 0.1em;
}
main.eventPage .playPage_Card_Wrap .playPage_Card_ly .playPage_Card_text_ly .playPage_Card_text > .adjustLS > .adjustLS_2 {
  letter-spacing: 0.15em;
}

main.eventPage .partnerPage_Card_Wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  align-items: stretch;
  -moz-column-gap: 13px;
       column-gap: 13px;
  row-gap: 30px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1240px) {
  main.eventPage .partnerPage_Card_Wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly {
  max-height: 474px;
  padding-top: 20px;
  padding-bottom: 78px;
  aspect-ratio: 1/1.25;
  background-image: url("../images/partnerPage_Card_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partner_placeLabel {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 70px;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partner_placeLabel img {
  width: 100%;
}
@media screen and (max-width: 420px) {
  main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partner_placeLabel {
    max-width: 62px;
  }
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_img {
  width: 85%;
  margin: 0 auto;
  margin-bottom: 15px;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_img img {
  width: 100%;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly {
  width: 85%;
  margin: 0 auto;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly > .partnerPage_Card_ttl.AdjustSZ {
  font-size: 1.0625rem;
}
@media screen and (max-width: 420px) {
  main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly > .partnerPage_Card_ttl.AdjustSZ {
    font-size: 0.875rem;
  }
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_ttl {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  background-color: #b78fd4;
  padding: 10px 0;
  border-radius: 24px;
  margin-bottom: 20px;
  position: relative;
  color: #ffffff;
}
@media screen and (max-width: 420px) {
  main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_ttl {
    font-size: 1rem;
  }
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_ttl .playPage_Card_ttl_small {
  font-size: 0.75rem;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_ttl::before, main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_ttl::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-image: url("../images/playPage_Card_ttl_icon.png");
  background-repeat: no-repeat;
  background-size: cover;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_ttl::before {
  position: absolute;
  top: calc(50% - 9.5px);
  left: 3%;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_ttl::after {
  position: absolute;
  top: calc(50% - 9.5px);
  right: 3%;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_Subttl {
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  color: #9066c4;
  margin-bottom: 15px;
}
@media screen and (max-width: 420px) {
  main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_Subttl {
    font-size: 0.9375rem;
  }
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.92em;
  text-align: justify;
}
main.eventPage .partnerPage_Card_Wrap .partnerPage_Card_ly .partnerPage_Card_text_ly .partnerPage_Card_text.partnerPage_Card_text {
  font-size: 0.8125rem;
  line-height: 1.75em;
}

main.eventPage .gamePage_Card_Wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  row-gap: 30px;
  margin-bottom: 40px;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly {
  position: relative;
  z-index: 1;
  max-width: 572px;
  max-height: 700px;
  padding-top: 45px;
  padding-bottom: 45px;
  aspect-ratio: 1/1.3;
}
@media screen and (max-width: 767px) {
  main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly {
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .cardUpper {
    margin-bottom: 24px;
  }
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly {
  background-image: url("../images/gamePage_Card_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_img {
  margin: 0 auto;
  margin-bottom: 24px;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_img img {
  width: 100%;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly {
  width: 85%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl {
  display: block;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl > h3 {
  margin-left: 58px;
  width: auto;
  font-size: 1.6875rem;
  font-weight: 900;
  text-align: left;
  color: #3e3a39;
}
@media screen and (max-width: 520px) {
  main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl > h3 {
    font-size: 1.25rem;
    margin-left: 50px;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl > h3 {
    font-size: 1rem;
    margin-left: 34px;
  }
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl > .gameCard_label {
  margin-right: 14px;
  width: 38%;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 900;
  text-align: center;
  color: #000000;
  background-color: #d5fa00;
}
@media screen and (max-width: 520px) {
  main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl > .gameCard_label {
    width: auto;
    font-size: 0.75rem;
  }
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl {
  background-color: #f493c2;
  padding: 10px 0;
  border-radius: 24px;
  margin-bottom: 8px;
  position: relative;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../images/playPage_Card_ttl_icon.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 420px) {
  main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl::before {
    width: 17px;
    height: 17px;
  }
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl::before {
  position: absolute;
  top: calc(50% - 12.5px);
  left: 3%;
}
@media screen and (max-width: 420px) {
  main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_ttl::before {
    top: calc(50% - 8.5px);
  }
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .ttl_caption {
  font-size: 0.625rem;
  font-weight: 500;
  text-align: right;
  margin-bottom: 8px;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .ttl_caption.opacity {
  opacity: 0;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_Subttl {
  font-size: 1rem;
  font-weight: 900;
  color: #ff4d5d;
  margin-bottom: 15px;
  margin-bottom: 16px;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .gamePage_Card_text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.875em;
  text-align: justify;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly > .cardBottom {
  margin-right: auto;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .Yakuman_icon {
  width: 17%;
  position: absolute;
  right: -16px;
  bottom: -16px;
}
main.eventPage .gamePage_Card_Wrap .gamePage_Card_ly .gamePage_Card_text_ly .Yakuman_icon img {
  width: 100%;
}
main.eventPage .gamePage-Challenge_Wrap {
  background-color: #faf9ee;
  padding: 30px 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.eventPage .gamePage-Challenge_Wrap {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .gamePage-Challenge_Wrap {
    padding: 20px 20px;
  }
}
main.eventPage .gamePage-Challenge_Wrap::before, main.eventPage .gamePage-Challenge_Wrap::after {
  content: "";
  width: 16px;
  height: 200px;
  background-image: url("../images/gamePage_kazair.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  main.eventPage .gamePage-Challenge_Wrap::before, main.eventPage .gamePage-Challenge_Wrap::after {
    display: none;
  }
}
main.eventPage .gamePage-Challenge_Wrap::before {
  position: absolute;
  top: calc(50% - 100px);
  left: 15px;
}
main.eventPage .gamePage-Challenge_Wrap::after {
  position: absolute;
  top: calc(50% - 100px);
  right: 15px;
}
main.eventPage .gamePage-Challenge_Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_iconArea {
  max-width: 146px;
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_iconArea img {
  width: 100%;
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea .gamePage-Challenge_textArea_ttl_SP {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: flex-start;
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea .gamePage-Challenge_textArea_ttl_SP .gamePage-Challenge_iconArea_SP {
  width: 60px;
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea .gamePage-Challenge_textArea_ttl_SP .gamePage-Challenge_iconArea_SP img {
  width: 100%;
}
@media screen and (max-width: 420px) {
  main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea .gamePage-Challenge_textArea_ttl_SP .gamePage-Challenge_iconArea_SP {
    width: 40px;
  }
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea .challenge_ttl_label {
  font-size: 0.875rem;
  font-weight: 900;
  margin-bottom: 4px;
}
@media screen and (max-width: 420px) {
  main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea .challenge_ttl_label {
    font-size: 0.75rem;
  }
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea .challenge_ttl {
  font-size: 1.9375rem;
  font-weight: 900;
  margin-bottom: 16px;
}
@media screen and (max-width: 420px) {
  main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea .challenge_ttl {
    font-size: 1.25rem;
  }
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea > .challenge_subttl {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ff4d5d;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea > .challenge_subttl {
    font-size: 1rem;
  }
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea > .challenge_list > li {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.75em;
  text-indent: -1em;
}
main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea > .challenge_list > li:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  main.eventPage .gamePage-Challenge_Wrap > .gamePage-Challenge_textArea > .challenge_list > li {
    font-size: 0.6875rem;
  }
}

main.eventPage .stagePage_content_ly .stagePage_item_Wrap {
  width: 100%;
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stagePage_item_ttl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stagePage_item_ttl {
    flex-direction: column;
    align-items: flex-start;
    background-color: #94a8f1;
    padding: 15px 15px 5px 15px;
    border-radius: 15px;
  }
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stagePage_item_ttl {
  margin-bottom: 14px;
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stagePage_item_ttl .stagePage_time {
  width: 22%;
  background-color: #c4cff7;
  font-size: 1.3125rem;
  font-weight: 900;
  text-align: center;
  color: #3e3a39;
  padding: 15px 0;
  border-radius: 25px 0 0 25px;
}
@media screen and (max-width: 1060px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stagePage_item_ttl .stagePage_time {
    font-size: 1.125rem;
    width: 18%;
  }
}
@media screen and (max-width: 840px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stagePage_item_ttl .stagePage_time {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stagePage_item_ttl .stagePage_time {
    width: 100%;
    border-radius: 24px;
    text-align: left;
    padding: 10px 0 10px 20px;
  }
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl.active::after {
  transition: transform 0.3s;
  transform: rotate(180deg);
}
@media screen and (max-width: 420px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl.ajustSize_SP {
    font-size: 0.8125rem;
    line-height: 1.35em;
  }
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl {
  width: 78%;
  background-color: #94a8f1;
  font-size: 1.3125rem;
  font-weight: 900;
  color: #ffffff;
  padding: 15px 0;
  border-radius: 0 25px 25px 0;
  position: relative;
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl.adjustSizeLetters {
  letter-spacing: 0.001em;
}
@media screen and (max-width: 1060px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl {
    font-size: 1.125rem;
    width: 82%;
  }
}
@media screen and (max-width: 840px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl {
    width: 100%;
  }
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl .andPadding_SP {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl .andPadding_SP {
    padding-left: 24px;
  }
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl span {
  padding-left: 58px;
}
@media screen and (max-width: 1060px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl span {
    padding-left: 48px;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl span {
    padding-left: 24px;
  }
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../images/playPage_Card_ttl_icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: calc(50% - 12.5px);
  left: 16px;
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl::before {
    width: 18px;
    height: 18px;
    top: calc(50% - 9px);
    left: 0;
  }
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url("../images/stage_btn_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: calc(50% - 13px);
  right: 16px;
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl::after {
    width: 18px;
    height: 18px;
    top: calc(50% - 9px);
  }
}
main.eventPage .stagePage_content_ly .stagePage_item_Wrap .stageContent_ttl::after {
  transform: rotate(0deg);
  transition: transform 0.3s;
}
main.eventPage .stagePage_content_ly .stage-enmoku_ly {
  padding: 0 15px;
  margin-bottom: 20px;
}
main.eventPage .stagePage_content_ly .stage-enmoku_Wrap.active {
  display: block;
}
main.eventPage .stagePage_content_ly .stage-enmoku_Wrap {
  display: none;
}
main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 4.5%;
}
@media screen and (max-width: 960px) {
  main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap {
    flex-direction: column;
  }
}
main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap .stage_textArea {
  width: 100%;
}
@media screen and (max-width: 960px) {
  main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap .stage_textArea {
    width: 100%;
  }
}
main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap .stage_textArea .stage_text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.875em;
  text-align: justify;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap .stage_textArea .stage_text {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap .stage_textArea .stage_text {
    font-size: 0.875rem;
  }
}
main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap .stage_textArea .stage_caption {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.75em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  main.eventPage .stagePage_content_ly .stage-enmoku_Wrap .stage-enmoku_CONTENT_Wrap .stage_textArea .stage_caption {
    font-size: 0.75rem;
  }
}
main.eventPage .stage_attention {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.875em;
  text-align: center;
  margin-top: 20px;
}

.card_outLine_topPage {
  position: relative;
  z-index: 1;
  background-image: url("../images/card_repeat_bg.png");
  background-repeat: repeat;
  padding: 2px;
  border: 8px solid #b59667;
}
@media screen and (max-width: 767px) {
  .card_outLine_topPage {
    border: 5px solid #b59667;
  }
}

.card_inLine_topPage {
  border: 5px solid #b59667;
  position: relative;
}
@media screen and (max-width: 767px) {
  .card_inLine_topPage {
    border: 3px solid #b59667;
  }
}
.card_inLine_topPage .corner_left_top {
  position: absolute;
  top: 0;
  left: 0;
}
.card_inLine_topPage .corner_right_top {
  position: absolute;
  top: 0;
  right: 0;
}
.card_inLine_topPage .corner_left_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.card_inLine_topPage .corner_right_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}

main.eventPage .ennichiPage-Challenge_Card_Wrap {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}
main.eventPage .card_outLine {
  position: relative;
  z-index: 1;
  background-image: url("../images/card_repeat_bg.png");
  background-repeat: repeat;
  padding: 2px;
  border: 8px solid #b59667;
}
@media screen and (max-width: 767px) {
  main.eventPage .card_outLine {
    border: 5px solid #b59667;
  }
}
main.eventPage .card_inLine {
  padding: 50px 3%;
  border: 5px solid #b59667;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.eventPage .card_inLine {
    border: 3px solid #b59667;
  }
}
main.eventPage .card_inLine .corner_left_top {
  position: absolute;
  top: 0;
  left: 0;
}
main.eventPage .card_inLine .corner_right_top {
  position: absolute;
  top: 0;
  right: 0;
}
main.eventPage .card_inLine .corner_left_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
main.eventPage .card_inLine .corner_right_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}
main.eventPage .card_inLine .stageCard_kazari {
  position: absolute;
  bottom: 0;
  right: 0;
}
main.eventPage .ennichiPage-Challenge_Card {
  position: relative;
}
main.eventPage .ennichiPage-Challenge_Card .ennichi_gochi-buppan_Icon {
  position: absolute;
  top: -20px;
  left: -16px;
  max-width: 120px;
}
main.eventPage .ennichiPage-Challenge_Card .ennichi_gochi-buppan_Icon img {
  width: 100%;
}
@media screen and (max-width: 420px) {
  main.eventPage .ennichiPage-Challenge_Card .ennichi_gochi-buppan_Icon {
    max-width: 72px;
  }
}
main.eventPage .ennichiPage-Challenge_Card .ennichi_placeLabel {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 70px;
}
main.eventPage .ennichiPage-Challenge_Card .ennichi_placeLabel img {
  width: 100%;
}
@media screen and (max-width: 420px) {
  main.eventPage .ennichiPage-Challenge_Card .ennichi_placeLabel {
    max-width: 62px;
  }
}
main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon {
    font-size: 0.875rem;
  }
}
main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span {
  position: relative;
}
main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span::before, main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../images/lowPage_ttl_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.75em;
}
@media screen and (max-width: 960px) {
  main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span::before {
    width: 16px;
    height: 16px;
  }
}
main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.75em;
}
@media screen and (max-width: 960px) {
  main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .ennichiPage-Challenge_Card .goodsPage_commingsoon span::after {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 960px) {
  main.eventPage .ennichiPage-Challenge_Card {
    padding: 50px 30px;
    font-size: 1.25rem;
  }
}
main.eventPage .ennichiPage-Challenge_Card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_imgArea {
  width: 35%;
}
@media screen and (max-width: 960px) {
  main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_imgArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_imgArea img {
  width: 100%;
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea {
  width: 62%;
}
@media screen and (max-width: 960px) {
  main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea {
    width: 100%;
  }
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .challenge_ttl_label {
  font-size: 0.875rem;
  font-weight: 900;
  margin-bottom: 4px;
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_ttl {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #3e3a39;
  padding-left: 34px;
}
@media screen and (max-width: 420px) {
  main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_ttl {
    font-size: 0.9375rem;
    padding-left: 20px;
  }
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_ttl {
  position: relative;
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_ttl::before {
  position: absolute;
  left: 0;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url("../images/ennichi_ttl_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 420px) {
  main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_ttl::before {
    width: 15px;
    height: 15px;
  }
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_label_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 4px;
       column-gap: 4px;
  margin-bottom: 16px;
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_label_list > li {
  max-width: 68px;
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_label_list > li img {
  width: 100%;
}
main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_text {
  font-size: 1rem;
  line-height: 1.875em;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 420px) {
  main.eventPage .ennichiPage-Challenge_Card .ennichiPage-Challenge_textArea > .ennichi_text {
    font-size: 0.9375rem;
  }
}
main.eventPage .ennichiPage-Challenge_Card.Adjust__jyantendoGoods {
  display: block;
}
main.eventPage .ennichiPage-Challenge_Card.Adjust__jyantendoGoods > .card_Upper__Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

main.eventPage .jyunreiPage_Card_Wrap {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}
main.eventPage .jyunreiPage_Card {
  position: relative;
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.eventPage .jyunreiPage_Card {
    padding: 40px 6%;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .jyunreiPage_Card {
    padding: 20px 4cqw;
  }
}
main.eventPage .jyunreiPage_Card .jyunrei_Icon_left {
  position: absolute;
  top: 60px;
  left: 30px;
}
main.eventPage .jyunreiPage_Card .jyunrei_Icon_left img {
  width: 100%;
}
@media screen and (max-width: 1060px) {
  main.eventPage .jyunreiPage_Card .jyunrei_Icon_left {
    width: 120px;
  }
}
@media screen and (max-width: 840px) {
  main.eventPage .jyunreiPage_Card .jyunrei_Icon_left {
    left: 20px;
  }
}
main.eventPage .jyunreiPage_Card .jyunrei_Icon_right {
  position: absolute;
  top: 40px;
  right: 24px;
}
main.eventPage .jyunreiPage_Card .jyunrei_Icon_right img {
  width: 100%;
}
@media screen and (max-width: 1060px) {
  main.eventPage .jyunreiPage_Card .jyunrei_Icon_right {
    width: 120px;
  }
}
main.eventPage .jyunreiPage_Card .jyunrei_Icon_SP_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
main.eventPage .jyunreiPage_Card .jyunrei_Icon_SP_wrap .jyunrei_Icon_left_SP img,
main.eventPage .jyunreiPage_Card .jyunrei_Icon_SP_wrap .jyunrei_Icon_right_SP img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.eventPage .jyunreiPage_Card .jyunrei_Icon_SP_wrap .jyunrei_Icon_left_SP,
  main.eventPage .jyunreiPage_Card .jyunrei_Icon_SP_wrap .jyunrei_Icon_right_SP {
    width: 30%;
  }
}
main.eventPage .jyunreiPage_Card > .jyunreiPage-Challenge_textArea {
  width: 100%;
}
main.eventPage .jyunreiPage_Card > .jyunreiPage-Challenge_textArea .jyunrei_Label {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 420px) {
  main.eventPage .jyunreiPage_Card > .jyunreiPage-Challenge_textArea .jyunrei_Label {
    margin-bottom: 20px;
  }
}
main.eventPage .jyunreiPage_Card > .jyunreiPage-Challenge_textArea .jyunrei_Label > span {
  padding: 6px 20px 4px 20px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 900;
  background-color: #9dcbea;
  border-radius: 24px;
}
main.eventPage .jyunreiPage_Card > .jyunreiPage-Challenge_textArea > .jyunreiPage-daytime {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  main.eventPage .jyunreiPage_Card > .jyunreiPage-Challenge_textArea > .jyunreiPage-daytime {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 520px) {
  main.eventPage .jyunreiPage_Card > .jyunreiPage-Challenge_textArea > .jyunreiPage-daytime {
    text-align: left;
    font-size: 1rem;
  }
}

main.eventPage .terakoyaPage_Card_Wrap {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}
main.eventPage .terakoyaPage_Card {
  position: relative;
}
main.eventPage .terakoyaPage_Card .terakoya_age_Icon {
  position: absolute;
  top: -20px;
  left: -16px;
  max-width: 120px;
}
main.eventPage .terakoyaPage_Card .terakoya_age_Icon img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  main.eventPage .terakoyaPage_Card .terakoya_age_Icon {
    max-width: 80px;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .terakoyaPage_Card .terakoya_age_Icon {
    max-width: 72px;
  }
}
main.eventPage .terakoyaPage_Card .terakoya_Icon_left {
  position: absolute;
  top: 60px;
  left: 54px;
}
main.eventPage .terakoyaPage_Card .terakoya_Icon_left img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  main.eventPage .terakoyaPage_Card .terakoya_Icon_left {
    width: 90px;
  }
}
main.eventPage .terakoyaPage_Card .terakoya_Icon_right {
  position: absolute;
  top: 40px;
  right: 34px;
}
main.eventPage .terakoyaPage_Card .terakoya_Icon_right img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  main.eventPage .terakoyaPage_Card .terakoya_Icon_right {
    width: 120px;
    right: 34px;
  }
}
main.eventPage .terakoyaPage_Card {
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  main.eventPage .terakoyaPage_Card {
    padding: 60px 6%;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .terakoyaPage_Card {
    padding: 40px 6%;
  }
}
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea .terakoya_Icon_SP_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea .terakoya_Icon_SP_wrap .terakoya_Icon_left_SP,
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea .terakoya_Icon_SP_wrap .terakoya_Icon_right_SP {
  width: 30%;
}
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea .terakoya_Icon_SP_wrap .terakoya_Icon_left_SP img,
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea .terakoya_Icon_SP_wrap .terakoya_Icon_right_SP img {
  width: 100%;
}
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea {
  width: 100%;
}
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea .jyunrei_Label {
  text-align: center;
  margin-bottom: 30px;
}
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea .jyunrei_Label > span {
  padding: 6px 20px 4px 20px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 900;
  background-color: #9dcbea;
  border-radius: 24px;
}
main.eventPage .terakoyaPage_Card > .terakoyaPage_textArea > .jyunreiPage-daytime {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
main.eventPage .terakoyaPage_img_Wrap {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 767px) {
  main.eventPage .terakoyaPage_img_Wrap {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
main.eventPage .terakoyaPage_img_Wrap .terakoyaPage_img {
  max-width: 150px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.eventPage .terakoyaPage_img_Wrap .terakoyaPage_img {
    max-width: 120px;
  }
}
main.eventPage .terakoyaPage_img_Wrap .terakoyaPage_img img {
  width: 100%;
}
main.eventPage .terakoyaPage_img_Wrap .terakoyaPage_img.left {
  padding: 30px 30px 30px 0;
}

main.eventPage .lowPage_mainttl__module {
  position: relative;
}
main.eventPage .lowPage_mainttl__module .keisyouryaku {
  font-size: 0.875rem;
  color: #3e3a39;
  font-weight: 400;
  position: absolute;
  z-index: 10;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  main.eventPage .lowPage_mainttl__module .keisyouryaku {
    font-size: 0.6875rem;
    bottom: -20px;
  }
}
main.eventPage .castPage_Wrap .castPage_ttl {
  position: relative;
}
main.eventPage .castPage_Wrap .castPage_ttl .keisyouryaku {
  font-size: 0.875rem;
  color: #3e3a39;
  font-weight: 400;
  position: absolute;
  z-index: 10;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_Wrap .castPage_ttl .keisyouryaku {
    font-size: 0.6875rem;
    bottom: -20px;
  }
}
main.eventPage .castPage_Wrap .castPage_ttl {
  margin: 0 auto;
  max-width: 320px;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  padding: 10px 0;
  font-size: 1.25rem;
  color: #ff4d5d;
  font-weight: 900;
  border-radius: 20px;
  margin-bottom: 74px;
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_Wrap .castPage_ttl {
    margin-bottom: 40px;
    font-size: 1.125rem;
    padding: 8px 0;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .castPage_Wrap .castPage_ttl {
    margin-bottom: 20px;
    font-size: 0.9375rem;
    max-width: 230px;
    padding: 6px 0;
  }
}
main.eventPage .castPage_Wrap .castPage_ttl::before {
  position: absolute;
  left: 10px;
  top: calc(50% - 9.5px);
  content: "";
  background-image: url("../images/castPage_ttl_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 19px;
  height: 19px;
}
main.eventPage .castPage_Wrap .castPage_ttl::after {
  position: absolute;
  right: 10px;
  top: calc(50% - 9.5px);
  content: "";
  background-image: url("../images/castPage_ttl_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 19px;
  height: 19px;
}
main.eventPage .castPage_Wrap .castPage_attention {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 1.875em;
}
@media screen and (max-width: 420px) {
  main.eventPage .castPage_Wrap .castPage_attention {
    font-size: 0.6875rem;
  }
}
main.eventPage .castPage_Wrap .castCard_Wrap__BOX {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 50px;
}
main.eventPage .castPage_Wrap .castCard_Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 3.5%;
       column-gap: 3.5%;
  row-gap: 40px;
  align-items: flex-start;
}
main.eventPage .castPage_Wrap .castCard {
  width: 22%;
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_Wrap .castCard {
    width: 48%;
  }
}
main.eventPage .castPage_Wrap .castImg {
  margin-bottom: 10px;
}
main.eventPage .castPage_Wrap .castImg img {
  width: 100%;
}
main.eventPage .castPage_Wrap .castInfo_Wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
main.eventPage .castPage_Wrap .castName_jp {
  padding: 0 16px;
  font-size: 1.625rem;
  color: #ffffff;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_Wrap .castName_jp {
    padding: 0 8px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .castPage_Wrap .castName_jp {
    padding: 0 8px;
    font-size: 1.125rem;
  }
}
main.eventPage .castPage_Wrap .castName_en {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_Wrap .castName_en {
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .castPage_Wrap .castName_en {
    font-size: 0.5625rem;
  }
}
main.eventPage .castPage_Wrap .castLabel {
  width: 122px;
  margin: 0 auto;
}
main.eventPage .castPage_Wrap .castLabel img {
  width: 100%;
}
@media screen and (max-width: 420px) {
  main.eventPage .castPage_Wrap .castLabel {
    width: 86px;
  }
}
main.eventPage .castPage_Wrap .cast-place {
  padding: 0 16px;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_Wrap .cast-place {
    padding: 0 8px;
    font-size: 0.0625wrem;
  }
}
@media screen and (max-width: 420px) {
  main.eventPage .castPage_Wrap .cast-place {
    padding: 0 8px;
    font-size: 0.625rem;
  }
}
main.eventPage .castPage_Wrap .cast-comment.adjustPD {
  padding: 0 13px;
}
main.eventPage .castPage_Wrap .cast-comment > .adjustLS {
  letter-spacing: 0.05em;
}
main.eventPage .castPage_Wrap .cast-comment > .adjustLS-narrow {
  letter-spacing: 0.001em;
}
main.eventPage .castPage_Wrap .cast-comment {
  padding: 0 16px;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_Wrap .cast-comment {
    padding: 0 8px;
    font-size: 0.8125rem;
  }
}
main.eventPage .castPage_greetingCard {
  position: relative;
}
main.eventPage .castPage_greetingCard > .greeting_Illust_left {
  position: absolute;
  top: 24px;
  left: 24px;
}
main.eventPage .castPage_greetingCard > .greeting_Illust_left img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  main.eventPage .castPage_greetingCard > .greeting_Illust_left {
    width: 120px;
    top: 24px;
    left: 24px;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_greetingCard > .greeting_Illust_left {
    width: 60px;
    top: 10px;
    left: 16px;
  }
}
@media screen and (max-width: 378px) {
  main.eventPage .castPage_greetingCard > .greeting_Illust_left {
    width: 50px;
    top: 10px;
    left: 4px;
  }
}
main.eventPage .castPage_greetingCard .greeting_illust_SP__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
main.eventPage .castPage_greetingCard .greeting_illust_SP__wrap > .greeting_Illust_left {
  max-width: 80px;
}
main.eventPage .castPage_greetingCard .greeting_illust_SP__wrap > .greeting_Illust_left img {
  width: 100%;
}
main.eventPage .castPage_greetingCard.card_inline {
  padding: 50px 3% !important;
}
@media screen and (max-width: 767px) {
  main.eventPage .castPage_greetingCard.card_inline {
    padding: 20px 3% !important;
  }
}

main.eventPage .gameLowPage_Card {
  position: relative;
  padding: 82px 0 130px 0;
}
main.eventPage .gameLowPage_Card .terakoya_Icon_right {
  position: absolute;
  top: 50px;
  right: 50px;
  padding: 10px 0;
  width: 225px;
}
main.eventPage .gameLowPage_Card .gameLowpage_label {
  position: absolute;
  top: 50px;
  right: 50px;
  padding: 10px 0;
  width: 225px;
  border-radius: 40px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  background-color: #d5fa00;
}
main.eventPage .gameLowPage_Card .gameLowpage_label_SP {
  padding: 10px 0;
  width: 225px;
  position: relative;
  display: block;
  border-radius: 40px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  background-color: #d5fa00;
  margin: 0 auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  main.eventPage .gameLowPage_Card .gameLowpage_label_SP {
    padding: 4px 0;
    font-size: 0.75rem;
    width: 120px;
  }
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap {
  max-width: 874px;
  margin: 0 auto;
  padding: 0 20px;
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap img {
  width: 100%;
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  main.eventPage .gameLowPage_Card .game-subPage_img_Wrap {
    margin-bottom: 18px;
  }
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.adjust_team .game-subPage_img {
  width: 24%;
}
@media screen and (max-width: 767px) {
  main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.adjust_team .game-subPage_img {
    width: 100%;
  }
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.adjust_team .game-subPage_img .teamPage_pro-img img {
  width: 100%;
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.adjust_team .game-subPage_img .teamPage_pro-name {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 900;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.adjust_team {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.admission_img_Wrap {
  max-width: 750px;
}
main.eventPage .gameLowPage_Card .pro-v_map_Wrap {
  max-width: 540px;
  margin: 0 auto;
  padding: 30px 0;
}
main.eventPage .gameLowPage_Card .pro-v_map_Wrap img {
  width: 100%;
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.tonpuu_Wrap {
  max-width: 818px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 420px) {
  main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.tonpuu_Wrap {
    flex-direction: column;
    row-gap: 10px;
  }
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.tonpuu_Wrap .tonpuuImg {
  width: 49.5%;
}
@media screen and (max-width: 420px) {
  main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.tonpuu_Wrap .tonpuuImg {
    width: 100%;
  }
}
main.eventPage .gameLowPage_Card .game-subPage_img_Wrap.tonpuu_Wrap .tonpuuImg img {
  width: 100%;
}
main.eventPage .gameLowPage_Card .admission_Illust_left {
  position: absolute;
  top: 46px;
  left: 32px;
}
main.eventPage .gameLowPage_Card .admission_Illust_left img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  main.eventPage .gameLowPage_Card .admission_Illust_left {
    width: 120px;
    top: 30px;
    left: 20px;
  }
}
main.eventPage .gameLowPage_Card .admission_Illust_right {
  position: absolute;
  top: 46px;
  right: 32px;
}
main.eventPage .gameLowPage_Card .admission_Illust_right img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  main.eventPage .gameLowPage_Card .admission_Illust_right {
    width: 120px;
    top: 30px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  main.eventPage .gameLowPage_Card.admission-fasttrack,
  main.eventPage .gameLowPage_Card.admission-numbered,
  main.eventPage .gameLowPage_Card.game-team_Card {
    padding: 40px 6%;
  }
}
main.eventPage .gameLowPage_Card.admission-fasttrack .admission_Illust_Wrap_SP,
main.eventPage .gameLowPage_Card.admission-numbered .admission_Illust_Wrap_SP,
main.eventPage .gameLowPage_Card.game-team_Card .admission_Illust_Wrap_SP {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
}
main.eventPage .gameLowPage_Card.admission-fasttrack .admission_Illust_Wrap_SP .admission_Illust_left_SP,
main.eventPage .gameLowPage_Card.admission-fasttrack .admission_Illust_Wrap_SP .admission_Illust_right_SP,
main.eventPage .gameLowPage_Card.admission-numbered .admission_Illust_Wrap_SP .admission_Illust_left_SP,
main.eventPage .gameLowPage_Card.admission-numbered .admission_Illust_Wrap_SP .admission_Illust_right_SP,
main.eventPage .gameLowPage_Card.game-team_Card .admission_Illust_Wrap_SP .admission_Illust_left_SP,
main.eventPage .gameLowPage_Card.game-team_Card .admission_Illust_Wrap_SP .admission_Illust_right_SP {
  max-width: 35%;
}
main.eventPage .gameLowPage_Card.admission-fasttrack .admission_Illust_Wrap_SP .admission_Illust_left_SP img,
main.eventPage .gameLowPage_Card.admission-fasttrack .admission_Illust_Wrap_SP .admission_Illust_right_SP img,
main.eventPage .gameLowPage_Card.admission-numbered .admission_Illust_Wrap_SP .admission_Illust_left_SP img,
main.eventPage .gameLowPage_Card.admission-numbered .admission_Illust_Wrap_SP .admission_Illust_right_SP img,
main.eventPage .gameLowPage_Card.game-team_Card .admission_Illust_Wrap_SP .admission_Illust_left_SP img,
main.eventPage .gameLowPage_Card.game-team_Card .admission_Illust_Wrap_SP .admission_Illust_right_SP img {
  width: 100%;
}
main.eventPage .gameLowPage_Card.adjustPB {
  padding-bottom: 450px;
}

main.infoPage .infoPage_content_Wrap {
  padding-top: 74px;
  padding-bottom: 80px;
  background-image: url("../images/top_footer_bg.png");
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap {
    background: #ffffff url("../images/top_footer_bg_sp.png") repeat;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner {
    padding: 0 16px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner {
    padding: 0 12px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card {
  background-image: url("../images/infoPage_bg.png");
  background-repeat: repeat;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card {
    background-image: url("../images/infoPage_bg_SP.png");
    background-repeat: repeat;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .frame {
  width: 100%;
  height: 100%;
  border: 3px solid #ffffff;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .frame {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_Card_inner {
  max-width: 1092px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_Card_inner {
    padding: 0 16px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_Card_inner {
    padding: 0 12px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly {
    margin-bottom: 16px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_Illust_left img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_Illust_left {
    width: 100px;
    position: absolute;
    top: -20px;
    left: -20px;
  }
}
@media screen and (max-width: 520px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_Illust_left {
    width: 80px;
    top: -20px;
    left: -20px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_Illust_right img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_Illust_right {
    width: 100px;
    position: absolute;
    top: -20px;
    right: -20px;
  }
}
@media screen and (max-width: 520px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_Illust_right {
    width: 80px;
    top: -20px;
    right: -20px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_Illust_right {
    width: 70px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_ttl_Wrap {
  text-align: center;
  margin: 0 auto;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_ttl_Wrap .mini-musubi {
  text-align: center;
  margin-bottom: 28px;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_ttl_Wrap .mini-musubi img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_ttl_Wrap .mini-musubi {
    margin: 0 auto;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_ttl_Wrap .infoPage_ttl {
  font-size: 2.5rem;
  line-height: 1.5em;
  letter-spacing: 0.005em;
  text-align: center;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #ffffff;
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_ly .infoPage_ttl_Wrap .infoPage_ttl {
    font-size: 2.1875rem;
    letter-spacing: 0.01em;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_SP {
  font-size: 2.1875rem;
  line-height: 1.5em;
  text-align: center;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #ffffff;
  margin-bottom: 16px;
}
@media screen and (max-width: 520px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_SP {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_SP {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 340px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_ttl_SP {
    font-size: 1.5rem;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_maincopy {
  font-size: 1.5rem;
  line-height: 2em;
  text-align: center;
  color: #ffffff;
  margin-bottom: 70px;
}
@media screen and (max-width: 840px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_maincopy {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_maincopy {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_maincopy {
    font-size: 0.9375rem;
    margin-bottom: 16px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoCard_ly_Wrap {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoCard_ly {
  position: relative;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoCard_ly .info-chara_SP {
  position: absolute;
  z-index: 1;
  right: 0;
  top: -30px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoCard_ly .info-chara_SP {
    width: 120px;
  }
}
@media screen and (max-width: 520px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoCard_ly .info-chara_SP {
    width: 100px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoCard_ly .info-chara_SP {
    top: -15px;
    width: 60px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoCard_ly .info-chara_SP img {
  width: 100%;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ttl {
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 900;
  color: #ffffff;
  padding: 12px 0 10px 30px;
  line-height: 1.5em;
}
@media screen and (max-width: 960px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ttl {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ttl {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ttl {
    font-size: 1.0625rem;
    padding: 12px 0 10px 16px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ttl.green {
  background-color: #45d3ba;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ttl.orange {
  background-color: #ffad37;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ttl.ao {
  background-color: #94a8f1;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ttl.cha {
  background-color: #b9965f;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly.addServiceInfo__SP {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly.addServiceInfo__SP {
    padding: 15px 16px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly {
  padding: 45px 64px;
  background-color: #ffffff;
}
@media screen and (max-width: 1060px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly {
    padding: 40px 45px;
  }
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly {
    padding: 15px 0;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly {
  position: relative;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly .info-chara {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly .Serviceinfo_innner_ly {
  border-top: 1px solid #b9965f;
  padding: 26px 12px;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly .Serviceinfo_innner_ly:nth-last-of-type(1) {
  border-bottom: 1px solid #b9965f;
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly .Serviceinfo_innner_ly {
    padding: 20px 8px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly .Serviceinfo_text {
  font-size: 1.125rem;
  line-height: 2em;
  font-weight: 500;
  color: #231815;
  text-align: justify;
  margin-left: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly .Serviceinfo_text {
    font-size: 0.84375rem;
    line-height: 1.85em;
    margin-left: 16px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_content_ly .Serviceinfo_text .addBold {
  font-weight: 900;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subttl {
  font-size: 1.375rem;
  font-weight: 900;
  color: #231815;
  padding-left: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subttl {
    font-size: 1.125rem;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subttl {
    font-size: 0.9375rem;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subttl_serviceinfo {
  font-size: 1.75rem;
  font-weight: 600;
  color: #231815;
  padding-left: 15px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 16px;
  border-left: 8px solid #b9965f;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subttl_serviceinfo {
    font-size: 1.375rem;
    padding-left: 10px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subttl_serviceinfo {
    font-size: 1.125rem;
    padding-left: 8px;
    margin-bottom: 10px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_text {
  font-size: 1.125rem;
  line-height: 2em;
  font-weight: 500;
  color: #231815;
  padding-left: 35px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_text {
    font-size: 0.9375rem;
    line-height: 1.85em;
    padding-left: 24px;
    padding-right: 20px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_text {
    font-size: 0.8125rem;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 25px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subtext {
  font-size: 1.25rem;
  line-height: 2em;
  font-weight: 500;
  color: #231815;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subtext {
    font-size: 0.9375rem;
    line-height: 1.85em;
  }
}
@media screen and (max-width: 420px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_subtext {
    font-size: 0.8125rem;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap {
  max-width: 634px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap {
    flex-direction: column;
    row-gap: 15px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap .infoPage_app_Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 74%;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap .infoPage_app_Wrap > .app {
  width: 30%;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap .infoPage_app_Wrap > .app img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap .infoPage_app_Wrap {
    width: 90%;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap {
  margin-bottom: 30px;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap > .jyantamaLogo {
  width: 16%;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap > .jyantamaLogo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_apply_link_Wrap > .jyantamaLogo {
    width: 25%;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .keisen_green {
  width: 100%;
  height: 1px;
  background-color: #45d3ba;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .keisen_green {
    width: 90%;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .keisen_ao {
  width: 100%;
  height: 1px;
  background-color: #94a8f1;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .keisen_ao {
    width: 90%;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_eventttl {
  width: 100%;
  max-width: 518px;
  margin: 0 auto;
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_eventttl {
    padding: 0 24px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 640px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_eventttl {
    padding: 0 12px 0 12px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_eventttl img {
  width: 100%;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_eventttl {
  position: relative;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_eventttl .infoPage_ttl-ON_chara {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 25%;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoPage_eventttl .infoPage_ttl-ON_chara img {
  width: 100%;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .kei_upper_MB {
  margin-bottom: 4px;
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .kei_bottom_MB {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .kei_bottom_MB {
    margin-bottom: 30px;
  }
}
main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoBtn_MB {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  main.infoPage .infoPage_content_Wrap .infoPageInner .infoPage_Card .infoBtn_MB {
    margin-bottom: 20px;
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2015 Daniel Eden
 */
.animate {
  opacity: 0;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.shake {
  animation-name: shake;
}

@keyframes shake {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.98) translate(0, 3px);
  }
  35% {
    transform: scale(1.02, 1) translate(0, 3px);
  }
  55% {
    transform: scale(0.98, 1.02) translate(0, -3px);
  }
  75% {
    transform: scale(1, 0.93) translate(0, 3px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */