@charset "UTF-8";
/* ------------------------------------------------------------------------------------------------------------------
共通項目
------------------------------------------------------------------------------------------------------------------ */
body {
  /* mac特有の無限スクロールを回避 */
  overscroll-behavior-y: none;
  color: #3f5070;
  background: url("/img/nijigame/apps/maikafantasia/bg-pattern.png") center repeat;
  background-size: 144px 144px;
}

.webp body {
  background: url("/img/nijigame/apps/maikafantasia/bg-pattern.webp") center repeat;
  background-size: 144px 144px;
}

@media only screen and (min-width: 769px) {
  body{ background-size: 288px 288px; }
  .webp body{ background-size: 288px 288px; }
}

#maikafantasia {
  font-family: 'Noto Serif JP', serif;
  font-size: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 28%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.6) 72%, rgba(255, 255, 255, 0.3) 100%);
}
#maikafantasia .font-pt {
  font-family: 'PT Serif', serif;
}
#maikafantasia img {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
#maikafantasia a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}


/* ------------------------------------------------------------------------------------------------------------------
ローディング
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .loading-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: url("../../../img/nijigame/apps/maikafantasia/bg-pattern.png") center repeat,#fff;
  background-size: 144px 144px;
}
.webp #maikafantasia .loading-container{
  background: url("../../../img/nijigame/apps/maikafantasia/bg-pattern.webp") center repeat,#fff;
  background-size: 144px 144px;
}
#maikafantasia .loading-container::before{
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 28%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.6) 72%, rgba(255, 255, 255, 0.3) 100%);
  z-index: -1;
}
#maikafantasia .loading-container svg:first-child{
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  fill: url("#gradient1");
  animation: hira 3s ease-in-out infinite,hara 1s ease infinite;
}

#maikafantasia .loading-container svg:last-child{
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  fill: url("#gradient2");
  animation: hira2 3s ease-in infinite,hara 1s ease infinite;
}

#maikafantasia .stop1-1 {
  stop-color: #fba2c1;
}
#maikafantasia .stop1-2 {
  stop-color: #ffe3ed;
}
#maikafantasia .stop2-1 {
  stop-color: #ffe3ed;
}
#maikafantasia .stop2-2 {
  stop-color: #fba2c1;
}

#maikafantasia .loading-container img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-42%,-50%,0);
  max-width: 384px;
  width: 60%;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .loading-container{ background-size: 288px 288px; }
  .webp #maikafantasia .loading-container{ background-size: 288px 288px; }
}

@keyframes hira{
  0%{
    top: 10%;
    right: -10%;
  }
  100%{
    top: 90%;
    right: 110%;
  }
}

@keyframes hira2{
  0%{
    top: 0;
    right: -10%;
  }
  100%{
    top: 100%;
    right: 110%;
  }
}

@keyframes hara{
  0%{
    transform: rotate3d(1,1,1,0deg);
  }
  25%{
    transform: rotate3d(1,1,1,90deg);
  }
  50%{
    transform: rotate3d(1,1,1,180deg);
  }
  75%{
    transform: rotate3d(1,1,1,270deg);
  }
  100%{
    transform: rotate3d(1,1,1,360deg);
  }
}

/* ------------------------------------------------------------------------------------------------------------------
汎用ボタン
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .common-button, .contact-form .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
  background: linear-gradient(to right, #c9a849 0%, #ffffc1 50%, #c9a849 100%);
  border-radius: 25px;
  z-index: 1;
  box-shadow: 3px 3px 10px 0 rgba(26, 22, 20, 0.35);
  transition: box-shadow .3s, transform .3s ease;
}
#maikafantasia .common-button::before, .contact-form .contact-btn::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: url(/img/nijigame/apps/maikafantasia/common-buttton-bg3.png) right 15px center no-repeat, url(/img/nijigame/apps/maikafantasia/common-buttton-bg2.png) 15px center no-repeat, url(/img/nijigame/apps/maikafantasia/common-buttton-bg1.png) center no-repeat, linear-gradient(to bottom, #fff 0%, #ffcbd6 100%);
  background-size: 13px 30px, 13px 30px, 80px 30px, auto;
  border-radius: 25px;
  box-shadow: 0 0 0 2px #fff inset,0 0 0 3px #c49100 inset;
  box-sizing: border-box;
  z-index: -1;
}
.webp #maikafantasia .common-button::before, .contact-form .contact-btn::before {
  background: url(/img/nijigame/apps/maikafantasia/common-buttton-bg3.webp) right 15px center no-repeat, url(/img/nijigame/apps/maikafantasia/common-buttton-bg2.webp) 15px center no-repeat, url(/img/nijigame/apps/maikafantasia/common-buttton-bg1.webp) center no-repeat, linear-gradient(to bottom, #fff 0%, #ffcbd6 100%);
  background-size: 13px 30px, 13px 30px, 80px 30px, auto;
}

.contact-form .contact-btn input{
  font-family: 'Noto Serif JP', serif;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  font-size: 16px;
}

#maikafantasia .common-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
}


@media only screen and (min-width: 769px) {
  #maikafantasia .common-button:hover, .contact-form .contact-btn:hover{
    transform: translate3d(3px,3px,0);
    box-shadow: 0 0 5px 0 rgba(26, 22, 20, 0.35);
  }
}

/* ------------------------------------------------------------------------------------------------------------------
ヘッダー
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia header {
  position: relative;
  z-index: 100;
}
#maikafantasia header h1 {
  position: absolute;
  top: 7px;
  left: 0.65%;
  width: 56.51%;
  filter: drop-shadow(0 0 1px #fff);
}
#maikafantasia header nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  width: 100%;
  height: calc(100vh - 74px);
  background: url("../../../img/nijigame/apps/maikafantasia/bg-pattern.png") center repeat;
  background-size: 144px 144px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s;
}
.webp #maikafantasia header nav {
  background: url("../../../img/nijigame/apps/maikafantasia/bg-pattern.webp") center repeat;
  background-size: 144px 144px;
}
#maikafantasia header nav::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 28%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.6) 72%, rgba(255, 255, 255, 0.3) 100%);
  z-index: -1;
}
#maikafantasia header nav .menu-list {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
}
#maikafantasia header nav .menu-list .menu-item{
  opacity: 0;
  transition: opacity .3s;
}
#maikafantasia header nav .menu-list .menu-item.active{
  color: #fd71a0;
}
#maikafantasia header nav .menu-list .menu-item a {
  display: block;
  padding: 8px 0;
  width: 100%;
  text-align: center;
}
#maikafantasia header nav .menu-list .menu-item .menu-text-en {
  font-size: 22px;
}
#maikafantasia header nav .menu-list .menu-item .menu-text-jp {
  margin-top: 5px;
  font-size: 10px;
}
#maikafantasia header nav .menu-list .menu-item.off {
  position: relative;
  pointer-events: none;
}
#maikafantasia header nav .menu-list .menu-item.off a{
  pointer-events: none;
}
#maikafantasia header nav .menu-list .menu-item.off::after {
  display: block;
  content: 'Coming Soon';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-50%,0);
  font-size: 11px;
  white-space: nowrap;
}
#maikafantasia header nav .menu-list .menu-item.off a p {
  opacity: .2;
}
#maikafantasia header nav .menu-list .menu-item:nth-of-type(3) a {
  position: relative;
  padding-bottom: 15px;
}
#maikafantasia header nav .menu-list .menu-item:nth-of-type(3) a::before {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 50px;
  height: 1px;
  background: #3f5070;
}
#maikafantasia header nav .menu-list::before {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 50px;
  height: 1px;
  background: #3f5070;
}
#maikafantasia header nav .sns-container a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#maikafantasia header nav .sns-container .sns-container-title {
  font-size: 12px;
}
#maikafantasia header nav .sns-container .sns-container-title br {
  display: none;
}
#maikafantasia header nav .sns-container svg {
  margin-left: 15px;
  width: 32px;
  fill: #21223a;
  transition: fill .3s;
}
#maikafantasia header nav.in-open,
#maikafantasia header nav.open,
#maikafantasia header nav.open .menu-list .menu-item{
  opacity: 1;
  pointer-events: auto;
}
#maikafantasia header .menu-button {
  flex-direction: column;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  font-size: 10px;
  color: #21223a;
  z-index: 10;
}
#maikafantasia header .menu-button::before {
  background: linear-gradient(to bottom, #fff 0%, #ffcbd6 100%);
}
#maikafantasia header .menu-button .menu-line-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  width: 20px;
  height: 12px;
  transition: height .3s ease, margin .3s ease;
}
#maikafantasia header .menu-button .menu-line-container .menu-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(255, 92, 127, 0.3);
  border-radius: 2px;
  transition: opacity .3s, transform .3s ease;
}
#maikafantasia header .menu-button .menu-line-container .menu-line:first-child {
  top: 0;
  left: 0;
}
#maikafantasia header .menu-button .menu-line-container .menu-line:nth-of-type(2) {
  top: 50%;
  left: 0;
  transform: translate3d(0,-50%,0);
}
#maikafantasia header .menu-button .menu-line-container .menu-line:last-child {
  bottom: 0;
  left: 0;
}
#maikafantasia header .menu-button .open-text,
#maikafantasia header .menu-button .close-text {
  position: absolute;
  bottom:11px;
  left: 50%;
  transform: translate3d(-50%,0,0);
  transition: opacity .3s;
}
#maikafantasia header .menu-button .close-text {
  opacity: 0;
}
#maikafantasia header .menu-button.in-open .open-text,
#maikafantasia header .menu-button.in-close .open-text,
#maikafantasia header .menu-button.open .open-text {
  opacity: 0;
}
#maikafantasia header .menu-button.open .close-text {
  opacity: 1;
}
#maikafantasia header .menu-button.in-open .menu-line-container,
#maikafantasia header .menu-button.in-close .menu-line-container,
#maikafantasia header .menu-button.open .menu-line-container {
  margin: 0 0 7px;
  height: 2px;
}
#maikafantasia header .menu-button.open .menu-line-container .menu-line:first-child {
  transform: translate3d(0,-50%,0) rotate(30deg);
}
#maikafantasia header .menu-button.open .menu-line-container .menu-line:nth-of-type(2),
#maikafantasia header .menu-button.in-open .menu-line-container .menu-line:nth-of-type(2) {
  opacity: 0;
}
#maikafantasia header .menu-button.open .menu-line-container .menu-line:last-child {
  transform: translate3d(0,-50%,0)  rotate(-30deg);
}
#maikafantasia header .menu-button.in_close .menu-line-container .menu-line:first-child,
#maikafantasia header .menu-button.in_close .menu-line-container .menu-line:last-child {
  transform: translate3d(0,0,0) rotate(0deg);
}

#maikafantasia .lowerpage header h1 {
  width: 30%;
}
@media only screen and (min-width: 769px) {
  #maikafantasia header h1 {
    top: .85%;
    left: 1.04%;
    width: 20.26%;
    transition: opacity .3s;
    filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 3px #fff);
  }
  #maikafantasia header h1:hover {
    opacity: .5;
  }
  #maikafantasia header nav {
    display: flex;
    flex-direction: row;
    position: absolute;
    padding: 0 10px 0 8%;
    top: 20px;
    left: auto;
    right: 0;
    transform: translate3d(0, 0, 0);
    width: auto;
    height: 50px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 26%, white 100%);
    box-sizing: border-box;
    opacity: 1;
    pointer-events: auto;
  }
  .webp #maikafantasia header nav {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 26%, white 100%);
  }
  #maikafantasia header nav::before {
    top: 1px;
    height: calc(100% - 2px);
    background: linear-gradient(to right, rgba(237, 252, 255, 0) 0%, #e8e2fd, 26%, #ffe2f6 100%);
  }
  #maikafantasia header nav .menu-list {
    display: flex;
    align-items: center;
    margin: 0 10px 0 0;
    padding: 0 5px 0 0;
    height: 100%;
  }
  #maikafantasia header nav .menu-list::before {
    top: 50%;
    left: auto;
    right: 0;
    transform: translate3d(0, -50%, 0);
    width: 1px;
    height: 30px;
  }
  #maikafantasia header nav .menu-list .menu-item {
    height: 100%;
    opacity: 1;
    transition: color .3s;
  }
  #maikafantasia header nav .menu-list .menu-item:hover{
    color: #fd71a0;
  }
  #maikafantasia header nav .menu-list .menu-item.off::after{
    text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
  }
  #maikafantasia header nav .menu-list .menu-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    width: auto;
    height: 100%;
  }
  #maikafantasia header nav .menu-list .menu-item:first-child {
    display: none;
  }
  #maikafantasia header nav .menu-list .menu-item:nth-of-type(3) a {
    margin-right: 5px;
    padding: 0 10px 0 5px;
  }
  #maikafantasia header nav .menu-list .menu-item:nth-of-type(3) a::before {
    top: 50%;
    left: auto;
    right: 0;
    transform: translate3d(0, -50%, 0);
    width: 1px;
    height: 30px;
  }
  #maikafantasia header nav .menu-list .menu-item .menu-text-en {
    font-size: 16px;
  }
  #maikafantasia header nav .menu-list .menu-item .menu-text-jp {
    transform: scale(.8);
  }
  #maikafantasia header nav .sns-container .sns-container-title {
    display: none;
  }
  #maikafantasia header nav .sns-container a p {
    transition: color .3s;
  }
  #maikafantasia header nav .sns-container a:hover p {
    color: #fd71a0;
  }
  #maikafantasia header nav .sns-container svg {
    margin: 0;
  }
  #maikafantasia header nav .sns-container a:hover svg {
    fill: #fd71a0;
  }
  #maikafantasia header .menu-button {
    display: none;
  }
  #maikafantasia .lowerpage header h1 {
    width: 12%;
  }
}
@media only screen and (min-width: 1200px) {
  #maikafantasia header nav {
    padding: 0 30px 0 8%;
    height: 70px;
  }
  #maikafantasia header nav .menu-list {
    margin: 0 30px 0 0;
    padding: 0 15px 0 0;
  }
  #maikafantasia header nav .menu-list::before {
    height: 50px;
  }
  #maikafantasia header nav .menu-list .menu-item a {
    padding: 0 15px;
  }
  #maikafantasia header nav .menu-list .menu-item:nth-of-type(3) a {
    margin-right: 15px;
    padding: 0 30px 0 15px;
  }
  #maikafantasia header nav .menu-list .menu-item:nth-of-type(3) a::before {
    height: 50px;
  }
  #maikafantasia header nav .menu-list .menu-item .menu-text-en {
    font-size: 22px;
  }
  #maikafantasia header nav .menu-list .menu-item .menu-text-jp {
    transform: scale(1);
  }
  #maikafantasia header nav .sns-container .sns-container-title {
    text-align: center;
    display: block;
  }
  #maikafantasia header nav .sns-container .sns-container-title br {
    display: block;
  }
  #maikafantasia header nav .sns-container svg {
    margin-left: 15px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
ヒーローエリア
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-heroarea .mainvisual {
  position: relative;
}
#maikafantasia .type-heroarea .mainvisual .pc {
  display: none;
}
#maikafantasia .type-heroarea .mainvisual .catch-copy {
  position: absolute;
  top: 2.73%;
  left: 60.42%;
  width: 21.22%;
}
#maikafantasia .type-heroarea .box-btn-app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#maikafantasia .type-heroarea .box-btn-app .alt-text {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  font-size: 8.26vw;
  font-weight: 700;
  font-style: italic;
  color: #fe5367;
  text-align: center;
  text-shadow: 0 0 6px #fff,0 0 6px #fff,0 0 6px #fff,0 0 6px #fff,0 0 6px #fff,0 0 6px #fff;
}
#maikafantasia .type-heroarea .box-btn-app .alt-text strong{
  font-size: 11.02vw;
}
#maikafantasia .type-heroarea .box-btn-app .title-app {
  position: absolute;
  top: 65.3%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 75.78%;
}
#maikafantasia .type-heroarea .box-btn-app .list-wrapper {
  position: absolute;
  top: 76.1%;
  left: 0;
  width: 100%;
  height: 30.6vw;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 10%, rgba(255,255,255,0.7) 90%, rgba(255,255,255,0) 100%);
}
#maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app{
  position: absolute;
}
#maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app.off {
  pointer-events: none;
}
#maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-appStore {
  top: 8.5%;
  left: 14.32%;
  width: 30.08%;
}
#maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-googlePlay {
  top: 8.5%;
  left: 48.44%;
  width: 37.24%;
}
#maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-nijigame-pre {
  top: 55.3%;
  left: 33.33%;
  width: 33.46%;
}
#maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-yoyaku-ios {
  top: 68.7%;
  left: 13.2%;
  width: 34.9%;
}
#maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-yoyaku-android {
  top: 68.7%;
  left: 52%;
  width: 34.9%;
}
#maikafantasia .type-heroarea .box-btn-reserve-details {
  position: relative;
  margin: 35px auto;
  max-width: 273px;
  width: 90%;
  cursor: pointer;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-heroarea .mainvisual .sp {
    display: none;
  }
  #maikafantasia .type-heroarea .mainvisual .pc {
    display: block;
  }
  #maikafantasia .type-heroarea .mainvisual .pc img{
    position: absolute;
    opacity: 0;
    transition: opacity 1.5s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv1 {
    position: relative;
    width: 100%;
    display: block;
    opacity: 1;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv2 {
    top: 47.02%;
    left: 4.84%;
    width: 8.96%;
    transition-delay: .15s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv3 {
    top: 37.48%;
    left: 76.3%;
    width: 11.93%;
    transition-delay: .3s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv4 {
    top: 27.77%;
    left: 26.15%;
    width: 16.67%;
    transition-delay: .45s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv5 {
    top: 38.33%;
    left: 65.16%;
    width: 12.19%;
    transition-delay: .6s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv6 {
    top: 55.03%;
    left: 2.5%;
    width: 8.13%;
    transition-delay: .75s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv7 {
    top: 31.34%;
    left: 85.63%;
    width: 14.38%;
    transition-delay: .9s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv8 {
    top: 42.76%;
    left: 15.78%;
    width: 11.67%;
    transition-delay: 1.05s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv9 {
    top: 12.44%;
    left: 40.99%;
    width: 32.45%;
    transition-delay: 1.2s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv10 {
    top: 0;
    left: 0;
    width: 100%;
    transition-delay: 1.35s;
  }
  #maikafantasia .type-heroarea .mainvisual .pc .kv-petal{
    top: 9.8%;
    left: 8.44%;
    width: 85.41%;
    filter: drop-shadow(0 0 10px rgba(48,202,247,1)) drop-shadow(0 0 10px rgba(48,202,247,1));
    mix-blend-mode: color-dodge;
    transform: translate3d(20px,-10px,0);
    transition: transform 1s 1.5s ease-out , opacity 1s 1.5s ease-in;
  }
  #maikafantasia .type-heroarea .mainvisual .pc.in-anim img {
    opacity: 1;
  }
  #maikafantasia .type-heroarea .mainvisual .pc.in-anim .kv-petal {
    transform: translate3d(0,0,0);
  }
  #maikafantasia .type-heroarea .mainvisual .catch-copy{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #maikafantasia .type-heroarea .mainvisual .catch-copy .pc{
    position: absolute;
  }
  #maikafantasia .type-heroarea .mainvisual .catch-copy .cc-pc1 {
    top: 17.12%;
    left: 16.2%;
    width: 26.72%;
    opacity: 0;
    filter: blur(10px);
    transition: filter 1s 1.8s, opacity 1s 1.8s;
  }
  #maikafantasia .type-heroarea .mainvisual .catch-copy .cc-pc2 {
    top: 14.74%;
    left: 64.95%;
    width: 22.81%;
    opacity: 0;
    filter: blur(10px);
    transition: filter 1s 2.3s, opacity 1s 2.3s;
  }
  #maikafantasia .type-heroarea .mainvisual .catch-copy .pc.in-anim {
    opacity: 1;
    filter: blur(0px);
  }
  #maikafantasia .type-heroarea .box-btn-app .alt-text {
    font-size: 3.65vw;
  }
  #maikafantasia .type-heroarea .box-btn-app .alt-text strong{
    font-size: 4.9vw;
  }
  #maikafantasia .type-heroarea .box-btn-app .title-app {
    top: 68.1%;
    width: 37.7%;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-wrapper {
    top: 79.1%;
    height: 6.3vw;
    background: linear-gradient(to right, rgba(255,255,255,0) 20%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0) 80%);
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1vw;
    column-gap: 3.8%;
    margin: 1.1vw auto 0;
    width: 41.1%;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app {
    position: relative;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app img {
    position: relative;
    transition: opacity .3s;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app img:hover {
    opacity: .5;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-appStore {
    top: auto;
    left: auto;
    width: 27.6%;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-googlePlay {
    top: auto;
    left: auto;
    width: 34.2%;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-nijigame-pre {
    top: auto;
    left: auto;
    width: 30.6%;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-yoyaku-ios {
    top: auto;
    left: auto;
    width: 32.9%;
  }
  #maikafantasia .type-heroarea .box-btn-app .list-btn-app .btn-app-yoyaku-android {
    top: auto;
    left: auto;
    width: 32.9%;
  }
  #maikafantasia .type-heroarea .box-btn-reserve-details {
    margin: 60px auto;
    max-width: 418px;
  }
  #maikafantasia .type-heroarea .box-btn-reserve-details::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/nijigame/apps/maikafantasia/detail-button-hover.png);
    background-size: cover;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
  }
  .webp #maikafantasia .type-heroarea .box-btn-reserve-details::after {
    background: url(/img/nijigame/apps/maikafantasia/detail-button-hover.webp);
    background-size: cover;
  }
  #maikafantasia .type-heroarea .box-btn-reserve-details:hover::after {
    opacity: 1;
  }

}
/* ------------------------------------------------------------------------------------------------------------------
スライダー 共通
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .swiper-container {
  margin-top: 35px;
}
#maikafantasia .swiper-container .swiper-slide {
  width: 77.08%;
  height: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 5px;
}
#maikafantasia .swiper-container .swiper-slide::before {
  border-radius: 8px;
}
#maikafantasia .swiper-container .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
#maikafantasia .swiper-button-next, #maikafantasia .swiper-button-prev {
  width: 44px;
}
#maikafantasia .swiper-button-next::after, #maikafantasia .swiper-button-prev::after {
  display: none;
}
#maikafantasia .swiper-button-next {
  right: 0;
}
#maikafantasia .swiper-button-next img{
  animation: slide-r 2s ease infinite;
}
#maikafantasia .swiper-button-prev {
  left: 0;
}
#maikafantasia .swiper-button-prev img{
  animation: slide-l 2s ease infinite;
}
#maikafantasia .swiper-pagination {
  position: relative;
}
#maikafantasia .swiper-pagination-bullet {
  width: 22px;
  height: 26px;
  background: url(../../../img/nijigame/apps/maikafantasia/dot-button.png) center;
  background-size: 22px 26px;
  filter: grayscale(100%);
  opacity: 1;
}
.webp #maikafantasia .swiper-pagination-bullet {
  background: url(../../../img/nijigame/apps/maikafantasia/dot-button.webp) center;
  background-size: 22px 26px;
}
#maikafantasia .swiper-pagination-bullet-active {
  filter: grayscale(0);
  pointer-events: none;
}
#maikafantasia .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
#maikafantasia .swiper-container-horizontal > .swiper-pagination-bullets {
  top: 180px;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .swiper-button-next, #maikafantasia .swiper-button-prev {
    width: 73px;
    transition: opacity .3s;
  }
  #maikafantasia .swiper-button-next:hover, #maikafantasia .swiper-button-prev:hover {
    opacity: .5;
  }
  #maikafantasia .swiper-button-next {
    right: 50%;
    transform: translate3d(371px, 0, 0);
  }
  #maikafantasia .swiper-button-prev {
    left: 50%;
    transform: translate3d(-371px, 0, 0);
  }
  #maikafantasia .swiper-pagination-bullet {
    width: 30px;
    height: 37px;
    background-size: 30px 37px;
    transition: opacity .3s;
  }
  #maikafantasia .swiper-pagination-bullet:hover {
    opacity: .5;
  }
}

@keyframes slide-r{
  0%{
    transform: translate3d(-5px,0,0);
  }
  50%{
    transform: translate3d(5px,0,0);
  }
  100%{
    transform: translate3d(-5px,0,0);
  }
}

@keyframes slide-l{
  0%{
    transform: translate3d(5px,0,0);
  }
  50%{
    transform: translate3d(-5px,0,0);
  }
  100%{
    transform: translate3d(5px,0,0);
  }
}
/* ------------------------------------------------------------------------------------------------------------------
ゲーム画面
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-screenshot .swiper-container {
  pointer-events: none;
}
#maikafantasia .type-screenshot .swiper-wrapper {
  transition-timing-function: linear;
}
#maikafantasia .type-screenshot .swiper-slide {
  max-width: 346px;
  width: 100%;
  padding: 0;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-screenshot .swiper-slide {
    max-width: 555px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------
バナー
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-banner {
  padding-bottom: 30px;
  box-sizing: border-box;
}
#maikafantasia .type-banner .banner-container{
  padding: 20px 0;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-banner {
    padding-bottom: 70px;
  }
  #maikafantasia .type-banner .banner-container {
    margin-top: 70px;
  }
  #maikafantasia .type-banner .banner-container .swiper-slide {
    max-width: 555px;
    opacity: 0;
    transition: opacity .3s,box-shadow .3s, transform .3s ease;
    pointer-events: none;
  }
  #maikafantasia .type-banner .banner-container .swiper-slide.swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
  }
}
/* ------------------------------------------------------------------------------------------------------------------
セクション共通
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia section {
  padding: 50px 0;
  box-sizing: border-box;
}
#maikafantasia section.bg-white {
  background: #fff;
}
#maikafantasia section h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 90%;
  min-height: 123px;
  text-align: center;
  background: url(/img/nijigame/apps/maikafantasia/section-title-bg.png) center no-repeat;
  background-size: 148px 86px;
}
.webp #maikafantasia section h2 {
  background: url(/img/nijigame/apps/maikafantasia/section-title-bg.webp) center no-repeat;
  background-size: 148px 86px;
}
#maikafantasia section h2 .title-en {
  margin: 20px 0 7px;
  padding-bottom: 5px;
  width: 100%;
  font-size: 40px;
  border-bottom: solid 1px #dbe3ee;
  box-sizing: border-box;
}
#maikafantasia section h2 .title-jp {
  font-size: 12px;
}
#maikafantasia section .section-content {
  margin-top: 30px;
}

@media only screen and (min-width: 769px) {
  #maikafantasia section.page-top {
    padding: 140px 0 50px;
  }
  #maikafantasia section h2 {
    max-width: 353px;
    background-size: 211px 123px;
  }
  .webp #maikafantasia section h2 { background-size: 211px 123px; }
  #maikafantasia section h2 .title-en {
    margin: 20px 0 10px;
    font-size: 60px;
    border-bottom: solid 1px #3f5070;
  }
  #maikafantasia section h2 .title-jp {
    font-size: 15px
  }
}
/* ------------------------------------------------------------------------------------------------------------------
ニュース
------------------------------------------------------------------------------------------------------------------ */

@media only screen and (min-width: 769px) {
  #maikafantasia section.type-news.lower {
    padding: 150px 0 0;
  }
}

#maikafantasia .type-news h2 {
  margin-bottom: 40px;
}

#maikafantasia .type-news .more-button,#maikafantasia .news-detail .common-button {
  margin: 20px auto 30px;
  width: 186px;
}

#maikafantasia .news-detail .common-button {
  margin: 0px auto 40px;
}

#maikafantasia .type-news .row{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5%;
}

#maikafantasia .type-news .box{
  width: 30%;
  margin: 0 1.5% 3%;
  display: inline-block;
  box-shadow: 3px 3px 10px 0 rgba(26,22,20,.35);
  border-radius: 10px;
  box-sizing: border-box;
  transition: box-shadow .3s,transform .3s ease;
  overflow:hidden;
  font-size: 14px;
  background: #fff;
}

#maikafantasia .type-news .box:hover{
  opacity: 0.8;
}

#maikafantasia .type-news .box .date {
  padding: 15px 0 0 15px;
  font-size: 12px;
  color: #fc72a0;
}

#maikafantasia .type-news .box .thumb {
  background-image: url(/img/nijigame/apps/maikafantasia/logo.png);
  background-size: 80% auto;
  background-position:center center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 53%;
}

.webp #maikafantasia .type-news .box .thumb {
  background: url(/img/nijigame/apps/maikafantasia/logo.webp) center no-repeat;
  background-size: 80% auto;
}

#maikafantasia .type-news .box .thumb img{
  position: absolute;
  top: 0;
  left: 0;
}

#maikafantasia .type-news .box img {
  backface-visibility: inherit;
    -webkit-backface-visibility: inherit;
}

#maikafantasia .type-news .box .text {
  padding: 8px 15px 15px;
}

#maikafantasia .type-news .box .text p{
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 18px;
    height: 56px;
    overflow:hidden;
}

#maikafantasia .type-news .pager {
  text-align: center;
  padding: 40px 10px 50px;
  flex-wrap: wrap;
  margin: 0 auto;
}

#maikafantasia .type-news .pager div{
  font-size: 14px;
  display: inline-block;
}

#maikafantasia .type-news .pager a {
  padding: 10px;
}


#maikafantasia .type-news .pager a.inactive {
  pointer-events: none;
  opacity: 0.5;

}

#maikafantasia .type-news .pager .num{
  margin: 0 5px;
  display: inline-block;
}

#maikafantasia .type-news .pager .num a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
  background: linear-gradient(to right, #c9a849 0%, #ffffc1 50%, #c9a849 100%);
  border-radius: 25px;
  z-index: 1;
  box-shadow: 3px 3px 10px 0 rgb(26 22 20 / 35%);
  transition: box-shadow .3s, transform .3s ease;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0 5px;
}


#maikafantasia .type-news .pager .num a:hover {
  transform: translate3d(3px,3px,0);
  box-shadow: 0 0 5px 0 rgb(26 22 20 / 35%);
}


#maikafantasia .type-news .pager .num a::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background:linear-gradient(to bottom, #fff 0%, #ffcbd6 100%);
  background-size: auto;
  border-radius: 25px;
  box-shadow: 0 0 0 2px #fff inset, 0 0 0 3px #c49100 inset;
  box-sizing: border-box;
  z-index: -1;
}

#maikafantasia .type-news .pager .num a.current {
  pointer-events: none;
}

#maikafantasia .type-news .pager .num a.current::before {
  background: linear-gradient(to bottom, #ffe9e9 0%, #ff8ca4 100%);
}

#maikafantasia .type-news .pager .prev,#maikafantasia .type-news .pager .next {
  margin: 0 10px;
}

#maikafantasia .type-news .pager .prev a:hover {
  opacity: 0.7;
}

#maikafantasia .type-news .pager .next a:hover {
  opacity: 0.7;
}



/* ニュース詳細*/

#maikafantasia .news-detail{
  padding: 150px 20px 50px;
}


#maikafantasia .news-detail .inner {
  background: #fff;
  max-width: 1000px;
  border-radius: 10px;
  margin: 40px auto;
  font-size: 14px;
  padding: 20px;
  border: 2px solid #ffd9e1;
}

#maikafantasia .news-detail .inner .date {
  padding: 0 0 5px;
  font-size: 12px;
  color: #fc72a0;
  display: block;
}

#maikafantasia .news-detail .inner h3 {
  font-size: 18px;
  border-bottom: 2px solid #ffd9e1;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

#maikafantasia .news-detail .inner .news-text {
  line-height: 20px;
}



/* ニュースsp*/
@media only screen and (max-width: 768px) {


  #maikafantasia .type-news {
    padding: 50px 0 0;
  }

  #maikafantasia .type-news h2 {
    margin-bottom: 30px;
  }

  #maikafantasia .type-news .box{
    width: 46%;
    margin: 0 2% 4%;
  }

  #maikafantasia .type-news .box .date {
    padding: 8px 0 0 8px;
  }

  #maikafantasia .type-news .box .text {
    padding: 4px 8px 8px;
  }

  #maikafantasia .type-news .pager{
   padding-top: 20px;
   position: relative;
  }


  #maikafantasia .type-news .pager .prev{
    text-align: right;
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -90px;
  }

  #maikafantasia .type-news .pager .next{
    text-align: left;
    position: absolute;
    bottom: 30px;
    right: 50%;
    margin-right: -90px;
  }

  #maikafantasia .type-news .pager .num{
    margin: 20px auto;
    order: 1;
  }

  #maikafantasia .news-detail {
    padding: 50px 20px 0;
  }

  #maikafantasia .news-detail .inner {
    margin: 10px auto 40px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
イントロダクション
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-intro {
  background: url(/img/nijigame/apps/maikafantasia/intro-bg.jpg) left bottom;
  background-size: cover;
}
.webp #maikafantasia .type-intro {
  background: url(/img/nijigame/apps/maikafantasia/intro-bg.webp) left bottom;
  background-size: cover;
}
#maikafantasia .type-intro .section-content {
  text-align: center;
  font-size: 18px;
  line-height: 2em;
  text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
}
#maikafantasia .type-intro .section-content p {
  margin-bottom: 10px;
}
#maikafantasia .type-intro .section-content p:nth-of-type(2) {
  margin-left: .5em;
}
#maikafantasia .type-intro .section-content p.has-ruby {
  position: relative;
}
#maikafantasia .type-intro .section-content p.has-ruby::before {
  display: block;
  content: 'マイカ';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  font-size: 10px;
  letter-spacing: .34em;
  color: #fc72a0;
}
#maikafantasia .type-intro .section-content strong {
  font-size: 25px;
  font-weight: 700;
}
#maikafantasia .type-intro .section-content .color-pink {
  color: #fc72a0;
}
#maikafantasia .type-intro .section-content .style-italic {
  font-style: italic;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-intro {
    background: url(/img/nijigame/apps/maikafantasia/intro-bg-pc.jpg) center;
    background-size: cover;
  }
  .webp #maikafantasia .type-intro {
    background: url(/img/nijigame/apps/maikafantasia/intro-bg-pc.webp) center;
    background-size: cover;
  }
  #maikafantasia .type-intro .section-content {
    font-size: 36px;
    text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
  }
  #maikafantasia .type-intro .section-content strong {
    font-size: 49px;
  }
  #maikafantasia .type-intro .section-content .sp {
    display: none;
  }
  #maikafantasia .type-intro .section-content p.has-ruby::before {
    top: -33px;
    font-size: 20px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------
ムービー
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-movie .section-content .movie-button {
  margin: 0 auto;
  width: 77.08%;
  height: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 5px;
  cursor: pointer;
}
#maikafantasia .type-movie .section-content .movie-button.off {
  pointer-events: none;
}
#maikafantasia .type-movie .section-content .movie-button::before {
  border-radius: 8px;
}
#maikafantasia .type-movie .section-content .movie-button a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
#maikafantasia .type-movie .movie-container {
  margin-top: 15px;
  padding: 20px 0;
}
#maikafantasia .overlay_close_pv{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#maikafantasia #overlay_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-50%,0) !important;
  padding: 0;
  margin: 0 !important;
  min-height: auto;
  background: none;
  box-shadow: none;
}
#maikafantasia .overlay_content_inner._about_reserve_details{
  padding-bottom: 20px;
  background: #fff;
  border-radius: 10px;
}
#maikafantasia ._pv_modal .pv_wrapper{
  position: relative;
}
#maikafantasia ._pv_modal .pv_wrapper::before{
  display: block;
  content: '';
  padding-top: 56.25%;
}
#maikafantasia ._pv_modal .pv_wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#maikafantasia .close-button {
  flex-direction: column;
  position: fixed;
  top: -70px;
  right: 0;
  width: 50px;
  font-size: 10px;
  color: #21223a;
  z-index: 10;
  cursor: pointer;
}

#maikafantasia .close-button::before {
  background: linear-gradient(to bottom, #fff 0%, #ffcbd6 100%);
}
#maikafantasia .close-button .menu-line-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0 7px;
  width: 20px;
  height: 2px;
}
#maikafantasia .close-button .menu-line-container .menu-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 92, 127, 0.3);
  border-radius: 2px;
}
#maikafantasia .close-button .menu-line-container .menu-line:first-child {
  transform: rotate(30deg);
}
#maikafantasia .close-button .menu-line-container .menu-line:last-child {
  transform: rotate(-30deg);
}
#maikafantasia ._correlation_modal .pv_wrapper::before{
  padding-top: 0;
}
#maikafantasia ._correlation_modal .close-button{
  top: -70px;
  right: 10px;
}

/* slinde */

#maikafantasia .swiper-slide{
  max-width: 555px;
}

#maikafantasia .type-movie .more-button{
  margin: 10px auto 0;
  width: 186px;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-movie .section-content .movie-button {
    max-width: 555px;
  }

  #maikafantasia .type-movie .movie-container .swiper-slide {
    max-width: 555px;
    opacity: 0;
    transition: opacity .3s,box-shadow .3s, transform .3s ease;
    pointer-events: none;
  }
  #maikafantasia .type-movie .movie-container .swiper-slide.swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
  }
  #maikafantasia ._correlation_modal .close-button{
    top: 10px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------
ツイッター
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-twitter{
  margin-bottom: 75px;
}

#maikafantasia .type-twitter .tw-wedget {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  width: 90%;
}
#maikafantasia .type-twitter .more-button {
  margin: 30px auto 0;
  width: 186px;
}
@media only screen and (min-width: 769px) {
  #maikafantasia .type-twitter{
    margin-bottom: 150px;
  }
}


/* ------------------------------------------------------------------------------------------------------------------
ゲーム情報
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-gameinfo {
  padding: 30px 0;
  background: #fff;
  box-sizing: border-box;
}
#maikafantasia .type-gameinfo .footer-logo {
  margin: 0 auto;
  max-width: 192px;
}
#maikafantasia .type-gameinfo .gameinfo-list {
  margin: 20px auto 0;
  width: 90%;
}
#maikafantasia .type-gameinfo .gameinfo-item {
  display: flex;
  justify-content: center;
  font-size: 13px;
  line-height: 1.84em;
}
#maikafantasia .type-gameinfo .gameinfo-item .gameinfo-type {
  width: 35%;
  text-align: right;
}
#maikafantasia .type-gameinfo .gameinfo-item .gameinfo-contents {
  width: 65%;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-gameinfo {
    display: flex;
    justify-content: center;
  }
  #maikafantasia .type-gameinfo.gameinfo-charapage{
    margin-top: 0;
  }
  #maikafantasia .type-gameinfo .footer-logo {
    max-width: 262px;
  }
  #maikafantasia .type-gameinfo .gameinfo-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    max-width: 698px;
  }
  #maikafantasia .type-gameinfo .gameinfo-list .gameinfo-type {
    width: 140px;
  }
  #maikafantasia .type-gameinfo .gameinfo-list .gameinfo-contents {
    width: 100%;
  }
}
/* ------------------------------------------------------------------------------------------------------------------
フッターバッジ
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-footerbadge {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 0.53fr 0.47fr;
  grid-template-areas: "icon badge" "note note";
  padding: 30px 0;
  box-sizing: border-box;
}
#maikafantasia .type-footerbadge .app-icon {
  grid-area: icon;
  margin-left: 9.76%;
  width: 83.41%;
  border: solid 2px #dee2ed;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}
#maikafantasia .type-footerbadge .app-icon .pc {
  display: none;
}
#maikafantasia .type-footerbadge .alt-text-container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#maikafantasia .type-footerbadge .alt-text {
  width: 100%;
  font-size: 7vw;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5em;
  color: #fe5367;
  text-shadow: 0 0 6px #fff,0 0 6px #fff,0 0 6px #fff,0 0 6px #fff,0 0 6px #fff,0 0 6px #fff;
}
#maikafantasia .type-footerbadge .alt-text strong{
  font-size: 10vw;
}
#maikafantasia .type-footerbadge .badge-container {
  grid-area: badge;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 10px;
  box-sizing: border-box;
}
#maikafantasia .type-footerbadge .badge-container .btn-app.off {
  pointer-events: none;
}
#maikafantasia .type-footerbadge .badge-container .btn-app-appStore img {
  width: 71.51%;
}
#maikafantasia .type-footerbadge .badge-container .btn-app-googlePlay img {
  width: 88.55%;
}
#maikafantasia .type-footerbadge .badge-container .btn-app-nijigame-pre img {
  width: 79.33%;
}
#maikafantasia .type-footerbadge .warning-note {
  grid-area: note;
  margin: 15px auto 0;
  width: 90%;
  font-size: 11px;
  line-height: 1.8em;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-footerbadge {
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr 4fr;
    grid-template-areas: "icon badge" "icon note";
    margin: 0 auto;
    max-width: 1000px;
  }
  #maikafantasia .type-footerbadge .app-icon {
    width: 163px;
    height: 163px;
  }
  #maikafantasia .type-footerbadge .app-icon .sp {
    display: none;
  }
  #maikafantasia .type-footerbadge .app-icon .pc {
    display: block;
  }
  #maikafantasia .type-footerbadge .alt-text {
    font-size: min(50px,6vw);
    text-align: center;
  }
  #maikafantasia .type-footerbadge .alt-text strong{
    font-size: min(68px,8vw);
  }
  #maikafantasia .type-footerbadge .badge-container {
    flex-direction: row;
  }
  #maikafantasia .type-footerbadge .badge-container .btn-app {
    padding: 0 15px;
    box-sizing: border-box;
    transition: opacity .3s;
  }
  #maikafantasia .type-footerbadge .badge-container .btn-app:hover {
    opacity: .5;
  }
  #maikafantasia .type-footerbadge .badge-container .btn-app-appStore {
    width: 29.67%;
  }
  #maikafantasia .type-footerbadge .badge-container .btn-app-appStore img {
    width: 100%;
  }
  #maikafantasia .type-footerbadge .badge-container .btn-app-googlePlay {
    width: 35.89%;
  }
  #maikafantasia .type-footerbadge .badge-container .btn-app-googlePlay img {
    width: 100%;
  }
  #maikafantasia .type-footerbadge .badge-container .btn-app-nijigame-pre {
    width: 32.54%;
  }
  #maikafantasia .type-footerbadge .badge-container .btn-app-nijigame-pre img {
    width: 100%;
  }
  #maikafantasia .type-footerbadge .warning-note {
    font-size: 13px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
shareボタン
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-share {
  padding: 30px 0;
  background: #fff;
  box-sizing: broder-box;
}
#maikafantasia .type-share .share-title {
  position: relative;
  margin-bottom: 40px;
  font-size: 15px;
  text-align: center;
}
#maikafantasia .type-share .share-title::before {
  display: block;
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 1px;
  height: 20px;
  background: #3f5070;
}
#maikafantasia .type-share .share-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#maikafantasia .type-share .share-button-container a img {
  margin: 0 10px;
  width: 40px;
  transition: opacity .3s;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-share .share-button-container a img:hover {
    opacity: .5;
  }
}
/* ------------------------------------------------------------------------------------------------------------------
各リンク
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-terms {
  padding: 30px 0;
  box-sizing: border-box;
}
#maikafantasia .type-terms .terms-list {
  display: flex;
  justify-content: center;
}
#maikafantasia .type-terms .terms-list .terms-item {
  margin: 0 10px;
  font-size: 11px;
  text-decoration: underline;
  transition: opacity .3s;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-terms .terms-list .terms-item:hover {
    opacity: .5;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
フッター
------------------------------------------------------------------------------------------------------------------ */
.scrolltop {
  bottom: 1vw;
  right: 1vw;
  z-index: 100;
  position: fixed;
}

.scrolltop a {
  display: block;
  padding-top: 40px;
  width: 40px;
  height: 0;
  line-height: 200%;
  background: url(../../../img/nijigame/apps/common/icon_return_top.png) no-repeat 0 0;
  background-size: cover;
  overflow: hidden;
  opacity: 0.5;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#pf-footer-area .footer-icon-fgg{
  padding-top: min(50px,7.55vw);
  width: min(75px,11.33vw);
  background: url(../../../img/nijigame/apps/maikafantasia/logo-fgg-white.png);
  background-size: contain;
}

.webp #pf-footer-area .footer-icon-fgg{
  background: url(../../../img/nijigame/apps/maikafantasia/logo-fgg-white.webp);
  background-size: contain;
}

@media only screen and (min-width: 769px) {
  .scrolltop {
    bottom: 30px;
    right: 30px;
  }
  .scrolltop a {
    width: 50px;
    padding-top: 50px;
    background-position: 0 0;
    transition: opacity .3s;
  }
  .scrolltop a:hover{
    opacity: .2;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
お問い合わせ
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-contact .sd-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#maikafantasia .type-contact .sd-container img {
  position: absolute;
}
#maikafantasia .type-contact .sd-container picture:nth-of-type(1) img {
  top: -62px;
  left: -8px;
  width: 54px;
}
#maikafantasia .type-contact .sd-container picture:nth-of-type(2) img {
  top: -69px;
  right: -4px;
  width: 51px;
}
#maikafantasia .type-contact .sd-container picture:nth-of-type(3) img {
  bottom: -44px;
  left: -12px;
  width: 63px;
}
#maikafantasia .type-contact .sd-container picture:nth-of-type(4) img {
  bottom: -38px;
  right: -10px;
  width: 67px;
}
#maikafantasia .type-contact .contact-text {
  position: relative;
  margin: 0 auto;
  padding: 40px 20px 20px;
  width: 90%;
  box-shadow: 3px 3px 10px 0 rgba(26, 22, 20, 0.2);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5em;
  text-align: center;
  box-sizing: border-box;
}
#maikafantasia .type-contact .contact-text h3 {
  margin-bottom: 20px;
  font-size: 30px;
}
#maikafantasia .type-contact .contact-text h4 {
  margin: 20px 0;
  width: 100%;
  color: #fff;
  background: #3f5070;
  border-radius: 50px;
  padding: 5px;
}
#maikafantasia .type-contact .contact-button {
  margin: 35px auto 0;
  width: 186px;
}
#maikafantasia .type-contact .warning-note {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-contact .sd-container picture:nth-of-type(1) img {
    top: -104px;
    left: -73px;
    width: 108px;
  }
  #maikafantasia .type-contact .sd-container picture:nth-of-type(2) img {
    top: -122px;
    right: -57px;
    width: 102px;
  }
  #maikafantasia .type-contact .sd-container picture:nth-of-type(3) img {
    bottom: -89px;
    left: -86px;
    width: 126px;
  }
  #maikafantasia .type-contact .sd-container picture:nth-of-type(4) img {
    bottom: -95px;
    right: -60px;
    width: 134px;
  }
  #maikafantasia .type-contact .contact-text {
    padding: 30px;
    max-width: 692px;
  }
  #maikafantasia .type-contact .contact-text .sp {
    display: none;
  }
  #maikafantasia .type-contact .contact-text h4 {
    margin: 20px auto;
    width: 300px;
    padding: 5px 0;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
ニュースモーダル
------------------------------------------------------------------------------------------------------------------ */
#news-modal .article-date span{
  border-radius: 100px;
  padding: 0.1em 1em;
}

#news-modal .news-event .article-date span,
#news-modal .news-campaign .article-date span,
#news-modal .news-update .article-date span,
#news-modal .news-other .article-date span {
  background: #b9d7ea;
}

#news-modal .news-maintenance .article-date span,
#news-modal .news-important .article-date span {
  background: #ffc1d6;
}

/* ------------------------------------------------------------------------------------------------------------------
チーム紹介
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-team .team-container {
  flex-direction: column;
  margin: 0 auto 50px;
  padding: 5px;
  max-width: 710px;
  width: 92.45%;
  height: auto;
  border-radius: 10px;
  box-sizing: border-box;
}
#maikafantasia .type-team .team-container::before {
  border-radius: 9px;
}
#maikafantasia .type-team .team-container.off {
  pointer-events: none;
}
#maikafantasia .type-team .team-container.off::after{
  display: flex;
  justify-content: center;
  align-items: center;
  content: 'Coming Soon';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(63,80,112,.35);
  border-radius: 10px;
  font-family: 'PT Serif', serif;
  font-size: 10vw;
  color: #3f5070;
  text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
}
#maikafantasia .type-team .logo-container {
  position: relative;
  width: 100%;
  border-radius: 6px 6px 0 0;
}
#maikafantasia .type-team .logo-container::before {
  display: block;
  content: '';
  padding-top: 52.46%;
}
#maikafantasia .type-team .logo-container .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#maikafantasia .type-team .member-container {
  width: 100%;
}
#maikafantasia .type-team .member-list {
  display: flex;
  width: 100%;
}
#maikafantasia .type-team .member-item {
  position: relative;
  width: 20%;
}
#maikafantasia .type-team .member-item::before {
  display: block;
  content: '';
  padding-top: 282.61%;
}
#maikafantasia .type-team .member-item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#maikafantasia .member-item a::before {
  display: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .4;
  transition: height .5s ease;
}
#maikafantasia .team-loveri .member-item a::before { opacity: .5; }
#maikafantasia .member-item a::after {
  display: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color;
  transition: height .5s .1s ease;
}
#maikafantasia .team-sakura .member-item a::after { background: #ff8573 }
#maikafantasia .team-pierceing .member-item a::after { background: #a169de }
#maikafantasia .team-loveri .member-item a::after { background: #e8a020 }
#maikafantasia .team-muscle .member-item a::after { background: #ff8079 }
#maikafantasia .team-crystalia .member-item a::after { background: #5092ff }
#maikafantasia .team-other .member-item a::after { background: #bec8d6 }

#maikafantasia .type-team .team-sakura .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg1.jpg) center;
  background-size: cover;
}
.webp #maikafantasia .type-team .team-sakura .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg1.webp) center;
  background-size: cover;
}
#maikafantasia .type-team .team-sakura .logo-container picture {
  width: 64.23%;
}
#maikafantasia .team-sakura .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura1.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-sakura .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura2.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-sakura .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura3.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-sakura .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura4.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-sakura .member-item:nth-of-type(5) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura5.jpg) center top;
  background-size: 100%;
}
#maikafantasia .type-team .team-pierceing .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg2.jpg) center;
  background-size: cover;
}
.webp #maikafantasia .team-sakura .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura1.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-sakura .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura2.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-sakura .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura3.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-sakura .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura4.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-sakura .member-item:nth-of-type(5) a {
  background: url(/img/nijigame/apps/maikafantasia/team-sakura5.webp) center top;
  background-size: 100%;
}
#maikafantasia .type-team .team-pierceing .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg2.jpg) center;
  background-size: cover;
}

.webp #maikafantasia .type-team .team-pierceing .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg2.webp) center;
  background-size: cover;
}

#maikafantasia .type-team .team-pierceing .logo-container picture {
  width: 75.22%;
}
#maikafantasia .team-pierceing .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing1.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-pierceing .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing2.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-pierceing .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing3.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-pierceing .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing4.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-pierceing .member-item:nth-of-type(5) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing5.jpg) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-pierceing .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing1.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-pierceing .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing2.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-pierceing .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing3.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-pierceing .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing4.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-pierceing .member-item:nth-of-type(5) a {
  background: url(/img/nijigame/apps/maikafantasia/team-pierceing5.webp) center top;
  background-size: 100%;
}

#maikafantasia .type-team .team-loveri .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg3.jpg) center;
  background-size: cover;
}
.webp #maikafantasia .type-team .team-loveri .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg3.webp) center;
  background-size: cover;
}
#maikafantasia .type-team .team-loveri .logo-container picture {
  width: 80.87%;
}
#maikafantasia .team-loveri .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri1.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-loveri .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri2.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-loveri .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri3.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-loveri .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri4.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-loveri .member-item:nth-of-type(5) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri5.jpg) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-loveri .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri1.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-loveri .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri2.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-loveri .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri3.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-loveri .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri4.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-loveri .member-item:nth-of-type(5) a {
  background: url(/img/nijigame/apps/maikafantasia/team-loveri5.webp) center top;
  background-size: 100%;
}

#maikafantasia .type-team .team-muscle .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg4.jpg) center;
  background-size: 100% 100%;
}
.webp #maikafantasia .type-team .team-muscle .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg4.webp) center;
  background-size: 100% 100%;
}
#maikafantasia .type-team .team-muscle .logo-container picture {
  width: 77.68%;
}
#maikafantasia .team-muscle .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle1.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-muscle .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle2.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-muscle .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle3.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-muscle .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle4.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-muscle .member-item:nth-of-type(5) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle5.jpg) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-muscle .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle1.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-muscle .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle2.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-muscle .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle3.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-muscle .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle4.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-muscle .member-item:nth-of-type(5) a {
  background: url(/img/nijigame/apps/maikafantasia/team-muscle5.webp) center top;
  background-size: 100%;
}

#maikafantasia .type-team .team-crystalia .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg5.jpg) center;
  background-size: 101%;
}
.webp #maikafantasia .type-team .team-crystalia .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg5.webp) center;
  background-size: 101%;
}
#maikafantasia .type-team .team-crystalia .logo-container picture {
  width: 64.06%;
}
#maikafantasia .type-team .team-crystalia .member-item {
  width: 33.34%;
}
#maikafantasia .type-team .team-crystalia .member-item::before {
  padding-top: 169.57%;
}
#maikafantasia .team-crystalia .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-crystalia1.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-crystalia .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-crystalia2.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-crystalia .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-crystalia3.jpg) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-crystalia .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-crystalia1.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-crystalia .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-crystalia2.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-crystalia .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-crystalia3.webp) center top;
  background-size: 100%;
}
#maikafantasia .type-team .team-other .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg6.jpg) center;
  background-size: cover;
}
.webp #maikafantasia .type-team .team-other .logo-container {
  background: url(/img/nijigame/apps/maikafantasia/team-bg6.webp) center;
  background-size: cover;
}

#maikafantasia .type-team .team-other {
  margin-bottom: 0;
}
#maikafantasia .type-team .team-other .logo-container picture {
  width: 56.07%;
}
#maikafantasia .type-team .team-other .member-item {
  width: 25%;
}
#maikafantasia .type-team .team-other .member-item::before {
  padding-top: 225.43%;
}
#maikafantasia .team-other .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-other1.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-other .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-other2.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-other .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-other3.jpg) center top;
  background-size: 100%;
}
#maikafantasia .team-other .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-other4.jpg) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-other .member-item:nth-of-type(1) a {
  background: url(/img/nijigame/apps/maikafantasia/team-other1.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-other .member-item:nth-of-type(2) a {
  background: url(/img/nijigame/apps/maikafantasia/team-other2.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-other .member-item:nth-of-type(3) a {
  background: url(/img/nijigame/apps/maikafantasia/team-other3.webp) center top;
  background-size: 100%;
}
.webp #maikafantasia .team-other .member-item:nth-of-type(4) a {
  background: url(/img/nijigame/apps/maikafantasia/team-other4.webp) center top;
  background-size: 100%;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-team .team-container {
    flex-direction: row;
    max-width: 1120px;
  }
  #maikafantasia .type-team .team-container:hover {
    transform: translate3d(0, 0, 0);
    box-shadow: 3px 3px 10px 0 rgba(26, 22, 20, 0.35);
  }
  #maikafantasia .type-team .team-container.off::after{
    font-size: 6.35vw;
    text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
  }
  #maikafantasia .type-team .logo-container {
    max-width: 420px;
    width: 37.84%;
    border-radius: 6px 0 0 6px;
  }
  #maikafantasia .type-team .logo-container::before {
    padding-top: 92.86%;
  }
  #maikafantasia .type-team .member-container {
    max-width: 690px;
    width: 62.17%;
  }
  #maikafantasia .member-item a::before,
  #maikafantasia .member-item a::after {
    display: block;
  }
  #maikafantasia .member-item:hover a::before {
    height: 0;
  }
  #maikafantasia .member-item:hover a::after {
    height: 0;
  }
  #maikafantasia .member-item.disable:hover a::before {
    height: 100%;
  }
  #maikafantasia .member-item.disable:hover a::after {
    height: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  #maikafantasia .type-team .team-container.off::after{
    font-size: 80px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------
キャラクター紹介
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-chara .team-select-container {
  padding-top: 10px;
  width: 100%;
}
#maikafantasia .type-chara .team-select-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0 10px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
}
#maikafantasia .type-chara .team-select-list .team-select-item {
  margin-bottom: 10px;
  width: 33.33%;
}
#maikafantasia .type-chara .team-select-list .team-select-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
#maikafantasia .type-chara .team-select-list .team-select-item picture {
  position: relative;
  width: 80%;
  transition: opacity .3s;
}
#maikafantasia .type-chara .team-select-list .team-select-item picture:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
}
#maikafantasia .type-chara .team-select-list .team-select-item.active {
  pointer-events: none;
}
#maikafantasia .type-chara .team-select-list .team-select-item.active .team-select-active {
  opacity: 1;
}
#maikafantasia .type-chara .team-select-list .team-select-item.off {
  pointer-events: none;
}
#maikafantasia .type-chara .correlation-button {
  margin: 40px auto;
  max-width: 372px;
  width: 90%;
  height: 70px;
  border-radius: 35px;
  cursor: pointer;
}
#maikafantasia .type-chara .correlation-button::before {
  background-size: 17px 40px, 17px 40px, 120px 40px, auto;
  border-radius: 35px;
}
#maikafantasia .type-chara .correlation-button a{
  font-size: 37px;
  font-weight: 700;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
#maikafantasia .type-chara .chara-container {
  position: relative;
  padding: 20px 0;
  margin-bottom: 50px;
}
#maikafantasia .type-chara .chara-container .chara-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 140px);
  background: #fff;
}
#maikafantasia .type-chara .chara-container .chara-bg .chara-bg-text {
  margin-left: -13px;
  font-size: 122px;
  font-weight: 900;
  writing-mode: vertical-rl;
  white-space: nowrap;
  opacity: .6;
}
#maikafantasia .type-chara .chara-container .chara-content {
  position: relative;
  overflow: hidden;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-name {
  margin: 0 auto;
  width: 90%;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-name-text {
  font-size: 40px;
  font-weight: 700;
  word-break: keep-all;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-name-text span{
  display: inline-block;
  margin-bottom: 5px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-name-ruby {
  margin-top: 5px;
  font-size: 15px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-cv {
  display: flex;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-cv span {
  display: inline-block;
  padding: 3px 7px;
  margin-right: 10px;
  font-size: 15px;
  color: #fff;
  border-radius: 20px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-pic {
  position: relative;
  width: 100%;
  height: 550px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-pic img {
  position: absolute;
  top: 0;
  left: 30%;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-pic .chara-lines {
  position: absolute;
  top: 40px;
  left: 13%;
  font-size: 20px;
  color: #fff;
  writing-mode: vertical-rl;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-pic .chara-lines p {
  display: inline-block;
  padding: 10px 5px;
  margin-right: 5px;
  box-sizing: border-box;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-pic .chara-lines p:last-child {
  transform: translate3d(0, 40px, 0);
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile {
  position: relative;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-data {
  padding: 15px 0 5px;
  margin: 0 auto;
  width: 90%;
  border-top: solid 1px #d0d7e4;
  border-bottom: solid 1px #d0d7e4;
  box-sizing: border-box;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-data .chara-data-list {
  font-size: 14px;
  text-shadow: 0 0 7px #fff,0 0 7px #fff,0 0 7px #fff,0 0 7px #fff,0 0 7px #fff,0 0 7px #fff,0 0 7px #fff,0 0 7px #fff;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-data .chara-data-list .chara-data-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-data .chara-data-list .chara-data-item .chara-data-item-name {
  width: 70px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-data .chara-data-list .chara-data-item .chara-data-line {
  margin: .5em 10px 0 0;
  width: 30px;
  height: 1px;
  background: #d0d7e4;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-data .chara-data-list .chara-data-item .chara-data-item-text {
  line-height: 1.2em;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-text {
  margin: 15px auto 0;
  width: 90%;
  font-size: 14px;
  line-height: 1.714em;
  text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-text p {
  margin-bottom: 1em;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice {
  display: flex;
  align-items: center;
  padding: 15px 0;
  margin: 0 auto;
  width: 90%;
  border-top: solid 1px #d0d7e4;
  border-bottom: solid 1px #d0d7e4;
  box-sizing: border-box;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice .chara-samplevoice-title {
  font-size: 14px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice .chara-samplevoice-list {
  display: flex;
  margin-left: 30px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice .chara-samplevoice-list .chara-samplevoice-item {
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice .chara-samplevoice-list .chara-samplevoice-item.off {
  box-shadow: 0 0 5px 0 rgba(26,22,20,.35);
  filter: grayscale(100%);
  pointer-events: none;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice .chara-samplevoice-list .chara-samplevoice-item:nth-of-type(2) {
  margin: 0 20px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice .chara-samplevoice-list .chara-samplevoice-item::before {
  background: url(../../../img/nijigame/apps/maikafantasia/chara-samplevoice-icon.png) center no-repeat, linear-gradient(to bottom, #fff 0%, #ffcbd6 100%);
  background-size: 60%;
}
.webp #maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice .chara-samplevoice-list .chara-samplevoice-item::before {
  background: url(../../../img/nijigame/apps/maikafantasia/chara-samplevoice-icon.webp) center no-repeat, linear-gradient(to bottom, #fff 0%, #ffcbd6 100%);
  background-size: 60%;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg {
  display: flex;
  margin: 15px auto 0;
  width: 90%;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg a {
  display: block;
  position: relative;
  width: 163px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg a:first-child {
  margin-right: 15px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg a:first-child::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 20px;
  fill: #fff;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg a .chara-cg-upscale {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
}
#maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg a.off {
  border: solid 1px #ddd;
  box-sizing: border-box;
  pointer-events: none;
}
#maikafantasia .type-chara .chara-container.chara-sakura1 .chara-bg .chara-bg-text {
  color: #ffe5e0;
}
#maikafantasia .type-chara .chara-container.chara-sakura1 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #ffac9c;
}
#maikafantasia .type-chara .chara-container.chara-sakura1 .chara-content .chara-pic img {
  width: 278px;
}
#maikafantasia .type-chara .chara-container.chara-sakura1 .chara-content .chara-pic .chara-lines p {
  background: #ffac9c;
  box-shadow: 3px 3px 0 rgba(255, 172, 156, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-sakura2 .chara-bg .chara-bg-text {
  color: #c7f8cc;
}
#maikafantasia .type-chara .chara-container.chara-sakura2 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #69d173;
}
#maikafantasia .type-chara .chara-container.chara-sakura2 .chara-content .chara-pic img {
  width: 281px;
}
#maikafantasia .type-chara .chara-container.chara-sakura2 .chara-content .chara-pic .chara-lines p {
  background: #69d173;
  box-shadow: 3px 3px 0 rgba(105, 209, 115, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-sakura3 .chara-bg .chara-bg-text {
  color: #ffeec4;
}
#maikafantasia .type-chara .chara-container.chara-sakura3 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #ffce58;
}
#maikafantasia .type-chara .chara-container.chara-sakura3 .chara-content .chara-pic img {
  width: 278px;
}
#maikafantasia .type-chara .chara-container.chara-sakura3 .chara-content .chara-pic .chara-lines p {
  background: #ffce58;
  box-shadow: 3px 3px 0 rgba(255, 206, 88, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-sakura4 .chara-bg .chara-bg-text {
  color: #cae5f7;
}
#maikafantasia .type-chara .chara-container.chara-sakura4 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #3fa1e1;
}
#maikafantasia .type-chara .chara-container.chara-sakura4 .chara-content .chara-pic img {
  width: 229px;
}
#maikafantasia .type-chara .chara-container.chara-sakura4 .chara-content .chara-pic .chara-lines p {
  background: #3fa1e1;
  box-shadow: 3px 3px 0 rgba(63, 161, 225, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-sakura5 .chara-bg .chara-bg-text {
  color: #f5d9f1;
}
#maikafantasia .type-chara .chara-container.chara-sakura5 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #d18bc7;
}
#maikafantasia .type-chara .chara-container.chara-sakura5 .chara-content .chara-pic img {
  width: 239px;
}
#maikafantasia .type-chara .chara-container.chara-sakura5 .chara-content .chara-pic .chara-lines p {
  background: #d18bc7;
  box-shadow: 3px 3px 0 rgba(209, 139, 199, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-pierceing1 .chara-bg .chara-bg-text {
  color: #d7f7ed;
}
#maikafantasia .type-chara .chara-container.chara-pierceing1 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #68c6a8;
}
#maikafantasia .type-chara .chara-container.chara-pierceing1 .chara-content .chara-pic img {
  width: 297px;
}
#maikafantasia .type-chara .chara-container.chara-pierceing1 .chara-content .chara-pic .chara-lines p {
  background: #68c6a8;
  box-shadow: 3px 3px 0 rgba(104, 198, 168, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-pierceing2 .chara-bg .chara-bg-text {
  color: #f9e7e8;
}
#maikafantasia .type-chara .chara-container.chara-pierceing2 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #eb8b8f;
}
#maikafantasia .type-chara .chara-container.chara-pierceing2 .chara-content .chara-pic img {
  width: 269px;
}
#maikafantasia .type-chara .chara-container.chara-pierceing2 .chara-content .chara-pic .chara-lines p {
  background: #eb8b8f;
  box-shadow: 3px 3px 0 rgba(235, 139, 143, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-pierceing3 .chara-bg .chara-bg-text {
  color: #f5e8d8;
}
#maikafantasia .type-chara .chara-container.chara-pierceing3 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #eab36f;
}
#maikafantasia .type-chara .chara-container.chara-pierceing3 .chara-content .chara-pic img {
  width: 275px;
}
#maikafantasia .type-chara .chara-container.chara-pierceing3 .chara-content .chara-pic .chara-lines p {
  background: #eab36f;
  box-shadow: 3px 3px 0 rgba(234, 179, 111, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-pierceing4 .chara-bg .chara-bg-text {
  color: #d8f1f1;
}
#maikafantasia .type-chara .chara-container.chara-pierceing4 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #60c5c4;
}
#maikafantasia .type-chara .chara-container.chara-pierceing4 .chara-content .chara-pic img {
  width: 224px;
}
#maikafantasia .type-chara .chara-container.chara-pierceing4 .chara-content .chara-pic .chara-lines p {
  background: #60c5c4;
  box-shadow: 3px 3px 0 rgba(96, 197, 196, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-pierceing5 .chara-bg .chara-bg-text {
  color: #ffeeda;
}
#maikafantasia .type-chara .chara-container.chara-pierceing5 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #ffb45f;
}
#maikafantasia .type-chara .chara-container.chara-pierceing5 .chara-content .chara-pic img {
  left: calc(30% - 50px);
  width: 328px;
}
#maikafantasia .type-chara .chara-container.chara-pierceing5 .chara-content .chara-pic .chara-lines p {
  background: #ffb45f;
  box-shadow: 3px 3px 0 rgba(255, 180, 95, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-loveri1 .chara-bg .chara-bg-text {
  color: #c3f4fa;
}
#maikafantasia .type-chara .chara-container.chara-loveri1 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #2dd7ec;
}
#maikafantasia .type-chara .chara-container.chara-loveri1 .chara-content .chara-pic img {
  width: 350px;
}
#maikafantasia .type-chara .chara-container.chara-loveri1 .chara-content .chara-pic .chara-lines p {
  background: #2dd7ec;
  box-shadow: 3px 3px 0 rgba(45, 215, 236, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-loveri2 .chara-bg .chara-bg-text {
  color: #e2ebfb;
}
#maikafantasia .type-chara .chara-container.chara-loveri2 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #76a3f0;
}
#maikafantasia .type-chara .chara-container.chara-loveri2 .chara-content .chara-pic img {
  left: calc(30% - 80px);
  width: 389px;
}
#maikafantasia .type-chara .chara-container.chara-loveri2 .chara-content .chara-pic .chara-lines p {
  background: #76a3f0;
  box-shadow: 3px 3px 0 rgba(118, 163, 240, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-loveri3 .chara-bg .chara-bg-text {
  color: #f0ebe8;
}
#maikafantasia .type-chara .chara-container.chara-loveri3 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #b1a5a0;
}
#maikafantasia .type-chara .chara-container.chara-loveri3 .chara-content .chara-pic img {
  width: 320px;
}
#maikafantasia .type-chara .chara-container.chara-loveri3 .chara-content .chara-pic .chara-lines p {
  background: #b1a5a0;
  box-shadow: 3px 3px 0 rgba(177, 165, 160, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-loveri4 .chara-bg .chara-bg-text {
  color: #d7edf0;
}
#maikafantasia .type-chara .chara-container.chara-loveri4 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #69b0b9;
}
#maikafantasia .type-chara .chara-container.chara-loveri4 .chara-content .chara-pic img {
  left: calc(30% - 100px);
  width: 478px;
}
#maikafantasia .type-chara .chara-container.chara-loveri4 .chara-content .chara-pic .chara-lines p {
  background: #69b0b9;
  box-shadow: 3px 3px 0 rgba(105, 176, 185, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-loveri5 .chara-bg .chara-bg-text {
  color: #ecedd3;
}
#maikafantasia .type-chara .chara-container.chara-loveri5 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #acae78;
}
#maikafantasia .type-chara .chara-container.chara-loveri5 .chara-content .chara-pic img {
  width: 244px;
}
#maikafantasia .type-chara .chara-container.chara-loveri5 .chara-content .chara-pic .chara-lines p {
  background: #acae78;
  box-shadow: 3px 3px 0 rgba(172, 174, 120, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-muscle1 .chara-bg .chara-bg-text {
  color: #f9e9d8;
}
#maikafantasia .type-chara .chara-container.chara-muscle1 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #f9ad57;
}
#maikafantasia .type-chara .chara-container.chara-muscle1 .chara-content .chara-pic img {
  left: calc(30% - 80px);
  width: 412px;
}
#maikafantasia .type-chara .chara-container.chara-muscle1 .chara-content .chara-pic .chara-lines p {
  background: #f9ad57;
  box-shadow: 3px 3px 0 rgba(249, 173, 87, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-muscle2 .chara-bg .chara-bg-text {
  color: #f1e2e7;
}
#maikafantasia .type-chara .chara-container.chara-muscle2 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #c78097;
}
#maikafantasia .type-chara .chara-container.chara-muscle2 .chara-content .chara-pic img {
  left: calc(30% - 30px);
  width: 329px;
}
#maikafantasia .type-chara .chara-container.chara-muscle2 .chara-content .chara-pic .chara-lines p {
  background: #c78097;
  box-shadow: 3px 3px 0 rgba(199, 128, 151, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-muscle3 .chara-bg .chara-bg-text {
  color: #f2ebd8;
}
#maikafantasia .type-chara .chara-container.chara-muscle3 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #dbbf78;
}
#maikafantasia .type-chara .chara-container.chara-muscle3 .chara-content .chara-pic img {
  width: 268px;
}
#maikafantasia .type-chara .chara-container.chara-muscle3 .chara-content .chara-pic .chara-lines p {
  background: #dbbf78;
  box-shadow: 3px 3px 0 rgba(219, 191, 120, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-muscle4 .chara-bg .chara-bg-text {
  color: #f3eed7;
}
#maikafantasia .type-chara .chara-container.chara-muscle4 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #eac61c;
}
#maikafantasia .type-chara .chara-container.chara-muscle4 .chara-content .chara-pic img {
  left: calc(30% - 30px);
  width: 379px;
}
#maikafantasia .type-chara .chara-container.chara-muscle4 .chara-content .chara-pic .chara-lines p {
  background: #eac61c;
  box-shadow: 3px 3px 0 rgba(234, 198, 28, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-muscle5 .chara-bg .chara-bg-text {
  color: #f5e6de;
}
#maikafantasia .type-chara .chara-container.chara-muscle5 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #dea17e;
}
#maikafantasia .type-chara .chara-container.chara-muscle5 .chara-content .chara-pic img {
  width: 275px;
}
#maikafantasia .type-chara .chara-container.chara-muscle5 .chara-content .chara-pic .chara-lines p {
  background: #dea17e;
  box-shadow: 3px 3px 0 rgba(222, 161, 126, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-crystalia1 .chara-bg .chara-bg-text {
  color: transparent;
  background: linear-gradient(to bottom, #f4d9e3 0%, #f5ddde 100%);
  -webkit-background-clip: text;
}
#maikafantasia .type-chara .chara-container.chara-crystalia1 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: linear-gradient(to bottom, #df6893 0%, #e67477 100%);
}
#maikafantasia .type-chara .chara-container.chara-crystalia1 .chara-content .chara-pic img {
  left: calc(30% - 40px);
  width: 332px;
}
#maikafantasia .type-chara .chara-container.chara-crystalia1 .chara-content .chara-pic .chara-lines p {
  background: linear-gradient(to bottom, #df6893 0%, #e67477 100%);
  box-shadow: 3px 3px 0 rgba(226, 110, 133, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-crystalia2 .chara-bg .chara-bg-text {
  color: transparent;
  background: linear-gradient(to bottom, #e3e5f5 0%, #eef6ff 100%);
  -webkit-background-clip: text;
}
#maikafantasia .type-chara .chara-container.chara-crystalia2 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: linear-gradient(to bottom, #7d88df 0%, #96caff 100%);
}
#maikafantasia .type-chara .chara-container.chara-crystalia2 .chara-content .chara-pic img {
  width: 262px;
}
#maikafantasia .type-chara .chara-container.chara-crystalia2 .chara-content .chara-pic .chara-lines p {
  background: linear-gradient(to bottom, #7d88df 0%, #96caff 100%);
  box-shadow: 3px 3px 0 rgba(138, 169, 239, 0.35);
}
#maikafantasia .type-chara .chara-container.chara-crystalia3 .chara-bg .chara-bg-text {
  color: transparent;
  background: linear-gradient(to bottom, #fffbdd 0%, #f6dac6 100%);
  -webkit-background-clip: text;
}
#maikafantasia .type-chara .chara-container.chara-crystalia3 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: linear-gradient(to bottom, #e4cc00 0%, #f9ae78 100%);
}
#maikafantasia .type-chara .chara-container.chara-crystalia3 .chara-content .chara-pic img {
  width: 294px;
}
#maikafantasia .type-chara .chara-container.chara-crystalia3 .chara-content .chara-pic .chara-lines p {
  background: linear-gradient(to bottom, #e4cc00 0%, #f9ae78 100%);
  box-shadow: 3px 3px 0 rgba(234, 195, 36, 0.35);
}
#maikafantasia .type-chara.page-other .chara-container .chara-content .chara-pic img{
  left: 50%;
  transform: translate3d(-50%,0,0);
}
#maikafantasia .type-chara .chara-container.chara-other1 .chara-bg .chara-bg-text {
  color: #efdde5;
}
#maikafantasia .type-chara .chara-container.chara-other1 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #8d6074;
}
#maikafantasia .type-chara .chara-container.chara-other1 .chara-content .chara-pic img {
  width: 362px;
}
#maikafantasia .type-chara .chara-container.chara-other2 .chara-bg .chara-bg-text {
  color: #f1dfe0;
}
#maikafantasia .type-chara .chara-container.chara-other2 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #d2a0a4;
}
#maikafantasia .type-chara .chara-container.chara-other2 .chara-content .chara-pic img {
  width: 340px;
}
#maikafantasia .type-chara .chara-container.chara-other3 .chara-bg .chara-bg-text {
  color: #f8edcc;
}
#maikafantasia .type-chara .chara-container.chara-other3 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #f1d57e;
}
#maikafantasia .type-chara .chara-container.chara-other3 .chara-content .chara-pic img {
  width: 433px;
}
#maikafantasia .type-chara .chara-container.chara-other4 .chara-bg .chara-bg-text {
  color: #f5e9e9;
}
#maikafantasia .type-chara .chara-container.chara-other4 .chara-content .chara-name .chara-cv .chara-cv-title {
  background: #c65a5a;
}
#maikafantasia .type-chara .chara-container.chara-other4 .chara-content .chara-pic img {
  width: 332px;
}

#maikafantasia ._cg_modal .pv_wrapper::before {
  display: none;
}
#maikafantasia ._cg_modal .pv_wrapper img {
  display: none;
}
#maikafantasia ._movie_modal .pv_wrapper iframe {
  opacity: 0;
  pointer-events: none;
}
#maikafantasia ._movie_modal .pv_wrapper iframe.active {
  opacity: 1;
  pointer-events: auto;
}

@media only screen and (min-width: 769px) {
  #maikafantasia section.type-chara .section-content {
    margin-top: 0;
  }
  #maikafantasia .type-chara .team-select-container {
    padding-top: 0;
  }
  #maikafantasia .type-chara .team-select-container .team-select-list {
    max-width: 1200px;
    background: none;
  }
  #maikafantasia .type-chara .team-select-container .team-select-list .team-select-item {
    width: 16.66%;
  }
  #maikafantasia .type-chara .team-select-container .team-select-list .team-select-item picture {
    width: 70%;
  }
  #maikafantasia .type-chara .team-select-container .team-select-list .team-select-item:hover picture:last-child {
    opacity: 1;
  }
  #maikafantasia .type-chara .correlation-button {
    height: 100px;
    border-radius: 50px;
  }
  #maikafantasia .type-chara .correlation-button::before {
    background-size: 26px 58px, 26px 58px, 159px 58px, auto;
    border-radius: 50px;
  }
  #maikafantasia .type-chara .chara-container {
    padding: 20px 0 0;
  }
  #maikafantasia .type-chara .chara-container .chara-bg {
    height: calc(100% - 172px);
    overflow: hidden;
  }
  #maikafantasia .type-chara .chara-container .chara-bg .chara-bg-text {
    position: absolute;
    bottom: -24px;
    left: 0;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    opacity: 1;
  }
  #maikafantasia .type-chara .chara-container .chara-content {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 0.78fr;
    grid-template-areas: "name pic" "profile pic";
    padding: 0 30px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-name {
    grid-area: name;
    width: 100%;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-name-text {
    font-size: 60px;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-name-ruby {
    font-size: 20px;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-cv {
    font-size: 26px;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-name .chara-cv .chara-cv-title {
    padding: 4px 10px;
    font-size: 20px;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-pic {
    grid-area: pic;
    height: auto;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-pic img {
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-pic .chara-lines {
    right: 0;
    left: auto;
    font-size: 2.25vw;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-profile {
    gird-area: profile;
    margin-top: 30px;
    max-width: 630px;
    width: 100%;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-data {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
    border-top: none;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-data .chara-data-list {
    width: 48.41%;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-text {
    width: 100%;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-samplevoice {
    width: 100%;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg {
    justify-content: space-between;
    padding-bottom: 60px;
    width: 100%;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg a {
    max-width: 305px;
    width: 48.41%;
    transition: opacity .3s;
  }
  #maikafantasia .type-chara .chara-container .chara-content .chara-profile .chara-cg a:hover {
    opacity: .5;
  }
  #maikafantasia .type-chara .chara-container:nth-of-type(2n+1) .chara-content {
    grid-template-columns: 0.78fr 1fr;
    grid-template-areas: "pic name" "pic profile";
  }
  #maikafantasia .type-chara .chara-container:nth-of-type(2n+1) .chara-content .chara-pic .chara-lines {
    right: auto;
    left: 0;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura1 .chara-bg .chara-bg-text {
    font-size: 17.2vw;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura1 .chara-content .chara-pic img {
    width: 361px;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura2 .chara-bg .chara-bg-text {
    font-size: 11.6vw;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura2 .chara-content .chara-pic img {
    width: 365px;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura3 .chara-bg .chara-bg-text {
    font-size: 13.1vw;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura3 .chara-content .chara-pic img {
    width: 361px;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura4 .chara-bg .chara-bg-text {
    font-size: 12.8vw;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura4 .chara-content .chara-pic img {
    width: 298px;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura5 .chara-bg .chara-bg-text {
    font-size: 16.2vw;
  }
  #maikafantasia .type-chara .chara-container.chara-sakura5 .chara-content .chara-pic img {
    width: 312px;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing1 .chara-bg .chara-bg-text {
    font-size: 15.3vw;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing1 .chara-content .chara-pic img {
    width: 389px;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing2 .chara-bg .chara-bg-text {
    font-size: 17.1vw;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing2 .chara-content .chara-pic img {
    width: 351px;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing3 .chara-bg .chara-bg-text {
    font-size: 11.6vw;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing3 .chara-content .chara-pic img {
    width: 360px;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing4 .chara-bg .chara-bg-text {
    font-size: 18vw;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing4 .chara-content .chara-pic img {
    width: 293px;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing5 .chara-bg .chara-bg-text {
    font-size: 11.6vw;
  }
  #maikafantasia .type-chara .chara-container.chara-pierceing5 .chara-content .chara-pic img {
    left: 50%;
    width: 429px;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri1 .chara-bg .chara-bg-text {
    font-size: 17vw;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri1 .chara-content .chara-pic img {
    width: 437px;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri2 .chara-bg .chara-bg-text {
    font-size: 13.5vw;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri2 .chara-content .chara-pic img {
    left: 50%;
    width: 485px;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri3 .chara-bg .chara-bg-text {
    font-size: 15.8vw;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri3 .chara-content .chara-pic img {
    width: 400px;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri4 .chara-bg .chara-bg-text {
    font-size: 14.8vw;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri4 .chara-content .chara-pic img {
    left: 50%;
    width: 597px;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri5 .chara-bg .chara-bg-text {
    font-size: 13.5vw;
  }
  #maikafantasia .type-chara .chara-container.chara-loveri5 .chara-content .chara-pic img {
    width: 304px;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle1 .chara-bg .chara-bg-text {
    font-size: 13.7vw;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle1 .chara-content .chara-pic img {
    left: 50%;
    width: 514px;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle2 .chara-bg .chara-bg-text {
    font-size: 13.6vw;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle2 .chara-content .chara-pic img {
    left: 50%;
    width: 411px;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle3 .chara-bg .chara-bg-text {
    font-size: 14.6vw;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle3 .chara-content .chara-pic img {
    width: 334px;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle4 .chara-bg .chara-bg-text {
    font-size: 13.6vw;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle4 .chara-content .chara-pic img {
    left: calc(50% + 30px);
    width: 473px;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle5 .chara-bg .chara-bg-text {
    font-size: 16.7vw;
  }
  #maikafantasia .type-chara .chara-container.chara-muscle5 .chara-content .chara-pic img {
    width: 344px;
  }
  #maikafantasia .type-chara .chara-container.chara-crystalia1 .chara-bg .chara-bg-text {
    font-size: 15.1vw;
  }
  #maikafantasia .type-chara .chara-container.chara-crystalia1 .chara-content .chara-pic img {
    left: 50%;
    width: 414px;
  }
  #maikafantasia .type-chara .chara-container.chara-crystalia2 .chara-bg .chara-bg-text {
    font-size: 14.6vw;
  }
  #maikafantasia .type-chara .chara-container.chara-crystalia2 .chara-content .chara-pic img {
    width: 328px;
  }
  #maikafantasia .type-chara .chara-container.chara-crystalia3 .chara-bg .chara-bg-text {
    font-size: 16.2vw;
  }
  #maikafantasia .type-chara .chara-container.chara-crystalia3 .chara-content .chara-pic img {
    width: 367px;
  }
  #maikafantasia .type-chara .chara-container.chara-other1 .chara-bg .chara-bg-text {
    font-size: 14vw;
  }
  #maikafantasia .type-chara .chara-container.chara-other1 .chara-content .chara-pic img {
    width: 465px;
  }
  #maikafantasia .type-chara .chara-container.chara-other2 .chara-bg .chara-bg-text {
    font-size: 17vw;
  }
  #maikafantasia .type-chara .chara-container.chara-other2 .chara-content .chara-pic img {
    width: 437px;
  }
  #maikafantasia .type-chara .chara-container.chara-other3 .chara-bg .chara-bg-text {
    font-size: 16vw;
  }
  #maikafantasia .type-chara .chara-container.chara-other3 .chara-content .chara-pic img {
    width: 557px;
  }
  #maikafantasia .type-chara .chara-container.chara-other4 .chara-bg .chara-bg-text {
    font-size: 12.1vw;
  }
  #maikafantasia .type-chara .chara-container.chara-other4 .chara-content .chara-pic img {
    width: 427px;
  }
  #maikafantasia .type-chara.page-other .chara-container .chara-content .chara-profile .chara-cg {
    position: relative;
    max-width: 305px;
    width: 100%;
  }
  #maikafantasia .type-chara.page-other .chara-container .chara-content .chara-profile .chara-cg::before {
    content: '';
    display: block;
    padding-top: 56.25%;
  }
  #maikafantasia .type-chara.page-other .chara-container .chara-content .chara-profile .chara-cg .chara-cg-dummy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }

}
@media only screen and (min-width: 1200px) {
  #maikafantasia .type-chara .chara-container .chara-content .chara-pic .chara-lines {
    font-size: 27px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
お問い合わせ
------------------------------------------------------------------------------------------------------------------ */

.contact-form{
  font-family: 'Noto Sans JP', sans-serif;
}

.contact-form .attention {
  width: 75%;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 5px;
}

.contact-form.confirm .contact-btn.back::before {
  background: url(/img/nijigame/apps/maikafantasia/common-buttton-bg-blue3.png) right 15px center no-repeat, url(/img/nijigame/apps/maikafantasia/common-buttton-bg-blue2.png) 15px center no-repeat, url(/img/nijigame/apps/maikafantasia/common-buttton-bg-blue1.png) center no-repeat,linear-gradient(to bottom, #fff 0%, #c9d0fd 100%);
  background-size: 13px 30px, 13px 30px, 80px 30px, auto;
}

.webp .contact-form.confirm .contact-btn.back::before {
  background: url(/img/nijigame/apps/maikafantasia/common-buttton-bg-blue3.webp) right 15px center no-repeat, url(/img/nijigame/apps/maikafantasia/common-buttton-bg-blue2.webp) 15px center no-repeat, url(/img/nijigame/apps/maikafantasia/common-buttton-bg-blue1.webp) center no-repeat,linear-gradient(to bottom, #fff 0%, #c9d0fd 100%);
  background-size: 13px 30px, 13px 30px, 80px 30px, auto;
}

.contact-finished{
  text-align: left;
  padding: 0 30px;
}

.contact-finished p:first-child{
  text-align: center;
}

.contact-finished .common-button{
  max-width: 200px;
  margin: 30px auto 10px;
}

@media only screen and (max-width: 768px) {

  .contact-finished{
    padding: 0px 0 20px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
スタッフ / キャスト
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .sc-container{
  padding-bottom: 20px;
  box-sizing: border-box;
}

#maikafantasia .sc-container h3{
  position: relative;
  padding-bottom: 12px;
  margin: 0 auto 30px;
  max-width: 250px;
  font-size: 40px;
  text-align: center;
  border-bottom: solid 1px #3f5070;
  box-sizing: border-box;
}

#maikafantasia .staff-container .staff-item{
  margin-bottom: 30px;
  text-align: center;
}

#maikafantasia .staff-container .staff-position{
  margin-bottom: 10px;
  font-size: 20px;
}

#maikafantasia .staff-container .staff-name{
  font-size: 40px;
  font-weight: 700;
}

#maikafantasia .type-staffcast {
  padding-bottom: 0;
}

#maikafantasia .type-staffcast .team-container {
  flex-direction: column;
  padding: 5px;
  margin: 0 auto 30px;
  width: 90%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

#maikafantasia .type-staffcast .team-container::before {
  border-radius: 10px;
}

#maikafantasia .cast-container .member-container {
  width: 100%;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
}

#maikafantasia .cast-container .member-list {
  display: flex;
  width: 100%;
}

#maikafantasia .cast-container .member-item {
  position: relative;
  width: 20%;
}

#maikafantasia .cast-container .team-crystalia .member-item {
  width: 33.33%;
}

#maikafantasia .cast-container .team-other .member-item {
  width: 25%;
}

#maikafantasia .cast-container .member-item::before {
  display: block;
  content: '';
  padding-top: 282.61%;
}

#maikafantasia .cast-container .team-crystalia .member-item::before {
  padding-top: 169.57%;
}

#maikafantasia .cast-container .team-other .member-item::before {
  padding-top: 227%;
}

#maikafantasia .cast-container .member-item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

#maikafantasia .cast-container .staff-list {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 15px;
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg1.png) center;
  background-size: cover;
}
.webp #maikafantasia .cast-container .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg1.webp) center;
  background-size: cover;
}

#maikafantasia .cast-container .team-pierceing .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg2.png) center;
  background-size: cover;
}
#maikafantasia .cast-container .team-loveri .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg3.png) center;
  background-size: cover;
}
#maikafantasia .cast-container .team-muscle .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg4.png) center;
  background-size: cover;
}
#maikafantasia .cast-container .team-crystalia .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg5.png) center;
  background-size: cover;
}
#maikafantasia .cast-container .team-other .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg6.png) center;
  background-size: cover;
}
.webp #maikafantasia .cast-container .team-pierceing .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg2.webp) center;
  background-size: cover;
}
.webp #maikafantasia .cast-container .team-loveri .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg3.webp) center;
  background-size: cover;
}
.webp #maikafantasia .cast-container .team-muscle .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg4.webp) center;
  background-size: cover;
}
.webp #maikafantasia .cast-container .team-crystalia .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg5.webp) center;
  background-size: cover;
}
.webp #maikafantasia .cast-container .team-other .staff-list {
  background: url(../../../img/nijigame/apps/maikafantasia/staff-cast-bg6.webp) center;
  background-size: cover;
}


#maikafantasia .cast-container .staff-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
  margin: 20px 0;
  width: 50%;
  box-sizing: border-box;
}

#maikafantasia .cast-container .staff-item:first-child {
  align-items: center;
  margin: 10px 0 0 0;
}

#maikafantasia .cast-container .staff-item.staff-bottom{
  justify-content: flex-end;
}

#maikafantasia .cast-container .team-loveri .staff-item:nth-of-type(4) .staff-position{
  margin-top: 13px;
}

#maikafantasia .cast-container .team-loveri .staff-item:nth-of-type(6) .staff-position{
  margin-top: -12px;
}

#maikafantasia .cast-container .staff-item picture {
  width: 80%;
}

#maikafantasia .cast-container .team-other .staff-item:first-child {
  width: calc(100% - 20px);
}

#maikafantasia .cast-container .team-other .staff-item picture {
  width: 33.5%;
  max-width: 162px;
}

#maikafantasia .cast-container .staff-position {
  margin-bottom: 8px;
  font-size: min(20px,3.25vw);
  color: #fff;
  text-shadow: 0 0 10px #ff827f, 0 0 10px #ff827f, 0 0 10px #ff827f;
}

#maikafantasia .cast-container .staff-name {
  font-size: min(36px,6vw);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px #ff827f, 0 0 10px #ff827f, 0 0 10px #ff827f;
}

#maikafantasia .cast-container .team-pierceing .staff-position,
#maikafantasia .cast-container .team-pierceing .staff-name{
  text-shadow: 0 0 10px #ae7cee, 0 0 10px #ae7cee, 0 0 10px #ae7cee;
}

#maikafantasia .cast-container .team-loveri .staff-position,
#maikafantasia .cast-container .team-loveri .staff-name{
  text-shadow: 0 0 10px #d49300, 0 0 10px #d49300, 0 0 10px #d49300;
}

#maikafantasia .cast-container .team-muscle .staff-position,
#maikafantasia .cast-container .team-muscle .staff-name{
  text-shadow: 0 0 10px #e3655e, 0 0 10px #e3655e, 0 0 10px #e3655e;
}

#maikafantasia .cast-container .team-crystalia .staff-position,
#maikafantasia .cast-container .team-crystalia .staff-name{
  text-shadow: 0 0 10px #6b89f2, 0 0 10px #6b89f2, 0 0 10px #6b89f2;
}

#maikafantasia .cast-container .team-other .staff-position,
#maikafantasia .cast-container .team-other .staff-name{
  text-shadow: 0 0 10px #708092, 0 0 10px #708092, 0 0 10px #708092;
}

@media only screen and (min-width: 769px) {
  #maikafantasia section.page-top.type-staffcast{
    padding-bottom: 40px;
  }

  #maikafantasia .staff-container .staff-list{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1120px;
  }

  #maikafantasia .staff-container .staff-item{
    width: 100%;
  }

  #maikafantasia .cast-container {
    padding-bottom: 0;
  }

  #maikafantasia .cast-container .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
  }

  #maikafantasia .cast-container .member-container {
    min-height: 300px;
  }

  #maikafantasia .type-staffcast .team-container {
    margin: 0 20px 40px;
    max-width: 540px;
  }

  #maikafantasia .type-staffcast .team-container:hover {
    transform: translate3d(0,0,0);
    box-shadow: 3px 3px 10px 0 rgb(26,22,20,.35);
  }

  #maikafantasia .type-staffcast .team-container:last-child {
    /* margin-bottom: 0; */
  }

  #maikafantasia .cast-container .staff-list {
    height: 100%;
  }

}

/* ------------------------------------------------------------------------------------------------------------------
アバウト
------------------------------------------------------------------------------------------------------------------ */
#maikafantasia .type-about{
  overflow: hidden;
}

#maikafantasia .type-about h3{
  position: relative;
  margin: 0 auto 30px;
  max-width: 250px;
  font-size: 40px;
  text-align: center;
}

#maikafantasia .type-about h3 .title-en{
  padding-bottom: 10px;
  border-bottom: solid 1px #3f5070;
  box-sizing: border-box;
}

#maikafantasia .type-about h3 .title-jp{
  margin-top: 10px;
  font-size: 12px;
}

#maikafantasia .type-about .type-partdescription h3 .title-en{
  text-indent: -0.5em;
  white-space: nowrap;
}

#maikafantasia .type-about h4{
  position: relative;
  margin: 0 auto 30px;
  max-width: 250px;
  font-size: 40px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: solid 1px #3f5070;
  box-sizing: border-box;
  z-index: 1;
}

#maikafantasia .type-about .type-rhythm,
#maikafantasia .type-about .type-scenario,
#maikafantasia .type-about .type-screenshot{
  position: relative;
  margin-bottom: 50px;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

#maikafantasia .type-about .bg-text{
  position: absolute;
  top: -1.56vw;
  left: -6.6vw;
  writing-mode: vertical-rl;
  font-size: 53vw;
  color: #cae5f7;
  white-space: nowrap;
  opacity: 0;
  z-index: 0;
  transition: opacity .3s;
}

#maikafantasia .type-about .is-inview .bg-text{
  opacity: .6;
}

#maikafantasia .type-about .type-scenario .bg-text{
  top: -3.65vw;
  font-size: 44vw;
  color: #f5d9f1;
}

#maikafantasia .type-about .screenshot{
  position: relative;
  transform: translate3d(0,50px,0);
  padding: 5px;
  margin: 0 auto;
  width: 90%;
  height: 100%;
  background: linear-gradient(to right, #c9a849 0%, #ffffc1 50%, #c9a849 100%);
  border-radius: 10px;
  z-index: 1;
  box-shadow: 3px 3px 10px 0 rgb(26 22 20 / 35%);
  box-sizing: border-box;
  transition: opacity .3s .3s, transform .3s .3s ease;
  opacity: 0;
}

#maikafantasia .type-about .is-inview .screenshot{
  transform: translate3d(0,0,0);
  opacity: 1;
}

#maikafantasia .type-about .screenshot::before{
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-size: 13px 30px, 13px 30px, 80px 30px, auto;
  border-radius: 8px;
  box-shadow: 0 0 0 2px #fff inset, 0 0 0 3px #c49100 inset;
  box-sizing: border-box;
  z-index: -1;
}

#maikafantasia .type-about .screenshot .ss-inner{
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

#maikafantasia .type-about .part-text{
  position: relative;
  padding: 0 5%;
}

#maikafantasia .type-about .part-text p{
  margin-top: 1.5em;
  font-size: 3.52vw;
  line-height: 2em;
  white-space: nowrap;
}

#maikafantasia .type-about .part-text p span{
  position: relative;
  padding: 0 1vw;
  margin: 0 1vw;
  font-size: 4.3vw;
  font-weight: 700;
  color: rgba(255,255,255,0);
  z-index: 1;
  transition: color .3s;
}

#maikafantasia .type-about .is-inview .part-text p span{
  color: rgba(255,255,255,1);
}

#maikafantasia .type-about .is-inview .part-text p span:nth-of-type(1){ transition-delay: .4s; }
#maikafantasia .type-about .is-inview .part-text p span:nth-of-type(2){ transition-delay: .5s; }
#maikafantasia .type-about .is-inview .part-text p span:nth-of-type(3){ transition-delay: .6s; }
#maikafantasia .type-about .is-inview .part-text p span:nth-of-type(4){ transition-delay: .7s; }
#maikafantasia .type-about .is-inview .part-text p span:nth-of-type(5){ transition-delay: .8s; }
#maikafantasia .type-about .is-inview .part-text p span:nth-of-type(6){ transition-delay: .9s; }
#maikafantasia .type-about .is-inview .part-text p span:nth-of-type(7){ transition-delay: 1s; }
#maikafantasia .type-about .is-inview .part-text p span:nth-of-type(8){ transition-delay: 1.1s; }

#maikafantasia .type-about .part-text p span::before,
#maikafantasia .type-about .part-text p span::after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #3fa1e1;
  z-index: -1;
  transition: width .3s ease;
}

#maikafantasia .type-about .part-text p span.pt1::before,
#maikafantasia .type-about .part-text p span.pt1::after{ transition-delay: .3s }

#maikafantasia .type-about .part-text p span.pt2::before,
#maikafantasia .type-about .part-text p span.pt2::after{ transition-delay: .4s }

#maikafantasia .type-about .part-text p span.pt3::before,
#maikafantasia .type-about .part-text p span.pt3::after{ transition-delay: .5s }

#maikafantasia .type-about .part-text p span.pt4::before,
#maikafantasia .type-about .part-text p span.pt4::after{ transition-delay: .6s }

#maikafantasia .type-about .part-text p span.pt5::before,
#maikafantasia .type-about .part-text p span.pt5::after{ transition-delay: .7s }

#maikafantasia .type-about .part-text p span.pt6::before,
#maikafantasia .type-about .part-text p span.pt6::after{ transition-delay: .8s }

#maikafantasia .type-about .part-text p span.pt7::before,
#maikafantasia .type-about .part-text p span.pt7::after{ transition-delay: .9s }

#maikafantasia .type-about .part-text p span.pt8::before,
#maikafantasia .type-about .part-text p span.pt8::after{ transition-delay: 1s }

#maikafantasia .type-about .is-inview .part-text p span::before,
#maikafantasia .type-about .is-inview .part-text p span::after{
  width: 100%;
}

#maikafantasia .type-about .type-scenario .part-text p span::before,
#maikafantasia .type-about .type-scenario .part-text p span::after{
  background: #d18bc7;
}


#maikafantasia .type-about .part-text p span::after{
  top: 2px;
  left: 2px;
  opacity: .35;
}

#maikafantasia .type-about .type-screenshot{
  position: relative;
  width: 100%;
  background: #fff;
}

#maikafantasia .type-about .type-screenshot::before{
  content: '';
  display: block;
  padding-top: 164.84%;
}

#maikafantasia .type-about .type-screenshot .inner{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#maikafantasia .type-about .type-screenshot .bg-text{
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffdde8;
  opacity: 0;
  transition: opacity .3s;
}

#maikafantasia .type-about .type-screenshot .bg-text p{
  position: absolute;
  top: 0;
  font-size: 16vw;
}

#maikafantasia .type-about .type-screenshot .bg-text p:first-child{
  right: -5.5%;
}

#maikafantasia .type-about .type-screenshot .bg-text p:last-child{
  left: -2%;
}

#maikafantasia .type-about .type-screenshot .is-inview .bg-text{
  opacity: .6;
}

#maikafantasia .type-about .type-screenshot .ss-container{
  position: relative;
}

#maikafantasia .type-about .type-screenshot .ss{
  position: absolute;
  border-radius: 11px;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s;
}

#maikafantasia .type-about .type-screenshot .is-inview .ss{
  opacity: 1;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(1) .ss{ transition-delay: .3s; }
#maikafantasia .type-about .type-screenshot picture:nth-of-type(2) .ss{ transition-delay: .4s; }
#maikafantasia .type-about .type-screenshot picture:nth-of-type(3) .ss{ transition-delay: .5s; }
#maikafantasia .type-about .type-screenshot picture:nth-of-type(4) .ss{ transition-delay: .6s; }
#maikafantasia .type-about .type-screenshot picture:nth-of-type(5) .ss{ transition-delay: .7s; }
#maikafantasia .type-about .type-screenshot picture:nth-of-type(6) .ss{ transition-delay: .8s; }
#maikafantasia .type-about .type-screenshot picture:nth-of-type(7) .ss{ transition-delay: .9s; }
#maikafantasia .type-about .type-screenshot picture:nth-of-type(8) .ss{ transition-delay: 1s; }
#maikafantasia .type-about .type-screenshot picture:nth-of-type(9) .ss{ transition-delay: 1.1s; }

#maikafantasia .type-about .type-screenshot picture:nth-of-type(1) .ss{
  top: 7.81vw;
  left: 4.95%;
  width: 48.44%;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(2) .ss{
  top: 7.81vw;
  right: 4.95%;
  width: 38.67%;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(3) .ss{
  top: 38.15vw;
  left: 4.95%;
  width: 38.67%;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(4) .ss{
  top: 38.15vw;
  right: 4.95%;
  width: 48.44%;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(5) .ss{
  top: 62.89vw;
  left: 4.95%;
  width: 27.86%;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(6) .ss{
  top: 97.27vw;
  left: 4.95%;
  width: 41.41%;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(7) .ss{
  top: 94.79vw;
  right: 4.95%;
  width: 45.83%;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(8) .ss{
  top: 141.41vw;
  left: 4.95%;
  width: 27.86%;
}

#maikafantasia .type-about .type-screenshot picture:nth-of-type(9) .ss{
  top: 123.57vw;
  right: 4.95%;
  width: 59.38%;
}

#maikafantasia .type-about .catchcopy{
  font-size: 6.51vw;
  color: #fff;
}

#maikafantasia .type-about .catchcopy p{
  position: absolute;
  transform: skewY(-10deg);
  padding: .12em .3em .2em;
  font-weight: 700;
  z-index: 1;
}

#maikafantasia .type-about .catchcopy p::before,
#maikafantasia .type-about .catchcopy p::after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ff87af;
  z-index: -1;
  transition: width .3s ease;
}

#maikafantasia .type-about .is-inview .catchcopy p::before,
#maikafantasia .type-about .is-inview .catchcopy p::after{
  width: 100%;
}

#maikafantasia .type-about .is-inview .catchcopy p:first-child::before,
#maikafantasia .type-about .is-inview .catchcopy p:first-child::after{ transition-delay: .9s; }

#maikafantasia .type-about .is-inview .catchcopy p:last-child::before,
#maikafantasia .type-about .is-inview .catchcopy p:last-child::after{ transition-delay: 1.2s; }

#maikafantasia .type-about .catchcopy p::after{
  top: 3px;
  left: 3px;
  opacity: .35;
}

#maikafantasia .type-about .catchcopy p span{
  font-style: italic;
}

#maikafantasia .type-about .catchcopy p span.margin{
  margin-left: -.5em;
}

#maikafantasia .type-about .catchcopy p:first-child{
  top: 74vw;
  left: 4.95%;
}

#maikafantasia .type-about .catchcopy p:last-child{
  top: 81.5vw;
  right: 4.95%;
}

#maikafantasia .type-about .type-thankyou{
  position: relative;
  margin-top: 22.14vw;
  width: 100%;
}

#maikafantasia .type-about .type-thankyou::before{
  content: '';
  display: block;
  padding-top: 51.82%;
}

#maikafantasia .type-about .type-thankyou .inner{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

#maikafantasia .type-about .type-thankyou .bg-text{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 16.64vw;
  color: #ffdde8;
  text-align: center;
  writing-mode: horizontal-tb;
  overflow: hidden;
}

#maikafantasia .type-about .type-thankyou .bg-text p{
  position: absolute;
}

#maikafantasia .type-about .type-thankyou .bg-text p:first-child{
  top: .8vw;
  left: 33%;
  line-height: .5em;
}

#maikafantasia .type-about .type-thankyou .bg-text p:last-child{
  bottom: .3vw;
  left: 22.5%;
  line-height: .7em;
}

#maikafantasia .type-about .type-thankyou .bg-text p span{
  font-style: italic;
}

#maikafantasia .type-about .thankyou-pic img{
  position: absolute;
  bottom: 0;
}

#maikafantasia .type-about .thankyou-pic picture:first-child img{
  left: -7.03%;
  width: 39.97%;
}

#maikafantasia .type-about .thankyou-pic picture:last-child img{
  right: -4.17%;
  width: 34.24%;
}

#maikafantasia .type-about .thankyou-text p{
  position: absolute;
  top: 20vw;
  left: 50%;
  transform: translate3d(-50%,0,0);
  padding: .12em 1.6em .2em;
  font-size: 6.51vw;
  white-space: nowrap;
  color: #fff;
  z-index: 1;
}

#maikafantasia .type-about .thankyou-text p::before,
#maikafantasia .type-about .thankyou-text p::after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%,0,0);
  width: 0;
  height: 100%;
  background: #ff87af;
  z-index: -1;
  transition: width .3s .3s ease;
}

#maikafantasia .type-about .is-inview .thankyou-text p::before,
#maikafantasia .type-about .is-inview .thankyou-text p::after{
  width: 100%;
}

#maikafantasia .type-about .thankyou-text p::after{
  top: 3px;
  left: calc(50% + 3px);
  opacity: .35;
}

#maikafantasia .type-about .type-thankyou .c-inview{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

@media only screen and (min-width: 769px) {
  #maikafantasia .type-about .section-content{
    margin-top: 80px;
  }

  #maikafantasia .type-about .type-partdescription{
    padding-top: 80px;
  }

  #maikafantasia .type-about .type-partdescription .section-content{
    margin-top: 50px;
  }

  #maikafantasia .type-about .type-rhythm .section-content,
  #maikafantasia .type-about .type-scenario .section-content{
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
  }

  #maikafantasia .type-about .type-rhythm .section-content{
    flex-direction: row-reverse;
  }

  #maikafantasia .type-about .bg-text{
    left: 50%;
    transform: translate3d(-50%,0,0);
    writing-mode: horizontal-tb;
  }

  #maikafantasia .type-about .type-rhythm .bg-text,
  #maikafantasia .type-about .type-scenario .bg-text{
    top: auto;
    bottom: -53px;
    font-size: 421px;
  }

  #maikafantasia .type-about .screenshot{
    margin: 0;
    width: 50%;
  }

  #maikafantasia .type-about .type-rhythm .part-text{
    padding: 0 20px 0 0;
    width: 50%;
    box-sizing: border-box;
  }

  #maikafantasia .type-about .type-scenario .part-text{
    padding: 0 0 0 20px;
  }

  #maikafantasia .type-about .part-text p{
    font-size: 20px;
    white-space: normal;
  }

  #maikafantasia .type-about .part-text p:first-child{
    margin-top: 0;
  }

  #maikafantasia .type-about .part-text p span{
    padding: 0 7px;
    margin: 0 7px;
    font-size: 25px;
    white-space: nowrap;
  }

  #maikafantasia .type-about .type-screenshot::before{
    display: none;
  }

  #maikafantasia .type-about .type-screenshot .inner{
    position: relative;
    margin: 0 auto;
    width: min(100%,1200px);
    height: min(56.17vw,674px);
    overflow: initial;
  }

  #maikafantasia .type-about .type-screenshot .bg-text{
    top: auto;
    left: 50%;
  }

  #maikafantasia .type-about .type-screenshot .bg-text p{
    font-size: 185px;
    transform: translate3d(-50%,0,0);
  }

  #maikafantasia .type-about .type-screenshot .bg-text p:first-child{
    top: -69px;
    left: 50%;
    right: auto;
  }

  #maikafantasia .type-about .type-screenshot .bg-text p:last-child{
    top: auto;
    left: 50%;
    bottom: -23px;
  }

  #maikafantasia .type-about .type-screenshot .ss{
    border-radius: 20px;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(1) .ss{
    top: min(4.17vw,50px);
    left: 1.67%;
    width: 27.17%;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(2) .ss{
    top: min(4.17vw,50px);
    right: 47.83%;
    width: 21.67%;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(3) .ss{
    top: min(21.17vw,254px);
    left: 1.67%;
    width: 21.67%;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(4) .ss{
    top: min(4.17vw,50px);
    right: 1.67%;
    width: 27.17%;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(5) .ss{
    top: min(4.17vw,50px);
    left: 53.83%;
    width: 15.58%;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(6) .ss{
    top: min(36.58vw,439px);
    left: 33.17%;
    width: 27.17%;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(7) .ss{
    top: min(35.08vw,421px);
    right: 68.5%;
    width: 29.83%;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(8) .ss{
    top: min(21.17vw,254px);
    left: 82.75%;
    width: 15.58%;
  }

  #maikafantasia .type-about .type-screenshot picture:nth-of-type(9) .ss{
    top: min(31.42vw,377px);
    right: 1.67%;
    width: 36.33%;
  }

  #maikafantasia .type-about .catchcopy{
    height: 100%;
    font-size: min(4.17vw,50px);
  }

  #maikafantasia .type-about .catchcopy p:first-child{
    top: min(21.25vw,255px);
    left: 14%;
  }

  #maikafantasia .type-about .catchcopy p:last-child{
    top: min(24.33vw,292px);
    right: 14%;
  }

  #maikafantasia .type-about .type-thankyou{
    margin-top: 200px;
    height: min(33.17vw,398px);
    background: #fff;
  }

  #maikafantasia .type-about .type-thankyou::before{
    display: none;
  }

  #maikafantasia .type-about .type-thankyou .inner{
    position: relative;
    margin: 0 auto;
    width: min(100%,1200px);
    height: 100%;
    background: none;
  }

  #maikafantasia .type-about .thankyou-pic picture:first-child img{
    left: 3.75%;
    width: 25.5%;
  }

  #maikafantasia .type-about .thankyou-pic picture:last-child img{
    right: 7.33%;
    width: 21.92%;
  }

  #maikafantasia .type-about .thankyou-text p{
    top: min(8.33vw,100px);
    font-size: min(4.17vw,50px);
  }

  #maikafantasia .type-about .type-thankyou .bg-text{
    display: flex;
    align-items: flex-end;
    padding: 0 20px;
    top: auto;
    left: 50%;
    transform: translate3d(-50%,0,0);
    width: auto;
    font-size: 200px;
  }

  #maikafantasia .type-about .type-thankyou .bg-text br{ display: none; }

  #maikafantasia .type-about .type-thankyou .bg-text p{
    position: relative;
  }

  #maikafantasia .type-about .type-thankyou .bg-text p:first-child,
  #maikafantasia .type-about .type-thankyou .bg-text p:last-child{
    top: auto;
    left: auto;
    bottom: 75px;
    line-height: 0;
  }

  #maikafantasia .type-about .type-thankyou .bg-text p:last-child{
    margin-left: 80px;
  }

}
