@charset "utf-8";
/* =============================================
 共通 リセット
============================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
#cm-header {
  z-index: 100 !important;
}
.wrap-menu .wrap-fixed {
  position: absolute !important;
}
/* =============================================
 フォント リセット
============================================= */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  line-height: 1.4;
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/* =============================================
 common
============================================= */
* {
  margin: 0;
  padding: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
  color: #333;
}
img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  border: none;
  display: inline-block;
  vertical-align: middle;
}
b {
  font-weight: bold;
}
p, li, dt, dl {
  line-height: 1.6;
}
p {
  margin: 0 0 1em 0;
  line-height: 1.7;
}
li {
  list-style-type: none;
}
blockquote {
  margin: 0;
  padding: 20px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1;
  font-weight: normal;
}
.clear {
  clear: both;
}
.pb30 {
  padding-bottom: 3%;
}
.mb30 {
  margin-bottom: 3%;
}
.pt30 {
  padding-top: 3%;
}
.mt30 {
  margin-top: 3%;
}
.pl30 {
  padding-left: 3%;
}
.ml30 {
  margin-left: 3%;
}
.pr30 {
  padding-right: 3%;
}
.mr30 {
  margin-right: 3%;
}
.ls0 {
  letter-spacing: 0em;
}
.ls01 {
  letter-spacing: 0.1em;
}
.ls-005 {
  letter-spacing: -0.05em;
}
.ls-01 {
  letter-spacing: -0.1em;
}
.ls-02 {
  letter-spacing: -0.2em;
}
.ls-03 {
  letter-spacing: -0.3em;
}
.ls-05 {
  letter-spacing: -0.5em;
}
@media screen and (min-width:641px) {
  .onlyPC {
    display: block;
  }
  .onlySP {
    display: none !important;
  }
}
@media screen and (max-width:640px) {
  .onlyPC {
    display: none !important;
  }
  .onlySP {
    display: block;
  }
}
ruby > rt {
  font-size: 50%;
  text-align: start;
  font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
}
rt {
  text-indent: 0px;
  line-height: normal;
  -webkit-text-emphasis: none;
}
ruby {
  text-indent: 0px;
	position: relative;
}
ruby rt {
  position: relative;
  top: 0.6ex;
}
/* =============================================
 リンク
============================================= */
a {
  display: inline-block;
  color: #e5005e;
  text-decoration: underline;
  transition: color 0.3s;
}
a:hover {
  text-decoration: none;
}
.wrap a {
  display: inline-block;
  color: #e5005e;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
/* =============================================
 ★animation 設定
適用したいクラスに下記のように設定する
animation: zoom 10s infinite;
============================================= */
/* ズームアクション */
@-webkit-keyframes zoom {
  100% {
    -webkit-transform: scale(1.05);
  }
}
@-moz-keyframes zoom {
  100% {
    -webkit-transform: scale(1.05);
  }
}
@keyframes zoom {
  100% {
    transform: scale(1.05);
  }
}
/* 少しあがる動き */
@-webkit-keyframes topMove {
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
  }
}
@-moz-keyframes topMove {
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
  }
}
@keyframes topMove {
  50% {
    transform: translate3d(0, -10px, 0);
  }
}
/* 点滅 */
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*  fade-in
---------------------------------------- */
section > .inner {
  transition: opacity 2s;
  -moz-transition: opacity 2s;
  -webkit-transition: opacity 2s;
  -o-transition: opacity 2s;
}
/* =============================================
 WRAP
============================================= */
.wrap {
  width: 100%;
  text-align: center;
  background-image: url("../img/pc/bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% auto;
}
@media screen and (max-width:768px) {
  .wrap {
    width: 100%;
    text-align: center;
    background-image: none;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% auto;
  }
  .wrap:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../img/pc/bg.jpg") center no-repeat;
    background-size: cover;
  }
}
/* =============================================
 ヘッダー
============================================= */
@media screen and (min-width:641px) {
  .header {
    width: 100%;
    display: block;
    background-image: url(../img/pc/visual2.png), url(../img/pc/bg2.jpg);
    background-position: top 5vw right -10%, center center;
    background-repeat: no-repeat, no-repeat;
    background-size: 85%, cover;
    position: relative;
    padding-top: 0;
  }
  .header:before {
    content: "";
    display: block;
    padding-top: 75%; /* 高さと幅の比を16:9に固定。9/16*100=56.25 */
  }
  .header h1.logo img {
    position: absolute;
    top: 42vw;
    left: -2%;
    width: 50%;
  }
  .header .intro_oadate {
        width: 42%;
    height: auto;
    top: 57vw;
    left: 4%;
    position: absolute;
  }
  .header .intro_youtube {
    width: 20%;
    height: auto;
    top: 10vw;
    right: 65%;
    position: absolute;
    transform: rotate( 5deg );
  }
  .header .intro_tver {
        width: 18%;
    height: auto;
    top: 10vw;
    right: 30%;
    position: absolute;
    transform: rotate( -15deg );
  }
  .header .intro_game {
    width: 20%;
    height: auto;
    bottom: 48vw;
    left: 4%;
    position: absolute;
    transform: rotate( -15deg );
  }
}
@media screen and (min-width:1000px) {
  .header {
    width: 100%;
    height: 63vw;
    display: block;
    background-image: url("../img/pc/visual2.png"), url("../img/pc/bg2.jpg");
    background-position: top 2vw right, center center;
    background-repeat: no-repeat, no-repeat;
    background-size: 70%, cover;
    position: relative;
  }
  .header h1.logo img {
    position: absolute;
    top: 6vw;
    left: 4%;
    width: 40%;
    /* margin-right: -550px; 
    max-width: 569px;*/
  }
  .header .intro_oadate {
    width: 32%;
    /* height: 163px; */
    top: 25vw;
    left: 5.5%;
    /* margin-right: -495px; */
    position: absolute;
  }
  .header .intro_youtube {
        max-width: 318px;
    width: 17%;
    /* bottom: 18vw;
    top: 35vw;
    left: 37%; */
    top: 34vw;
    left: 22%;
    position: absolute;
    transform: rotate( 10deg );
  }
  .header .intro_tver {
    max-width: 272px;
    width: 14.5%;
    /* bottom: 15.5vw; */
    top: 36.5vw;
    left: 22%;
    position: absolute;
    transform: rotate( -5deg );
  }
  .header .intro_game {
   max-width: 257px;
    width: 14%;
    bottom: 20vw;
    left: 8%;
    position: absolute;
    transform: rotate( -15deg );
  }
}
.header .intro_youtube a:hover, .header .intro_youtube a:focus, .header .intro_youtube a:active, .header .intro_tver a:hover, .header .intro_tver a:focus, .header .intro_tver a:active, .header .intro_game a:hover, .header .intro_game a:focus, .header .intro_game a:active {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}
@media screen and (max-width:640px) {
  .header {
    display: block;
    background-image: url(../img/pc/visual2.png), url(../img/pc/bg2.jpg);
    background-position: top 3vw right, center center;
    background-repeat: no-repeat, no-repeat;
    background-size: 103%, cover;
    width: 100%;
    height: 0;
    padding-bottom: 195%;
    position: relative;
  }
  .header h1.logo img {
    position: absolute;
    top: 58vw;
    right: 24.5%;
    width: 80%;
  }
  .header .intro_oadate {
    width: 63%;
    height: auto;
    top: 102vw;
    right: 34.5%;
    position: absolute;
  }
  .header .intro_youtube {
    width: 30%;
    height: auto;
    top: 3vw;
    left: 0;
    position: absolute;
  }
  .header .intro_tver {
        width: 30%;
    height: auto;
    top: 3vw;
    left: 1%;
    position: absolute;
    transform: rotate( -10deg );
  }
  .header .intro_game {
        width: 30%;
    height: auto;
    top: 75vw;
    left: 68%;
    position: absolute;
    transform: rotate( 10deg );
  }
}
/* =============================================
  共通 メニュー
============================================= */
/* スマホ用ハンバーガーメニュー */
.navi_btn {
  background: url(../img/smp/btn_navi_op.png) no-repeat 0 0;
  background-size: 100% auto;
  display: block;
  width: 16%;
  height: 12%;
  position: absolute;
  top: 10px;
  right: 2.5%;
  cursor: pointer;
  z-index: 200;
}
.navi_close {
  background: url(../img/smp/btn_navi_cl.png) no-repeat 0 0;
  background-size: 100% auto;
  display: block;
  width: 16%;
  height: 12%;
  position: absolute;
  top: 10px;
  right: 2.5%;
  cursor: pointer;
  z-index: 300;
}
.navi_drawr {
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 50px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}
.navi_smp li {
  width: 100%;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid #ddc3d4;
}
.navi_smp li:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #e95098;
  border-right: 3px solid #e95098;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 35px;
  left: 15px;
}
.navi_smp li a {
  color: #e5005e;
  font-weight: bold;
  display: block;
  padding: 30px 30px 30px 50px;
  text-align: left;
  text-decoration: none;
}
.wrapfixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
/* PC用メニュー */
@media screen and (min-width:641px) {
  .navi_box {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    top: -30px;
    z-index: 50;
  }
  .navi_pc:after {
    content: "";
    display: block;
    clear: both;
  }
  .navi_pc {
    font-size: 0;
    text-align: center;
  }
  .navi_pc li {
    font-size: 1rem;
    display: inline-block;
    width: 18%;
    padding: 0;
    position: relative;
    margin-right: -2%;
  }
  .navi_pc li:nth-child(1n) span {
    position: absolute;
    line-height: 1.1;
    top: 53px;
    left: 0px;
    z-index: 10;
    font-size: 1.0rem;
    font-weight: bold;
    color: #e95098;
    background: url("../img/pc/bg_update01.png") no-repeat center center;
    background-size: 40px;
    width: 40px;
    height: 40px;
    padding: 11px 0 0 0;
  }
  .navi_pc li:nth-child(2n) span {
    position: absolute;
    line-height: 1.1;
    top: 53px;
    left: 0px;
    z-index: 10;
    font-size: 1.0rem;
    font-weight: bold;
    color: #43a9bf;
    background: url("../img/pc/bg_update02.png") no-repeat center center;
    background-size: 40px;
    width: 40px;
    height: 40px;
    padding: 11px 0 0 2px;
  }
  .navi_pc li a {
    position: relative;
  }
}
@media screen and (min-width:680px) and (min-width:699px) {
  .navi_pc li span {
    top: 0;
  }
}
@media screen and (min-width:700px) and (min-width:719px) {
  .navi_pc li span {
    top: 0;
  }
}
@media screen and (min-width:720px) and (min-width:739px) {
  .navi_pc li span {
    top: 0;
  }
}
@media screen and (min-width:740px) and (min-width:759px) {
  .navi_pc li span {
    top: 50%;
  }
}
@media screen and (min-width:760px) and (min-width:779px) {
  .navi_pc li span {
    top: 2%;
  }
}
@media screen and (min-width:780px) and (min-width:799px) {
  .navi_pc li span {
    top: 3%;
  }
}
@media screen and (min-width:800px) and (min-width:819px) {
  .navi_pc li span {
    top: 3%;
  }
}
@media screen and (min-width:820px) and (min-width:839px) {
  .navi_pc li span {
    top: 4%;
  }
}
@media screen and (min-width:840px) and (min-width:859px) {
  .navi_pc li span {
    top: 5%;
  }
}
@media screen and (min-width:860px) and (min-width:879px) {
  .navi_pc li span {
    top: 6%;
  }
}
@media screen and (min-width:880px) and (min-width:899px) {
  .navi_pc li span {
    top: 7%;
  }
}
@media screen and (min-width:900px) {
  .navi_pc li:nth-child(1n) span {
    position: absolute;
    line-height: 1.1;
    top: 58px;
    left: -15px;
    z-index: 10;
    font-size: 1.2rem; /* 12pt */
    font-weight: bold;
    color: #e95098;
    background: url("../img/pc/bg_update01.png") no-repeat center center;
    background-size: 50px;
    width: 50px;
    height: 50px;
    padding: 14px 0 0 0;
  }
  .navi_pc li:nth-child(2n) span {
    position: absolute;
    line-height: 1.1;
    top: 58px;
    left: -15px;
    z-index: 10;
    font-size: 1.2rem; /* 12pt */
    font-weight: bold;
    color: #43a9bf;
    background: url("../img/pc/bg_update02.png") no-repeat center center;
    background-size: 50px;
    width: 50px;
    height: 50px;
    padding: 14px 0 0 2px;
  }
}
@media screen and (min-width:1000px) {
  .navi_box {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    top: -40px;
    z-index: 50;
  }
  .navi_pc {
    width: 1000px;
    margin: 0 auto;
    max-width: 100%;
  }
}
.navi_pc li a {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.navi_pc li a:hover {
  -webkit-transform: translate(0, 10px);
  -ms-transform: translate(0, 10px);
  -o-transform: translate(0, 10px);
  transform: translate(0, 10px);
  /*animation: boundAnime 0.3s ease-out;
	transform-origin: 50% 50%;
	*/
}
/*スライドバナー(ヘッダー)*/
.bnr_list_top li {
  /*margin-bottom: 2%;*/
}
.hd_bnr {
  max-width: 820px;
}
@media screen and (min-width:641px) {
  .hd_bnr {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 4% 4%;
    margin: 0 auto;
  }
  .bnr_list_top {
    text-align: center;
    font-size: 0;
  }
  .bnr_list_top li {
    /*width: calc(49% - 2px);
    margin: 0 0.5% 1%;
    display: inline-block;
    border: 2px solid #10b6c3;*/
    width: 50%;
    margin: 0 auto 12px;
  }
}
@media screen and (min-width:1000px) {
  .hd_bnr {
    padding: 0;
	  position: absolute;
    bottom: 2.5vw;
    left: 0;
    right: 0;
  }
  .bnr_list_top li:first-child {
    /*margin: 0 20px 12px 0;
    width: 100%; */
  }
  .bnr_list_top li:nth-of-type(2n) {
    margin-right: 0;
 }
}
@media screen and (max-width:640px) {
  .hd_bnr {
    /*margin: 0 3% 13%;*/
    margin: 0 3%;
	  padding-top: 108vw;
  }
  .bnr_list_top li {
    margin-bottom: 0;
    /*border: 2px solid #10b6c3;*/
  }
}
/* =============================================
 スマホバナー下ボタン　※TOPのみ使用
============================================= */
/* スマホのみ */
.sptopbtn {
  width: 100%;
    height: 52vw;
    margin: 0;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
}
.storybtn {
  width: 50%;
  height: 60vw;
  background: url(../img/smp/btn_story.png) top left no-repeat;
  background-size: 100%;
  text-indent: -9999px;
}
.charabtn {
  width: 50%;
  height: 60vw;
  background: url(../img/smp/btn_character.png) top left no-repeat;
  background-size: 100%;
  text-indent: -9999px;
}
.storybtn a, .charabtn a {
  display: block;
  height: 60vw;
}
/*スペシャルムービー*/
.bg_video {
  width: 65%;
  max-width: 650px;
  padding-bottom: 36.5625%;
  height: 0px;
  position: relative;
  border: #e95098 6px solid;
  margin: 10px auto 25px;
  border-radius: 5px;
}
.bg_video2 {
  width: 90%;
  max-width: 650px;
  padding-bottom: 50.625%;
  height: 0px;
  position: relative;
  border: none;
  margin: 10px auto 25px;
  border-radius: 5px;
}
.bg_video iframe ,.bg_video2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie h3 {
  color: #e95098;
  font-size: 3.0rem;
  line-height: 1.5;
  font-family: "Shuei MaruGo B";
  padding: 0;
  text-shadow: 0px 4px 1px #fff, 1px 3px 1px #fff, 2px 3px 1px #fff, 2px 2px 1px #fff, 3px 2px 1px #fff, 3px 1px 1px #fff, 4px 0px 1px #fff, 3px -1px 1px #fff, 3px -2px 1px #fff, 2px -2px 1px #fff, 2px -3px 1px #fff, 1px -3px 1px #fff, 0px -4px 1px #fff, -1px -3px 1px #fff, -2px -3px 1px #fff, -2px -2px 1px #fff, -3px -2px 1px #fff, -3px -1px 1px #fff, -4px 0px 1px #fff, -3px 1px 1px #fff, -3px 2px 1px #fff, -2px 2px 1px #fff, -2px 3px 1px #fff, -1px 3px 1px #fff;
}
.movie h3 span {
  font-size: 2.0rem;
}
.movie p {
  line-height: 1.8;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.movie p span {
  color: #e95098;
  font-weight: bold;
  font-size: 1.8rem;
}
.movie .cap {
  line-height: 1.8;
  text-align: center;
  font-size: 3.8vw;
  margin: -10px auto 20px;
  padding: 10px;
  width: 100%;
  font-family: "Shuei MaruGo B";
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width:641px) {
  .movie .cap {
    font-size: 1.8rem;
    width: 80%;
	  padding: 20px;
	  margin: -10px auto 30px;
  }
}
@media screen and (min-width:1000px) {
  .bg_video {
    width: 720px;
    max-width: 720px;
    padding-bottom: 398px;
    height: 0px;
    position: relative;
    border: #e95098 6px solid;
    /*margin: 20px auto 65px;*/
    margin: 20px auto 30px;
    border-radius: 5px;
  }
  .bg_video2 {
    width: 720px;
    max-width: 720px;
    padding-bottom: 398px;
    height: 0px;
    position: relative;
    border: none;
    /*margin: 20px auto 65px;*/
    margin: 20px auto 30px;
    border-radius: 5px;
  }
	.bg_video iframe, .bg_video2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
	.movie .cap {
    font-size: 1.8rem;
    width: 60%;
  }
}

@media screen and (max-width:640px) {
  .movie h3 {
    font-size: 2.3rem;
  }
  .movie h3 span {
    font-size: 1.6rem;
  }
  .bg_video {
    width: 100%;
    max-width: 100%;
    padding-bottom: 54%;
    height: 0;
    position: relative;
    margin: 10px auto 25px;
    border: #e95098 5px solid;
    border-radius: 5px;
  }
  .bg_video {
    width: 100%;
    max-width: 100%;
    padding-bottom: 54%;
    height: 0;
    position: relative;
    margin: 10px auto 25px;
    border: #e95098 3px solid;
    border-radius: 5px;
  }
	.bg_video iframe, .bg_video2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .movie p {
    font-size: 1.5rem;
  }
  .movie p span {
    font-size: 1.7rem;
  }
}
/* =============================================
 フッター
============================================= */
.footer {
  display: block;
  clear: both;
  margin-top: 80px;
}
@media screen and (min-width:641px) and (max-width:1000px) {
  .footer {
    display: block;
    clear: both;
    margin-top: 50px;
  }
}
@media screen and (max-width:640px) {
  .footer {
    display: block;
    clear: both;
    margin-top: 40px;
  }
}
/*フッターバナー*/
.ft_bnr {
  padding: 0 3% 8%;
}
.bnr_list_bottom li {
  margin-bottom: 2%;
  border: 2px solid #e95098;
}
@media screen and (min-width:641px) {
  .ft_bnr {
    padding: 0 4% 5vw;
    margin: 0 auto;
  }
  .bnr_list_bottom li {
    width: calc(49% - 2px);
    margin: 0 0.5% 1%;
    display: inline-block;
    border: 2px solid #e95098;
  }
}
@media screen and (min-width:1000px) {
  .ft_bnr {
    width: 1000px;
    max-width: 100%;
    padding: 0;
    margin: 0 auto 50px auto;
  }
  .bnr_list_bottom li {
    width: 462px;
    margin: 0 12px 12px 0;
  }
  .bnr_list_bottom li:nth-of-type(2n) {
    margin-right: 0;
  }
}
/* アプリ＆有料コンテンツバナー
---------------------------------------- */
.md_bnr {
  padding: 0 3% 0;
}
.bnr_list_middle {
  text-align: center;
}
.bnr_list_middle li {
  margin-bottom: 2%;
  /*border: 2px solid #01b3bf;*/
}
@media screen and (min-width:641px) {
  .md_bnr {
    padding: 0 3%;
    margin: 0 auto;
  }
  .bnr_list_middle li {
    width: calc(49% - 2px);
    margin: 0 0.5% 1%;
    display: inline-block;
    /*border: 2px solid #01b3bf;*/
  }
}
@media screen and (min-width:1000px) {
  .md_bnr {
    width: 1000px;
    padding: 0;
  }
  .bnr_list_middle li {
    width: 462px;
    margin: 0 12px 12px 0;
  }
  .bnr_list_middle li:nth-of-type(2n) {
    margin-right: 0;
  }
  /*	3個で表示させる時 */
  .md_bnr.three {
    padding: 0 30px 80px;
  }
  .md_bnr.three .bnr_list_bottom li {
    width: 305px;
    margin: 0 12px 12px 0;
  }
}
/*SNS*/
.ft_sns:after {
  content: "";
  display: block;
  clear: both;
}
.sns_list {
  text-align: center;
  padding: 6% 0 4%;
}
.sns_list li {
  display: inline-block;
  width: 60px;
  margin: 0 15px 0 0;
}
.sns_list li:nth-of-type(3n) {
  margin: 0;
}
.sns_list li img {
  vertical-align: middle;
}
@media screen and (min-width:641px) {
  .sns_list {
    padding: 3% 0;
  }
}
@media screen and (min-width:1000px) {
  .sns_list {
    padding: 30px 0;
  }
}
/*注意文*/
.ft_caution {
  padding: 0 0 3%;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #444;
  font-weight: bold;
  text-shadow: 0 0 10px #fff;
}
.ft_caution dd {
  text-align: left;
  padding: 0 10% 0;
}
@media screen and (min-width:1000px) {
  .ft_caution {
    width: 940px;
    max-width: 100%;
    padding: 0 30px 20px;
    margin: 0 auto;
  }
  .ft_caution dd {
    text-align: left;
    padding: 0;
  }
}
@media screen and (max-width:640px) {
  .ft_caution {
    width: 95%;
    padding: 0 0 6%;
    font-size: 1.2rem;
    margin: 0 2.5%;
    font-weight: normal;
  }
  .ft_caution dd {
    text-align: left;
    padding: 0;
  }
}
/*コピーライト*/
.ft_copy {
  margin: 0 auto;
  padding: 10px 0;
  background: #e95098;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ft_copy {
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1.5;
}
/*ページトップ*/
.pageTop {
  position: fixed;
  bottom: -10px;
  right: 10px;
  z-index: 1000;
}
.pageTop img {
  width: 130px;
}
@media screen and (min-width:1000px) {
  .pageTop img {
    width: 180px;
  }
}
@media screen and (max-width:640px) {
  .pageTop {
    right: 0;
  }
  .pageTop img {
    width: 110px;
  }
}
.pageTop a {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.pageTop a:hover {
  -webkit-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  -o-transform: translate(0, -10px);
  transform: translate(0, -10px);
  /*animation: boundAnime 0.3s ease-out;
	transform-origin: 50% 50%;
	*/
}
/* =============================================
 コンテンツ
============================================= */
/*共通背景ピンク*/
.contbox_pink {
  background: url("../img/common/bg_pink.png");
  background-size: 90px 90px;
  position: relative;
  padding: 25px 0;
}
.contbox_pink:before {
  display: block;
  content: "";
  background: url("../img/common/bg_pink_top.png") repeat-x top center;
  background-size: contain;
  width: 100%;
  height: 30px;
  position: absolute;
  top: -4vw;
  left: 0;
}
@media screen and (min-width:641px) {
  .contbox_pink:before {
    height: 40px;
    top: -2.5vh;
  }
}
@media screen and (min-width:1000px) {
  .contbox_pink {
    padding: 45px 0;
  }
  .contbox_pink:before {
    height: 40px;
    top: -3vh;
  }
}
/*共通背景ホワイト*/
.contbox_white {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 25px 0;
}
.contbox_white:before {
  display: block;
  content: "";
  background: url("../img/common/bg_white_line.png") repeat-x top center;
  background-size: contain;
  width: 100%;
  height: 30px;
  position: absolute;
  top: -4vw;
  left: 0;
}
@media screen and (min-width:641px) {
  .contbox_white:before {
    height: 40px;
    top: -2.5vh;
  }
}
@media screen and (min-width:1000px) {
  .contbox_white {
    padding: 45px 0;
  }
  .contbox_white:before {
    height: 40px;
    top: -3vh;
  }
}
/*共通背景イエロー*/
.contbox_yellow {
  background: url("../img/common/kira.png"), url("../img/common/bg_yellow.png");
  background-size: 250%, 14px 14px;
  background-repeat: repeat, repeat;
  position: relative;
  padding: 25px 0;
}
.contbox_yellow:before {
  display: block;
  content: "";
  background: url("../img/common/bg_yellow_top.png") repeat-x top center;
  background-size: contain;
  width: 100%;
  height: 30px;
  position: absolute;
  top: -4vw;
  left: 0;
}
@media screen and (min-width:641px) {
  .contbox_yellow:before {
    height: 40px;
    top: -2.5vh;
  }
}
@media screen and (min-width:1000px) {
  .contbox_yellow {
    background-size: 100%, 16px 16px;
    padding: 45px 0;
  }
  .contbox_yellow:before {
    height: 40px;
    top: -3vh;
  }
}
.inner {
  width: 100%;
  max-width: 100%;
  padding: 0 3%;
}
@media screen and (min-width:1000px) {
  .inner {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
  }
}
.inner:after {
  content: "";
  display: block;
  clear: both;
}
/* 大タイトル */
.title {
  background-image: url("../img/common/ttl_bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
}
@media screen and (min-width:641px) {
  .title {
    width: 50%;
    height: 0;
    padding-bottom: 14.16%;
    margin: 0 auto 2%;
    background-size: cover;
  }
  .title img {
    position: absolute;
    top: 2vw;
    left: 0;
  }
}
@media screen and (min-width:1000px) {
  .title {
    width: 480px;
    height: 136px;
    margin: 0 auto 30px;
    padding-bottom: 0;
    background-size: cover;
  }
  .title img {
    position: absolute;
    top: 17px;
    left: 0;
  }
}
@media screen and (max-width:640px) {
  .title {
    width: 100%;
    height: 0;
    padding-bottom: 28.252%;
    margin: 0 auto 3%;
    background-size: cover;
  }
  .title img {
    position: absolute;
    top: 3.2vw;
    left: 0;
  }
}
/* ニュース
---------------------------------------- */
.news_list {
  padding: 1% 3% 3%;
  text-align: left;
  line-height: 1.7;
}
.news_list li {
  padding-bottom: 2%;
  margin-bottom: 1%;
}
.news_list .link {
  width: 15px;
  margin-left: 15px;
}
.news_list dl:after {
  content: "";
  display: block;
  clear: both;
}
.news_list dt {
  float: left;
  width: 120px;
  color: #333;
  position: relative;
}
.news_list dd {
  float: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% - 120px);
  position: relative;
}
@media screen and (max-width:640px) {
  .news_list {
    padding: 1% 3% 0;
    font-size: 1.5rem;
  }
  .news_list li {
    padding-bottom: 2%;
    margin-bottom: 3%;
  }
  .news_list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .news_list dl.new dt:after {
    display: block;
    content: "";
    background: url("../img/common/ico_new.png") no-repeat;
    background-size: 100% auto;
    width: 50px;
    height: 20px;
    padding: 5px 0;
    position: absolute;
    top: 1.6em;
    left: 0;
    -webkit-animation: blink 1s infinite alternate;
    -moz-animation: blink 1s infinite alternate;
    animation: blink 1s infinite alternate;
  }
  .news_list dl dt {
    padding-bottom: 20px;
    width: 110px;
  }
  .news_list dd {
    width: calc(100% - 110px);
  }
}
@media screen and (min-width:641px) {
  .news_list {
    padding: 0;
    text-align: left;
    line-height: 1.7;
    width: 90%;
    margin: 0 auto;
  }
  .news_list dl.new dd:before {
    display: block;
    content: "";
    background: url("../img/common/ico_new.png") no-repeat;
    background-size: 100% auto;
    width: 50px;
    height: 30px;
    padding: 5px 0;
    position: absolute;
    top: 5px;
    left: 0;
    -webkit-animation: blink 1s infinite alternate;
    -moz-animation: blink 1s infinite alternate;
    animation: blink 1s infinite alternate;
  }
  .news_list dl.new dd {
    padding-left: 60px;
  }
}
@media screen and (min-width:1000px) {
  .news_list {
    padding: 0;
    text-align: left;
    line-height: 1.7;
    width: 820px;
    margin: 0 auto;
  }
}
/* 次回予告
---------------------------------------- */
.story_title {
  margin-bottom: 20px;
}
.story_title p {
  color: #e95098;
  font-family: "Shuei MaruGo B";
  font-size: 1.8rem;
  margin-bottom: 0;
}
.story_title p span.num {
  font-size: 2.4rem;
}
.story_title p span.date {
  color: #333;
  font-size: 1.6rem;
}
.story_title p.news {
  font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
	margin-bottom: 8px;
}
.story_title p.news span {
  color: #333;
  font-size: 1.6rem;
}
@media screen and (max-width:640px) {
.story_title p.news {
	line-height: 1.2;
}
.story_title p.news span {
  font-size: 1.4rem;
}
}
	.story_title h3 {
  color: #e95098;
  font-size: 2.4rem;
  line-height: 1.3;
  font-family: "Shuei MaruGo B";
  padding: 0;
  text-shadow: 0px 4px 1px #fff, 1px 3px 1px #fff, 2px 3px 1px #fff, 2px 2px 1px #fff, 3px 2px 1px #fff, 3px 1px 1px #fff, 4px 0px 1px #fff, 3px -1px 1px #fff, 3px -2px 1px #fff, 2px -2px 1px #fff, 2px -3px 1px #fff, 1px -3px 1px #fff, 0px -4px 1px #fff, -1px -3px 1px #fff, -2px -3px 1px #fff, -2px -2px 1px #fff, -3px -2px 1px #fff, -3px -1px 1px #fff, -4px 0px 1px #fff, -3px 1px 1px #fff, -3px 2px 1px #fff, -2px 2px 1px #fff, -2px 3px 1px #fff, -1px 3px 1px #fff;
}
.story_title h3.end {
  font-size: 2.0rem;
  line-height: 1.5;
}
.story_txt {
  text-align: left;
  margin-bottom: 4%;
}
.story_txt span {
  color: #e95098;
  font-weight: bold;
}
/* タイトル以外 原稿なし */
.comingsoon {
  color: #891085;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3%;
}
.story_pict_wrap_top {
  width: 65%;
  max-width: 650px;
  padding-bottom: calc(38.35% - 7px);
  height: 0px;
  position: relative;
  border: #e95098 6px solid;
  margin: 10px auto 25px;
  border-radius: 5px;
}
@media screen and (min-width:641px) {
  .story_title {
    margin-bottom: 20px;
  }
  .story_txt {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .story_txt.one {
    float: none;
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width:1000px) {
  .story_txt {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 1%;
    text-align: center;
  }
  .story .bg_video {
    margin: 10px auto 30px;
  }
}
@media screen and (max-width:640px) {
  .story_title h3 {
    font-size: 2.0rem;
  }
  .story_title h3.end {
  font-size: 1.7rem;
}
  .story_txt, .story_txt p {
    margin: 0;
  }
  .story_title {
    padding: 0;
    margin-bottom: 3%;
  }
  .story_pict_wrap_top {
    width: 100%;
    max-width: 100%;
    padding-bottom: calc(59% - 6px);
    height: 0px;
    position: relative;
    margin: 15px auto 25px;
    border: #e95098 5px solid;
    border-radius: 5px;
  }
}
/* あらすじ
---------------------------------------- */
.summary .txt {
  line-height: 1.8;
  font-family: "Shuei MaruGo B";
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (min-width:641px) {
  .summary .inner {
    width: 100%;
    margin: 0;
  }
  .summary .txt {
    padding: 0;
    width: 90%;
    margin: 0 5%;
    font-size: 1.8rem;
  }
  .summary .inner .pic {
    width: 70%;
    margin: 25px 15% 50px;
  }
}
@media screen and (min-width:1000px) {
  .summary .inner {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
  }
  .summary .txt {
    padding: 0 30px;
    width: 940px;
    margin: 0 auto;
    font-size: 1.8rem;
  }
  .summary .inner .pic {
    width: 790px;
    margin: 50px auto;
  }
}
@media screen and (max-width:640px) {
  .summary .inner {
    width: 100%;
    margin: 0;
  }
  .summary .txt {
    padding: 0;
    width: 96%;
    margin: 0 2%;
    font-size: 1.6rem;
  }
  .summary .inner .pic {
    width: 96%;
    margin: 15px 2% 20px;
  }
}
/* =============================================
 下層＜共通ヘッダー＞
============================================= */
.header_subpage {
  position: relative;
  width: 100%;
  height: 15vw;
  z-index: 2;
}
.header_subpage:after {
  display: block;
  content: "";
  background: url("../img/common/bg_head.png") bottom center no-repeat;
  background-size: auto 10vw;
  width: 100%;
  height: 10vw;
  position: absolute;
  bottom: -3.3vw;
}
.header_subpage .btn_gotop {
  position: absolute;
  right: 50%;
  top: 2vw;
  width: 20%;
  margin-right: -47%;
}
.header_subpage .btn_gotop a:hover, .header_subpage .btn_gotop a:focus, .header_subpage .btn_gotop a:active {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}
@media screen and (min-width:641px) {
  .header_subpage {
    position: relative;
    z-index: 2;
    height: 20vw;
  }
  .header_subpage .navi_box {
    width: 100%;
    position: absolute;
    bottom: 0;
    top: -30px;
    z-index: 50;
  }
  .header_subpage .header_inner {
    position: relative;
    widows: 100%;
    margin: 0 auto 0;
  }
  .header_subpage .logo_subpage {
    width: 40%;
    top: 5vw;
    z-index: 4;
    left: 50%;
    margin-left: -20%;
    position: absolute;
  }
}
.header_subpage .oatime_subpage {
  width: 35%;
  position: absolute;
  top: 8.5vw;
  left: 2%;
  right: 0;
}
.header_subpage .btn_gotop {
  position: absolute;
  right: 0;
  top: 9vw;
  width: 18%;
  z-index: 20;
  margin-right: 2%;
}
@media screen and (min-width:1000px) {
  .header_subpage {
    position: relative;
    width: 100%;
    height: 200px;
    z-index: 2;
  }
  .header_subpage:after {
    display: block;
    content: "";
    background: url("../img/common/bg_head.png") bottom center no-repeat;
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: -3.3vw;
    background-size: cover;
  }
  .header_subpage .header_inner {
    position: relative;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
  }
  .header_subpage .navi_box {
    width: 100%;
    height: 90px;
    position: absolute;
    bottom: 0;
    top: -40px;
    z-index: 50;
  }
  .header_subpage .logo_subpage {
    width: 400px;
    top: 50px;
    left: 50%;
    margin-left: -200px;
    position: absolute;
    z-index: 4;
  }
  .header_subpage .oatime_subpage {
    position: absolute;
    top: 80px;
    left: 0;
    width: 330px;
  }
  .header_subpage .btn_gotop {
    position: absolute;
    top: 100px;
    right: 0;
    width: 150px;
    margin-right: 20px;
  }
}
@media screen and (max-width:640px) {
  .header_subpage {
    width: 100%;
    height: 22vw;
  }
  /* スマホ用ハンバーガーメニュー */
  .subpage .navi_btn {
    height: 100%;
    top: 10px;
  }
  .subpage .navi_close {
    position: absolute;
    height: 100%;
  }
  .header_subpage h1.logo_subpage img {
    width: 50%;
    top: -2px;
    left: 50%;
    margin-left: -25%;
    position: absolute;
    z-index: 4;
  }
  .header_subpage .btn_gotop {
    position: absolute;
    left: 50%;
    top: 6vw;
    width: 25%;
    margin-left: -47%;
  }
}
/* =============================================
 下層＜共通＞
============================================= */
.subpage .contents {
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width:640px) {
  .subpage .contents {
    margin: 0 auto;
    padding: 7vw 0;
  }
}
@media screen and (min-width:1000px) {
  .subpage .contents {
    margin: 0 auto;
    padding: 80px 0;
  }
}
/* =============================================
  共通 ボタン
============================================= */
/* ピンク大ボタン */
.btn {
  text-align: center;
}
.btn a {
  width: 300px;
  padding: 0.60em 0 0.75em;
  font-family: "Shuei MaruGo B";
  font-size: 2.4rem;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  line-height: 1;
  margin: 25px auto;
  text-decoration: none;
  background-color: #ed539b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f073ae), color-stop(#ed539b), to(#ea3388));
  background-image: -webkit-linear-gradient(top, #f073ae, #ed539b, #ea3388);
  background-image: linear-gradient(180deg, #f073ae, #ed539b, #ea3388);
  border: 1px solid #ea3388;
}
.btn a:after {
  content: "";
  display: inline-block;
  margin-left: 20px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn a:hover, .btn a:focus, .btn a:active {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}
/* ピンク小ボタン */
.btn_s {
  margin: 0 auto;
  text-align: center;
}
.btn_s a {
  padding: 0.75em 2.25em 0.75em 1.25em;
  margin: 0 auto;
  position: relative;
  display: inline-block;
  font-family: "Shuei MaruGo B";
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  background-color: #ed539b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f073ae), color-stop(#ed539b), to(#ea3388));
  background-image: -webkit-linear-gradient(top, #f073ae, #ed539b, #ea3388);
  background-image: linear-gradient(180deg, #f073ae, #ed539b, #ea3388);
  border: 1px solid #ea3388;
  border-radius: 100px;
}
.btn_s a:after {
  content: "";
  display: inline-block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 8%;
}
.btn_s a:hover {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}
.btn_next {
  text-align: right;
}
.btn_prev {
  text-align: left;
}
.btn_prev a {
  padding: 0.75em 1.25em 0.75em 2.25em;
}
.btn_prev a:after {
  transform: rotate(225deg);
  right: inherit;
  left: 8%;
}
@media screen and (min-width:641px) {
  .btn_s a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:640px) {
  .btn a {
    width: 280px;
    font-size: 2.0rem;
  }
  .btn a:after {
  margin-left: 5px;
	  margin-bottom: 2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  }
}
/* 下層共通 コンテンツボックス
---------------------------------------- */
.contents.bg_white {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.contents.bg_white:after {
  display: block;
  content: "";
  background: url(../img/common/bg_white_line.png) repeat-x bottom center;
  background-size: contain;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -2.5vw;
  left: 0;
}
@media screen and (min-width:641px) {
  .contents.bg_white:after {
    background: url(../img/common/bg_white_line.png) repeat-x bottom center;
    bottom: -25px;
    height: 40px;
    width: 100%;
  }
}
.contents.bg_yellow {
  position: relative;
}
.contents.bg_yellow:after {
  display: block;
  content: "";
  background: url(../img/common/bg_yellow_top.png) repeat-x bottom center;
  background-size: contain;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -2.5vw;
  left: 0;
}
@media screen and (min-width:641px) {
  .contents.bg_yellow:after {
    background: url(../img/common/bg_yellow_top.png) repeat-x bottom center;
    bottom: -25px;
    height: 40px;
    width: 100%;
  }
}
.contents.bg_pink {
  position: relative;
}
.contents.bg_pink:after {
  display: block;
  content: "";
  background: url(../img/common/bg_pink_top.png) repeat-x bottom center;
  background-size: contain;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -2.5vw;
  left: 0;
}
@media screen and (min-width:641px) {
  .contents.bg_pink:after {
    background: url(../img/common/bg_pink_top.png) repeat-x bottom center;
    bottom: -25px;
    height: 40px;
    width: 100%;
  }
}
/* 下層共通 一覧ページ (ニュース／ストーリー）
---------------------------------------- */
.listpage {
  padding: 0;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width:640px) {
  .listpage {
    width: 100%;
  }
}
/* 一覧ボックスCSS */
ul.listbox {
  margin: 0 0 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.listbox li {
  width: 47.7%;
  margin: 0 4% 6% 0;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.listbox li:nth-child(2n) {
  margin: 0 0 6% 0;
}
.listbox li:after {
  content: "";
  width: 100%;
  height: 3vw;
  background: url(../img/pc/heart_line_s.png) bottom no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -20px;
}
@media screen and (min-width:1000px) {
  .listbox li:after {
    height: 25px;
  }
}
.listpage:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width:640px) {
  .listbox li {
    float: left;
    width: 100%;
    margin: 0 0 14% 0;
  }
  .listbox li:nth-child(2n) {
    margin: 0 0 14% 0;
  }
  .listbox li:after {
    content: "";
    width: 100%;
    height: 8vw;
    background: url(../img/smp/heart_line.png) bottom no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: -30px;
  }
}
.listbox a {
  text-decoration: none;
}
.listbox a:hover {
  opacity: 0.7;
}
.listbox dt.pict {
  float: left;
  width: 40%;
  height: 0;
  padding-bottom: 22.25%;
  margin-right: 4%;
  border-radius: 4px;
  border: 4px solid #e95098;
  background-color: #e95098;
}
.listbox dd {
  width: 56%;
  float: left;
  line-height: 1.6;
  text-align: left;
  font-size: 1.5rem;
}
.listbox dd.date {
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
}
.listbox dd.epi {
  color: #e95098;
  font-size: 1.4rem;
  font-weight: bold;
}
.listbox dd.epi span {
  color: #e95098;
  font-size: 2.0rem;
}
.story .listbox dd.epi span.date {
  color: #333;
  font-size: 1.3rem;
}
@media screen and (max-width:790px) {
  .listbox dd.epi {
    font-size: 1.2rem;
  }
  .listbox dd.epi span {
    font-size: 1.5rem;
  }
  .story .listbox dd.epi span.date {
    font-size: 1.1rem;
  }
}
@media screen and (max-width:640px) {
  .listbox dd.epi {
    font-size: 1.4rem;
  }
  .listbox dd.epi span {
    font-size: 1.8rem;
  }
  .story .listbox dd.epi span.date {
    font-size: 1.1rem;
  }
}
/* OA時間変更のお知らせ　*/
.oa_news {
  padding: 3%;
  margin: 0 3% 5%;
  font-weight: bold;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px; /* CSS3草案 */
  -webkit-border-radius: 5px; /* Safari,Google Chrome用 */
  -moz-border-radius: 5px; /* Firefox用 */
  text-align: center;
  border: 3px solid #e95098;
  position: relative;
}
@media screen and (min-width:641px) {
  .oa_news {
    padding: 2%;
    margin: -30px 4% 2%;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
  }
}
@media screen and (min-width:1000px) {
  .oa_news {
    margin: -15px auto 2%;
    max-width: 940px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px; /* CSS3草案 */
    -webkit-border-radius: 5px; /* Safari,Google Chrome用 */
    -moz-border-radius: 5px; /* Firefox用 */
  }
}
/* キャラクターポップアップ(ティザーのみ)
magnific-popup を上書き
---------------------------------------- */
.mfp-chara .mfp-iframe-scaler iframe {
  box-shadow: none;
}
.mfp-chara .mfp-container {
  padding: 0;
}
.mfp-chara .mfp-iframe-holder {
  padding-top: 0;
  padding-bottom: 0;
}
.mfp-chara .mfp-iframe-holder .mfp-content {
  width: 100%;
  height: 100%;
  padding: 0;
}
.mfp-chara .mfp-iframe-holder .mfp-close {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  margin-right: 0;
  top: -25px;
  right: -25px;
  text-decoration: none;
  text-align: center;
  opacity: 1;
  padding: 0;
  color: #FFF;
  font-style: normal;
  font-size: 50px;
  font-family: Arial, Baskerville, monospace;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #e95098;
}
.mfp-chara .mfp-arrow-right:after {
  display: none;
}
.mfp-chara .mfp-arrow-left:after {
  display: none;
}
.mfp-chara .mfp-arrow:before {
  display: none;
}
.mfp-chara .mfp-arrow-left:before {
  display: none;
}
@media screen and (min-width:641px) {
  .mfp-chara .mfp-iframe-holder .mfp-content {
    width: 100%;
    max-width: 690px;
    height: 90%;
	  max-height: 850px;
    border: #e95098 5px solid;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    margin-top: 3%;
    box-shadow: 0px 0px 5px 3px #d9c2ca;
  }
}
@media screen and (min-width:700px) {
  .mfp-chara .mfp-arrow-left {
    display: none;
  }
  .mfp-chara .mfp-arrow-right {
    display: none;
  }
}
@media screen and (max-width:640px) {
  .mfp-chara .mfp-iframe-holder .mfp-content {
    width: 90%;
    height: 90%;
	  max-height: 580px;
    border: #e95098 3px solid;
    background: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    /*margin-top: 3%;*/
    box-sizing: border-box;
    box-shadow: 0px 0px 5px 3px #d9c2ca;
    background-color: #FFF;
  }
  .mfp-chara .mfp-iframe-holder .mfp-close {
    width: 36px;
    height: 36px;
    line-height: 36px;
    position: absolute;
    margin-right: 0;
    top: -16px;
    right: -16px;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    padding: 0;
    color: #FFF;
    font-style: normal;
    font-size: 30px;
    font-family: Arial, Baskerville, monospace;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #e95098;
    z-index: 100;
  }
}
.button{
  color: #e95098;
    font-size: 2.6rem;
    line-height: 1.5;
    font-family: "Shuei MaruGo B";
    padding: 0;
    text-shadow: 0px 4px 1px #fff, 1px 3px 1px #fff, 2px 3px 1px #fff, 2px 2px 1px #fff, 3px 2px 1px #fff, 3px 1px 1px #fff, 4px 0px 1px #fff, 3px -1px 1px #fff, 3px -2px 1px #fff, 2px -2px 1px #fff, 2px -3px 1px #fff, 1px -3px 1px #fff, 0px -4px 1px #fff, -1px -3px 1px #fff, -2px -3px 1px #fff, -2px -2px 1px #fff, -3px -2px 1px #fff, -3px -1px 1px #fff, -4px 0px 1px #fff, -3px 1px 1px #fff, -3px 2px 1px #fff, -2px 2px 1px #fff, -2px 3px 1px #fff, -1px 3px 1px #fff;
}
@media screen and (max-width:640px) {
.button{
    font-size: 5vw;
}
}
