@charset "UTF-8";

/* common
--------------------------------------------------*/
.c-f2d025 { color: #f2d025; }
.c-fff    { color: #fff; }

.p0 { padding: 0 !important; }
.m0 { margin: 0 !important; }

/* header menu
--------------------------------------------------*/
.navbar .navbar-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: url(../img/common/btn_menu.png) 0 0 no-repeat;
  -webkit-background-size: 42px 42px;
  -mox-background-size: 42px 42px;
  background-size: 42px 42px;
}
.navbar .arrow {
  position: relative;
  top: -2px;
  left: .5em;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #a7a7a7;
  border-right: 3px solid #a7a7a7;
  border-radius: 2px;
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.navbar .left {
  left: -.5em;
  margin-left: .5em;
}
.navbar .navbar-nav > li > a:hover .arrow,
.navbar .navbar-nav > li > a:focus .arrow,
.navbar .dropdown-menu > li > a:hover .arrow,
.navbar .dropdown-menu > li > a:focus .arrow { border-color: #fff; }

/* スケジュールアイコン */
.icon--schedule {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 1;
  margin-left: -250px;
  -webkit-transform: translateX(-50%);
  -moz-transform:    translateX(-50%);
  -ms-transform:     translateX(-50%);
  transform:         translateX(-50%);
}
.icon--schedule:after,
.icon--schedule a {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
  backface-visibility:         hidden;

  -webkit-perspective: 1000;
  -moz-perspective:    1000;
  -ms-perspective:     1000;
  perspective:         1000;

  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  -ms-transform:     translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
}
.icon--schedule a {
  position: relative;
  display: block;
  width: 135px;
  height: 167px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: url(../img/icon_schedule.png) 0 0 no-repeat;
  -webkit-background-size: 135px 167px;
  -moz-background-size: 135px 167px;
  background-size: 135px 167px;
  text-indent: -99999px;
  -webkit-animation: bounce ease-in .9s infinite;
  -moz-animation:    bounce ease-in .9s infinite;
  -ms-animation:     bounce ease-in .9s infinite;
  animation:         bounce ease-in .9s infinite;
}
@-webkit-keyframes bounce {
  0%   { -webkit-transform: translateY(0); }
  12%  { -webkit-transform: translateY(-2px); }
  32%  { -webkit-transform: translateY(-3px); }
  89%  { -webkit-transform: translateY(1px); }
  100% { -webkit-transform: translateY(0); }
}
@-moz-keyframes bounce {
  0%   { -moz-transform: translateY(0); }
  12%  { -moz-transform: translateY(-2px); }
  32%  { -moz-transform: translateY(-3px); }
  89%  { -moz-transform: translateY(1px); }
  100% { -moz-transform: translateY(0); }
}
@-ms-keyframes bounce {
  0%   { -ms-transform: translateY(0); }
  12%  { -ms-transform: translateY(-2px); }
  32%  { -ms-transform: translateY(-3px); }
  89%  { -ms-transform: translateY(1px); }
  100% { -ms-transform: translateY(0); }
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  12%  { transform: translateY(-2px); }
  32%  { transform: translateY(-3px); }
  89%  { transform: translateY(1px); }
  100% { transform: translateY(0); }
}
.icon--schedule:after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 133px;
  height: 47px;
  content: "";
  opacity: .96;
  background: url(../img/icon_schedule_shadow.png) 0 0 no-repeat;
  -webkit-background-size: 133px 47px;
  -moz-background-size: 133px 47px;
  background-size: 133px 47px;
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin:    0 50%;
  -ms-transform-origin:     0 50%;
  transform-origin:         0 50%;

  -webkit-transform: scale(.98) translateX(-50%);
  -moz-transform:    scale(.98) translateX(-50%);
  -ms-transform:     scale(.98) translateX(-50%);
  transform:         scale(.98) translateX(-50%);

  -webkit-animation: bounce-shadow ease-in .9s infinite;
  -moz-animation:    bounce-shadow ease-in .9s infinite;
  -ms-animation:     bounce-shadow ease-in .9s infinite;
  animation:         bounce-shadow ease-in .9s infinite;
}
@-webkit-keyframes bounce-shadow {
  0%   { -webkit-transform: scale(.98) translateX(-50%); opacity: .96 }
  12%  { -webkit-transform: scale(.96) translateX(-50%); opacity: .92 }
  32%  { -webkit-transform: scale(.94) translateX(-50%); opacity: .88 }
  89%  { -webkit-transform: scale(1)   translateX(-50%); opacity: 1 }
  100% { -webkit-transform: scale(.98) translateX(-50%); opacity: .96 }
}
@-moz-keyframes bounce-shadow {
  0%   { -mox-transform: scale(.98) translateX(-50%); opacity: .96 }
  12%  { -mox-transform: scale(.96) translateX(-50%); opacity: .92 }
  32%  { -mox-transform: scale(.94) translateX(-50%); opacity: .88 }
  89%  { -mox-transform: scale(1)   translateX(-50%); opacity: 1 }
  100% { -mox-transform: scale(.98) translateX(-50%); opacity: .96 }
}
@-ms-keyframes bounce-shadow {
  0%   { -ms-transform: scale(.98) translateX(-50%); opacity: .96 }
  12%  { -ms-transform: scale(.96) translateX(-50%); opacity: .92 }
  32%  { -ms-transform: scale(.94) translateX(-50%); opacity: .88 }
  89%  { -ms-transform: scale(1)   translateX(-50%); opacity: 1 }
  100% { -ms-transform: scale(.98) translateX(-50%); opacity: .96 }
}
@keyframes bounce-shadow {
  0%   { transform: scale(.98) translateX(-50%); opacity: .96 }
  12%  { transform: scale(.96) translateX(-50%); opacity: .92 }
  32%  { transform: scale(.94) translateX(-50%); opacity: .88 }
  89%  { transform: scale(1)   translateX(-50%); opacity: 1 }
  100% { transform: scale(.98) translateX(-50%); opacity: .96 }
}
.icon--schedule a:hover { background-color: rgba(0,0,0,0) !important; }

@media (max-width: 767px) {
  .navbar-default .container {
    width: 100%;
    min-height: 58px;
  }
  .icon--schedule {
    top: -47px;
    left: 10px;
    margin: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .icon--schedule a {
    width: 80px;
    height: 99px;
    -webkit-background-size: 80px 99px;
    -moz-background-size: 80px 99px;
    background-size: 80px 99px;
  }
  .icon--schedule:after {
    bottom: -20px;
    width: 78px;
    height: 28px;
    -webkit-background-size: 78px 28px;
    -moz-background-size: 78px 28px;
    background-size: 78px 28px;
  }
}

@media (min-width: 768px) {
  .navbar-default .navbar-collapse {
    padding: 0;
    text-align: center;
  }
  .navbar-nav {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
  .navbar-nav > li > .dropdown-menu { border: 1px solid #333; }

  .navbar-nav > li > .dropdown-menu a {
    padding: 1em;
    border-bottom: 1px solid #333;
    text-decoration: none;
  }
  /* 画面が狭いとスキル・アビリティが見切れてしまう対応 */
  .navbar-nav .dropdown.skill .dropdown-submenu .dropdown-menu {
    left: -182px;
    width: 184px;
  }
  .navbar-nav .dropdown.ability .dropdown-submenu .dropdown-menu {
    left: -242px;
    width: 244px;
  }
  .dropdown-menu { font-size: 12px; }
}


@media (min-width: 1030px) {
  .navbar-nav {
    font-size: 12px;
  }  
}
@media (min-width: 768px) and (max-width: 1030px) {
  .navbar-nav {
    font-size: 11px;
  }
}
/* flex slider
--------------------------------------------------*/
.flexslider-wrap {
  position: relative;
  padding: 20px;
  background: #1e1e1e;
}
.flexslider-wrap .flexslider {
  max-width: 900px;
  margin: 0 auto;
  background: #1e1e1e;
}
.flexslider-wrap img { padding: 0 10px; }
.flexslider-wrap .news_badge {
  position: absolute;
  top: -35px;
  left: 50%;
  width: 90px;
  height: 90px;
  margin-left: -40.77669902912621%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100%;
  background: #1e1e1e;
  color: #fff863;
  font-weight: bold;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) inset;
}
.flexslider-wrap .news_badge:after {
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 50px;
  content: "";
  background: #1e1e1e;
}
.flexslider-wrap .news_badge p {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -18px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 18px;
}
.flexslider-wrap .flex-caption {
  display: table;
  text-align: left;
  margin: 0 10px;
  font-size: 12px;
}
.flexslider-wrap .flex-caption p {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .flexslider-wrap {
    padding-bottom: 15px;
    overflow: hidden;
  }
  .flexslider-wrap .news_badge { display: none; }
  .flexslider-wrap .flex-prev {
    position: absolute;
    top: 10px;
    left: -20px !important;
    width: 41px;
    height: 80px;
    margin: 0;
    opacity: 1;
    background: url(../img/common/flex_nav_arrow_sp.png) 0 0 no-repeat;
    -webkit-background-size: 41px 80px;
    -moz-background-size: 41px 80px;
    background-size: 41px 80px;
  }
  .flexslider-wrap .flex-next {
    position: absolute;
    top: 10px;
    right: -20px !important;
    width: 41px;
    height: 80px;
    margin: 0;
    opacity: 1;
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background: url(../img/common/flex_nav_arrow_sp.png) 0 0 no-repeat;
    -webkit-background-size: 41px 80px;
    -moz-background-size: 41px 80px;
    background-size: 41px 80px;
  }
}

@media (min-width: 768px) {
  .flexslider-wrap .flexslider { max-width: 840px; }
  .flexslider-wrap .flex-prev {
    position: absolute;
    top: 50%;
    left: 50% !important;
    width: 41px;
    height: 80px;
    margin: 0 0 0 -51.5%;
    opacity: 1;
    -moz-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
    background: url(../img/common/flex_nav_arrow_pc.png) 0 0 no-repeat;
    -webkit-background-size: 41px 80px;
    -moz-background-size: 41px 80px;
    background-size: 41px 80px;
  }
  .flexslider-wrap .flex-next {
    position: absolute;
    top: 50%;
    right: 50% !important;
    width: 41px;
    height: 80px;
    margin: 0 -56.5% 0 0;
    opacity: 1;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../img/common/flex_nav_arrow_pc.png) 0 0 no-repeat;
    -webkit-background-size: 41px 80px;
    -moz-background-size: 41px 80px;
    background-size: 41px 80px;
  }
}

/* store
--------------------------------------------------*/
.footer-store {
  width: 100%;
  padding: 20px 0;
  background: #2d2d2d;
  text-align: center;
}
.footer-store [class*="btn_"] {
  display: inline-block;
  width: 220px;
  height: 80px;
  vertical-align: top;
}
.footer-store .btn_app-store {
  background: url(../img/common/btn_app-store.png) 0 0 no-repeat;
  margin-right: 20px;
}
.footer-store .btn_google-play {
  background: url(../img/common/btn_google-play.png) 0 0 no-repeat;
}

@media (max-width: 499px) {
  .footer-store { padding: 4% 0; }
  .footer-store [class*="btn_"] {
    width: 44%;
    height: auto;
    padding-top: 16%;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .footer-store .btn_app-store { margin-right: 4%; }
}

/* footer
--------------------------------------------------*/
.footer {
  padding: 75px 15px 15px;
  background: url(../img/common/logo_cz.png) 50% 10px no-repeat #000;
  color: #fff;
  text-align: center;
}
.footer .copy-rights { padding: 0; }
.footer .copy-rights:first-letter { font-family: arial; }
.footer .annotation { font-size: 10px; }
.footer .anchor {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer .annotation > span { display: block; }
}

@media (min-width: 768px) {
  .footer .annotation > span { display: inline; }
  .footer .annotation > span:last-of-type { display: block; }
}

/* wiki top
--------------------------------------------------*/
.wiki-top-header > h1 {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0;
  background: url(../img/wiki/top/bg_header.jpg) 50% 50% no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  text-align: center;
}
.wiki-top-header > h1 > img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.wiki-top-header-nav {
  position: relative;
  width: 100%;
  height: 226px;
  background: url(../img/wiki/top/bg_nav.jpg) 0 0;
  text-align: center;
}
.wiki-top-header-nav .btn-beginner {
  position: absolute;
  top: 5%;
  left: 46%;
  width: 97px;
  height: 111px;
  margin: -239px 0px 0px 290px;
  background: url(../img/wiki/top/btn_beginner.png) 0 0 no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wiki-top-header-nav .btn-question {
  position: absolute;
  top: 55%;
  left: 46%;
  width: 108px;
  height: 111px;
  margin: -239px 0px 0px 290px;
  background: url(../img/wiki/top/btn_question.png) 0 0 no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.wiki-top-header-nav .btn-schedule,
.wiki-top-header-nav .btn-simulator {
  position: relative;
  display: inline-block;
}
.wiki-top-header-nav .btn-schedule {
  top: -60px;
  width: 280px;
  height: 279px;
  margin-right: 0px;
  background: url(../img/wiki/top/btn_schedule.png) 0 0 no-repeat;
}
.wiki-top-header-nav .btn-simulator {
  top: -66px;
  width: 270px;
  height: 272px;
  background: url(/resource/wiki_res/images/simulator/help/Simulator_Top_Button.png) 0 0 no-repeat;
}
.wiki-top-contents {
  display: table;
  padding: 0;
  margin: 10px auto 80px;
  list-style: none;
}
.wiki-top-contents a { display: inline-block; }
.wiki-top-contents [class*="btn-"] { vertical-align: bottom; }
.wiki-top-contents .row2 { margin-top: 5px; }
.wiki-top-contents .row3 { margin-top: 15px; }

@media (min-width: 320px) and (max-width: 767px) {
  .wiki-top-contents {
    width: 70.27379400260756%;
    min-width: 302px;
    margin: 1.855287569573284% auto 6.25%;
  }
  .row2 a {
    width: 49.2%;
    height: auto;
  }
  .row3 a {
    width: 32.3%;
    height: auto;
  }
  [class*="row"] img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .wiki-top-header > h1 { height: 150px; }
  .wiki-top-header > h1 > img {
    width: 151px;
    height: 130px;
    margin-top: 0;
  }
  .wiki-top-header-nav {
    height: 138px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .wiki-top-header-nav .btn-beginner{
    top: 125px;
    width: 65px;
    height: 73px;
    margin-left: 130px;
  }

  .wiki-top-header-nav .btn-question{
    top: 196px;
    width: 65px;
    height: 68px;
    margin-left: 130px;
  }
  
  .wiki-top-header-nav .btn-schedule,
  .wiki-top-header-nav .btn-simulator {
    top: -10px;
    width: 135px;
    height: 136px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }
  .wiki-top-header-nav .btn-schedule {
    margin-right: 7px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wiki-top-header > h1 {
    height: 29.296875%;
    padding-top: 29.296875%;
  }
  .wiki-top-header > h1 > img {
    width: 24.609375%;
    height: auto;
  }
  .wiki-top-header-nav { height: 22.0703125%; }
  .wiki-top-header-nav .btn-beginner,
  .wiki-top-header-nav .btn-question{
    width: 9.472656%;
    padding-top: 10.83984375%;
    margin: -23.33984375% 0 0 28.3203125%;
  }
  .wiki-top-header-nav .btn-beginner,
  .wiki-top-header-nav .btn-schedule,
  .wiki-top-header-nav .btn-simulator,
  .wiki-top-header-nav .btn-question {
    height: 0;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .wiki-top-header-nav .btn-schedule {
    top: 0;
    width: 27.34375%;
    padding-top: 27.24609375%;
    margin-top: -5.859375%;
  }
  .wiki-top-header-nav .btn-simulator {
    top: -4px;
    width: 26.3671875%;
    padding-top: 26.5625%;
    margin-top: -6.4453125%;
  }
  .wiki-top-header-nav .btn-schedule {
    margin-right: 0%;
  }
}

@media (min-width: 1024px) {
  .wiki-top-header > h1 {
    width: 100%;
    height: 300px;
  }
}

/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* responsive SP (under 768px)
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/*@media (max-width: 768px) {}*/

/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* responsive PC (over 768px)
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
@media (min-width: 768px) {
  a:hover:not(.no-alpha),
  .flexslider .slides li:hover:not(.no-alpha) {
    opacity: .9;
    filter: alpha(opacity=90);
    -ms-filter: "alpha(opacity=90)";
  }
}

/* common
--------------------------------------------------*/
a,
a:hover,
a:focus { outline: none; }

@media (min-width: 768px) {
  body{background-color:#F0F0F0;}
  .container_wiki{
    width:830px;
    padding-left:15px;
    padding-right:15px;
    margin-left:auto;
    margin-right:auto;
  }
}
@media (max-width: 767px) {
  body{background-color:#FFFFFF;}
  .container_wiki{
    padding-left:15px;
    padding-right:15px;
  }
}
.color_force { color: #FFD200; }
[class*="monsterAttribute"] { background-image: url(../img/monster_attr_sprite.png); }
[class*="monsterSpecies"] { background-image: url(../img/monster_spec_sprite.png); }
.monsterIconFrame {
  background-image:url(/resource/wiki_res/images/NormalBorder/Border_Normal.png);
  -webkit-background-size:cover;
  -moz-background-size:cover;
  background-size:cover;
}
.rarityImage {
  background-image:url(../img/common/icon_star.png);
  -webkit-background-size:contain;
  -moz-background-size:contain;
  background-size:contain;
  background-repeat:repeat-x;
}
.rarityImage2 {
  background-image:url(../img/common/icon_star2.png);
  -webkit-background-size:contain;
  -moz-background-size:contain;
  background-size:contain;
  background-repeat:repeat-x;
}

/* parts
--------------------------------------------------*/
.heading-box {
  position: relative;
  width: 480px;
  padding: 12px 5px;
  margin: 0 auto;
  list-style: none;
  background: url(../img/frame_middle.png) 0 0 repeat-y, url(../img/bg_stone-pavement.jpg) 0 0;
  -webkit-background-size: 100% 2px, 100px 100px;
  -moz-background-size: 100% 2px, 100px 100px;
  background-size: 100% 2px, 100px 100px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
}
.heading-box:before,
.heading-box:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 12px;
  content: "";
}
.heading-box:before {
  top: 0;
  background: url(../img/frame_top.png) 0 0 no-repeat;
  -webkit-background-size: 100% 12px;
  -moz-background-size: 100% 12px;
  background-size: 100% 12px;
}
.heading-box:after {
  bottom: 0;
  background: url(../img/frame_bottom.png) 0 0 no-repeat;
  -webkit-background-size: 100% 12px;
  -moz-background-size: 100% 12px;
  background-size: 100% 12px;
}
.heading-box li {
  height: 34px;
  line-height: 34px;
}
.heading-box.ability .title { height: 98px; }
.heading-box.ability img {
  display: block;
  margin: auto;
}
.heading-box li + li { border-top: 1px solid #544f50; }
.heading-box li:first-of-type { margin-top: -5px; }
.heading-box li:last-of-type { margin-bottom: -5px; }
.heading-box li.anchor:empty,
.heading-box li.description:empty { display: none; }
.heading-box .title { color: #f9Cf3b; }
.heading-box .anchor a {
  display: block;
  color: #fff;
  text-decoration: underline;
}
.heading-box .attr {
  position: absolute;
  top: -10px;
  left: -5px;
  height: 42px;
}
.heading-box .number {
  position: relative;
  bottom: -14px;
  display: inline-block;
  color: #f9Cf3b;
  font-size: 16px;
}
.heading-box .number > span { font-size: 10px; }

.heading-box li.description {
  height: auto;
  line-height: 15px;
  padding: 10px 5px 10px 5px;
  text-align: left;
}

@media (max-width: 767px) {
  .heading-box {
    width: 100%;
    padding: 4px 0;
    background: url(../img/bg_stone-pavement.jpg) 0 0;
    -webkit-background-size: 100px 100px;
    -moz-background-size: 100px 100px;
    background-size: 100px 100px;
    border-radius: 0;
    font-size: 13px;
  }
  .heading-box:before,
  .heading-box:after {
    height: 4px;
    background: url(../img/bg_stone-pavement_sp.jpg);
    -webkit-background-size: 100% 61px;
    -moz-background-size: 100% 61px;
    background-size: 100% 61px;
  }
  .heading-box li {
    height: 1.75em;
    line-height: 1.75em;
  }
  li.link-description {
    height: auto;
    line-height: 15px;
  }
  .heading-box.ability .title { height: 78px; }
  .heading-box.ability img {
    width: 60px;
    height: 60px;
  }
  .heading-box:before {
    top: 0;
    background-position: 0 1px;
    background-repeat: no-repeat;
  }
  .heading-box:after {
    bottom: 0;
    background-position: 0 -59px;
    background-repeat: no-repeat;
  }
  .heading-box li:first-of-type {
    margin-top: 2px;
    color: #f9Cf3b;
  }
  .heading-box li:last-of-type { margin-bottom: 0; }
  .heading-box .attr img {
    width: 25px;
    height: 25px;
  }
  .heading-box .number { display: none; }
  .heading-box .attr {
    top: -15px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .heading-box li.description {
    height: auto;
  }
}

/* header
--------------------------------------------------*/
.header_wiki_s { position: relative; }
.header_wiki_s .inner {
  background-position: center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  overflow: hidden;
}
.header_wiki_s h1 { margin: 0; }
.header_wiki_s h1 > a {
  display: block;
  height: 100%;
}
.header_wiki_s .logoImage {
  margin: 0 auto;
  background-repeat: no-repeat;
  background-image: url(../img/wiki/titleLogo_s.png);
}
@media (min-width: 768px) {
  .header_wiki_s .inner {
    height: 150px;
    background-image: url(../img/wiki/pc/header_bg.jpg);
  }
  .header_wiki_s .logoImage {
    -webkit-background-size: 134px 116px;
    -moz-background-size: 134px 116px;
    background-size: 134px 116px;
    height: 116px;
    width: 134px;
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .header_wiki_s .inner {
    height: 92px;
    background-image: url(../img/wiki/sp/header_bg.jpg);
  }
  .header_wiki_s .logoImage {
    -webkit-background-size: 84px 72px;
    -moz-background-size: 84px 72px;
    background-size: 84px 72px;
    height: 72px;
    width: 84px;
    margin-top: 10px;
  }
}
.header_titleIcon {
  padding: 10px 0;
  margin: 0;
  text-align: center;
}
.header_titleIcon .titleIcon_wrapper {
  text-align: center;
  vertical-align: bottom;
}
.header_titleIcon .titleIcon {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .header_titleIcon .titleIcon.ability  { width: 120px; }
  .header_titleIcon .titleIcon.monster  { width: 117px; }
  .header_titleIcon .titleIcon.skill    { width: 117px; }
  .header_titleIcon .titleIcon.qa       { width: 118px; }
  .header_titleIcon .titleIcon.beginner { width: 126px; }
  .header_titleIcon .titleIcon.schedule { width: 149px; }
}
@media (max-width: 767px) {
  .header_titleIcon { padding: 5px 0; }
  .header_titleIcon .titleIcon.ability  { width: 97px; }
  .header_titleIcon .titleIcon.monster  { width: 94px; }
  .header_titleIcon .titleIcon.skill    { width: 94px; }
  .header_titleIcon .titleIcon.qa       { width: 95px; }
  .header_titleIcon .titleIcon.beginner { width: 102px; }
  .header_titleIcon .titleIcon.schedule { width: 120px; }
}

/* footer
--------------------------------------------------*/
.footer_wiki_store {
  background-color: #2D2D2D;
  text-align: center;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.footer_wiki_store .dlBtn {
  display: inline-block;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.footer_wiki_store .dlBtn:first-child { margin-left: 0; }
.footer_wiki_store .dlBtn.ios { background-image: url(../img/common/btn_app-store.png); }
.footer_wiki_store .dlBtn.android { background-image: url(../img/common/btn_google-play.png); }
@media (min-width: 768px) {
  .footer_wiki_store {
    height: 80px;
    padding: 20px 0;
  }
  .footer_wiki_store .dlBtn {
    width: 220px;
    height: 80px;
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer_wiki_store {
    height: 40px;
    padding: 15px 0;
  }
  .footer_wiki_store .dlBtn {
    width: 110px;
    height: 40px;
    margin-left: 10px;
  }
}

/* pageing
--------------------------------------------------*/
/*
  .div-pager .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .div-pager .page-numbers li {
    margin: 0 2px;
    padding: 0;
    background:#1E1E1E;
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 10px;
    list-style-type:none;
  }
  .div-pager .page-numbers li a{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    text-decoration: none;
  }
  .div-pager .page-numbers li a:hover,
  .div-pager .page-numbers li a.active{
    color: #000;
    background: #ccf;
    border-radius: 10px;
  }
  .div-pager .page-numbers .current {
    color: #fff;
    background-color: #0f5474;
    border: 1px solid #0f5474;
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 10px;
  }
  .div-pager .page-numbers .dots {
    color: #fff;
    background-color: #1E1E1E;
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 10px;
  }

@media (max-width: 767px) {
  .div-pager .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .div-pager .page-numbers li {
    margin: 0 2px;
    padding: 0;
    background:#1E1E1E;
    width: 35px;
    height: 35px;
    text-align: center;
    position: relative;
    border-radius: 10px;
    list-style-type:none;
  }
  .div-pager .page-numbers li a{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    text-decoration: none;
  }
  .div-pager .page-numbers li a:hover,
  .div-pager .page-numbers li a.active{
    color: #000;
    background: #ccf;
    border-radius: 10px;
  }
  .div-pager .page-numbers .current {
    color: #fff;
    background-color: #0f5474;
    border: 1px solid #0f5474;
    width: 35px;
    height: 35px;
    text-align: center;
    position: relative;
    border-radius: 10px;
  }
  .div-pager .page-numbers .dots {
    color: #fff;
    background-color: #1E1E1E;
    width: 35px;
    height: 35px;
    text-align: center;
    position: relative;
    border-radius: 10px;
  }
}
*/
.div-pager {
  padding: 10px 0;
  margin: 0;
  list-style: none;
  text-align: center;
  font-weight: bold;
}
.div-pager .page-numbers {
  display: inline-block;
  background:#1E1E1E;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
  color: #f2d025;
  font-weight: bold;
  border-radius: 10px;
}
.div-pager .page-numbers + .page-numbers { margin-left: 5px; }
.div-pager .page-numbers:not(.prev):not(.next):not(.dots) {
  /*border: 1px solid #f2d025;*/
  border-radius: 10px;
}
.div-pager .page-numbers.current,
.div-pager .page-numbers.disable {
  border: 1px solid #c8c8c8 !important;
  pointer-events: none;
}
.div-pager .page-numbers.current,
.div-pager .page-numbers.disable { color: #fff; }
.div-pager .page-numbers.disable.prev { border: none !important; }
.div-pager .page-numbers.dots {
  width: 1em;
  margin-right: -5px;
  margin-left: 0;
  background: rgba(0,0,0,0);
  color:#000;
}
.div-pager .page-numbers.current {
  color: #fff;
  background-color: #0f5474;
  border: 1px solid #0f5474;
  text-align: center;
}
.div-pager .page-numbers.prev,
.div-pager .page-numbers.next {
  width: 1em;
  -moz-transform: scale(1, 1.3);
  -ms-transform: scale(1, 1.3);
  -webkit-transform: scale(1, 1.3);
  transform: scale(1, 1.3);
  background: rgba(0,0,0,0);
  color:#000;
}

@media (max-width: 767px) {
  .div-pager {
    background: url(../img/common/bg_header.jpg) 0 0;
    -webkit-background-size: 100px 100px;
    -moz-background-size: 100px 100px;
    background-size: 100px 100px;
    text-align: center;
  }
  .div-pager .prev.page-numbers,
  .div-pager .next.page-numbers,
  .div-pager .dots.page-numbers {
    background: #FFFFFF;
  }
  .div-pager .page-numbers:not(.prev):not(.next):not(.dots) {
    border: 1px solid #f2d025;
    border-radius: 4px;
  }
  .div-pager .page-numbers.current,
  .div-pager .page-numbers.disable { 
    border: 1px solid #444 !important;
    color: #fff;
  }
  .div-pager .page-numbers {
    display: inline-block;
    color: #f2d025;
    font-weight: bold;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
/* ability
--------------------------------------------------*/
.ability_detail { position: relative; }
.ability_detail .system .link {
  color: #FEFEFE;
  text-decoration: underline;
}

/* PC 共用 */
@media (min-width: 768px) {
  .ability_detail {
    width: 480px;
    height: 155px;
    background-image: url(../img/wiki/ability/pc/words_base.png);
    margin-left: auto;
    margin-right: auto;
  }
  .ability_detail .name {
    color: #F9CF3B;
    font-size: 13px;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0 4px;
  }
  .ability_detail .inner {
    text-align: center;
    font-size: 12px;
  }
  .ability_detail .system {
    color: #FEFEFE;
    font-size: 13px;
    line-height: 2.7em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0 4px;
  }
  .ability_detail .image {
    margin: 0;
    text-align: center;
  }
  .ability_area {
    padding-left: 15px;
    padding-right: 15px;
  }
  .ability_detail .description {
    color: #FEFEFE;
    font-size: 13px;
    line-height: 2.4em;
    overflow: hidden;
  }
  .evolution_title {
    width: 250px;
    height: 26px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_1.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .soul_title {
    width: 300px;
    height: 26px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_2.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-right: auto;
    margin-top: 45px;
    margin-bottom: 20px;
  }
  .awakening_title {
    width: 255px;
    height: 26px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_3.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-right: auto;
    margin-top: 45px;
    margin-bottom: 20px;
  }
  .rebirth_title {
    width: 300px;
    height: 26px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_4.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-right: auto;
    margin-top: 45px;
    margin-bottom: 20px;
  }
  .ex_title {
    width: 300px;
    height: 26px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_5.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-right: auto;
    margin-top: 45px;
    margin-bottom: 20px;
  }
  .assist_title {
    width: 300px;
    height: 26px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_6.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-right: auto;
    margin-top: 45px;
    margin-bottom: 20px;
  }
  .link_title {
    width: 300px;
    height: 26px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_7.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-right: auto;
    margin-top: 45px;
    margin-bottom: 20px;
  }
}
/* SP 共用 */
@media (max-width: 767px) {
  .ability_detail {
    border-style: solid;
    border-width: 6px 0 6px 0;
    -webkit-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    -moz-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    -o-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 fill stretch;
    width: 100%;
  }
  .ability_area {
    padding-left: 0;
    padding-right: 0;
    margin-top: 15px;
  }
  .ability_detail .no {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    height: 0;
  }
  .ability_detail .inner {
    text-align: center;
    font-size: 12px;
    margin-bottom: 0;
  }
  .ability_detail .name {
    color: #F9CF3B;
    font-size: 11px;
    line-height: 2.4em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0;
  }
  .ability_detail .system {
    color: #FEFEFE;
    font-weight: bold;
    font-size: 10px;
    line-height: 2.0em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0;
  }
  .ability_detail .system a :link { color: #FEFEFE; }
  .ability_detail .attribute {
    position: absolute;
    top: -20px;
    left: 50%;
    margin: 0 0 0 -12.5px;
  }
  .ability_detail .attribute .icon {
    display: block;
    width: 25px;
    height: 25px;
  }
  .ability_detail .description {
    color: #FEFEFE;
    font-weight: bold;
    height: 20px;
    font-size: 10px;
    line-height: 2.2em;
    overflow: hidden;
  }
  .ability_detail .image {
    margin: 0;
    text-align: center;
  }
  .ability_detail .image > img {
    width: 40px;
    height: 40px;
  }
  .evolution_title {
    width: 250px;
    height: 20px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_1.png);
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .soul_title {
    width: 300px;
    height: 20px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_2.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .awakening_title {
    width: 255px;
    height: 20px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_3.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .rebirth_title {
    width: 300px;
    height: 20px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_4.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
  } 
  .ex_title {
    width: 300px;
    height: 20px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_5.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .assist_title {
    width: 300px;
    height: 20px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_6.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .link_title {
    width: 300px;
    height: 20px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../img/wiki/skill/title_7.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
  } 
}

.bright_color { color: #F9CF3B; }
.ability_container,
.ability_detail_container,
.skill_detail_container,
.ability_list_item {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}
.ability_list_container {
  margin-left: 10px;
  margin-right: 10px;
  background-color: #323232;
}
@media (max-width: 767px) {
  .ability_list_container { margin: 0; }
  .container_wiki { padding: 0; }
  .ability_container .ability_main_index {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-style: solid;
    border-width: 14px 25px 14px 25px;
    -webkit-border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 stretch;
    -moz-border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 stretch;
    border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 fill stretch;
  }
  .ability_container .ability_content {
    width: 94.5%;
    padding: 11px 13px !important;
  }
  .ability_container .txt_ability {
    width: 160px;
    height: 17px;
    margin: 0 auto;
    background-image: url(../img/wiki/ability/sp/btn_on.png);
    -webkit-background-size: 160px auto;
    -moz-background-size: 160px auto;
    background-size: 160px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .ability_container .collapsed .txt_ability {
    background-image: url(../img/wiki/ability/sp/btn_off.png);
  }

  .ability_detail_container .ability_main_index {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-style: solid;
    border-width: 14px 25px 14px 25px;
    -webkit-border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 stretch;
    -moz-border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 stretch;
    border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 fill stretch;
  }
  .ability_detail_container .ability_content {
    width: 94.5%;
    padding: 11px 13px !important;
  }
  .ability_detail_container .txt_ability {
    width: 160px;
    height: 17px;
    margin: 0 auto;
    background-image: url(../img/wiki/ability/sp/btn_ability_on.png);
    -webkit-background-size: 160px auto;
    -moz-background-size: 160px auto;
    background-size: 160px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .ability_detail_container .collapsed .txt_ability {
    background-image: url(../img/wiki/ability/sp/btn_ability_off.png);
  }

  .skill_detail_container .ability_main_index {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-style: solid;
    border-width: 14px 25px 14px 25px;
    -webkit-border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 stretch;
    -moz-border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 stretch;
    border-image: url(../img/wiki/ability/sp/btn_base.jpg) 17 50 17 50 fill stretch;
  }
  .skill_detail_container .ability_content {
    width: 94.5%;
    padding: 11px 13px !important;
  }
  .skill_detail_container .txt_ability {
    width: 160px;
    height: 17px;
    margin: 0 auto;
    background-image: url(../img/wiki/skill/sp/btn_skill_on.png);
    -webkit-background-size: 160px auto;
    -moz-background-size: 160px auto;
    background-size: 160px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .skill_detail_container .collapsed .txt_ability {
    background-image: url(../img/wiki/skill/sp/btn_skill_off.png);
  }

}
@media (min-width: 768px) {
  .ability_container { margin: 40px 10px; }
  .ability_container .ability_main_index {
    display: block;
    width: 100%;
    height: 60px;
    background-image: url(../img/wiki/ability/pc/btn_on.png);
    -webkit-background-size: 100% 60px;
    -moz-background-size: 100% 60px;
    background-size: 100% 60px;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .ability_container .collapsed {
    background-image: url(../img/wiki/ability/pc/btn_off.png);
  }

  .ability_detail_container { margin: 40px 10px; }
  .ability_detail_container .ability_main_index {
    display: block;
    width: 100%;
    height: 60px;
    background-image: url(../img/wiki/ability/pc/btn_ability_on.png);
    -webkit-background-size: 100% 60px;
    -moz-background-size: 100% 60px;
    background-size: 100% 60px;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .ability_detail_container .collapsed {
    background-image: url(../img/wiki/ability/pc/btn_ability_off.png);
  }

  .skill_detail_container { margin: 40px 10px; }
  .skill_detail_container .ability_main_index {
    display: block;
    width: 100%;
    height: 60px;
    background-image: url(../img/wiki/skill/pc/btn_skill_on.png);
    -webkit-background-size: 100% 60px;
    -moz-background-size: 100% 60px;
    background-size: 100% 60px;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .skill_detail_container .collapsed {
    background-image: url(../img/wiki/skill/pc/btn_skill_off.png);
  }

}
@media (min-width: 820px) {
  .ability_container {
    width: 800px;
    margin: 35px auto 40px;
  }
  .ability_container .ability_main_index { width: 800px; }

  .ability_detail_container {
    width: 800px;
    margin: 35px auto 40px;
  }
  .ability_detail_container .ability_main_index { width: 800px; }

  .skill_detail_container {
    width: 800px;
    margin: 35px auto 40px;
  }
  .skill_detail_container .ability_main_index { width: 800px; }

}
.list_ability {
  padding: 10px;
  list-style: none;
}
.list_ability .item {
  width: 175px;
  float: left;
  margin-left: 10px;
  margin-top: 20px;
  border: 1px solid #bd8e2d;
  border-radius: 8px;
  background-color: #1E1E1E;
  position: relative;
}
.list_ability .item .link {
  display: block;
  padding-top: 32px;
}
.list_ability .item .inner {
  margin: 0;
  padding: .5em;
  border-top: 1px solid #bd8e2d;
  border-radius: 0 0 7px 7px;
  background-color: #323232;
  color: #FEFEFE;
}
.list_ability .item .name { font-size: 12px; }
.list_ability .item .image {
  position: absolute;
  left: 8px;
  bottom: 57px;
}
.list_ability .item .image .icon {
  display: block;
  width: 60px;
  height: 60px;
  }
.list_ability .item .no {
  position: absolute;
  left: 72px;
  top: 23px;
  font-size: 11px;
  line-height: 1.5em;
}
.list_ability .item .rarity {
  position: absolute;
  left: 7px;
  bottom: 4px;
}
.list_ability .item .rarity .rarityImage {
  display: block;
  height: 18px;
}
.list_ability .item .rarity .rarityImage.rare1 { width: 18px; }
.list_ability .item .rarity .rarityImage.rare2 { width: 36px; }
.list_ability .item .rarity .rarityImage.rare3 { width: 54px; }
.list_ability .item .rarity .rarityImage.rare4 { width: 72px; }
.list_ability .item .rarity .rarityImage.rare5 { width: 90px; }
.list_ability .item .rarity .rarityImage.rare6 { width: 108px; }
.list_ability .item .rarity .rarityImage.rare7 { width: 126px; }
.list_ability .item .rarity .rarityImage2 {
  display: block;
  height: 18px;
}
.list_ability .item .rarity .rarityImage2.rare1 { width: 18px; }
.list_ability .item .rarity .rarityImage2.rare2 { width: 36px; }
.list_ability .item .rarity .rarityImage2.rare3 { width: 54px; }
.list_ability .item .rarity .rarityImage2.rare4 { width: 72px; }
.list_ability .item .rarity .rarityImage2.rare5 { width: 90px; }
.list_ability .item .rarity .rarityImage2.rare6 { width: 108px; }
.list_ability .item .rarity .rarityImage2.rare7 { width: 126px; }
.list_ability .item .attribute {
  position: absolute;
  top: 4px;
  right: 33px;
}
.list_ability .item .attribute .icon {
  display: block;
  width: 26px;
  height: 26px;
}
.list_ability .item .species {
  position: absolute;
  right: 4px;
  top: 4px;
}
.list_ability .item .species .icon {
  display: block;
  width: 26px;
  height: 26px;
}

@media (max-width: 467px) {
  .ability_list_container { min-width: 300px; }
  .container_wiki { padding: 0; }
  .list_ability { padding: 10px; }
  .list_ability .item {
    width: 48.333333333333336%;
    margin-left: 10px;
    margin-top: 10px;
  }
  .list_ability .item:nth-child(1),
  .list_ability .item:nth-child(2) { margin-top: 0; }
  .list_ability .item:nth-child(2n+1) { margin-left: 0; }
  .list_ability .item .link {
    padding-top: 46px;
    text-decoration: none;
  }
  .list_ability .item .no {
    top: 17px;
    left: 57px;
  }
  .list_ability .ab_img {
    position: absolute;
    top: 6px;
    left: 8px;
  }
  .list_ability .ab_img > img {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 468px) and (max-width: 619px) {
  .list_ability .item {
    width: 31.845238095238095%;
    margin-left: 10px;
    margin-top: 10px;
  }
  .list_ability .item:nth-child(1),
  .list_ability .item:nth-child(2),
  .list_ability .item:nth-child(3) { margin-top: 0; }
  .list_ability .item:nth-child(3n+1) { margin-left: 0; }
  .list_ability .item .link {
    padding-top: 46px;
    text-decoration: none;
  }
  .list_ability .item .no {
    top: 17px;
    left: 57px;
  }
  .list_ability .ab_img {
    position: absolute;
    top: 6px;
    left: 8px;
  }
  .list_ability .ab_img > img {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 620px) and (max-width: 767px) {
  .list_ability { padding: 10px; }
  .list_ability .item {
    width: 23.75%;
    margin-left: 10px;
    margin-top: 10px;
  }
  .list_ability .item:nth-child(1),
  .list_ability .item:nth-child(2),
  .list_ability .item:nth-child(3),
  .list_ability .item:nth-child(4) { margin-top: 0; }
  .list_ability .item:nth-child(4n+1) { margin-left: 0; }
  .list_ability .item .link {
    padding-top: 46px;
    text-decoration: none;
  }
  .list_ability .item .no {
    top: 17px;
    left: 57px;
  }
  .list_ability .ab_img {
    position: absolute;
    top: 6px;
    left: 8px;
  }
  .list_ability .ab_img > img {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 768px) {
  .section_monsterList { margin-top: 38px; }
  .list_ability { padding: 20px; }
  .list_ability .item {
    width: 31.875000000000004%;
    border-width: 2px;
    margin-left: 15px;
    margin-top: 15px;
  }
  .list_ability .item:nth-child(1),
  .list_ability .item:nth-child(2),
  .list_ability .item:nth-child(3) { margin-top: 0; }
  .list_ability .item:nth-child(3n+1) { margin-left: 0; }
  .list_ability .item .link {
    padding-top: 62px;
    text-decoration: none;
  }
  .list_ability .item .inner {
    border-width: 2px;
    border-radius: 0 0 6px 6px;
    padding: .5em;
  }
  .list_ability .item .name { font-size: 14px; }
  .list_ability .item .image {
    bottom: 62px;
    left: 8px;
  }
  .list_ability .item .image .icon, .list_ability .item .image img {
    width: 79px;
    height: 79px;
  }
  .list_ability .item .no {
    top: 23px;
    left: 72px;
    font-size: 12px;
  }
  .list_ability .item .rarity {
    left: 10px;
    bottom: 12px;
  }
  .list_ability .item .rarity .rarityImage { height: 22px; }
  .list_ability .item .rarity .rarityImage.rare1 { width: 22px; }
  .list_ability .item .rarity .rarityImage.rare2 { width: 44px; }
  .list_ability .item .rarity .rarityImage.rare3 { width: 66px; }
  .list_ability .item .rarity .rarityImage.rare4 { width: 88px; }
  .list_ability .item .rarity .rarityImage.rare5 { width: 110px; }
  .list_ability .item .rarity .rarityImage.rare6 { width: 132px; }
  .list_ability .item .rarity .rarityImage.rare7 { width: 154px; }
  .list_ability .item .rarity .rarityImage2 { height: 22px; }
  .list_ability .item .rarity .rarityImage2.rare1 { width: 22px; }
  .list_ability .item .rarity .rarityImage2.rare2 { width: 44px; }
  .list_ability .item .rarity .rarityImage2.rare3 { width: 66px; }
  .list_ability .item .rarity .rarityImage2.rare4 { width: 88px; }
  .list_ability .item .rarity .rarityImage2.rare5 { width: 110px; }
  .list_ability .item .rarity .rarityImage2.rare6 { width: 132px; }
  .list_ability .item .rarity .rarityImage2.rare7 { width: 154px; }
  .list_ability .item .attribute {
    top: 6px;
    right: 41px;
  }
  .list_ability .item .attribute .icon {
    width: 32px;
    height: 32px;
  }
  .list_ability .item .species {
    top: 6px;
    right: 6px;
  }
  .list_ability .item .species .icon {
    width: 32px;
    height: 32px;
  }
  .list_ability .item .ab_img {
    position: absolute;
    top: 6px;
    left: 8px;
  }
}
@media (min-width: 820px) {
  .list_ability .item {
    width: 23.47972972972973%;
  }
  .list_ability .item:nth-child(1),
  .list_ability .item:nth-child(2),
  .list_ability .item:nth-child(3),
  .list_ability .item:nth-child(4) { margin-top: 0; }
  .list_ability .item:nth-child(3n+1) { margin-left: 15px; }
  .list_ability .item:nth-child(4n+1) { margin-left: 0; }
}


/* monster
--------------------------------------------------*/
.search_monster { position: relative; }
.search_monster .inputName {
  dissplay: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  background: none;
  color: #B4B4B4;
  outline: none;
}
.search_monster .inputName: -webkit-input-placeholder { font-weight: bold; }
.search_monster .inputName: -moz-placeholder { font-weight: bold; }
.search_monster .button {
  position: absolute;
  display: block;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  background: none;
  border: none;
}
@media (min-width: 768px) {
  .search_monster {
    width: 520px;
    height: 46px;
    background-image: url(../img/wiki/monster/pc/search_bg.png);
    margin-left: auto;
    margin-right: auto;
  }
  .search_monster .inputName {
    width: 100%;
    height: 46px;
    padding: 10px 22px 10px 44px;
    border: none;
  }
  .search_monster .button {
    left: 4px;
    top: 8px;
    width: 32px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .search_monster {
    position: relative;
    margin: 0 10px;
  }
  .search_monster .inputName {
    width: 100%;
    height: 44px;
    padding-left: 20px;
    border-style: solid;
    border-width: 8px 16px 8px 16px;
    -webkit-border-image: url(../img/wiki/monster/sp/search_bg.png) 16 32 16 32 stretch;
    -moz-border-image: url(../img/wiki/monster/sp/search_bg.png) 16 32 16 32 stretch;
    -o-border-image: url(../img/wiki/monster/sp/search_bg.png) 16 32 16 32 stretch;
    border-image: url(../img/wiki/monster/sp/search_bg.png) 16 32 16 32 fill stretch;
  }
  .search_monster .button {
    left: 5px;
    top: 8px;
    width: 30px;
    height: 28px;
    background-image: url(../img/wiki/monster/sp/search_icon.png);
    -webkit-background-size: 15px 21px;
    -moz-background-size: 15px 21px;
    background-size: 15px 21px;
    background-repeat: no-repeat;
    background-position: 11px 4px;
  }
}
.section_monsterList { margin: 20px auto; }
.list_monster {
  padding: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
}
.list_monster .item {
  position: relative;
  float: left;
  width: 140px;
  /*height: 98px;*/
  margin-left: 10px;
  margin-top: 25px;
  /*ChangeChangeChange*/
  background-color: #FFFFFF;
  border: 1px solid #bd8e2d;
  border-radius: 8px;
}
.list_monster .item .link {
  display: block;
  padding-top: 32px;
  text-decoration: none;
}
.list_monster .item .inner {
  margin: 0;
  padding: 20px 8px .25em;
  border-top: 1px solid #bd8e2d;
  border-radius: 0 0 7px 7px;
  background-color: #1E1E1E;
  color: #FEFEFE;
}
.list_monster .item .name {
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
}
.list_monster .item .image {
  position: absolute;
  left: 8px;
  top: -20px;
}

.list_monster .item .image .icon {
  display: block;
  width: 60px;
  height: 60px;
}

.list_monster .item .no {
  position: absolute;
  right: 5px;
  top: 35px;
  font-size: 11px;
  line-height: 1.5em;
}
.list_monster .item .rarity { margin: .25em 0; }
.list_monster .item .rarity .rarityImage {
  display: block;
  height: 18px;
}
.list_monster .item .rarity .rarityImage.rare1 { width: 18px; }
.list_monster .item .rarity .rarityImage.rare2 { width: 36px; }
.list_monster .item .rarity .rarityImage.rare3 { width: 54px; }
.list_monster .item .rarity .rarityImage.rare4 { width: 72px; }
.list_monster .item .rarity .rarityImage.rare5 { width: 90px; }
.list_monster .item .rarity .rarityImage.rare6 { width: 108px; }
.list_monster .item .rarity .rarityImage.rare7 { width: 126px; }
.list_monster .item .rarity .rarityImage2 {
  display: block;
  height: 18px;
}
.list_monster .item .rarity .rarityImage2.rare1 { width: 18px; }
.list_monster .item .rarity .rarityImage2.rare2 { width: 36px; }
.list_monster .item .rarity .rarityImage2.rare3 { width: 54px; }
.list_monster .item .rarity .rarityImage2.rare4 { width: 72px; }
.list_monster .item .rarity .rarityImage2.rare5 { width: 90px; }
.list_monster .item .rarity .rarityImage2.rare6 { width: 108px; }
.list_monster .item .rarity .rarityImage2.rare7 { width: 126px; }
.list_monster .item .attribute {
  position: absolute;
  top: 4px;
  right: 33px;
}
.list_monster .item .species {
  position: absolute;
  right: 4px;
  top: 4px;
}
.list_monster .item .inner .icon-attr,
.list_monster .item .inner .icon-spec {
    display: block;
    width: 26px;
    height: 26px;
}
  .list_skill .item .inner .icon-attr,
  .list_skill .item .inner .icon-spec {
    display: block;
    width: 36px;
    height: 36px;
  }
/* 属性、種族の追加に耐えられない作りだったので削除
.list_skill .item .attribute .icon,
.list_monster .item .attribute .icon {
  display: block;
  width: 26px;
  height: 26px;
}
.list_monster .item .species {
  position: absolute;
  right: 4px;
  top: 4px;
}
.list_monster .item .species .icon {
  display: block;
  width: 26px;
  height: 26px;
}

.list_skill [class*="monsterAttribute"],
.list_monster [class*="monsterAttribute"] {
  -webkit-background-size: 260px 26px;
  -moz-background-size: 260px 26px;
  -ms-background-size: 260px 26px;
  background-size: 260px 26px;
}
.list_skill .monsterAttribute1,
.list_monster .monsterAttribute1 {
  background-position: 0 0;
}
.list_skill .monsterAttribute2,
.list_monster .monsterAttribute2 {
  background-position: -52px 0;
}
.list_skill .monsterAttribute3,
.list_monster .monsterAttribute3 {
  background-position: -104px 0;
}
.list_skill .monsterAttribute4,
.list_monster .monsterAttribute4 {
  background-position: -156px 0;
}
.list_skill .monsterAttribute5,
.list_monster .monsterAttribute5 {
  background-position: -208px 0;
}
/*
.list_monster [class*="monsterSpecies"] {
  -webkit-background-size: 26px 130px;
  -moz-background-size: 26px 130px;
  -ms-background-size: 26px 130px;
  background-size: 26px 130px;
}
.list_monster .monsterSpecies1 { background-position: 0 0; }
.list_monster .monsterSpecies2 { background-position: 0 -26px; }
.list_monster .monsterSpecies3 { background-position: 0 -52px; }
.list_monster .monsterSpecies4 { background-position: 0 -78px; }
.list_monster .monsterSpecies5 { background-position: 0 -104px; }

.list_monster .monsterSpeciesbox {
-webkit-background-size: 26px 26px;
-moz-background-size: 26px 26px;
-ms-background-size: 26px 26px;
background-size: 26px 26px;
}
.list_monster .monsterSpecies1 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_1.png"); }
.list_monster .monsterSpecies2 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_2.png"); }
.list_monster .monsterSpecies3 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_3.png"); }
.list_monster .monsterSpecies4 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_4.png"); }
.list_monster .monsterSpecies5 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_5.png"); }
.list_monster .monsterSpecies6 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_6.png"); }
*/

@media (max-width: 467px) {
  .list_monster { margin: 0 10px; }
  .list_monster .item { width: 48.88143176733781%; }
  .list_monster .item:nth-child(even) { margin-left: 2.237136465324385%; }
  .list_monster .item:nth-child(odd) { margin-left: 0; }
}
@media (min-width: 468px) and (max-width: 619px) {
  .list_monster { margin: 0 10px; }
  .list_monster .item { width: 31.845238095238095%; }
  .list_monster .item:nth-child(3n+1) { margin-left: 0; }
}
@media (min-width: 620px) and (max-width: 767px) {
  .list_monster { margin: 0 10px; }
  .list_monster .item { width: 23.75%; }
  .list_monster .item:nth-child(4n+1) { margin-left: 0; }
}
@media (min-width: 768px) {
  .section_monsterList { margin: 50px auto; }
  .list_monster {
    width: 594px;
    margin: 0 auto;
  }
  .list_monster .item {
    width: 186px;
    height: 124px;
    border-width: 2px;
    margin-left: 18px;
    margin-top: 25px;
  }
  .list_monster .item:nth-child(1),
  .list_monster .item:nth-child(2),
  .list_monster .item:nth-child(3) { margin-top: 0; }
  .list_monster .item:nth-child(3n+1) { margin-left: 0; }
  .list_monster .item .link { padding-top: 43px; }
  .list_monster .item .inner {
    border-width: 2px;
    height: 77px;
    border-radius: 0 0 6px 6px;
    padding: 22px 11px 0;
  }
  .list_monster .item .name {
    font-size: 14px;
    height: 1.3em;
  }
  .list_monster .item .image {
    bottom: 62px;
    left: 8px;
  }
  .list_monster .item .image .icon,
  .list_monster .item .image img {
    width: 79px;
    height: 79px;
  }
  .list_monster .item .no {
    top: 49px;
    font-size: 12px;
    right: 10px;
  }
  .list_monster .item .rarity {
    left: 10px;
    bottom: 12px;
  }
  .list_monster .item .rarity .rarityImage { height: 22px; }
  .list_monster .item .rarity .rarityImage.rare1 { width: 22px; }
  .list_monster .item .rarity .rarityImage.rare2 { width: 44px; }
  .list_monster .item .rarity .rarityImage.rare3 { width: 66px; }
  .list_monster .item .rarity .rarityImage.rare4 { width: 88px; }
  .list_monster .item .rarity .rarityImage.rare5 { width: 110px; }
  .list_monster .item .rarity .rarityImage.rare6 { width: 132px; }
  .list_monster .item .rarity .rarityImage.rare7 { width: 154px; }
  .list_monster .item .rarity .rarityImage2 { height: 22px; }
  .list_monster .item .rarity .rarityImage2.rare1 { width: 22px; }
  .list_monster .item .rarity .rarityImage2.rare2 { width: 44px; }
  .list_monster .item .rarity .rarityImage2.rare3 { width: 66px; }
  .list_monster .item .rarity .rarityImage2.rare4 { width: 88px; }
  .list_monster .item .rarity .rarityImage2.rare5 { width: 110px; }
  .list_monster .item .rarity .rarityImage2.rare6 { width: 132px; }
  .list_monster .item .rarity .rarityImage2.rare7 { width: 154px; }
  .list_monster .item .attribute {
    top: 6px;
    right: 41px;
  }
  .list_monster .item .species {
    top: 6px;
    right: 6px;
  }

  .list_monster .item .inner .icon-attr,
  .list_monster .item .inner .icon-spec {
    display: block;
    width: 32px;
    height: 32px;
  }

  .list_skill .item .inner .icon-attr,
  .list_skill .item .inner .icon-spec {
    display: block;
    width: 32px;
    height: 32px;
  }

/* 属性、種族の追加に耐えられない作りだったので削除
  .list_monster .item .attribute .icon {
    width: 32px;
    height: 32px;
  }
  .list_monster .item .species .icon {
    width: 32px;
    height: 32px;
  }
  .list_skill [class*="monsterAttribute"],
  .list_monster [class*="monsterAttribute"] {
    -webkit-background-size: 320px 32px;
    -moz-background-size: 320px 32px;
    -ms-background-size: 320px 32px;
    background-size: 320px 32px;
  }
  .list_skill .monsterAttribute1,
  .list_monster .monsterAttribute1 {
    background-position: 0 0;
  }
  .list_skill .monsterAttribute2,
  .list_monster .monsterAttribute2 {
    background-position: -64px 0;
  }
  .list_skill .monsterAttribute3,
  .list_monster .monsterAttribute3 {
    background-position: -128px 0;
  }
  .list_skill .monsterAttribute4,
  .list_monster .monsterAttribute4 {
    background-position: -192px 0;
  }
  .list_skill .monsterAttribute5,
  .list_monster .monsterAttribute5 {
    background-position: -256px 0;
  }
  /*
  .list_monster [class*="monsterSpecies"] {
    -webkit-background-size: 32px 160px;
    -moz-background-size: 32px 160px;
    -ms-background-size: 32px 160px;
    background-size: 32px 160px;
  }
  .list_monster .monsterSpecies1 { background-position: 0 0; }
  .list_monster .monsterSpecies2 { background-position: 0 -32px; }
  .list_monster .monsterSpecies3 { background-position: 0 -64px; }
  .list_monster .monsterSpecies4 { background-position: 0 -96px; }
  .list_monster .monsterSpecies5 { background-position: 0 -128px; }
}
  .list_monster .monsterSpeciesbox{
  -webkit-background-size: 32px 32px;
  -moz-background-size: 32px 32px;
  -ms-background-size: 32px 32px;
  background-size: 32px 32px;
  }

  .list_monster .monsterSpecies1 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_1.png"); }
  .list_monster .monsterSpecies2 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_2.png"); }
  .list_monster .monsterSpecies3 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_3.png"); }
  .list_monster .monsterSpecies4 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_4.png"); }
  .list_monster .monsterSpecies5 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_5.png"); }
  .list_monster .monsterSpecies6 { background-image: url("/resource/wiki_res/images/_monster_species/MonsterSpecies_6.png"); }
*/
}

@media (min-width: 818px) {
  .list_monster { width: 798px; }
  .list_monster .item:nth-child(3n+1) { margin-left: 18px; }
  .list_monster .item:nth-child(1),
  .list_monster .item:nth-child(2),
  .list_monster .item:nth-child(3),
  .list_monster .item:nth-child(4) { margin-top: 0; }
  .list_monster .item:nth-child(4n+1) { margin-left: 0; }
}

/* monsterDetail2
--------------------------------------------------*/

.monsterDetail_header2 .frame2 {
  position: relative;
  width: 100%;
  height: 60px;
  background: url(/resource/wiki/img/wiki/monster/pc/title_base2.png) 0 0 no-repeat;
  -webkit-background-size: 100% 60px;
  -moz-background-size: 100% 60px;
  background-size: 100% 40px;
  /* position: absolute; */
}
.monsterDetail_header2 .frame2 .upper2 {
  /* height: 25px; */
  width: 100%;
  line-height: 18px;
  margin: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: absolute;
}

.monsterDetail_header2 .frame2 .upper2 .no2 {
  font-weight: normal;
  font-size: 10px;
}
.monsterDetail_header2 .frame2 .upper2 .name2 {
  display: inline-block;
  margin-left: 1px;
}
.monsterDetail_header2 .frame2 .upper2 .star2 {
  float: right;
  display: inline-block;
  margin: 0.2% 2% 0% 0%;
}

.monsterDetail_header2 .frame2 .upper2 .star2 > img + img {
  margin-left: -5px;
}


/* monsterDetail
--------------------------------------------------*/
.monsterDetail {
  position: relative;
  max-width: 800px;
  margin: auto;
  text-align: justify;
}
.monsterDetail_header{}
.monsterDetail_header .frame {
  position: relative;
  width: 100%;
  height: 46px;
  background: url(../img/wiki/monster/sp/name_bg.jpg) 0 0 no-repeat;
  -webkit-background-size: 100% 46px;
  -moz-background-size: 100% 46px;
  background-size: 100% 46px;
}
.monsterDetail_header .frame .upper {
  height: 26px;
  line-height: 26px;
  margin: 0;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}
.monsterDetail_header .icon-attr,
.monsterDetail_header .icon-spec {
  position: relative;
  width: 26px;
  height: 26px;
}
.monsterDetail_header .icon-attr { top: -4px; }
.monsterDetail_header .icon-spec { top: -6px; }
.monsterDetail_header .frame .upper .no {
  font-weight: normal;
  font-size: 9px;
}
.monsterDetail_header .frame .upper .name {
  display: inline-block;
  margin-left: 5px;
}
.monsterDetail_header .frame .upper .star {
  float: right;
  display: inline-block;
  margin: 3px 5px 0 0;
}
.monsterDetail_header .frame .upper .star > img { vertical-align: initial; }
.monsterDetail_header .frame .upper .star > img + img { margin-left: -4px; }
.monsterDetail_header .frame .lower {
  height: 16px;
  line-height: 16px;
  font-weight: bold;
  font-size: 12px;
}
.monsterDetail_header .frame .lower .level {
  display: inline-block;
  vertical-align: top;
}
.monsterDetail_header .frame .icon_attr {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  left: -31px;
  top: -6px;
}
.monsterDetail_header .frame .icon_spec {
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  left: -31px;
  bottom: -5px;
}
.monsterDetail_header .frame .icon_rare {
  width: 14px;
  display: block;
  position: absolute;
  right: 9px;
  top: 3px;
}
.monsterDetail_header .frame .icon_rare.rare1 { width: 14px; }
.monsterDetail_header .frame .icon_rare.rare2 { width: 28px; }
.monsterDetail_header .frame .icon_rare.rare3 { width: 42px; }
.monsterDetail_header .frame .icon_rare.rare4 { width: 56px; }
.monsterDetail_header .frame .icon_rare.rare5 { width: 70px; }
.monsterDetail_header .frame .icon_rare.rare6 { width: 84px; }
.monsterDetail_header .frame .icon_rare.rare7 { width: 98px; }
.monsterDetail_header .maxStatus {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -o-box;
  display: box;
  width: 100%;
  font-size: 11px;
  line-height: 1.2em;
  font-weight: bold;
}
.monsterDetail_header .maxStatus .item {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  width: 33.3333%;
  padding: 8px 0;
  margin-left: -1px;
  line-height: 1;
  border-left: 1px solid #c8c8c8;
}
.monsterDetail_header .maxStatus .item .inner {
  position: relative;
  display: table;
  padding: 0 0 0 18px;
  margin: 0 auto;
}
.monsterDetail_header .maxStatus span {
  position: relative;
  display: block;
  line-height: 1.2;
}
.monsterDetail_header .maxStatus .iconHp {
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  background-image: url(../img/wiki/monster/icon_hp.png);
  -webkit-background-size: 13px 13px;
  -moz-background-size: 13px 13px;
  background-size: 13px 13px;
}
.monsterDetail_header .maxStatus .iconAttack {
  position: absolute;
  top: -1px;
  left: 0;
  width: 11px;
  height: 15px;
  background-image: url(../img/wiki/monster/icon_attack.png);
  -webkit-background-size: 11px 15px;
  -moz-background-size: 11px 15px;
  background-size: 11px 15px;
}
.monsterDetail_header .maxStatus .iconSoul {
  position: absolute;
  top: -2px;
  left: 0;
  width: 16px;
  height: 17px;
  background-image: url(../img/wiki/monster/icon_soul.png);
  -webkit-background-size: 16px 17px;
  -moz-background-size: 16px 17px;
  background-size: 16px 17px;
}
.monsterDetail_header .maxStatus .iconSexuality00 {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  background-image: url(../img/wiki/monster/icon_000.png);
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  background-size: 20px 20px;
}
.monsterDetail_header .maxStatus .iconSexuality01 {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  background-image: url(../img/wiki/monster/icon_001.png);
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  background-size: 20px 20px;
}
.monsterDetail_header .maxStatus .iconSexuality02 {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  background-image: url(../img/wiki/monster/icon_002.png);
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  background-size: 20px 20px;
}
.monsterDetail_header .maxStatus .iconSexuality03 {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  background-image: url(../img/wiki/monster/icon_003.png);
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  background-size: 20px 20px;
}
.monsterDetail_figure {
  background: url(../img/quest/shadow.png) 50% 116px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#B5B5B5), to(#3D3D3B)) 0 0;
  background: url(../img/quest/shadow.png) 50% 116px no-repeat, -webkit-linear-gradient(top, #B5B5B5, #3D3D3B) 0 0;
  background: url(../img/quest/shadow.png) 50% 116px no-repeat, -moz-linear-gradient(top, #B5B5B5, #3D3D3B) 0 0;
  background: url(../img/quest/shadow.png) 50% 116px no-repeat, -o-linear-gradient(top, #B5B5B5, #3D3D3B) 0 0;
  background: url(../img/quest/shadow.png) 50% 116px no-repeat, -ms-linear-gradient(top, #B5B5B5, #3D3D3B) 0 0;
  background: url(../img/quest/shadow.png) 50% 116px no-repeat, linear-gradient(to bottom, rgba(181,181,181,1) 0%,rgba(61,61,59,1) 100%) 0 0;
  -webkit-background-size: 166px 53px, 100% 100%;
  -moz-background-size: 166px 53px, 100% 100%;
  background-size: 166px 53px, 100% 100%;
  position: relative;
  height: 163px;
}
.monsterDetail_figure_img {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: auto;
  height: 150px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mosnterDetail_skill {
    background: #351a0e;
    border: solid 2px #c18a2f;
    border-radius: 200px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom:  42px;
    padding-top: 42px;
}

.mosnterDetail_skill {
  position: absolute;
  left: -21%;
  bottom: -72px;
  transform: scale(0.3,0.3);
}

.mosnterDetail_skillMovie {
  position: absolute;
  right: -4%;
  bottom: 10px;
  width: auto;
  height:  64px;
}
.btn_mosnterDetail_skillMovie {
  height: 64px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mosnterDetail_Icon {
  position: absolute;
  left: 17%;
  top: 11px;
  width: auto;
  height:  64px;
}
.btn_mosnterDetail_Icon {
  height: 66px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.monsterDetail_title {
  position: relative;
  width: 100%;
  height: 21px;
  padding-top: 4px;
  margin: 15px 0 0;
  background-image: url(../img/wiki/monster/sp/pattern_title.png);
  -webkit-background-size: 100px 21px;
  -moz-background-size: 100px 21px;
  background-size: 100px 21px;
  background-repeat: repeat-x;
 }
.monsterDetail_title .titleText {
  display: block;
  height: 14px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../img/wiki/monster/sp/word_title2.png?v=1);
  -webkit-background-size: 190px 14px;
  -moz-background-size: 190px 14px;
  background-size: 303px 14px;
}
.monsterDetail_title .titleText.get {
  background-position: 0 0;
  width: 49px;
}
.monsterDetail_title .titleText.evolution {
  background-position: -43px 0;
  width: 27px;
}
.monsterDetail_title .titleText.skill {
  background-position: -74px 0;
  width: 38px;
}
.monsterDetail_title .titleText.ability {
  background-position: -111px 0;
  width: 61px;
}
.monsterDetail_title .titleText.customAbility {
  background-position: -170px 0;
  width: 97px;
}
.monsterDetail_title .titleText.skin {
  background-position: -269px 0;
  width: 34px;
}
.monsterDetail_get .howtoget {
  background-color: #351B0C;
  text-align: center;
  border-bottom: 1px solid #BA8E2B;
  height: 29px;
  line-height: 29px;
}
.monsterDetail_get .howtoget:empty { display: none; }
.monsterDetail_get .howtoget .text {
  color: #fff;
  font-size: 12px;
}
.monsterDetail_get .howtoget .text a {
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
}
.monsterDetail_evolution {
  padding-bottom: 8px;
  margin: 8px 0 5px;
  background-color: #E6E6E6;
}
.evolution2-judge { display: none; }
.monsterDetail_evolution .evolution0 { margin: 15px auto 0 !important; }
.monsterDetail_evolution .evolution_flow {
  display: table;
  max-width: 320px;
  padding: 8px 0 10px;
  margin: 0 auto;
  font-size: 13px;
}
.monsterDetail_evolution .evolution_flow p { margin: 0; }
.monsterDetail_evolution .left {
  position: relative;
  display: table-cell;
  width: 64px;
  background: url(../img/wiki/monster/sp/arrow_body.png) 50% 0 repeat-y;
  -webkit-background-size: 21px 1px;
  -moz-background-size: 21px 1px;
  background-size: 21px 1px;
}
.monsterDetail_evolution .left:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 21px;
  height: 21px;
  content: "";
  background: url(../img/wiki/monster/sp/arrow_head.png) 50% 50% no-repeat;
  -webkit-background-size: 21px 21px;
  -moz-background-size: 21px 21px;
  background-size: 21px 21px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.monsterDetail_evolution .left .monster-base,
.monsterDetail_evolution .left .monster-icon {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -12px;
}
.monsterDetail_evolution .right {
  display: table-cell;
  width: 80.625%;
  color: #fff;
}
.monsterDetail_evolution .before {
  position: relative;
  min-height: 51px;
  padding: 5px 5px 10px 10px;
  margin: 0 5px 0 6px;
  background: #351b0c;
  border: 1px solid #b2902f;
  border-radius: 5px;
}
.monsterDetail_evolution .before:after {
  position: absolute;
  top: 10px;
  left: -6px;
  width: 10px;
  height: 10px;
  content: "";
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #351b0c;
  border-bottom: 1px solid #b2902f;
  border-left: 1px solid #b2902f;
}
.monsterDetail_evolution .monster_no {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 10px;
}
.monsterDetail_evolution .monster_list_name {
  position: relative;
  top: -6px;
}
.monsterDetail_evolution .monster_list_name a {
  color: #fff;
  text-decoration: underline;
}
.monsterDetail_evolution .after:before {
  display: block;
  width: 46px;
  height: 16px;
  content: "";
  background: url(../img/wiki/monster/sp/word_evolution.png) 0 0 no-repeat;
  -webkit-background-size: 307px 16px;
  -moz-background-size: 307px 16px;
  background-size: 307px 16px;
}

.monsterDetail_evolution .evolution_super_rebirth .after:before {
  display: block;
  width: 150px;
  height: 16px;
  left: 28px;
  content: "";
  background: url(../img/wiki/monster/sp/word_evolution2.png) 0 0 no-repeat;
  -webkit-background-size: 231px 16px;
  -moz-background-size: 231px 16px;
  background-size: 231px 16px;
}

.monsterDetail_evolution .monster_list_name:before {
  position: relative;
  top: -6px;
  display: block;
  width: 46px;
  height: 16px;
  content: "";
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.monsterDetail_evolution .evolution0 .monster_list_name:before {
  background-image: url(../img/text_evolution_0.png);
}
.monsterDetail_evolution .evolution1 .monster_list_name:before {
  background-image: url(../img/text_evolution_1.png);
}
.monsterDetail_evolution .evolution2 .monster_list_name:before {
  background-image: url(../img/text_evolution_2.png);
}
.monsterDetail_evolution .evolution3 .monster_list_name:before {
  background-image: url(../img/text_evolution_3.png);
}
.monsterDetail_evolution .evolution4 .monster_list_name:before {
  background-image: url(../img/text_evolution_4.png);
}
.monsterDetail_evolution .evolution5 .monster_list_name:before {
  background-image: url(../img/text_evolution_5.png);
}
.monsterDetail_evolution .evolution6 .monster_list_name:before {
  background-image: url(../img/text_evolution_6.png);
}
.monsterDetail_evolution .evolution7 .monster_list_name:before {
  background-image: url(../img/text_evolution_7.png);
}
.monsterDetail_evolution .evolution8 .monster_list_name:before {
  background-image: url(../img/text_evolution_8.png);
}
.monsterDetail_evolution .evolution_rebirth .monster_list_name:before {
  background-image: url(../img/text_evolution_rebirth.png);
}
/* 進化最後は矢印とプラスアイコンを非表示 */
.monsterDetail_evolution .evolution_flow:last-of-type .icon-plus { display: none; }
.monsterDetail_evolution .evolution_flow:last-of-type .left { background: none; }
.monsterDetail_evolution .evolution_flow:last-of-type .left:after { background: none; }
.monsterDetail_evolution .star { line-height: 1; }
.monsterDetail_evolution .star img + img { margin-left: -4px; }
.monsterDetail_evolution .icon-plus {
  width: 100%;
  height: 20px;
  margin: 10px 0;
  background: url(../img/wiki/monster/sp/icon_plus.png) 50% 50% no-repeat;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  background-size: 20px 20px;
}
.monsterDetail_evolution .after {
  position: relative;
  padding: 10px;
  margin: 0px 5px 0 6px;
  border: 1px solid #b2902f;
  border-radius: 4px;
}
.monsterDetail_evolution .lithograph a {
  display: block;
  color: #6d3712;
  text-decoration: underline;
}
.monsterDetail_evolution .after:before {
  position: relative;
  top: -7px;
  left: 26px;
  width: 60px;
  height: 18px;
  background-position: -160px 2px;
  -webkit-background-size: 345px 18px;
  -moz-background-size: 345px 18px;
  background-size: 345px 18px;
}
 .monsterDetail_evolution .evolution_rebirth .after:before {
  background-position: -290px 2px !important;
}

.monsterDetail_evolution .evolution_super_rebirth .after:before {
  background-position: -87px 2px !important;
  background-size: 164px 18px;
  height: 18px;
}

.monsterDetail_evolution p.lithograph {
  /*margin-top: 5px;*/
  color: #333;
}
.monsterDetail_evolution .lithograph-icon {
  position: absolute;
  top: -28px;
  left: -16px;
  width: 48px;
  height: 48px;
}
/* スキン */
.monsterDetail_skin {
}
.monsterDetail_skin .skin-wrap {
  display: flex;
  flex-direction: row;
  height: auto;
  margin-top: -2px;
  overflow: hidden;
  border: 2px solid #a37931;
  border-radius: 2px;
  overflow-x: scroll;
}
.monsterDetail_skin .skin-wrap .skin-data {
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  width: 100%;
  min-width: 96px;
  background: #351a0e;
  border: none;
  border-right: 2px solid #636260;
}
.monsterDetail_skin .skin-wrap .skin-data.selected {
  background: #282828;
}
.monsterDetail_skin .skin-wrap .skin-data a.selected {
  pointer-events: none;
  text-decoration: none;
}
.monsterDetail_skin .skin-wrap .skin-data .skin-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.monsterDetail_skin .skin-wrap .skin-data .skin-icon .monster-base {
  position: relative;
  top: 12px;
  left: 0;
  margin-top: -12px;
  width: 64px;
  height: 64px;
}
.monsterDetail_skin .skin-wrap .skin-data .skin-icon .monster-icon {
  position: relative;
  left: 0px;
  top: -52px;
  width: 64px;
  height: 64px;
}
.monsterDetail_skin .skin-wrap .skin-data .skin-name {
  display: none;
}
.mosnterDetail_skinName {
  padding: 5px;
  color: fff;
  font-weight: bold;
  text-align: center;
}

/* スキル */
.monsterDetail_skill .skill-detail {
  display: block;
  margin-top: -1px;
  background: #351a0e;
  border-top: 1px solid #a37931;
  color: #fff;
  font-size: 13px;
}
.monsterDetail_skill .skill-detail ul {
  display: table;
  width: 100%;
  max-width: 320px;
  padding: 5px;
  margin: 0 auto;
  list-style: none;
}
.monsterDetail_skill .skill-detail li {
  display: table-cell;
}
.monsterDetail_skill .skill-level {
  width: 60px;
  padding-right: 5px;
  vertical-align: middle;
  text-align: center;
}
.monsterDetail_skill .skill-pattern {
  padding: 5px;
  line-height: 1;
}
.monsterDetail_skill .skill-pattern img { width: 13px; }
.monsterDetail_skill .skill-annotation {
  width: 100%;
  padding-left: 5px;
  vertical-align: middle;
}
.monsterDetail_skill .skill-annotation dt {
  color: #f2d025;
  font-weight: normal;
  text-decoration: underline;
}
/* アビリティ */
.monsterDetail_ability { margin-top: 15px; }
.monsterDetail_ability .ability-detail {
  width: 93.75%;
  padding: 10px 5px;
  margin: 5px auto;
  background: #282828;
  border: 1px solid #a37931;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
}
.monsterDetail_ability .ability-detail .ability-detail-flex {}
.monsterDetail_ability .wrap {
  display: table;
}
.monsterDetail_ability .ability-icon,
.monsterDetail_ability .ability-annotation {
  display: table-cell;
  vertical-align: top;
}
.WeaponDetail_custom .ability-detail-flex {
  display: flex;
}

.ability-detail-flex .empty-wrap {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.WeaponDetail_custom .ability-annotation {
  display: table-cell;
  vertical-align: top;
  width: 575px;
  padding-left: 5px;
  line-height: 1.6;
}
.monsterDetail_ability .ability-annotation {
  padding-left: 5px;
  line-height: 1.6;
}
.monsterDetail_ability .ability-annotation a {
  display: block;
  text-decoration: underline;
}
.monsterDetail_ability .ability-annotation .system {
  color: #fff;
}
.monsterDetail_ability .ability-annotation .name {
  color: #f2d025;
}
.monsterDetail_ability .open-condition.disable,
.monsterDetail_ability .open-condition.enable a {
  display: block;
  width: 125px;
  height: 40px;
  line-height: 40px;
  margin: 5px auto 0;
  text-align: center;
}
.monsterDetail_ability .open-condition.disable {
  border: 1px solid #636363;
  border-radius: 4px;
}
.monsterDetail_ability .open-condition.enable {
  background: url(../img/wiki/monster/sp/btn_bg.png) 50% 50% no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}
.monsterDetail_ability .open-condition.enable a {
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  text-decoration: none;
  font-weight: bold;
}
.monsterDetail_ability .separate {
  height: 0;
  margin-top: 20px;
}
/* modal */
.modal-table {
  width: 100%;
  font-size: 16px;
}
.modal-table tr {
  border: 1px solid #646464;
}
.modal-table .image { width: 64px; }
.modal-table .name { padding-left: 1em; }
.modal-table .name a {
  color: #f2d025;
  text-decoration: underline;
}
.modal-table .condition {
  padding-right: 1em;
  color: #fff;
  text-align: right;
}

.WeaponDetail_custom .open-condition.disable {
    display: block;
    width: 125px;
    height: 40px;
    line-height: 40px;
    margin: 5px auto 0;
    text-align: center;
    border: 1px solid #636363;
    border-radius: 4px;
}

.WeaponDetail_custom .open-condition.disable {
    position: absolute;
    top: 50%;
    right: 15px;
    display: inline-block;
    width: 125px;
    height: 58px;
    line-height: 58px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    border: 2px solid #636363;
    border-radius: 10px;
}

@media (max-width: 480px) {
  .modal-table {
    font-size: 12px;
  }
  .modal-table .image img {
    width: 58px;
    height: 58px;
  }
  .modal-table .name { padding-left: .5em; }
  .modal-table .condition { padding-right: .5em; }
}

/* モンスターのかけら */
.monsterDetail_shard { margin-top: 15px; }
.monsterDetail_shard .shard {
  width: 93.75%;
  margin: 5px auto;
  background: #282828;
  border: 1px solid #a37931;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 13px;
}
.monsterDetail_shard .shard h3 {
  padding: 5px;
  margin: 0;
  background: #351a0e;
  border-bottom: 1px solid #a37931;
  font-size: 14px;
  font-weight: bold;
}
.monsterDetail_shard .shard img { margin: 5px; }
.monsterDetail_shard .shard table { width: 100%; color: #fff; font-size: 13px; }
.monsterDetail_shard .shard thead th {
  width: 50%;
  padding: 5px;
  background: #351a0e;
  text-align: center;
}
.monsterDetail_shard .shard td,
.monsterDetail_shard .shard th {
  border: 1px solid #a37931;
  border-top: none;
  border-left: none;
}
.monsterDetail_shard .shard thead th:last-of-type {
  border-right: none;
}
.monsterDetail_shard .shard tr:last-of-type td {
  border-bottom: none;
}
.monsterDetail_shard .shard tbody td:nth-child(1) img {
  width: 58px;
  height: 58px;
}
.monsterDetail_shard .shard tbody td:nth-child(1) {
  width: 58px;
  border-right: none;
}
.monsterDetail_shard .shard tbody td:nth-child(2) {
  width: 41.66666666666667%;
  padding-right: 1em;
  border-left: none;
}
.monsterDetail_shard .shard tbody td:nth-child(3) {
  padding: 0 1em;
  border-right: none;
}
.monsterDetail_shard .shard tbody td {
  border-color: #636260;
  text-align: left;
}

@media (min-width: 768px) {
  .monsterDetail { margin-top: 80px !important; }
  .monsterDetail_header .frame .upper,
  .monsterDetail_header .frame .lower {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .monsterDetail_header .frame .icon-attr,
  .monsterDetail_header .frame .icon-spec {
    top: -2px;
    width: 44px;
    height: 44px;
  }
  .monsterDetail_header .frame .upper .star { margin: 0px 15px 0 0; }
  .monsterDetail_header .frame .upper .star > img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
  }
  .monsterDetail_header .frame .upper .star > img + img { margin-left: -4px; }
  .monsterDetail_header .maxStatus {
    position: absolute;
    top: 46px;
    right: 20px;
    display: table;
    width: auto;
    line-height: inherit;
    border: none;
    color: #fff;
    font-size: inherit;
  }
  .monsterDetail_header .maxStatus .item {
    display: table-cell;
    width: auto;
    border: none;
  }
  .monsterDetail_header .maxStatus .item .inner {
    width: auto;
    padding: 0 0 0 20px;
    margin: 0 0 0 10px;
  }
  .monsterDetail_header .maxStatus .item .inner > span { display: inline; }
  .monsterDetail_header .maxStatus .item .iconHp {
    width: 16px;
    height: 16px;
    -webkit-background-size: 16px 16px;
    -moz-background-size: 16px 16px;
    background-size: 16px 16px;
  }
  .monsterDetail_header .maxStatus .item .iconAttack {
    width: 16px;
    height: 22px;
    margin: -2px 0 0 2px;
    -webkit-background-size: 16px 22px;
    -moz-background-size: 16px 22px;
    background-size: 16px 22px;
  }
  .monsterDetail_header .maxStatus .item .iconSoul {
    width: 16px;
    height: 17px;
    margin-top: 2px;
    -webkit-background-size: 16px 17px;
    -moz-background-size: 16px 17px;
    background-size: 16px 17px;
  }
  .monsterDetail_header .maxStatus .item .iconSexuality00 .iconSexuality01 .iconSexuality02 .iconSexuality03 {
    width: 16px;
    height: 17px;
    margin-top: 2px;
    -webkit-background-size: 16px 17px;
    -moz-background-size: 16px 17px;
    background-size: 16px 17px;
  }
  /* モンスター */
  .monsterDetail .monsterDetail_figure {
    height: 350px;
    margin-bottom: 10px;
    -webkit-background-size: auto auto, 100% 100%;
    -moz-background-size: auto auto, 100% 100%;
    background-size: auto auto, 100% 100%;
    background-position: 50% 270px, 0 0;
    border-radius: 10px;
  }
  .monsterDetail .monsterDetail_figure_img {
    bottom: 20px;
    width: auto;
    height: 350px;
    margin: 0;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

.mosnterDetail_skill {
    background: #351a0e;
    border: solid 2px #c18a2f;
    border-radius: 200px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom:  42px;
    padding-top: 42px;
}

.mosnterDetail_skill {
  position: absolute;
  left: 0%;
  bottom: -20px;
  transform: scale(0.6,0.6);
}


.mosnterDetail_skillMovie {
  position: absolute;
  right: -4%;
  bottom: 30px;
  width: auto;
  height:  128px;
}
.btn_mosnterDetail_skillMovie {
  height: 128px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mosnterDetail_Icon {
  position: absolute;
  left: 15%;
  top: 35px;
  width: auto;
  height:  64px;
}
.btn_mosnterDetail_Icon {
  height: 130px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

  /* 入手方法 */
  .monsterDetail_get .monsterDetail_title {
    width: 100%;
    height: 36px;
    background: url(../img/wiki/monster/pc/title_1.jpg) 0 0 no-repeat;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .monsterDetail_title .titleText { display: none; }
  .monsterDetail_get .howtoget {
    margin-top: -2px;
    border: 2px solid #a37931;
    border-radius: 2px;
  }
  .monsterDetail_get .howtoget .text a { font-size: 14px; }
  /* 進化 */
  .monsterDetail_evolution {
    padding-bottom: 30px;
    margin: 8px 0 5px;
  }
  .monsterDetail_evolution .monsterDetail_title {
    width: 100%;
    height: 36px;
    margin-top: 30px;
    background: url(../img/wiki/monster/pc/title_2.jpg) 0 0 no-repeat;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .monsterDetail_evolution .evolution_flow {
    max-width: 760px;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
  }
  .monsterDetail_evolution .evolution_flow + .evolution_flow { margin-top: 15px; }
  /* 進化最後は矢印とプラスアイコンを非表示 */
  .monsterDetail_evolution .evolution_flow:last-of-type .icon-plus { display: none; }
  .monsterDetail_evolution .evolution_flow:last-of-type .left { background: none; }
  .monsterDetail_evolution .evolution_flow:last-of-type .left:after { background: none; }
  .monsterDetail_evolution .left {
    top: 6px;
    width: 96px;
    height: 30px;
    -webkit-background-size: 42px 2px;
    -moz-background-size: 42px 2px;
    background-size: 42px 2px;
  }
  .monsterDetail_evolution .left:after {
    bottom: -18px;
    width: 42px;
    height: 42px;
    -webkit-background-size: 42px 42px;
    -moz-background-size: 42px 42px;
    background-size: 42px 42px;
  }
  .monsterDetail_evolution .left .monster-base,
  .monsterDetail_evolution .left .monster-icon {
    z-index: 1;
    width: 96px;
    height: 96px;
  }
  .monsterDetail_evolution .right {
    position: relative;
    width: auto;
    min-width: 662px;
    padding: 4px 0 0 0;
  }
  .monsterDetail_evolution .before,
  .monsterDetail_evolution .after {
    display: inline-block;
    width: auto;
  }
  .monsterDetail_evolution .before {
    position: relative;
    float: left;
    min-width: 238px;
    max-width: 238px;
    padding: 20px 15px 10px;
    margin: 10px 16px 10px 10px;
    background: #351b0c;
    border: 2px solid #b2902f;
    border-radius: 10px;
  }
  .monsterDetail_evolution .before:after {
    position: absolute;
    top: 16px;
    left: -9px;
    width: 15px;
    height: 15px;
    content: "";
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #351b0c;
    border-bottom: 2px solid #b2902f;
    border-left: 2px solid #b2902f;
  }
  .monsterDetail_evolution [class*="evolution"] .before:before {
    position: absolute;
    top: -11px;
    left: 12px;
    width: 62px;
    height: 22px;
    content: "";
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }
  .monsterDetail_evolution .evolution0 .before:before {
    background-image: url(../img/text_evolution_0.png);
  }
  .monsterDetail_evolution .evolution1 .before:before {
    background-image: url(../img/text_evolution_1.png);
  }
  .monsterDetail_evolution .evolution2 .before:before {
    background-image: url(../img/text_evolution_2.png);
  }
  .monsterDetail_evolution .evolution3 .before:before {
    background-image: url(../img/text_evolution_3.png);
  }
  .monsterDetail_evolution .evolution4 .before:before {
    background-image: url(../img/text_evolution_4.png);
  }
  .monsterDetail_evolution .evolution5 .before:before {
    background-image: url(../img/text_evolution_5.png);
  }
  .monsterDetail_evolution .evolution6 .before:before {
    background-image: url(../img/text_evolution_6.png);
  }
  .monsterDetail_evolution .evolution7 .before:before {
    background-image: url(../img/text_evolution_7.png);
  }
  .monsterDetail_evolution .evolution8 .before:before {
    background-image: url(../img/text_evolution_8.png);
  }
  .monsterDetail_evolution .evolution_rebirth .before:before {
    background-image: url(../img/text_evolution_rebirth.png);
  }
  .monsterDetail_evolution .monster_list_name:before { display: none; }
  .monsterDetail_evolution .star img {
    width: 22px;
    height: 22px;
  }
  .monsterDetail_evolution .monster_no {
    position: initial;
    font-size: 12px;
  }
  .monsterDetail_evolution .icon-plus {
    position: absolute;
    top: 24px;
    left: 231px;
    z-index: 1;
    display: table-cell;
    width: 33px;
    height: 32px;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
  }
  .monsterDetail_evolution .after:before {
    position: absolute;
    top: -13px;
    left: 24px;
    width: 90px;
    height: 26px;
    -webkit-background-size: 498px 26px;
    -moz-background-size: 498px 26px;
    background-size: 498px 26px;
    background-position: -228px 2px;
  }
  .monsterDetail_evolution .evolution_rebirth .after:before {
    background-position: -415px 2px !important;
  }
  .monsterDetail_evolution .evolution_super_rebirth .after:before {
    background-position: -118px 2px !important;
    background-size: 216px 26px;
    height: 26px;
  }
  .monsterDetail_evolution .after {
    float: left;
    width: 338px;
    min-height: 100px;
    vertical-align: top;
    padding: 12px 30px;
    margin: 10px 0 0 60px;
    border-width: 2px;
    border-radius: 10px
  }
  .monsterDetail_evolution .lithograph-icon {
    top: 7px;
    left: -46px;
    width: 64px;
    height: 64px;
  }
  /* スキン */
  .monsterDetail_skin .monsterDetail_title {
    width: 100%;
    height: 36px;
    background: url(../img/wiki/monster/pc/title_7.jpg) 0 0 no-repeat;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .monsterDetail_skin .skin-wrap {
    display: flex;
    flex-direction: row;
    height: auto;
    margin-top: -2px;
    overflow: hidden;
    border: 2px solid #a37931;
    border-radius: 2px;
  }
  .monsterDetail_skin .skin-wrap .skin-data {
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    width: 100%;
    background: #351a0e;
    border: none;
    border-right: 2px solid #636260;
  }
  .monsterDetail_skin .skin-wrap .skin-data .skin-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto;
  }
  .monsterDetail_skin .skin-wrap .skin-data .skin-icon .monster-base {
    position: relative;
    top: 5px;
    left: 0;
    margin-top: -12px;
    width: 96px;
    height: 96px;
  }
  .monsterDetail_skin .skin-wrap .skin-data .skin-icon .monster-icon {
    position: relative;
    left: 0px;
    top: -90px;
    width: 96px;
    height: 96px;
  }
  .monsterDetail_skin .skin-wrap .skin-data .skin-name {
    display: block;
    font-size: 12px;
  }
  .mosnterDetail_skinName {
    display: none;
  }
  /* スキル */
  .monsterDetail_skill { margin-top: 30px; }
  .monsterDetail_skill .monsterDetail_title {
    width: 100%;
    height: 36px;
    background: url(../img/wiki/monster/pc/title_3.jpg) 0 0 no-repeat;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .monsterDetail_skill .skill-wrap {
    margin-top: -2px;
    overflow: hidden;
    border: 2px solid #a37931;
    border-radius: 2px;
  }
  .monsterDetail_skill .skill-detail {
    float: left;
    width: 33.3333%;
    padding-bottom: 32768px;
    margin-bottom: -32768px;
    border: none;
    border-right: 2px solid #636260;
  }
  .monsterDetail_skill .skill-detail:last-of-type { border: none; }
  .monsterDetail_skill .skill-detail { font-size: 14px; }
  .monsterDetail_skill .skill-detail ul {
    position: relative;
    left: 50%;
    display: inline-block;
    width: auto;
    padding: 15px;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .monsterDetail_skill .skill-detail .skill-annotation {
    display: inline-block;
    padding-left: 0;
    margin-top: 5px;
  }
  .monsterDetail_skill .skill-level img {
    width: 82px;
    height: 26px;
  }
  .monsterDetail_skill .skill-pattern {
    line-height: 1.1;
  }
  .monsterDetail_skill .skill-pattern img { width: 15px; }
  /* アビリティ */
  .monsterDetail_ability .monsterDetail_title {
    width: 100%;
    height: 36px;
    margin-top: 30px;
    background: url(../img/wiki/monster/pc/title_4.jpg) 0 0 no-repeat;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .monsterDetail_ability .ability-detail,
  .monsterDetail_shard .shard table { width: 100%; color: #fff; font-size: 14px; }
  .monsterDetail_shard .shard {
    position: relative;
    width: auto;
    max-width: 800px;
    padding: 15px;
    margin: 10px auto;
    line-height: 1.6;
    font-size: 14px;
  }
  .monsterDetail_ability .ability-detail .ability-detail-flex {
    display: flex;
    align-items: center;
  }
  .monsterDetail_shard .shard {
    padding: 0;
  }
  .monsterDetail_ability .ability-annotation { padding: 0 0 0 15px; }
  .monsterDetail_ability .wrap {
    display: inline-block;
    width: 575px;
  }
  .monsterDetail_ability .open-condition.enable, 
  .monsterDetail_ability .open-condition.disable {
    position: relative;
    top: 30px;
    right: -20px;
    width: 180px;
    height: 58px;
    margin: 0;
    line-height: 58px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
  }
  .monsterDetail_ability .open-condition.disable {
    border: 2px solid #636363;
    border-radius: 10px;
  }
  .monsterDetail_ability .open-condition.enable a {
    width: 100%;
    height: 58px;
    line-height: 58px;
    margin: 0;
    text-align: center;
    text-decoration: none;
  }
  .monsterDetail_ability .separate {
    margin-top: 50px;
  }

  /* モンスターのかけら */
  .monsterDetail_shard .monsterDetail_title {
    width: 100%;
    height: 36px;
    margin-top: 30px;
    background: url(../img/wiki/monster/pc/title_5.jpg) 0 0 no-repeat;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .monsterDetail_shard .shard tbody td:nth-child(1) img {
    width: 64px;
    height: 64px;
  }


  /* カスタムアビリティ */
  .monsterDetail_customAbility .monsterDetail_title {
    width: 100%;
    height: 36px;
    margin-top: 30px;
    background: url(../img/wiki/monster/pc/title_6.jpg) 0 0 no-repeat;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .monsterDetail_customAbility .shard tbody td:nth-child(1) img {
    width: 64px;
    height: 64px;
  }
}


/* 武器スキル */
  .WeaponDetail_count{
    margin-top: 10px;
    /* top: 50%; */
    /* right: 15px; */
    /* display: inline-block; */
    width: 180px;
    /* height: 45px; */
    px; */
    line-height: 60px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    font-size: 16px;
    background: #351a0e;
  }

  .WeaponDetail_count{
    border: 1px solid #c18a2f;
    border-radius: 10px;
  }
  .WeaponDetail_count{
    /* width: 200px; */
    px; */
    /* height: 30px; */
    line-height: 44px;
    text-align: center;
    /* text-decoration: none; */
    /* padding-bottom: 5px; */
    /* padding-left: 50px; */
    px; */
    padding-top: 5px;
    /* padding-right: 50px; */
    /* margin-left: 10px; */
    px; */
    display:inline;
    /* margin-top: 10px; */
    px; */
    display: inline;
    ne; */
    position: absolute;
    display: inline-block;
    text-align: center;
    margin-left: 10px;
  }

  .WeaponDetail_count2{
  display: inline;
  color: #F9CF3B;
  }
  .WeaponDetail_count1{
  display: inline;
  color: #ffffff;
  }

  .WeaponDetail_base{
    position: relative;
    margin-left: 150px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 15px 10px 5px;
    background: #282828;
    border: 1px solid #a37931;
    border-radius: 4px;
    font-size: 13px;
    color: #ffffff;
  }

  .WeaponDetail_custom{
    position: relative;
    margin-left: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 15px 10px 5px;
    background: #282828;
    border: 1px solid #a37931;
    border-radius: 4px;
    font-size: 13px;
    color: #ffffff;
  }

  .SkillLankIcon{
  color: #000000;
  margin-left: -16%;
  margin-top: 1%;
  position: absolute;
  } 

  .SkillRankArrow{
    height: 43%;
    width: 30px;
    margin: 70px 62px 0px 62px;
    background: #777;
    position: absolute;
    }
  }


@media (min-width: 768px) and (max-width: 799px) {
  .monsterDetail .frame {
    height: 80px;
    max-width: 800px;
    margin: 10px auto 20px;
    background-image: url(../img/wiki/monster/pc/title_base.png);
    background-position: 100% 0;
    background-repeat: no-repeat;
    -webkit-background-size: 97.5% 80px;
    -moz-background-size: 97.5% 80px;
    background-size: 97.5% 80px;
    border: none;
    border-image: none;
  }
  .monsterDetail .upper {
    max-width: 800px;
    margin: auto;
    line-height: inherit;
  }
  .SkillLankIcon{
  color: #000000;
  margin-left: -16%;
  margin-top: 1%;
  position: absolute;
  } 
}

@media (min-width: 800px) {
  .monsterDetail .frame {
    height: 80px;
    max-width: 800px;
    margin: 10px auto 20px;
    background-image: url(../img/wiki/monster/pc/title_base.png);
    background-position: 100% 0;
    background-repeat: no-repeat;
    -webkit-background-size: 97.5% 80px;
    -moz-background-size: 97.5% 80px;
    background-size: 97.5% 80px;
    border: none;
    border-image: none;
  }

  .SkillLankIcon{
  color: #000000;
  margin-left: -16%;
  margin-top: 1%;
  position: absolute;
  } 
}


@media (max-width: 736px) {
  .SkillLankIcon{
  color: #000000;
  margin-left: -60px;
  margin-top: 1%;
  position: absolute;
  transform: scale(0.8,0.8);
  } 
  .WeaponDetail_base{
    position: relative;
    margin-left: 70px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 15px 10px 5px;
    background: #282828;
    border: 1px solid #a37931;
    border-radius: 4px;
    font-size: 13px;
    color: #ffffff;
  }
  .WeaponDetail_custom{
    position: relative;
    margin-left: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 15px 10px 5px;
    background: #282828;
    border: 1px solid #a37931;
    border-radius: 4px;
    font-size: 13px;
    color: #ffffff;
  }
  .WeaponDetail_custom .open-condition.disable,
    display: block;
    width: 125px;
    height: 40px;
    line-height: 40px;
    margin: 5px auto 0;
    text-align: center;
    border: 1px solid #636363;
    border-radius: 4px;
  }
}

/* skill
--------------------------------------------------*/
.skill_system{position:relative;}

/* PC 共用 */
@media (min-width: 768px) {
  .list_skill {
    width: 510px;
    padding: 0;
    margin: 20px auto 50px;
    list-style: none;
  }
  .list_skill .item {
    display: inline-block;
    vertical-align: top;
    width: 250px;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    border: 1px solid #bd8e2d;
    border-radius: 8px;
    background-color: #FFFFFF;
    position: relative;
  }
  .list_skill .item:nth-child(odd) { margin-left: 0; }
  .list_skill .item .inner {
    margin: 0;
    height: 51px;
    padding: 25px 0 0 50px;
    border-radius: 7px 7px 0 0;
    background-color: #2D0B02;
    color: #FEFEFE;
  }
  .list_skill .item .name {
    font-size: 14px;
    line-height: 1.3em;
    height: 2.6em;
    overflow: hidden;
    white-space: nowrap;
    color: #F9CF3B;
  }
  .list_skill .item .no { font-size: 12px !important; }
  .list_skill .item .description {
    padding: 10px;
    font-size: 14px;
    color: #2B2B2B;
    text-decoration: underline;
  }
  .skill_system {
    width: 480px;
    height: 110px;
    background-image: url(../img/wiki/skill/pc/word_base.png);
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px; }
  .skill_system .inner {
    text-align: center;
    font-size: 12px;
    height : 110px;
  }
  .skill_system .name {
    height: 37px;
    font-size: 13px;
    line-height: 3em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0 4px;
  }
  .skill_system .system {
    color: #FEFEFE;
    height: 35px;
    font-size: 13px;
    line-height: 2.7em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0 4px;
  }
  .skill_system .description{color:#FEFEFE; height: 32px; font-size:13px; line-height:2.6em; overflow:hidden;}
  .list_skill .item .attribute{position:absolute; top:10px; left:10px;}
  .list_skill .item .attribute .icon{display:block; width:32px; height:32px;}
  .evolution_title + .list_monster,
  .soul_title + .list_monster,
  .awakening_title + .list_monster,
  .ex_title + .list_monster,
  .assist_title + .list_monster,
  .link_title + .list_monster,
  .rebirth_title + .list_monster { margin-bottom: 40px; }

}

@media (min-width: 790px) {
  .list_skill { width: 770px; }
  .list_skill .item:nth-child(odd) { margin-left: 10px; }
  .list_skill .item:nth-child(3n+1) { margin-left: 0; }
}

/* SP 共用 */
@media (max-width: 767px) {
  .list_skill {
    padding: 0;
    margin: 0 10px 10px;
    list-style: none;
  }
  .list_skill .item {
    position: relative;
    float: left;
    width: 100%;
    margin-top: 10px;
    background-color: #FFFFFF;
    border: 1px solid #bd8e2d;
    border-radius: 8px;
  }
  .list_skill .item .inner {
    margin: 0;
    height: 47px;
    padding: 25px 0 0 50px;
    border-radius: 7px 7px 0 0;
    background-color: #2D0B02;
    color: #FEFEFE;
  }
  .list_skill .item .name {
    font-size: 13px;
    line-height: 1.3em;
    height: 2.6em;
    overflow: hidden;
    color: #F9CF3B;
  }
  .list_skill .item .description {
    padding: 10px;
    font-size: 13px;
    color: #2B2B2B;
    text-decoration: underline;
  }
  .skill_system {
    border-style: solid;
    border-width: 6px 0 6px 0;
    -webkit-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    -moz-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    -o-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 fill stretch;
    width: 100%;
    height: 63px;
  }
  .skill_area {
    padding-left: 0;
    padding-right: 0;
  }
  .skill_system .inner {
    text-align: center;
    font-size: 12px;
    height: 64px;
  }
  .skill_system .name {
    height: 17px;
    margin: 0;
    line-height: 1.1em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    font-size: 12px;
  }
  .skill_system .system {
    color: #FEFEFE;
    height: 18px;
    font-size: 11px;
    line-height: 1.6em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0;
  }
  .skill_system .system a:link { color: #FEFEFE; }
  .skill_system .description {
    color: #FEFEFE;
    height: 18px;
    font-size: 11px;
    line-height: 1.8em;
    overflow: hidden;
  }
  .list_skill .item .attribute {
    position: absolute;
    top: 7px;
    left: 7px;
  }
  .evolution_title + .list_monster,
  .soul_title + .list_monster,
  .awakening_title + .list_monster,
  .ex_title + .list_monster,
  .assist_title + .list_monster,
  .link_title + .list_monster,
  .rebirth_title + .list_monster { margin-bottom: 30px; }

  .WeaponDetail_custom .ability-annotation {
    display: table-cell;
    vertical-align: top;
    width: 200px;
    padding-left: 5px;
    line-height: 1.6;
  }
  .WeaponDetail_custom .open-condition.disable {
    position: absolute;
    top: 50%;
    right: 15px;
    display: inline-block;
    width: 90px;
    height: 58px;
    line-height: 58px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    border: 2px solid #636363;
    border-radius: 10px;
  }
}

/* SP ２列表示 */
@media (min-width: 520px) and (max-width: 767px) {
  .list_skill .item {
    width: 49%;
    margin-left: 2%;
  }
  .list_skill .item:nth-child(odd) { margin-left: 0; }
}
.list_skill .item .link {
  display: block;
  text-decoration: none;
}
.skill_system .system .link {
  color: #FEFEFE;
  text-decoration: underline;
}
.list_skill .item .no {
  position: absolute;
  left: 50px;
  top: 8px;
  font-size: 11px;
  line-height: 1.5em;
}


/* skill detail
--------------------------------------------------*/
.skill_detail{ position: relative; }

/* PC 共用 */
@media (min-width: 768px) {
  .skill_detail {
    width: 480px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    background-image: url(../img/wiki/skill/pc/word_base.png);
  }
  .skill_detail .name {
    color: #FEFEFE;
    height: 38px;
    font-size: 13px;
    line-height: 3em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0 4px;
  }
  .skill_detail .inner {
    text-align: center;
    font-size: 12px;
    height : 110px;
  }
  .skill_detail .no {
    position: absolute;
    top: 10px;
    left: 42px;
  }
  .skill_detail .no .no_label { font-size: 10px; }
  .skill_detail .no .no_value { font-size: 16px; }
  .skill_detail .system {
    color: #FEFEFE;
    height: 35px;
    font-size: 13px;
    line-height: 2.7em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    margin: 0 4px;
    }
  .skill_detail .attribute {
    position: absolute;
    top: -10px;
    left: -3px;
  }
  .skill_detail .attribute .icon {
    display: block;
    width: 42px;
    height: 42px;
  }
  .skill_detail .description {
    color: #FEFEFE;
    height: 38px;
    font-size: 13px;
    line-height: 3em;
    overflow: hidden;
  }
  .evolution_title {
    width: 250px;
    height: 26px;
    margin: 40px auto 20px;
    background-image: url(../img/wiki/skill/title_1.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .soul_title {
    width: 300px;
    height: 26px;
    margin: 40px auto 20px;
    background-image: url(../img/wiki/skill/title_2.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .awakening_title {
    width: 255px;
    height: 26px;
    margin: 40px auto 20px;
    background-image: url(../img/wiki/skill/title_3.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .rebirth_title {
    width: 300px;
    height: 26px;
    margin: 40px auto 20px;
    background-image: url(../img/wiki/skill/title_4.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .ex_title {
    width: 300px;
    height: 26px;
    margin: 40px auto 20px;
    background-image: url(../img/wiki/skill/title_5.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .assist_title {
    width: 300px;
    height: 26px;
    margin: 40px auto 20px;
    background-image: url(../img/wiki/skill/title_6.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .link_title {
    width: 300px;
    height: 26px;
    margin: 40px auto 20px;
    background-image: url(../img/wiki/skill/title_7.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
}

/* SP 共用 */
@media (max-width: 767px) {
  .skill_detail {
    width: 100%;
    height: 71px;
    border-style: solid;
    border-width: 6px 0 6px 0;
    -webkit-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    -moz-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    -o-border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 stretch;
    border-image: url(../img/wiki/skill/sp/word_base.jpg) 6 6 6 6 fill stretch;
  }
  .skill_area {
    padding-left: 0;
    padding-right: 0;
    margin-top: 15px;
  }
  .skill_detail .no {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
     height: 0;
   }
  .skill_detail .inner {
    height : 71px;
    text-align: center;
    font-size: 12px;
  }
  .skill_detail .name {
    height: 23px;
    margin: 0;
    line-height: 2.4em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    color: #F9CF3B;
    font-size: 11px;
  }
  .skill_detail .system {
    height: 20px;
    margin: 0;
    line-height: 2.0em;
    overflow: hidden;
    border-bottom: 1px solid #544F50;
    color: #FEFEFE;
    font-size: 10px;
  }
  .skill_detail .system a:link { color: #FEFEFE; }
  .skill_detail .attribute {
    position: absolute;
    top: -20px;
    left: 50%;
    margin: 0 0 0 -12.5px;
  }
  .skill_detail .attribute .icon {
    display: block;
    width: 25px;
    height: 25px;
  }
  .skill_detail .description {
    color: #FEFEFE;
    height: 20px;
    font-size: 10px;
    line-height: 2.2em;
    overflow: hidden;
  }
  .evolution_title {
    width: 250px;
    height: 20px;
    margin: 20px 0 5px 10px;
    background-image: url(../img/wiki/skill/title_1.png);
    background-repeat: no-repeat;margin-top:25px;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .soul_title {
    width: 300px;
    height: 20px;
    margin: 30px 0 5px 10px;
    background-image: url(../img/wiki/skill/title_2.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .awakening_title {
    width: 255px;
    height: 20px;
    margin: 30px 0 5px 10px;
    background-image: url(../img/wiki/skill/title_3.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .rebirth_title {
    width: 300px;
    height: 20px;
    margin: 30px 0 5px 10px;
    background-image: url(../img/wiki/skill/title_4.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }  
  .ex_title {
    width: 300px;
    height: 20px;
    margin: 30px 0 5px 10px;
    background-image: url(../img/wiki/skill/title_5.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .assist_title {
    width: 300px;
    height: 20px;
    margin: 30px 0 5px 10px;
    background-image: url(../img/wiki/skill/title_6.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .link_title {
    width: 300px;
    height: 20px;
    margin: 30px 0 5px 10px;
    background-image: url(../img/wiki/skill/title_7.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
}
.skill_detail .system .link {
  color: #FEFEFE;
  text-decoration: underline;
}
.bright_color { color: #F9CF3B; }

/* QA
--------------------------------------------------*/
.qa_wrap {
  margin: 10px 0 20px;
  color: #FFF;
}
/* bootstrap reset */
.qa_wrap .panel-group { margin-bottom: 0; }
.qa_wrap .panel-group .panel {
  border: none;
  background: none;
  box-shadow: none;
  text-shadow: 0 2px 1px #000;
}
.qa_wrap .panel-group .panel + .panel { margin-top: 0; }
.qa_wrap .panel-group .panel-heading {
  padding: 0;
  border: none;
  background: none;
}
.qa_wrap .panel-group .panel-heading + .panel-collapse > .panel-body {
  border: none;
  padding: 0;
  text-shadow: none;
}
.qa_wrap ul, .qa_wrap li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}
/* QA common */
.qa_main_index { font-weight: bold; }
.qa_list_container .qa_main_index {
  display: block;
  height: 54px;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
}
.qa_list_container .qa_sub_index {
  height: 50px;
  margin: 0 auto;
  color: #F9D600;
  text-align: center;
  text-decoration: none;
}
.qa_list_container .qa_sub_index.collapsed { color: #FFF; }
.qa_list_container .qa_content {
  margin: 0 auto;
  background: #313131;
}

@media (min-width: 768px) {
  /* QA PC */
  .qa_wrap { margin: 10px 0 50px; }
  .qa_list_container .qa_main_index {
    width: 640px;
    line-height: 54px;
    margin: 0 auto;
    background-image: url(../img/wiki/qa/pc/btn_base.png);
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-decoration: none;
  }
  .qa_list_container .qa_sub_index {
    display: block;
    width: 620px;
    line-height: 50px;
    background-image: url(../img/wiki/qa/pc/btn_base_active.png);
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .qa_list_container .qa_sub_index.collapsed {
    background-image: url(../img/wiki/qa/pc/btn_base_open.png);
    text-decoration: none;
  }
  .qa_list_container .qa_content {
    width: 620px;
    padding: 22px 46px !important;
  }
}
@media (max-width: 767px) {
  /* QA SP */
  .qa_list_container .qa_main_index {
    width: 98.5%;
    margin: 0 auto;
    border-style: solid;
    border-width: 14px 25px 14px 25px;
    -webkit-border-image: url(../img/wiki/qa/sp/btn_base.png) 17 30 17 30 stretch;
    -moz-border-image: url(../img/wiki/qa/sp/btn_base.png) 17 30 17 30 stretch;
    border-image: url(../img/wiki/qa/sp/btn_base.png) 17 30 17 30 fill stretch;
    text-decoration: none;
  }
  .qa_list_container .qa_sub_index {
    position: relative;
    display: block;
    width: 94.5%;
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    border-style: solid;
    border-width: 17px 30px 17px 30px;
    -webkit-border-image: url(../img/wiki/qa/sp/btn_base_open.png) 17 30 17 30 stretch;
    -moz-border-image: url(../img/wiki/qa/sp/btn_base_open.png) 17 30 17 30 stretch;
    border-image: url(../img/wiki/qa/sp/btn_base_open.png) 17 30 17 30 fill stretch;
    text-decoration: none;
  }
  .qa_list_container .qa_sub_index:after,
  .qa_list_container .qa_sub_index:before {
    position: absolute;
    top: 4px;
    width: 15px;
    height: 9px;
    margin: 0 auto;
    content: "";
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-background-size: 15px 9px;
    -moz-background-size: 15px 9px;
    background-size: 15px 9px;
  }
  .qa_list_container .qa_sub_index:after {
    right: -15px;
    background-image: url(../img/wiki/qa/sp/icon_arrow_active.png);
  }
  .qa_list_container .qa_sub_index:before {
    left: -15px;
    background-image: url(../img/wiki/qa/sp/icon_arrow_active.png);
  }
  .qa_list_container .qa_sub_index.collapsed:after {
    background-image: url(../img/wiki/qa/sp/icon_arrow.png);
  }
  .qa_list_container .qa_sub_index.collapsed:before {
    background-image: url(../img/wiki/qa/sp/icon_arrow.png);
  }
  .qa_list_container .qa_content {
    width: 94.5%;
    padding: 11px 13px !important;
  }
}

/* beginner
--------------------------------------------------*/
/* beginner common */
.beginner_wrap {
  margin: 10px auto 50px;
}
.beginner_wrap h1,
.beginner_wrap ul,
.beginner_wrap li,
.beginner_wrap dl,
.beginner_wrap dt,
.beginner_wrap dd,
.beginner_wrap p {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  list-style: none;
}
.beginner_wrap .cont_summary,
.beginner_wrap .monster_summary { text-align: justify; }

@media (min-width: 768px) {
  /* beginner PC */
  .beginner_wrap .contents_wrap {
    width: 800px;
    margin: 0 auto;
  }
  .beginner_wrap .view_img {
    margin: 20px 0 15px 0;
    text-align: center;
  }
  .beginner_wrap .cont_summary { padding: 0 20px; }
  .beginner_wrap .cont_box_wrap { overflow: hidden; }
  .beginner_wrap .cont_box_wrap .cont_box {
    float: left;
    width: 390px;
  }
  .beginner_wrap .cont_box_wrap .cont_box2 {
    float: left;
    width: 390px;
    height:410px;
    margin-right: 10px;
  }
  .beginner_wrap .cont_box_wrap .cont_box3 {
    float: left;
    width: 390px;
    height:410px;
    margin-left: 10px;
  }

  .beginner_wrap .cont_box_wrap .cont_box.box_ml { margin-left: 20px; }
  .beginner_wrap .img_sokan {
    width: 344px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/beginner/pc/sokan.png);
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .beginner_wrap .txt_advantage_attr {
    width: 231px;
    height: 39px;
    margin: 38px auto 0 auto;
    background-image: url(../img/wiki/beginner/pc/txt_attribute.png);
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .beginner_wrap .cont_index {
    width: 390px;
    line-height: 36px;
    margin: 0 auto;
    background-image: url(../img/wiki/beginner/pc/bg_index.png);
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 17px;
    font-weight: bold;
    color: #F9D600;
    text-align: center;
  }
  .beginner_wrap .cont_index.large {
    width: 800px;
    background-image: url(../img/wiki/beginner/pc/bg_index_large.png);
  }
  .beginner_wrap .attr_description {
    overflow: hidden;
    margin: 15px 0 0 10px;
  }
  .beginner_wrap .attr_description dt, .beginner_wrap .attr_description dd {
    float: left;
    line-height: 30px;
    vertical-align: top;
  }
  .beginner_wrap .attr_description dd {
    margin-left: 10px;
  }
  .beginner_wrap .icon_attr {
    display: inline-block;
    width: 30px;
    height: 30px;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .beginner_wrap .icon_attr.attr1 {
    background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_1.png);
  }
  .beginner_wrap .icon_attr.attr2 {
    background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_2.png);
  }
  .beginner_wrap .icon_attr.attr3 {
    background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_3.png);
  }
  .beginner_wrap .icon_attr.attr4 {
    background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_4.png);
  }
  .beginner_wrap .icon_attr.attr5 {
    background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_5.png);
  }
  .beginner_wrap .icon_attr.attr6 {
    background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_6.png);
  }
  .beginner_wrap .icon_attr_arrow {
    display: inline-block;
    width: 60px;
    height: 30px;
    -webkit-background-size: 60px auto;
    -moz-background-size: 60px auto;
    background-size: 60px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .beginner_wrap .icon_attr_arrow.attr1 {
    background-image: url(../img/wiki/beginner/icon_attr_arrow_1.png);
  }
  .beginner_wrap .icon_attr_arrow.attr2 {
    background-image: url(../img/wiki/beginner/icon_attr_arrow_2.png);
  }
  .beginner_wrap .icon_attr_arrow.attr3 {
    background-image: url(../img/wiki/beginner/icon_attr_arrow_3.png);
  }
  .beginner_wrap .icon_attr_arrow.attr4 {
    background-image: url(../img/wiki/beginner/icon_attr_arrow_4.png);
  }
  .beginner_wrap .icon_attr_arrow.attr5 {
    background-image: url(../img/wiki/beginner/icon_attr_arrow_5.png);
  }
  .beginner_wrap .icon_attr_arrow.attr6 {
    background-image: url(../img/wiki/beginner/icon_attr_arrow_6.png);
  }
  .beginner_wrap .img_revolution {
    width: 390px;
    height: 201px;
    margin: 0 auto;
    background-image: url(../img/wiki/beginner/img_1.png);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .beginner_wrap .img_mana {
    width: 390px;
    height: 201px;
    margin: 0 auto;
    background-image: url(../img/wiki/beginner/img_2.png);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .beginner_wrap .img_simulator_help_1 {
    width: 100%;
    height: 201px;
    margin: 0 auto;
    background-image: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_001.png);
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
    .beginner_wrap .img_simulator_help_2 {
    width: 100%;
    height: 201px;
    margin: 0 auto;
    background-image: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_002.png);
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
    .beginner_wrap .img_simulator_help_3 {
    width: 100%;
    height: 201px;
    margin: 0 auto;
    background-image: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_003.png);
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
    .beginner_wrap .img_simulator_help_4 {
    width: 100%;
    height: 201px;
    margin: 0 auto;
    background-image: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_004.png);
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
    .beginner_wrap .img_simulator_help_5 {
    width: 100%;
    height: 201px;
    margin: 0 auto;
    background-image: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_005.png);
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

  .beginner_wrap .monster_list { overflow: hidden; }
  .beginner_wrap .monster_list > li {
    float: left;
    width: 390px;
    margin: 20px 0 0 20px;
    border: 1px solid #C8C8C8;
  }
  .beginner_wrap .monster_list > li:nth-child(2n+1) { margin-left: 0; }
  .beginner_wrap .monster_detail {
    overflow: hidden;
    border-bottom: 1px solid #C8C8C8;
  }
  .beginner_wrap .monster_detail .bg_monster_base {
    float: left;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-image: url(../img/wiki/beginner/monster_base.jpg);
    -webkit-background-size: 100px auto;
    -moz-background-size: 100px auto;
    background-size: 100px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-align: center;
  }
  .beginner_wrap .monster_detail .bg_monster_base > img {
    position: relative;
    bottom: 14px;
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .beginner_wrap .monster_detail .monster_info {
    float: left;
    width: 288px;
  }
  .beginner_wrap .monster_detail .monster_info .monster_name {
    height: 44px;
    line-height: 44px;
    vertical-align: top;
    padding-left: 10px;
    background: #434343;
    color: #FFF;
  }
  .beginner_wrap .monster_detail .monster_info .monster_name + dl a { color: #6d3712; }
  .beginner_wrap .monster_detail .monster_info .monster_name + dl a:hover { text-decoration: none; }
  .beginner_wrap .monster_detail .monster_info .monster_num {
    float: right;
    margin-right: 10px;
    font-size: 11px;
  }
  .beginner_wrap .monster_detail .monster_info dl { padding: 8px 10px; }
  .beginner_wrap .monster_detail .monster_info dt { font-size: 12px; }
  .beginner_wrap .monster_detail .monster_info dd { text-decoration: underline; }
  .beginner_wrap .monster_detail .icon_attr {
    width: 24px;
    height: 24px;
    -webkit-background-size: 24px auto;
    -moz-background-size: 24px auto;
    background-size: 24px auto;
    vertical-align: middle;
  }
  .beginner_wrap .monster_summary {
    min-height: 75px;
    padding: 10px 20px;
    font-size: 12px;
  }
  .beginner_wrap .monster_summary a {
    color: #333;
    text-decoration: underline;
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  .beginner_wrap .contents_wrap { width: 100%; }
  .beginner_wrap .cont_index.large,
  .beginner_wrap .cont_index {
    width: 100%;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .beginner_wrap .cont_box_wrap .cont_box,
  .beginner_wrap .cont_box_wrap .cont_box.box_ml,
  .beginner_wrap .img_revolution,
  .beginner_wrap .monster_list > li { width: 48.75%; }
  .beginner_wrap .cont_box_wrap .cont_box.box_ml,
  .beginner_wrap .monster_list > li { margin-left: 2.5%; }
  .beginner_wrap .attr_description {
    display: -webkit-box;
    display: -moz--box;
    display: -ms-box;
    display: box;
  }
  .beginner_wrap .attr_description dt,
  .beginner_wrap .attr_description dd { float: initial; }
  .beginner_wrap .attr_description dd {
    position: relative;
    padding: 0 20px 0 67px;
    line-height: 1.2;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    box-flex: 1;
  }
  .beginner_wrap .attr_description dd > span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .beginner_wrap .img_revolution,
  .beginner_wrap .img_mana {
    width: 100%;
    margin: 0;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
  }
  .beginner_wrap .monster_detail .bg_monster_base { width: 25.773195876288657%; }
  .beginner_wrap .monster_detail .monster_info { width: 74.22680412371135%; }
}

@media (max-width: 767px) {
  /* beginner SP */
  .beginner_wrap .contents_wrap { margin: 0 auto; }
  .beginner_wrap .view_img {
    margin: 20px 0 15px 0;
    text-align: center;
  }
  .beginner_wrap .cont_summary { padding: 0 20px; }
  .beginner_wrap .cont_box_wrap { overflow: hidden; }
  .beginner_wrap .cont_box_wrap .cont_box {
    float: left;
    width: 100%;
    margin-bottom: 20px;
  }
  .beginner_wrap .cont_box_wrap .cont_box.cont_line { border-top: 1px dotted #2D2D2D; }
  .beginner_wrap .img_sokan {
    width: 230px;
    height: 150px;
    margin: 0 auto;
    background-image: url(../img/wiki/beginner/sp/sokan.png);
    -webkit-background-size: 230px auto;
    -moz-background-size: 230px auto;
    background-size: 230px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .beginner_wrap .txt_advantage_attr {
    width: 167px;
    height: 28px;
    margin: 19px auto 10px auto;
    background-image: url(../img/wiki/beginner/sp/txt_attribute.png);
    -webkit-background-size: 167px auto;
    -moz-background-size: 167px auto;
    background-size: 167px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .beginner_wrap .cont_index {
    width: 100%;
    margin: 0 auto;
    border-style: solid;
    border-width: 14px 0 14px 0;
    -webkit-border-image: url(../img/wiki/beginner/sp/bg_index.png) 17 30 17 30 stretch;
    -moz-border-image: url(../img/wiki/beginner/sp/bg_index.png) 17 30 17 30 stretch;
    border-image: url(../img/wiki/beginner/sp/bg_index.png) 17 30 17 30 fill stretch;
    font-size: 17px;
    font-weight: bold;
    color: #F9D600;
    text-align: center;
  }
  .beginner_wrap .attr_description {
    margin: 0;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    box-orient: horizontal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-pack: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-box-pack: center;
    box-align: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    font-size: 11px;
  }
  .beginner_wrap .attr_description dt,
  .beginner_wrap .attr_description dd {
    line-height: 25px;
    vertical-align: top;
  }
  .beginner_wrap .attr_description dd { margin-left: 5px; }
  .beginner_wrap .icon_attr {
    display: inline-block;
    width: 25px;
    height: 25px;
    -webkit-background-size: 25px auto;
    -moz-background-size: 25px auto;
    background-size: 25px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .beginner_wrap .icon_attr.attr1 { background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_1.png); }
  .beginner_wrap .icon_attr.attr2 { background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_2.png); }
  .beginner_wrap .icon_attr.attr3 { background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_3.png); }
  .beginner_wrap .icon_attr.attr4 { background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_4.png); }
  .beginner_wrap .icon_attr.attr5 { background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_5.png); }
  .beginner_wrap .icon_attr.attr6 { background-image: url(/resource/wiki_res/images/_monster_attribute/MonsterAttribute_6.png); }
  .beginner_wrap .icon_attr_arrow {
    display: inline-block;
    width: 50px;
    height: 25px;
    -webkit-background-size: 50px auto;
    -moz-background-size: 50px auto;
    background-size: 50px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .beginner_wrap .icon_attr_arrow.attr1 { background-image: url(../img/wiki/beginner/icon_attr_arrow_1.png); }
  .beginner_wrap .icon_attr_arrow.attr2 { background-image: url(../img/wiki/beginner/icon_attr_arrow_2.png); }
  .beginner_wrap .icon_attr_arrow.attr3 { background-image: url(../img/wiki/beginner/icon_attr_arrow_3.png); }
  .beginner_wrap .icon_attr_arrow.attr4 { background-image: url(../img/wiki/beginner/icon_attr_arrow_4.png); }
  .beginner_wrap .icon_attr_arrow.attr5 { background-image: url(../img/wiki/beginner/icon_attr_arrow_5.png); }
  .beginner_wrap .icon_attr_arrow.attr6 { background-image: url(../img/wiki/beginner/icon_attr_arrow_6.png); }
  .beginner_wrap .img_revolution {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/beginner/img_1.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .beginner_wrap .img_mana {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/beginner/img_2.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
    .beginner_wrap .img_simulator_help_1 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_001.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .beginner_wrap .img_simulator_help_2 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_002.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .beginner_wrap .img_simulator_help_3 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_003.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .beginner_wrap .img_simulator_help_4 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_004.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .beginner_wrap .img_simulator_help_5 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(/resource/wiki_res/images/simulator/help/simulator_hellp_img_005.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  @media (min-width: 390px) {
    .beginner_wrap .img_revolution,
    .beginner_wrap .img_mana {
      width: 390px;
      height: 201px;
      padding-top: 0;
      -webkit-background-size: 390px auto;
      -moz-background-size: 390px auto;
      background-size: 390px auto;
    }
  }
  .beginner_wrap .monster_list { overflow: hidden; }
  .beginner_wrap .monster_list > li {
    width: 100%;
    border-bottom: 1px solid #C8C8C8;
  }
  .beginner_wrap .monster_detail {
    display: table;
    width: 100%;
    border-bottom: 1px solid #C8C8C8;
  }
  .beginner_wrap .monster_detail .bg_monster_base {
    display: table-cell;
    width: 100px;
    height: 100px;
    vertical-align: top;
    overflow: hidden;
    background-image: url(../img/wiki/beginner/monster_base.jpg);
    -webkit-background-size: 100px auto;
    -moz-background-size: 100px auto;
    background-size: 100px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-align: center;
  }
  .beginner_wrap .monster_detail .bg_monster_base > img {
    position: relative;
    bottom: 14px;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    margin-bottom: -14px;
  }
  .beginner_wrap .monster_detail .monster_info {
    display: table-cell;
    vertical-align: top;
  }
  .beginner_wrap .monster_detail .monster_info .monster_name {
    height: 44px;
    line-height: 44px;
    vertical-align: top;
    padding-left: 10px;
    background: #434343;
    color: #FFF;
  }
  .beginner_wrap .monster_detail .monster_info .monster_name + dl a { color: #6d3712; }
  .beginner_wrap .monster_detail .monster_info .monster_name + dl a:hover { text-decoration: none; }
  .beginner_wrap .monster_detail .monster_info .monster_num {
    float: right;
    margin-right: 10px;
    font-size: 11px;
  }
  .beginner_wrap .monster_detail .monster_info dl { padding: 8px 10px; }
  .beginner_wrap .monster_detail .monster_info dt { font-size: 12px; }
  .beginner_wrap .monster_detail .monster_info dd { text-decoration: underline; }
  .beginner_wrap .monster_detail .icon_attr {
    width: 24px;
    height: 24px;
    -webkit-background-size: 24px auto;
    -moz-background-size: 24px auto;
    background-size: 24px auto;
    vertical-align: middle;
  }
  .beginner_wrap .monster_summary {
    padding: 10px 20px;
    background: #EBEBEB;
    font-size: 12px;
  }
  .beginner_wrap .monster_summary a {
    color: #333;
    text-decoration: underline;
  }
}


/* code_input
--------------------------------------------------*/
/* code_input common */
.code_input_wrap {
  margin: 10px auto 50px;
}
.code_input_wrap h1,
.code_input_wrap ul,
.code_input_wrap li,
.code_input_wrap dl,
.code_input_wrap dt,
.code_input_wrap dd,
.code_input_wrap p {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  list-style: none;
}
.code_input_wrap .cont_summary,
.code_input_wrap .monster_summary { text-align: justify; }

.code_input_wrap form{
  padding: 0px 0px;
}

.code_input_wrap .input_text{
    width:90%;
    border: 3px solid #BC8D37;
    color:#333;
    border-radius:5px;
    margin: 25px 5% 20px;
    padding: 12px 15px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}

.code_input_wrap .textarea_check{
  width:90%;
    font-size:12px;
    color:#555;
    border: 3px solid #BC8D37;
    border-radius:5px;
    margin: 10px auto 2px;
    padding: 12px 0.8em;
    background:#fff;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}

.code_input_wrap .btn_code_input{
    width: 80%;
    margin:10px 10% 10px 10%;
}


.code_input_wrap .btn_code_input_clear{
    width: 90%;
    margin:10px 5% 10px 5%;
}


.code_input_wrap .code_input_error {
    width:90%;
    margin:20px 5%;
    padding: 20px 15px;
    background: #351a0e;
    border-top: 1px solid #a37931;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
}


.code_input_wrap .code_input_attention {
    width:90%;
    margin:20px 5%;
    padding: 20px 15px;
    background: #282828;
    border: 1px solid #a37931;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
}



@media (min-width: 768px) {
  /* code_input PC */
  .code_input_wrap .contents_wrap {
    width: 800px;
    margin: 0 auto;
  }
  .code_input_wrap .view_img {
    margin: 20px 0 15px 0;
    text-align: center;
  }
  .code_input_wrap .cont_summary { padding: 0 20px; }
  .code_input_wrap .cont_box_wrap { overflow: hidden; }
  .code_input_wrap .cont_box_wrap .cont_box {
    float: left;
    width: 390px;
  }
  .code_input_wrap .cont_box_wrap .cont_box {
    float: center;
    width: 390px;
  }
  
  .code_input_wrap .cont_box_wrap .cont_box.box_ml { margin-left: 20px; }
  .code_input_wrap .img_sokan {
    width: 344px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/code_input/pc/sokan.png);
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .code_input_wrap .cont_index {
    width: 390px;
    line-height: 36px;
    margin: 0 auto;
    background-image: url(../img/wiki/code_input/pc/bg_index.png);
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 17px;
    font-weight: bold;
    color: #F9D600;
    text-align: center;
  }
  .code_input_wrap .cont_index.large {
    width: 800px;
    background-image: url(../img/wiki/code_input/pc/bg_index_large.png);
  }
  .code_input_wrap .attr_description {
    overflow: hidden;
    margin: 15px 0 0 10px;
  }
  .code_input_wrap .attr_description dt, .code_input_wrap .attr_description dd {
    float: left;
    line-height: 30px;
    vertical-align: top;
  }
  .code_input_wrap .attr_description dd {
    margin-left: 10px;
  }
 
}

@media (min-width: 768px) and (max-width: 800px) {
  .code_input_wrap .contents_wrap { width: 100%; }
  .code_input_wrap .cont_index.large,
  .code_input_wrap .cont_index {
    width: 100%;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .code_input_wrap .cont_box_wrap .cont_box,
  .code_input_wrap .cont_box_wrap .cont_box.box_ml,
  .code_input_wrap .img_revolution,
  .code_input_wrap .monster_list > li { width: 48.75%; }
  .code_input_wrap .cont_box_wrap .cont_box.box_ml,
  .code_input_wrap .monster_list > li { margin-left: 2.5%; }
  .code_input_wrap .attr_description {
    display: -webkit-box;
    display: -moz--box;
    display: -ms-box;
    display: box;
  }
  .code_input_wrap .attr_description dt,
  .code_input_wrap .attr_description dd { float: initial; }
  .code_input_wrap .attr_description dd {
    position: relative;
    padding: 0 20px 0 67px;
    line-height: 1.2;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    box-flex: 1;
  }
  .code_input_wrap .attr_description dd > span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}

@media (max-width: 767px) {
  /* code_input SP */
  .code_input_wrap .contents_wrap { margin: 0 auto; }
  .code_input_wrap .view_img {
    margin: 20px 0 15px 0;
    text-align: center;
  }
  .code_input_wrap .cont_summary { padding: 0 20px; }
  .code_input_wrap .cont_box_wrap { overflow: hidden; }
  .code_input_wrap .cont_box_wrap .cont_box {
    float: left;
    width: 100%;
    margin-bottom: 20px;
  }
  .code_input_wrap .cont_box_wrap .cont_box.cont_line { border-top: 1px dotted #2D2D2D; }
  .code_input_wrap .img_sokan {
    width: 230px;
    height: 150px;
    margin: 0 auto;
    background-image: url(../img/wiki/code_input/sp/sokan.png);
    -webkit-background-size: 230px auto;
    -moz-background-size: 230px auto;
    background-size: 230px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

  .code_input_wrap .cont_index {
    width: 100%;
    margin: 0 auto;
    border-style: solid;
    border-width: 14px 0 14px 0;
    -webkit-border-image: url(../img/wiki/code_input/sp/bg_index.png) 17 30 17 30 stretch;
    -moz-border-image: url(../img/wiki/code_input/sp/bg_index.png) 17 30 17 30 stretch;
    border-image: url(../img/wiki/code_input/sp/bg_index.png) 17 30 17 30 fill stretch;
    font-size: 17px;
    font-weight: bold;
    color: #F9D600;
    text-align: center;
  }
  .code_input_wrap .attr_description {
    margin: 0;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    box-orient: horizontal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-pack: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-box-pack: center;
    box-align: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    font-size: 11px;
  }
  .code_input_wrap .attr_description dt,
  .code_input_wrap .attr_description dd {
    line-height: 25px;
    vertical-align: top;
  }
  .code_input_wrap .attr_description dd { margin-left: 5px; }
}





/* backup
--------------------------------------------------*/
/* backup common */
.backup_wrap {
  margin: 10px auto 50px;
}
.backup_wrap h1,
.backup_wrap ul,
.backup_wrap li,
.backup_wrap dl,
.backup_wrap dt,
.backup_wrap dd,
.backup_wrap p {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}
.backup_wrap .cont_summary,
.backup_wrap .monster_summary { text-align: justify; }
.backup_wrap .backup_link{ 
  color: #6d3712;
  text-decoration: underline;
}

.btn_backup_wrap {
  text-align: center;
  margin:0 auto;
}
.backup_wrap li { 
  margin: 10px 20px 0 40px !important;

}


.btn_backup {
  display:inline-block;
  margin:10px 3px 10px 3px;
}

@media (min-width: 768px) {
  /* backup PC */
  .backup_wrap .contents_wrap {
    width: 800px;
    margin: 0 auto;
  }
  .backup_wrap .view_img {
    margin: 20px 0 15px 0;
    text-align: center;
  }
  .backup_wrap .cont_summary { padding: 0 20px; }
  .backup_wrap .cont_box_wrap { overflow: hidden; }
  .backup_wrap .cont_box_wrap .cont_box {
    float: left;
    width: 390px;
  }
  .backup_wrap .cont_box_wrap .cont_box.box_ml { margin-left: 20px; }
  
  .backup_wrap .cont_index {
    width: 390px;
    line-height: 36px;
    margin: 0 auto;
    background-image: url(../img/wiki/beginner/pc/bg_index.png);
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 17px;
    font-weight: bold;
    color: #F9D600;
    text-align: center;
  }
  .backup_wrap .cont_index.large {
    width: 800px;
    background-image: url(../img/wiki/beginner/pc/bg_index_large.png);
  }
  .backup_wrap .attr_description {
    overflow: hidden;
    margin: 15px 0 0 10px;
  }
  .backup_wrap .attr_description dt, .backup_wrap .attr_description dd {
    float: left;
    line-height: 30px;
    vertical-align: top;
  }
  .backup_wrap .attr_description dd {
    margin-left: 10px;
  }
  

  .backup_wrap .img_backupiOS01 {
    width: 390px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/backup/BackUpiOS01.png);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .backup_wrap .img_backupiOS02 {
    width: 390px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/backup/BackUpiOS02.png);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .backup_wrap .img_backupiOS03 {
    width: 390px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/backup/BackUpiOS03.png);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

   .backup_wrap .img_backupiOS04 {
    width: 390px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/backup/BackUpiOS04.png);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

  .backup_wrap .img_backupAndroid01 {
    width: 390px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/backup/BackUpAndroid01.png?v=20171228);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .backup_wrap .img_backupAndroid02 {
    width: 390px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/backup/BackUpAndroid02.png?v=20171228);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .backup_wrap .img_backupStandard01 {
    width: 390px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/backup/BackUpStandard01_4.png?v=20171228);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .backup_wrap .img_backupStandard02 {
    width: 390px;
    height: 202px;
    margin: 0 auto;
    background-image: url(../img/wiki/backup/BackUpStandard02_3.png?v=20171228);
    -webkit-background-size: 390px auto;
    -moz-background-size: 390px auto;
    background-size: 390px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }



}

@media (min-width: 768px) and (max-width: 800px) {
  .backup_wrap .contents_wrap { width: 100%; }
  .backup_wrap .cont_index.large,
  .backup_wrap .cont_index {
    width: 100%;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
  }
  .backup_wrap .cont_box_wrap .cont_box,
  .backup_wrap .cont_box_wrap .cont_box.box_ml,
  .backup_wrap .img_revolution,
  .backup_wrap .monster_list > li { width: 48.75%; }
  .backup_wrap .cont_box_wrap .cont_box.box_ml,
  .backup_wrap .monster_list > li { margin-left: 2.5%; }
  .backup_wrap .attr_description {
    display: -webkit-box;
    display: -moz--box;
    display: -ms-box;
    display: box;
  }
  .backup_wrap .attr_description dt,
  .backup_wrap .attr_description dd { float: initial; }
  .backup_wrap .attr_description dd {
    position: relative;
    padding: 0 20px 0 67px;
    line-height: 1.2;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    box-flex: 1;
  }
  .backup_wrap .attr_description dd > span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .backup_wrap .img_revolution,
  .backup_wrap .img_mana {
    width: 100%;
    margin: 0;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
  }
  .backup_wrap .monster_detail .bg_monster_base { width: 25.773195876288657%; }
  .backup_wrap .monster_detail .monster_info { width: 74.22680412371135%; }
}

@media (max-width: 767px) {
  /* backup SP */
  .backup_wrap .contents_wrap { margin: 0 auto; }
  .backup_wrap .view_img {
    margin: 20px 0 15px 0;
    text-align: center;
  }
  .backup_wrap .cont_summary { padding: 0 20px; }
  .backup_wrap .cont_box_wrap { overflow: hidden; }
  .backup_wrap .cont_box_wrap .cont_box {
    float: left;
    width: 100%;
    margin-bottom: 20px;
  }
  .backup_wrap .cont_box_wrap .cont_box.cont_line { border-top: 1px dotted #2D2D2D; }

  .backup_wrap .cont_index {
    width: 100%;
    margin: 0 auto;
    border-style: solid;
    border-width: 14px 0 14px 0;
    -webkit-border-image: url(../img/wiki/beginner/sp/bg_index.png) 17 30 17 30 stretch;
    -moz-border-image: url(../img/wiki/beginner/sp/bg_index.png) 17 30 17 30 stretch;
    border-image: url(../img/wiki/beginner/sp/bg_index.png) 17 30 17 30 fill stretch;
    font-size: 17px;
    font-weight: bold;
    color: #F9D600;
    text-align: center;
  }
  .backup_wrap .attr_description {
    margin: 0;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    box-orient: horizontal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-pack: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-box-pack: center;
    box-align: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    font-size: 11px;
  }
  .backup_wrap .attr_description dt,
  .backup_wrap .attr_description dd {
    line-height: 25px;
    vertical-align: top;
  }
  .backup_wrap .attr_description dd { margin-left: 5px; }
 
  .backup_wrap .img_backupiOS01 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/backup/BackUpiOS01.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .backup_wrap .img_backupiOS02 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/backup/BackUpiOS02.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .backup_wrap .img_backupiOS03 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/backup/BackUpiOS03.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .backup_wrap .img_backupiOS04 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/backup/BackUpiOS04.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .backup_wrap .img_backupAndroid01 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/backup/BackUpAndroid01.png?v=20171228) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .backup_wrap .img_backupAndroid02 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/backup/BackUpAndroid02.png?v=20171228) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }
  .backup_wrap .img_backupStandard01 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/backup/BackUpStandard01_4.png?v=20171228) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }  .backup_wrap .img_backupStandard02 {
    padding-top: 51.5625%;
    margin: 0 auto;
    background: url(../img/wiki/backup/BackUpStandard02_3.png?v=20171228) 0 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-indent: -99999px;
    line-height: 0;
  }


  @media (min-width: 390px) {
    .backup_wrap .img_revolution,
    .backup_wrap .img_mana {
      width: 390px;
      height: 201px;
      padding-top: 0;
      -webkit-background-size: 390px auto;
      -moz-background-size: 390px auto;
      background-size: 390px auto;
    }
  }
}































/* schedule
--------------------------------------------------*/
/* schedule common */
.schedule_wrap h1,
.schedule_wrap ul,
.schedule_wrap li,
.schedule_wrap dl,
.schedule_wrap dt,
.schedule_wrap dd,
.schedule_wrap p {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  list-style: none;
}
.schedule_wrap { margin-bottom: 40px; }
.schedule_wrap .monster_detail .monster_info dd + dt { margin-top: 1em; }
.check-attr label:hover,
.check-attr label:focus,
.check-rarity label:hover,
.check-rarity label:focus { cursor: pointer; }
[id*="attr-"] + label,
[id*="rarity-"] + label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 50px;
  margin: 0;
  background-repeat: no-repeat;
  color: #aeaeae;
}
[id*="attr-"] + label:before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
[id*="attr-"]:checked + label:before { color: #fff; }
#attr-1 + label:before { content: "火"; }
#attr-2 + label:before { content: "水"; }
#attr-3 + label:before { content: "木"; }
#attr-4 + label:before { content: "光"; }
#attr-5 + label:before { content: "闇"; }
[id*="attr-"]:checked + label,
[id*="attr-"] + label {
  background-image: url(../img/monster_attr_sprite.png);
  background-size: 500px 50px;
}
#attr-1:checked + label { background-position: 0 0; }
#attr-2:checked + label { background-position: -100px 0; }
#attr-3:checked + label { background-position: -200px 0; }
#attr-4:checked + label { background-position: -300px 0; }
#attr-5:checked + label { background-position: -400px 0; }
#attr-1 + label { background-position: -50px 0; }
#attr-2 + label { background-position: -150px 0; }
#attr-3 + label { background-position: -250px 0; }
#attr-4 + label { background-position: -350px 0; }
#attr-5 + label { background-position: -450px 0; }
[id*="rarity-"]:checked + label,
[id*="rarity-"] + label {
  background-image: url(../img/schedule_star_sprite.png);
  background-size: 54px 432px;
}
#rarity-4:checked + label { background-position: -2.13px -2.13px; }
#rarity-5:checked + label { background-position: -2.13px -110.05px; }
#rarity-6:checked + label { background-position: -2.13px -217.97px; }
#rarity-7:checked + label { background-position: -2.13px -325.89px; }
#rarity-4 + label { background-position: -2.13px -56.09px; }
#rarity-5 + label { background-position: -2.13px -164.01px; }
#rarity-6 + label { background-position: -2.13px -271.93px; }
#rarity-7 + label { background-position: -2.13px -379.85px; }

@media (min-width: 768px) {
  /* schedule PC */
  .schedule .refine { background: #1e1e1e; }
  .schedule .refine_date {
    display: table;
    padding: 15px 15px 45px;
    margin: 0 auto;
    line-height: 1;
    font-size: 0;
  }
  .schedule .refine_date li {
    display: inline-block;
    width: 100px;
    height: 53px;
    line-height: 53px;
    background: url(../img/schedule_btn_off.png) 0 0 no-repeat;
    -webkit-background-size: 100px 53px;
    -moz-background-size: 100px 53px;
    background-size: 100px 53px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  }
  .schedule .refine_date li +li { margin-left: 12px; }
  .schedule .refine_date a {
    display: block;
    color: #aeaeae;
    text-decoration: none;
  }
  .schedule .refine_date li.is-select {
    background: url(../img/schedule_btn_on.png) 0 0 no-repeat;
    -webkit-background-size: 100px 53px;
    -moz-background-size: 100px 53px;
    background-size: 100px 53px;
  }
  .schedule .refine_date li.is-select a {
    color: #fff;
    pointer-events: none;
  }
  /* accordion */
  .refine-accordion {
    max-width: 800px;
    margin: -30px auto 0;
  }
  #detail-refine {
    padding: 10px 0 1px;
    margin: 0 10px;
    background: #281610;
  }
  .refine-accordion .attr { margin-top: 5px; }
  .refine-accordion .attr dt > img,
  .refine-accordion .rarity dt > img {
    width: 100%;
    height: 16px;
  }
  .refine-accordion > a {
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: url(../img/schedule_refine_close_pc.png) 0 0 no-repeat;
    -webkit-background-size: 100% 60px;
    -moz-background-size: 100% 60px;
    background-size: 100% 60px;
    text-align: center;
  }
  .refine-accordion > a.collapsed {
    background: url(../img/schedule_refine_open_pc.png) 0 0 no-repeat;
    -webkit-background-size: 100% 60px;
    -moz-background-size: 100% 60px;
    background-size: 100% 60px;
  }
  /* accordion checkbox */
  .check-attr,
  .check-rarity { margin: 10px !important; }
  .check-attr li,
  .check-rarity li {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  .check-rarity li { margin-bottom: 0; }
  .check-attr li + li { margin-left: 20px; }
  .check-rarity li + li { margin-left: 10px; }
  .check-attr input,
  .check-rarity input {
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  /* submit */
  .refine-accordion input[type="submit"] {
    display: block;
    width: 210px;
    height: 50px;
    margin: 20px auto;
    outline: none;
    background: url(../img/schedule_btn_refine.png) 0 0 no-repeat;
    -webkit-background-size: 210px 50px;
    -moz-background-size: 210px 50px;
    background-size: 210px 50px;
    border: none;
    border-radius: 0;
    text-indent: -99999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .schedule_wrap .date_switch {
    overflow: hidden;
    width: 380px;
    height: 44px;
    line-height: 44px;
    margin: 0 auto;
    -webkit-background-size: auto;
    -moz-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    color: #FFF;
  }
  .schedule_wrap .date_switch.switch1 { background-image: url(../img/wiki/schedule/pc/switch1.png); }
  .schedule_wrap .date_switch.switch2 { background-image: url(../img/wiki/schedule/pc/switch2.png); }
  .schedule_wrap .date_switch.switch3 { background-image: url(../img/wiki/schedule/pc/switch3.png); }
  .schedule_wrap .date_switch > li {
    float: left;
    width: 126px;
    text-align: center;
  }
  .schedule_wrap .date_switch > li > a {
    display: block;
    width: 100%;
    height: 100%;
    color: #FFF;
  }
  .schedule_wrap .contents_wrap {
    max-width: 800px;
    margin: 0 auto;
  }
  .schedule_wrap .cont_index {
    width: 100%;
    height: 36px;
    margin: 0 auto;
    -webkit-background-size: 100% 36px;
    -moz-background-size: 100% 36px;
    background-size: 100% 36px;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .schedule_wrap .cont_index.rare4 { background-image: url(../img/wiki/schedule/pc/bg_rare4.png); }
  .schedule_wrap .cont_index.rare5 { background-image: url(../img/wiki/schedule/pc/bg_rare5.png); }
  .schedule_wrap .cont_index.rare6 { background-image: url(../img/wiki/schedule/pc/bg_rare6.png); }
  .schedule_wrap .cont_index.rare7 { background-image: url(../img/wiki/schedule/pc/bg_rare7.png); }
  .schedule_wrap .attr_description {
    overflow: hidden;
    margin: 15px 0 0 10px;
  }
  .schedule_wrap .attr_description dt, .schedule_wrap .attr_description dd {
    float: left;
    line-height: 30px;
    vertical-align: top;
  }
  .schedule_wrap .attr_description dd {
    margin-left: 10px;
  }
  .schedule_wrap .icon_attr,
  .schedule_wrap .icon_spec {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .schedule_wrap .icon_attr + .icon_spec { margin-left: -7px; }
  .schedule_wrap .icon_attr {
    background-image: url(../img/monster_attr_sprite.png);
    -webkit-background-size: 300px 30px;
    -moz-background-size: 300px 30px;
    -ms-background-size: 300px 30px;
    background-size: 300px 30px;
  }
  .schedule_wrap .icon_attr.attr1 { background-position: 0 0; }
  .schedule_wrap .icon_attr.attr2 { background-position: -60px 0; }
  .schedule_wrap .icon_attr.attr3 { background-position: -120px 0; }
  .schedule_wrap .icon_attr.attr4 { background-position: -180px 0; }
  .schedule_wrap .icon_attr.attr5 { background-position: -240px 0; }
  .schedule_wrap [class*="monsterSpecies"] {
    -webkit-background-size: 30px 150px;
    -mos-background-size: 30px 150px;
    -ms-background-size: 30px 150px;
    background-size: 30px 150px;
  }
  .schedule_wrap .icon_spec.monsterSpecies1 { background-position: 0 0; }
  .schedule_wrap .icon_spec.monsterSpecies2 { background-position: -30px 0; }
  .schedule_wrap .icon_spec.monsterSpecies3 { background-position: -60px 0; }
  .schedule_wrap .icon_spec.monsterSpecies4 { background-position: -90px 0; }
  .schedule_wrap .icon_spec.monsterSpecies5 { background-position: -120px 0; }
  .schedule_wrap .monster_list { overflow: hidden; }
  .schedule_wrap .monster_list > li {
    float: left;
    width: 31.624999999999996%;
    margin: 20px 0 0 2.5%;
    border: 1px solid #C8C8C8;
    border-radius: 5px;
  }
  .schedule_wrap .monster_list > li:nth-child(3n+1) { margin-left: 0; }
  .schedule_wrap .monster_detail {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #C8C8C8;
    padding-top: 50px;
  }
  .schedule_wrap .monster_detail .bg_monster_base {
    float: left;
    width: 100.79681274900398%;
    height: 164px;
    line-height: 164px;
    background-image: url(../img/wiki/schedule/pc/monster_base.png);
    -webkit-background-size: 100.79681274900398% 166px;
    -moz-background-size: 100.79681274900398% 166px;
    background-size: 100.79681274900398% 166px;
    background-repeat: no-repeat;
    background-position: -1px -1px;
    text-align: center;
  }
  .schedule_wrap .monster_detail .bg_monster_base > img {
    vertical-align: top;
    width: 155px;
  }
  .schedule_wrap .monster_detail .monster_info { float: left; }
  .schedule_wrap .monster_detail .monster_info .monster_name {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 2px 0 0 10px;
    vertical-align: top;
    border-bottom: 1px solid #C8C8C8;
    border-radius: 5px 5px 0 0;
  }
  .schedule_wrap .monster_detail .monster_info .monster_name > p {
    float: left;
    font-size: 16px;
  }
  .schedule_wrap .monster_detail .monster_info .monster_name > p.attr_wrap {
    float: right;
    padding: 8px 10px 0 0;
  }
  .schedule_wrap .monster_detail .monster_info .monster_name > p.spec_wrap {
    float: right;
    padding: 8px 10px 0 0;
  }
  .schedule_wrap .monster_detail .monster_info .monster_name > p .sub_name { font-size: 12px; }
  .schedule_wrap .monster_detail .monster_info dl {
    padding: 4px 10px;
    font-size: 12px;
  }
  .schedule_wrap .info_anchor {
    position: relative;
    height: 45px;
    line-height: 45px;
    padding-left: 32px;
    background-image: url(../img/wiki/schedule/background_p.jpg);
    background-repeat: repeat;
    border-radius: 0 0 5px 5px;
  }
  .schedule_wrap .info_anchor:before {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 10px;
    height: 16px;
    margin-top: -8px;
    content: "";
    background-image: url(../img/wiki/schedule/icon_anchor_arrow.png);
    -webkit-background-size: 10px auto;
    -moz-background-size: 10px auto;
    background-size: 10px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .schedule_wrap .info_anchor a {
    display: block;
    color: #FFE300;
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  /* schedule SP */
  .schedule .refine { background: #1e1e1e; }
  .schedule .refine_date {
    display: table;
    padding: 10px;
    margin: 0 auto;
    line-height: 1;
    font-size: 0;
  }
  .schedule .refine_date li {
    display: inline-block;
    width: 66px;
    height: 35px;
    line-height: 35px;
    background: url(../img/schedule_btn_off.png) 0 0 no-repeat;
    -webkit-background-size: 66px 35px;
    -moz-background-size: 66px 35px;
    background-size: 66px 35px;
    text-align: center;
    font-size: 14px;
  }
  .schedule .refine_date li +li { margin-left: 12px; }
  .schedule .refine_date a {
    display: block;
    color: #aeaeae;
    text-decoration: none;
  }
  .schedule .refine_date li.is-select {
    background: url(../img/schedule_btn_on.png) 0 0 no-repeat;
    -webkit-background-size: 66px 35px;
    -moz-background-size: 66px 35px;
    background-size: 66px 35px;
  }
  .schedule .refine_date li.is-select a {
    color: #fff;
    text-decoration: none;
    pointer-events: none;
  }
  /* accordion */
  .refine-accordion { background: #281610; }
  #detail-refine { padding-bottom: 1px; }
  .refine-accordion .attr { margin-top: 5px; }
  .refine-accordion > a {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 1;
    background: url(../img/wiki/ability/sp/btn_base.jpg) 50% 0 no-repeat;
    -webkit-background-size: 110% 40px;
    -moz-background-size: 110% 40px;
    background-size: 110% 40px;
    text-align: center;
  }
  .refine-accordion > a.collapsed:before {
    background: url(../img/schedule_refine_open_sp.png) 0 0 no-repeat;
    -webkit-background-size: 192px 18px;
    -moz-background-size: 192px 18px;
    background-size: 192px 18px;
  }
  .refine-accordion > a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 192px;
    height: 18px;
    content: "";
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../img/schedule_refine_close_sp.png) 0 0 no-repeat;
    -webkit-background-size: 192px 18px;
    -moz-background-size: 192px 18px;
    background-size: 192px 18px;
  }
  /* accordion checkbox */
  .check-attr,
  .check-rarity { margin: 5px 10px !important; }
  .check-attr li,
  .check-rarity li {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  .check-rarity li { margin-bottom: 0; }
  .check-attr li + li { margin-left: 5px; }
  .check-rarity li + li { margin-left: 10px; }
  .check-attr input,
  .check-rarity input {
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  /* submit */
  .refine-accordion input[type="submit"] {
    display: block;
    width: 150px;
    height: 35px;
    margin: 20px auto;
    outline: none;
    background: url(../img/schedule_btn_refine.png) 0 0 no-repeat;
    -webkit-background-size: 150px 35px;
    -moz-background-size: 150px 35px;
    background-size: 150px 35px;
    border: none;
    border-radius: 0;
    text-indent: -99999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .schedule_wrap .date_switch {
    width: 320px;
    height: 41px;
    line-height: 41px;
    margin: 0 auto;
    -webkit-background-size: 320px auto;
    -moz-background-size: 320px auto;
    background-size: 320px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    color: #FFF;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    box-pack: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-box-pack: center;
    box-align: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
  }
  .schedule_wrap .date_switch.switch1 { background-image: url(../img/wiki/schedule/sp/switch1.png); }
  .schedule_wrap .date_switch.switch2 { background-image: url(../img/wiki/schedule/sp/switch2.png); }
  .schedule_wrap .date_switch.switch3 { background-image: url(../img/wiki/schedule/sp/switch3.png); }
  .schedule_wrap .date_switch > li {
    box-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    text-align: center;
  }
  .schedule_wrap .date_switch > li > a {
    display: block;
    width: 100%;
    height: 100%;
    color: #FFF;
  }
  .schedule_wrap .contents_wrap { margin: 0 auto; }
  .schedule_wrap .cont_index {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-style: solid;
    border-width: 4px 0 5px 0;
    -webkit-border-image: url(../img/wiki/schedule/sp/bg_base.png) 5 0 8 0 stretch;
    -moz-border-image: url(../img/wiki/schedule/sp/bg_base.png) 5 0 8 0 stretch;
    border-image: url(../img/wiki/schedule/sp/bg_base.png) 5 0 8 0 fill stretch;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .schedule_wrap .cont_index:after {
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 18px;
    margin-left: -30px;
    content: "";
    -webkit-background-size: 60px auto;
    -moz-background-size: 60px auto;
    background-size: 60px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .schedule_wrap .cont_index.rare4:after { background-image: url(../img/wiki/schedule/sp/txt_rare4.png); }
  .schedule_wrap .cont_index.rare5:after { background-image: url(../img/wiki/schedule/sp/txt_rare5.png); }
  .schedule_wrap .cont_index.rare6:after { background-image: url(../img/wiki/schedule/sp/txt_rare6.png); }
  .schedule_wrap .cont_index.rare7:after { background-image: url(../img/wiki/schedule/sp/txt_rare7.png); }
  .schedule_wrap .attr_description {
    margin: 0;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    box-orient: horizontal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-pack: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-box-pack: center;
    box-align: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
  }
  .schedule_wrap .attr_description dt,
  .schedule_wrap .attr_description dd {
    line-height: 25px;
    vertical-align: top;
  }
  .schedule_wrap .attr_description dd { margin-left: 5px; }


  .schedule_wrap .icon_attr,
  .schedule_wrap .icon_spec {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .schedule_wrap .icon_attr + .icon_spec { margin-left: -4px; }
  .schedule_wrap .icon_attr {
    background-image: url(../img/monster_attr_sprite.png);
    -webkit-background-size: 250px 25px;
    -moz-background-size: 250px 25px;
    -ms-background-size: 250px 25px;
    background-size: 250px 25px;
  }
  .schedule_wrap .icon_attr.attr1 { background-position: 0 0; }
  .schedule_wrap .icon_attr.attr2 { background-position: -50px 0; }
  .schedule_wrap .icon_attr.attr3 { background-position: -100px 0; }
  .schedule_wrap .icon_attr.attr4 { background-position: -150px 0; }
  .schedule_wrap .icon_attr.attr5 { background-position: -200px 0; }
  .schedule_wrap [class*="monsterSpecies"] {
    -webkit-background-size: 25px 125px;
    -moz-background-size: 25px 125px;
    -ms-background-size: 25px 125px;
    background-size: 25px 125px;
  }
  .schedule_wrap .icon_spec.monsterSpecies1 { background-position: 0 0; }
  .schedule_wrap .icon_spec.monsterSpecies2 { background-position: -25px 0; }
  .schedule_wrap .icon_spec.monsterSpecies3 { background-position: -50px 0; }
  .schedule_wrap .icon_spec.monsterSpecies4 { background-position: -75px 0; }
  .schedule_wrap .icon_spec.monsterSpecies5 { background-position: -200px 0; }
  .schedule_wrap .monster_list { margin: 0 10px; }
  .schedule_wrap .monster_list > li {
    width: 100%;
    margin-top: 10px;
    border: 1px solid #C8C8C8;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
  }
  
  .schedule_wrap .monster_detail {
    display: table;
    width: 100%;
  }
  .schedule_wrap .monster_detail .bg_monster_base {
    position: relative;
    width: 145px;
    min-height: 115px;
    display: table-cell;
    vertical-align: bottom;
    text-align: center;
    background: -moz-linear-gradient(top,  rgb(179,179,179) 0%, rgb(61,61,61) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(179,179,179)), color-stop(100%,rgb(61,61,61)));
    background: -webkit-linear-gradient(top,  rgb(179,179,179) 0%,rgb(61,61,61) 100%);
    background: -ms-linear-gradient(top,  rgb(179,179,179) 0%,rgb(61,61,61) 100%);
    background: url(../img/quest/shadow.png) 50% 100% no-repeat, linear-gradient(to bottom,  rgb(179,179,179) 0%,rgb(61,61,61) 100%);
    -webkit-background-size: 128px 41px, cover;
    -moz-background-size: 128px 41px, cover;
    background-size: 128px 41px, cover;
    border-radius: 3px 0 0 0;
  }
  .schedule_wrap .monster_detail .bg_monster_base > img {
    width: 110px;
    margin-bottom: 10px;
  }
  .schedule_wrap .monster_detail .monster_info {
    display: table-cell;
    min-height: 115px;
    vertical-align: top;
  }
  .schedule_wrap .monster_name {
    width: 100%;
    height: 50px;
    vertical-align: top;
    padding: 2px 7px;
    border-bottom: 1px solid #C8C8C8;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    box-pack: start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-box-pack: start;
    box-align: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
  }
  .schedule_wrap .monster_name > p { font-size: 13px; }
/*
  .schedule_wrap .monster_name > div:first-of-type {
  }
*/
  .schedule_wrap .monster_name > p.attr_wrap { 
    display: inline-block;
    padding: 8px 0px 0 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    box-flex: 1;  
  }
  .schedule_wrap .monster_name > p.spec_wrap {
    display: inline-block;
    padding: 8px 5px 0 0; 
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    box-flex: 1;  
  }

  .schedule_wrap .monster_name .spec_wrap .icon_spec{
    display: inline-block;
    width: 25px;
    height: 25px;
  }
  .schedule_wrap .monster_name .attr_wrap .icon_attr{
    display: inline-block;
    width: 25px;
    height: 25px;
  }

  
  .schedule_wrap .monster_name > p .sub_name { font-size: 10px; }
  .schedule_wrap .monster_detail .monster_info dl {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    box-orient: vertical;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-pack: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-box-pack: center;
    box-align: top;
    -webkit-box-align: top;
    -moz-box-align: top;
    -ms-box-align: top;
    padding: 4px 10px;
    font-size: 12px;
  }
  .schedule_wrap .info_anchor {
    position: relative;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    background-image: url(../img/wiki/schedule/background_p.jpg);
    background-repeat: repeat;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
  }
  .schedule_wrap .info_anchor:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 6px;
    height: 12px;
    margin-top: -6px;
    background-image: url(../img/wiki/schedule/icon_anchor_arrow.png);
    -webkit-background-size: 6px auto;
    -moz-background-size: 6px auto;
    background-size: 6px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .schedule_wrap .info_anchor a {
    display: block;
    color: #FFE300;
    text-decoration: none;
  }
}


/* base
--------------------------------------------------*/
.rdstr {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fwb { font-weight: bold !important; }

.tal { text-align: left !important; }
.tar { text-align: right !important; }
.tac { text-align: center !important; }

.deco,
.hodeco:hover { text-decoration: underline; }

.tca { color: #ff0000 !important; }

.dn         { display: none !important; }
.db         { display: block !important; }
.dib        { display: inline-block !important; }
.table      { display: table !important; }
.table_row  { display: table-row !important; }
.table_cell { display: table-cell !important; }

.o0 {
  opacity: 0 !important;
  filter: alpha(opacity=0) !important;
  -ms-filter: "alpha(opacity=0)" !important;
  -moz-opacity: 0 !important;
  -khtml-opacity: 0 !important;
}

.oh { overflow: hidden !important; }
.cp { cursor: pointer !important; }
.clearfix { zoom: 1; }
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.fl { float: left !important; }
.fr { float: right !important; }

.pr { position: relative !important; }
.pa { position: absolute !important; }

.bn  { border: none !important; }
.btn { border-top: none !important; }
.bbn { border-bottom: none !important; }
.bln { border-left: none !important; }
.brn { border-right: none !important; }

.z1 { z-index: 1 !important; }

.m0    { margin: 0px !important; }
.m5    { margin: 5px !important; }
.m10   { margin: 10px !important; }
.m15   { margin: 15px !important; }
.m20   { margin: 20px !important; }
.ml0   { margin-left: 0px !important; }
.ml5   { margin-left: 5px !important; }
.ml10  { margin-left: 10px !important; }
.ml15  { margin-left: 15px !important; }
.ml20  { margin-left: 20px !important; }
.ml25  { margin-left: 25px !important; }
.ml30  { margin-left: 30px !important; }
.ml35  { margin-left: 35px !important; }
.ml40  { margin-left: 40px !important; }
.ml45  { margin-left: 45px !important; }
.ml50  { margin-left: 50px !important; }
.ml60  { margin-left: 60px !important; }
.ml70  { margin-left: 70px !important; }
.ml80  { margin-left: 80px !important; }
.ml90  { margin-left: 90px !important; }
.ml100 { margin-left: 100px !important; }
.mr0   { margin-right: 0px !important; }
.mr5   { margin-right: 5px !important; }
.mr10  { margin-right: 10px !important; }
.mr15  { margin-right: 15px !important; }
.mr20  { margin-right: 20px !important; }
.mr25  { margin-right: 25px !important; }
.mr30  { margin-right: 30px !important; }
.mr35  { margin-right: 35px !important; }
.mr40  { margin-right: 40px !important; }
.mr45  { margin-right: 45px !important; }
.mr50  { margin-right: 50px !important; }
.mr60  { margin-right: 60px !important; }
.mr70  { margin-right: 70px !important; }
.mr80  { margin-right: 80px !important; }
.mr90  { margin-right: 90px !important; }
.mr100 { margin-right: 100px !important; }
.mt0   { margin-top: 0px !important; }
.mt5   { margin-top: 5px !important; }
.mt10  { margin-top: 10px !important; }
.mt15  { margin-top: 15px !important; }
.mt20  { margin-top: 20px !important; }
.mt25  { margin-top: 25px !important; }
.mt30  { margin-top: 30px !important; }
.mt35  { margin-top: 35px !important; }
.mt40  { margin-top: 40px !important; }
.mt45  { margin-top: 45px !important; }
.mt50  { margin-top: 50px !important; }
.mt60  { margin-top: 60px !important; }
.mt70  { margin-top: 70px !important; }
.mt80  { margin-top: 80px !important; }
.mt90  { margin-top: 90px !important; }
.mt100 { margin-top: 100px !important; }
.mb0   { margin-bottom: 0px !important; }
.mb5   { margin-bottom: 5px !important; }
.mb10  { margin-bottom: 10px !important; }
.mb15  { margin-bottom: 15px !important; }
.mb20  { margin-bottom: 20px !important; }
.mb25  { margin-bottom: 25px !important; }
.mb30  { margin-bottom: 30px !important; }
.mb35  { margin-bottom: 35px !important; }
.mb40  { margin-bottom: 40px !important; }
.mb45  { margin-bottom: 45px !important; }
.mb50  { margin-bottom: 50px !important; }
.mb60  { margin-bottom: 60px !important; }
.mb70  { margin-bottom: 70px !important; }
.mb80  { margin-bottom: 80px !important; }
.mb90  { margin-bottom: 90px !important; }
.mb100 { margin-bottom: 100px !important; }
.mh0    { margin-left: 0px !important; margin-right: 0px !important; }
.mh5    { margin-left: 5px !important; margin-right: 5px !important; }
.mh10   { margin-left: 10px !important; margin-right: 10px !important; }
.mh15   { margin-left: 15px !important; margin-right: 15px !important; }
.mh20   { margin-left: 20px !important; margin-right: 20px !important; }
.mhauto { margin-left: auto !important; margin-right: auto !important; }

/* quest
--------------------------------------------------*/
.quest ul {
  padding: 0;
  list-style: none;
}
.quest ul:not(.nav),
.quest dl,
.quest dt,
.quest dd,
.quest p {
  margin: 0;
  font-weight: normal;
}
.quest h2 {
  height: auto;
  margin: 0;
  font-size: 0;
}
.quest > article {
  max-width: 800px;
  margin: 0 auto;
}
.quest .page-title {
  margin: 10px 0;
  text-align: center;
}

/* クエスト */
.quest .reward-item-wrap + .quest-name { margin-top: 40px; }
.quest .quest-name {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 28px;
  line-height: 28px;
  margin: 0;
  background: url(../img/quest/bg_title_sp.jpg) 0 0 repeat-x;
  -webkit-background-size: 320px 28px;
  -moz-background-size: 320px 28px;
  background-size: 320px 28px;
  color: #f2d025;
  font-size: 13px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.quest .quest-pager {
  top: 0;
  width: 100%;
  height: 28px;
  line-height: 28px;
  text-align: center;
  margin: 0;
  background: url(../img/quest/bg_title_sp.jpg) 0 0 repeat-x;
  -webkit-background-size: 320px 28px;
  -moz-background-size: 320px 28px;
  background-size: 320px 28px;
  color: #fff;
  font-size: 13px;
}
.quest .quest-pager-right {
  float: right;
  margin-right:25px;
}
.quest .quest-pager-left {
  float: left;
  margin-left:25px;
}

/* クエスト選択 */
.quest .quest-select {
  display: table;
  margin: 10px auto !important;
  table-layout: fixed;
  border-spacing: 10px 0;
}
.quest .quest-select a {
  position: relative;
  display: table-cell;
  width: 140px;
  height: 48px;
  line-height: 1.2;
  vertical-align: middle;
  background: #210809;
  border: 2px solid #fcd147;
  border-radius: 26px;
  box-shadow: 0 0 5px #000 inset;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 -1px 1px #000;
}
.quest .quest-select a:after {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 88%;
  height: 20px;
  content: "";
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(255,255,255,.18);
  border-radius: 20px;
  box-shadow:.0 0 5px rgba(255,255,255,.2) inset;
}

.quest .quest-select a.is-select {
  background: #0e0e0e;
  border: 2px solid #5e5e5e;

  color: #aeaeae;
  pointer-events: none;
}
.quest .quest-select a span > span { font-size: 11px; }

@media (max-width: 450px) {
  .quest .quest-select {
    display: block;
    margin: -5px 10px 10px -10px !important;
    table-layout: initial;
    border-spacing: initial;
    text-align: center;
  }
  .quest .quest-select a {
    display: inline-block;
    padding-top: 5px;
    margin: 5px -5px 0 10px;
  }
}

/*  */
.quest .quest-info {
  display: table;
  width: 100%;
}
.quest .quest-info li {
  width: 50%;
  display: inline-block;
  padding: 1px 5px;
  vertical-align: top;
  border-right: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
}
.quest .quest-info li:nth-child(even) { border-right: none; }
.quest .quest-info li dl { width: 100%; }
.quest .quest-info li dt,
.quest .quest-info li dd {
  vertical-align: top;
  font-size: 12px;
}
.quest .quest-info li dt { float: left; }
.quest .quest-info li dd { float: right; }
.quest .monster-info .monster {
  display: table;
  margin: 0 auto;
}

/* サブタイトル */
.quest .stonewall .bg {
  padding: 4px 0;
  background: url(../img/bg_stone-pavement.jpg) 0 0;
  -webkit-background-size: 100px 100px;
  -moz-background-size: 100px 100px;
  background-size: 100px 100px;
  text-align: center;
}
.quest .monster-info .monster.boss:nth-child(odd) { background: #290e03; }
.quest .monster-info .monster.boss:nth-child(even) { background: #3e190a; }
.quest .monster-info .monster.normal:nth-child(odd) { background: #282828; }
.quest .monster-info .monster.normal:nth-child(even) { background: #373737; }
.quest .monster-info .monster > li {
  display: table-cell;
  width: 50%;
  padding: 10px 0;
  vertical-align: middle;
  color: #fff;
  font-size: 12px;
}

/* モンスター */
.quest .monster-info .chara-boss,
.quest .monster-info .chara-normal {
  height: 100%;
  min-height: 117px;
  vertical-align: bottom !important;
  text-align: center;
}
.quest .monster-info .chara-boss {
  background: url(../img/quest/bg_monster1.jpg) 0 0 no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
}
.quest .monster-info .chara-normal {
  background: url(../img/quest/bg_monster2.jpg) 0 0 no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
}
.quest .monster-info .monster.boss .icon-wrap > div { display: none !important; }
.quest .monster-info .stage_monster_image { margin-bottom: 10px; }
.quest .monster-info .icon-wrap { padding: 5px; }
.quest .wrap > dt {
  padding: 1px 5px 0;
  border-bottom: 1px solid #514f54;
}
.quest .wrap dl {
  width: 100%;
  padding: 0 5px;
  border-bottom: 1px solid #514f54;
}
.quest .wrap dl > dt,
.quest .wrap dl > dd {
  display: inline-block;
  vertical-align: top;
}
.quest .wrap dl > dt { float: left; }
.quest .wrap dl > dd { float: right; }
.quest .wrap dl { margin-top: 2px; }

/* 報酬アイテム */
.quest .reward-item {
  width: 100%;
  display: table;
  border-bottom: 1px solid #c6c6c6;
}

/*
.reward-item-monster-bg{
  background-image: url(../img/wiki/monster/Border_Normal.png);
  background-position: -4px -4px;
  background-size:71px 71px;
  margin-left:2px;
}
*/

.quest .reward-item > li {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  border-right: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  }
.quest .reward-item li:nth-last-child(2n),
.quest .reward-item li:last-child { margin-bottom: -1px; }
.quest .reward-item > li:nth-child(even) { border-right: none; }
.quest .reward-item > li > dl {
  min-height: 46px;
  padding: 5px;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-box;
  display: box;
  -moz-box-align: center;
  -ms-box-align: center;
  -webkit-box-align: center;
  box-align: center;
}
.quest .reward-item > li > dl dd {
  margin-left: 5px;
  -moz-box-flex: 1;
  -ms-box-flex: 1;
  -webkit-box-flex: 1;
  box-flex: 1;
  line-height: 1.2;
  font-size: 12px;
}
.quest .capture_box { margin: 0 10px; }
.quest .capture_box a { color: #6d3712; }
.quest .capture_box .title { font-size: 18px; }
.quest .capture_box .text { margin-left: 1em; }
.quest .capture_box li {
  margin-left: 1em;
  text-indent: -1em;
}

/* おすすめパーティ */
.quest .icon,
.quest .star,
.quest .name {
  display: table;
  width: 100%;
}
.quest .icon li,
.quest .star li,
.quest .name a {
  position: relative;
  display: inline-block;
  width: 25%;
  min-height: 85px;
  vertical-align: top;
  background: -moz-linear-gradient(top,  rgb(255,255,255) 0%, rgb(221,196,159) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(255,255,255)), color-stop(100%,rgb(221,196,159)));
  background: -webkit-linear-gradient(top,  rgb(255,255,255) 0%,rgb(221,196,159) 100%);
  background: -ms-linear-gradient(top,  rgb(255,255,255) 0%,rgb(221,196,159) 100%);
  background: linear-gradient(to bottom,  rgb(255,255,255) 0%,rgb(221,196,159) 100%);
  border-right: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
}
.quest .icon li:last-of-type,
.quest .star li:last-of-type,
.quest .name a:last-of-type { border-right: none; }
.quest .icon li > img {
  position: absolute;
  top: 47%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.quest .star li,
.quest .name a {
  min-height: initial;
  padding: 2px 5px;
  background: none;
  font-size: 12px;
}
.quest .star li > img {
  position: absolute;
  top: -6px;
}
.quest .star li > img:first-of-type { right: 23px; }
.quest .star li > img:last-of-type { right: 2px; }
.quest .name a {
  color: #333;
  text-decoration: none;
}
.quest .name p:first-of-type { text-decoration: none; }
.quest .name p:last-of-type { text-decoration: underline; }

/* 出現モンスターの特徴 */
.quest .appearance + .appearance { margin-top: -1px; }
.quest .appearance,
.quest .no-continue dl {
  padding: 10px;
  background: #f0f0f0;
}
.quest .no-continue dt p {
  color: #fff;
  font-weight: bold;
  text-shadow: #000 1px 1px 0px, #000 -1px 1px 0px,
               #000 1px -1px 0px, #000 -1px -1px 0px;
}
.quest .no-continue dt p > span {
  color: #f2d025;
  font-size: 18px;
}
.quest .appearance dt,
.quest .no-continue dt { color: #81298b; }
.quest .appearance dd,
.quest .no-continue dd { line-height: 1.2; }
.quest .no-continue dd a { color: #6d3712; }
.quest .no-continue dl { border-bottom: 1px solid #c6c6c6; }
.quest .no-continue img {
  display: block;
  margin-bottom: 5px;
}

/* おすすめコンテンツ */
.quest .recommend,
.quest .countermeasure { margin: 10px; }
.quest .recommend dl,
.quest .countermeasure dl {
  display: table;
  width: 100%;
  padding: 10px 12px;
  margin: 5px 0 10px;
  background: #2d0b02;
  border: 1px solid #a37931;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
}
.quest .recommend dt,
.quest .recommend dd,
.quest .countermeasure dt,
.quest .countermeasure dd {
  display: table-cell;
  vertical-align: top;
}
.quest .recommend.ability dt,
.quest .recommend.skill dt { width: 58px; }
.quest .recommend dd,
.quest .countermeasure dd {
  padding-left: 10px;
  line-height: 1.2;
}
.quest .recommend a,
.quest .countermeasure a {
  display: block;
  margin-bottom: .25em;
  color: #f2d025;
  text-decoration: underline;
}
.quest .countermeasure dl { margin-top: 20px; }
.quest .countermeasure dt {
  position: relative;
  display: block;
  margin-top: -26px;
  margin-bottom: 10px;
}
.quest .countermeasure dt img {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 58px;
}
.quest .countermeasure dt a,
.quest .countermeasure dd a {
  display: inline-block;
  vertical-align: bottom;
  margin: 32px 0 8px 64px;
}
.quest .countermeasure p a { margin: 0; }
.quest .countermeasure dd {
  display: block;
  padding: 0;
}
.quest .separate {
  height: 0;
  margin-top: 30px;
}
.quest .reward-item dd a {
  color: #333;
  text-decoration: underline;
}
.quest .reward-item dd a:hover {
  color: #333;
  text-decoration: none;
}

@media (max-width: 767px) {
  .quest .wrap dl:last-of-type { border-bottom: none; }

  .quest .capture_box {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .quest .capture_box .title,
  .quest .capture_box .sub_title {
    margin-top: 10px;
    font-size: 16px;
  }

  .reward-item-monster-bg{
    background-image: url(../img/wiki/monster/Border_Normal.png);
    background-position: -2px -2px;
    background-size:40px 40px;
    margin-left:2px; 
  }

}
@media (min-width: 768px) {
  /* クエスト */
  .quest .page-title img {
    width: 140px;
    height: 120px;
  }
  .quest .quest-name {
    height: 36px;
    line-height: 36px;
    background: url(../img/quest/bg_title_pc.png) 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    font-size: 14px;
  }
  .quest .quest-pager {
    height: 36px;
    line-height: 36px;
    background: url(../img/quest/bg_pager_pc.png) 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    font-size: 14px;
  } 
  .quest .quest-info {
    width: 95%;
    margin: 0 auto 30px !important;
    border: 1px solid #c6c6c6;
    border-top: none;
  }
  .quest .quest-info li {
    width: 25%;
    padding: 5px 10px;
    border-bottom: none;
  }
  .quest .quest-info li:nth-child(odd) { background: #dcdcdc; }
  .quest .quest-info li:nth-child(even) { border-right: 1px solid #c6c6c6; }
  .quest .quest-info li:last-child { border-right: none; }
  .quest .quest-info li dt,
  .quest .quest-info li dd { font-size: 14px; }

  /* ボス情報 */
  .quest .monster + .monster { margin-top: 10px; }
  .quest .monster-info .monster > li.chara-boss,
  .quest .monster-info .monster > li.chara-normal { width: 65%; }
  .quest .monster-info .monster > li.monster-detail {
    width: 35%;
    font-size: 14px;
  }
  /* サブタイトル */
  .quest .stonewall .bg {
    position: relative;
    z-index: 1;
    height: 36px;
    line-height: 28px;
    margin-top: 20px;
    background: url(../img/quest/bg_title_pc.png) 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
  }
  .quest .reward-item-wrap .bg img {
    width: 94px;
    height: 18px;
  }
  .quest .party-wrap-wrap .bg img {
    width: 120px;
    height: 18px;
  }
  .quest .appearance-wrap .bg img {
    width: 150px;
    height: 18px;
  }
  .quest .no-continue-wrap .bg img {
    width: 195px;
    height: 18px;
  }
  /* 報酬アイテム */
  .quest .reward-item {
    position: relative;
    top: -5px;
    padding-top: 5px;
    border: 1px solid #c6c6c6;
  }
  .quest .reward-item img {
    width: 64px;
    height: 64px;
  }
  .quest .reward-item > li > dl dd {
    margin-left: 1em;
    font-size: 14px;
  }
  /* ボーダー */
  .quest .appearance,
  .quest .no-continue dl,
  .quest .party-wrap { border: 1px solid #c6c6c6; }
  .quest .party-wrap { border-bottom: none; }
  .quest .no-continue dl + dl { margin-top: -1px; }
  /* おすすめパーティ */
  .quest .party-wrap {
    position: relative;
    top: -5px;
    padding-top: 5px;
  }
  .quest .star li,
  .quest .name a {
    font-size: 14px;
    text-decoration: none;
  }
  .quest .appearance,
  .quest .no-continue {
    position: relative;
    top: -5px;
    padding-top: 5px;
  }
  .quest .no-continue dl:first-of-type {
    padding-top: 15px;
    margin-top: -5px;
  }
  .quest .appearance { padding-top: 15px; }
  .quest .recommend.ability h2 > img {
    width: 133px;
    height: 18px;
  }
  .quest .recommend.skill h2 > img {
    width: 108px;
    height: 18px;
  }
  .quest .countermeasure h2 > img {
    width: 116px;
    height: 19px;
  }
  .quest .recommend dt > img,
  .quest .countermeasure dt > img {
    width: 64px;
    height: 64px;
  }
  .quest .recommend dt { width: 70px !important; }
  .quest .recommend dl,
  .quest .countermeasure dl { font-size: 14px; }
  .quest .countermeasure dt a { margin-left: 80px; }


  .reward-item-monster-bg{
    background-image: url(../img/wiki/monster/Border_Normal.png);
    background-position: -4px -4px;
    background-size:71px 71px;
    margin-left:2px;
  }
}

.trans-list {
    display: flex;
    justify-content: right;
    text-align: center;
    margin: 0;
    padding: 10px 2%;
    font-size: 0;
    list-style: none;
}

.trans-before {
    max-width: 25%;
    font-size:1em;
    margin: 0;
    padding: 0;
    width: 105px;
    text-align: right;
}

.trans-after {
    max-width: 25%;
    font-size:1em;
    margin: 0;
    padding: 0;
    width: 105px;
    text-align: left;
}

.trans-button-img {
    width: 100%;
}

@media (max-width: 768px) {
    .trans-before {
        width: 14vw;
    }

    .trans-after {
        width: 14vw;
    }
}

img.simulator_button_layout {
    display: inline-block;
    margin: 0px 0px 30px 200px;
}
/* common */
html, body  { 
  height:100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td  {
  margin:0;
  padding:0;
}

