
@charset "UTF-8";

/**
common
**/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');
body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
strong{
  font-weight: 600;
}
html {
  font-size: 62.5%;
}
* {
  max-height: 99999px;
}
section {
  position: relative;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
img {
  max-width: 100%;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  img {
    max-width: 100%;
  }
}

.flex {
  display: flex;
}
.in {
  width: 1000px;
  margin: 0 auto;
  height: 100%;
}
@media screen and (max-width:640px) {
  .in {
    width: 100%;
    margin: 0 auto;
  }
}
.ttl img {
  height: 100%;
}
.ttl {
  height: 20px;
  margin: 0 auto 60px;
  z-index: 0;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.ttl::after {
  content: "";
  position: absolute;
  right: -50%;
  top: 50%;
  width: 150px;
  height: 100px;
  display: block;
  transform: translateY(-50%);
  background: url('../images/2x/ttl_bg@2x.png') no-repeat;
  background-size: 150px auto;
  z-index: -1;
}

/**
POP表示
**/
.modal-content {
  width: 800px;
  margin: 0 auto;
}
.modal-content .it_area {
  margin: 0 0 20px 100px;
}
.modal-content .image_area_1,
.modal-content .image_area_2,
.modal-content .image_area_3,
.modal-content .image_area_4 {
  position: relative;
  height: fit-content;
  flex-shrink: 0;
}
.modal-content .image_area_4 {
  margin-top: 10px;
}
.modal-content .image_area_1{
  width: 293px;
}
.modal-content .image_area_2{
  width: 254px;
}
.modal-content .image_area_3{
  width: 250px;
}
.modal-content .image_area_4{
  width: 200px;
}
.modal-content .image_area_1 .name,
.modal-content .image_area_2 .name,
.modal-content .image_area_3 .name,
.modal-content .image_area_4 .name {
  position: absolute;
}
.modal-content .image_area_1 .name ,
.modal-content .image_area_2 .name {
  bottom: -20px;
  left: -100px;
}
.modal-content .image_area_3 .name {
  bottom: -15px;
  left: -60px;
}
@media all and (-ms-high-contrast: none) {
  .modal-content .image_area_3 .name {
    top: 20%;
  }
}
.modal-content .image_area_4 .name {
  bottom: 50%;
  left: -20px;
  transform: translate(0,50%);
}
@media all and (-ms-high-contrast: none) {
  .modal-content .image_area_4 .name {
    top: 0;
    bottom: 100%;
  }
}
.modal-content .image_area_1 .name img,
.modal-content .image_area_3 .name img {
  height: 80px;
}
.modal-content .image_area_2 .name img {
  height: 70px;
}
.modal-content .image_area_4 .name img {
  height: 82px;
}
.modal-content .text_area {
  padding-left: 20px;
}
.modal-content .text_area p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: white;
}

@media screen and (max-width:640px) {
  .modal-content {
    width: auto;
    margin-left:0 auto;
  }
  .modal-content .it_area {
    margin: 0 auto;
    flex-direction: column;
  }
  .modal-content .image_area_1 {
    margin-left: 100px;
  }
  .modal-content .image_area_2 {
    margin-left: 100px;
  }
  .modal-content .image_area_3 {
    margin-left: 100px;
  }
  .modal-content .image_area_4 {
    margin: 0 auto;
  }
  .modal-content .image_area_1{
    width: 200px;
  }
  .modal-content .image_area_2{
    width: 180px;
  }
  .modal-content .image_area_3{
    width: 200px;
  }
  .modal-content .image_area_4{
    height: 70px;
  }
  .modal-content .image_area_1 .name ,
  .modal-content .image_area_2 .name {
    bottom: -30px;
    left: -100px;
  }
  .modal-content .image_area_3 .name {
    bottom: -30px;
    left: -100px;
  }
  .modal-content .image_area_4 .name {
    bottom: 50%;
    left: -20px;
    transform: translate(0,50%);
  }
  .modal-content .image_area_1 .name img {
    height: 70px;
  }
  .modal-content .image_area_3 .name img {
    height: 80px;
  }
  .modal-content .image_area_2 .name img {
    height: 60px;
  }
  .modal-content .image_area_4 .name img {
    height: 70px;
  }
  .modal-content .text_area {
    width: 80vw;
  }
  .modal-content .text_area p {
    width: 100%;
    padding-top: 40px;
    word-wrap: break-word;
  }
}








/**
header
**/

header {
  position: fixed;
  top: 0;
  padding: 20px;
  z-index: 1;
  width: 100%;
  min-width: 1200px;
}
header .header_container {
  width: 90%;
  margin: 0 auto;
}
header .header_container nav {
  justify-content: flex-end;
}
header .header_container nav ul li {
  display: inline-block;
  height: 20px;
  width: auto;
  padding-left: 30px;
}
header .header_container nav ul li a img {
  height: 100%;
}


@media screen and (max-width:640px) {
  header {
    min-width: unset;
  }
  header .header_container {
    width: 95%;
    position: relative;
  }
  header .header_container nav ul {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
  }
  header .header_container nav ul .sp_logo {
    padding-top: 50px;
  }
  header .header_container nav ul li {
    height: auto;
    padding-left: 0;
    padding-bottom: 50px;
  }
  header .header_container nav ul .sp_logo img {
    height: 250px;
  }
  header .header_container nav ul li a img {
    height: 20px;
  }
  header .header_container nav .nav_sns {
    height: 30px;
  }
  header .header_container nav .nav_sns > ul {
    flex-direction: row;
    justify-content: space-around;
  }
  .nav_toggle {
    display: block;
    position: absolute;
    right: 0;
    width: 30px;
    height: 25px;
  }
  .nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: transform .5s, opacity .5s;
  }
  .nav_toggle i:nth-child(1) {
      top: 0;
  }
  .nav_toggle i:nth-child(2) {
      top: 0;
      bottom: 0;
      margin: auto;
  }
  .nav_toggle i:nth-child(3) {
      bottom: 0;
  }
  .nav_toggle.show i:nth-child(1) {
      transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
      opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
      transform: translateY(-12px) rotate(45deg);
  }
  header .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    background: #000;
  }
  header .nav.show {
    opacity: 1;
    visibility: visible;
  }
}










#main {
  background: url('../images/2x/fv_bg_v2@2x.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
}
#main h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#main h1 img {
  height: 450px;
}
#main .date {
  position: absolute;
  bottom: 30px;
  right: 50%;
   transform: translateX(50%);
}
#main .date img {
  width: 400px;
}

@media screen and (max-width:640px) {
  #main {
    background: url('../images/2x/fv_bg_sp_v2.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
  }
  #main h1 {
    position: absolute;
    top: unset;
    bottom: 50%;
    left: 0;
    transform: unset;
    transform: translate(0px, 50%);
  }
  #main h1 img {
    width: 45vw;
    height: auto;
  }
  #main .date {
    position: absolute;
    bottom: 20px;
    right: 10px;
    transform: unset;
  }
  #main .date img {
    width: 50vw;
  }
}


#intro {
  background: url('../images/2x/intro_bg@2x.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}
#intro .heading_area {
  margin: 0 auto 60px;
}
#intro .heading_area h3 {
  margin: 0 auto;
  width: 600px;
}
#intro .heading_area img {
  width: 100%;
}
#intro .text_area {
  width: 600px;
  margin: 0 auto;
}
#intro .text_area img {
  width: 100%;
}
@media screen and (max-width:640px) {
  #intro {
    background: url('../images/2x/intro_bg_sp.png');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
    padding: 60px 0 250px;
  }
  #intro .heading_area {
    margin: 200px auto 50px;
  }
  #intro .heading_area h3 {
    width: 90%;
    margin: 0 auto;
  }
  #intro .heading_area img {
    width: 100%;
  }
  #intro .text_area {
    width: 90%;
    margin: 0 auto;
  }
  #intro .text_area img {
    width: 100%;
  }
}

#story {
  background: url('../images/2x/story_bg@2x.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}
#story .story_ht {
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  right: 20px;
}
#story .heading_area img {
  height:500px;
}
#story .text_area img {
  height: 500px;
}


@media screen and (max-width:640px) {
  #story {
    background: url('../images/2x/story_bg_sp.png');
    background-size: cover;
    background-position: bottom;
    background-attachment: unset;
    padding: 100px 0;
  }
  #story .story_ht {
    width: 90%;
    margin: 0 auto;
    right: 0;
  }
  #story .heading_area img {
    width: 30vw;
    height: auto;
  }
  #story .text_area img {
    width: 40vw;
    height: auto;
  }
}



#cast {
  background: url('../images/2x/cast_bg@2x.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}
@media screen and (max-width:640px) {
  #cast {
    background: url('../images/2x/cast_bg_sp.png');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
    padding: 100px 0;
  }
}
.character {
  position: relative;
}
.chara_image_a img {
  height: 146.5px;
}
.chara_image_b img {
  height: 127px;
}
.chara_image_c img {
  height: 90px;
}
.chara_image_d img {
  height: 60px;
}
@media screen and (max-width:640px) {
  .chara_image_a img {
    height: 117.2px;
  }
  .chara_image_b img {
    height: 101.6px;
  }
  .chara_image_c img {
    height: 72px;
  }
  .chara_image_d img {
    height: 55px;
  }
}
.chara_name {
  position: absolute;
  bottom: -35px;
  left: -5px;
  height: 52px;
}
.chara_name img {
  height: 100%;
}
.chara_name_a {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translate(0,-50%);
}
.chara_name_a img {
  height: 69px;
}
@media screen and (max-width:640px) {
  .cast_table {
    flex-direction: column;
    margin: 0 10px 0 30px;
  }
  .chara_name_a {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(0,-50%);
  }
  .chara_name_a img {
    height: 60px;
  }
}

.cast_column_1 ,
.cast_column_2 {
  width: 500px;
}
.cast_column_1 {
  padding-right: 40px;
}
.cast_column_2 {
  padding-left: 60px;
}
@media screen and (max-width:640px) {
  .cast_column_1 ,
  .cast_column_2 {
    width: 98%;
  }
  .cast_column_1 {
    padding-right: 0;
  }
  .cast_column_2 {
    padding-left: 0;
  }
}
.castline_1 ,
.castline_2 ,
.castline_3 ,
.castline_4 ,
.castline_5 ,
.castline_6 {
  justify-content: space-between;
  margin-top: 50px;
}
.castline_4 {
  margin-top: 69.5px;
}
.castline_6 {
  margin-top: 87px;
}
@media screen and (max-width:640px) {
  .castline_4 {
    margin-top: 50px;
  }
  .castline_6 {
    margin-top: 50px;
  }
}

.listener_area {
  margin-top: 50px;
}
.listener {
  margin: 25px 0 0 20px;
  justify-content: space-between;
}
@media screen and (max-width:640px) {
  .listener {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
  }
  .character11 ,
  .character12 ,
  .character13 ,
  .character14 ,
  .character15 {
    padding-left: 20px;
  }
  .character13 ,
  .character14 ,
  .character15 {
    margin-top: 25px;
  }
}
.listener_title img {
  width: 142px;
}


#staff {
  background: url('../images/2x/staff_bg@2x.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

@media screen and (max-width:640px) {
  #staff {
    background: url('../images/2x/staff_bg_sp.png');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
    padding: 100px 0;
  }
  #staff .in {
    width: 95%;
  }
  #staff .director {
    flex-direction: column;
  }
}

#staff p {
  font-size: 1.2rem;
  line-height: 2rem;
  color: white;
}
.director .image_area{
  width: 225px;
}
.director .image_area{
  width: 225px;
}
@media screen and (max-width:640px) {
  .director .image_area{
    width: 100%;
  }
}
.director .text_area {
  margin-left: 25px;
  width: calc(100% - 250px);
}
.director .text_area h3 img {
  width: 250px;
}
.director .text_area p {
  margin-top: 20px;
}
@media screen and (max-width:640px) {
  .director .text_area {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.staff_area_1 {
  margin-top: 50px;
}
.staff_li {
  width: 300px;
  margin-left: 50px;
}
.staff_li:first-of-type {
  margin-left: 0;
}
.no_left {
  margin-left: 0;
}
.staff_li .staff_name_a img {
  height: 27px;
}
.staff_li .staff_name_b img {
  height: 54px;
}
@media screen and (max-width:640px) {
  .staff_area_1 {
    margin-top: 0;
    flex-wrap: wrap;
  }
  .staff_li {
    width: 100%;
    margin-left: 0;
  }
  .staff_li .staff_name_a ,
  .staff_li .staff_name_b {
    padding:40px 0 20px;
  }
}

.staff_area_2 {
  width: 650px;
  margin-top: 50px;
  flex-wrap: wrap;
}
@media screen and (max-width:640px) {
  .staff_area_2 {
    width: 100%;
    margin-top: 0;
  }
  .staff_ss {
    flex-direction: column;
  }
}

.at_area {
  width: 300px;
  margin-left: 50px;
  padding: 25px;
  background-color: rgba(236,109,86,0.5);
}
.at_area img {
  width: 250px;
}
.at_area .at_image {
  padding: 40px 0;
}
.at_area .at_youtube_link {
  padding: 30px 0 25px;
  color: white;
  font-size: 1.4rem;
  line-height: 2rem;
  word-wrap: break-word;
  display: block;
}
.tw_area {
  padding-bottom: 10px;
}
.tw_area ,
.ig_area {
  align-items: center;
}
.tw_area p ,
.tw_area a ,
.ig_area p ,
.ig_area a {
  color: white;
  font-size: 1.4rem;
  padding-left: 25px;
}
.tw_area .tw_logo ,
.ig_area .ig_logo {
  width: 20px;
}

@media screen and (max-width:640px) {
  .at_area {
    margin-top: 50px;
    width: 100%;
    margin-left: 0;
    padding: 25px;
    box-sizing: border-box;
    background-color: rgba(236,109,86,0.5);
  }
  .at_area > h3 {
    width: 80%;
    margin: 0 auto;
  }
  .at_area > h3 > img {
    width: 100%;
  }
  .at_area .at_image img {
    width: 100%;
  }
  .at_area > p img {
    width: 100%;
  }
  .at_area .at_youtube_link {
    padding: 30px 0 25px;
    color: white;
    font-size: 1.4rem;
    line-height: 2rem;
    word-wrap: break-word;
    display: block;
    font-weight: bold;
  }
  .tw_is_area {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    font-weight: bold;
  }
  .tw_area p ,
  .tw_area a ,
  .ig_area p ,
  .ig_area a {
    padding-left: 15px;
  }
  .tw_area > p ,
  .ig_area > p {
    display: none;
  }
}

footer {
  background: url('../images/2x/footer_bg.png');
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
footer .ft_container {
  padding-top: 50vh;
  text-align: center;
}
footer .ft_catch img {
  height: 4vh;
  }
footer .ft_cast img{
  height: 35vh;
}
footer .ft_cast {
  /* padding-top: 30px; */
}
footer .ft_sns {
  border-top: solid 1px white;
  border-bottom: solid 1px white;
  margin: 20px auto;
  display: inline-block;
}
footer .ft_sns img {
  margin: 20px 15px;
  height: 30px;
}
footer .copy_right img {
  width: 200px;
  padding-bottom: 10px;
}

@media screen and (max-width:640px) {
  footer {
    background: url('../images/2x/ft_bg_sp.png');
    background-size: contain;
    background-position: center;
    background-attachment: unset;
    position: relative;
  }
  footer .ft_container {
    padding-top: 43vh;
  }
  footer .ft_catch img {
    width: 70%;
    height: auto;
  }
  footer .ft_cast {
    padding-bottom: 30px;
  }
  footer .ft_cast img{
    width: 100%;
    height: auto;
  }
}
.mx4d_area {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 250px;
  right: 30px;
  bottom:270px;
  height: auto;
  align-items: flex-start;
}
.mx4d_area img {
  width: 45%;
}
.bnr_area{
  position: absolute;
  width: 250px;
  right: 30px;
  bottom:30px;
}
.bnr_area a{
  display: block;
}
.bnr_area a:first-of-type {
  margin-bottom: 20px;
}
.bnr_area a:hover{
  opacity: 0.8;
}

.bx-wrapper{
  border: none;
  background: none;
  box-shadow: none;
}
.bx-wrapper .bx-pager.bx-default-pager a{
  background:#fff;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus{
  background:#e70012;
}
.bx-wrapper .bx-next{
  right: -20px;
  background: url(../images/arrow_right.png) no-repeat;
  background-size: cover;
}
.bx-wrapper .bx-prev{
  left: -20px;
  background: url(../images/arrow_left.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width:640px) {
  .bnr_area{
    position: relative;
    text-align: center;
    right: 0;
    width: 100%;
    bottom:0px;
    background: #000;
    padding: 20px;
  }
  .bnr_area a:first-of-type img {
    width: 100%;
  }
  .bnr_area > div {
    justify-content: center;
    margin-bottom: 20px;
    height: auto;
    align-items: flex-start;
  }
  .bnr_area > div > img {
    width: 30%;
    margin: 0 10px;
  }
}

#thumbnail li{
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
}
#thumbnail li a{
  display: block;
  background: #000;
  font-size: 1.6rem;
  color:#fff;
  text-decoration: none;
  padding: 5px;
}
@media screen and (max-width: 640px) {
  #tab-content{
    padding: 2%;
  }
  #colorbox, #cboxContent, #cboxLoadedContent {
    width: 90vw !important;
    height: 300px !important;
  }
  #colorbox iframe{
    width: 100%;
    height: 100%;
  }
}
.barrier_area {
  width: 200px;
  margin: 40px auto 10px;
}

#news {
  background: #000;
  padding: 100px 0;
}
#news .ttl {
  height: 30px;
}
#news .ttl::after {
  right: -100%;
}
#news dl{
	display: table;
	border-bottom: 1px solid #fff;
	width: 700px;
	margin: 0 auto;
}
@media screen and (max-width:640px) {

  #news {
    padding:50px 20px;
  }
  #news dl{
    width: 100%;
  }
}
#news dl dt,
#news dl dd{
	display: table-cell;
	padding:15px 15px 15px 0;
	text-align: left;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
}
#news dl dt{
	width: 20%;
}
#news dl dd a:hover {
  opacity: 0.6;
}
#news .news_inner {
  color: #fff;
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width:640px) {
  #news .news_inner {
    width: 100%;
    box-sizing: border-box;
  }
}
#news .news_inner h3 {
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 40px;
}
#news .news_inner .textarea p {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: .1em;
}
#news .news_inner .textarea a:hover {
  opacity: 0.6;
}

#news table{
  width: 100%;
}
#news tr{
  border-bottom: 1px solid #fff;
}
#news td{
  font-size: 1.4rem;
  padding: 20px 0;
  line-height: 1.5;
  vertical-align: middle;
}

#news td.s{
  width: 20%;
}










