@charset "utf-8";
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
button,
input,
select,
textarea,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-align: left;
}
/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1.0;
}
/*文字サイズの自動調整を無効化しています*/
body {
  line-height: 1.0;
  -webkit-text-size-adjust: none;
}
/*新規追加要素のデフォルトはすべてインライン要素になっているので、
section要素などをブロック要素へ変更しています*/
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}
/*ホバー、アクティブ時のアウトラインを消しています*/
a:hover,
a:active {
  outline: 0;
}
/*ol、ulのマーカー（行頭記号）を表示しないようにしています*/
ol,
ul {
  list-style: none;
}
/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}
/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
/*スタイリングを再指定しています*/
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
/*pre,code等のフォントを指定しています*/
pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/*pre-formatted textの読みやすさを改善しています*/
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を
親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
/*ins要素のデフォルトをセットし、
色を変える場合はここで変更できるようにしています*/
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/*mark要素のデフォルトをセットし、
色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、
目立たせる際に使用するようです*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}
/*IEではデフォルトで点線を下線表示する設定ではないので、
下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}
/*テーブルの中身を天地中央にします*/
th,
td {
  vertical-align: middle;
}
/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
/*フォームの入力項目をいい感じに配置します*/
button,
input,
select,
textarea {
  vertical-align: baseline;
  *vertical-align: middle;
  font-family: sans-serif;
}
button,
input {
  line-height: normal;
  *overflow: visible;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input::placeholder {
  color: #ccc;
}
input::-moz-placeholder {
  color: #ccc;
}
input::-webkit-input-placeholder {
  color: #ccc;
}
/*フォームの入力値が正常だった場合のスタイルです*/
:valid {
  background-color: green;
}
/*フォームの入力値が異常だった場合のスタイルです*/
:invalid {
  background-color: pink;
}
/*フォームの入力値が範囲内だった場合のスタイルです*/
:in-range {
  background-color: lightgreen;
}
/*フォームの入力値が範囲外だった場合のスタイルです*/
:out-of-range {
  background-color: red;
}
/*フォームへの入力が必須の場合のスタイルです*/
:required {
  border-style: solid;
}
/*フォームへの入力が必須でない場合のスタイルです*/
:optional {
  border-style: dashed;
}
/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}
/*テキストエリアのスクロールバーを削除し、上寄せにしています*/
textarea {
  overflow: auto;
  vertical-align: top;
}
/*画像を縦に並べたときに隙間が空かないようにしています*/
img {
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
  border: 0;
}
.cf {
  zoom: 1;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.none {
  display: none;
}
.opacity {
  opacity: 0;
}
.text-green-shadow {
  color: #1baebd;
  -webkit-text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
  -moz-text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
  text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
}
.text-white-shadow {
  color: #fff;
  -webkit-text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  -moz-text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.bg-green-90 {
  background: rgba(27, 184, 189, 0.9);
  background: #1BAEBD\9;
  opacity: 0.9\9;
}
.bg-green-70 {
  background: rgba(27, 184, 189, 0.7);
  background: #1BAEBD\9;
  opacity: 0.7\9;
}
.bg-white-85 {
  background: rgba(255, 255, 255, 0.85);
  background: #fff\9;
  opacity: 0.85\9;
}
.cf {
  zoom: 1;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.none {
  display: none;
}
.opacity {
  opacity: 0;
}
/* base
------------------------------------------------- */
#globalheader {
  z-index: 2;
}
#modal {
  z-index: 4;
}
#modalBody {
  z-index: 6;
}
#modalBg {
  z-index: 5;
}
.body {
  z-index: 1;
}
#pageheader {
  z-index: 3;
}
.jp-audio {
  z-index: 3;
}
#globalnavMenuOpen {
  z-index: 3;
}
#globalnavMenuOpenLabel {
  z-index: 3;
}
#globalnavMenuWrap ul {
  z-index: 7;
}
#globalnavMenuWrap a {
  z-index: 8;
}
#globalnavMenuWrap .globalNavLabel {
  z-index: 7;
}
#globalnavBg {
  z-index: 6;
}
#globalfooter {
  z-index: 2;
}
/* character
------------------------------------------------- */
#characterMain {
  z-index: 1;
}
#characterImg {
  z-index: 2;
}
#characterName {
  z-index: 3;
}
#characterStatus {
  z-index: 3;
}
#characterInfo {
  z-index: 3;
}
#characterThumb {
  z-index: 3;
}
#characterVoice {
  z-index: 4;
}
#characterBg {
  z-index: 0;
}
/* gallery
------------------------------------------------- */
#galleryThumb {
  z-index: 2;
}
#galleryComment {
  z-index: 2;
}
#galleryText {
  z-index: 2;
}
#galleryNav {
  z-index: 1;
}
#galleryBg {
  z-index: 0;
}
/* movie
------------------------------------------------- */
#movieThumb {
  z-index: 2;
}
#movieDownload {
  z-index: 2;
}
#movieText {
  z-index: 2;
}
#movieNav {
  z-index: 1;
}
#movieBg {
  z-index: 0;
}
@font-face {
  font-family: 'cocoro-iconregular';
  src: url('../font/cocoro-icon-regular-webfont.eot');
  src: url('../font/cocoro-icon-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../font/cocoro-icon-regular-webfont.woff') format('woff'), url('../font/cocoro-icon-regular-webfont.ttf') format('truetype'), url('../font/cocoro-icon-regular-webfont.svg#examplefont') format('svg');
}
@font-face {
  font-family: 'miso';
  src: url('../font/miso-regular-webfont.eot');
  src: url('../font/miso-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../font/miso-regular-webfont.woff') format('woff'), url('../font/miso-regular-webfont.ttf') format('truetype'), url('../font/miso-regular-webfont.svg#webfont') format('svg');
}
@font-face {
  font-family: 'miso-light';
  src: url('../font/miso-light-webfont.eot');
  src: url('../font/miso-light-webfont.eot?#iefix') format('embedded-opentype'), url('../font/miso-light-webfont.woff') format('woff'), url('../font/miso-light-webfont.ttf') format('truetype'), url('../font/miso-light-webfont.svg#webfont') format('svg');
}
/* link & select
------------------------------------------------- */
a,
a:link {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
/* base
------------------------------------------------- */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  line-height: 1.4;
  font-family: Helvetica, Arial, Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.2rem;
  font-size: 12px\9;
  color: #666;
  background: #fff;
}
p {
  text-align: justify;
  text-justify: inter-ideograph;
}
/* wrap
------------------------------------------------- */
html,
body,
#bodyWrap {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#bodyWrap {
  position: relative;
}
/* globalheader
------------------------------------------------- */
#globalheader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(27, 184, 189, 0.7);
  background: #1BAEBD\9;
  opacity: 0.7\9;
}
#globalheader h1 {
  position: absolute;
  top: 6px;
  left: 15px;
}
#globalheader p {
  position: absolute;
  top: 4px;
  right: 15px;
}
#globalheader #share {
  position: absolute;
  bottom: 7px;
  right: 18px;
}
#globalheader #share a {
  display: block;
  width: 70px;
  height: 20px;
  background: url(../img/tweet.png) no-repeat center bottom;
}
#globalheader #share a:hover {
  background: url(../img/tweet.png) no-repeat center top;
}
/* body
------------------------------------------------- */
.body {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  padding: 90px 0 40px 0;
  overflow: scroll;
}
/* globalnav
------------------------------------------------- */
#globalfooter {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: rgba(27, 184, 189, 0.7);
  background: #1BAEBD\9;
  opacity: 0.7\9;
}
#copyright {
  font-size: 1.0rem;
  font-size: 10px\9;
  color: #fff;
}
#copyright p {
  text-align: center;
}
/* audio
------------------------------------------------- */
.jp-audio {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 40px;
  font-family: 'cocoro-iconregular';
}
.jp-audio .jp-controls {
  overflow: hidden;
}
.jp-audio .jp-controls li {
  display: inline;
  float: left;
}
.jp-audio .jp-controls a {
  display: block;
  overflow: hidden;
  text-align: center;
  color: #fff;
  -webkit-text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  -moz-text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.jp-audio .jp-controls .jp-play,
.jp-audio .jp-controls .jp-pause {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 34px;
  font-size: 3.5rem;
  font-size: 35px\9;
}
.jp-audio .jp-controls .jp-pause {
  display: none;
}
.jp-audio .jp-progress {
  position: absolute;
  bottom: 15px;
  left: 45px;
  height: 6px;
  width: 100px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.jp-audio .jp-progress .jp-seek-bar {
  width: 0;
  height: 6px;
  background: rgba(51, 51, 51, 0.9);
  background: #333\9;
  opacity: 0.9\9;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.jp-audio .jp-progress .jp-play-bar {
  width: 0;
  height: 6px;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
/* globalnav
------------------------------------------------- */
#globalnav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#globalnavMenuOpen {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  line-height: 37px;
  text-align: center;
  font-family: 'cocoro-iconregular';
  font-size: 2.5rem;
  font-size: 25px\9;
  color: #fff;
  -webkit-text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  -moz-text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
#globalnavMenuOpenLabel {
  position: absolute;
  left: 2px;
  bottom: 35px;
  width: 36px;
  height: 18px;
  line-height: 19px;
  text-align: center;
  font-family: 'Dosis';
  font-size: 1.2rem;
  font-size: 12px\9;
  color: #fff;
  -webkit-text-shadow: 0 0 5px rgba(255, 255, 255, 0.75);
  -moz-text-shadow: 0 0 5px rgba(255, 255, 255, 0.75);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #1baebd;
}
#globalnavMenuWrap ul {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -225px 0 0 -300px;
  width: 600px;
  text-align: center;
}
#globalnavMenuWrap ul li {
  display: inline-block;
  width: 150px;
  height: 150px;
  line-height: 130px;
  text-align: center;
  font-family: 'cocoro-iconregular';
  font-size: 8.0rem;
  font-size: 80px\9;
  cursor: pointer;
}
#globalnavMenuWrap ul li a {
  position: relative;
  display: block;
  color: #1baebd;
  -webkit-text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
  -moz-text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
  text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
}
#globalnavMenuWrap ul li.close a {
  color: #aaa;
  -webkit-text-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
  -moz-text-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
}
#globalnavMenuWrap ul li .globalNavLabel {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-family: 'Dosis';
  font-size: 1.8rem;
  font-size: 18px\9;
  color: #1baebd;
}
#globalnavBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  background: #fff\9;
  opacity: 0.85\9;
}
/* pageheader
------------------------------------------------- */
#pageheader {
  position: relative;
  margin: 0 0 30px 0;
  width: 300px;
  height: 50px;
  color: #1baebd;
  -webkit-text-shadow: 0 0 5px #ffffff;
  -moz-text-shadow: 0 0 5px #ffffff;
  text-shadow: 0 0 5px #ffffff;
  border-bottom: 2px solid #1baebd;
}
#pageheader h1 {
  position: absolute;
  left: 20px;
  bottom: -8px;
  font-size: 5.0rem;
  font-size: 50px\9;
  font-family: 'cocoro-iconregular';
  font-weight: normal;
}
#pageheader h2 {
  position: absolute;
  left: 70px;
  bottom: 0;
  font-size: 3.0rem;
  font-size: 30px\9;
  font-family: 'Dosis';
  font-weight: normal;
}
/* information
------------------------------------------------- */
#information {
  background-image: url(../img/bg/bg17.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  overflow: hidden;
}
#informationImg {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -250px 0 0 -500px;
  width: 1000px;
  height: 600px;
  background: rgba(255, 255, 255, 0.75);
  background: #fff\9;
  opacity: 0.75\9;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
#informationImg img {
  margin-left: -30px;
}
#informationNav ul {
  position: absolute;
  top: 25px;
  right: 60px;
}
#informationNav li {
  display: inline-block;
  margin-left: 20px;
  font-size: 3.0rem;
  font-size: 30px\9;
  font-family: 'cocoro-iconregular';
  font-weight: normal;
  color: #1baebd;
  -webkit-text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
  -moz-text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
  text-shadow: 0 0 5px rgba(27, 184, 189, 0.25);
  cursor: pointer;
}
/* 修正パッチリンク
------------------------------------------------- */
#informationImg .batch {
  position: relative;
  left: 410px;
  top: 60px;
  font-size: 1.5em;
  font-weight: normal;
  z-index:10000;
}