@charset "UTF-8";
/*------------------------
  ブレイクポイント
------------------------*/
/*------------------------
  共通項目
------------------------*/
.image-guard img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

.font-accent-en {
  font-family: 'Abel', sans-serif;
}

.font-accent-jp {
  font-family: 'Noto Serif JP', serif;
}

@media screen and (min-width: 1025px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .sp-none {
    display: none;
  }
}
ul {
  padding: 0px;
  margin: 0;
  list-style: none;
}
ul .indent li {
  text-indent: -1em;
  padding-left: 1em;
}

#wrap {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*------------------------
  header
------------------------*/
header {
  width: 100%;
  height: auto;
  background: black;
  overflow: hidden;
  clear: both;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 10px;
  /*.nav-header{
  	li{
  		&:nth-child(7){
  			a{
  				pointer-events: none;
  				color: #999;
  			}
  		}
  	}
  }*/
}
@media screen and (min-width: 1025px) {
  header h1 {
    width: 20%;
    float: left;
    padding: 18px 0px 0px 10px;
  }
  header h1 img {
    width: 200px;
  }
  header .nav-header {
    float: right;
    padding: 10px;
    display: inline-block;
  }
  header .nav-header ul {
    list-style-type: none;
  }
  header .nav-header ul li {
    display: inline-block;
    padding: 0.5rem;
    font-family: 'Abel', sans-serif;
  }
  header .nav-header ul li a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    display: inline-block;
  }
  header .nav-header ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: #fff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }
  header .nav-header ul li a:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 1024px) {
  header h1 {
    width: 20%;
    float: left;
    padding: 10px 0px;
  }
  header h1 img {
    width: 150px;
  }
  header .nav-header {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99998;
    background-color: #000;
  }
  header .nav-header .nav-bgarea {
    width: 100%;
    height: 100vh;
    background-image: url("../images/top/main_chara.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
    background-blend-mode: color;
    background-color: rgba(0, 0, 0, 0.9);
  }
  header .nav-header nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    overflow: hidden;
    clear: both;
    line-height: 1;
  }
  header .nav-header nav ul {
    list-style-type: none;
  }
  header .nav-header nav ul li {
    padding: 0.5rem;
    font-family: 'Abel', sans-serif;
    font-size: 1.3rem;
    width: 50%;
    float: left;
  }
  header .nav-header nav ul li a {
    color: #ffffff;
    text-decoration: none;
  }
}

/*----------ハンバーガーアイコン----------*/
@media screen and (max-width: 1024px) {
  .hamburger {
    position: fixed;
    display: block;
    width: 40px;
    height: 30px;
    top: 14px;
    right: 14px;
    z-index: 99999;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .hamburger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin: 0 auto;
  }
  .hamburger span:nth-of-type(1) {
    top: 0;
    webkit-animation: menu-ber01 .75s forwards;
    animation: menu-ber01 .75s forwards;
  }
  .hamburger span:nth-of-type(2) {
    top: 13px;
    transition: all .25s .25s;
    opacity: 1;
  }
  .hamburger span:nth-of-type(3) {
    bottom: 0;
    -webkit-animation: menu-ber02 .75s forwards;
    animation: menu-ber02 .75s forwards;
  }

  .active span:nth-of-type(1) {
    -webkit-animation: active-menu-ber01 .75s forwards;
    animation: active-menu-ber01 .75s forwards;
    background-color: #fff;
  }
  .active span:nth-of-type(2) {
    opacity: 0;
  }
  .active span:nth-of-type(3) {
    -webkit-animation: active-menu-ber03 .75s forwards;
    animation: active-menu-ber03 .75s forwards;
    background-color: #fff;
  }

  @-webkit-keyframes menu-ber01 {
    0% {
      -webkit-transform: translateY(8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-ber01 {
    0% {
      transform: translateY(13px) rotate(45deg);
    }
    50% {
      transform: translateY(13px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes menu-ber02 {
    0% {
      -webkit-transform: translateY(-15px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-ber02 {
    0% {
      transform: translateY(-15px) rotate(-45deg);
    }
    50% {
      transform: translateY(-15px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes active-menu-ber01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(13px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(13px) rotate(45deg);
    }
  }
  @keyframes active-menu-ber01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(13px) rotate(0);
    }
    100% {
      transform: translateY(13px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-menu-ber03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-15px) rotate(-45deg);
    }
  }
  @keyframes active-menu-ber03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-15px) rotate(0);
    }
    100% {
      transform: translateY(-15px) rotate(-45deg);
    }
  }
}
/*------------------------
  FOOTER
------------------------*/
footer {
  background: #000;
}
footer .copy {
  width: 90%;
  margin: 0 auto;
  display: block;
  color: #fff;
  margin-top: 30px;
}

/*------------------------
  下層共通
------------------------*/
#under-contents {
  width: 100%;
  background: url("../images/under_bg.jpg");
  padding-bottom: 200px;
}
#under-contents .under-visual {
  width: 100%;
  margin-top: 80px;
  position: relative;
  /*background-image: url("../images/under/bg01.jpg");*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top -80px center;
}
#under-contents .under-visual .under-cover {
  background-image: url("../images/dot.png");
  height: 400px;
}
#under-contents .under-visual h2 {
  min-width: 200px;
  display: inline-block;
  background: #000;
  position: absolute;
  bottom: -60px;
  color: #fff;
  font-size: 80px;
  text-align: right;
  font-family: 'Abel', sans-serif;
  padding: 20px 0px 20px 20%;
}
#under-contents .under-visual h2::after {
  content: "";
  position: absolute;
  top: 0;
  border-style: solid;
  border-width: 136px 100px 0 0;
  border-color: #000 transparent transparent transparent;
}
#under-contents .under-visual h2 span {
  padding-right: 20px;
}

@media screen and (max-width: 1024px) {
  #under-contents .under-visual {
    margin-top: 59px;
    background-position: top center;
  }
  #under-contents .under-visual h2 {
    font-size: 2rem;
    bottom: -40px;
  }
  #under-contents .under-visual h2::after {
    border-width: 78px 60px 0 0;
  }
  #under-contents .under-visual .under-cover {
    height: 200px;
  }
}
/*------------------------
  NEWS-LIST
------------------------*/
.under-news-box {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 150px 0px 100px 0px;
}

.news-repeat {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0, 1.2, 1, 1);
}
.news-repeat.active {
  opacity: 1;
  transform: translateY(0px);
}
.news-repeat a {
  color: #fff;
  border: none;
  text-decoration: none;
  padding: 20px 32px;
  display: block;
  background-image: linear-gradient(to right, #000000, #1a1a1a, #000000, #010911);
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-size: 300% 100%;
  position: relative;
  z-index: 0;
}
.news-repeat a:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.news-repeat a::after {
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  top: 42%;
  right: 30px;
  border-top: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
  transform: rotate(45deg);
  z-index: 3;
}
.news-repeat a dl {
  margin-bottom: 0px;
}
.news-repeat a dl dt {
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 0.8rem;
}
.news-repeat a dl dd {
  width: 90%;
  font-size: 1.1rem;
}

.under-news-detail .news-day {
  font-size: 0.8rem;
}
.under-news-detail .news-title {
  border-bottom: 1px solid #333;
  font-size: 1.2rem;
  padding-bottom: 10px;
  margin-bottom: 2rem;
}
.under-news-detail .news-text {
  margin-bottom: 100px;
}
.under-news-detail .news-text p {
  margin-bottom: 1rem;
}
.under-news-detail .news-text p img {
  width: 500px;
}
@media screen and (max-width: 1024px) {
  .under-news-detail .news-text p img {
    width: 100%;
  }
}

.news-more {
  width: 80%;
  max-width: 450px;
  text-align: center;
  margin: 0 auto;
  moz-transition: all .4s ease-in-out;
  border: 1px solid #000;
  cursor: pointer;
}
.news-more a {
  color: #fff;
  padding: 20px 0px;
  display: block;
  transition: .3s ease;
  font-size: 1.3rem;
  background-image: linear-gradient(to right, #000000, #1a1a1a, #000000, #010911);
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-size: 300% 100%;
  position: relative;
}
.news-more a:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.news-more.parallelogram {
  color: #000;
  transform: skewX(-30deg);
}
.news-more.parallelogram.-two .btn-in {
  display: inline-block;
  transform: skewX(30deg);
}

@media screen and (max-width: 1024px) {
  .news-movie {
    position: relative;
    padding-bottom: 56.25%;
    /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
  }
  .news-movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/*------------------------
  CHARACTER-LIST
------------------------*/
.under-chara-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
}

.chara-list {
  margin-bottom: 20px;
  padding: 5px;
}
.chara-list .chara-thumb {
  overflow: hidden;
}
.chara-list .chara-thumb img {
  transition: all .4s ease;
}
.chara-list .chara-thumb img:hover {
  transform: scale(1.2, 1.2);
  transition: all .4s ease;
  filter: brightness(0.5);
}
.chara-list .chara-name {
  background: #000;
  color: #fff;
  padding: 15px;
  font-family: 'Noto Serif JP', serif;
}
@media screen and (min-width: 1025px) {
  .chara-list .chara-name .chara-code-name {
    font-size: 0.7rem;
  }
  .chara-list .chara-name .chara-main-name {
    font-size: 2rem;
    padding-bottom: 6px;
    font-weight: 600;
  }
  .chara-list .chara-name .chara-cv-name {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .chara-list .chara-name .chara-code-name {
    font-size: 0.4rem;
  }
  .chara-list .chara-name .chara-main-name {
    font-size: 1.4rem;
    padding-bottom: 6px;
  }
  .chara-list .chara-name .chara-cv-name {
    font-size: 0.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .under-chara-area {
    width: 100%;
    position: relative;
  }
  .under-chara-area .chara-visual {
    width: 100%;
    position: absolute;
    z-index: 3;
    top: 100px;
  }
  .under-chara-area .chara-visual .chara-visual-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
  }
  .under-chara-area .chara-visual .chara-visual-box .chara-detail {
    padding-top: 400px;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
  }
  .under-chara-area .chara-visual .chara-visual-box .chara-detail .chara-text-name {
    padding-bottom: 50px;
  }
  .under-chara-area .chara-visual .chara-visual-box .chara-detail .chara-text-name .name {
    font-size: 3.5rem;
  }
  .under-chara-area .chara-visual .chara-visual-box .chara-detail .chara-text-detail {
    border-left: 2px solid #fff;
    padding-left: 1em;
  }
  .under-chara-area .chara-bg {
    position: relative;
    min-height: 1300px;
  }
  .under-chara-area .chara-bg .chara-gray {
    position: absolute;
    width: 50%;
    min-height: 500px;
    background: #ccc;
    top: 20%;
    z-index: 1;
  }
  .under-chara-area .chara-bg .chara-black {
    width: 65%;
    padding-left: 10%;
    min-height: 500px;
    position: absolute;
    background: #000;
    color: #fff;
    right: 0;
    top: 32%;
    z-index: 2;
  }
}
@media screen and (max-width: 1024px) {
  .under-chara-area {
    padding: 100px 0px;
  }

  .chara-visual {
    width: 90%;
    margin: 0 auto 100px auto;
  }
  .chara-visual .chara-visual-box .chara-item {
    margin-bottom: 50px;
    text-align: center;
  }
  .chara-visual .chara-visual-box .chara-item img {
    height: 500px;
  }
  .chara-visual .chara-visual-box .sp-fit img {
    max-width: 100%;
    height: auto !important;
  }
  .chara-visual .chara-visual-box .chara-detail {
    background: #000;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    padding: 20px;
  }
  .chara-visual .chara-visual-box .chara-detail .cordname {
    font-size: 0.7rem;
  }
  .chara-visual .chara-visual-box .chara-detail .name {
    font-size: 2rem;
    padding-bottom: 3px;
    font-weight: 600;
  }
  .chara-visual .chara-visual-box .chara-detail .cv {
    font-size: 0.7rem;
  }
  .chara-visual .chara-visual-box .chara-detail .chara-text-detail {
    padding: 30px 0px 0px 0px;
    font-weight: 400;
  }

  .chara-bg {
    display: none;
  }
}
.delayScroll li {
  opacity: 0;
}
.delayScroll .chara-list {
  opacity: 0;
}
.delayScroll .book-item {
  opacity: 0;
}
.delayScroll .movie-list {
  opacity: 0;
}

.chara-item-list {
  background: #000;
  padding: 30px 0px;
}
.chara-item-list img {
  width: 100%;
}
.chara-item-list a {
  display: block;
}
@media screen and (min-width: 1025px) {
  .chara-item-list ul {
    width: 1200px;
    margin: 0 auto;
  }
  .chara-item-list ul li {
    padding: 5px;
    position: relative;
  }
  .chara-item-list ul li span.mask {
    position: relative;
    display: block;
    line-height: 0;
    overflow: hidden;
  }
  .chara-item-list ul li span.mask::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: .3s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
    transform: translateY(100%);
    background: rgba(0, 0, 0, 0.9);
    /*背景色*/
    width: 100%;
    height: 40px;
  }
  .chara-item-list ul li span.cap {
    position: absolute;
    opacity: 0;
    /*透過0*/
    transition: .5s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
    z-index: 3;
    /*テキストを前面に出す*/
    color: #fff;
    /*テキストの色を変えたい場合はここを修正*/
    bottom: 5px;
    left: 10px;
    line-height: 1.5;
  }
  .chara-item-list ul li:hover span.mask::before {
    opacity: 1;
    transform: translateY(0);
  }
  .chara-item-list ul li:hover span.cap {
    opacity: 1;
  }
  .chara-item-list .list-name {
    text-align: center;
    color: #fff;
    font-family: 'Abel', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .chara-item-list ul {
    width: 90%;
    margin: 0 auto;
  }
  .chara-item-list ul li {
    padding: 3px;
  }
  .chara-item-list ul li img {
    border: 2px solid #999;
  }
  .chara-item-list ul li span.cap {
    display: none;
  }
  .chara-item-list .list-name {
    text-align: center;
    color: #fff;
    font-family: 'Abel', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

/*------------------------
  BOOK-LIST
------------------------*/
.under-book-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
  font-size: 0.8rem;
}
.under-book-box .category-area {
  padding-bottom: 100px;
}
.under-book-box .category-area h3 {
  margin: 50px 0px;
  font-size: 1.2rem;
  font-weight: 900;
  border-left: 3px solid #000;
  padding-left: 0.5rem;
  padding-bottom: 5px;
}
.under-book-box .category-area .book-list .col-6, .under-book-box .category-area .book-list .col-md-2 {
  margin-bottom: 20px;
}
.under-book-box .category-area .book-list a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-out;
  display: block;
}
.under-book-box .category-area .book-list a:hover {
  filter: brightness(0.9);
}
.under-book-box .category-area .book-list dl dt {
  margin-bottom: 8px;
  background: url(../images/dot.png);
  padding: 5px;
}

/*------------------------
  STAFF-LIST
------------------------*/
.under-staff-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
}
@media screen and (min-width: 1025px) {
  .under-staff-box h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
  }
  .under-staff-box h3 span {
    position: relative;
    padding: 0 0.5em;
    display: block;
  }
  .under-staff-box h3 span::before, .under-staff-box h3 span::after {
    position: absolute;
    top: 50%;
    content: "";
    width: 41%;
    height: 1px;
    background-color: #000;
  }
  .under-staff-box h3 span::before {
    left: 0;
  }
  .under-staff-box h3 span::after {
    right: 0;
  }
  .under-staff-box .staff {
    padding-bottom: 100px;
  }
  .under-staff-box .staff-list, .under-staff-box .cast-list {
    margin-bottom: 50px;
  }
  .under-staff-box .staff-list dl, .under-staff-box .cast-list dl {
    padding-bottom: 40px;
    text-align: center;
  }
  .under-staff-box .staff-list dl dt, .under-staff-box .cast-list dl dt {
    font-weight: normal;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #a977bc;
    border-bottom: 1px solid #a977bc;
    display: inline-block;
  }
  .under-staff-box .staff-list dl dd, .under-staff-box .cast-list dl dd {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 400;
  }
  .under-staff-box .staff-list dl dd span, .under-staff-box .cast-list dl dd span {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .under-staff-box h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px;
  }
  .under-staff-box h3 span {
    position: relative;
    padding: 0 0.5em;
    display: block;
  }
  .under-staff-box h3 span::before, .under-staff-box h3 span::after {
    position: absolute;
    top: 50%;
    content: "";
    width: 30%;
    height: 1px;
    background-color: #000;
  }
  .under-staff-box h3 span::before {
    left: 0;
  }
  .under-staff-box h3 span::after {
    right: 0;
  }
  .under-staff-box .staff {
    padding-bottom: 50px;
  }
  .under-staff-box .staff-list, .under-staff-box .cast-list {
    margin-bottom: 50px;
  }
  .under-staff-box .staff-list dl, .under-staff-box .cast-list dl {
    padding-bottom: 40px;
    text-align: left;
  }
  .under-staff-box .staff-list dl dt, .under-staff-box .cast-list dl dt {
    font-weight: normal;
    font-size: 0.6rem;
    margin-bottom: 15px;
    color: #a977bc;
    border-bottom: 1px solid #a977bc;
    display: inline-block;
  }
  .under-staff-box .staff-list dl dd, .under-staff-box .cast-list dl dd {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
  }
  .under-staff-box .staff-list dl dd span, .under-staff-box .cast-list dl dd span {
    font-size: 0.6rem;
  }
}

/* モーダル */
.modaal-container {
  max-width: 800px !important;
}

.modaal-content-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.modaal-content-container .modal-img {
  flex: 0 1 30%;
  padding: 1rem;
}
.modaal-content-container .modal-img img {
  width: 100%;
}
.modaal-content-container p {
  color: #222;
  padding: 30px;
}

.modaal-content-container .modal-img + p {
  flex: 0 1 70%;
  padding: 2rem 2rem 2rem 1rem;
}

@media screen and (max-width: 1199px) {
  .modaal-content-container .modal-img {
    flex: 0 1 100%;
    padding: 0;
    margin-bottom: 1rem;
  }

  .modaal-content-container .modal-img img {
    width: 100%;
    padding: 1rem;
  }

  .modaal-content-container .modal-img + p {
    flex: 0 1 100%;
    padding: 1rem;
  }
}
.modal-ttl {
  color: #222;
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 1rem;
}

.modal-box {
  color: #222;
}

a.modaal {
  color: #212529;
}
a.modaal:hover {
  color: #a977bc;
  opacity: .75;
  text-decoration: none;
}

/* モーダル */
/*------------------------
  MOVIE-LIST
------------------------*/
.under-movie-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
}
.under-movie-box .movie-area a {
  color: #000;
  transition: all 0.3s;
  display: block;
}
.under-movie-box .movie-area a:hover {
  filter: brightness(0.8);
}
.under-movie-box .movie-area dt {
  margin-bottom: 10px;
  padding: 5px;
  background: url("../images/dot.png");
}

.modaal-container .movie {
  /*position: relative;*/
  padding-bottom: 56.25%;
  height: 0;
}
.modaal-container .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-content-container {
  padding: 0px !important;
}

/*------------------------
  STORY-LIST
------------------------*/
.under-story-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
  line-height: 1.8;
}
.under-story-box .story-link {
  text-align: center;
  padding: 50px 0px;
}
.under-story-box .story-link li {
  width: 50%;
  max-width: 300px;
  margin: 0px 10px;
}
.under-story-box .story-link li.g-out a {
  pointer-events: none;
  background: #666;
  border: 1px solid #666;
}
.under-story-box .story-link li a {
  display: block;
  padding: 10px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
}
.under-story-box .story-link li a:hover {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}
@media screen and (max-width: 1024px) {
  .under-story-box .story-link li {
    font-size: 0.8rem;
  }
}
.under-story-box h3 {
  text-align: center;
  font-size: 2rem;
}
.under-story-box h3 span {
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
}
.under-story-box h3 span::before {
  position: absolute;
  top: 50%;
  content: "";
  width: 1.5em;
  height: 1px;
  background-color: #000;
  left: 100%;
}
.under-story-box h3 span::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 1.5em;
  height: 1px;
  background-color: #000;
  right: 100%;
}
.under-story-box .story-list a {
  color: #000;
  transition: all 0.3s;
  display: block;
}
.under-story-box .story-list a:hover {
  filter: brightness(0.8);
}
.under-story-box .story-list dt {
  margin-bottom: 10px;
  padding: 5px;
  background: url("../images/dot.png");
}
.under-story-box .story-list dd {
  font-family: serif;
}
.under-story-box .story-list dd span {
  background: #000;
  color: #fff;
  padding: 5px;
  margin-right: 10px;
}
.under-story-box .story-detail {
  width: 900px;
  margin: 0 auto;
}
.under-story-box .story-detail .carousel-inner {
  background: url("../images/dot.png");
  padding: 10px;
}
.under-story-box .story-detail .carousel-indicators .active {
  background: none;
}
.under-story-box .story-detail .carousel-indicators li {
  background: none;
}
.under-story-box .story-detail .carousel-indicators li:hover {
  opacity: 0.8;
}
.under-story-box .story-detail .carousel-indicators li.col-md-3 {
  max-width: 25%;
}
.under-story-box .story-detail .carousel-indicators {
  width: calc(100% + 10px);
  justify-content: start;
  margin-left: -5px;
}
.under-story-box .story-detail .carousel-indicators > li {
  width: auto;
  height: auto;
  margin-right: 0;
  margin-left: 0;
  padding: 5px;
}
.under-story-box .story-detail #productImagesCarousel .carousel-indicators li.active, .under-story-box .story-detail #productImagesCarousel .carousel-indicators li {
  background: none;
}
.under-story-box .story-detail .carousel-indicators li {
  box-sizing: border-box !important;
  border: none;
}
.under-story-box .story-detail .story-txt {
  padding: 10px;
  background: #fff;
}
.under-story-box .story-detail .story-txt dl {
  border: 1px solid #eee;
  padding: 20px;
}
.under-story-box .story-detail .story-txt dl dt.story-title {
  font-size: 1.5rem;
  font-family: serif;
  font-weight: bold;
  padding-bottom: 0.5rem;
}
.under-story-box .story-detail .story-txt dl dd span.l-space {
  letter-spacing: -5px;
}
@media screen and (max-width: 1024px) {
  .under-story-box .story-detail {
    width: 100%;
  }
}
.under-story-box .intro-item {
  position: relative;
  padding: 3em;
  font-size: 1.2em;
}
.under-story-box .intro-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.under-story-box .intro-item::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.under-story-box .intro-item span.start {
  font-size: 1.5em;
  color: #333;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
}
.under-story-box .intro-item span.letter {
  letter-spacing: -0.2em;
}
@media screen and (max-width: 1024px) {
  .under-story-box .intro-item {
    padding: 2em;
  }
}

/*------------------------
  MUSIC-LIST
------------------------*/
.under-music-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
}
.under-music-box .op-item, .under-music-box .ed-item {
  margin-bottom: 50px;
  text-align: center;
}
.under-music-box .op-item h3, .under-music-box .ed-item h3 {
  font-size: 2.5rem;
  padding-bottom: 30px;
}
.under-music-box .op-item h3 span, .under-music-box .ed-item h3 span {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 10px;
}
.under-music-box .op-item p, .under-music-box .ed-item p {
  line-height: 2;
}
.under-music-box .op-list {
  padding: 20px;
  border: 1px solid #000;
  text-align: left;
}
.under-music-box .op-list span {
  font-weight: 900;
  font-size: 1.2rem;
  display: block;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 0px;
}

/*------------------------
  SPECIAL-LIST
------------------------*/
.under-special-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
}
.under-special-box .bnr-area {
  margin-bottom: 50px;
}
.under-special-box .bnr-area h3 {
  color: #000;
  text-align: center;
  padding: 1rem 2rem;
  border-top: 6px double #000;
  border-bottom: 6px double #000;
  font-family: serif;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 50px;
}
.under-special-box ul li {
  padding: 5px;
}
.under-special-box ul li a {
  transition: all 0.3s ease-out;
  background: url("../images/dot.png");
  display: block;
  padding: 5px;
}
.under-special-box ul li a:hover {
  filter: brightness(0.9);
}
.under-special-box .birthday-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.under-special-box .birthday-box h3 {
  margin-bottom: 40px;
}
.under-special-box .birthday-box .bd-over {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.under-special-box .birthday-box .bd-over .col-6 a {
  transition: all 0.3s ease-out;
  display: block;
}
.under-special-box .birthday-box .bd-over .col-6 a:hover {
  filter: brightness(0.7);
}
.under-special-box .dl-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.under-special-box .dl-box h3 {
  font-size: 26px;
  font-weight: bold;
  position: relative;
  padding: 0.25em 1em;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  font-family: serif;
}
.under-special-box .dl-box h3::before, .under-special-box .dl-box h3::after {
  content: '';
  position: absolute;
  top: -7px;
  width: 1px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: black;
}
.under-special-box .dl-box h3::before {
  left: 7px;
}
.under-special-box .dl-box h3::after {
  right: 7px;
}
.under-special-box .dl-box .dlArea h4 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 50px;
}
.under-special-box .dl-box .dlArea h4 span {
  position: relative;
  padding: 0 0.5em;
  display: block;
}
.under-special-box .dl-box .dlArea h4 span::before, .under-special-box .dl-box .dlArea h4 span::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 41%;
  height: 1px;
  background-color: #000;
}
.under-special-box .dl-box .dlArea h4 span::before {
  left: 0;
}
.under-special-box .dl-box .dlArea h4 span::after {
  right: 0;
}
.under-special-box .dl-box .dlArea a:hover {
  filter: brightness(0.7);
}
@media screen and (max-width: 1024px) {
  .under-special-box .dl-box h3 {
    font-size: 20px;
  }
  .under-special-box .dl-box .dlArea h4 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 50px;
  }
  .under-special-box .dl-box .dlArea h4 span {
    position: relative;
    padding: 0 0.5em;
    display: block;
  }
  .under-special-box .dl-box .dlArea h4 span::before, .under-special-box .dl-box .dlArea h4 span::after {
    position: absolute;
    top: 50%;
    content: "";
    width: 30%;
    height: 1px;
    background-color: #000;
  }
  .under-special-box .dl-box .dlArea h4 span::before {
    left: 0;
  }
  .under-special-box .dl-box .dlArea h4 span::after {
    right: 0;
  }
}

/*------------------------
  ONAIR-LIST
------------------------*/
.under-onair-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
}
@media screen and (min-width: 1025px) {
  .under-onair-box h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
  }
  .under-onair-box h3 span {
    position: relative;
    padding: 0 0.5em;
    display: block;
  }
  .under-onair-box h3 span::before, .under-onair-box h3 span::after {
    position: absolute;
    top: 50%;
    content: "";
    width: 41%;
    height: 1px;
    background-color: #000;
  }
  .under-onair-box h3 span::before {
    left: 0;
  }
  .under-onair-box h3 span::after {
    right: 0;
  }
  .under-onair-box .onair-repeat {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 100px;
  }
  .under-onair-box .onair-repeat h4 {
    padding: 0px 20px;
    font-size: 2.2rem;
    text-align: center;
  }
  .under-onair-box .onair-repeat p span {
    background: linear-gradient(transparent 60%, #e1beee 60%, #e1beee 85%, transparent 85%);
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.8;
    display: inline-block;
    padding: 0px 0.5rem;
  }
  .under-onair-box p {
    font-size: 1.5rem;
  }
  .under-onair-box .onair-list dl {
    border-bottom: 1px solid #999;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .under-onair-box .onair-list dl dt {
    display: inline-block;
    padding-right: 20px;
    padding-left: 10px;
    font-size: 1.3rem;
  }
  .under-onair-box .onair-list dl dd {
    display: inline-block;
  }
}
@media screen and (max-width: 1024px) {
  .under-onair-box h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.8rem;
  }
  .under-onair-box h3 span {
    position: relative;
    padding: 0 0.5em;
    display: block;
  }
  .under-onair-box h3 span::before, .under-onair-box h3 span::after {
    position: absolute;
    top: 50%;
    content: "";
    width: 30%;
    height: 1px;
    background-color: #000;
  }
  .under-onair-box h3 span::before {
    left: 0;
  }
  .under-onair-box h3 span::after {
    right: 0;
  }
  .under-onair-box .onair-repeat {
    text-align: center;
    margin-bottom: 50px;
  }
  .under-onair-box .onair-repeat h4 {
    padding: 0px 20px;
    font-size: 1.5rem;
    text-align: center;
  }
  .under-onair-box .onair-repeat p span {
    background: linear-gradient(transparent 60%, #e1beee 60%, #e1beee 85%, transparent 85%);
    line-height: 1.8;
    display: inline-block;
    padding: 0px 0.5rem;
  }
  .under-onair-box .onair-list dl {
    border-bottom: 1px solid #999;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .under-onair-box .onair-list dl dt {
    padding-bottom: 10px;
  }
  .under-onair-box .onair-list dl dd {
    word-break: break-all;
  }
}

/* pager */
.pager-list {
  padding-top: 50px;
  text-align: center;
}
.pager-list h2 {
  display: none;
}
.pager-list .nav-links {
  text-align: center;
  font-size: 0.8rem;
  margin: 0 auto;
}
.pager-list .nav-links .current {
  display: inline-block;
  border: 1px solid #333;
  margin: 5px;
  background: #333;
  color: #fff;
  line-height: 30px;
  padding: 0px 10px;
}
.pager-list .nav-links a.page-numbers {
  display: inline-block;
  margin: 5px;
  border: 1px solid #333;
  padding: 0px 10px;
  line-height: 30px;
  color: #333;
  transition: all 0.3s;
}
.pager-list .nav-links a.page-numbers:hover {
  background: #999;
  border: 1px solid #999;
  color: #fff;
}

/*------------------------
  BD-LIST
------------------------*/
.under-bd-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0px 100px 0px;
}

.bd-list {
  width: 100%;
}
.bd-list li {
  text-align: center;
  margin: 10px 0px;
}
.bd-list li a {
  display: block;
  background: #000;
  color: #fff;
  padding: 20px 0px;
}
.bd-list li a:hover {
  background: #131313;
}

.tokuten img {
  width: 180px;
}

#bd01, #bd02, #bd03, #bd04, #bd05, #bd06 {
  display: block;
  height: 80px;
}

.bd-repeat {
  margin-bottom: 100px;
}
.bd-repeat h3 {
  position: relative;
  padding: 20px;
  font-size: 25px;
  text-align: center;
  border-top: solid 1px #999;
  border-bottom: solid 1px #999;
  font-weight: bold;
  margin: 20px 0px 40px 0px;
  font-family: serif;
}
.bd-repeat h3::before, .bd-repeat h3::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 1px;
  height: calc(100% + 20px);
  background-color: #999;
}
.bd-repeat h3::before {
  left: 10px;
}
.bd-repeat h3::after {
  right: 10px;
}
.bd-repeat .f-big {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.bd-repeat dl {
  margin-bottom: 2rem;
}
.bd-repeat dl dt {
  border: 1px solid #000;
  padding: 10px;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .bd-repeat h3 {
    font-size: 18px;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
