@charset "UTF-8";

@font-face {
  font-family: 'Sawarabi Gothic';
  src: url('/font/SawarabiGothic-Regular.ttf') format('truetype');
}

/* reset & defauls */
*{
  box-sizing: border-box;
  vertical-align: bottom;
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1rem;
}
img{
  width: 100%;
  vertical-align: bottom;
}
a{
  text-decoration: none;
}
body, html{
  font-size: 62.5%;
  font-size: calc(20px + 4 * (100vw - 1000px) / 340);
  font-family: 'Sawarabi Gothic', sans-serif;
  min-height: -webkit-fill-available;
}
:focus {
  outline: none;
}


/*********************************************/
/* 共通クラス */
/*********************************************/
.db{ display: block !important; }
.dn{ display: none !important;}

.text-center{ text-align: center; }



/*********************************************/
/* HTML BASE */
/*********************************************/
.wrapper{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.box{
  width: 100%;
  max-width: 1340px;
  padding: 0 .8333rem;
  margin: auto;
}
.inner_content{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}


/*********************************************/
/* HOME css */
/*********************************************/
/* ヘッダー */
header{
  width: 100%;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
nav{
  height: 3.5rem;
}
header a{
  color: #fff;
}
/* メインメニュー */
.mainNavi{
  height: 100%;
  background-color: rgba(60,81,144,1);
  position: relative;
  z-index: 1;
}
.mainNavi .box{
  display: flex;
  justify-content: center;
  height: 100%;
}
.mainMenu{
  display: flex;
  align-items: center;
}
.mainMenu, .subNavi .box > div{
  margin-left: 3.5rem;
}
.mainMenu a{
  display: block;
}
.mainNavi a:hover,
.subNavi a:hover{
  opacity: .7;
}
.mainMenu dt{
  margin-bottom: .25rem;
}
.mainMenu dd{
  font-size: .4rem;
  line-height: .4rem;
  text-align: center;
  color: #aba7a9;
}
.mainMenu .acrd{
  display: none;
}
/* サブメニュー */
.subNavi{
  background-color: rgba(93,120,203,0.6);
  padding: .75rem 0;
  position: absolute;
  top: -100%;
  width: 100%;
  transition: .3s;
  opacity: 0;
}
.subNavi .box{
  display: flex;
  justify-content: center;
  text-align: center;
}
.subNavi li{
  margin-bottom: .5rem;
}
.subNavi li:last-child{
  margin: 0;
}
.subNavi a{
  font-size: .6rem;
}
header.active .subNavi{
  top: 100%;
  opacity: 1;
}
/* シリアルコード */
.menuSerial{
  width: 6.625rem;
  position: absolute;
  top: -1px;
  right: .8333rem;
  z-index: 100;
}
.menuSerial:hover{
  opacity: .8;
}
/* 背景 */
.pictures{
  width: 102%;
  height: 102%;
  position: absolute;
  top: -1%;
  left: -1%;
  transition: all 3s ease 0s;
}
picture{
  display: block;
  width: 100%;
  height: 100%;
}
.pictures img{
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
/* メインコンテンツ */
.main{
  max-height: 840px;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.contents{
  padding-bottom: 840px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.main .box{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
/* サイトロゴ */
.logo {
  width: 22%;
  position: absolute;
  top: 3%;
  left: 5%;
  z-index: 10;
}
/* 背景キャラ */
.bgCharactor{
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.bgCharactor ul li{
  position: absolute;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.bgCharactor ul li:nth-child(1){
  width: 17%;
  top: 18%;
  right: 20%;
  animation-delay: 0s;
}
.bgCharactor ul li:nth-child(2){
  width: 24%;
  top: 16%;
  left: 25%;
  animation-delay: 0.2s;
}
.bgCharactor ul li:nth-child(3){
  width: 21%;
  bottom: 20%;
  left: 26%;
  animation-delay: 0.4s;
}
.bgCharactor ul li:nth-child(4){
  width: 35%;
  top: 14%;
  left: 38%;
  animation-delay: 0.6s;
}
.bgCharactor ul li:nth-child(5) {
  width: 31%;
  top: 40%;
  right: 11%;
  animation-delay: 0.8s;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
/* ログインメニュー */
.startControl{
  width: 18.083rem;
  position: absolute;
  bottom: 2.083rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
  text-align: center;
}
/* ログインボタン */
.startControl-game{
  width: 45%;
  margin: 0 auto 1rem;
  position: relative;
}
.startControl-game-def{
  position: relative;
  z-index: 2;
  transition: .2s;
  animation: heartbeat 1s infinite;
}
.startControl-game:hover .startControl-game-def{
  opacity: 0;
}
.startControl-game-hover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@keyframes heartbeat {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.05); }
  50%  { transform: scale(1); }
  75%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@keyframes rotate-anim {
  100% {
    background-position: -3000% 0;
  }
}
/* SNSログイン */
.startControl-menus{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .3rem .5rem;
  background-color: rgba(255, 255, 255, .8);
  line-height: 1rem;
  border-radius: 2px;
  box-shadow: 0px 0.15rem 0px 0px rgb(0 0 0 / 20%);
}
.startControl-menus-login{
  margin-right: .3rem;
  width: 40%;
}
.startControl-menus-login .btn{
  width: 100%;
}
.startControl-menus-login .btn_inner a{
  font-size: .6rem;
  padding: .15rem .5rem;
  width: 100%;
}
.tartControl-menus-other{
    width: 60%;
}
.tartControl-menus-other ul{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.tartControl-menus-other li{
  margin: 0 .2rem;
}
.tartControl-menus-other li:last-child{
  margin: 0;
}
.tartControl-menus-other li a{
  display: table-cell;
  vertical-align: middle;
}
/* ログイン後 */
.startControl-after{
  width: 100%;
  padding: .3rem .6rem;
  background-color: rgba(255, 255, 255, .8);
  line-height: 1rem;
  border-radius: 2px;
  box-shadow: 0px 0.15rem 0px 0px rgb(0 0 0 / 20%);
  font-size: .6rem;
}
.startControl-after-userName{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.startControl-after-userName span{
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #e15f1f;
  margin-right: .25rem;
}
.startControl-after-userName:after{
  content: "様";
  display: inline-block;
  width: 1rem;
}
.startControl-after-userMenu{
  display: flex;
  align-items: center;
  margin-top: .1rem;
}
.systemMessage{
  line-height: .625rem;
  font-size: .575rem;
  text-align: left;
}
.startControl-after-userMenu > div{
  /*width: 50%;*/
  width: 100%;
}
.systemMenu{
  display: flex;
  justify-content: center;
}
.systemMenu .btn_inner a{
  font-size: .575rem;
  padding: 0.1rem .45rem;
}
.systemMenu > div:nth-child(1){
  margin-right: .25rem;
}

/* イベント */
.secEvent{
  width: 13.666rem;
  padding-bottom: 7rem;
  position: absolute;
  bottom: 1.8rem;
  /*right: 2rem;*/
  left: 2rem;
  background-image: url("../images/bg_banner.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 11;
  border-radius: 0 0 3px 3px;
  box-shadow: 0px 0.05rem 0px 0px rgba(59, 29, 0, 1);
}
.slider{
  width: 90.25%;
  margin: 4.875% auto 0;
}
.swiper-pagination-original{
  width: 100%;
  position: absolute;
  bottom: 4%;
  left: 0;
  text-align: center;
  margin: auto;
  z-index: 10;
  line-height: 0;
}
.swiper-pagination-original a{
  display: inline-block;
  width: 2.439%;
  margin: 0 5px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
  background-image: url("../images/arrow_left.png") !important;
  background-image: none !important;
  left: -3% !important;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
  background-image: url("../images/arrow_right.png") !important;
  background-image: none !important;
  right: -3% !important;
}
.swiper-button-prev, .swiper-button-next{
  width: 4.878% !important;
  height: auto !important;
  line-height: 0;
  margin: auto !important;
  top: 43% !important;
}
/* コンテンツ共通 */
.homeContentTitle{
  font-size: .55rem;
  border: solid 1px #1e3067;
  border-bottom: solid 3px #1e3067;
  background-color: #5d78cb;
  color: #fff;
  text-shadow: 0px 2px 0px rgba(0, 0, 0 , 1);
  border-radius: 5px 5px 0 0;
  padding: .11rem 0 0;
  position: relative;
}
.homeContentTitle h2{
  padding: .1rem .5rem .25rem;
  background-color: #3c508e;
  border-radius: 3px 3px 0 0;
}
/* お知らせ */
.secNews{
  width: 13.583rem;
  position: absolute;
  bottom: 1.8rem;
  /*left: 2rem;*/
  right: 2rem;
  z-index: 11;
}
.secNews-view{
  width: 1rem;
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
}
.secNews-view a:hover{
  opacity: .8;
}
.secNews-list{
  background-color: rgba(255, 255, 255, .8);
  border-radius: 0 0 5px 5px;
  box-shadow: 0px .15rem 0px 0px rgba(0, 0, 0, .2);
  padding: .5rem 0;
}
.secNews-list a:hover li:nth-child(2),
.secNews-list a:hover li:nth-child(3){
  color: #da5e22 !important;
}
.secNews-list > div{
  padding: .25rem .5rem;
}
.secNews-list ul{
  display: flex;
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
  align-self: center;
}
.secNews-list li{
  font-size: .5rem;
  color: #282828;
  line-height: .75rem;
}
.secNews-list li:nth-child(1){
  width: 29%;
  font-size: .4rem;
  text-align: center;
}
.secNews-list li:nth-child(2){
  width: 56%;
  padding: 0 .4rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/* ガイド */
.contentsMiddle{
  display: none;
}
/* ツイッター */
.secTwitter{
  width: 13.666rem;
  position: absolute;
  bottom: .8333rem;
  right: .8333rem;
  z-index: 11;
}
.secTwitter-Content{
  width: 100%;
  padding-bottom: 11.083rem;
  position: relative;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 0.15rem 0px 0px rgba(0, 0, 0, .2);
  overflow: hidden;
}
.secTwitter-Content iframe{
  min-width: auto !important;
  min-height: auto !important;
  width: 100% !important;
}
/* PV */
.secPV{
  width: 13.583rem;
  position: absolute;
  bottom: .8333rem;
  left: .8333rem;
  z-index: 11;
  box-shadow: 0px 0.15rem 0px 0px rgb(0 0 0 / 20%);
}
.secPV-Thum{
  border: solid 1px #fff;
  position: relative;
}
.secPV-Thum:hover:before{
  display: none;
}
.secPV-Thum:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.secPV-Thum:after{
  content: "";
  display: block;
  width: 20.37%;
  padding-bottom: 20.37%;
  background-image: url("../images/btn_play.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  pointer-events: none;
}
/* フッター */
footer{
  font-size: 0.5416rem;
  padding: 1.35rem 0 2rem;
  background-color: #fff;
  position: relative;
  z-index: 20;
}
footer .pageTop{
  display: none;
}
footer > div{
  margin: auto;
  text-align: center;
}
footer ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer ul *{
  font-size: .5rem;
  line-height: .5rem;
}
footer li{
  padding: 0 .5rem;
  border-right: 1px solid #666;
}
footer a{
  color: #291b17;
}
footer a:hover{
  text-decoration: underline;
}
footer li:last-child{
  border: none;
}
footer .copy{
  line-height: .8rem;
  margin-top: 1rem;
}
/* カテゴリーの色 */
.category-mente {
  background-color: #8166cd !important;
  color: #fff !important;
}
.category-update {
  background-color: #324ac1 !important;
  color: #fff !important;
}
.category-event {
  background-color: #529352 !important;
  color: #fff !important;
}
.category-new {
  background-color: #f26d1c !important;
  color: #fff !important;
}
.category-operation {
  background-color: #f6497a !important;
  color: #fff !important;
}


/* ******************** */
/* btn */
/* ******************** */
.btn{
  display: inline-block;
  padding: 1px 1px 3px;
  padding: 1px 1px .14rem;
  border-radius: 3px;
  background: #1e3067;
  position: relative;
}
.btn:before{
  content: "";
  display: block;
  background: rgb(58,77,137);
  background: linear-gradient(0deg, rgba(58,77,137,1) 0%, rgba(82,84,153,1) 50%, rgba(93,120,203,1) 100%);
  width: calc(100% - 2px);
  height: calc(100% - 4px);
  position: absolute;
}
.btn_inner{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  background: rgb(58,77,137);
  background: linear-gradient(0deg, rgba(58,77,137,1) 0%, rgba(60,81,144,1) 50%, rgba(62,84,153,1) 100%);
  position: relative;
}
.btn_inner a{
  color: #fff;
  padding: .4rem 1rem;
  font-size: .755rem;
  line-height: .755rem;
}
/* color バリエーション */
.clrOrange{ background: #892d00; }
.clrOrange .btn_inner{
  background: rgb(218,94,34);
  background: linear-gradient(0deg, rgba(218,94,34,1) 0%, rgba(222,94,33,1) 50%, rgba(226,95,31,1) 100%);
}
.clrOrange:before{
  content: "";
  display: block;
  background: rgb(218,94,34);
  background: linear-gradient(0deg, rgba(218,94,34,1) 0%, rgba(255,136,80,1) 50%, rgba(255,136,80,1) 100%);
  width: calc(100% - 2px);
  height: calc(100% - 4px);
  position: absolute;
}

.clrBrd-Black{ background: #171717; }
.clrBrd-Black .btn_inner{
  background: rgb(42,42,42);
  background: linear-gradient(0deg, rgba(42,42,42,1) 0%, rgba(57,57,57,1) 50%, rgba(73,73,73,1) 100%);
}
.clrBrd-Black:before{
  content: "";
  display: block;
  background: rgb(100,100,100);
  background: linear-gradient(0deg, rgba(42,42,42,1) 0%, rgba(57,57,57,1) 50%, rgba(100,100,100,1) 100%);
  width: calc(100% - 2px);
  height: calc(100% - 4px);
  position: absolute;
}

.simple{ background: #6e6e6e; }
.simple .btn_inner{
  background: rgb(216,216,216);
  background: linear-gradient(0deg, rgb(193 193 193) 0%, rgba(203,203,203,1) 50%, rgba(216,216,216,1) 100%);
}
.simple:before{
  content: "";
  display: block;
  background: rgb(189,189,189);
  background: linear-gradient(0deg, rgba(189,189,189,1) 0%, rgba(239,239,239,1) 50%, rgba(239,239,239,1) 100%);
  width: calc(100% - 2px);
  height: calc(100% - 4px);
  position: absolute;
}
.simple .btn_inner a{
  color: #282828;
}
/* ホバー */
.btn:hover{
  background: #892d00;
}
.btn:hover .btn_inner{
  background: #db5e22;
}
.btn:hover:before{
  background: rgb(218,94,34);
  background: linear-gradient(0deg, rgba(218,94,34,1) 0%, rgba(255,136,80,1) 50%, rgba(255,136,80,1) 100%);
}

.btn.clrOrange:hover{
  background: #1e3067
}
.btn.clrOrange:hover .btn_inner{
  background: rgb(58,77,137);
  background: linear-gradient(0deg, rgba(58,77,137,1) 0%, rgba(60,81,144,1) 50%, rgba(62,84,153,1) 100%);
}
.btn.clrOrange:hover:before{
  background: rgb(58,77,137);
  background: linear-gradient(0deg, rgba(58,77,137,1) 0%, rgba(82,84,153,1) 50%, rgba(93,120,203,1) 100%);
}

.btn.clrBrd-Black:hover{
  background: #282828;
}
.btn.clrBrd-Black:hover:before{
  background: rgb(100,100,100);
  background: linear-gradient(0deg, rgba(60,61,64,1) 0%, rgba(80,81,85,1) 50%, rgba(100,100,100,1) 100%);
}
.btn.clrBrd-Black:hover .btn_inner{
  background: rgb(60,61,64);
  background: linear-gradient(0deg, rgba(60,61,64,1) 0%, rgba(80,81,85,1) 50%, rgba(105,106,111,1) 100%);
}

.btn.simple:hover{
  background: #6e6e6e;
}
.btn.simple:hover:before{
  background: rgb(189,189,189);
  background: linear-gradient(0deg, rgb(171 171 171) 0%, rgb(185 185 185) 50%, rgb(239 239 239) 100%);
}
.btn.simple:hover .btn_inner{
  background: rgb(223,223,223);
  background: linear-gradient(0deg, rgb(171 171 171) 0%, rgb(185 185 185) 50%, rgb(207 207 207) 100%);
}


@media screen and (max-width:640px) {
  .btn_inner a{
    line-height: .755rem;
    color: #fff;
    padding: .55rem 1rem !important;
    font-size: .9rem;
  }
}


/*********************************************/
/* モーダル */
/*********************************************/
.modal{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10000001;
  overflow: auto;
  text-align: center;
  font-size: 0;
}
.modal:after{
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.overlay{
  position: fixed;
  width: 100%;
  height: 200%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .8;
}
.modal .modal_content{
  display: inline-block;
  padding: 0;
  margin: 150px auto 50px;
  position: relative;
  z-index: 1000;
  text-align: initial;
  vertical-align: top;
  font-size: 1rem;
}
.modal.pv .modal_content{
  vertical-align: middle;
}
.modal.pv .modal_content{
  margin: 0 auto;
  border: solid 2px #fff;
}
#modal-list.modal .modal_content{
  margin: 50px auto 50px;
}
.modal .modal_content .modal_content_inner{
  position: relative;
}
.otherModal .modal_content{
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 730px;
  padding: .1rem 0 0;
  border-radius: .5rem;
}
.otherModal .modal_content.asa{ background-color: #d6f1ff; }
.otherModal .modal_content.yuu{ background-color: #fffdd6; }
.otherModal .modal_content.yoru{ background-color: #4e83ca; }

.otherModal .modal_content_inner{
  height: 100%;
}
.otherModal iframe{
  width: 100%;
  height: 100%;
}
.otherModal .close{
  width: 2.583rem;
  width: 62px;
  position: absolute;
  top: -27px;
  right: -20px;
}
.pv .close{
  width: 2.583rem;
  width: 62px;
  position: absolute;
  top: -27px;
  right: -20px;
}
.modal .close:hover{
  opacity: .8;
}
/* 追従ボタン */
.gameStartFix{
  position: fixed;
  bottom: -5%;
  z-index: 20;
  width: 94.4%;
  margin: auto;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transition: .5s;
}


/*********************************************/
/* PCサイズ */
/*********************************************/
@media screen and (min-width:1340px) {
  html, body{
    font-size: 24px;
  }
}
@media screen and (max-width:1300px) {
  .main .contents{
    padding-bottom: 65.3%;
  }
}


/*********************************************/
/* タブレットサイズ */
/*********************************************/
@media screen and (max-width:1000px) {
  body, html{
    font-size: calc(20px + 4 * (100vw - 640px) / 360);
  }
  /* ヘッダー */
  header{
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  .mainNavi .box, .subNavi .box{
    justify-content: center;
  }
  .mainNavi .box > div, .subNavi .box > div{
    margin: 0 5%;
  }
  .menuSerial{
    width: 17.777%;
    position: fixed;
    top: calc(3.5rem - 1px);
    right: .8333rem;
    z-index: 100;
  }
  /* コンテンツ */
  .main{
    max-height: none;
    overflow: hidden;
  }
  .contents{
    background-size: 100% auto;
    background-position: 0 3.5rem;
    background-attachment: fixed;
    background-color: #000;
  }
  .main .contents{
    padding: inherit;
  }
  .contents .box{
    position: relative;
    padding: 0;
  }
  /* ロゴ */
  .logo{
    position: fixed;
    width: 35%;
    top: 4rem;
    left: 3%;
    margin-top: 3%;
  }
  /* 各コンテンツのCSS解除 */
  .startControl, .secEvent, .secNews, .secPV, .secTwitter{
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    width: 45%;
    margin: 0 2.5%;
  }
  /* 背景キャラ */
  .bgCharactor{
    padding-bottom: 116.66%;
    position: fixed;
    top: 4rem;
    left: 0;
    height: auto;
  }
  .bgCharactor ul li:nth-child(5),
  .bgCharactor ul li:nth-child(4),
  .bgCharactor ul li:nth-child(3),
  .bgCharactor ul li:nth-child(2),
  .bgCharactor ul li:nth-child(1){
    display: none;
  }
  /* グリッド要素 */
  .contentsTop, .contentsBottom{
    display: flex;
    margin: 5% auto 0;
    max-width: 900px;
    padding: 0 1.492%;
    flex-direction: row-reverse;
  }
  .contentsBottom{
    margin-top: 4%;
  }
  .mainContents{
    padding: 70% 0 0;
  }
  /* 背景シャドウ */
  .mainContents-gradation{
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 25%, rgba(255,255,255,0) 100%);
    position: relative;
    z-index: 20;
    padding-bottom: 5%;
  }
  /* ログインメニュー */
  .startControl{
    top: auto;
    left: auto;
    margin: auto;
    width: 18.083rem;
  }
  /* お知らせ */
  .secNews-list{
    height: calc(100% - 1.55rem - 3px);
  }
  .secNews-list > div{
    padding: 3% 4%;
  }
  /* イベント */
  .secEvent{
    padding-bottom: 22.666%;
    background-position: top;
    background-size: 100% 100%;
  }
  .slider{
    width: 90.25%;
    margin: 4.875% auto 0;
  }
  /* ツイッター */
  .secTwitter-Content{
    padding-bottom: 56.4%;
  }
  /* 背景画像 */
  .pictures{
    position: fixed;
  }
  .pictures img{
    width: 100% !important;
    position: fixed;
    top: 3.5rem;
    height: auto;
    min-height: auto;
    left: 0;
    transition: initial;
    -webkit-transform: initial;
  }
  /* モーダル */
  .otherModal .modal_content{
    width: 94.666%;
  }
}


/*********************************************/
/* タIE + タブレットサイズのハック */
/*********************************************/
@media all and (-ms-high-contrast: none) and (max-width:1000px) {
  .pictures img {
    position: absolute;
    -ms-transform: none;
  }
}


/*********************************************/
/* スマホサイズ */
/*********************************************/
@media screen and (max-width:640px) {
  body, html{
    font-size: calc(14px + 6 * (100vw - 320px) / 320);
  }
  /* ヘッダー */
  .mainNavi .box > div, .subNavi .box > div{
    margin: 0 4%;
  }
  .head{
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
  .mainMenu dt{
    font-size: .9rem;
  }
  .mainMenu dd{
    font-size: .6rem;
  }
  .menuSerial{
    width: 21.333%;
    right: .5rem;
  }
  /* ロゴ */
  .logo{
    width: 43%;
    margin-top: 4%;
  }
  /* 背景キャラ */
  /* グリッド解除 */
  .contentsTop, .contentsMiddle, .contentsBottom {
    display: block;
    margin: 0 auto 0;
    padding: 0 1.492%;
  }
  .secEvent, .secNews, .secPV, .secTwitter, .secGuide{
    margin-top: 2rem !important;
  }
  .startControl, .secNews, .secPV, .secTwitter, .secGuide{
    width: 94.4%;
  }
  .mainContents {
    padding: 97% 0 0;
  }
  /* 共通 */
  .homeContentTitle h2{
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
  /* ゲームスタート */
  .startControl-menus{
    padding: .5rem 1rem;
  }
  .startControl-menus-login .btn_inner a{
    font-size: .8rem;
    padding: .4rem 0rem !important;
  }
  .startControl-after{
    padding: 0.6rem 0.9rem;
  }
  .startControl-after-userMenu{
    justify-content: center;
    margin-top: .1rem;
  }
  .startControl-after-userMenu > div:nth-child(1){
    width: 52%;
  }
  .startControl-after-userMenu > div:nth-child(2){
    width: 48%;
  }
  .systemMessage{
    font-size: .75rem;
    padding-right: .9rem;
    line-height: .9rem;
  }
  .systemMenu .btn_inner a{
    font-size: .8rem;
    padding: .4rem .2rem !important;
    width: 100%;
  }
  .systemMenu > div{
    width: 50%;
  }
  .systemMenu .btn{
    width: 100%;
  }
  .tartControl-menus-other li{
    margin: 0 2.5%;
  }
  .startControl-after{
    font-size: .8rem;
  }
  /* 背景グラデーション */
  .mainContents-gradation {
    background: rgb(2,0,36);
    background: linear-gradient(
    0deg
    , rgba(0,0,0,.6) 90%, rgba(0,0,0,0.6) 95%, rgba(0,0,0,0) 100%);
        position: relative;
        z-index: 20;
        padding-bottom: 13%;
  }
  /* お知らせ */
  .secNews-view{
    width: 1.4rem;
    top: 0.4rem;
    right: 0.4rem;
  }
  .secNews-list{
    padding: .75rem 0;
  }
  .secNews-list li{
    font-size: .9rem;
    line-height: 1.5rem;
  }
  .secNews-list li:nth-child(1){
    font-size: .8rem;
  }
  .secNews-list > div {
    padding: .5rem 1rem;
  }
  /* イベント */
  .secEvent{
    width: 84%;
    margin: auto;
    padding-bottom: 42.666%;
  }
  /* ガイド */
  .secGuide{
    margin: auto;
  }
  /* ページトップ */
  .pageTop{
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .pageTop a{
    width: 12.533%;
    position: absolute;
    top: -2rem;
    right: 3.5%;
  }
  .pageTop a:hover{
    /* opacity: .8; */
  }
  .btn_inner{
    margin-top: 1px;
  }
  /* フッター */
  footer{
    padding: 7% 0 30%;
  }
  footer .pageTop{
    display: block;
  }
  footer .copy{
    margin-top: 1.5rem;
  }
  footer .copy p{
    line-height: 1.25rem;
    font-size: .65rem;
  }
  footer ul{
    line-height: .8rem;
    width: 80%;
    margin: auto;
  }
  footer ul *{
    line-height: .75rem;
  }
  footer li{
    margin-bottom: 5%;
  }
  footer a{
    font-size: .75rem;
  }
  /* 追従メニュー */
  .gameStartFix.dn{
    display: block !important;
    opacity: 1 !important;
    bottom: 0;
    pointer-events: auto;
  }
  .gameStartFix .startControl-game{
    width: 100%;
  }
  /* モーダル */
  .otherModal .close{
    width: 8.732%;
    right: -0.5rem;
    top: -1rem;
  }
  /* モーダル */
  .pv .close{
    width: 8.732%;
    right: -0.5rem;
    top: -1rem;
  }
  .modal .modal_content{
    margin: 5.5rem auto 0;
  }
}


/* ios + safariはfont-sizeの再計算が行われないのでCSSハックで対応 */
_::-webkit-full-page-media, _:future, :root, body {
-webkit-animation: safariFix 1s forwards infinite;
}
@-webkit-keyframes safariFix {
100% {
z-index: 1;
}
}


.icon_box {
  width:150px;
  height:80px;
  position:absolute;
  top:.5rem;
  right:45px;
  text-align:right;
  z-index: 10;
}

.responsive-icon {
  max-width: 30%;
  height: auto;
}

@media screen and (max-width: 1000px) {
  .icon_box {
    top:1rem;
    right:10px;
  }
}
@media screen and (max-width: 640px) {
  .responsive-icon {
    max-width: 24%;
  }
}

@media screen and (max-width: 640px) {
  .footer_qrcode {
    display:none;
  }
}

.qrcode-box {
  position:absolute;
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
  text-align: center;
  background-color: #fff;
  top: 10px;
  margin-left:28px;
}

.qrcode-header {
  height: 20px;
  background-color: #000;
  color: #fff;
  line-height: 20px;
  font-weight: bold;
  font-size: 11px;
}

.qrcode-img {
  display: block;
}

@media screen and (max-width: 900px) {
  .qrcode-box {
    display:none;
  }
}

.game_area {
  background-image: url('//image.game-ocean.jp/aniten/game-bg.jpg');
}

#loadingOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #434343ff;
  font-size: 14px;
  font-weight: bold;
  z-index: 9999;
}

#game_iframe {
    /*box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);*/
}

.copy-btn {
  background-color: #1e3067;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
  width: 100px;
  margin-left: 5px;
}
.copy-btn:hover {
  background-color: #1e3067;
}