/* 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: 16px;
  line-height: 1.6;
  font-family: sans-serif;
  /*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;
}

* {
  -webkit-font-smoothing: antialiased;
}

/* common
----------------------------------------------------------*/
#gungho {
  width: 100%;
  height: 31px;
  background: #fff;
  border-bottom: 4px solid #ccc;
  position: relative;
  z-index: 1000;
}

#gungho .inner {
  width: 1000px;
  height: 31px;
  margin: 0 auto;
  position: relative;
}

#gungho #ragnarok {
  position: absolute;
  top: 0;
  left: 0;
}

#gungho #roInfo {
  position: absolute;
  overflow: visible;
  top: 0;
  right: 0;
  line-height: 31px;
}

#gungho #roInfo li {
  float: left;
  margin-right: 15px;
}

#gungho #roInfo li a {
  font-size: 12px;
  color: #555;
  text-decoration: underline;
}

#gungho #roInfo li a:hover {
  text-decoration: none;
}

#sns {
  position: absolute;
  top: 24px;
  left: 50%;
  margin-left: -500px;
  line-height: 48px;
  text-align: right;
  width: 500px;
  margin: 0 auto;
  text-indent: initial;
  z-index: 1000;
}

#sns li {
  display: inline-block;
}

#pagetop {
  position: absolute;
  bottom: -20px;
  right: 10%;
}

#pagetop:hover {
  bottom: -8px;
}

/* footer
----------------------------------------------------------*/
#footer {
  background: #140d0d url(../img/top/footer_bg.jpg) center top no-repeat;
  color: #fff;
  min-height: 60px;
  text-align: center;
  padding: 50px 0 25px;
}
#footer h2 {
  margin-bottom: 20px;
}
#footer #startBtn {
  margin: 0 auto;
  width: 583px;
  display: block;
}
#footer #moreBtn {
  display: block;
  color: #909495;
  font-size: 14px;
  text-decoration: underline;
  margin-bottom: 20px;
}
#footer #moreBtn:hover {
  text-decoration: none;
}
#footer .col3 {
  width: 900px;
  margin: 0 auto 30px;
}
#footer .col3 .col {
  width: 33.3333%;
  float: left;
}
#footer .col3 .col:nth-child(2) img, #footer .col3 .col:nth-child(3) img {
  padding: 20px 0;
}
#footer .col3 .col img {
  margin-bottom: 10px;
}
#footer .col3 .col p {
  text-align: left;
  color: #a79389;
  width: 90%;
  margin: 0 auto;
  font-size: 14px;
}
#footer .sns {
  width: 860px;
  margin: 0 auto;
  text-align: center;
}
#footer .sns li {
  display: inline-block;
  width: 300px;
  margin: 0 10px 30px;
}
#footer #credit {
  font-size: 10px;
  color: #8a8a8a;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #18110d;
}
table th, table td {
  padding: 10px;
}
table th {
  font-weight: bold;
  white-space: nowrap;
}
table thead th {
  text-align: left;
  background: #18110d;
  color: #9b7458;
}
table tbody th {
  font-size: 14px;
  background: #342626;
  color: #B17D5D;
}
table tbody td {
  font-size: 14px;
  color: #B17D5D;
}
table tbody tr {
  border-bottom: 1px solid #362827;
}
table tbody tr:nth-child(2n) {
  background: #3e2e2e;
}
table tbody tr:nth-child(2n+1) {
  background: #3a2b2b;
}
table tbody tr:last-child {
  border-bottom: 1px solid #18110d;
}
table .item {
  width: 130px;
  text-align: center;
  background: #fff;
}
table .item img {
  display: block;
  margin: 0 auto;
}

.skillTable .item {
  width: 24px;
  background: #18110d;
}
.skillTable tbody th {
  width: 10%;
}

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto 30px;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  height: 100%;
  width: 100%;
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #000;
  text-indent: -9999px;
  display: block;
  width: 5px;
  height: 5px;
  margin: 0 3px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #c22738;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
}

.bx-wrapper .bx-next {
  right: 10px;
}

.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/* class styles
----------------------------------------------------------*/
.inner {
  width: 960px;
  margin: 0 auto;
  position: relative;
}

.section {
  width: 890px;
  margin: 0 auto;
  margin-bottom: 70px;
}

.section h4 {
  font-size: 24px;
  color: #fff;
  line-height: 56px;
}

.section .sub, .section .main {
  margin-bottom: 40px;
}

.section.last {
  margin-bottom: 0;
}

.note, .note li {
  font-size: 12px;
  display: inline-block;
  text-align: left;
}

.attention {
  text-align: left;
  list-style-type: none;
  width: 90%;
  margin: 0 auto;
}

.attention li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 15px;
  background: url(../img/listmark.png) center left no-repeat;
}

.col2 {
  overflow: hidden;
}
.col2 .main {
  width: 60%;
  float: left;
  margin-right: 20px;
}
.col2 .sub {
  overflow: hidden;
}

.fixed {
  position: fixed !important;
  top: 0 !important;
}

.chara,
.decoration {
  position: absolute;
  z-index: 100;
}

.important {
  color: #DC2045;
  font-weight: bold;
}

/* common
----------------------------------------------------------*/
#gungho .inner {
  background: none;
  padding: 0;
}

#pickup h2 {
  padding: 0;
}

/* pages
----------------------------------------------------------*/
#index .mfp-bg, #index .mfp-wrap {
  z-index: 999999;
}
#index #top {
  height: 774px;
  position: relative;
  text-align: center;
  background: url(../img/top/visual.jpg) center top no-repeat, url(../img/top/visual_repeat.jpg) repeat-x;
  -pie-background: url(/special/rebellion/img/top/visual.jpg) center top no-repeat, url(/special/rebellion/img/top/visual_repeat.jpg) repeat-x;
  behavior: url(PIE.htc);
}
#index #top h1 {
  text-align: center;
  position: relative;
  top: 20px;
}
#index #top #pv {
  position: relative;
  bottom: 20px;
  width: 320px;
  margin: 0 auto;
  text-indent: -9999px;
  height: 177px;
  background: url(../img/top/movie.png) center top no-repeat;
}
#index #top #pv:hover {
  background: url(../img/top/movie_over.png) center top no-repeat;
}
#index #top #pv a {
  width: 100%;
  height: 100%;
  display: block;
}
#index #top .banner {
  position: absolute;
  right: 0;
  bottom: 20px;
}
#index #nav {
  background: url(../img/top/nav_bg_repeat.jpg) center 38px repeat-x;
  z-index: 99999;
  width: 100%;
  height: 146px;
  text-align: center;
  position: absolute;
  top: 762px;
}
#index #nav ul {
  background: url(../img/top/nav_bg.png) center top no-repeat;
  height: 106px;
  width: 1089px;
  margin: 0 auto;
}
#index #nav ul li {
  top: 11px;
  left: -5px;
  margin-left: -5px;
  position: relative;
}
#index #nav #navChild {
  display: none;
  width: 198px;
  height: 108px;
  position: absolute;
  left: 2px;
  top: 66px;
  padding: 0 20px;
  background: url(../img/top/nav_child_bg.png) center top no-repeat;
}
#index #nav #navChild li {
  top: 0;
  left: 0;
  background: none;
  width: 100%;
  height: auto;
  display: block;
  text-align: left;
  padding-left: 3px;
  text-indent: 0;
  background: url(../img/top/nav_child_listmark.png) center left no-repeat;
}
#index #nav #navChild li a {
  display: inline-block;
}
#index #point {
  background: #3d1d11 url(../img/top/point_bg.jpg) center top no-repeat;
  padding-top: 83px;
  min-height: 397px;
}
#index #point ul {
  width: 956px;
  margin: 0 auto;
  overflow: hidden;
}
#index #point ul li {
  float: left;
}
#index #point ul li:first-child {
  background-image: url(../img/top/point.png);
  background-position: 0px 0px;
  width: 239px;
  height: 315px;
}
#index #point ul li:first-child:hover {
  background-image: url(../img/top/point.png);
  background-position: -239px 0px;
  width: 239px;
  height: 315px;
}
#index #point ul li:nth-child(2) {
  background-image: url(../img/top/point.png);
  background-position: -478px 0px;
  width: 239px;
  height: 315px;
}
#index #point ul li:nth-child(2):hover {
  background-image: url(../img/top/point.png);
  background-position: 0px -315px;
  width: 239px;
  height: 315px;
}
#index #point ul li:nth-child(3) {
  background-image: url(../img/top/point.png);
  background-position: -239px -315px;
  width: 239px;
  height: 315px;
}
#index #point ul li:nth-child(3):hover {
  background-image: url(../img/top/point.png);
  background-position: -478px -315px;
  width: 239px;
  height: 315px;
}
#index #point ul li:nth-child(4) {
  background-image: url(../img/top/point.png);
  background-position: -717px 0px;
  width: 239px;
  height: 315px;
}
#index #point ul li:nth-child(4):hover {
  background-image: url(../img/top/point.png);
  background-position: -717px -315px;
  width: 239px;
  height: 315px;
}
#index #point ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}
#index #news {
  background: #4d4840 url(../img/top/news_bg.jpg) center top no-repeat;
  padding: 64px 0 29px;
  color: #fff;
}
#index #news .col2 {
  width: 960px;
  margin: 0 auto;
  position: relative;
}
#index #news h2 {
  position: absolute;
  top: -5px;
  left: -5px;
}
#index #news dl {
  padding-top: 40px;
  overflow: hidden;
}
#index #news dl dt {
  color: #fff;
  width: 15%;
  margin: 0 10px 10px 0;
  padding: 0;
  text-align: center;
  float: left;
  clear: left;
  line-height: 1.3;
  font-size: 14px;
}
#index #news dl dd {
  padding: 0;
  line-height: 1.3;
  margin: 0 0 10px 96px;
  font-size: 14px;
}
#index #news dl dd a {
  color: #fff;
  font-size: 14px;
}
#index #news #medias {
  width: 960px;
  margin: 0 auto;
  text-align: center;
}
#index #news #medias li {
  display: inline-block;
  margin: 0 10px;
}
#index #news .bx-wrapper {
  background: url(../img/top/events_bg.png) center top no-repeat;
  width: 250px;
  height: 84px;
  padding: 18px 28px;
}
#index #news .bx-wrapper .slider {
  width: 250px;
  margin: 0 auto;
}
#index #news .bx-wrapper .bx-prev {
  background-image: url(../img/top/events.png);
  background-position: -37px 0px;
  width: 37px;
  height: 57px;
  left: -3px;
}
#index #news .bx-wrapper .bx-next {
  background-image: url(../img/top/events.png);
  background-position: 0px 0px;
  width: 37px;
  height: 57px;
  right: -3px;
}
#index #pickupWrap {
  background: #2a2424;
  padding: 45px 0;
}
#index #pickup {
  margin-bottom: 0;
}

/* Nav
----------------------------------------------------------*/
#nav ul li {
  text-indent: -9999px;
  display: inline-block;
}
#nav ul li a {
  width: 100%;
  height: 100%;
  display: block;
}
#nav ul li:first-child {
  background-image: url(../img/top/nav.jpg);
  background-position: 0px -144px;
  width: 241px;
  height: 72px;
  margin-left: 0;
}
#nav ul li:first-child:hover {
  background-image: url(../img/top/nav.jpg);
  background-position: -242px 0px;
  width: 241px;
  height: 72px;
}
#nav ul li:nth-child(2) {
  background-image: url(../img/top/nav.jpg);
  background-position: -242px -72px;
  width: 240px;
  height: 72px;
}
#nav ul li:nth-child(2):hover {
  background-image: url(../img/top/nav.jpg);
  background-position: -242px -144px;
  width: 240px;
  height: 72px;
}
#nav ul li:nth-child(3) {
  background-image: url(../img/top/nav.jpg);
  background-position: 0px -216px;
  width: 240px;
  height: 72px;
}
#nav ul li:nth-child(3):hover {
  background-image: url(../img/top/nav.jpg);
  background-position: -240px -216px;
  width: 240px;
  height: 72px;
}
#nav ul li:nth-child(4) {
  background-image: url(../img/top/nav.jpg);
  background-position: 0px 0px;
  width: 242px;
  height: 72px;
}
#nav ul li:nth-child(4):hover {
  background-image: url(../img/top/nav.jpg);
  background-position: 0px -72px;
  width: 242px;
  height: 72px;
}

/* Sec
----------------------------------------------------------*/
.sec {
  color: #e3c9b6;
  background: url(../img/common/top_bg.jpg) center 35px no-repeat, #342621 url(../img/common/top_bg_repeat.jpg) center 35px repeat-x;
  -pie-background: url(/special/rebellion/img/common/top_bg.jpg) center 35px no-repeat, url(/special/rebellion/img/common/top_bg_repeat.jpg) center 35px repeat-x;
  behavior: url(PIE.htc);
}
.sec #sns {
  top: 6px;
  left: 260px;
  margin-left: 0;
}
.sec #header {
  width: 960px;
  margin: 0 auto;
  height: 173px;
  position: relative;
}
.sec #header #nav {
  width: 1280px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -640px;
  z-index: 1000;
  background: url(../img/common/sec_nav_bg.png) center top no-repeat;
}
.sec #header #nav #navTitle {
  background-image: url(../img/common/sec_nav.png);
  background-position: 0px 0px;
  width: 266px;
  height: 103px;
  text-indent: -9999px;
  position: relative;
  left: 150px;
  float: left;
  display: block;
}
.sec #header #nav #navTitle:hover {
  background-image: url(../img/common/sec_nav.png);
  background-position: 0px -103px;
  width: 266px;
  height: 103px;
}
.sec #header #nav ul {
  width: 714px;
  position: absolute;
  top: 10px;
  right: 155px;
}
.sec #header #nav li {
  text-indent: -9999px;
  display: inline-block;
  margin-left: -5px;
}
.sec #header #nav li:first-child {
  background-image: url(../img/common/sec_nav.png);
  background-position: -266px 0px;
  width: 212px;
  height: 71px;
  margin-left: 0;
}
.sec #header #nav li:first-child:hover {
  background-image: url(../img/common/sec_nav.png);
  background-position: -266px -71px;
  width: 212px;
  height: 71px;
}
.sec #header #nav li:nth-child(2) {
  background-image: url(../img/common/sec_nav.png);
  background-position: 0px -206px;
  width: 203px;
  height: 71px;
}
.sec #header #nav li:nth-child(2):hover {
  background-image: url(../img/common/sec_nav.png);
  background-position: -203px -206px;
  width: 203px;
  height: 71px;
}
.sec #header #nav li:nth-child(3) {
  background-image: url(../img/common/sec_nav.png);
  background-position: -356px -277px;
  width: 119px;
  height: 71px;
}
.sec #header #nav li:nth-child(3):hover {
  background-image: url(../img/common/sec_nav.png);
  background-position: 0px -348px;
  width: 119px;
  height: 71px;
}
.sec #header #nav li:nth-child(4) {
  background-image: url(../img/common/sec_nav.png);
  background-position: 0px -277px;
  width: 178px;
  height: 71px;
}
.sec #header #nav li:nth-child(4):hover {
  background-image: url(../img/common/sec_nav.png);
  background-position: -178px -277px;
  width: 178px;
  height: 71px;
}
.sec #header #nav #navChild {
  display: none;
  width: 170px;
  height: 94px;
  position: absolute;
  left: 2px;
  top: 66px;
  padding: 0 20px;
  background: url(../img/common/nav_child_bg.png) center top no-repeat;
}
.sec #header #nav #navChild li {
  top: 0;
  left: 0;
  background: none;
  width: 100%;
  height: auto;
  display: block;
  text-align: left;
  padding-left: 3px;
  text-indent: 0;
  background: url(../img/top/nav_child_listmark.png) center left no-repeat;
}
.sec #header #nav #navChild li a {
  display: inline-block;
}
.sec #header h1 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 65px;
}
.sec .section {
  width: 920px;
  margin: 0 auto;
  margin-bottom: 90px;
}
.sec .section h2 {
  background: url(../img/common/h2_bg.png) center top no-repeat;
  font-size: 27px;
  color: #f1dbc6;
  line-height: 58px;
  font-family: serif;
  text-align: center;
  font-weight: bold;
  height: 58px;
  width: 920px;
  margin: 0 auto 36px;
}
.sec .section h3 {
  background: url(../img/common/h3_bg.png) center top no-repeat;
  line-height: 57px;
  font-size: 22px;
  color: #fdd7bc;
  font-family: serif;
  font-weight: bold;
  padding: 3px 0 0 50px;
  margin-bottom: 10px;
}
.sec .section .inner {
  width: 860px;
  margin: 0 auto;
}

/* about
----------------------------------------------------------*/
#about #story {
  background: url(../img/about/story.png) center top no-repeat;
  text-indent: -9999px;
  height: 579px;
  width: 100%;
  margin-bottom: 30px;
}
#about #skill #skillList {
  background: url(../img/about/skill.jpg) center top no-repeat;
  height: 2004px;
  position: relative;
}
#about #skill #skillList div {
  position: absolute;
  width: 320px;
  text-indent: -9999px;
  height: 177px;
}
#about #skill #skillList div a {
  width: 100%;
  height: 100%;
  display: block;
}
#about #skill #skill01 {
  background-image: url(../img/about/skill.png);
  background-position: -320px 0px;
  width: 320px;
  height: 177px;
  top: 130px;
  left: 0;
}
#about #skill #skill01:hover {
  background-image: url(../img/about/skill.png);
  background-position: -640px 0px;
  width: 320px;
  height: 177px;
}
#about #skill #skill02 {
  background-image: url(../img/about/skill.png);
  background-position: 0px -177px;
  width: 320px;
  height: 177px;
  top: 445px;
  left: inherit;
  right: 0;
}
#about #skill #skill02:hover {
  background-image: url(../img/about/skill.png);
  background-position: -320px -177px;
  width: 320px;
  height: 177px;
}
#about #skill #skill03 {
  background-image: url(../img/about/skill.png);
  background-position: 0px -354px;
  width: 320px;
  height: 177px;
  top: 760px;
  left: 0;
}
#about #skill #skill03:hover {
  background-image: url(../img/about/skill.png);
  background-position: -320px -354px;
  width: 320px;
  height: 177px;
}
#about #skill #skill04 {
  background-image: url(../img/about/skill.png);
  background-position: 0px 0px;
  width: 320px;
  height: 177px;
  top: 1075px;
  left: inherit;
  right: 0;
}
#about #skill #skill04:hover {
  background-image: url(../img/about/skill.png);
  background-position: -640px -177px;
  width: 320px;
  height: 177px;
}
#about #skill #skill05 {
  background-image: url(../img/about/skill.png);
  background-position: -640px -354px;
  width: 320px;
  height: 177px;
  top: 1390px;
  left: 0;
}
#about #skill #skill05:hover {
  background-image: url(../img/about/skill.png);
  background-position: 0px -531px;
  width: 320px;
  height: 177px;
}
#about #skill #skill06 {
  background-image: url(../img/about/skill.png);
  background-position: -320px -531px;
  width: 320px;
  height: 177px;
  top: 1710px;
  left: inherit;
  right: 0;
}
#about #skill #skill06:hover {
  background-image: url(../img/about/skill.png);
  background-position: -640px -531px;
  width: 320px;
  height: 177px;
}
#about #skillTree .inner {
  position: relative;
  background: url(../img/about/skilltree.jpg) center top no-repeat;
  height: 557px;
}
#about #skillTree .skillName {
  position: absolute;
  cursor: pointer;
}
#about #skillTree .skillName:hover:before {
  content: '';
  display: block;
  background: #d6ac58;
  opacity: .5;
}
#about #skillTree .skillInfo {
  display: none;
  position: absolute;
  width: 360px;
  height: auto;
  background: #d6ac58;
  color: #342621;
  padding-bottom: 10px;
}
#about #skillTree .skillInfo h3 {
  font-size: 14px;
  background: #734b0b url(../img/common/h3_bg.png) center bottom no-repeat;
  color: #e3c9b6;
  font-family: sans-serif;
  padding: 10px 10px 15px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1;
}
#about #skillTree .skillInfo dl {
  overflow: hidden;
  padding: 0 10px;
  margin-bottom: 5px;
}
#about #skillTree .skillInfo dl dt {
  width: 20%;
  margin: 0 5px 0 0;
  padding: 3px 0;
  text-align: center;
  font-size: 13px;
  float: left;
  clear: left;
  line-height: 1;
  background: #b88f41;
  border-radius: 3px;
  behavior: url(PIE.htc);
}
#about #skillTree .skillInfo dl dd {
  padding: 1px 0 0 0;
  width: 77%;
  line-height: 1.3;
  margin: 0 0 10px 68px;
  font-size: 14px;
}
#about #skillTree .skillInfo dl dd.info {
  margin: 0 0 10px;
  width: 100%;
}
#about #skillTree .skillInfo p {
  font-size: 11px;
  padding: 0 10px;
}
#about #skillTree #richesCoin {
  width: 172px;
  height: 30px;
  left: 239px;
  top: 17px;
}
#about #skillTree #richesCoin .skillInfo {
  top: -13px;
  left: 181px;
}
#about #skillTree #richesCoin:hover:before {
  width: 172px;
  height: 30px;
}
#about #skillTree #richesCoin:hover .skillInfo {
  display: block;
}
#about #skillTree #fallinAngel {
  width: 172px;
  height: 40px;
  top: 272px;
  right: 23px;
}
#about #skillTree #fallinAngel .skillInfo {
  top: -15px;
  right: 177px;
}
#about #skillTree #fallinAngel:hover:before {
  width: 172px;
  height: 40px;
}
#about #skillTree #fallinAngel:hover .skillInfo {
  display: block;
}
#about #skillTree #shutterStorm {
  width: 172px;
  height: 40px;
  left: 239px;
  top: 362px;
}
#about #skillTree #shutterStorm .skillInfo {
  left: 181px;
  top: -262px;
}
#about #skillTree #shutterStorm:hover:before {
  width: 172px;
  height: 40px;
}
#about #skillTree #shutterStorm:hover .skillInfo {
  display: block;
}
#about #skillTree #mathSpiral {
  width: 172px;
  height: 40px;
  left: 239px;
  top: 211px;
}
#about #skillTree #mathSpiral .skillInfo {
  left: 185px;
  top: -20px;
}
#about #skillTree #mathSpiral:hover:before {
  width: 172px;
  height: 40px;
}
#about #skillTree #mathSpiral:hover .skillInfo {
  display: block;
}
#about #skillTree #eternalChain {
  width: 162px;
  height: 30px;
  left: 12px;
  top: 93px;
}
#about #skillTree #eternalChain .skillInfo {
  left: 180px;
  top: -10px;
}
#about #skillTree #eternalChain:hover:before {
  width: 162px;
  height: 30px;
}
#about #skillTree #eternalChain:hover .skillInfo {
  display: block;
}
#about #skillTree #howlingMain {
  width: 172px;
  height: 40px;
  left: 239px;
  top: 517px;
}
#about #skillTree #howlingMain .skillInfo {
  left: 181px;
  bottom: -40px;
}
#about #skillTree #howlingMain:hover:before {
  width: 172px;
  height: 40px;
}
#about #skillTree #howlingMain:hover .skillInfo {
  display: block;
}
#about #skillTree #fireRain {
  width: 172px;
  height: 40px;
  left: 239px;
  top: 452px;
}
#about #skillTree #fireRain .skillInfo {
  left: 202px;
  top: -180px;
}
#about #skillTree #fireRain:hover:before {
  width: 172px;
  height: 40px;
}
#about #skillTree #fireRain:hover .skillInfo {
  display: block;
}
#about #skillTree #flicker {
  width: 172px;
  height: 30px;
  left: 239px;
  top: 93px;
}
#about #skillTree #flicker .skillInfo {
  left: 183px;
  top: -20px;
}
#about #skillTree #flicker:hover:before {
  width: 172px;
  height: 30px;
}
#about #skillTree #flicker:hover .skillInfo {
  display: block;
}
#about #skillTree #fireDance {
  width: 172px;
  height: 40px;
  left: 239px;
  top: 271px;
}
#about #skillTree #fireDance .skillInfo {
  left: 181px;
  top: -15px;
}
#about #skillTree #fireDance:hover:before {
  width: 172px;
  height: 40px;
}
#about #skillTree #fireDance:hover .skillInfo {
  display: block;
}
#about #skillTree #vanishingBuster {
  width: 162px;
  height: 40px;
  left: 458px;
  top: 363px;
}
#about #skillTree #vanishingBuster .skillInfo {
  left: 178px;
  top: -15px;
}
#about #skillTree #vanishingBuster:hover:before {
  width: 162px;
  height: 40px;
}
#about #skillTree #vanishingBuster:hover .skillInfo {
  display: block;
}
#about #skillTree #antiMaterialBlast {
  width: 162px;
  height: 40px;
  left: 458px;
  top: 211px;
}
#about #skillTree #antiMaterialBlast .skillInfo {
  left: 178px;
  top: -15px;
}
#about #skillTree #antiMaterialBlast:hover:before {
  width: 162px;
  height: 40px;
}
#about #skillTree #antiMaterialBlast:hover .skillInfo {
  display: block;
}
#about #skillTree #quickDrawShot {
  width: 172px;
  height: 30px;
  left: 239px;
  top: 166px;
}
#about #skillTree #quickDrawShot .skillInfo {
  left: 183px;
  top: -20px;
}
#about #skillTree #quickDrawShot:hover:before {
  width: 172px;
  height: 30px;
}
#about #skillTree #quickDrawShot:hover .skillInfo {
  display: block;
}
#about #skillTree #dragonTail {
  width: 160px;
  height: 40px;
  left: 459px;
  top: 517px;
}
#about #skillTree #dragonTail .skillInfo {
  left: 181px;
  bottom: -40px;
}
#about #skillTree #dragonTail:hover:before {
  width: 160px;
  height: 40px;
}
#about #skillTree #dragonTail:hover .skillInfo {
  display: block;
}
#about #skillTree #roundTrip {
  width: 160px;
  height: 40px;
  left: 459px;
  top: 452px;
}
#about #skillTree #roundTrip .skillInfo {
  left: 181px;
  bottom: -80px;
}
#about #skillTree #roundTrip:hover:before {
  width: 160px;
  height: 40px;
}
#about #skillTree #roundTrip:hover .skillInfo {
  display: block;
}
#about #skillTree #heatBarrel {
  width: 150px;
  height: 30px;
  left: 491px;
  top: 52px;
}
#about #skillTree #heatBarrel .skillInfo {
  left: 171px;
  top: -20px;
}
#about #skillTree #heatBarrel:hover:before {
  width: 150px;
  height: 30px;
}
#about #skillTree #heatBarrel:hover .skillInfo {
  display: block;
}
#about #skillTree #slugShot {
  width: 172px;
  height: 40px;
  top: 363px;
  right: 23px;
}
#about #skillTree #slugShot .skillInfo {
  bottom: -150px;
  right: 177px;
}
#about #skillTree #slugShot:hover:before {
  width: 172px;
  height: 40px;
}
#about #skillTree #slugShot:hover .skillInfo {
  display: block;
}
#about #skillTree #hammerOfGod {
  width: 172px;
  height: 40px;
  top: 211px;
  right: 23px;
}
#about #skillTree #hammerOfGod .skillInfo {
  top: -15px;
  right: 177px;
}
#about #skillTree #hammerOfGod:hover:before {
  width: 172px;
  height: 40px;
}
#about #skillTree #hammerOfGod:hover .skillInfo {
  display: block;
}
#about #skillTree #crimsonMarker {
  width: 172px;
  height: 30px;
  left: 239px;
  top: 128px;
}
#about #skillTree #crimsonMarker .skillInfo {
  left: 183px;
  top: -20px;
}
#about #skillTree #crimsonMarker:hover:before {
  width: 172px;
  height: 30px;
}
#about #skillTree #crimsonMarker:hover .skillInfo {
  display: block;
}
#about #skillTree #platinumAlter {
  width: 150px;
  height: 30px;
  left: 491px;
  top: 17px;
}
#about #skillTree #platinumAlter .skillInfo {
  left: 171px;
  top: -20px;
}
#about #skillTree #platinumAlter:hover:before {
  width: 150px;
  height: 30px;
}
#about #skillTree #platinumAlter:hover .skillInfo {
  display: block;
}
#about #skillTree #boundTrap {
  width: 150px;
  height: 30px;
  left: 491px;
  top: 92px;
}
#about #skillTree #boundTrap .skillInfo {
  left: 171px;
  top: -20px;
}
#about #skillTree #boundTrap:hover:before {
  width: 150px;
  height: 30px;
}
#about #skillTree #boundTrap:hover .skillInfo {
  display: block;
}

/* gunslinger
----------------------------------------------------------*/
#gunslinger #header {
  margin-bottom: 50px;
}
#gunslinger #info {
  color: #f7ebd3;
  font-size: 20px;
}
#gunslinger #skillList {
  background: url(../img/about/gunslinger/skill.jpg) center top no-repeat;
  height: 514px;
  position: relative;
}
#gunslinger #npc img {
  display: block;
  margin: 0 auto;
}
#gunslinger #npc table th {
  width: 50%;
}
#gunslinger table {
  margin-bottom: 10px;
}
#gunslinger table thead th {
  text-align: center;
}
#gunslinger table tbody th {
  border: 1px solid #18110d;
  border-bottom: 1px solid #271E18;
}
#gunslinger table tbody td {
  border-left: 1px solid #271E18;
}
#gunslinger h4 {
  font-size: 16px;
  color: #C5A792;
  line-height: inherit;
  padding: 15px 0 0;
}
#gunslinger .attention {
  font-size: 13px;
  color: #e3c9b6;
  width: 100%;
  margin-bottom: 20px;
}
#gunslinger .inner {
  margin-bottom: 40px;
}

/* other
----------------------------------------------------------*/
#other table {
  margin-top: 10px;
}
#other table tbody th {
  border-bottom: 1px solid #271E18;
}
#other table tbody td {
  border: 1px solid #18110d;
}
#other table tbody .item {
  width: 70px;
  padding: 5px;
}
#other #header {
  margin-bottom: 50px;
}
#other .col2 .main, #other .col2 .sub {
  margin-bottom: 0;
}
#other #new a {
  display: block;
  margin: 30px auto 0;
  text-align: center;
}
#other #new .inner {
  margin-bottom: 40px;
}

/* avenger
----------------------------------------------------------*/
#avenger #header {
  margin-bottom: 50px;
}
#avenger #about .main {
  color: #f7ebd3;
  font-size: 20px;
  margin-bottom: 0;
  width: 63%;
}
#avenger .col2 .sub {
  margin-bottom: 0;
}
#avenger #getSample {
  background: url(../img/avenger/get_bg.jpg) center top no-repeat;
}
#avenger #service {
  text-indent: -9999px;
  background: url(../img/avenger/get_img03.png) center 26px no-repeat;
  height: 449px;
  width: 866px;
  margin: 0 auto;
}
#avenger #service.end {
  background: url(../img/avenger/get_img03_end.png) center 26px no-repeat;
}
#avenger #change {
  margin-bottom: 80px;
}
#avenger #change a {
  text-align: center;
  display: block;
}
#avenger #change table tbody th {
  text-align: left;
  width: 40%;
  border-right: 2px solid #342626;
  background: none;
  padding: 10px 45px;
}
#avenger #change table tbody td {
  width: 35%;
  border-left: 1px solid #342626;
  padding: 10px 45px;
}
#avenger #change .inner {
  margin-bottom: 20px;
}
#avenger #attention li {
  background: url(../img/avenger/listmark.png) left 5px no-repeat;
  padding-left: 20px;
  margin-bottom: 5px;
  font-size: 15px;
}

/* data
----------------------------------------------------------*/
#data .section h3 {
  padding-left: 80px;
}
#data #tabMenu {
  width: 857px;
  margin: 0 auto;
  height: 114px;
  padding: 0 22px;
  background: url(../img/data/tab_bg.png) center top no-repeat;
}
#data #tabMenu li {
  top: 16px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-indent: -9999px;
  margin-left: -5px;
}
#data #tabMenu li:first-child {
  background-image: url(../img/data/tab_menu.jpg);
  background-position: 0px 0px;
  width: 214px;
  height: 75px;
  margin-left: 0;
}
#data #tabMenu li:first-child:hover, #data #tabMenu li:first-child.active {
  background-image: url(../img/data/tab_menu.jpg);
  background-position: 0px -75px;
  width: 214px;
  height: 75px;
}
#data #tabMenu li:nth-child(2) {
  background-image: url(../img/data/tab_menu.jpg);
  background-position: -214px 0px;
  width: 214px;
  height: 75px;
}
#data #tabMenu li:nth-child(2):hover, #data #tabMenu li:nth-child(2).active {
  background-image: url(../img/data/tab_menu.jpg);
  background-position: -214px -75px;
  width: 214px;
  height: 75px;
}
#data #tabMenu li:nth-child(3) {
  background-image: url(../img/data/tab_menu.jpg);
  background-position: 0px -150px;
  width: 214px;
  height: 75px;
}
#data #tabMenu li:nth-child(3):hover, #data #tabMenu li:nth-child(3).active {
  background-image: url(../img/data/tab_menu.jpg);
  background-position: -214px -150px;
  width: 214px;
  height: 75px;
}
#data #tabMenu li:nth-child(4) {
  background-image: url(../img/data/tab_menu.jpg);
  background-position: 0px -225px;
  width: 214px;
  height: 75px;
}
#data #tabMenu li:nth-child(4):hover, #data #tabMenu li:nth-child(4).active {
  background-image: url(../img/data/tab_menu.jpg);
  background-position: -214px -225px;
  width: 214px;
  height: 75px;
}
#data #tabMenu .active {
  background: #fff;
}
#data #tabContents table {
  width: 860px;
  margin: 0 auto;
  margin-bottom: 30px;
}
#data .tab {
  display: none;
}
#data .tab.active {
  display: block;
}

/* download
----------------------------------------------------------*/
#download .section h3 {
  padding-left: 80px;
}
#download .textLink {
  background: #300508;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  padding: 9px 18px;
  text-decoration: none;
  behavior: url(PIE.htc);
  display: inline-block;
  margin: 0 auto;
}
#download .textLink span {
  font-size: 12px;
}
#download .comment {
  width: 757px;
  margin: 0 auto 20px;
  padding: 30px;
}
#download .comment h4 {
  text-align: center;
  margin-bottom: 10px;
}
#download .comment p {
  font-size: 15px;
}
#download #header {
  margin-bottom: 50px;
}
#download #musicInfo .sub {
  width: 320px;
  float: left;
  margin-right: 60px;
}
#download #musicInfo .main {
  width: 55%;
  margin-right: 0;
}
#download #musicInfo .main a {
  text-align: center;
  display: block;
  margin: 0 auto;
}
#download #musicInfo .main .textLink {
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 70%;
}
#download #musicInfo .main .textLink:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ccab7d;
  display: inline-block;
  margin-left: 10px;
}
#download #musicInfo #pv {
  width: 320px;
  margin-bottom: 10px;
  text-indent: -9999px;
  height: 177px;
  background: url(../img/top/movie.png) center top no-repeat;
}
#download #musicInfo #pv:hover {
  background: url(../img/top/movie_over.png) center top no-repeat;
}
#download #musicInfo #pv a {
  width: 100%;
  height: 100%;
  display: block;
}
#download #musicInfo #attention {
  padding-top: 30px;
  margin-bottom: 20px;
}
#download #musicInfo #attention li {
  background: url(../img/download/listmark.png) left 5px no-repeat;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.3;
  color: #c8a78f;
}
#download #music .profile p {
  font-size: 18px;
  margin-bottom: 40px;
}
#download #music .profile.inner {
  width: 820px;
  padding: 0 20px;
}
#download #music .profile .main {
  width: 74%;
  margin-bottom: 5px;
}
#download #music .profile .sub {
  margin-bottom: 5px;
}
#download #music .profile .sub img {
  margin-bottom: 10px;
}
#download #music .comment {
  height: 264px;
  background: url(../img/download/comment_bg.png) center top no-repeat;
}
#download #music .comment p {
  font-size: 15px;
}
#download #wallpaper p {
  font-size: 18px;
}
#download #wallpaper .textLink {
  padding: 2px 18px;
  margin: 0 0 0 15px;
  position: relative;
  bottom: 1px;
}
#download #wallpaper .inner {
  width: 820px;
  padding: 0 20px;
  margin-bottom: 40px;
}
#download #wallpaper .main {
  width: 57%;
  margin-bottom: 0;
}
#download #wallpaper .sub {
  margin-bottom: 0;
}
#download #wallpaper .sub li {
  line-height: 0;
}
#download #wallpaper .comment {
  height: 104px;
  background: url(../img/download/wallpaper_comment_bg.png) center top no-repeat;
}
#download #wallpaper .comment p {
  font-size: 15px;
}
#download #wallpaper #wallpaper01 {
  background: url(../img/download/line.png) center bottom no-repeat;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

/* scrapfile
----------------------------------------------------------*/
#scrapfile .banner {
  text-align: center;
  display: block;
}
#scrapfile #scrapfileNav {
  width: 856px;
  margin: 0 auto;
  height: 114px;
  padding: 0 22px;
  background: url(../img/scrapfile/scrapfilenav_bg.png) center top no-repeat;
}
#scrapfile #scrapfileNav li {
  top: 17px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-indent: -9999px;
}
#scrapfile #scrapfileNav li:first-child {
  background-image: url(../img/scrapfile/scrapfileNav.jpg);
  background-position: 0px 0px;
  width: 429px;
  height: 75px;
}
#scrapfile #scrapfileNav li:first-child:hover, #scrapfile #scrapfileNav li:first-child.active {
  background-image: url(../img/scrapfile/scrapfileNav.jpg);
  background-position: 0px -75px;
  width: 429px;
  height: 75px;
}
#scrapfile #scrapfileNav li:nth-child(2) {
  background-image: url(../img/scrapfile/scrapfileNav.jpg);
  background-position: 0px -150px;
  width: 427px;
  height: 75px;
  margin-left: -6px;
}
#scrapfile #scrapfileNav li:nth-child(2):hover, #scrapfile #scrapfileNav li:nth-child(2).active {
  background-image: url(../img/scrapfile/scrapfileNav.jpg);
  background-position: 0px -225px;
  width: 427px;
  height: 75px;
}
#scrapfile #scrapfileNav li a {
  display: block;
  height: 100%;
}
#scrapfile #info .main {
  width: 351px;
  height: 314px;
  background: url(../img/scrapfile/info_bg.png) left top no-repeat;
  padding: 60px 30px 0 140px;
  position: relative;
}
#scrapfile #info .main p {
  font-size: 13px;
  margin-bottom: 13px;
}
#scrapfile #info .main img {
  position: absolute;
  top: 85px;
  left: 20px;
}
#scrapfile #info #pv {
  width: 320px;
  margin: 0 auto 20px;
  text-indent: -9999px;
  height: 177px;
  background: url(../img/scrapfile/mov.png) center top no-repeat;
}
#scrapfile #info #pv:hover {
  background: url(../img/scrapfile/mov_over.png) center top no-repeat;
}
#scrapfile #info #pv a {
  width: 100%;
  height: 100%;
  display: block;
}
#scrapfile #status img {
  margin-bottom: 20px;
}
#scrapfile #status p {
  font-size: 12px;
  position: absolute;
  top: 280px;
  left: 20px;
}
#scrapfile #status table a {
  font-size: 14px;
  color: #B17D5D;
}
#scrapfile #status table tbody th {
  border-bottom: 1px solid #271E18;
}
#scrapfile #status table tbody td {
  border: 1px solid #18110d;
}
#scrapfile #comment {
  width: 789px;
  margin: 0 auto;
  margin: 30px auto 30px;
  height: 304px;
  padding: 40px;
  background: url(../img/scrapfile/comment_bg.png) center top no-repeat;
}
#scrapfile #comment p {
  font-size: 13px;
  margin-bottom: 13px;
}
#scrapfile #comment p b {
  font-size: 15px;
  color: #ff6c00;
  font-weight: normal;
}
#scrapfile #guidance {
  width: 916px;
  margin: 0 auto;
  height: 1155px;
  text-indent: -9999px;
  background: url(../img/scrapfile/guidance.png) center top no-repeat;
}
#scrapfile #guidance h3 {
  background: none;
}
#scrapfile.advanced #info .main {
  height: 329px;
  padding-top: 15px;
}
#scrapfile.advanced #info #pv {
  background: url(../img/scrapfile/advanced/mov.png) center top no-repeat;
}
#scrapfile.advanced #info #pv:hover {
  background: url(../img/scrapfile/advanced/mov_over.png) center top no-repeat;
}
