/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
@import url(http://fonts.googleapis.com/css?family=Michroma);
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 67, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
/* line 24, ../scss/breakpoints/_481up.scss */
.bandImage {
  top: 0;
}

/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
/* line 35, ../scss/breakpoints/_481up.scss */
.menu {
  /* end .menu ul */
}
/* line 36, ../scss/breakpoints/_481up.scss */
.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 37, ../scss/breakpoints/_481up.scss */
.menu ul li {
  /*
  plan your menus and drop-downs wisely.
  */
}
/* line 38, ../scss/breakpoints/_481up.scss */
.menu ul li a {
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
/* line 83, ../scss/breakpoints/_481up.scss */
.entry-content {
  /* at this larger size, we can start to align images */
}
/* line 86, ../scss/breakpoints/_481up.scss */
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
/* line 91, ../scss/breakpoints/_481up.scss */
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
/* line 96, ../scss/breakpoints/_481up.scss */
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

/* end .entry-content */
/* line 105, ../scss/breakpoints/_481up.scss */
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

/* line 109, ../scss/breakpoints/_481up.scss */
h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/*********************
PAGES STYLES
*********************/
/* line 141, ../scss/breakpoints/_481up.scss */
.pagettl {
  margin-left: -400px;
}
/* line 143, ../scss/breakpoints/_481up.scss */
.pagettl img {
  width: 800px;
}

/* line 147, ../scss/breakpoints/_481up.scss */
.home, .page-template, .single-story, .single-post, .category, .single-music, .single-blu-ray-dvd, .parent-pageid-235, .parent-pageid-263, .archive {
  background-size: 1000px auto;
}

/* line 150, ../scss/breakpoints/_481up.scss */
.yt-container {
  height: 300px;
}

/* line 154, ../scss/breakpoints/_481up.scss */
.block-item section {
  padding: 1em;
}

/*top*/
/* line 160, ../scss/breakpoints/_481up.scss */
.home {
  background-size: 100px auto;
}
/* line 164, ../scss/breakpoints/_481up.scss */
.home header h1 {
  height: 42px;
  width: 245px;
}
/* line 168, ../scss/breakpoints/_481up.scss */
.home header p {
  top: 38px;
  width: 204px;
  height: 49px;
}
/* line 173, ../scss/breakpoints/_481up.scss */
.home header .twBtn, .home header .ytBtn {
  top: 20px;
}

/*INTRODUCTION*/
/* line 182, ../scss/breakpoints/_481up.scss */
.page-template-page-intro article {
  padding: 24px;
}
/* line 186, ../scss/breakpoints/_481up.scss */
.page-template-page-intro h2 {
  font-size: 18px;
  border-bottom: 1px solid #00ebf2;
}

/*STORY*/
/* line 194, ../scss/breakpoints/_481up.scss */
.single-story .entry-content img {
  width: 32%;
}

/*CHARACTER*/
/* line 202, ../scss/breakpoints/_481up.scss */
.page-template-page-chara .bandlist a {
  margin: -20px;
  width: 33%;
}

/* line 209, ../scss/breakpoints/_481up.scss */
.block-chara {
  height: 588px;
}
/* line 211, ../scss/breakpoints/_481up.scss */
.block-chara .chara-name {
  width: 760px;
  z-index: 100;
  left: auto;
  right: -40px;
  margin-left: -450px;
}
/* line 218, ../scss/breakpoints/_481up.scss */
.block-chara .chara-img {
  top: 60px;
  left: 43%;
  margin-left: -400px;
  width: 550px;
  z-index: 200;
}
/* line 225, ../scss/breakpoints/_481up.scss */
.block-chara .chara-img_c {
  top: 200px;
  left: 50%;
  margin-left: -270px;
  width: 300px;
}
/* line 231, ../scss/breakpoints/_481up.scss */
.block-chara .chara-prof {
  position: relative;
  margin: 220px 0 0 48%;
}
/* line 235, ../scss/breakpoints/_481up.scss */
.block-chara .btn-chara {
  top: auto;
  left: 10px;
  bottom: 90px;
}
/* line 239, ../scss/breakpoints/_481up.scss */
.block-chara .btn-chara img {
  width: 80px;
  height: 80px;
}

/* line 246, ../scss/breakpoints/_481up.scss */
.c0504 .chara-img {
  left: 50%;
}

/*MOVIE*/
/* line 253, ../scss/breakpoints/_481up.scss */
.page-template-page-movie iframe {
  height: 300px;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 20, ../scss/breakpoints/_768up.scss */
body {
  background-size: 688px 588px;
}

/* line 24, ../scss/breakpoints/_768up.scss */
.header {
  height: 48px;
}

/* line 28, ../scss/breakpoints/_768up.scss */
.bandImage {
  top: 0;
  left: 33%;
  width: 70%;
  position: fixed;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 38, ../scss/breakpoints/_768up.scss */
.wrap {
  width: 760px;
}

/* line 41, ../scss/breakpoints/_768up.scss */
.wrapHead {
  width: 760px;
}

/* line 45, ../scss/breakpoints/_768up.scss */
.post-categories {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.5em;
}

/*********************
HEADER STYLES
*********************/
/* line 63, ../scss/breakpoints/_768up.scss */
.header .mnBtn {
  display: none;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 74, ../scss/breakpoints/_768up.scss */
.nav {
  width: auto;
  height: auto;
  background-color: transparent;
  border: 0;
  display: block !important;
  padding: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 81, ../scss/breakpoints/_768up.scss */
.nav ul {
  margin-top: 0;
  height: 48px;
}
/* line 86, ../scss/breakpoints/_768up.scss */
.nav li {
  float: left;
  position: relative;
  padding: 0;
  font-size: 0.8em;
  height: 48px;
  border: 0;
  /*
  plan your menus and drop-downs wisely.
  */
  /* showing sub-menus */
}
/* line 93, ../scss/breakpoints/_768up.scss */
.nav li:first-child {
  border: 0;
}
/* line 96, ../scss/breakpoints/_768up.scss */
.nav li a {
  border-bottom: 0;
  height: 48px;
  padding: 16px 6px 0;
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}
/* line 100, ../scss/breakpoints/_768up.scss */
.nav li a:after {
  content: '';
}
/* line 117, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu,
.nav li ul.children {
  margin-top: 0;
  border: 1px solid #313131;
  border-top: 0;
  position: absolute;
  visibility: hidden;
  z-index: 8999;
  /* highlight sub-menu current page */
}
/* line 126, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li,
.nav li ul.children li {
  /*
  if you need to go deeper, go nuts
  just remember deeper menus suck
  for usability. k, bai.
  */
}
/* line 128, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 180px;
  border-bottom: 1px solid #ccc;
}
/* line 145, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
  border-bottom: 0;
}
/* line 155, ../scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li ul,
.nav li ul.children li ul {
  top: 0;
  left: 100%;
}
/* line 170, ../scss/breakpoints/_768up.scss */
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}

/* end .nav */
/* line 186, ../scss/breakpoints/_768up.scss */
#menu-main {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.8em;
}
/* line 191, ../scss/breakpoints/_768up.scss */
#menu-main a:hover, #menu-main :focus {
  color: #00ebf2;
  background-color: #000;
}

/* line 197, ../scss/breakpoints/_768up.scss */
#menu-footer {
  font-size: 0.8em;
  margin: 10px 0;
  text-align: center;
}
/* line 201, ../scss/breakpoints/_768up.scss */
#menu-footer li {
  display: inline-block;
  float: none;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 219, ../scss/breakpoints/_768up.scss */
.widget {
  padding: 1em;
  margin: 0 0 1em;
}
/* line 224, ../scss/breakpoints/_768up.scss */
.widget ul li {
  margin-bottom: 0.75em;
  /* deep nesting */
}
/* line 231, ../scss/breakpoints/_768up.scss */
.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}

/* links widget */
/* meta widget */
/* pages widget */
/* recent-posts widget */
/* archives widget */
/* tag-cloud widget */
/* calendar widget */
/* category widget */
/* recent-comments widget */
/* search widget */
/* text widget */
/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
/* line 339, ../scss/breakpoints/_768up.scss */
.footer-links ul li {
  /*
  be careful with the depth of your menus.
  it's very rare to have multi-depth menus in
  the footer.
  */
}

/* end .footer-links */
/*********************
PAGES STYLES
*********************/
/* line 358, ../scss/breakpoints/_768up.scss */
.pagettl {
  margin-left: -500px;
}
/* line 360, ../scss/breakpoints/_768up.scss */
.pagettl img {
  width: 1000px;
}

/* line 364, ../scss/breakpoints/_768up.scss */
.home, .page-template, .single-story, .single-post, .category, .single-music, .single-blu-ray-dvd, .parent-pageid-235, .parent-pageid-263, .archive {
  background-size: 1200px auto;
}

/* line 367, ../scss/breakpoints/_768up.scss */
.yt-container {
  height: 400px;
}

/* line 371, ../scss/breakpoints/_768up.scss */
.single-story main, .page-template-page-music main, .single-music main, .single-blu-ray-dvd main, .page-template-page-music-info main, .page-template-page-bluraydvd-info main {
  float: right;
}

/*top*/
/* line 385, ../scss/breakpoints/_768up.scss */
.home {
  background-size: auto;
}
/* line 388, ../scss/breakpoints/_768up.scss */
.home header h1 {
  top: 10px;
  left: 20px;
  height: 56px;
  width: 330px;
}
/* line 394, ../scss/breakpoints/_768up.scss */
.home header p {
  width: 269px;
  height: 65px;
  top: 70px;
  left: 20px;
}
/* line 400, ../scss/breakpoints/_768up.scss */
.home header .twBtn, .home header .ytBtn {
  top: 32px;
}
/* line 404, ../scss/breakpoints/_768up.scss */
.home .leftArea {
  margin-top: 0;
}
/* line 406, ../scss/breakpoints/_768up.scss */
.home .leftArea .topBanner {
  margin-top: 0;
}
/* line 410, ../scss/breakpoints/_768up.scss */
.home #menu-main {
  font-size: 1em;
}
/* line 413, ../scss/breakpoints/_768up.scss */
.home .main_chara_wrap {
  margin-top: -2em;
  max-width: 808px;
  margin-left: auto;
  margin: auto;
  margin-top: -2em;
}
/* line 420, ../scss/breakpoints/_768up.scss */
.home .main_chara_wrap .main_chara {
  position: relative;
  width: 1252px;
  top: 10px;
  margin-left: -222px;
}

/*INTRODUCTION*/
/* line 432, ../scss/breakpoints/_768up.scss */
.page-template-page-intro h2 {
  font-size: 26px;
}
/* line 435, ../scss/breakpoints/_768up.scss */
.page-template-page-intro .txt-intro_pc {
  display: inline !important;
  padding: 24px;
}
/* line 438, ../scss/breakpoints/_768up.scss */
.page-template-page-intro .txt-intro_pc img {
  max-width: 730px;
}
/* line 442, ../scss/breakpoints/_768up.scss */
.page-template-page-intro .txt-intro_sp {
  display: none !important;
}
/* line 445, ../scss/breakpoints/_768up.scss */
.page-template-page-intro .txt-onair_pc {
  display: inline !important;
  padding: 24px;
}
/* line 448, ../scss/breakpoints/_768up.scss */
.page-template-page-intro .txt-onair_pc img {
  max-width: 666px;
}
/* line 452, ../scss/breakpoints/_768up.scss */
.page-template-page-intro .haishin {
  max-width: 636px;
  padding: 0;
}
/* line 456, ../scss/breakpoints/_768up.scss */
.page-template-page-intro .txt-onair_sp {
  display: none !important;
}

/*CHARACTER*/
/* line 463, ../scss/breakpoints/_768up.scss */
.band-name img {
  width: auto;
}

/* line 467, ../scss/breakpoints/_768up.scss */
.block-chara {
  height: 520px;
}
/* line 469, ../scss/breakpoints/_768up.scss */
.block-chara .chara-name {
  top: 30px;
  left: 50%;
  margin-left: -420px;
  width: 800px;
  z-index: 100;
}
/* line 476, ../scss/breakpoints/_768up.scss */
.block-chara .chara-img {
  top: 0;
  left: 40%;
  margin-left: -450px;
  width: 80%;
  z-index: 200;
}
/* line 483, ../scss/breakpoints/_768up.scss */
.block-chara .chara-img_c {
  top: 120px;
  left: 50%;
  margin-left: -380px;
  width: 340px;
}
/* line 489, ../scss/breakpoints/_768up.scss */
.block-chara .chara-prof {
  position: relative;
  margin: 240px 0 0 48%;
  background-color: transparent;
  width: auto;
}

/* line 497, ../scss/breakpoints/_768up.scss */
.c0504 .chara-img {
  top: 60px;
  left: 45%;
}

/*MOVIE*/
/* line 508, ../scss/breakpoints/_768up.scss */
.page-template-page-movie iframe {
  height: 180px;
}

/*MUSIC*/
/*Blu-ray DVD*/
/* line 520, ../scss/breakpoints/_768up.scss */
.page-template-page-bluraydvd .information, .single-blu-ray-dvd .information, .page-template-page-bluraydvd-info .information {
  clear: none !important;
}

/* SHORT ANIMATION */
/* line 528, ../scss/breakpoints/_768up.scss */
#wrap-short {
  background-size: auto;
}
/* line 530, ../scss/breakpoints/_768up.scss */
#wrap-short #short-header {
  top: 0;
  bottom: auto;
  background-color: transparent;
  padding: 0;
}
/* line 535, ../scss/breakpoints/_768up.scss */
#wrap-short #short-header li {
  border-radius: 0 0 20px 20px;
}
/* line 537, ../scss/breakpoints/_768up.scss */
#wrap-short #short-header li a {
  background-position: center 16px;
  background-size: auto 33px;
}
/* line 544, ../scss/breakpoints/_768up.scss */
#wrap-short #short-main {
  max-height: 824px;
}
/* line 549, ../scss/breakpoints/_768up.scss */
#wrap-short #short-main .short-main-backtotop {
  width: 190px;
  left: 50%;
  top: 15px;
  margin-left: -489px;
}
/* line 555, ../scss/breakpoints/_768up.scss */
#wrap-short #short-main .short-main-pic {
  left: 0;
  top: 221px;
  width: 100%;
}
/* line 559, ../scss/breakpoints/_768up.scss */
#wrap-short #short-main .short-main-pic img {
  max-width: 690px;
  margin-left: 0;
}
/* line 564, ../scss/breakpoints/_768up.scss */
#wrap-short #short-main .short-main-logo {
  top: 81px;
}
/* line 566, ../scss/breakpoints/_768up.scss */
#wrap-short #short-main .short-main-logo img {
  width: 655px;
  margin-left: -30px;
}
/* line 572, ../scss/breakpoints/_768up.scss */
#wrap-short #short-main .short-main-tv {
  position: absolute;
  width: 100%;
  top: 438px;
}
/* line 576, ../scss/breakpoints/_768up.scss */
#wrap-short #short-main .short-main-tv img {
  width: 444px;
}
/* line 582, ../scss/breakpoints/_768up.scss */
#wrap-short #introduction h2 {
  padding-top: 25px;
}

/* line 588, ../scss/breakpoints/_768up.scss */
#short-footer {
  background-size: 200px;
  padding-top: 30px;
}
/* line 592, ../scss/breakpoints/_768up.scss */
#short-footer #page-top {
  margin-bottom: 20px;
}
/* line 594, ../scss/breakpoints/_768up.scss */
#short-footer #page-top:after {
  padding-top: 115px;
}
/* line 597, ../scss/breakpoints/_768up.scss */
#short-footer #page-top img {
  margin-left: -60px;
}
/* line 601, ../scss/breakpoints/_768up.scss */
#short-footer nav ul {
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
}
/* line 605, ../scss/breakpoints/_768up.scss */
#short-footer nav ul li {
  display: inline-block;
  margin: 0 8.5px;
}
/* line 608, ../scss/breakpoints/_768up.scss */
#short-footer nav ul li img {
  width: auto;
  height: 21.5px;
}
/* line 615, ../scss/breakpoints/_768up.scss */
#short-footer .footerBanner {
  max-width: 636px;
  margin-bottom: 40px;
}
/* line 618, ../scss/breakpoints/_768up.scss */
#short-footer .footerBanner ul {
  margin: 0;
}
/* line 622, ../scss/breakpoints/_768up.scss */
#short-footer .footerBanner li {
  margin-bottom: 10px;
}
/* line 627, ../scss/breakpoints/_768up.scss */
#short-footer #short-footer-bottom {
  min-height: 84px;
}
/* line 631, ../scss/breakpoints/_768up.scss */
#short-footer #short-footer-bottom .footerButton {
  float: right;
  margin-top: 22px;
  margin-left: 20px;
  margin-right: 0;
}
/* line 636, ../scss/breakpoints/_768up.scss */
#short-footer #short-footer-bottom .footerButton .wsbl_facebook_like {
  position: relative;
  left: 0;
}
/* line 641, ../scss/breakpoints/_768up.scss */
#short-footer #short-footer-bottom .copyright {
  float: left;
  font-size: 12px;
  padding-top: 17px;
}
/* line 647, ../scss/breakpoints/_768up.scss */
#short-footer #short-footer-bottom .twBtn,
#short-footer #short-footer-bottom .ytBtn {
  margin-right: 0;
  margin-left: 6px;
}
/* line 651, ../scss/breakpoints/_768up.scss */
#short-footer #short-footer-bottom .twBtn img,
#short-footer #short-footer-bottom .ytBtn img {
  width: 42px;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
/* line 12, ../scss/breakpoints/_1030up.scss */
.wrap {
  width: 1040px;
}

/* line 15, ../scss/breakpoints/_1030up.scss */
.wrapHead {
  width: 1040px;
}

/* line 18, ../scss/breakpoints/_1030up.scss */
.pagettl {
  margin-left: -750px;
}
/* line 20, ../scss/breakpoints/_1030up.scss */
.pagettl img {
  width: 1500px;
}

/* line 24, ../scss/breakpoints/_1030up.scss */
#menu-main {
  font-size: 0.9em;
}
/* line 26, ../scss/breakpoints/_1030up.scss */
#menu-main li a {
  padding: 14px 8px 0;
}

/* line 30, ../scss/breakpoints/_1030up.scss */
.home, .page-template, .single-story, .single-post, .category, .single-music, .single-blu-ray-dvd, .parent-pageid-235, .parent-pageid-263, .archive {
  background-size: 1500px auto;
  background-position: center center;
}

/*top*/
/* line 36, ../scss/breakpoints/_1030up.scss */
.home {
  background-position: top center;
  background-size: auto;
}
/* line 40, ../scss/breakpoints/_1030up.scss */
.home header .twBtn {
  right: 20px;
}
/* line 43, ../scss/breakpoints/_1030up.scss */
.home header .ytBtn {
  right: 60px;
}
/* line 48, ../scss/breakpoints/_1030up.scss */
.home .leftArea {
  position: absolute;
  float: left;
  left: 10px;
  top: 220px;
  text-align: left;
  margin-top: -50px;
}
/* line 55, ../scss/breakpoints/_1030up.scss */
.home .leftArea #menu-main {
  left: -13px;
}
/* line 59, ../scss/breakpoints/_1030up.scss */
.home .rightArea {
  position: absolute;
  float: right;
  right: 10px;
  top: 60px;
  width: 25%;
  margin-bottom: 10px;
}
/* line 67, ../scss/breakpoints/_1030up.scss */
.home .rightArea .twitterArea iframe {
  max-height: 380px;
}
/* line 74, ../scss/breakpoints/_1030up.scss */
.home .wrap {
  width: 100%;
}
/* line 77, ../scss/breakpoints/_1030up.scss */
.home .wrapHead {
  width: 100%;
}
/* line 80, ../scss/breakpoints/_1030up.scss */
.home .main_chara_wrap {
  margin-top: -2em;
  min-height: 814px;
  min-height: 1064px;
}
/* line 85, ../scss/breakpoints/_1030up.scss */
.home .main_chara_g {
  width: 640px;
  margin-left: -20px;
}
/* line 90, ../scss/breakpoints/_1030up.scss */
.home #content {
  margin-bottom: -90px;
}

/*CHARACTER*/
/* line 96, ../scss/breakpoints/_1030up.scss */
.page-template-page-intro, .parent-pageid-235, .parent-pageid-263 {
  background-position: top center;
}

/* line 99, ../scss/breakpoints/_1030up.scss */
.block-chara {
  height: 588px;
}
/* line 101, ../scss/breakpoints/_1030up.scss */
.block-chara .chara-name {
  top: 50px;
  width: auto;
  margin-left: -520px;
}
/* line 106, ../scss/breakpoints/_1030up.scss */
.block-chara .chara-img {
  top: -40px;
  left: 40%;
  margin-left: -600px;
}
/* line 111, ../scss/breakpoints/_1030up.scss */
.block-chara .chara-img_c {
  top: 80px;
  left: 50%;
  margin-left: -450px;
  width: 400px;
}
/* line 117, ../scss/breakpoints/_1030up.scss */
.block-chara .chara-prof {
  margin: 280px 0 0 49%;
}
/* line 120, ../scss/breakpoints/_1030up.scss */
.block-chara .btn-chara {
  bottom: 106px;
}
/* line 122, ../scss/breakpoints/_1030up.scss */
.block-chara .btn-chara img {
  width: 96px;
  height: 96px;
}

/* line 129, ../scss/breakpoints/_1030up.scss */
.c0504 .chara-img {
  top: -75px;
}

/*MOVIE*/
/* line 136, ../scss/breakpoints/_1030up.scss */
.page-template-page-movie iframe {
  height: 168px;
}

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
