@charset "UTF-8";
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="reset"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration,
  input[type="reset"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus,
  input[type="reset"]::focus {
    outline-offset: -2px; }

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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,
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; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

@font-face {
  font-family: koburina;
  src: url("../font/こぶりなゴシック StdN W6_0.otf") format("opentype"); }

/*
$widthPC: 1000px; //PC
$widthTab: 768px; //タブレット
$widthSp: 568px; //スマートフォン
*/
.clearfix:after {
  content: "";
  display: block;
  clear: both; }

html {
  font-size: 62.5%;
  font-family: 'Open Sans', sans-serif; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

li {
  list-style: none; }

a {
  text-decoration: none; }

a:hover {
  opacity: 0.7; }

a:focus, *:focus {
  outline: none; }

.content {
  width: calc(100% - (220px + 220px));
  height: 100vh;
  min-height: 700px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 99; }
  @media (max-width: 1050px) {
    .content {
      width: 100%;
      min-height: auto; } }
  .content p {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 3.0rem; }
    @media (max-width: 1050px) {
      .content p {
        font-size: 2.0rem; } }

.wrap {
  width: 100%;
  min-height: 700px; }
  @media (max-width: 1050px) {
    .wrap {
      min-height: auto; } }

.wrap::before {
  /* 透過した黒を重ねる */
  /* どの範囲に重ねるかを指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
  z-index: 1; }

.fixed {
  position: fixed !important; }

@media (max-width: 1050px) {
  .index-wrap.wrap {
    min-height: 700px; } }

/***************
 header
***************/
.header {
  width: 220px;
  min-height: 700px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100; }
  @media (max-width: 1050px) {
    .header {
      width: 100%;
      height: auto;
      min-height: auto;
      padding: 0; } }

@media (max-width: 1050px) {
  .header__logo {
    width: 120px;
    margin: 0 auto;
    padding: 10px 0; } }

.header__logo img {
  width: 100%; }

.header__menu {
  margin-top: 30px; }
  @media (max-width: 1050px) {
    .header__menu {
      width: 100%;
      height: 100vh;
      position: absolute;
      margin: 0;
      background-color: #000;
      z-index: -1;
      top: 0;
      /* 変更：　iOS Safariでも動く */
      -webkit-transition: opacity 0.5s, visibility 0s ease 0.5s;
      -o-transition: opacity 0.5s, visibility 0s ease 0.5s;
      transition: opacity 0.5s, visibility 0s ease 0.5s;
      opacity: 0;
      visibility: hidden; } }

@media (max-width: 1050px) {
  .header__menu.is-show {
    /* 変更：　iOS Safariでも動く */
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
    visibility: visible; } }

@media (max-width: 1050px) {
  .header__list {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%); } }

.header__item {
  text-align: right;
  margin: 0 20px 14px; }
  @media (max-width: 1050px) {
    .header__item {
      width: 100%;
      text-align: center;
      margin: 0 0 14px; } }

.header__item a {
  color: #fff;
  text-decoration: none;
  font-size: 2.0rem;
  font-weight: bold;
  letter-spacing: -0.5px; }

.header__movie {
  margin-top: 30px; }
  @media (max-width: 1050px) {
    .header__movie {
      display: none; } }

.header__movie img {
  width: 100%; }

.header__movie img:last-of-type {
  margin-top: 20px; }

.header__movie p {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 2px; }

.header__menu-btn {
  display: none; }
  @media (max-width: 1050px) {
    .header__menu-btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: absolute;
      top: 0;
      right: 20px;
      bottom: 0;
      margin: auto; } }

/*** index.htmlの場合 ***/
.header__movie-sp {
  display: none; }

@media (max-width: 1050px) {
  .index-wrap .header__movie-sp {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    bottom: 20px;
    z-index: 2; }
  .index-wrap .header__movie-block {
    width: 40%;
    max-width: 250px; }
  .index-wrap .header__movie-block:first-of-type {
    margin: 0 20px 0 0; }
  .index-wrap .header__movie p {
    font-size: 1.2rem; } }

@media (max-width: 700px) {
  .index-wrap .header__logo {
    width: 40%;
    max-width: 200px;
    left: 0;
    right: 0;
    bottom: -25vh;
    margin: auto;
    position: absolute; }
  .index-wrap .header__menu-btn {
    height: 60px;
    top: 60px; } }

/***********************
ハンバーガーボタン
************************/
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.menu-trigger {
  position: relative;
  width: 20px;
  height: 14px; }

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff; }

.menu-trigger span:nth-of-type(1) {
  top: 0; }

.menu-trigger span:nth-of-type(2) {
  top: 6px; }

.menu-trigger span:nth-of-type(3) {
  bottom: 0; }

.menu-trigger.active span {
  background-color: #fff; }

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  -ms-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg); }

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0; }

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg); }

/****************
 個別ページ
*****************/
.page-staff .wrap {
  background-image: none;
  background-color: #000; }

/***************
 トップページ
***************/
.index-wrap {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/top-main.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden; }
  @media (max-width: 1050px) {
    .index-wrap {
      background-size: 150%;
      background-color: #000;
      background-image: none;
      overflow: scroll; } }

@media screen and (orientation: landscape) {
  .index-wrap {
    background-position: center top; } }

.overflow {
  overflow: hidden; }

/***************
 side
***************/
.side {
  width: 220px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 100px 20px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2; }
  @media (max-width: 1050px) {
    .side {
      display: none; } }

@media (max-width: 1050px) {
  .side__list {
    width: 40%;
    max-width: 200px;
    margin: 50px auto 0; } }

.side__item {
  margin: 0 0 10px; }
  @media (max-width: 1050px) {
    .side__item {
      margin: 0 5px; } }

.side__item img {
  width: 100%; }

.side__list-sp {
  display: none; }
  @media (max-width: 1050px) {
    .side__list-sp {
      max-width: 400px;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 0 0 30px; } }

/***************
 news
***************/
.news {
  width: 100%;
  height: 200px;
  background-size: contain;
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -moz-linear-gradient(bottom, #000 50%, transparent);
  background: -webkit-linear-gradient(bottom, #000 50%, transparent);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #000), to(transparent));
  background: -o-linear-gradient(bottom, #000 50%, transparent);
  background: linear-gradient(to top, #000 50%, transparent); }
  @media (max-width: 1050px) {
    .news {
      display: block;
      height: 50%;
      padding: 10px 20px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      bottom: 0; } }
  @media (max-width: 700px) {
    .news {
      height: 45%; } }

.news__inner {
  width: 55%;
  margin: 0 auto; }
  @media (max-width: 1050px) {
    .news__inner {
      width: 100%;
      margin: 10% 0 0; } }

.news__title {
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 10px; }
  @media (max-width: 1050px) {
    .news__title {
      font-size: 1.3rem;
      text-align: left; } }

.news__list {
  color: #fff;
  font-weight: bold;
  font-size: 0; }

.news__item:not(:last-child) {
  border-bottom: 15px solid transparent; }
  @media (max-width: 1050px) {
    .news__item:not(:last-child) {
      border-bottom: 10px solid transparent; } }

.news__date {
  width: 18%;
  font-size: 18px;
  border-right: 50px solid transparent; }
  @media (max-width: 1050px) {
    .news__date {
      width: auto;
      font-size: 1.2rem;
      border-right: 20px solid transparent; } }

.news__lead {
  width: 82%;
  font-size: 18px; }
  @media (max-width: 1050px) {
    .news__lead {
      width: auto;
      font-size: 1.2rem; } }

.index-bg-sp {
  display: none; }
  @media (max-width: 1050px) {
    .index-bg-sp {
      width: 100%;
      height: 100%;
      display: block;
      background-image: url(../images/top-main.jpg);
      background-size: 150%;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto; } }

/***************
 mark
***************/
.mark {
  position: absolute;
  bottom: 20px; }
  @media (max-width: 1050px) {
    .mark {
      position: static;
      text-align: center;
      margin: 50px 0 10px; } }

.mark__text {
  color: #fff;
  font-weight: normal !important;
  font-size: 1.4rem !important; }
  @media (max-width: 1050px) {
    .mark__text {
      font-size: 1.0rem !important; } }

.mark-under {
  position: absolute;
  bottom: 10px;
  right: 20px;
  text-align: center; }
  @media (max-width: 1050px) {
    .mark-under {
      width: 100%;
      left: 0; } }

.mark-under-sp {
  display: none; }
  @media (max-width: 1050px) {
    .mark-under-sp {
      display: block;
      position: static;
      padding: 0 0 10px; } }

.page-staff .wrap {
  background-color: transparent;
  background-image: url(/assets/images/staff-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.page-staff .content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  padding: 80px 0 0 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (max-width: 1050px) {
    .page-staff .content {
      padding: 80px 20px 0;
      display: block; } }

.page-staff .content-block {
  color: #fff; }

.page-staff .content-block:first-of-type {
  margin: 0 100px 0 0; }
  @media (max-width: 1050px) {
    .page-staff .content-block:first-of-type {
      margin: 0; } }

.page-staff .staff__title {
  font-size: 4.0rem;
  margin: 0 0 50px; }
  @media (max-width: 1050px) {
    .page-staff .staff__title {
      font-size: 1.8rem;
      margin: 0 0 15px; } }

@media (max-width: 1050px) {
  .page-staff .content-block:last-of-type .staff__title {
    margin: 25px 0 15px; } }

.page-staff .staff__item {
  font-size: 2.0rem;
  font-weight: bold;
  margin: 0 0 28px; }
  @media (max-width: 1050px) {
    .page-staff .staff__item {
      font-size: 1.3rem;
      font-weight: normal;
      margin: 0 0 12px; } }

.page-staff .staff__item:last-of-type {
  margin: 0; }

.page-news {
  /*
  .content-block::-webkit-scrollbar {
    display: none;
  }
  */
  /* サイドのツイッターリンク */ }
  .page-news .wrap {
    background-color: transparent;
    background-image: url(/assets/images/news-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    @media (max-width: 1050px) {
      .page-news .wrap {
        height: 100vh; } }
  .page-news .wrap::before {
    background-color: transparent; }
  .page-news .content {
    width: calc(100% - 220px);
    overflow: scroll;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 0 70px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 0; }
    @media (max-width: 1050px) {
      .page-news .content {
        width: 100%;
        padding: 0 20px;
        height: 93vh;
        overflow: scroll; } }
  .page-news .content-block {
    max-width: 1200px;
    width: 85%;
    height: 95vh;
    color: #fff;
    overflow-x: hidden;
    overflow-y: hidden; }
    @media (max-width: 1050px) {
      .page-news .content-block {
        width: 90%; } }
  .page-news .news__list {
    width: calc(100% - 20px);
    height: 100vh;
    padding: 0 40px 0 0;
    overflow-y: scroll; }
  .page-news .news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #838a92;
    padding: 40px 0; }
    @media (max-width: 1050px) {
      .page-news .news__item {
        display: block;
        padding: 30px 0; } }
  .page-news .news__item:first-of-type {
    margin: 30px 0 0; }
    @media (max-width: 1050px) {
      .page-news .news__item:first-of-type {
        margin: 50px 0 0; } }
  .page-news .news__item-block:first-of-type {
    width: 40%;
    padding: 0 30px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    @media (max-width: 1050px) {
      .page-news .news__item-block:first-of-type {
        width: 100%;
        padding: 0; } }
  .page-news .news__item-block:last-of-type {
    width: 60%; }
    @media (max-width: 1050px) {
      .page-news .news__item-block:last-of-type {
        width: 100%; } }
  .page-news .news__day {
    font-size: 4.0rem;
    text-align: left;
    margin: 0 0 80px; }
    @media (max-width: 1050px) {
      .page-news .news__day {
        font-size: 1.3rem;
        margin: 0 0 5px; } }
  .page-news .news__title {
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left; }
    @media (max-width: 1050px) {
      .page-news .news__title {
        font-size: 1.5rem; } }
  .page-news .news__text {
    font-size: 1.8rem;
    text-align: left;
    line-height: 1.8;
    margin: 4px 0 50px;
    text-align: justify;
    text-justify: inter-ideograph; }
    @media (max-width: 1050px) {
      .page-news .news__text {
        font-size: 1.4rem;
        line-height: 1.5;
        font-weight: normal;
        margin: 4px 0 20px; } }
  .page-news .news__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media (max-width: 1050px) {
      .page-news .news__link {
        display: block; } }
  .page-news .news__link-block:last-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .page-news .news__link-block p {
    display: inline-block;
    font-size: 1.4rem;
    color: #fe0000;
    margin: 0 14px 0 0; }
  .page-news .news__link-block span {
    font-size: 1.8rem;
    color: #fe0000; }
  .page-news .icon-retweet {
    font-size: 2.6rem !important;
    margin: 0 14px 0 0; }
  .page-news .content-twitter {
    width: 100px;
    margin: 140px 0 0;
    position: fixed;
    right: 0; }
    @media (max-width: 1050px) {
      .page-news .content-twitter {
        width: 50px;
        margin: 120px 0 0; } }
  .page-news .twitter__link {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .page-news .twitter__title {
    font-size: 1.9rem;
    color: #1da1f3;
    position: relative; }
    @media (max-width: 1050px) {
      .page-news .twitter__title {
        font-size: 1.5rem; } }
  .page-news .twitter__title::before {
    content: "\ea96";
    font-family: "icomoon",sans-serif;
    font-weight: normal;
    font-size: 2.6rem;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px;
    margin: auto; }
    @media (max-width: 1050px) {
      .page-news .twitter__title::before {
        font-size: 2.0rem;
        left: -30px; } }
  .page-news .twitter__title::after {
    content: "\e900";
    font-family: "icomoon",sans-serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    margin: auto; }
    @media (max-width: 1050px) {
      .page-news .twitter__title::after {
        right: -25px; } }

.page-intro .wrap {
  background-color: transparent;
  background-image: url(/assets/images/intro-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.page-intro .intro__content {
  width: calc(100% - 220px);
  margin: 0 0 0 220px;
  padding: 0 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (max-width: 1050px) {
    .page-intro .intro__content {
      width: 100%;
      min-height: 100vh;
      height: auto;
      margin: 0;
      padding: 100px 20px 50px;
      display: block; } }

.page-intro .intro__text {
  font-size: 2.1rem;
  text-align: left;
  line-height: 2;
  font-weight: normal;
  text-shadow: 0 1px 0 black;
  /*
    filter:dropshadow(color=#000000,offX= 0,offY=-1)
    dropshadow(color=#000000,offX= 1,offY= 0)
    dropshadow(color=#000000,offX= 0,offY= 1)
    dropshadow(color=#000000,offX=-1,offY= 0);
    -webkit-text-stroke-color: #000;
    -webkit-text-stroke-width: 1px;
    text-shadow: black 1px 1px 0px, black -1px 1px 0px,
    black 1px -1px 0px, black -1px -1px 0px;
    */ }
  @media (max-width: 1050px) {
    .page-intro .intro__text {
      font-size: 1.6rem;
      line-height: 1.8; } }

.page-intro .intro__text:not(:first-of-type) {
  margin: 50px 0 0; }

.page-chara .wrap {
  background-color: transparent;
  background-image: url(/assets/images/character-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

@media (max-width: 1050px) {
  .page-chara .charaList-wrap {
    height: auto;
    overflow: visible; } }

.page-chara .content {
  width: calc(100% - 220px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 70px 0 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0; }
  @media (max-width: 1050px) {
    .page-chara .content {
      width: 100%;
      padding: 0 20px; } }

@media (max-width: 1050px) {
  .page-chara .charaList-content {
    height: 100vh;
    display: block; } }

.page-chara .chara__list-wrap {
  width: 100%; }
  @media (max-width: 1050px) {
    .page-chara .chara__list-wrap {
      height: 93vh;
      padding: 100px 0 0;
      overflow: scroll;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; } }

.page-chara .chara__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (max-width: 1050px) {
    .page-chara .chara__list {
      display: block; } }

@media (max-width: 1050px) {
  .page-chara .chara__item {
    padding: 0 0 30px !important;
    margin: 0 !important;
    text-align: center; } }

.page-chara .chara__list-first .chara__item:nth-of-type(2) {
  margin: 0 50px; }

.page-chara .chara__list-second .chara__item:first-of-type {
  margin: 0 100px 0 0; }

.page-chara .chara__list-second {
  margin: 30px 0 0; }
  @media (max-width: 1050px) {
    .page-chara .chara__list-second {
      margin: 0; } }

.page-chara .chara__link {
  display: block; }

.page-chara .chara__link:hover {
  opacity: 1; }

.page-chara .chara__pic {
  height: 250px; }
  @media (max-width: 1050px) {
    .page-chara .chara__pic {
      height: 50vw;
      max-height: 250px; } }

.page-chara .chara__name {
  margin: 10px 0 0; }

/*******
キャラクター　共通部分
********/
.chara__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }
  @media (max-width: 1050px) {
    .chara__detail {
      width: 100%;
      height: 94%;
      position: relative; } }
  @media (max-width: 1050px) {
    .chara__detail .chara__detail-text {
      position: absolute;
      right: 0;
      bottom: 30px;
      z-index: 1; } }
  .chara__detail .chara__detail-jap {
    color: #fff;
    text-align: right;
    font-size: 8rem;
    padding: 0 0 8px; }
    @media (max-width: 1050px) {
      .chara__detail .chara__detail-jap {
        font-size: 2.5rem;
        padding: 0; } }
  .chara__detail .chara__detail-eng {
    text-align: right;
    font-size: 15rem;
    opacity: 0.15;
    letter-spacing: 0.05em;
    font-family: 'Oswald', sans-serif; }
    @media (max-width: 1050px) {
      .chara__detail .chara__detail-eng {
        font-size: 7rem;
        letter-spacing: 0; } }
  .chara__detail .chara__detail-voice {
    font-size: 2.8rem;
    text-align: right;
    padding: 20px 10px 0 0; }
    @media (max-width: 1050px) {
      .chara__detail .chara__detail-voice {
        font-size: 1.8rem;
        padding: 10px 6px 0 0; } }
  .chara__detail .chara__body {
    width: 35vh;
    height: 80vh;
    background-size: 1520% 480%;
    background-position: 5% 4%;
    background-repeat: no-repeat; }
    @media (max-width: 1050px) {
      .chara__detail .chara__body {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        margin: auto; } }

.chara-content {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto 0 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 100px 0 220px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0; }
  @media (max-width: 1050px) {
    .chara-content {
      width: 100%;
      padding: 0 20px; } }

/*******
 MARIN
********/
.page-marin .wrap {
  background-color: transparent;
  background-image: url(/assets/images/img-chara-01-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

/*******
 MASARU
********/
.page-masaru .wrap {
  background-color: transparent;
  background-image: url(/assets/images/img-chara-02-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

/*******
 KAORI
********/
.page-kaori .wrap {
  background-color: transparent;
  background-image: url(/assets/images/img-chara-03-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

/*******
 HASEGAWA
********/
.page-hasegawa .wrap {
  background-color: transparent;
  background-image: url(/assets/images/img-chara-04-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

/*******
 BABU
********/
.page-babu .wrap {
  background-color: transparent;
  background-image: url(/assets/images/img-chara-05-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

/*******
 3D
********/
.chara__marin-3d {
  background-image: url(/assets/images/img-chara-01-3d.png); }

.chara__masaru-3d {
  background-image: url(/assets/images/img-chara-02-3d.png); }

.chara__kaori-3d {
  background-image: url(/assets/images/img-chara-03-3d.png); }

.chara__hasegawa-3d {
  background-image: url(/assets/images/img-chara-04-3d.png); }

.chara__babu-3d {
  background-image: url(/assets/images/img-chara-05-3d.png); }

.page-gallery .wrap {
  background-color: transparent;
  background-image: url(/assets/images/gallery-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.page-special .wrap {
  background-color: transparent;
  background-image: url(/assets/images/special-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

  .page-news .news__text a {
  color: #fff;}
  
  .page-news .news__text a:hover {
  color: #ff0000;}
  