@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 *
 *
 */
/**
 *
 *
 */
/**
 * 背景画像のサイズを元に領域の幅と高さを設定します
 * @param string $background-image  背景画像名
 * @param string $background-repeat 背景画像繰り返し設定
 */
/**
 * 可変領域の背景画像を設定します
 * 呼び出し元のクラス上下に疑似要素を作成し3段構成にした上で、上下の背景を固定設定、中段の背景をY軸に繰り替えし設定します
 * このMixin呼び出し時は、上中下3つの背景画像 (*-top.png, *-inside.png, *-btm.png) を用意する必要があります
 * @param string  $prefix-image-name 背景画像名のprefix
 * @param number= $margin-top        上方余白
 * @param number= $margin-bottom     下方余白
 * @param number= $force-width       要素の幅 (背景画像の幅を算出せず強制的に幅を設定する)
 * @example
 *   [feature.scss]
 *   .class-a {
 *      setResponsiveBoxBgImg('feature-bg', 10, 10);
 *   }
 *
 *   [feature.php]
 *   <div class="class-a">                    -> 【'feature-bg-inside.png' を設定】
 *     ::before                               -> 【'feature-bg-top.png' を設定】
 *     <div class="feature-box-header"></div>
 *     <div class="feature-box-body"></div>
 *     ::after                                -> 【'feature-bg-btm.png' を設定】
 *   </div>
 */
/**
 * 要素内のインデントを揃えます
 * @param string $indent インデント
 */
/**
 * スプライトから対象の背景画像を設定します
 * @param $sprite-map スプライトマップ
 * @param $image-name スプライト内の画像名
 */
.white {
  color: #fff;
}

.black {
  color: #3a434a;
}

.light_gray {
  color: #f4f2f3;
}

.light_purple {
  color: #b6b6d0;
}

.dark_purple {
  color: #838394;
}

.purple {
  color: #800080;
}

.red {
  color: #e60012;
}

.blue {
  color: #1d2088;
}

.dark_blue {
  color: #306791;
}

.green {
  color: #43ca00;
}

.brown {
  color: #996b00;
}

.gold {
  color: #CCCC00;
}

.font-s9 {
  font-size: 9px;
}

.font-s10 {
  font-size: 10px;
}

.font-s11 {
  font-size: 11px;
}

.font-s12 {
  font-size: 12px;
}

.font-s13 {
  font-size: 13px;
}

.font-s14 {
  font-size: 14px;
}

.font-s15 {
  font-size: 15px;
}

.font-s16 {
  font-size: 16px;
}

p.indent2 {
  padding-left: 2em;
}

/**
 * Html Tags
 */
html {
  font-family: 'FOT-SeuratProN-B.otf', sans-serif;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

body {
  width: 480px;
  line-height: 1.4;
  color: #3a434a;
  font-size: 11px;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

div {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

a {
  color: #306791;
  text-decoration: none;
  display: inline-block;
}

pre {
  word-wrap: break-word;
}

sup {
  display: inline-block;
  vertical-align: super;
  font-size: smaller;
}

sub {
  display: inline-block;
  vertical-align: sub;
  font-size: smaller;
}

h1 {
  width: 340px;
  border-style: solid;
  border-width: 4px 20px;
  -moz-border-image: url('../image/ui_info_column_title_detail.png?1496050164') 7 42 round;
  -webkit-border-image: url('../image/ui_info_column_title_detail.png?1496050164') 7 42 round;
  -o-border-image: url('../image/ui_info_column_title_detail.png?1496050164') 7 42 round;
  border-image: url('../image/ui_info_column_title_detail.png?1496050164') 7 42 fill round　repeat;
  color: #fff;
  font-size: 15px;
  text-shadow: 1px 1px 1px #333b41, -1px 1px 1px #333b41, 1px -1px 1px #333b41, -1px -1px 1px #333b41;
  text-align: center;
  margin: 5px auto 10px;
  font-weight: bold;
}

h1 span {
  display: inline-block;
  width: 320px;
}

/**
 * Common Classes
 */
.common-transition-box::after {
  content: '';
  display: block;
  clear: both;
}

.container {
  position: relative;
  width: 480px;
}

/*
.contents-box {
  position: absolute;
  top: 0;
}*/
.common-main-img {
  width: 480px;
  height: 160px;
  margin: 0 auto 20px;
}
.common-main-img img {
  display: block;
  margin: 0 auto;
  width: 480px;
  height: 160px;
}

.common-page-title {
  font-size: 15px;
  font-weight: bold;
  color: #3a434a;
  border-left: solid 4px #e60012;
  border-bottom: solid 1px #fff;
  margin: 10px 0;
  padding: 2px 5px;
}

.common-border-box {
  border-bottom: solid 1px #fff;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.common-text-list {
  margin-bottom: 10px;
}
.common-text-list li {
  text-indent: -13px;
  padding-left: 13px;
}
.common-text-list li ul li {
  margin: 0;
  text-indent: -8px;
  padding-left: 8px;
}
.common-text-list li ul.child li {
  margin: 0;
  text-indent: 0;
  padding-left: 12px;
}

.common-list-style-asterisk li {
  padding-left: 1em;
  text-indent: -1em;
}
.common-list-style-asterisk li::before {
  content: '＊';
}

.common-list-style-disc li {
  padding-left: 1em;
  text-indent: -1em;
}
.common-list-style-disc li::before {
  content: '・';
}

.common-list-style-decimal li {
  padding-left: 1em;
  text-indent: -1em;
}

.common-header-nav {
  color: #3a434a;
  font-size: 9px;
  margin: 5px;
}
.common-header-nav a {
  text-decoration: underline;
}

h6.news-table-title {
  width: 90%;
  margin: 0.5em auto;
  border-left: 3px solid #2d93e2;
  text-indent: 0.5em;
}

.common-table-list {
  width: 90%;
  margin: 0 auto;
}
.common-table-list tr:nth-child(2n+1) {
  background-color: #f8feff;
}
.common-table-list tr:nth-child(2n) {
  background-color: #ffffff;
}
.common-table-list th {
  padding: 5px;
  background-color: #2d93e2 !important;
  border: 1px solid #bbbab5;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.common-table-list th.left {
  text-align: left;
}
.common-table-list td {
  padding: 5px;
  border: 1px solid #bbbab5;
  font-weight: bold;
  text-align: center;
}
.common-table-list td.left {
  text-align: left;
}

.hidden {
  display: none;
}

.alpha {
  opacity: 0.8;
}

.transparent {
  opacity: 0;
}

.underline {
  border-bottom: 2px solid #838394;
  padding-bottom: 5px;
}

.reset-margin-top {
  margin-top: 0;
}

.table-nowrap {
  white-space: nowrap;
}

.table-width-100 {
  width: 100px;
}

.table-width-150 {
  width: 150px;
}

.table-width-170 {
  width: 170px;
}

.table-width-200 {
  width: 200px;
}

.table-width-250 {
  width: 250px;
}

[data-role="btn"] {
  display: inline-block;
}

.common-frame-box-header {
  position: absolute;
  top: -15px;
  left: 0;
  padding: 3px 0 0 10px;
  font-size: 13px;
  font-weight: bold;
}

.common-frame-box {
  border-style: solid;
  border-width: 8px 3px;
  -moz-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  -webkit-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  -o-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  border-image-source: url('../image/news/ui_info_column_window_base.png?1496050164');
  border-image-slice: 16 7;
  border-image-width: 8px 3px;
  border-image-outset: 0;
  border-image-repeat: round;
  background: url('../image/common/ui_info_img_ball.png?1496050164') no-repeat center;
  background-size: 175px 175px;
  background-color: #fff;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  top: -4.8px;
  width: 480px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 9px;
  z-index: 10;
}
.common-frame-box .caption-small {
  margin: 5px auto;
  font-size: 11px;
  font-weight: bold;
  border-style: solid;
  border-width: 0px 0px 2px 10px;
  -moz-border-image: url('../image/common/ui_info_column_caption_small.png?1496050164') 0 0 4 20 round;
  -webkit-border-image: url('../image/common/ui_info_column_caption_small.png?1496050164') 0 0 4 20 round;
  -o-border-image: url('../image/common/ui_info_column_caption_small.png?1496050164') 0 0 4 20 round;
  border-image: url('../image/common/ui_info_column_caption_small.png?1496050164') 0 0 4 20 round;
}
.common-frame-box:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: url('../image/common/ui_info_column_window_texture_corner.png?1496050164') no-repeat center;
  background-size: 95px 95px;
  width: 95px;
  height: 95px;
  z-index: -10;
}
.common-frame-box:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  background: url('../image/common/ui_info_column_window_texture_corner.png?1496050164') no-repeat center;
  background-size: 95px 95px;
  -webkit-transform: rotate(180deg);
  width: 95px;
  height: 95px;
  z-index: -10;
}

section.common-frame-box {
  width: 460px;
}

.common-frame-box-has-header {
  padding: 20px 10px;
}

.common-frame-box-header {
  top: -15px;
  color: #fff;
}

.common-frame-box p {
  margin-bottom: 20px;
}

.common-description-box {
  border-style: solid;
  border-width: 8px 3px;
  -moz-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  -webkit-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  -o-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  border-image-source: url('../image/news/ui_info_column_window_base.png?1496050164');
  border-image-slice: 16 7;
  border-image-width: 8px 3px;
  border-image-outset: 0;
  border-image-repeat: round;
  background: url('../image/common/ui_info_img_ball.png?1496050164') no-repeat center;
  background-size: 175px 175px;
  background-color: #fff;
  position: relative;
  width: 474px;
  min-height: 100px;
  margin-bottom: 10px;
  font-size: 9px;
  z-index: 10;
  color: #3a434a;
}
.common-description-box:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: url('../image/common/ui_info_column_window_texture_corner.png?1496050164') no-repeat center;
  background-size: 95px 95px;
  width: 95px;
  height: 95px;
  z-index: -10;
}
.common-description-box:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  background: url('../image/common/ui_info_column_window_texture_corner.png?1496050164') no-repeat center;
  background-size: 95px 95px;
  -webkit-transform: rotate(180deg);
  width: 95px;
  height: 95px;
  z-index: -10;
}

.common-news-image {
  display: block;
  margin: 0 auto 10px;
}

.common-description-box-period {
  text-align: center;
  color: #3a434a;
  font-size: 11px;
}

.common-description-box-new-player {
  width: 50%;
  margin: 1em 0 2em;
}
.common-description-box-new-player th {
  line-height: 2em;
  text-align: left;
}
.common-description-box-new-player td {
  padding: 2px 4px;
}
.common-description-box-new-player td:first-child {
  width: 40px;
  text-align: left;
}

.common-description-box-list li {
  text-indent: -1em;
  margin-left: 1em;
}

.common-description-box-caption {
  width: 70%;
  margin: 10px auto;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 1px #355fc8, -1px 1px 1px #355fc8, 1px -1px 1px #355fc8, -1px -1px 1px #355fc8;
  border-style: solid;
  border-width: 4px 23px;
  -moz-border-image: url('../image/common/ui_info_column_caption.png?1496050164') 5 33 round;
  -webkit-border-image: url('../image/common/ui_info_column_caption.png?1496050164') 5 33 round;
  -o-border-image: url('../image/common/ui_info_column_caption.png?1496050164') 5 33 round;
  border-image: url('../image/common/ui_info_column_caption.png?1496050164') 5 33 fill round repeat;
}

.common-description-box-caption-middle {
  width: 70%;
  margin: 10px auto 5px;
  padding-bottom: 2px;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 1px #355fc8, -1px 1px 1px #355fc8, 1px -1px 1px #355fc8, -1px -1px 1px #355fc8;
  border-style: solid;
  border-width: 0px 2px 5px;
  -moz-border-image: url('../image/common/ui_info_column_caption_middle.png?1496050164') 0 4 10 round;
  -webkit-border-image: url('../image/common/ui_info_column_caption_middle.png?1496050164') 0 4 10 round;
  -o-border-image: url('../image/common/ui_info_column_caption_middle.png?1496050164') 0 4 10 round;
  border-image: url('../image/common/ui_info_column_caption_middle.png?1496050164') 0 4 10 round;
}

.common-description-box-caption-small {
  margin: 2em auto 1em;
  font-size: 11px;
  font-weight: bold;
  border-style: solid;
  border-width: 0px 0px 2px 10px;
  -moz-border-image: url('../image/common/ui_info_column_caption_small.png?1496050164') 0 0 4 20 round;
  -webkit-border-image: url('../image/common/ui_info_column_caption_small.png?1496050164') 0 0 4 20 round;
  -o-border-image: url('../image/common/ui_info_column_caption_small.png?1496050164') 0 0 4 20 round;
  border-image: url('../image/common/ui_info_column_caption_small.png?1496050164') 0 0 4 20 round;
}

.common-description-box-body {
  width: 95%;
  margin: 5px auto 10px;
  padding: 5px;
  font-size: 11px;
}
.common-description-box-body article {
  margin-bottom: 2em;
}
.common-description-box-body p {
  margin-bottom: 1em;
}

.common-list-box {
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  border: solid 2px #2d93e2;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.common-list-box > .title {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #2d93e2;
}

.common-probability-list {
  color: #3a434a;
  font-size: 11px;
  font-weight: bold;
  display: table;
  width: 100%;
}
.common-probability-list > li {
  display: table-row;
}
.common-probability-list > li:nth-child(2n) {
  background-color: #dff0ff;
}
.common-probability-list > li > div {
  display: table-cell;
}
.common-probability-list > li > div.rare {
  padding-left: 5px;
  width: 50px;
  text-align: left;
}
.common-probability-list > li > div.kind {
  width: 50px;
  text-align: left;
}
.common-probability-list > li > div.ratio {
  padding-right: 5px;
  text-align: right;
}
.common-probability-list > li > div.ratio > .up {
  color: #43ca00;
}
.common-probability-list > li > div.ratio > .up > .before {
  text-decoration: line-through;
}
.common-probability-list > li > div.ratio > .up > .before > span {
  color: #3a434a;
}

.common-chara-list {
  width: 100%;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
}
.common-chara-list > li.common-chara-list-ur {
  padding: 1px 5px;
  background: linear-gradient(to right, #00c0ff 0%, #fbff92 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00c0ff), color-stop(100%, #fbff92));
}
.common-chara-list > li.common-chara-list-ssr {
  padding: 1px 5px;
  background: linear-gradient(to right, #d2a800 0%, #ffe400 50%, #fff7a6 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #d2a800), color-stop(50%, #ffe400), color-stop(100%, #fff7a6));
}
.common-chara-list > li.common-chara-list-sr {
  padding: 1px 5px;
  background: linear-gradient(to right, #c6d3db 0%, #e7edef 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #c6d3db), color-stop(100%, #e7edef));
}
.common-chara-list > li.common-chara-list-r {
  padding: 1px 5px;
  background: linear-gradient(to right, #d16327 0%, #ffd497 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #d16327), color-stop(100%, #ffd497));
}
.common-chara-list > li.common-chara-list-detail {
  color: #3a434a;
}
.common-chara-list > li.common-chara-list-detail:nth-child(2n) {
  background-color: #dff0ff;
}
.common-chara-list > li.common-chara-list-detail > .chara {
  position: relative;
  padding: 5px 0 5px 5px;
  vertical-align: middle;
  float: left;
}
.common-chara-list > li.common-chara-list-detail > .chara > img {
  width: 50px;
}
.common-chara-list > li.common-chara-list-detail > .chara.rare-n:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 32px;
  left: -3px;
  background: url('../image/common/ui_info_icon_rarity_s_01.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-chara-list > li.common-chara-list-detail > .chara.rare-r:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 32px;
  left: -3px;
  background: url('../image/common/ui_info_icon_rarity_s_02.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-chara-list > li.common-chara-list-detail > .chara.rare-sr:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 30px;
  left: 1px;
  background: url('../image/common/ui_info_icon_rarity_s_03.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-chara-list > li.common-chara-list-detail > .chara.rare-ssr:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 30px;
  left: 3px;
  background: url('../image/common/ui_info_icon_rarity_s_04.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-chara-list > li.common-chara-list-detail > .chara.rare-ur:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 30px;
  left: 2px;
  background: url('../image/common/ui_info_icon_rarity_s_05.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-chara-list > li.common-chara-list-detail > .chara.attr-p:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 36px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_power.png?1496050164') no-repeat;
  background-size: 24px 24px;
}
.common-chara-list > li.common-chara-list-detail > .chara.attr-s:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 36px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_speed.png?1496050164') no-repeat;
  background-size: 24px 24px;
}
.common-chara-list > li.common-chara-list-detail > .chara.attr-t:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 36px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_technique.png?1496050164') no-repeat;
  background-size: 24px 24px;
}
.common-chara-list > li.common-chara-list-detail > .name {
  float: left;
  width: 365px;
  padding: 5px 0 0 5px;
  border-bottom: solid 1px #3a434a;
  font-size: 12px;
}
.common-chara-list > li.common-chara-list-detail > .name .another {
  display: inline-block;
  width: 120px;
  color: #817368;
  font-size: 9px;
}
.common-chara-list > li.common-chara-list-detail > .desc {
  float: left;
  width: 365px;
  padding-left: 3px;
}
.common-chara-list > li.common-chara-list-detail > .desc > .skill {
  padding: 2px;
  display: table-cell;
  text-align: left;
  vertical-align: bottom;
  width: 245px;
}
.common-chara-list > li.common-chara-list-detail > .desc > .skill > .team-skill {
  display: block;
  margin: 1px;
  padding-left: 3px;
  text-align: left;
  border: solid 1px #2a9c39;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  background-color: #cfffd5;
  width: 100%;
}
.common-chara-list > li.common-chara-list-detail > .desc > .skill > .team-skill > span {
  color: #2a9c39;
}
.common-chara-list > li.common-chara-list-detail > .desc > .skill > .main-skill {
  display: block;
  margin: 1px;
  padding-left: 3px;
  text-align: left;
  border: solid 1px #e78f30;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  background-color: #fffab2;
  width: 100%;
}
.common-chara-list > li.common-chara-list-detail > .desc > .skill > .main-skill > span {
  color: #e78f30;
}
.common-chara-list > li.common-chara-list-detail > .desc > .ratio {
  padding: 2px;
  display: table-cell;
  text-align: right;
  vertical-align: bottom;
  width: 110px;
  height: 33px;
}
.common-chara-list > li.common-chara-list-detail > .desc > .ratio > .up {
  color: #43ca00;
}
.common-chara-list > li.common-chara-list-detail > .desc > .ratio > .up > .before {
  text-decoration: line-through;
}
.common-chara-list > li.common-chara-list-detail > .desc > .ratio > .up > .before > span {
  color: #3a434a;
}
.common-chara-list > li.common-chara-list-detail:after {
  content: '';
  display: block;
  clear: both;
}

.common-senario-box {
  display: block;
  width: 480px;
  height: 74px;
  margin: 10px 0;
}
.common-senario-box .common-senario-bnr {
  display: table;
  width: 100%;
}
.common-senario-box .common-senario-bnr .left {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.common-senario-box .common-senario-bnr .left img {
  width: 100%;
}
.common-senario-box .common-senario-bnr .right {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.common-senario-box .common-senario-bnr .right p {
  padding: 0 4px;
}
.common-senario-box .common-senario-bnr .right p:nth-child(2) {
  text-align: center;
}
.common-senario-box .common-senario-bnr .right p:nth-child(3) {
  text-align: right;
}

.common-description-box-body {
  width: 95%;
  margin: 5px auto 10px;
  font-size: 11px;
}
.common-description-box-body .common-reward-box {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  border: solid 1px #3a434a;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), -1px -1px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), -1px -1px 1px rgba(0, 0, 0, 0.2);
}
.common-description-box-body .common-reward-box.event {
  border: solid 1px #2469e9;
}
.common-description-box-body .common-reward-box.event:before {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  top: -1px;
  left: -1px;
  border-radius: 2px;
  border-top: 10px solid #2469e9;
  border-right: 10px solid #2469e9;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.common-description-box-body .common-reward-box.event .common-reward-name .another, .common-description-box-body .common-reward-box.event .common-reward-name .name {
  text-indent: 0.6em;
}
.common-description-box-body .common-reward-box .common-reward-name {
  width: 100%;
  padding: 5px 5px 0 5px;
}
.common-description-box-body .common-reward-box .common-reward-name .another {
  font-size: 9px;
  margin-bottom: 0;
}
.common-description-box-body .common-reward-box .common-reward-name .name {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  border-bottom: double 3px #a5c2e0;
  font-size: 12px;
  font-weight: bold;
}
.common-description-box-body .common-reward-box .chara-detail {
  display: table;
  width: 100%;
}

 /*20171204 add*/
.common-description-box-body .common-reward-box .chara-detail.pickup {
  display: table;
  width: 100%;
  min-height: 317px;
}
 /*20171204 add end*/

.common-description-box-body .common-reward-box .chara-detail .left {
  position: relative;
  display: table-cell;
  border-collapse: collapse;
  border-spacing: 0;
  width: 50%;
  text-align: left;
  padding: 5px 0 5px 5px;
  vertical-align: top;
  z-index: 200;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara {
  position: relative;
  float: left;
  width: 50px;
  height: 50px;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara > img {
  width: 50px;
  height: 50px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  z-index: 1;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara.rare-n:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 27px;
  left: -8px;
  background: url('../image/common/ui_info_icon_rarity_s_01.png?1496050164') no-repeat;
  background-size: 32px 32px;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara.rare-r:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 27px;
  left: -8px;
  background: url('../image/common/ui_info_icon_rarity_s_02.png?1496050164') no-repeat;
  background-size: 32px 32px;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara.rare-sr:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 26px;
  left: -4px;
  background: url('../image/common/ui_info_icon_rarity_s_03.png?1496050164') no-repeat;
  background-size: 32px 32px;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara.rare-ssr:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 26px;
  left: -3px;
  background: url('../image/common/ui_info_icon_rarity_s_04.png?1496050164') no-repeat;
  background-size: 32px 32px;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara.rare-ur:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 25px;
  left: -3px;
  background: url('../image/common/ui_info_icon_rarity_s_05.png?1496050164') no-repeat;
  background-size: 32px 32px;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara.attr-p:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 32px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_power.png?1496050164') no-repeat;
  background-size: 24px 24px;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara.attr-s:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 32px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_speed.png?1496050164') no-repeat;
  background-size: 24px 24px;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left .chara.attr-t:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 32px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_technique.png?1496050164') no-repeat;
  background-size: 24px 24px;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left ul.para-list {
  display: table;
  float: right;
  width: calc(100% - 57px);
  text-align: center;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border: solid 1px #3a434a;
  border-collapse: separate;
}
.common-description-box-body .common-reward-box .chara-detail .left ul.para-list > li {
  display: table-row;
  background-color: #216af2;
  font-size: 9px;
  color: #fff;
}
.common-description-box-body .common-reward-box .chara-detail .left ul.para-list > li:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
}
.common-description-box-body .common-reward-box .chara-detail .left ul.para-list > li:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
}
.common-description-box-body .common-reward-box .chara-detail .left ul.para-list > li:nth-child(2n) {
  background-color: #175cdd;
}
.common-description-box-body .common-reward-box .chara-detail .left ul.para-list > li > .para-name {
  padding: 2px;
  display: table-cell;
  text-align: left;
}
.common-description-box-body .common-reward-box .chara-detail .left ul.para-list > li > .para-value {
  padding: 2px;
  display: table-cell;
  text-align: right;
}
.common-description-box-body .common-reward-box .chara-detail .left .common-reward-name {
  position: relative;
  background-color: #5799ff;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #488bf2), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#488bf2 50%, transparent 50%, transparent);
  background-image: linear-gradient(#488bf2 50%, transparent 50%, transparent);
  -moz-background-size: 4px 4px;
  -webkit-background-size: 4px 4px;
  background-size: 4px 4px;
  border: solid 1px #3a434a;
  border-radius: 2px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), -1px -1px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), -1px -1px 1px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 1px #355fc8, -1px 1px 1px #355fc8, 1px -1px 1px #355fc8, -1px -1px 1px #355fc8;
  z-index: 100;
}
.common-description-box-body .common-reward-box .chara-detail .left .common-reward-name .another {
  margin: 0;
  padding: 2px 6px;
  font-size: 9px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.common-description-box-body .common-reward-box .chara-detail .left .common-reward-name .name {
  display: block;
  width: auto;
  margin: 0;
  padding: 2px 6px;
  border-bottom: none;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: right;
}
.common-description-box-body .common-reward-box .chara-detail .right {
  position: relative;
  display: table-cell;
  border-collapse: collapse;
  border-spacing: 0px;
  width: 50%;
  text-align: center;
  vertical-align: baseline;
  padding: 5px;
  font-size: 9px;
  z-index: 300;
}
.common-description-box-body .common-reward-box .chara-detail .right.event {
  vertical-align: bottom;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teams {
  margin-bottom: 5px;
  border: solid 1px #3a434a;
  border-radius: 2px;
  background-color: #14b25f;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #0e9f63), color-stop(0, #14b25f));
  background: -webkit-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  background: -moz-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  background: -o-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  text-align: left;
  font-size: 9px;
  color: #fff;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teams p:last-child {
  margin: 0;
  padding: 2px 8px 3px;
  background-color: #fff;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  color: #3a434a;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teams .teams-name {
  position: relative;
  margin: 0;
  padding: 2px 8px 3px;
  font-size: 12px;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teams .teams-name em {
  position: absolute;
  right: 4px;
  font-size: 9px;
  color: #32c882;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teams .teams-name em span {
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs {
  border: solid 1px #3a434a;
  border-radius: 2px;
  margin-bottom: 5px;
  background: -webkit-linear-gradient(-45deg, #e96800 0%, #e96800 48%, #e77f2b 48.001%, #e77f2b 100%);
  background: -moz-linear-gradient(-45deg, #e96800 0%, #e96800 48%, #e77f2b 48.001%, #e77f2b 100%);
  background: -ms-linear-gradient(-45deg, #e96800 0%, #e96800 48%, #e77f2b 48.001%, #e77f2b 100%);
  background: -o-linear-gradient(-45deg, #e96800 0%, #e96800 48%, #e77f2b 48.001%, #e77f2b 100%);
  background: linear-gradient(135deg, #e96800 0%, #e96800 48%, #e77f2b 48.001%, #e77f2b 100%);
  text-align: left;
}

/* 20171204 add */
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill {
  margin-bottom: 5px;
  border: solid 1px #3a434a;
  border-radius: 2px;
  background-color: #14b25f;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #0e9f63), color-stop(0, #14b25f));
  background: -webkit-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  background: -moz-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  background: -o-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  text-align: left;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special {
  margin-bottom: 5px;
  border: solid 1px #3a434a;
  border-radius: 2px;
  background-color: #ca76e3;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #9f61d5), color-stop(0, #ca76e3));
  background: -webkit-linear-gradient(top, #ca76e3 0%, #9f61d5 88%);
  background: -moz-linear-gradient(top, #ca76e3 0%, #9f61d5 88%);
  background: -o-linear-gradient(top, #ca76e3 0%, #9f61d5 88%);
  text-align: left;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special {
	position: relative;
  margin: 0;
  padding: 2px 8px 2px 37px;
  color: #fff;
  z-index: 10;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill em,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special em {
  position: absolute;
  right: 4px;
  font-size: 9px;
  z-index: -1;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill em {
  color: #32c882;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special em {
  color: #e4a3ff;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill em span,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special em span {
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  line-height: 13px;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill-name-box,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special-name-box {
  background-color: #61695c;
  padding: 2px 1px;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill-name-box .teamskill-name,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special-name-box .special-name {
  display: table;
  width: 100%;
  position: relative;
  background-color: #f8fcf1;
  border-radius: 2px;
  vertical-align: middle;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill-name-box .teamskill-name span,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special-name-box .special-name span {
  display: table-cell;
  vertical-align: middle;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill-name-box .teamskill-name span:first-child,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special-name-box .special-name span:first-child {
  width: 1%;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill-name-box .teamskill-name span:nth-child(2),
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special-name-box .special-name span:nth-child(2) {
	padding: 4px 2px 4px 37px;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill-name-box .teamskill-name span:nth-child(3),
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special-name-box .special-name span:nth-child(3) {
	width: 1%;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-teamskill .teamskill-name-box .teamskill-name,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-special .special-name-box .special-name {
  padding: 4px;
  border-radius: 2px;
}
.mains-name-table.sp:before,
.subs-name-table.sp:before {
	position: relative;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains.sp:before,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs.sp:before {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	top: 1px;
	right: 70px;
  background: url('../image/common/ui_skillicon_icon_unit_skill_property.png') no-repeat;
  background-size: 15px 15px;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains.comb:after,
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs.comb:after {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	top: 1px;
	right: 52px;
  background: url('../image/common/ui_skillicon_icon_combi.png') no-repeat;
  background-size: 15px 15px;
}

.common-description-box-body .common-reward-box .common-reward-teamskill .skill-icon img  {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 1px 2px 2px 1px;
  background-color: #14b25f;
  border-bottom-right-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #0e9f63), color-stop(0, #14b25f));
  background: -webkit-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  background: -moz-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  background: -o-linear-gradient(top, #14b25f 0%, #0e9f63 88%);
  vertical-align: middle;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.common-description-box-body .common-reward-box .common-reward-special .skill-icon img  {
  position: relative;
  width: 34px;
  height: 34px;
  top: 0px;
  padding: 1px 2px 2px 1px;
  background-color: #14b25f;
  border-bottom-right-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #9f61d5), color-stop(0, #ca76e3));
  background: -webkit-linear-gradient(top, #ca76e3 0%, #9f61d5 88%);
  background: -moz-linear-gradient(top, #ca76e3 0%, #9f61d5 88%);
  background: -o-linear-gradient(top, #ca76e3 0%, #9f61d5 88%);
  vertical-align: middle;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.common-description-box-body .common-reward-box .common-reward-mains .skill-icon img,
.common-description-box-body .common-reward-box .common-reward-subs .skill-icon img{
  position: relative;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.common-description-box-body .common-reward-box .common-reward-teamskill .skill-icon,
.common-description-box-body .common-reward-box .common-reward-special .skill-icon {
  position: relative;
  top: 0px;
  left: -1px;
}
.common-description-box-body .common-reward-box .common-reward-mains .skill-icon,
.common-description-box-body .common-reward-box .common-reward-subs .skill-icon{
	position: relative;
	padding: 2px 0 2px 1px!important;
}
.common-description-box-body .common-reward-box .common-reward-teamskill .skill-icon figure,
.common-description-box-body .common-reward-box .common-reward-special .skill-icon figure,
.common-description-box-body .common-reward-box .common-reward-mains .skill-icon figure,
.common-description-box-body .common-reward-box .common-reward-subs .skill-icon figure {
	position: relative;
}
.common-description-box-body .common-reward-box .common-reward-teamskill .skill-icon figure,
.common-description-box-body .common-reward-box .common-reward-special .skill-icon figure {
	position: absolute;
	top: -17px;
}
.skill-icon figure.s:before,
.skill-icon figure.a:before,
.skill-icon figure.b:before,
.skill-icon figure.c:before,
.skill-icon figure.d:before {
	position: absolute;
	content: '';
	top: 0px;
	left: -1px;
	width: 10px;
	height: 11px;
	z-index: 1000;
}
.mains-name .skill-icon figure.s:before,
.mains-name .skill-icon figure.a:before,
.mains-name .skill-icon figure.b:before,
.mains-name .skill-icon figure.c:before,
.mains-name .skill-icon figure.d:before,
.subs-name .skill-icon figure.s:before,
.subs-name .skill-icon figure.a:before,
.subs-name .skill-icon figure.b:before,
.subs-name .skill-icon figure.c:before,
.subs-name .skill-icon figure.d:before {
	position: absolute;
	content: '';
	top: -2px;
	left: -2px;
	width: 10px;
	height: 11px;
	z-index: 1000;
}
.skill-icon figure.s:before {
  background: url('../image/common/ui_skillicon_icon_unitskill_rank_s.png') no-repeat;
  background-size: 10px 11px;
}
.skill-icon figure.a:before {
  background: url('../image/common/ui_skillicon_icon_unitskill_rank_a.png') no-repeat;
  background-size: 10px 11px;
}
.skill-icon figure.b:before {
  background: url('../image/common/ui_skillicon_icon_unitskill_rank_b.png') no-repeat;
  background-size: 10px 11px;
}
.skill-icon figure.c:before {
  background: url('../image/common/ui_skillicon_icon_unitskill_rank_c.png') no-repeat;
  background-size: 10px 11px;
}
.skill-icon figure.d:before {
  background: url('../image/common/ui_skillicon_icon_unitskill_rank_d.png') no-repeat;
  background-size: 10px 11px;
}
.common-description-box-body .common-reward-box .common-reward-mains .skill-icon span,
.common-description-box-body .common-reward-box .common-reward-subs .skill-icon span,
.common-description-box-body .common-reward-box .common-reward-special .skill-icon span{
	position: absolute;
	left: -1px;
	bottom: -2px;
	font-size: 8px;
	color: #fff;
	text-shadow: 1px 1px 1px #000, -1px 1px 1px #000, 1px -1px 1px #000, -1px -1px 1px #000;
	z-index: 999;
}
.common-description-box-body .common-reward-box .common-reward-mains .skill-icon span em,
.common-description-box-body .common-reward-box .common-reward-subs .skill-icon span em,
.common-description-box-body .common-reward-box .common-reward-special .skill-icon span em {
	font-size: 10px;
}
.mains-name .skillpower, .mains-name .skillstamina, .subs-name .skillpower, .subs-name .skillstamina{
	position: relative;
	display: inline-block;
	border-radius: 2px;
	text-shadow: none;
	color: #fff;
	margin-bottom: 1px;
	padding: 1px 6px 0px 18px;
	text-align: right;
	border: 1px solid #3a434a;
}
.special-name .skillactivation {
	position: relative;
	display: inline-block;
	background-color: #cc82ec;
	border-radius: 2px;
	text-shadow: none;
	color: #fff;
	margin-bottom: 1px;
	padding: 1px 2px 0 2px;
	text-align: right;
	border: 1px solid #3a434a;
}
.teamskill-name .teamskill-effect,
.special-name .special-effect {
	padding: 2px;
	margin-bottom: 0;
}
.mains-name .skillpower, .subs-name .skillpower {
	background-color: #0079df;
}
.mains-name .skillstamina, .subs-name .skillstamina {
	background-color: #fdec34;
	color: #3a434a;
}
.mains-name .skillpower:before,.subs-name .skillpower:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	top: 1px;
	left: 2px;
  background: url('../image/common/power.png') no-repeat;
  background-size: 10px 10px;
}
.mains-name .skillstamina:before, .subs-name .skillstamina:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	top: 1px;
	left: 2px;
  background: url('../image/common/stamina.png') no-repeat;
  background-size: 10px 10px;
}

.mains-name-table,
.subs-name-table,
.special-name-table{
	width: 75%!important;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .special-name-box .special-name span:last-child{
	width: 30%;
}

.common-comment {
	position: relative;
	width: 98%;
	margin: 0 auto 10px;
	padding: 4px;
	background-color: #f8fcf1;
  border: solid 1px #0079df;
  border-radius: 2px;
  border-top-left-radius: 0px;
  font-size: 10px;
}
.common-comment:before {
	content: 'POINT';
	position: absolute;
	width: 100px;
	height: 16px;
	top: -19px;
	left: -1px;
	padding-top: 2px;
	text-align: center;
	color: #fff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background-color: #0079df;
}
/* 20171204 add end */

.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs {
  margin: 0;
  padding: 2px 8px;
  color: #fff;
  position: relative;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains em, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs em, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains em, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs em {
  position: absolute;
  right: 4px;
  font-size: 9px;
  color: #fdd864;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains em span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs em span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains em span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs em span {
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  line-height: 13px;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains-name-box, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs-name-box, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains-name-box, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs-name-box {
  background-color: #61695c;
  padding: 2px 1px;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  text-shadow: 1px 1px 1px #ffff84, -1px 1px 1px #ffff84, 1px -1px 1px #ffff84, -1px -1px 1px #ffff84;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains-name-box .mains-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains-name-box .subs-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs-name-box .mains-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs-name-box .subs-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains-name-box .mains-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains-name-box .subs-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs-name-box .mains-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs-name-box .subs-name {
  display: table;
  width: 100%;
  position: relative;
  background: -webkit-linear-gradient(-45deg, #fab912 0%, #fab912 48%, #f8a007 48.001%, #f8a007 100%);
  background: -moz-linear-gradient(-45deg, #fab912 0%, #fab912 48%, #f8a007 48.001%, #f8a007 100%);
  background: -ms-linear-gradient(-45deg, #fab912 0%, #fab912 48%, #f8a007 48.001%, #f8a007 100%);
  background: -o-linear-gradient(-45deg, #fab912 0%, #fab912 48%, #f8a007 48.001%, #f8a007 100%);
  background: linear-gradient(135deg, #fab912 0%, #fab912 48%, #f8a007 48.001%, #f8a007 100%);
  border-radius: 2px;
  vertical-align: middle;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains-name-box .mains-name span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains-name-box .subs-name span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs-name-box .mains-name span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs-name-box .subs-name span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains-name-box .mains-name span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains-name-box .subs-name span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs-name-box .mains-name span, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs-name-box .subs-name span {
  display: table-cell;
  vertical-align: middle;
  padding: 2px 4px;
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains-name-box .mains-name span:last-child, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains-name-box .subs-name span:last-child, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs-name-box .mains-name span:last-child, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs-name-box .subs-name span:last-child, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains-name-box .mains-name span:last-child, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains-name-box .subs-name span:last-child, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs-name-box .mains-name span:last-child, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs-name-box .subs-name span:last-child {
  text-align: right;
  font-size: 8px;  /*20171204 add*/
}
.common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .mains-name-box .subs-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-mains .subs-name-box .subs-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .mains-name-box .subs-name, .common-description-box-body .common-reward-box .chara-detail .right .common-reward-subs .subs-name-box .subs-name {
  padding: 4px;
  background: -webkit-linear-gradient(-45deg, #fdf579 0%, #fdf579 48%, #fbec3f 48.001%, #fbec3f 100%);
  background: -moz-linear-gradient(-45deg, #fdf579 0%, #fdf579 48%, #fbec3f 48.001%, #fbec3f 100%);
  background: -ms-linear-gradient(-45deg, #fdf579 0%, #fdf579 48%, #fbec3f 48.001%, #fbec3f 100%);
  background: -o-linear-gradient(-45deg, #fdf579 0%, #fdf579 48%, #fbec3f 48.001%, #fbec3f 100%);
  background: linear-gradient(135deg, #fdf579 0%, #fdf579 48%, #fbec3f 48.001%, #fbec3f 100%);
  border-radius: 2px;
}
.common-description-box-body .common-reward-box img {
  position: relative;
  width: 100%;
  transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  z-index: 999;
}
.common-reward-box-middle {
  width: 100%;
}
.common-reward-box-middle > li {
  position: relative;
  border: solid 2px #2469e9;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  background-color: #fff;
  margin-bottom: 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), -1px -1px 1px rgba(0, 0, 0, 0.4);
}
.common-reward-box-middle > li:before {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  top: -1px;
  left: -1px;
  border-radius: 2px;
  border-top: 10px solid #2469e9;
  border-right: 10px solid #2469e9;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.common-reward-box-middle > li .chara {
  position: relative;
  vertical-align: middle;
  margin: 5px 0 5px 5px;
  float: left;
  width: 50px;
}
.common-reward-box-middle > li .chara > img {
  width: 50px;
}
.common-reward-box-middle > li .chara.rare-n:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 27px;
  left: -8px;
  background: url('../image/common/ui_info_icon_rarity_s_01.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-reward-box-middle > li .chara.rare-r:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 27px;
  left: -8px;
  background: url('../image/common/ui_info_icon_rarity_s_02.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-reward-box-middle > li .chara.rare-sr:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 26px;
  left: -4px;
  background: url('../image/common/ui_info_icon_rarity_s_03.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-reward-box-middle > li .chara.rare-ssr:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 26px;
  left: -3px;
  background: url('../image/common/ui_info_icon_rarity_s_04.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-reward-box-middle > li .chara.rare-ur:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 25px;
  left: -3px;
  background: url('../image/common/ui_info_icon_rarity_s_05.png?1496050164') no-repeat;
  background-size: 32px 32px;
}
.common-reward-box-middle > li .chara.attr-p:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 32px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_power.png?1496050164') no-repeat;
  background-size: 24px 24px;
}
.common-reward-box-middle > li .chara.attr-s:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 32px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_speed.png?1496050164') no-repeat;
  background-size: 24px 24px;
}
.common-reward-box-middle > li .chara.attr-t:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 32px;
  right: -4px;
  background: url('../image/common/ui_info_icon_attr_s_technique.png?1496050164') no-repeat;
  background-size: 24px 24px;
}
.common-reward-box-middle > li > .name {
  float: left;
  width: 365px;
  padding: 5px 0 0 5px;
  border-bottom: solid 1px #afceea;
  font-size: 12px;
}
.common-reward-box-middle > li > .name .another {
  display: inline-block;
  width: 120px;
  color: #817368;
  font-size: 9px;
}
.common-reward-box-middle > li > .desc {
  float: left;
  width: 365px;
  padding-left: 3px;
}
.common-reward-box-middle > li:after {
  content: "";
  display: block;
  clear: both;
}

.common-attention-box {
  border-style: solid;
  border-width: 8px 3px;
  -moz-border-image: url('../image/common/ui_info_column_section_attention.png?1496050164') 16 7 round;
  -webkit-border-image: url('../image/common/ui_info_column_section_attention.png?1496050164') 16 7 round;
  -o-border-image: url('../image/common/ui_info_column_section_attention.png?1496050164') 16 7 round;
  border-image-source: url('../image/common/ui_info_column_section_attention.png?1496050164');
  border-image-slice: 16 7;
  border-image-width: 8px 3px;
  border-image-outset: 0;
  border-image-repeat: round;
  background-color: #fff;
  position: relative;
  width: 474px;
  color: #3a434a;
  margin: 0px;
  font-size: 11px;
  font-weight: bold;
  z-index: 10;
}

.common-attention-box-caption {
  width: 90%;
  margin: 10px auto 5px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  border-style: solid;
  border-width: 0px 2px 5px;
  -moz-border-image: url('../image/common/ui_info_column_caption_attention.png?1496050164') 0 4 10 round;
  -webkit-border-image: url('../image/common/ui_info_column_caption_attention.png?1496050164') 0 4 10 round;
  -o-border-image: url('../image/common/ui_info_column_caption_attention.png?1496050164') 0 4 10 round;
  border-image: url('../image/common/ui_info_column_caption_attention.png?1496050164') 0 4 10 round;
}

.common-attention-box-body {
  width: 90%;
  margin: 5px auto 10px;
}

.common-attention-box li {
  list-style-type: disc;
  margin-left: 10px;
}

.common-transition-box {
  width: 100%;
  height: 30px;
  margin: 10px auto;
  text-align: center;
}
.common-transition-box li {
  display: inline-block;
}

.common-description-box .common-transition-box {
  margin-bottom: 10px;
}

@-webkit-keyframes tap-effect-keyframe {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
[data-tapped="true"] {
  -webkit-animation-name: tap-effect-keyframe;
  -webkit-animation-duration: 0.4s;
}

[data-tapped="true"] {
  -webkit-tap-highlight-color: transparent;
}

.common-btn::before, .common-positive-btn::before, .common-btn::after, .common-positive-btn::after, .common-top-btn::before, .common-negative-btn::before, .common-top-btn::after, .common-negative-btn::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 9px;
  height: 28px;
  top: 0;
}

.common-btn::before, .common-positive-btn::before {
  left: -8px;
  background-size: 9px 28px;
}

.common-btn::after, .common-positive-btn::after {
  right: -8px;
  background-size: 9px 28px;
}

.common-btn, .common-negative-btn, .common-positive-btn, .common-top-btn {
  position: relative;
  display: inline-block;
  min-width: 80px;
  height: 28px;
  line-height: 27px;
  margin: 0 14px;
  padding: 0 10px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 1px #674208, -1px 1px 1px #674208, 1px -1px 1px #674208, -1px -1px 1px #674208;
}

.common-top-btn::before, .common-negative-btn::before {
  left: -10px;
  width: 11px;
  height: 28px;
  top: 0;
  background: url('../image/common/ui_info_btn_basic_left.png?1496050164') no-repeat top left;
  background-size: 11px 28px;
}

.common-top-btn::after, .common-negative-btn::after {
  right: -10px;
  width: 11px;
  height: 28px;
  top: 0;
  background: url('../image/common/ui_info_btn_basic_right.png?1496050164') no-repeat top right;
  background-size: 11px 28px;
}

.common-top-btn, .common-negative-btn {
  line-height: 30px;
  background: url('../image/common/ui_info_btn_basic_center.png?1496050164') repeat-x top center;
  background-size: 2px 28px;
}

.common-back-btn-li {
  position: absolute;
  display: block;
  left: 0;
  bottom: 46px;
}

.common-back-btn {
  color: #fff;
  border-style: solid;
  border-width: 3px 14px 3px 28px;
  -moz-border-image: url('../image/common/ui_info_btn_back.png?1496050164') 5 26 8 46 repeat stretch;
  -webkit-border-image: url('../image/common/ui_info_btn_back.png?1496050164') 5 26 8 46 repeat stretch;
  -o-border-image: url('../image/common/ui_info_btn_back.png?1496050164') 5 26 8 46 repeat stretch;
  border-image: url('../image/common/ui_info_btn_back.png?1496050164') 5 26 8 46 fill repeat stretch;
  font-size: 10px;
  text-shadow: 1px 1px 1px #674208, -1px 1px 1px #674208, 1px -1px 1px #674208, -1px -1px 1px #674208;
  padding: 2px 3px;
  font-size: 13px;
}

.common-footer .common-back-btn {
  color: #fff;
  text-decoration: none;
}

.common-move-btn {
  display: table-cell;
  vertical-align: middle;
  min-width: 113px;
  height: 32px;
  line-height: 27px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 1px #674208, -1px 1px 1px #674208, 1px -1px 1px #674208, -1px -1px 1px #674208;
  background: url('../image/common/ui_info_btn_move.png?1496050164') no-repeat top center;
  background-size: 113px 32px;
}

.common-help-btn {
  text-align: center;
}
.common-help-btn > span {
  position: relative;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  margin: 0 14px;
  padding: 0 7px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 10px;
  text-shadow: 1px 1px 1px #674208, -1px 1px 1px #674208, 1px -1px 1px #674208, -1px -1px 1px #674208;
  background: url('../image/common/ui_info_btn_basic_center.png?1496050164') repeat-x top center;
  background-size: 1px 25px;
}
.common-help-btn > span:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  left: -9px;
  background: url('../image/common/ui_info_btn_basic_left.png?1496050164') no-repeat top left;
  background-size: 10px 25px;
}
.common-help-btn > span:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  right: -9px;
  background: url('../image/common/ui_info_btn_basic_right.png?1496050164') no-repeat top right;
  background-size: 10px 25px;
}

.common-help-list ul.common-help-parent > li > span:after, .common-help-list ul.common-help-parent > li > span.rotate90:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 7px;
  right: 3px;
  background: url('../image/common/ui_info_img_list_arrow.png?1496050164') no-repeat right center;
  background-size: 14px 14px;
}

.common-help-list ul.common-help-child > li > a:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 7px;
  right: 3px;
  background: url('../image/common/ui_info_img_list_arrow_middle.png?1496050164') no-repeat right center;
  background-size: 14px 14px;
}

.common-help-list {
  border-style: solid;
  border-width: 8px 3px;
  -moz-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  -webkit-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  -o-border-image: url('../image/news/ui_info_column_window_base.png?1496050164') 16 7 round;
  border-image-source: url('../image/news/ui_info_column_window_base.png?1496050164');
  border-image-slice: 16 7;
  border-image-width: 8px 3px;
  border-image-outset: 0;
  border-image-repeat: round;
  background: url('../image/common/ui_info_img_ball.png?1496050164') no-repeat center;
  background-size: 175px 175px;
  background-color: #fff;
  position: relative;
  width: 480px;
  color: #3a434a;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: bold;
  z-index: 10;
}
.common-help-list:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: url('../image/common/ui_info_column_window_texture_corner.png?1496050164') no-repeat center;
  background-size: 95px 95px;
  width: 95px;
  height: 95px;
  z-index: -10;
}
.common-help-list:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  background: url('../image/common/ui_info_column_window_texture_corner.png?1496050164') no-repeat center;
  background-size: 95px 95px;
  -webkit-transform: rotate(180deg);
  width: 95px;
  height: 95px;
  z-index: -10;
}
.common-help-list li {
  position: relative;
  width: 474px;
  min-height: 30px;
  color: #3a434a;
}
.common-help-list ul.common-help-parent > li:nth-child(2n) {
  background-color: rgba(210, 234, 255, 0.7);
}
.common-help-list ul.common-help-parent > li > span {
  padding: 0px 5px;
  display: table-cell;
  height: 28px;
  line-height: 12px;
  vertical-align: middle;
}
.common-help-list ul.common-help-parent > li > span.rotate90:after {
  -webkit-transform: rotate(90deg);
}
.common-help-list ul.common-help-child {
  background-color: #fff;
}
.common-help-list ul.common-help-child > li {
  background-color: rgba(255, 255, 189, 0.3);
  width: 454px;
  padding-left: 20px;
}
.common-help-list ul.common-help-child > li:nth-child(2n) {
  background-color: rgba(255, 255, 76, 0.3);
}
.common-help-list ul.common-help-child > li > a {
  display: table-cell;
  width: 454px;
  height: 28px;
  line-height: 12px;
  vertical-align: middle;
  color: #996b00;
}

#common-list-btn-box {
  margin: 0 5px;
}

.common-list-btn {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #424257), color-stop(100%, #1b1b27));
  border: solid 1px #fff;
  -webkit-border-radius: 5px;
  -webkit-box-shadow: #707070 1px 1px 0px 1px;
  padding: 15px 10px;
  margin-bottom: 5px;
  color: #fff;
}
.common-list-btn:after {
  position: absolute;
  right: 5px;
  top: 10px;
  -webkit-transform: scale(0.5);
}

.common-footer {
  position: relative;
  font-size: 9px;
  text-align: center;
  width: 480px;
  height: 44px;
  margin: 50px auto 0;
  color: #3a434a;
}
.common-footer ul li {
  display: inline-block;
  margin: 0 5px 10px;
  border-right: solid 1px #3a434a;
  padding-right: 15px;
  line-height: 1;
}
.common-footer ul li:last-child {
  border: none;
}
.common-footer p {
  margin: 0;
  padding-bottom: 10px;
}
.common-footer a {
  text-decoration: underline;
}

.common-footer-page-top-btn {
  position: absolute;
  display: block;
  width: 37px;
  height: 39px;
  right: 0;
  bottom: 50px;
  margin: 0;
  padding: 0;
}

#common-tab-nav {
  width: 480px;
  height: 33px;
  text-align: center;
  z-index: 1;
  color: #fff;
  font-size: 0;
}
#common-tab-nav ul {
  font-size: 0;
}
#common-tab-nav ul li {
  background: url('../image/common/ui_info_btn_tab_unactive.png?1496050164') no-repeat top center;
  background-size: 118px 34px;
  position: relative;
  top: 0;
  display: inline-block;
  height: 34px;
  text-shadow: 1px 1px 1px #333b41, -1px 1px 1px #333b41, 1px -1px 1px #333b41, -1px -1px 1px #333b41;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
#common-tab-nav ul li span {
  display: block;
  text-align: center;
  padding-top: 14px;
  z-index: 20;
}
#common-tab-nav ul li.current-tab {
  background: url('../image/common/ui_info_btn_tab_active.png?1496050164') no-repeat top center;
  background-size: 118px 34px;
  height: 34px;
  z-index: 12;
}

.common-tab-column2 li {
  width: 237px;
}
.common-tab-column2 li span {
  width: 122px;
}

.common-tab-column3 li {
  width: 158px;
}
.common-tab-column3 li span {
  width: 122px;
}

.common-tab-column4 li {
  width: 118px;
}
.common-tab-column4 li span {
  width: 100px;
  font-size: 9px;
}

.tab-content {
  display: none;
}

.current-tab-content {
  display: block;
}

.common-pager {
  overflow: hidden;
  width: 480px;
  margin: 12px auto 0;
  text-align: center;
  color: #fff;
}

.common-pager-text {
  width: 120px;
  background: #3a434a;
  margin: 4px 15px;
  padding: 3px 0;
  display: inline-block;
  vertical-align: top;
  -webkit-border-radius: 5px;
}

.common-pager-prev {
  display: inline-block;
  position: relative;
  margin-top: 2px;
  padding: 0 10px;
  height: 25px;
  line-height: 23px;
  vertical-align: top;
  background: url('../image/common/ui_info_btn_basic_center.png?1496050164') repeat-x top center;
  background-size: 1px 25px;
}
.common-pager-prev:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  left: -9px;
  background: url('../image/common/ui_info_btn_basic_left.png?1496050164') no-repeat top left;
  background-size: 10px 25px;
}
.common-pager-prev:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  right: -9px;
  background: url('../image/common/ui_info_btn_basic_right.png?1496050164') no-repeat top right;
  background-size: 10px 25px;
}
.common-pager-prev > span {
  content: '';
  margin: 5px;
  display: inline-block;
  background: url('../image/common/ui_info_img_arrow_s_prev.png?1496050164') no-repeat;
  background-size: 11px 14px;
  width: 11px;
  height: 14px;
}

.common-pager-next {
  display: inline-block;
  position: relative;
  margin-top: 2px;
  padding: 0 10px;
  height: 25px;
  line-height: 23px;
  vertical-align: top;
  background: url('../image/common/ui_info_btn_basic_center.png?1496050164') repeat-x top center;
  background-size: 1px 25px;
}
.common-pager-next:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  left: -9px;
  background: url('../image/common/ui_info_btn_basic_left.png?1496050164') no-repeat top left;
  background-size: 10px 25px;
}
.common-pager-next:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  right: -9px;
  background: url('../image/common/ui_info_btn_basic_right.png?1496050164') no-repeat top right;
  background-size: 10px 25px;
}
.common-pager-next > span {
  content: '';
  margin: 5px;
  display: inline-block;
  background: url('../image/common/ui_info_img_arrow_s_next.png?1496050164') no-repeat;
  background-size: 11px 14px;
  width: 11px;
  height: 14px;
}

.common-pager-first {
  display: inline-block;
  position: relative;
  margin-top: 2px;
  padding: 0 10px;
  height: 25px;
  line-height: 23px;
  vertical-align: top;
  background: url('../image/common/ui_info_btn_basic_center.png?1496050164') repeat-x top center;
  background-size: 1px 25px;
}
.common-pager-first:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  left: -7px;
  background: url('../image/common/ui_info_btn_basic_left.png?1496050164') no-repeat top left;
  background-size: 10px 25px;
}
.common-pager-first:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  right: -7px;
  background: url('../image/common/ui_info_btn_basic_right.png?1496050164') no-repeat top right;
  background-size: 10px 25px;
}
.common-pager-first > span {
  content: '';
  margin: 5px;
  display: inline-block;
  background: url('../image/common/ui_info_img_arrow_s_prev.png?1496050164') no-repeat;
  background-size: 11px 14px;
  width: 11px;
  height: 14px;
}

.common-pager-last {
  display: inline-block;
  position: relative;
  margin-top: 2px;
  padding: 0 10px;
  height: 25px;
  line-height: 23px;
  vertical-align: top;
  background: url('../image/common/ui_info_btn_basic_center.png?1496050164') repeat-x top center;
  background-size: 1px 25px;
}
.common-pager-last:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  left: -7px;
  background: url('../image/common/ui_info_btn_basic_left.png?1496050164') no-repeat top left;
  background-size: 10px 25px;
}
.common-pager-last:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  right: -7px;
  background: url('../image/common/ui_info_btn_basic_right.png?1496050164') no-repeat top right;
  background-size: 10px 25px;
}
.common-pager-last > span {
  content: '';
  margin: 5px;
  display: inline-block;
  background: url('../image/common/ui_info_img_arrow_s_next.png?1496050164') no-repeat;
  background-size: 11px 14px;
  width: 11px;
  height: 14px;
}

/* ----------------------------------------
 Cascading common.css
---------------------------------------- */
.news-history #common-tab-nav {
  top: 40px;
}

.news-history .common-frame-box {
  margin-top: 40px;
}

.news-history .common-pager {
  width: 450px;
}

.news-event .common-main-img {
  margin: 0 auto 10px;
}

/* ----------------------------------------
 news common
---------------------------------------- */
/*
.news-index-box {
  margin: 0;
}

.news-nav-tab {
  width: 480px;
  height: 34px;
  font-size: 0;
  text-align: center;
}

.news-tab {
  display: inline-block;
  padding-left: 2px;
  line-height: 38px;
  text-align: center;
  font-size: $FONT_SIZE_F;
  font-weight: bold;
  color: $WHITE;
}*/
.news-index-box {
  position: relative;
  margin: 0;
}
.news-index-box .news-nav-tab {
  position: relative;
  width: 480px;
  height: 34px;
  margin-bottom: 5px;
  text-align: center;
}
.news-index-box .news-nav-tab .news-tab {
  display: inline-block;
  position: relative;
  width: 83px;
  height: 34px;
  background-color: #b0b0b0;
  border-radius: 2px;
  line-height: 36px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  z-index: 20;
}
.news-index-box .news-nav-tab .news-tab a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.news-index-box .news-nav-tab .news-tab:after {
  content: '';
  position: absolute;
  width: 94%;
  height: 86%;
  top: 4%;
  left: 2%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}
.news-index-box .news-nav-tab .news-tab#news-tab-new {
  background-color: #6d8eed;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #6181e0), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#6181e0 50%, transparent 50%, transparent);
  background-image: linear-gradient(#6181e0 50%, transparent 50%, transparent);
  -moz-background-size: 4px 4px;
  -webkit-background-size: 4px 4px;
  background-size: 4px 4px;
}
.news-index-box .news-nav-tab .news-tab#news-tab-new.current-tab {
  background-color: #5799ff;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #488bf2), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#488bf2 50%, transparent 50%, transparent);
  background-image: linear-gradient(#488bf2 50%, transparent 50%, transparent);
  border: 1px solid #666;
}
.news-index-box .news-nav-tab .news-tab#news-tab-management {
  background-color: #94d662;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #87ca57), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#87ca57 50%, transparent 50%, transparent);
  background-image: linear-gradient(#87ca57 50%, transparent 50%, transparent);
  -moz-background-size: 4px 4px;
  -webkit-background-size: 4px 4px;
  background-size: 4px 4px;
}
.news-index-box .news-nav-tab .news-tab#news-tab-management.current-tab {
  background-color: #84d72c;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #78cb20), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#78cb20 50%, transparent 50%, transparent);
  background-image: linear-gradient(#78cb20 50%, transparent 50%, transparent);
  border: 1px solid #666;
}
.news-index-box .news-nav-tab .news-tab#news-tab-gacha {
  background-color: #ffcd6f;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #f8c265), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#f8c265 50%, transparent 50%, transparent);
  background-image: linear-gradient(#f8c265 50%, transparent 50%, transparent);
  -moz-background-size: 4px 4px;
  -webkit-background-size: 4px 4px;
  background-size: 4px 4px;
}
.news-index-box .news-nav-tab .news-tab#news-tab-gacha.current-tab {
  background-color: #ffc329;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #f8b817), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#f8b817 50%, transparent 50%, transparent);
  background-image: linear-gradient(#f8b817 50%, transparent 50%, transparent);
  border: 1px solid #666;
}
.news-index-box .news-nav-tab .news-tab#news-tab-event {
  background-color: #ed6d7b;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #e0616e), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#e0616e 50%, transparent 50%, transparent);
  background-image: linear-gradient(#e0616e 50%, transparent 50%, transparent);
  -moz-background-size: 4px 4px;
  -webkit-background-size: 4px 4px;
  background-size: 4px 4px;
}
.news-index-box .news-nav-tab .news-tab#news-tab-event.current-tab {
  background-color: #ee3153;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #e12446), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#e12446 50%, transparent 50%, transparent);
  background-image: linear-gradient(#e12446 50%, transparent 50%, transparent);
  border: 1px solid #666;
}
.news-index-box .news-nav-tab .news-tab#news-tab-update {
  background-color: #d076ff;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #c66af8), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#c66af8 50%, transparent 50%, transparent);
  background-image: linear-gradient(#c66af8 50%, transparent 50%, transparent);
  -moz-background-size: 4px 4px;
  -webkit-background-size: 4px 4px;
  background-size: 4px 4px;
}
.news-index-box .news-nav-tab .news-tab#news-tab-update.current-tab {
  background-color: #c636ff;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #bc24f8), color-stop(0.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(#bc24f8 50%, transparent 50%, transparent);
  background-image: linear-gradient(#bc24f8 50%, transparent 50%, transparent);
  border: 1px solid #666;
}
.news-index-box #news-tab-new {
  text-shadow: 1px 1px 1px #333b41, -1px 1px 1px #333b41, 1px -1px 1px #333b41, -1px -1px 1px #333b41;
}
.news-index-box #news-tab-management {
  text-shadow: 1px 1px 1px #006f0a, -1px 1px 1px #006f0a, 1px -1px 1px #006f0a, -1px -1px 1px #006f0a;
}
.news-index-box #news-tab-gacha {
  text-shadow: 1px 1px 1px #994c14, -1px 1px 1px #994c14, 1px -1px 1px #994c14, -1px -1px 1px #994c14;
}
.news-index-box #news-tab-event {
  text-shadow: 1px 1px 1px #470000, -1px 1px 1px #470000, 1px -1px 1px #470000, -1px -1px 1px #470000;
}
.news-index-box #news-tab-update {
  text-shadow: 1px 1px 1px #5f0981, -1px 1px 1px #5f0981, 1px -1px 1px #5f0981, -1px -1px 1px #5f0981;
}
.news-index-box .news-list-box {
  position: relative;
}
.news-index-box .news-list-box li {
  margin: 0 auto 10px;
}
.news-index-box .news-list-box .tab-content .news-list {
  position: relative;
  display: table;
  width: 90%;
  border: 1px solid #bababa;
  background-color: #fff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.news-index-box .news-list-box .tab-content .news-list:before {
  content: "";
  position: absolute;
  background: url("../image/common/ui_info_column_window_texture_corner.png") no-repeat center;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  z-index: 2;
  bottom: 0;
}
.news-index-box .news-list-box .tab-content .news-list:after {
  content: "";
  position: absolute;
  background: url("../image/common/ui_info_column_window_texture_corner.png") no-repeat center;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  z-index: 2;
  right: 1px;
  top: -2;
  transform: rotate(180deg);
}
.news-index-box .news-list-box .tab-content .news-list .news-list-inner {
  position: relative;
  display: table-cell;
  vertical-align: top;
  padding: 4px;
  z-index: 100;
}
.news-index-box .news-list-box .tab-content .news-list .news-list-inner:nth-child(1) {
  word-break: break-all;
  z-index: 100;
}
.news-index-box .news-list-box .tab-content .news-list .news-list-inner:nth-child(2) {
  width: 1%;
}
.news-index-box .news-list-box .tab-content .news-list .news-list-inner .news-list-bnr {
  display: block;
  height: 60px;
  margin: 0;
  vertical-align: middle;
}
.news-index-box .news-list-box .tab-content .news-list .news-list-inner .is-new:before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../image/common/ui_info_img_new.png?1495440326") no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 50px;
}
.news-index-box .news-list-box .tab-content .news-list .news-list-inner .date {
  font-size: 9px;
}
.news-index-box .news-list-box .tab-content .news-list .news-list-inner .title {
  margin-top: 0.5em;
  font-size: 10px;
}
.news-index-box .news-list-box .tab-content .news-list.news-list-management .title {
  color: #00be00;
}
.news-index-box .news-list-box .tab-content .news-list.news-list-gacha .title {
  color: #fe7200;
}
.news-index-box .news-list-box .tab-content .news-list.news-list-event .title {
  color: #d50000;
}
.news-index-box .news-list-box .tab-content .news-list.news-list-update .title {
  color: #bf58e8;
}
.news-index-box .news-list-box .news-list-history {
  text-align: right;
}
.news-index-box .news-list-box .news-list-history span {
  position: relative;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  margin: 0 30px 0 0;
  padding: 0 7px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 10px;
  text-shadow: 1px 1px 1px #674208, -1px 1px 1px #674208, 1px -1px 1px #674208, -1px -1px 1px #674208;
  background: url("../image/common/ui_info_btn_basic_center.png") repeat-x top center;
  background-size: 1px 25px;
}
.news-index-box .news-list-box .news-list-history span:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  left: -9px;
  background: url("../image/common/ui_info_btn_basic_left.png") no-repeat top left;
  background-size: 10px 25px;
}
.news-index-box .news-list-box .news-list-history span:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  right: -9px;
  background: url("../image/common/ui_info_btn_basic_right.png") no-repeat top right;
  background-size: 10px 25px;
}
.news-list-blank {
  width: 474px;
  height: 30px;
  text-align: center;
}

.news-list-history {
  width: 460px;
  height: 30px;
  display: table-cell;
  text-align: right;
  vertical-align: middle;
}
.news-list-history > span {
  position: relative;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  margin: 0 14px;
  padding: 0 7px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 10px;
  text-shadow: 1px 1px 1px #674208, -1px 1px 1px #674208, 1px -1px 1px #674208, -1px -1px 1px #674208;
  background: url('../image/common/ui_info_btn_basic_center.png?1496050164') repeat-x top center;
  background-size: 1px 25px;
}
.news-list-history > span:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  left: -9px;
  background: url('../image/common/ui_info_btn_basic_left.png?1496050164') no-repeat top left;
  background-size: 10px 25px;
}
.news-list-history > span:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 25px;
  top: 0;
  right: -9px;
  background: url('../image/common/ui_info_btn_basic_right.png?1496050164') no-repeat top right;
  background-size: 10px 25px;
}

.news-pager {
  width: 474px;
  height: 30px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

.news-view-title.management .category, .news-view-title.gacha .category, .news-view-title.event .category, .news-view-title.update .category {
  width: 90px;
  height: 15px;
  text-align: center;
  float: left;
  color: #fff;
  font-size: 11px;
}

.news-view-title {
  height: 30px;
  background-color: #fff;
  color: #3a434a;
}
.news-view-title > p {
  display: table;
  line-height: 1.3;
  width: 355px;
  height: 30px;
  margin: 0;
  padding: -5px 0 0;
}
.news-view-title > p > span {
  font-size: 13px;
  display: table-cell;
  vertical-align: middle;
}
.news-view-title .info {
  float: left;
  position: relative;
  top: -4px;
  width: 120px;
}
.news-view-title .new {
  float: left;
  margin: 0 2px 0 5px;
}
.news-view-title .date {
  font-size: 9px;
  margin: -1px 20px 0 0;
  text-align: center;
}
.news-view-title.management {
  border-top: solid 4px #7cd220;
  border-bottom: solid 4px #7cd220;
}
.news-view-title.management .category {
  background-color: #7cd220;
}
.news-view-title.management .frame {
  content: "";
  float: left;
  background: url('../image/news/ui_info_column_title_management.png?1496050164') no-repeat right top;
  background-size: 22px 18px;
  width: 22px;
  height: 18px;
}
.news-view-title.management > p {
  color: #00be00;
}
.news-view-title.gacha {
  border-top: solid 4px #ffbd18;
  border-bottom: solid 4px #ffbd18;
}
.news-view-title.gacha .category {
  background-color: #ffbd18;
}
.news-view-title.gacha .frame {
  content: "";
  float: left;
  background: url('../image/news/ui_info_column_title_gacha.png?1496050164') no-repeat right top;
  background-size: 22px 18px;
  width: 22px;
  height: 18px;
}
.news-view-title.gacha > p {
  color: #fe7200;
}
.news-view-title.event {
  border-top: solid 4px #e92347;
  border-bottom: solid 4px #e92347;
}
.news-view-title.event .category {
  background-color: #e92347;
}
.news-view-title.event .frame {
  content: "";
  float: left;
  background: url('../image/news/ui_info_column_title_event.png?1496050164') no-repeat right top;
  background-size: 22px 18px;
  width: 22px;
  height: 18px;
}
.news-view-title.event > p {
  color: #d50000;
}
.news-view-title.update {
  border-top: solid 4px #c026ff;
  border-bottom: solid 4px #c026ff;
}
.news-view-title.update .category {
  background-color: #c026ff;
}
.news-view-title.update .frame {
  content: "";
  float: left;
  background: url('../image/news/ui_info_column_title_update.png?1496050164') no-repeat right top;
  background-size: 22px 18px;
  width: 22px;
  height: 18px;
}
.news-view-title.update > p {
  color: #bf58e8;
}

.news-banner {
  display: block;
  width: 480px;
  height: 148px;
  margin: 10px 0;
}
.news-banner > img {
  width: 480px;
  height: 148px;
}

/* ----------------------------------------
 news index
---------------------------------------- */
@-webkit-keyframes flick-next-btn-keyframe {
  0% {
    -webkit-transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(5px);
  }
}
@-webkit-keyframes flick-prev-btn-keyframe {
  0% {
    -webkit-transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-5px);
  }
}
.news-index-flick-box {
  position: relative;
  margin-bottom: -10px;
  margin-top: 5px;
}

.news-index-flick {
  position: relative;
  width: 465px;
  height: 157px;
  margin: 0 auto;
  overflow: hidden;
}

.news-index-flick-item {
  position: absolute;
  width: 465px;
  height: 157px;
  display: none;
}
.news-index-flick-item > a, .news-index-flick-item-banner-image {
  display: block;
  position: absolute;
  width: 465px;
  height: 144px;
  bottom: 0;
}

.news-index-flick-thumb-box {
  position: relative;
  width: 480px;
  height: 15px;
}

.news-index-flick-thumb-rail {
  display: flex;
  justify-content: center; /* 中央寄せ */
}

.news-index-flick-thumb-box .news-index-flick-thumb {
  position: relative;
  width: 480px;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
}
.news-index-flick-thumb-box .news-index-flick-thumb-item img {
  display: block;
  width: 10px;
  height: 10px;
  padding: 2px;
}

@-webkit-keyframes news-index-flick-current-keyframe {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.news-index-flick-current {
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-duration: 0.6s;
}

.news-index-flick-current {
  -webkit-animation-name: news-index-flick-current-keyframe;
  display: block;
  position: absolute;
  top: 1.5px;
  left: 18px;
}

@-webkit-keyframes news-fade-in-keyframe {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.news-index-fade-in {
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-duration: 0.7s;
}

.news-index-fade-in {
  display: block;
  -webkit-animation-name: news-fade-in-keyframe;
}

.news-index-fade-in-android {
  display: block;
}

/* ----------------------------------------
 news event
---------------------------------------- */
/* ----------------------------------------
 news gacha
---------------------------------------- */
.floating-bottom {
  position: fixed;
  bottom: 0%;
  -webkit-transform: translate(-50%, -50%);
  z-index: 10;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(179, 224, 255, 0)), to(#b3e0ff));
  margin: -30px auto;
  padding: 30px 100%;
  pointer-events: none;
}

.floating-button {
  position: fixed;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  z-index: 20;
  margin: 50px 0;
}

/* ----------------------------------------
 other
---------------------------------------- */
.margin-top-10 {
  margin-top: 10px !important;
}

.margin-top-15 {
  margin-top: 15px !important;
}

.margin-top-20 {
  margin-top: 20px !important;
}

.margin-top-25 {
  margin-top: 25px !important;
}

.margin-top-30 {
  margin-top: 30px !important;
}

.margin-top-35 {
  margin-top: 35px !important;
}

.margin-top-40 {
  margin-top: 40px !important;
}

.margin-top-45 {
  margin-top: 45px !important;
}

.margin-top-50 {
  margin-top: 50px !important;
}

.-margin-top-10 {
  margin-top: -10px !important;
}

.-margin-top-15 {
  margin-top: -15px !important;
}

.-margin-top-20 {
  margin-top: -20px !important;
}

.-margin-top-25 {
  margin-top: -25px !important;
}

.-margin-top-30 {
  margin-top: -30px !important;
}

.-margin-top-35 {
  margin-top: -35px !important;
}

.-margin-top-40 {
  margin-top: -40px !important;
}

.-margin-top-45 {
  margin-top: -45px !important;
}

.-margin-top-50 {
  margin-top: -50px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-bottom-15 {
  margin-bottom: 15px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.margin-bottom-25 {
  margin-bottom: 25px !important;
}

.margin-bottom-30 {
  margin-bottom: 30px !important;
}

.margin-bottom-35 {
  margin-bottom: 35px !important;
}

.margin-bottom-40 {
  margin-bottom: 40px !important;
}

.margin-bottom-45 {
  margin-bottom: 45px !important;
}

.margin-bottom-50 {
  margin-bottom: 50px !important;
}

.awake {
  position: relative;
}
.awake.rare-n:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  left: -3px;
  background-image: url("../image/common/ui_info_icon_rarity_s_01.png");
  background-size: 20px 020px;
  z-index: 1000;
}
.awake.rare-r:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  left: -3px;
  background-image: url("../image/common/ui_info_icon_rarity_s_02.png");
  background-size: 20px 20px;
  z-index: 1000;
}
.awake.rare-sr:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  left: -3px;
  background-image: url("../image/common/ui_info_icon_rarity_s_03.png");
  background-size: 20px 20px;
  z-index: 1000;
}
.awake.rare-ssr:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  left: -3px;
  background-image: url("../image/common/ui_info_icon_rarity_s_04.png");
  background-size: 20px 20px;
  z-index: 1000;
}
.awake.rare-ur:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  left: -3px;
  background-image: url("../image/common/ui_info_icon_rarity_s_05.png");
  background-size: 20px 20px;
  z-index: 1000;
}
.awake.attr-p:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 20px;
  right: -4px;
  background-image: url("../image/common/ui_info_icon_attr_s_power.png");
  background-size: 18px 18px;
  z-index: 1000;
}
.awake.attr-s:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 20px;
  right: -4px;
  background-image: url("../image/common/ui_info_icon_attr_s_speed.png");
  background-size: 18px 18px;
  z-index: 1000;
}
.awake.attr-t:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 20px;
  right: -4px;
  background-image: url("../image/common/ui_info_icon_attr_s_technique.png");
  background-size: 18px 18px;
  z-index: 1000;
}
