@charset "UTF-8";
/********************
タグの基本的な設定
********************/
/* line 8, sass/core_140509/_reset.scss */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 1rem;
  line-height: 1.0;
  /*文字サイズの自動調整を無効化しています*/
  -webkit-text-size-adjust: none;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、
section要素などをブロック要素へ変更しています*/
/* line 21, sass/core_140509/_reset.scss */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* line 27, sass/core_140509/_reset.scss */
h1, h2, h3, h4, h5,
p,
dd {
  margin: 0 0 1em 0;
  padding: 0;
}

/* line 31, sass/core_140509/_reset.scss */
dt {
  padding: 0;
}

/* line 36, sass/core_140509/_reset.scss */
p {
  line-height: 1.5em;
}

/* line 39, sass/core_140509/_reset.scss */
ul, ol {
  margin: 0 0 1em 0;
  padding: 0;
}

/* line 45, sass/core_140509/_reset.scss */
ol li,
ul li,
d, dd {
  line-height: 1.3em;
}

/* line 49, sass/core_140509/_reset.scss */
img {
  border: none;
}

/* line 53, sass/core_140509/_reset.scss */
h1 img, h2 img, h3 img, h4 img, h5 img {
  vertical-align: bottom;
}

/* line 59, sass/core_140509/_reset.scss */
table {
  border-collapse: collapse;
}

/* line 62, sass/core_140509/_reset.scss */
th, td {
  vertical-align: top;
  text-align: left;
  line-height: 1.5em;
}

/* line 68, sass/core_140509/_reset.scss */
a {
  text-decoration: none;
  /*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を
  親要素のベースラインに揃えるようにしています*/
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  /*ホバー、アクティブ時のアウトラインを消しています*/
}
/* line 81, sass/core_140509/_reset.scss */
a:hover, a:active {
  outline: 0;
}

/*引用符の表示が出ないようにしています*/
/* line 87, sass/core_140509/_reset.scss */
blockquote, q {
  quotes: none;
}

/*スタイリングを再指定しています*/
/* line 92, sass/core_140509/_reset.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 95, sass/core_140509/_reset.scss */
b, strong {
  font-weight: bold;
}

/* line 98, sass/core_140509/_reset.scss */
dfn {
  font-style: italic;
}

/*pre,code等のフォントを指定しています*/
/* line 103, sass/core_140509/_reset.scss */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/*pre-formatted textの読みやすさを改善しています*/
/* line 110, sass/core_140509/_reset.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* line 115, sass/core_140509/_reset.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 121, sass/core_140509/_reset.scss */
sup {
  top: -0.5em;
}

/* line 122, sass/core_140509/_reset.scss */
sub {
  bottom: -0.25em;
}

/*ins要素のデフォルトをセットし、
色を変える場合はここで変更できるようにしています*/
/* line 128, sass/core_140509/_reset.scss */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/*mark要素のデフォルトをセットし、
色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、
目立たせる際に使用するようです*/
/* line 138, sass/core_140509/_reset.scss */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
/* line 146, sass/core_140509/_reset.scss */
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、
下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
/* line 153, sass/core_140509/_reset.scss */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*
usage:
#hoge{
	@include inlineBlock;
}

*/
/* line 3, sass/core_140509/_base.scss */
body {
  color: white;
}

/* line 8, sass/core_140509/_base.scss */
.body-inner {
  width: 100%;
  position: relative;
  height: 100%;
  min-height: 100%;
}

/* line 16, sass/core_140509/_base.scss */
body > .body-inner {
  height: auto;
}

/* line 20, sass/core_140509/_base.scss */
.wrap {
  margin: auto;
  width: 100%;
}

/* line 5, sass/core_140509/_gridlayout.scss */
.row {
  margin-left: -20px;
  float: clear;
}
/* line 10, sass/core_140509/_gridlayout.scss */
.row [class*="span"] {
  float: left;
  margin-left: 20px;
}
/* line 15, sass/core_140509/_gridlayout.scss */
.row .span1 {
  width: 18.33333px;
}
/* line 18, sass/core_140509/_gridlayout.scss */
.row .span2 {
  width: 56.66667px;
}
/* line 21, sass/core_140509/_gridlayout.scss */
.row .span3 {
  width: 95.0px;
}
/* line 24, sass/core_140509/_gridlayout.scss */
.row .span4 {
  width: 133.33333px;
}
/* line 27, sass/core_140509/_gridlayout.scss */
.row .span5 {
  width: 171.66667px;
}
/* line 30, sass/core_140509/_gridlayout.scss */
.row .span6 {
  width: 210.0px;
}
/* line 33, sass/core_140509/_gridlayout.scss */
.row .span7 {
  width: 248.33333px;
}
/* line 36, sass/core_140509/_gridlayout.scss */
.row .span8 {
  width: 286.66667px;
}
/* line 39, sass/core_140509/_gridlayout.scss */
.row .span9 {
  width: 325.0px;
}
/* line 42, sass/core_140509/_gridlayout.scss */
.row .span10 {
  width: 363.33333px;
}
/* line 45, sass/core_140509/_gridlayout.scss */
.row .span11 {
  width: 401.66667px;
}
/* line 48, sass/core_140509/_gridlayout.scss */
.row .span12 {
  width: 440.0px;
}
/* line 51, sass/core_140509/_gridlayout.scss */
.row .span13 {
  width: 478.33333px;
}
/* line 54, sass/core_140509/_gridlayout.scss */
.row .span14 {
  width: 516.66667px;
}
/* line 57, sass/core_140509/_gridlayout.scss */
.row .span15 {
  width: 555.0px;
}
/* line 60, sass/core_140509/_gridlayout.scss */
.row .span16 {
  width: 593.33333px;
}
/* line 63, sass/core_140509/_gridlayout.scss */
.row .span17 {
  width: 631.66667px;
}
/* line 66, sass/core_140509/_gridlayout.scss */
.row .span18 {
  width: 670.0px;
}
/* line 69, sass/core_140509/_gridlayout.scss */
.row .span19 {
  width: 708.33333px;
}
/* line 72, sass/core_140509/_gridlayout.scss */
.row .span20 {
  width: 746.66667px;
}
/* line 75, sass/core_140509/_gridlayout.scss */
.row .span21 {
  width: 785.0px;
}
/* line 78, sass/core_140509/_gridlayout.scss */
.row .span22 {
  width: 823.33333px;
}
/* line 81, sass/core_140509/_gridlayout.scss */
.row .span23 {
  width: 861.66667px;
}
/* line 84, sass/core_140509/_gridlayout.scss */
.row .span24 {
  width: 900.0px;
}
/* line 89, sass/core_140509/_gridlayout.scss */
.row .offset1 {
  margin-left: 58.33333px;
}
/* line 92, sass/core_140509/_gridlayout.scss */
.row .offset2 {
  margin-left: 96.66667px;
}
/* line 95, sass/core_140509/_gridlayout.scss */
.row .offset3 {
  margin-left: 135px;
}
/* line 98, sass/core_140509/_gridlayout.scss */
.row .offset4 {
  margin-left: 173.33333px;
}
/* line 101, sass/core_140509/_gridlayout.scss */
.row .offset5 {
  margin-left: 211.66667px;
}
/* line 104, sass/core_140509/_gridlayout.scss */
.row .offset6 {
  margin-left: 250.0px;
}
/* line 107, sass/core_140509/_gridlayout.scss */
.row .offset7 {
  margin-left: 288.33333px;
}
/* line 110, sass/core_140509/_gridlayout.scss */
.row .offset8 {
  margin-left: 326.66667px;
}
/* line 113, sass/core_140509/_gridlayout.scss */
.row .offset9 {
  margin-left: 365.0px;
}
/* line 116, sass/core_140509/_gridlayout.scss */
.row .offset10 {
  margin-left: 403.33333px;
}
/* line 119, sass/core_140509/_gridlayout.scss */
.row .offset11 {
  margin-left: 441.66667px;
}
/* line 122, sass/core_140509/_gridlayout.scss */
.row .offset12 {
  margin-left: 480.0px;
}
/* line 125, sass/core_140509/_gridlayout.scss */
.row .offset13 {
  margin-left: 518.33333px;
}
/* line 128, sass/core_140509/_gridlayout.scss */
.row .offset14 {
  margin-left: 556.66667px;
}
/* line 131, sass/core_140509/_gridlayout.scss */
.row .offset15 {
  margin-left: 595.0px;
}
/* line 134, sass/core_140509/_gridlayout.scss */
.row .offset16 {
  margin-left: 633.33333px;
}
/* line 137, sass/core_140509/_gridlayout.scss */
.row .offset17 {
  margin-left: 671.66667px;
}
/* line 140, sass/core_140509/_gridlayout.scss */
.row .offset18 {
  margin-left: 710.0px;
}
/* line 143, sass/core_140509/_gridlayout.scss */
.row .offset19 {
  margin-left: 748.33333px;
}
/* line 146, sass/core_140509/_gridlayout.scss */
.row .offset20 {
  margin-left: 786.66667px;
}
/* line 149, sass/core_140509/_gridlayout.scss */
.row .offset21 {
  margin-left: 825.0px;
}
/* line 152, sass/core_140509/_gridlayout.scss */
.row .offset22 {
  margin-left: 863.33333px;
}
/* line 155, sass/core_140509/_gridlayout.scss */
.row .offset23 {
  margin-left: 901.66667px;
}

/* line 162, sass/core_140509/_gridlayout.scss */
.row-fluid {
  float: clear;
}
/* line 166, sass/core_140509/_gridlayout.scss */
.row-fluid [class*="span"] {
  float: left;
  margin-left: 4%;
}
/* line 171, sass/core_140509/_gridlayout.scss */
.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
/* line 178, sass/core_140509/_gridlayout.scss */
.row-fluid .span1 {
  width: 4.66667%;
}
/* line 181, sass/core_140509/_gridlayout.scss */
.row-fluid .span2 {
  width: 13.33333%;
}
/* line 184, sass/core_140509/_gridlayout.scss */
.row-fluid .span3 {
  width: 22.0%;
}
/* line 187, sass/core_140509/_gridlayout.scss */
.row-fluid .span4 {
  width: 30.66667%;
}
/* line 190, sass/core_140509/_gridlayout.scss */
.row-fluid .span5 {
  width: 39.33333%;
}
/* line 193, sass/core_140509/_gridlayout.scss */
.row-fluid .span6 {
  width: 48.0%;
}
/* line 196, sass/core_140509/_gridlayout.scss */
.row-fluid .span7 {
  width: 56.66667%;
}
/* line 199, sass/core_140509/_gridlayout.scss */
.row-fluid .span8 {
  width: 65.33333%;
}
/* line 202, sass/core_140509/_gridlayout.scss */
.row-fluid .span9 {
  width: 74.0%;
}
/* line 205, sass/core_140509/_gridlayout.scss */
.row-fluid .span10 {
  width: 82.66667%;
}
/* line 208, sass/core_140509/_gridlayout.scss */
.row-fluid .span11 {
  width: 91.33333%;
}
/* line 211, sass/core_140509/_gridlayout.scss */
.row-fluid .span12 {
  width: 100.0%;
}
/* line 214, sass/core_140509/_gridlayout.scss */
.row-fluid .span13 {
  width: 108.66667%;
}
/* line 217, sass/core_140509/_gridlayout.scss */
.row-fluid .span14 {
  width: 117.33333%;
}
/* line 220, sass/core_140509/_gridlayout.scss */
.row-fluid .span15 {
  width: 126.0%;
}
/* line 223, sass/core_140509/_gridlayout.scss */
.row-fluid .span16 {
  width: 134.66667%;
}
/* line 226, sass/core_140509/_gridlayout.scss */
.row-fluid .span17 {
  width: 143.33333%;
}
/* line 229, sass/core_140509/_gridlayout.scss */
.row-fluid .span18 {
  width: 152.0%;
}
/* line 232, sass/core_140509/_gridlayout.scss */
.row-fluid .span19 {
  width: 160.66667%;
}
/* line 235, sass/core_140509/_gridlayout.scss */
.row-fluid .span20 {
  width: 169.33333%;
}
/* line 238, sass/core_140509/_gridlayout.scss */
.row-fluid .span21 {
  width: 178.0%;
}
/* line 241, sass/core_140509/_gridlayout.scss */
.row-fluid .span22 {
  width: 186.66667%;
}
/* line 244, sass/core_140509/_gridlayout.scss */
.row-fluid .span23 {
  width: 195.33333%;
}
/* line 247, sass/core_140509/_gridlayout.scss */
.row-fluid .span24 {
  width: 204.0%;
}
/* line 251, sass/core_140509/_gridlayout.scss */
.row-fluid .offset1 {
  margin-left: 8.66667%;
}
/* line 254, sass/core_140509/_gridlayout.scss */
.row-fluid .offset2 {
  margin-left: 17.33333%;
}
/* line 257, sass/core_140509/_gridlayout.scss */
.row-fluid .offset3 {
  margin-left: 26.0%;
}
/* line 260, sass/core_140509/_gridlayout.scss */
.row-fluid .offset4 {
  margin-left: 34.66667%;
}
/* line 263, sass/core_140509/_gridlayout.scss */
.row-fluid .offset5 {
  margin-left: 43.33333%;
}
/* line 266, sass/core_140509/_gridlayout.scss */
.row-fluid .offset6 {
  margin-left: 52.0%;
}
/* line 269, sass/core_140509/_gridlayout.scss */
.row-fluid .offset7 {
  margin-left: 60.66667%;
}
/* line 272, sass/core_140509/_gridlayout.scss */
.row-fluid .offset8 {
  margin-left: 69.33333%;
}
/* line 275, sass/core_140509/_gridlayout.scss */
.row-fluid .offset9 {
  margin-left: 78.0%;
}
/* line 278, sass/core_140509/_gridlayout.scss */
.row-fluid .offset10 {
  margin-left: 86.66667%;
}
/* line 281, sass/core_140509/_gridlayout.scss */
.row-fluid .offset11 {
  margin-left: 95.33333%;
}
/* line 284, sass/core_140509/_gridlayout.scss */
.row-fluid .offset12 {
  margin-left: 104.0%;
}
/* line 287, sass/core_140509/_gridlayout.scss */
.row-fluid .offset13 {
  margin-left: 112.66667%;
}
/* line 290, sass/core_140509/_gridlayout.scss */
.row-fluid .offset14 {
  margin-left: 121.33333%;
}
/* line 293, sass/core_140509/_gridlayout.scss */
.row-fluid .offset15 {
  margin-left: 130.0%;
}
/* line 296, sass/core_140509/_gridlayout.scss */
.row-fluid .offset16 {
  margin-left: 138.66667%;
}
/* line 299, sass/core_140509/_gridlayout.scss */
.row-fluid .offset17 {
  margin-left: 147.33333%;
}
/* line 302, sass/core_140509/_gridlayout.scss */
.row-fluid .offset18 {
  margin-left: 156.0%;
}
/* line 305, sass/core_140509/_gridlayout.scss */
.row-fluid .offset19 {
  margin-left: 164.66667%;
}
/* line 308, sass/core_140509/_gridlayout.scss */
.row-fluid .offset20 {
  margin-left: 173.33333%;
}
/* line 311, sass/core_140509/_gridlayout.scss */
.row-fluid .offset21 {
  margin-left: 182.0%;
}
/* line 314, sass/core_140509/_gridlayout.scss */
.row-fluid .offset22 {
  margin-left: 190.66667%;
}
/* line 317, sass/core_140509/_gridlayout.scss */
.row-fluid .offset23 {
  margin-left: 199.33333%;
}

/* line 6, sass/core_140509/_layout.scss */
.contentBox {
  width: 1000px;
  margin: auto;
  padding: 0px 0 0 0;
  position: relative;
  *zoom: 1;
}
/* line 22, sass/core_140509/_mixin.scss */
.contentBox:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
/* line 14, sass/core_140509/_layout.scss */
.contentBox .mainBox,
.contentBox .sideBox {
  position: relative;
}

/* line 19, sass/core_140509/_layout.scss */
.contentBox-head {
  position: relative;
}

/* line 23, sass/core_140509/_layout.scss */
.contentBox-foot {
  clear: both;
  position: relative;
}

/* line 28, sass/core_140509/_layout.scss */
.contentBox-body {
  position: relative;
  *zoom: 1;
}
/* line 22, sass/core_140509/_mixin.scss */
.contentBox-body:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* line 35, sass/core_140509/_layout.scss */
.contentBox-single .mainBox {
  width: 1000px;
  margin: auto;
  padding: 0 0 0 0;
}

/* line 43, sass/core_140509/_layout.scss */
.contentBox-sideRight .mainBox {
  float: left;
  width: 640px;
  margin: 0 0 0 30px;
  padding: 0 0 0 0;
}
/* line 50, sass/core_140509/_layout.scss */
.contentBox-sideRight .sideBox {
  float: right;
  width: 220px;
  margin: 0 30px 0 0;
  padding: 0;
}

/* line 59, sass/core_140509/_layout.scss */
.contentBox-sideLeft .mainBox {
  float: right;
  width: 800px;
  margin: 0;
  padding: 0 0 0 0;
}
/* line 66, sass/core_140509/_layout.scss */
.contentBox-sideLeft .sideBox {
  float: left;
  width: 175px;
  margin: 0;
  padding: 0;
}

/* line 8, sass/core_140509/_text.scss */
.font-family-default, body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* line 11, sass/core_140509/_text.scss */
.font-family-gothic {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}

/* line 14, sass/core_140509/_text.scss */
.font-family-mincho {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/* フォントサイズ ****************/
/* line 19, sass/core_140509/_text.scss */
.font-size-small {
  font-size: 0.8rem;
}

/* line 22, sass/core_140509/_text.scss */
.font-size-normal {
  font-size: 1rem;
}

/* line 25, sass/core_140509/_text.scss */
.font-size-middle {
  font-size: 1.3rem;
}

/* line 28, sass/core_140509/_text.scss */
.font-size-large {
  font-size: 1.5rem;
}

/* テキスト系 ***********/
/* line 33, sass/core_140509/_text.scss */
.text-hide {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* line 41, sass/core_140509/_text.scss */
.text-left {
  text-align: left;
}

/* line 44, sass/core_140509/_text.scss */
.text-center {
  text-align: center;
}

/* line 47, sass/core_140509/_text.scss */
.text-right {
  text-align: right;
}

/** color *****/
/* line 54, sass/core_140509/_text.scss */
.color-black {
  color: #000;
}

/* line 57, sass/core_140509/_text.scss */
.color-white {
  color: #fff;
}

/* line 60, sass/core_140509/_text.scss */
.color-red {
  color: #e60012;
}

/* line 63, sass/core_140509/_text.scss */
.color-pink {
  color: #f51e64;
}

/* line 66, sass/core_140509/_text.scss */
.color-perple {
  color: #ea28ba;
}

/* line 69, sass/core_140509/_text.scss */
.color-blue {
  color: #2d83d8;
}

/* line 72, sass/core_140509/_text.scss */
.color-aqua {
  color: #48cbeb;
}

/* line 75, sass/core_140509/_text.scss */
.color-green {
  color: #65b725;
}

/* line 78, sass/core_140509/_text.scss */
.color-lime {
  color: #28f165;
}

/* line 81, sass/core_140509/_text.scss */
.color-yellow {
  color: #ffe400;
}

/* line 84, sass/core_140509/_text.scss */
.color-orange {
  color: #ff9001;
}

/* line 87, sass/core_140509/_text.scss */
.color-brown {
  color: #693603;
}

/* line 90, sass/core_140509/_text.scss */
.color-darkgray {
  color: #333333;
}

/* line 93, sass/core_140509/_text.scss */
.color-gray {
  color: #999999;
}

/* line 96, sass/core_140509/_text.scss */
.color-lightgray {
  color: #eeeeee;
}

/* line 4, sass/core_140509/_format.scss */
.inlineBlock {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  letter-spacing: -0.4em;
  /*隙間をなくすためのハック*/
}

/* line 9, sass/core_140509/_format.scss */
.clearfix, .wrap, .row, .row-fluid {
  *zoom: 1;
}
/* line 22, sass/core_140509/_mixin.scss */
.clearfix:after, .wrap:after, .row:after, .row-fluid:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/** link **/
/* line 14, sass/core_140509/_format.scss */
a.link-border {
  color: #e60012;
  border-bottom: dashed 1px #e60012;
}

/* line 18, sass/core_140509/_format.scss */
a.link-border:hover {
  color: #e60012;
  border-bottom: dashed 1px #e60012;
  background-color: #ffffcc;
}

/* line 24, sass/core_140509/_format.scss */
a.link-noborder {
  border: none !important;
}

/* line 27, sass/core_140509/_format.scss */
a.link-noborder:hover {
  border: none !important;
}

/** notice **/
/* line 33, sass/core_140509/_format.scss */
p.notice {
  text-indent: -1em;
  margin-left: 1em;
}

/* line 39, sass/core_140509/_format.scss */
ul.notice li {
  text-indent: -1em;
  margin-left: 1em;
  list-style-type: none;
}

/** float **/
/* line 50, sass/core_140509/_format.scss */
.alignleft,
.align-left {
  float: left;
}

/* line 55, sass/core_140509/_format.scss */
.alignright,
.align-right {
  float: right;
}

/* line 60, sass/core_140509/_format.scss */
.aligncenter,
.align-center {
  display: block;
  margin: auto;
}

/* line 66, sass/core_140509/_format.scss */
.alignleft-margin,
.align-left-margin {
  float: left;
  margin-right: 20px;
}

/* line 71, sass/core_140509/_format.scss */
.alignright-margin,
.align-right-margin {
  float: right;
  margin-left: 20px;
}

/** image **/
/* line 78, sass/core_140509/_format.scss */
.photo {
  padding: 4px;
  background-color: #fff;
  border: solid 1px #cccccc;
  z-index: 1;
}

/* line 85, sass/core_140509/_format.scss */
a:hover .photo {
  border: solid 1px #e60012;
}

/* line 89, sass/core_140509/_format.scss */
.photo-shadow {
  -moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}

/* movie play button */
/* line 95, sass/core_140509/_format.scss */
a.add-icon-play {
  display: inline-block;
  position: relative;
  font-size: 1.5em;
}
/* line 100, sass/core_140509/_format.scss */
a.add-icon-play:after {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  width: 3em;
  padding: 0.3em 0;
  left: 0;
  top: 0;
  text-align: center;
  font-family: icomoon;
  content: "\e61d";
  color: #fff;
}
/* line 116, sass/core_140509/_format.scss */
a.add-icon-play .add-icon-play-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 0.3em 0.5em;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.8rem;
}

/* line 130, sass/core_140509/_format.scss */
a.add-icon-play.add-icon-play-center:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/** ol / ul **************/
/* line 4, sass/core_140509/_list.scss */
ul.ul-list, ol.ol-list {
  padding-left: 2em;
}
/* line 7, sass/core_140509/_list.scss */
ul.ul-list > li, ol.ol-list > li {
  margin-bottom: 0.3em;
}

/* line 11, sass/core_140509/_list.scss */
ol.ol-counter {
  counter-reset: section;
}
/* line 13, sass/core_140509/_list.scss */
ol.ol-counter > li {
  list-style-type: none;
  position: relative;
  padding-left: 2.5em;
}
/* line 18, sass/core_140509/_list.scss */
ol.ol-counter > li:before {
  counter-increment: section;
  content: counters(section, ".") ".";
  position: absolute;
  left: 0;
  width: 2em;
  padding-right: 0.5em;
  text-align: right;
}

/** dl **************/
/* line 34, sass/core_140509/_list.scss */
dl.dl-bold > dt {
  font-weight: bold;
}

/* line 38, sass/core_140509/_list.scss */
dl.dl-inline {
  *zoom: 1;
}
/* line 22, sass/core_140509/_mixin.scss */
dl.dl-inline:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
/* line 41, sass/core_140509/_list.scss */
dl.dl-inline > dt {
  clear: both;
  display: inline;
  float: left;
  margin-right: 1em;
}
/* line 47, sass/core_140509/_list.scss */
dl.dl-inline > dd {
  display: inline;
  float: left;
  margin-bottom: 0;
  margin-left: 0;
}

/* line 55, sass/core_140509/_list.scss */
dl.dl-counter {
  position: relative;
  counter-reset: section;
}
/* line 59, sass/core_140509/_list.scss */
dl.dl-counter dt {
  position: relative;
  padding-left: 2.5em;
}
/* line 63, sass/core_140509/_list.scss */
dl.dl-counter dt:before {
  counter-increment: section;
  content: counters(section, ".") ".";
  position: absolute;
  left: 0;
  width: 2em;
  padding-right: 0.5em;
  text-align: right;
}
/* line 73, sass/core_140509/_list.scss */
dl.dl-counter dd {
  padding-left: 2.5em;
}

/* line 78, sass/core_140509/_list.scss */
dl.dl-counter-tracks dd {
  font-size: 0.8rem;
  margin-bottom: 0.5em;
  padding-left: 3em;
}

/** table **************/
/* line 88, sass/core_140509/_list.scss */
table.table {
  width: 100%;
  margin: 0 0 1em 0;
}
/* line 92, sass/core_140509/_list.scss */
table.table th, table.table td {
  padding: 4px;
}

/* line 97, sass/core_140509/_list.scss */
table.table-border {
  border-top: solid 2px black;
  border-bottom: solid 2px black;
}
/* line 101, sass/core_140509/_list.scss */
table.table-border th, table.table-border td {
  border-bottom: solid 1px black;
}

/* line 108, sass/core_140509/_list.scss */
table.table-stripe > tbody > tr:nth-child(odd) td, table.table-stripe > tbody > tr:nth-child(odd) th {
  background-color: #f6f6f6;
}

/* line 115, sass/core_140509/_list.scss */
table.table-head th {
  background-color: #f6f6f6;
}

/*
input[type=text],
textarea{
	border: solid 1px $colorLightGray;
	padding: 8px;
	border-radius: 4px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
*/
/*フォームの入力項目をいい感じに配置します*/
/* line 14, sass/core_140509/_form.scss */
button, input, select, textarea {
  vertical-align: baseline;
  *vertical-align: middle;
  font-family: sans-serif;
}

/* line 19, sass/core_140509/_form.scss */
button, input {
  line-height: normal;
  *overflow: visible;
}

/* line 26, sass/core_140509/_form.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

/* line 31, sass/core_140509/_form.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}

/* line 34, sass/core_140509/_form.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 40, sass/core_140509/_form.scss */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 44, sass/core_140509/_form.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 48, sass/core_140509/_form.scss */
input::placeholder {
  color: #ccc;
}

/* line 49, sass/core_140509/_form.scss */
input::-moz-placeholder {
  color: #ccc;
}

/* line 50, sass/core_140509/_form.scss */
input::-webkit-input-placeholder {
  color: #ccc;
}

/*フォームの入力値が正常だった場合のスタイルです*/
/* line 53, sass/core_140509/_form.scss */
:valid {
  background-color: green;
}

/*フォームの入力値が異常だった場合のスタイルです*/
/* line 55, sass/core_140509/_form.scss */
:invalid {
  background-color: pink;
}

/*フォームの入力値が範囲内だった場合のスタイルです*/
/* line 57, sass/core_140509/_form.scss */
:in-range {
  background-color: lightgreen;
}

/*フォームの入力値が範囲外だった場合のスタイルです*/
/* line 59, sass/core_140509/_form.scss */
:out-of-range {
  background-color: red;
}

/*フォームへの入力が必須の場合のスタイルです*/
/* line 61, sass/core_140509/_form.scss */
:required {
  border-style: solid;
}

/*フォームへの入力が必須でない場合のスタイルです*/
/* line 63, sass/core_140509/_form.scss */
:optional {
  border-style: dashed;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
/* line 66, sass/core_140509/_form.scss */
input, select {
  vertical-align: middle;
}

/*テキストエリアのスクロールバーを削除し、上寄せにしています*/
/* line 71, sass/core_140509/_form.scss */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* line 9, sass/core_140509/_button.scss */
.btn {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #000;
  border-radius: 4px;
  font-weight: bold;
}
/* line 17, sass/core_140509/_button.scss */
.btn:hover {
  background-color: #333;
}

/* line 22, sass/core_140509/_button.scss */
.btn-shadow {
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

/* line 26, sass/core_140509/_button.scss */
.btn-small {
  font-size: 0.8rem;
  padding: 0.2em 0.5em;
}

/* line 30, sass/core_140509/_button.scss */
.btn-large {
  font-size: 1.5rem;
  padding: 0.5em 2em;
}

/* line 35, sass/core_140509/_button.scss */
.btn-red {
  background-color: #e60012;
}
/* line 37, sass/core_140509/_button.scss */
.btn-red:hover {
  background-color: #ff1a2c;
}

/* line 42, sass/core_140509/_button.scss */
.btn-pink {
  background-color: #f51e64;
}
/* line 44, sass/core_140509/_button.scss */
.btn-pink:hover {
  background-color: #f74f86;
}

/* line 49, sass/core_140509/_button.scss */
.btn-perple {
  background-color: #ea28ba;
}
/* line 51, sass/core_140509/_button.scss */
.btn-perple:hover {
  background-color: #ef56c9;
}

/* line 56, sass/core_140509/_button.scss */
.btn-blue {
  background-color: #2d83d8;
}
/* line 58, sass/core_140509/_button.scss */
.btn-blue:hover {
  background-color: #589ce0;
}

/* line 63, sass/core_140509/_button.scss */
.btn-aqua {
  background-color: #48cbeb;
}
/* line 65, sass/core_140509/_button.scss */
.btn-aqua:hover {
  background-color: #76d8f0;
}

/* line 70, sass/core_140509/_button.scss */
.btn-green {
  background-color: #65b725;
}
/* line 72, sass/core_140509/_button.scss */
.btn-green:hover {
  background-color: #7ed738;
}

/* line 77, sass/core_140509/_button.scss */
.btn-lime {
  background-color: #28f165;
}
/* line 79, sass/core_140509/_button.scss */
.btn-lime:hover {
  background-color: #58f487;
}

/* line 84, sass/core_140509/_button.scss */
.btn-yellow {
  background-color: #ffe400;
}
/* line 86, sass/core_140509/_button.scss */
.btn-yellow:hover {
  background-color: #ffe933;
}

/* line 91, sass/core_140509/_button.scss */
.btn-orange {
  background-color: #ff9001;
}
/* line 93, sass/core_140509/_button.scss */
.btn-orange:hover {
  background-color: #ffa634;
}

/* line 98, sass/core_140509/_button.scss */
.btn-brown {
  background-color: #693603;
}
/* line 100, sass/core_140509/_button.scss */
.btn-brown:hover {
  background-color: #9b5004;
}

/* line 105, sass/core_140509/_button.scss */
.btn-darkgray {
  background-color: #333333;
}
/* line 107, sass/core_140509/_button.scss */
.btn-darkgray:hover {
  background-color: #4d4d4d;
}

/* line 112, sass/core_140509/_button.scss */
.btn-gray {
  background-color: #999999;
}
/* line 114, sass/core_140509/_button.scss */
.btn-gray:hover {
  background-color: #b3b3b3;
}

/* line 119, sass/core_140509/_button.scss */
.btn-lightgray {
  background-color: #eeeeee;
}
/* line 121, sass/core_140509/_button.scss */
.btn-lightgray:hover {
  background-color: white;
}

/* バッジ *****************/
/* line 4, sass/core_140509/_badge.scss */
.badge {
  display: inline;
  line-height: 1em;
  background: #000;
  border-radius: 4px;
  padding: 0 4px;
  color: #fff;
  font-weight: bold;
}

/* line 13, sass/core_140509/_badge.scss */
.badge-small {
  font-size: 0.8em;
}

/* line 16, sass/core_140509/_badge.scss */
.badge-red {
  background: #e60012;
}

/* line 19, sass/core_140509/_badge.scss */
.badge-pink {
  background: #f51e64;
}

/* line 22, sass/core_140509/_badge.scss */
.badge-perple {
  background: #ea28ba;
}

/* line 25, sass/core_140509/_badge.scss */
.badge-blue {
  background: #2d83d8;
}

/* line 28, sass/core_140509/_badge.scss */
.badge-aqua {
  background: #48cbeb;
}

/* line 31, sass/core_140509/_badge.scss */
.badge-green {
  background: #65b725;
}

/* line 34, sass/core_140509/_badge.scss */
.badge-lime {
  background: #28f165;
}

/* line 37, sass/core_140509/_badge.scss */
.badge-yellow {
  background: #ffe400;
}

/* line 40, sass/core_140509/_badge.scss */
.badge-orange {
  background: #ff9001;
}

/* line 43, sass/core_140509/_badge.scss */
.badge-brown {
  background: #693603;
}

/* line 46, sass/core_140509/_badge.scss */
.badge-darkgray {
  background: #333333;
}

/* line 49, sass/core_140509/_badge.scss */
.badge-gray {
  background: #999999;
}

/* line 52, sass/core_140509/_badge.scss */
.badge-lightgray {
  background: #eeeeee;
}

/* line 3, sass/_base.scss */
body.isNight .body-inner {
  background: url("../img//common/bg_slush_night.png") left top repeat;
}

/* line 6, sass/_base.scss */
body.isDaytime .body-inner {
  background: url("../img//common/bg_slush_daytime.png") left top repeat;
}

/* line 3, sass/_sns.scss */
.social-buttons {
  position: fixed;
  right: 0;
  top: 120px;
  background-color: #fff;
  border-radius: 4px 0 0 4px;
  padding: 4px;
}
/* line 11, sass/_sns.scss */
.social-buttons ul {
  margin: 0;
  padding: 0;
}
/* line 16, sass/_sns.scss */
.social-buttons li {
  list-style-type: none;
  margin-bottom: 4px;
}
/* line 20, sass/_sns.scss */
.social-buttons li:last-child {
  margin-bottom: 0;
}
/* line 24, sass/_sns.scss */
.social-buttons a {
  display: block;
  padding: 4px;
  width: 19px;
  height: 19px;
  border-radius: 4px;
  color: #fff;
  font-size: 17px;
  text-align: center;
}
/* line 34, sass/_sns.scss */
.social-buttons li.social-tw a {
  background-color: #00bdde;
}
/* line 36, sass/_sns.scss */
.social-buttons li.social-tw a:hover {
  background-color: #78ebff;
}
/* line 41, sass/_sns.scss */
.social-buttons li.social-fb a {
  background-color: #3674db;
}
/* line 43, sass/_sns.scss */
.social-buttons li.social-fb a:hover {
  background-color: #b8cef2;
}
/* line 48, sass/_sns.scss */
.social-buttons li.social-ln {
  display: none;
}

/* line 54, sass/_sns.scss */
.isMobile .social-buttons {
  top: auto;
  bottom: 0;
}
/* line 59, sass/_sns.scss */
.isMobile .social-buttons a {
  font-size: 51px;
  width: 57px;
  height: 57px;
}
/* line 65, sass/_sns.scss */
.isMobile .social-buttons li {
  float: left;
  margin-right: 8px;
}
/* line 70, sass/_sns.scss */
.isMobile .social-buttons li.social-ln {
  display: inline;
}

/* line 3, sass/_head.scss */
#header {
  position: relative;
  width: 100%;
  border-bottom: solid 1px #fff;
  z-index: 100;
}
/* line 9, sass/_head.scss */
#header .psvita {
  position: absolute;
  right: 0;
  top: 0;
}
/* line 15, sass/_head.scss */
#header #js-daynight {
  position: absolute;
  right: 0px;
  top: 54px;
  width: 350px;
  height: 0;
  overflow: hidden;
}
/* line 23, sass/_head.scss */
#header #js-daynight a {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
}
/* line 32, sass/_head.scss */
#header #js-daynight p {
  display: inline-block;
  position: absolute;
  right: 62px;
  width: 17em;
  padding: 4px;
  font-size: 0.8rem;
  text-align: right;
  color: #fff;
  background-color: #000;
  border-radius: 0 0 4px 4px;
}

/* line 49, sass/_head.scss */
#header-inner {
  position: relative;
  margin: auto;
  width: 1000px;
  height: 53px;
}

/* line 4, sass/_menu.scss */
#mainMenu > ul {
  margin: 0;
  padding: 0;
}
/* line 9, sass/_menu.scss */
#mainMenu > ul > li {
  list-style-type: none;
  position: relative;
  float: left;
}
/* line 15, sass/_menu.scss */
#mainMenu > ul > li > a {
  position: relative;
  display: inline-block;
}
/* line 22, sass/_menu.scss */
#mainMenu > ul > li ul {
  display: none;
  position: relative;
  margin: -16px 0 0 11px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 4px 15px;
  border-radius: 4px;
}
/* line 32, sass/_menu.scss */
#mainMenu > ul > li ul li {
  line-height: 1.3em;
  margin-bottom: 4px;
  list-style-type: none;
}
/* line 37, sass/_menu.scss */
#mainMenu > ul > li ul li a {
  display: block;
  color: #fff;
  padding: 4px 0;
}
/* line 43, sass/_menu.scss */
#mainMenu > ul > li ul li a:hover {
  color: #c33;
}
/* line 47, sass/_menu.scss */
#mainMenu > ul > li ul li:last-child {
  border-bottom: none;
}
/* line 51, sass/_menu.scss */
#mainMenu > ul > li ul.active {
  display: block;
}
/* line 58, sass/_menu.scss */
#mainMenu li.new img.menu-mark-new {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: -10px;
}

/* line 3, sass/_foot.scss */
#footer {
  margin-top: 40px;
  width: 100%;
  border-top: solid 1px #fff;
  background-color: #000;
}
/* line 9, sass/_foot.scss */
#footer .copyright {
  font-size: 0.8rem;
}

/* line 14, sass/_foot.scss */
#footer-inner {
  position: relative;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 100px;
  width: 1000px;
}

/* line 5, sass/_format.scss */
.no-margin {
  margin: 0;
}

/* line 9, sass/_format.scss */
[class*="indent-"] {
  position: relative;
}

/* line 13, sass/_format.scss */
.indent-20 {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 17, sass/_format.scss */
.indent-30 {
  padding-left: 30px;
  padding-right: 30px;
}

/* line 21, sass/_format.scss */
.indent-40 {
  padding-left: 40px;
  padding-right: 40px;
}

/* line 25, sass/_format.scss */
.indent-50 {
  padding-left: 50px;
  padding-right: 50px;
}

/* line 29, sass/_format.scss */
.indent-60 {
  padding-left: 60px;
  padding-right: 60px;
}

/***********/
/* line 37, sass/_format.scss */
a.link-border {
  color: #e60012;
  border-bottom: dashed 1px #e60012;
}

/* line 41, sass/_format.scss */
a.link-border:hover {
  color: #e60012;
  border-bottom: dashed 1px #e60012;
  background-color: #ffffcc;
}

/* line 47, sass/_format.scss */
a.link-noborder {
  border: none !important;
}

/* line 50, sass/_format.scss */
a.link-noborder:hover {
  border: none !important;
}

/* 下線 ****************/
/* line 55, sass/_format.scss */
.border-bottom-dotted {
  border-bottom: dotted 1px #000;
}

/* 角丸 ****************/
/* line 60, sass/_format.scss */
.radius-6 {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
}

/* line 63, sass/_format.scss */
.radius-10 {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
}

/* 影文字 ****************/
/* line 68, sass/_format.scss */
.text-shadow-white {
  text-shadow: 2px 2px 2px white;
}

/* 見出し ****************/
/* line 74, sass/_format.scss */
.h-border-bottom-black {
  border-bottom: solid 1px #000;
  padding-bottom: 4px;
}

/* line 78, sass/_format.scss */
.h2-bg-full {
  height: 58px;
  background: url("../img/common/h2_bg.png") left top repeat-x;
}
/* line 82, sass/_format.scss */
.h2-bg-full .h2-bg-full-innner {
  display: block;
  width: 1000px;
  margin: auto;
}

/* ボックス ****************/
/* line 91, sass/_format.scss */
.frame-fate-common {
  padding: 20px 50px;
  position: relative;
}

/* line 95, sass/_format.scss */
.frame-black {
  background-color: rgba(0, 0, 0, 0.7);
}

/* line 98, sass/_format.scss */
.frame-white {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px #fed505;
  border-radius: 6px;
}

/* リスト ****************/
/* line 113, sass/_format.scss */
.list-mark-crown {
  padding-left: 0;
}
/* line 116, sass/_format.scss */
.list-mark-crown > li {
  margin-bottom: 0.4em;
  padding-left: 18px;
  list-style-type: none;
  background: url("../img/common/mark_crown.png") left 0px no-repeat;
}

/* 画像 ******************/
/* line 126, sass/_format.scss */
.w100 {
  width: 100%;
  height: auto;
}

/*
@import "layout";
@import "submenu";
@import "side";
*/
/*
@import "submenu";
*/
/* 以下各コンテンツ */
/*
@import "content_home";
@import "content_news";
@import "content_story";
@import "content_chara";
@import "content_release";
*/
/* line 39, sass/common.scss */
#bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* line 46, sass/common.scss */
#bg img {
  position: absolute;
  left: 50%;
  top: 50%;
}

/* line 53, sass/common.scss */
h1#content-title {
  padding-top: 4px;
  margin-bottom: 10px;
}

/********************
* 昼夜切り替えを共通化
*/
/* line 62, sass/common.scss */
body.isNight .content-daytime {
  display: none;
}

/* line 67, sass/common.scss */
body.isDaytime .content-night {
  display: none;
}
