/* 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: 10px;
  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 {
  color: gray;
  min-height: 60px;
  text-align: center;
  padding-top: 50px;
}

#footer #copy {
  font-size: 11px;
  font-weight: bold;
  padding: 20px 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 30px;
}
table th, table td {
  padding: 5px;
}
table th {
  font-weight: bold;
  white-space: nowrap;
}
table thead th {
  text-align: left;
}
table .item {
  width: 130px;
  text-align: center;
  background: #fff;
}
table .item img {
  display: block;
  margin: 0 auto;
}

/*
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);
*/
/**
 * 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 {
  left: -5px;
  /*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: 20px;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(../img/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  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: #fff;
  text-indent: -9999px;
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 15px;
  outline: 0;
  border: 2px solid #e5a6b6;
  -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: #f2bdca;
}

/* 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: -16px;
  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: 840px;
  margin: 0 auto;
  position: relative;
  background: url(../img/inner_bg_bottom.png) center bottom no-repeat, url(../img/inner_bg_repeat.png) center repeat-y;
  -pie-background: url(/special/spring-arunafeltz2016/img/inner_bg_bottom.png) center bottom no-repeat, url(/special/spring-arunafeltz2016/img/inner_bg_repeat.png) center repeat-y;
  behavior: url(PIE.htc);
  padding: 35px 50px;
  margin-bottom: 40px;
}

.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;
}

.colTwo {
  overflow: hidden;
}
.colTwo .colL {
  width: 60%;
  float: left;
  margin-right: 20px;
}
.colTwo .colR {
  overflow: hidden;
}

.fixed {
  position: fixed !important;
  top: 0 !important;
}

.chara,
.decoration {
  position: absolute;
  z-index: 100;
}

/* common
----------------------------------------------------------*/
h2 {
  background: url(../img/h2_bg.png) center top no-repeat;
  height: 29px;
  text-align: center;
  padding: 40px;
}

#gungho .inner {
  background: none;
  padding: 0;
}

#pickup h2 {
  padding: 0;
}

/* TOP
----------------------------------------------------------*/
body {
  min-width: 960px;
  color: #5c564e;
  background: url(../img/bg.gif) repeat;
}

#top {
  height: 660px;
  position: relative;
  margin-bottom: 60px;
  background: url(../img/top.jpg) center top no-repeat, url(../img/top_bg_repeat.gif) repeat-x;
  -pie-background: url(/special/spring-arunafeltz2016/img/top.jpg) center top no-repeat, url(/special/spring-arunafeltz2016/img/top_bg_repeat.gif) repeat-x;
  behavior: url(PIE.htc);
}
#top h1 {
  text-align: center;
  position: relative;
  top: 262px;
}
#top #eventInfo {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -329px;
  width: 658px;
  height: 105px;
  text-align: center;
  padding-top: 15px;
  background: url(../img/eventinfo_bg.png) center top no-repeat;
}
#top #eventInfo ul {
  text-align: center;
  padding-top: 10px;
}
#top #eventInfo li {
  display: inline-block;
  width: 35px;
  cursor: pointer;
  position: relative;
  text-indent: -9999px;
}
#top #eventInfo li span {
  display: none;
  position: absolute;
  z-index: 1000;
  text-align: center;
  top: 45px;
  right: -25px;
  width: 200px;
  background: #fff;
  border: 2px solid #4A4126;
  border-radius: 3px;
  padding: 3px;
  color: #250C0C;
  font-size: 12px;
  text-indent: 0;
  text-align: left;
}
#top #eventInfo li span:after {
  border-bottom: 10px solid #4A4126;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  position: absolute;
  top: -10px;
  right: 35px;
  width: 0;
  height: 0;
}
#top #eventInfo li:hover span {
  display: block;
}
#top #eventInfo li:first-child {
  background-image: url(../img/sprite.png);
  background-position: -272px -161px;
  width: 31px;
  height: 41px;
}
#top #eventInfo li:nth-child(2) {
  background-image: url(../img/sprite.png);
  background-position: -333px -161px;
  width: 30px;
  height: 41px;
}
#top #eventInfo li:nth-child(3) {
  background-image: url(../img/sprite.png);
  background-position: -303px -161px;
  width: 30px;
  height: 41px;
}
#top #eventInfo li:nth-child(4) {
  background-image: url(../img/sprite.png);
  background-position: -272px -120px;
  width: 36px;
  height: 41px;
}
#top #eventInfo li:nth-child(5) {
  background-image: url(../img/sprite.png);
  background-position: -363px -161px;
  width: 30px;
  height: 41px;
}
#top #eventInfo li:nth-child(6) {
  background-image: url(../img/sprite.png);
  background-position: -393px -161px;
  width: 30px;
  height: 41px;
}
#top #eventInfo li:nth-child(7) {
  background-image: url(../img/sprite.png);
  background-position: -308px -120px;
  width: 32px;
  height: 40px;
}

/* Nav
----------------------------------------------------------*/
#nav {
  background: url(../img/nav_bg_repeat.png) repeat-x;
  z-index: 500;
  position: absolute;
  top: 685px;
  width: 100%;
}
#nav ul {
  position: relative;
  text-align: center;
}
#nav ul li {
  display: inline-block;
  margin-left: -6px;
  text-indent: -9999px;
}
#nav ul li a {
  width: 100%;
  height: 100%;
  display: block;
}
#nav ul li:first-child {
  background-image: url(../img/nav.gif);
  background-position: -214px -126px;
  width: 106px;
  height: 42px;
  margin-left: 0;
}
#nav ul li:first-child:hover {
  background-image: url(../img/nav.gif);
  background-position: -106px -168px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(2) {
  background-image: url(../img/nav.gif);
  background-position: -106px -84px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(2):hover {
  background-image: url(../img/nav.gif);
  background-position: -214px -84px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(3) {
  background-image: url(../img/nav.gif);
  background-position: 0px 0px;
  width: 107px;
  height: 42px;
}
#nav ul li:nth-child(3):hover {
  background-image: url(../img/nav.gif);
  background-position: 0px -42px;
  width: 107px;
  height: 42px;
}
#nav ul li:nth-child(4) {
  background-image: url(../img/nav.gif);
  background-position: 0px -126px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(4):hover {
  background-image: url(../img/nav.gif);
  background-position: -106px -126px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(5) {
  background-image: url(../img/nav.gif);
  background-position: 0px -168px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(5):hover {
  background-image: url(../img/nav.gif);
  background-position: 0px -84px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(6) {
  background-image: url(../img/nav.gif);
  background-position: -214px 0px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(6):hover {
  background-image: url(../img/nav.gif);
  background-position: -214px -42px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(7) {
  background-image: url(../img/nav.gif);
  background-position: -107px 0px;
  width: 107px;
  height: 42px;
}
#nav ul li:nth-child(7):hover {
  background-image: url(../img/nav.gif);
  background-position: -107px -42px;
  width: 107px;
  height: 42px;
}
#nav ul li:nth-child(8) {
  background-image: url(../img/nav.gif);
  background-position: -214px -168px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(8):hover {
  background-image: url(../img/nav.gif);
  background-position: 0px -210px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(9) {
  background-image: url(../img/nav.gif);
  background-position: -106px -210px;
  width: 106px;
  height: 42px;
}
#nav ul li:nth-child(9):hover {
  background-image: url(../img/nav.gif);
  background-position: -212px -210px;
  width: 106px;
  height: 42px;
}

/* about
----------------------------------------------------------*/
#about .inner {
  height: 540px;
  overflow: hidden;
}
#about #point {
  position: absolute;
  top: 0;
  height: 250px;
  z-index: 100;
  background: url(../img/about_point_bg.jpg) center top no-repeat;
}
#about #point h3 {
  position: relative;
  left: 80px;
  top: -6px;
  line-height: 1;
}
#about #point p {
  width: 65%;
  position: relative;
  left: 37px;
}
#about #flow {
  background: url(../img/about_img01.jpg) center top no-repeat;
  height: 330px;
  position: relative;
  top: 210px;
  text-indent: -9999px;
}

/* start
----------------------------------------------------------*/
#start .inner img {
  margin: 0 auto;
  display: block;
}

/* step
----------------------------------------------------------*/
#step ol {
  height: 677px;
  background: url(../img/step_img01.jpg) center top no-repeat;
  text-indent: -9999px;
}

/* use
----------------------------------------------------------*/
#use h3 {
  height: 50px;
  padding-left: 68px;
  font-size: 23px;
  font-weight: bold;
  color: #73b1e1;
  background: url(../img/h3_bg.jpg) center left no-repeat;
}
#use h3 span {
  font-size: 30px;
}
#use p {
  font-size: 18px;
  width: 780px;
  margin: 0 auto;
}
#use a {
  text-align: center;
  margin: 0 auto;
  display: block;
}
#use .bx-pager-item a {
  margin: 0 3px;
}
#use #use01 {
  padding-bottom: 40px;
  margin-bottom: 20px;
  background: url(../img/line.gif) center bottom no-repeat;
}
#use #use01 img {
  margin: 0 auto;
  display: block;
}
#use #use01 table {
  background: url(../img/use01_table_bg.jpg) center top no-repeat;
  width: 777px;
  margin: 0 auto 30px;
  height: 213px;
  color: #5c564e;
  text-align: center;
}
#use #use01 table thead th {
  height: 50px;
  text-align: center;
}
#use #use01 table tbody th:first-child, #use #use01 table tbody td:first-child {
  width: 158px;
}
#use #use01 table tbody td:last-child {
  padding-right: 12px;
}
#use #use02 {
  padding-bottom: 40px;
  margin-bottom: 20px;
  background: url(../img/line.gif) center bottom no-repeat;
}
#use #use03 {
  margin-bottom: 40px;
}

/* hunt
----------------------------------------------------------*/
#hunt ol {
  text-indent: -9999px;
  background: url(../img/line.gif) center top no-repeat, url(../img/hunt_img01.jpg) center 20px no-repeat;
  -pie-background: url(/special/spring-arunafeltz2016/img/line.gif) center top no-repeat, url(/special/spring-arunafeltz2016/img/hunt_img01.jpg) center 20px no-repeat;
  behavior: url(PIE.htc);
  height: 994px;
}

#enchant {
  background: url(../img/enchant_bg.jpg) center top no-repeat;
  width: 778px;
  height: 479px;
  margin: 0 auto;
  padding: 0 17px 17px;
}
#enchant h3 {
  text-align: center;
  margin-bottom: 35px;
}
#enchant ul {
  text-indent: -9999px;
  width: 526px;
  height: 172px;
  margin: 0 auto;
  background: url(../img/enchant_point.png) center no-repeat;
}
#enchant p {
  width: 85%;
  padding-left: 17px;
}
#enchant .note {
  background: url(../img/enchant_note_bg.jpg) center top no-repeat;
  height: 73px;
  padding: 20px 24px;
  width: 730px;
  margin: 0 auto;
}
#enchant .note h4 {
  color: #e0708c;
  text-align: center;
}
#enchant .note p {
  width: 100%;
  padding-left: 0;
  font-size: 13px;
}

/* map
----------------------------------------------------------*/
#map .inner {
  height: 870px;
}
#map #npc {
  text-indent: -9999px;
  background: url(../img/map_npc.png) center top no-repeat;
  width: 880px;
  height: 534px;
  margin: 0 auto;
  position: absolute;
  top: 370px;
  left: 30px;
}

/* item
----------------------------------------------------------*/
#item table {
  background-color: #fff;
  border-top: 1px solid #dad0ac;
  border-left: 1px solid #dad0ac;
}
#item table th, #item table td {
  border-right: 1px solid #dad0ac;
  border-bottom: 1px solid #dad0ac;
}
#item table thead th {
  background-color: #f6f7de;
}
#item table tbody th {
  background-color: #fffff7;
}
#item table .thumb {
  background-color: #fff;
}
#item h3 {
  height: 50px;
  padding: 20px 0 0 68px;
  font-size: 23px;
  font-weight: bold;
  color: #73b1e1;
  background: url(../img/h3_bg.jpg) center left no-repeat;
}

/* story
----------------------------------------------------------*/
#story {
  background: url(../img/story_bg.jpg) center 53px no-repeat;
  height: 738px;
  margin-bottom: 40px;
}
#story h2 {
  background: url(../img/story_h2_bg.png) center top no-repeat;
}
#story .inner {
  background: none;
  text-indent: -9999px;
}

/* wallpaper
----------------------------------------------------------*/
#wallpaper .inner {
  width: 740px;
  padding: 35px 100px;
}
#wallpaper .thumb {
  width: 426px;
  float: left;
  margin: 0 30px 20px 0;
}
#wallpaper ul {
  float: right;
  position: relative;
  top: 30px;
}
#wallpaper ul li {
  margin-bottom: 20px;
  cursor: pointer;
  text-indent: -9999px;
}
#wallpaper ul li a {
  display: block;
}
#wallpaper ul li:first-child {
  background-image: url(../img/sprite.png);
  background-position: 0px 0px;
  width: 272px;
  height: 60px;
}
#wallpaper ul li:first-child:hover {
  background-image: url(../img/sprite.png);
  background-position: -272px -60px;
  width: 272px;
  height: 60px;
}
#wallpaper ul li:nth-child(2) {
  background-image: url(../img/sprite.png);
  background-position: 0px -60px;
  width: 272px;
  height: 60px;
}
#wallpaper ul li:nth-child(2):hover {
  background-image: url(../img/sprite.png);
  background-position: 0px -120px;
  width: 272px;
  height: 60px;
}
#wallpaper ul li:nth-child(3) {
  background-image: url(../img/sprite.png);
  background-position: 0px -180px;
  width: 272px;
  height: 60px;
}
#wallpaper ul li:nth-child(3):hover {
  background-image: url(../img/sprite.png);
  background-position: -272px 0px;
  width: 272px;
  height: 60px;
}
#wallpaper #illustrator {
  clear: both;
  padding: 50px 30px 0;
  background: url(../img/line.gif) center top no-repeat;
}
#wallpaper #illustrator h3 {
  width: 190px;
  float: left;
}
#wallpaper #illustrator p {
  overflow: hidden;
}
#wallpaper #illustrator #name {
  margin-bottom: 10px;
}
#wallpaper #illustrator #comment p {
  font-size: 14px;
}

/* attention
----------------------------------------------------------*/
#attention ul {
  width: 710px;
  margin: 0 auto;
}
#attention ul li {
  font-size: 13px;
  margin-bottom: 20px;
  padding-left: 20px;
  background: url(../img/attention_mark.gif) left 2px no-repeat;
}
