@charset "UTF-8";
/* ==================================================================
header
================================================================== */
.header {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  max-width: 10rem;
}
.header .logo {
  width: 2.78rem;
  margin: 0.12rem 0 0 0.15rem;
}
.header .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0.17rem 0.5rem 0 0;
  gap: 0.14rem;
}
@media (max-width: 750px) {
  .header .sns-list {
    gap: 0.2rem;
  }
}
.header .sns-list .sns-list_item {
  border-radius: 50%;
  width: 0.5rem;
}
@media (max-width: 750px) {
  .header .sns-list .sns-list_item {
    max-width: none;
    width: 0.72rem;
  }
}

/* ==================================================================
ローディング
================================================================== */
.all::before {
  display: block;
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 30000;
  background: url("../img/loading.gif?time=20210401a") no-repeat center center #fff;
  background-size: 0.6rem 0.6rem;
  -webkit-transition: all 0.8s ease 0.2s;
  transition: all 0.8s ease 0.2s;
  opacity: 1;
  visibility: visible;
}

.all.loaded::before {
  opacity: 0;
  visibility: hidden;
}

/* ==================================================================
ゲームをはじめる！ボタン
================================================================== */
.play-btn {
  position: fixed;
  right: 0.2rem;
  bottom: 0;
  z-index: 10;
  width: 2.88rem;
}
@media (max-width: 750px) {
  .play-btn {
    width: 2.4rem;
    right: 0.06rem;
    bottom: 0.6rem;
  }
}
@media (min-width: 1921px) {
  .play-btn {
    width: 320px;
  }
}
.play-btn:hover {
  -webkit-animation-name: jump;
          animation-name: jump;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes jump {
  6.65% {
    -webkit-transform: translateY(0.08rem);
            transform: translateY(0.08rem);
  }
  13.3% {
    -webkit-transform: translateY(-0.06rem);
            transform: translateY(-0.06rem);
  }
  29.95% {
    -webkit-transform: translateY(0.04rem);
            transform: translateY(0.04rem);
  }
  36.6% {
    -webkit-transform: translateY(-0.02rem);
            transform: translateY(-0.02rem);
  }
  43.25% {
    -webkit-transform: translateY(0.01rem);
            transform: translateY(0.01rem);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jump {
  6.65% {
    -webkit-transform: translateY(0.08rem);
            transform: translateY(0.08rem);
  }
  13.3% {
    -webkit-transform: translateY(-0.06rem);
            transform: translateY(-0.06rem);
  }
  29.95% {
    -webkit-transform: translateY(0.04rem);
            transform: translateY(0.04rem);
  }
  36.6% {
    -webkit-transform: translateY(-0.02rem);
            transform: translateY(-0.02rem);
  }
  43.25% {
    -webkit-transform: translateY(0.01rem);
            transform: translateY(0.01rem);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ==================================================================
ページトップへ戻るボタン
================================================================== */
.pagetop {
  position: fixed;
  right: 0.2rem;
  top: 0.2rem;
  z-index: 10;
  width: 1.32rem;
}
.pagetop:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ==================================================================
ヒーローエリア
================================================================== */
#feather {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-area {
  position: relative;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center 0;
  background-image: url("../img/bg_5th.jpg");
  background-size: cover;
  height: 6.93rem;
}
@media (max-width: 750px) {
  .hero-area {
    background: url("../img/bg_5th_sp.jpg") no-repeat center 0/contain;
    height: 9.5rem;
  }
}
.hero-area .inner .main_v {
  width: 10.96rem;
  position: absolute;
  bottom: 0;
  left: -0.48rem;
}
@media (max-width: 750px) {
  .hero-area .inner .main_v {
    width: 100%;
    left: 0;
  }
}
.hero-area .inner .site-logo {
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  right: 0;
  z-index: 3;
  width: 7.39rem;
  margin: auto;
}
@media (max-width: 750px) {
  .hero-area .inner .site-logo {
    width: 6.8rem;
    bottom: -0.56rem;
  }
}

/* ==================================================================
summary_area
================================================================== */
.summary_area {
  padding: 0.92rem 0;
}
@media (max-width: 750px) {
  .summary_area {
    padding: 1.02rem 0 0.8rem;
  }
}
.summary_area .nav_anchor {
  width: 7.5rem;
  margin: 0 auto 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 750px) {
  .summary_area .nav_anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
  }
}
.summary_area .nav_anchor li {
  width: 3.62rem;
}
.summary_area .txt {
  max-width: 750px;
  margin: 0 auto;
  color: #6a6a91;
  font-size: 0.27rem;
  text-shadow: 0 0 0.05rem #fff, 0 0 0.05rem #fff, 0 0 0.05rem #fff, 0 0 0.05rem #fff, 0 0 0.05rem #fff, 0 0 0.05rem #fff, 0 0 0.05rem #fff, 0 0 0.05rem #fff, 0 0 0.05rem #fff, 0 0 0.05rem #fff;
}
@media (max-width: 750px) {
  .summary_area .txt {
    padding: 0 0.5rem;
  }
}

/* ==================================================================
プロジェクトエリア
================================================================== */
.project_ttl {
  width: 7.14rem;
  margin: 0 auto 1.12rem;
}
@media (max-width: 750px) {
  .project_ttl {
    margin-bottom: 0.9rem;
  }
}

.project_area {
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgb(255, 255, 255) 10px, rgb(255, 255, 255) 20px);
  margin-bottom: 1.4rem;
  -webkit-box-shadow: 0 0 0.2rem 0rem #999;
          box-shadow: 0 0 0.2rem 0rem #999;
}
@media (max-width: 750px) {
  .project_area {
    margin-bottom: 0.8rem;
  }
}
.project_area::before, .project_area::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  background: rgb(136, 185, 255);
  background: linear-gradient(45deg, rgb(136, 185, 255) 0%, rgb(212, 175, 247) 20%, rgb(252, 178, 230) 40%, rgb(254, 191, 209) 60%, rgb(255, 208, 189) 80%, rgb(255, 227, 167) 100%);
}
.project_area .project_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10rem;
  margin: 0 auto;
  gap: 0.2rem;
  position: relative;
  padding: 0.54rem 0.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .project_area .project_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0.74rem 0.3rem 0.54rem;
    gap: 0.34rem;
  }
}
@media (max-width: 750px) {
  .project_area .project_inner.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.project_area .project_inner.reverse .project_info .project_info_head {
  left: auto;
  right: 1.48rem;
}
@media (max-width: 750px) {
  .project_area .project_inner.reverse .project_info .project_info_head {
    left: 0;
    right: 0;
  }
}
.project_area .project_inner::before, .project_area .project_inner::after {
  content: "";
  width: 2.41rem;
  height: 2.82rem;
  display: block;
  position: absolute;
}
@media (max-width: 750px) {
  .project_area .project_inner::before, .project_area .project_inner::after {
    width: 1.15rem;
    height: 1.38rem;
  }
}
.project_area .project_inner::before {
  background: url("../img/inner_kira_l.png") no-repeat 0 0/contain;
  left: -2.9rem;
}
@media (max-width: 750px) {
  .project_area .project_inner::before {
    background: url("../img/inner_kira_l_sp.png") no-repeat 0 0/contain;
    left: 0.27rem;
    top: 0.15rem;
  }
}
.project_area .project_inner::after {
  background: url("../img/inner_kira_r.png") no-repeat 0 0/contain;
  right: -2.9rem;
}
@media (max-width: 750px) {
  .project_area .project_inner::after {
    background: url("../img/inner_kira_r_sp.png") no-repeat 0 0/contain;
    right: 0.27rem;
    top: 0.15rem;
  }
}
.project_area .project_inner .project_info {
  width: 4.7rem;
  padding: 0 0.3rem;
}
@media (max-width: 750px) {
  .project_area .project_inner .project_info {
    width: 100%;
    padding: 0;
  }
}
.project_area .project_inner .project_info .project_info_head {
  position: absolute;
  top: -0.81rem;
  left: 1.48rem;
  width: 2.12rem;
}
@media (max-width: 750px) {
  .project_area .project_inner .project_info .project_info_head {
    left: 0;
    right: 0;
    margin: auto;
  }
}
.project_area .project_inner .project_info .project_info_ttl {
  width: 3.44rem;
  margin: 0 auto 0.15rem;
}
@media (max-width: 750px) {
  .project_area .project_inner .project_info .project_info_ttl {
    width: 4.88rem;
    margin: 0 auto 0.22rem;
  }
}
.project_area .project_inner .project_info .project_info_txt {
  font-size: 0.18rem;
  font-weight: 500;
  color: #6a6a91;
}
@media (max-width: 750px) {
  .project_area .project_inner .project_info .project_info_txt {
    font-size: 0.24rem;
    padding: 0 0.7rem;
  }
}
.project_area .project_inner .project_info .project_img {
  width: 4.7rem;
}

/* ==================================================================
スケジュールエリア
================================================================== */
.schedule_area {
  padding-bottom: 2.87rem;
}
@media (max-width: 750px) {
  .schedule_area {
    padding-bottom: 0.7rem;
  }
}
.schedule_area .schedule_ttl {
  width: 7.14rem;
  margin: 0 auto 0.3rem;
}
@media (max-width: 750px) {
  .schedule_area .schedule_ttl {
    margin: 0 auto 0.23rem;
  }
}
.schedule_area .schedule_inner {
  max-width: 1000px;
  padding: 0 0.2rem;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner {
    padding: 0 0.3rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap {
  width: 9.6rem;
  margin: 0 auto;
  padding: 0.06rem;
  background: rgb(136, 185, 255);
  background: linear-gradient(45deg, rgb(136, 185, 255) 0%, rgb(212, 175, 247) 20%, rgb(252, 178, 230) 40%, rgb(254, 191, 209) 60%, rgb(255, 208, 189) 80%, rgb(255, 227, 167) 100%);
  border-radius: 0.24rem;
  -webkit-box-shadow: 0 0 0.2rem 0 #fff, 0 0 0.2rem 0 #fff;
          box-shadow: 0 0 0.2rem 0 #fff, 0 0 0.2rem 0 #fff;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap {
    width: 100%;
    padding: 0.05rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl {
  border-collapse: collapse;
  border-spacing: 0;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .game_col,
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .collabo_col,
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .others_col {
  text-align: center;
  padding: 0.15rem 0 0.24rem;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .game_col,
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .collabo_col,
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .others_col {
    padding: 0.07rem 0 0.15rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .game_col img,
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .collabo_col img,
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .others_col img {
  width: 1.71rem;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .game_col img,
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .collabo_col img,
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .others_col img {
    width: 1.23rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .tbl_th .others_col {
  border-radius: 0 0.2rem 0 0;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl td {
  vertical-align: top;
  text-align: center;
  padding: 0.22rem 0 0.12rem;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl td {
    padding: 0.18rem 0 0.05rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl td a {
  display: block;
  -webkit-box-shadow: 0 0.04rem 0 #c7c7c7;
          box-shadow: 0 0.04rem 0 #c7c7c7;
  border-radius: 0.15rem;
  margin: 0 auto 0.17rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl td a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0.04rem);
          transform: translateY(0.04rem);
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl td a {
    margin: 0 auto 0.13rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .game_col {
  width: 2.79rem;
  background-color: #f9f3ff;
  border-bottom: 0.02rem dashed #ead4ff;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .game_col {
    width: 2rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .game_col a {
  width: 2.41rem;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .game_col a {
    width: 1.72rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .collabo_col {
  width: 2.79rem;
  background-color: #ffedf5;
  border-bottom: 0.02rem dashed #ffc1dc;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .collabo_col {
    width: 2rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .collabo_col a {
  width: 2.41rem;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .collabo_col a {
    width: 1.72rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .others_col {
  width: 2.79rem;
  background-color: #fff3da;
  border-bottom: 0.02rem dashed #ffd794;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .others_col {
    width: 2rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .others_col a {
  width: 2.41rem;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .others_col a {
    width: 1.72rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .all_col {
  background: rgb(249, 243, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgb(249, 243, 255)), color-stop(33.33%, rgb(249, 243, 255)), color-stop(33.33%, rgb(255, 237, 245)), color-stop(66.66%, rgb(255, 237, 245)), color-stop(66.66%, rgb(255, 243, 218)), to(rgb(255, 243, 218)));
  background: linear-gradient(90deg, rgb(249, 243, 255) 0%, rgb(249, 243, 255) 33.33%, rgb(255, 237, 245) 33.33%, rgb(255, 237, 245) 66.66%, rgb(255, 243, 218) 66.66%, rgb(255, 243, 218) 100%);
  padding: 0.22rem 0 0.3rem;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .all_col {
    padding: 0.16rem 0 0.21rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .all_col a {
  width: 8rem;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .all_col a {
    width: 5.74rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .march .all_col {
  position: relative;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .march .all_col::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.02rem;
  background: url("../img/border_grad.png") no-repeat 0 0/contain;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .undecided .all_col {
  border-radius: 0 0 0.2rem 0;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .date_col {
  width: 1.13rem;
  background-color: #eaf9ff;
  padding: 0 0.14rem;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .date_col {
    padding: 0 0.09rem;
    width: 0.8rem;
  }
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .date_col::after {
  content: "";
  width: 0.1rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #00bbff;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .date_col.first_col {
  border-radius: 0.2rem 0 0 0;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .date_col.last_col {
  border-radius: 0 0 0 0.2rem;
}
.schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .date_col img {
  width: 0.85rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .schedule_area .schedule_inner .schedule_tbl_wrap .schedule_tbl .date_col img {
    width: 0.62rem;
  }
}

/* ==================================================================
フッター
================================================================== */
.footer {
  z-index: 1;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
}
.footer .spec {
  padding: 0.5rem 0;
}
@media (max-width: 750px) {
  .footer .spec {
    padding: 0.7rem 0.46rem 0.46rem;
  }
}
@media (min-width: 1921px) {
  .footer .spec {
    padding: 50px;
  }
}
.footer .spec .footer_logo {
  width: 4.16rem;
  margin: 0 auto 0.13rem;
}
@media (max-width: 750px) {
  .footer .spec .footer_logo {
    width: 5.2rem;
    margin-bottom: 0.07rem;
  }
}
@media (min-width: 1921px) {
  .footer .spec .footer_logo {
    width: 416px;
    margin: 0 auto 13px;
  }
}
.footer .spec .spec_info {
  width: 6.07rem;
  margin: 0 auto 0.3rem;
}
@media (max-width: 750px) {
  .footer .spec .spec_info {
    width: 6.42rem;
  }
}
@media (min-width: 1921px) {
  .footer .spec .spec_info {
    width: 607px;
    margin: 0 auto 30px;
  }
}
.footer .spec .store-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.4rem;
}
@media (min-width: 1921px) {
  .footer .spec .store-list {
    margin-bottom: 40px;
  }
}
.footer .spec .store-list .store-list_item {
  width: 2.02rem;
  margin: 0 0.05rem;
}
@media (max-width: 750px) {
  .footer .spec .store-list .store-list_item {
    width: 2.13rem;
  }
}
@media (min-width: 1921px) {
  .footer .spec .store-list .store-list_item {
    width: 202px;
    margin: 0 5px;
  }
}
.footer .spec .store-list .store-list_item:nth-child(3) {
  width: 1.86rem;
}
@media (max-width: 750px) {
  .footer .spec .store-list .store-list_item:nth-child(3) {
    width: 1.94rem;
  }
}
@media (min-width: 1921px) {
  .footer .spec .store-list .store-list_item:nth-child(3) {
    width: 186px;
  }
}
.footer .spec .basic_btn {
  width: 3.26rem;
  margin: 0 auto 0.6rem;
}
@media (max-width: 750px) {
  .footer .spec .basic_btn {
    width: 4.1rem;
  }
}
@media (min-width: 1921px) {
  .footer .spec .basic_btn {
    width: 326px;
    margin: 0 auto 60px;
  }
}
.footer .spec .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .spec .sns-list .sns-list_item {
  width: 0.56rem;
  margin: 0 0.04rem;
  line-height: 1;
}
@media (max-width: 750px) {
  .footer .spec .sns-list .sns-list_item {
    max-width: 72px;
    width: 0.8rem;
    margin: 0.08rem;
  }
}
@media (min-width: 1921px) {
  .footer .spec .sns-list .sns-list_item {
    width: 56px;
    margin: 0 4px;
  }
}
.footer .copyr {
  position: relative;
  padding: 0 0 0.4rem;
}
@media (max-width: 750px) {
  .footer .copyr {
    position: relative;
    padding: 0.1rem 0.5rem 0.35rem;
  }
}
@media (min-width: 1921px) {
  .footer .copyr {
    padding: 0 20px 40px;
  }
}
.footer .copyr .enza-logo {
  width: 1.8rem;
  margin: 0 auto 0.17rem;
}
@media (max-width: 750px) {
  .footer .copyr .enza-logo {
    width: 2.4rem;
    margin-bottom: 0.2rem;
  }
}
@media (min-width: 1921px) {
  .footer .copyr .enza-logo {
    width: 180px;
    margin: 0 auto 17px;
  }
}
.footer .copyr .copyr_txt {
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.5;
  color: #615466;
  text-align: center;
}
@media (max-width: 750px) {
  .footer .copyr .copyr_txt {
    font-size: 0.18rem;
    line-height: 1.7;
  }
}
@media (min-width: 1921px) {
  .footer .copyr .copyr_txt {
    font-size: 12px;
  }
}

/* ==================================================================
モーダル
================================================================== */
.modal_wrap {
  display: none;
}

.modaal-container {
  background-color: transparent;
  max-width: 738px;
}
.modaal-container .modal_inner {
  width: 7.1rem;
  position: relative;
}
@media (max-width: 750px) {
  .modaal-container .modal_inner {
    width: 100%;
  }
}
.modaal-container .modal_inner.game {
  background-color: #c68aff;
  border-radius: 0.2rem;
  padding: 0.06rem;
}
.modaal-container .modal_inner.game .modal_ttl::before {
  border-right-color: #7022ba;
}
.modaal-container .modal_inner.game .modal_ttl::after {
  border-left-color: #7022ba;
}
.modaal-container .modal_inner.collabo {
  background-color: #ff96d6;
  border-radius: 0.2rem;
  padding: 0.06rem;
}
.modaal-container .modal_inner.collabo .modal_ttl::before {
  border-right-color: #e42b9c;
}
.modaal-container .modal_inner.collabo .modal_ttl::after {
  border-left-color: #e42b9c;
}
.modaal-container .modal_inner.others {
  background-color: #ffd376;
  border-radius: 0.2rem;
  padding: 0.06rem;
}
.modaal-container .modal_inner.others .modal_ttl::before {
  border-right-color: #e39d0c;
}
.modaal-container .modal_inner.others .modal_ttl::after {
  border-left-color: #e39d0c;
}
.modaal-container .modal_inner.all {
  background-color: #fdaf90;
  border-radius: 0.2rem;
  padding: 0.06rem;
}
.modaal-container .modal_inner.all .modal_ttl::before {
  border-right-color: #e96530;
}
.modaal-container .modal_inner.all .modal_ttl::after {
  border-left-color: #e96530;
}
.modaal-container .modal_inner.rainbow {
  background: rgb(136, 185, 255);
  background: linear-gradient(45deg, rgb(136, 185, 255) 0%, rgb(212, 175, 247) 20%, rgb(252, 178, 230) 40%, rgb(254, 191, 209) 60%, rgb(255, 208, 189) 80%, rgb(255, 227, 167) 100%);
  border-radius: 0.2rem;
  padding: 0.06rem;
}
.modaal-container .modal_inner.rainbow .modal_ttl::before {
  border-right-color: #c8a58a;
}
.modaal-container .modal_inner.rainbow .modal_ttl::after {
  border-left-color: #8b8eea;
}
.modaal-container .modal_inner .modal_img {
  border: 0.04rem solid #fff;
  border-bottom: none;
  border-radius: 0.2rem 0.2rem 0 0;
  overflow: hidden;
}
.modaal-container .modal_inner .modal_ttl {
  position: absolute;
  width: 7.38rem;
  left: -0.14rem;
}
@media (max-width: 750px) {
  .modaal-container .modal_inner .modal_ttl {
    width: 6.68rem;
  }
}
.modaal-container .modal_inner .modal_ttl::before {
  position: absolute;
  content: "";
  bottom: 100%;
  left: 0;
  border: none;
  border-top: solid 0.15rem transparent;
  border-right: solid 0.14rem #666;
}
.modaal-container .modal_inner .modal_ttl::after {
  position: absolute;
  content: "";
  bottom: 100%;
  right: 0;
  border: none;
  border-top: solid 0.15rem transparent;
  border-left: solid 0.14rem #666;
}
.modaal-container .modal_inner .modal_txt {
  background-color: #fff;
  border-radius: 0 0 0.2rem 0.2rem;
  padding: 1rem 0.5rem 0.2rem;
  font-size: 0.2rem;
  font-weight: bold;
  color: #474763;
}
@media (max-width: 750px) {
  .modaal-container .modal_inner .modal_txt {
    padding: 0.9rem 0.5rem 0.2rem;
    font-size: 0.24rem;
  }
}

/* ==================================================================
アニメーション
================================================================== */
.anime.view {
  /* viewが付与されたら元の位置に移動して表示 */
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: all 0.8s ease-in 0.2s;
  transition: all 0.8s ease-in 0.2s;
}
.anime.view.delay1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.anime.view.delay2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.anime.view.delay3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.anime.view.delay4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.anime.view.delay5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.anime.view.delay6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.anime.view.delay7 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

/*フェードイン*/
.fadeR {
  opacity: 0;
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}

.fadeL {
  opacity: 0;
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}

.fadeT {
  opacity: 0;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
}

.fadeB {
  opacity: 0;
  -webkit-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
}

.fade {
  opacity: 0;
}

.fadeS {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.fadeE {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

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

@keyframes light {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes logo {
  0% {
    -webkit-filter: brightness(0.1);
            filter: brightness(0.1);
  }
  33% {
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
  }
  66% {
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
  }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
@keyframes logo {
  0% {
    -webkit-filter: brightness(0.1);
            filter: brightness(0.1);
  }
  33% {
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
  }
  66% {
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
  }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
/* ---------------------------------------------------------
OnetTrust
--------------------------------------------------------- */
#onetrust-banner-sdk {
  font-family: "noto-sans-cjk-jp", sans-serif;
  padding: 0.2rem 0.3rem;
}

@media (max-width: 480px) {
  #onetrust-banner-sdk {
    padding: 1.2rem 0.4rem 0.4rem 0.4rem;
  }
}
#onetrust-pc-sdk {
  font-family: "noto-sans-cjk-jp", sans-serif;
}

#onetrust-banner-sdk * {
  float: inherit !important;
  margin: 0 !important;
  overflow-wrap: break-word !important;
  padding: 0 !important;
  word-break: break-word !important;
}

#onetrust-banner-sdk *::after {
  display: none !important;
}

#onetrust-banner-sdk .ot-sdk-container {
  width: 100% !important;
}

@media (min-width: 901px) {
  #onetrust-banner-sdk .ot-sdk-container {
    max-width: 90% !important;
  }
}
@media (min-width: 481px) and (max-width: 900px) {
  #onetrust-banner-sdk .ot-sdk-container {
    max-width: calc(100% - 0.4rem) !important;
  }
}
#onetrust-banner-sdk .ot-sdk-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid !important;
  gap: 0.2rem;
  grid-template-columns: auto 3.2rem;
}

@media (max-width: 1200px) {
  #onetrust-banner-sdk .ot-sdk-row {
    grid-template-columns: auto 2.08rem;
  }
}
@media (max-width: 900px) {
  #onetrust-banner-sdk .ot-sdk-row {
    gap: 0.4rem;
    grid-template-columns: 1fr;
  }
}
#onetrust-banner-sdk #onetrust-group-container {
  width: 100% !important;
}

#onetrust-banner-sdk #onetrust-policy {
  overflow: inherit !important;
}

@media (min-width: 1281px) {
  #onetrust-banner-sdk #onetrust-policy {
    max-width: 85%;
  }
}
#onetrust-banner-sdk #onetrust-policy-text a {
  margin-left: 0.05rem !important;
}

#onetrust-banner-sdk #onetrust-button-group-parent {
  margin: auto !important;
  padding: 0 !important;
  position: inherit !important;
  -webkit-transform: none !important;
          transform: none !important;
  width: 100% !important;
}

@media (min-width: 481px) {
  #onetrust-banner-sdk #onetrust-button-group-parent {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
#onetrust-banner-sdk #onetrust-button-group {
  display: grid !important;
  gap: 0.1rem 0.2rem;
  grid-template-columns: repeat(2, auto);
}

@media (min-width: 901px) and (max-width: 1200px) {
  #onetrust-banner-sdk #onetrust-button-group {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  #onetrust-banner-sdk #onetrust-button-group {
    grid-template-columns: 1fr;
  }
}
#onetrust-banner-sdk #onetrust-pc-btn-handler,
#onetrust-banner-sdk #onetrust-accept-btn-handler {
  min-width: -webkit-fit-content !important;
  min-width: -moz-fit-content !important;
  min-width: fit-content !important;
  padding: 0.12rem !important;
  white-space: nowrap !important;
}

#onetrust-banner-sdk #onetrust-close-btn-container {
  height: 44px;
  margin: auto !important;
  position: absolute;
  right: 0.1rem !important;
  -webkit-transform: none !important;
          transform: none !important;
  width: 44px;
}

@media (min-width: 901px) {
  #onetrust-banner-sdk #onetrust-close-btn-container {
    bottom: 0;
    top: 0 !important;
  }
}
@media (max-width: 900px) {
  #onetrust-banner-sdk #onetrust-close-btn-container {
    top: 0.1rem !important;
  }
}
#onetrust-banner-sdk #onetrust-close-btn-container button {
  height: 100% !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
}

/* メディアクエリ */
@media screen and (min-width: 1681px) {
  html {
    font-size: 625%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1680px) {
  html {
    font-size: 500%;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 13.3333333333vw;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ==================================================================
レイアウト
================================================================== */
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 10rem;
  height: 100%;
}
@media (max-width: 750px) {
  .inner {
    width: 100%;
  }
}

.wrap {
  background-attachment: fixed;
  overflow: hidden;
}
.wrap::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-size: 100% auto, auto auto;
  background-repeat: repeat-y;
  background-color: rgba(255, 255, 255, 0);
  background-image: url("../img/bg_kira.png"), repeating-linear-gradient(90deg, transparent, transparent 0.04rem, rgba(255, 255, 255, 0.2) 0.04rem, rgba(255, 255, 255, 0.2) 0.08rem);
}
@media (max-width: 750px) {
  .wrap::before {
    background-image: url("../img/bg_kira_sp.png"), repeating-linear-gradient(90deg, transparent, transparent 0.04rem, rgba(255, 255, 255, 0.2) 0.04rem, rgba(255, 255, 255, 0.2) 0.08rem);
  }
}
.wrap::after {
  opacity: 0.3;
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100vh;
  background: rgb(136, 185, 255);
  background: linear-gradient(45deg, rgb(136, 185, 255) 0%, rgb(212, 175, 247) 8%, rgb(252, 178, 230) 16%, rgb(254, 191, 209) 24%, rgb(255, 208, 189) 32%, rgb(255, 227, 167) 40%, rgb(136, 185, 255) 48%, rgb(212, 175, 247) 56%, rgb(252, 178, 230) 64%, rgb(254, 191, 209) 72%, rgb(255, 208, 189) 80%, rgb(255, 227, 167) 90%, rgb(136, 185, 255) 100%);
  background-size: 200% 200%;
  animation: grade 18s linear infinite alternate-reverse;
}

@-webkit-keyframes grade {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 75% 75%;
  }
}

@keyframes grade {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 75% 75%;
  }
}
/* BNE共通フッター 上書き */
.pr-footer__item {
  font-size: 0.144rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif !important;
}

.pr-footer__copyright {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 0.1rem;
  line-height: 1;
  font-weight: 500;
}