@charset "UTF-8";
/*
 top.css（ファイル名変更可）
 本サイト各ページ用CSS
*/
/*====================================

    テンプレート（※加筆修正不可）

====================================*/
/* mainV（TOP用ヘッダー）
========================================== */
.top-mainV-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.top-mainV-img {
  width: 100%;
  padding-top: 30%;
  background-image: url(https://placehold.jp/1000x300.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

/* topics一覧（TOP用）※タグは変更不可
========================================== */
.topics-area .topics-btn > a {
  display: block;
  width: 24.5%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 5px;
  color: #000;
  font-weight: normal;
  text-align: center;
  word-break: break-all;
  position: relative;
  cursor: pointer;
}

/* prBanner
========================================== */
.prBanner-area {
  margin: 40px auto;
}

.prBanner-area a {
  display: block;
}

/* prBanner-list
------------------------------------------ */
.prBanner-list {
  width: 100%;
  margin: 0 auto;
  font-size: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.prBanner-item {
  flex: 0 0 49%;
  max-width: 49%;
  vertical-align: top;
}

.prBanner-item:nth-child(2n) {
  margin-left: 2%;
}

.prBanner-item:nth-child(n+3) {
  margin-top: 15px;
}

.prBanner-img img {
  width: 100%;
  margin: 0 auto;
}

/* trailer
========================================== */
.trailer-area {
  padding: 40px 0 60px;
  background-color: #ccc;
}

.trailer-area a {
  display: block;
}

.trailer-box {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: space-between;
  align-content: stretch;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

/* trailer-movie
------------------------------ */
.trailer-movie {
  width: 63%;
  padding: 40px 0px 40px 30px;
  background-color: #000;
  position: relative;
}

.trailer-movie-data {
  padding-top: 56%;
  position: relative;
}

.trailer-movie-data iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/* trailer-detail
------------------------------ */
.trailer-detail {
  width: 37%;
  padding: 40px 30px;
  position: relative;
}

.trailer-detail-title {
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  justify-content: space-between;
  align-content: stretch;
  font-size: 0;
  line-height: 1;
  vertical-align: baseline;
}

.trailer-detail-title span.number {
  color: #000;
  font-size: 8rem;
  font-weight: bold;
  letter-spacing: 10px;
}

.trailer-detail-title span.date {
  margin-top: 0.3rem;
  color: #969696;
  font-size: 1.8rem;
}

.trailer-detail-text {
  margin: 5px auto;
  font-size: 1.6rem;
}

.trailer-detail-btn {
  width: 100%;
  padding: 15px 40px 40px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.trailer-detail-btn .d-btn {
  padding: 8px;
  font-size: 1.6rem;
}

.trailer-detail-btn .d-btn:not(:first-child) {
  margin-top: 4.2%;
}

/* movie
========================================== */
.movie-area * {
  outline: none;
}

.movie-area a {
  display: block;
}

/* movie-slider
------------------------------------------ */
.movie-slider {
  min-height: 280px;
  margin: 45px auto 30px;
  padding: 0 3.4%;
}

.movie-slider .slick-list {
  padding: 0 !important;
}

.movie-slider.slick-initialized {
  min-height: auto;
}

/* slick - nav */
.movie-slider .slick-nav {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 89%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 40;
}

.movie-slider .slick-nav li {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 6px;
  padding: 0;
  cursor: pointer;
}

.movie-slider .slick-nav li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 7px;
  height: 7px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  border-radius: 100%;
  outline: none;
  background: #dedede;
}

.movie-slider .slick-nav li.slick-active button {
  background: #000;
}

/* slick - button */
.movie-slider .slick-prev,
.movie-slider .slick-next {
  width: 30px;
  height: 30px;
  background-color: #000;
  border-radius: 100%;
  top: 80px;
  z-index: 50;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}

.movie-slider .slick-prev:hover,
.movie-slider .slick-next:hover {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

.movie-slider .slick-prev.slick-disabled,
.movie-slider .slick-next.slick-disabled {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  pointer-events: none;
}

.movie-slider .slick-prev:before,
.movie-slider .slick-next:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fdfc00;
  border-right: 1px solid #fdfc00;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.movie-slider .slick-prev {
  left: 25px;
}

.movie-slider .slick-prev:before {
  left: 12px;
}

.movie-slider .slick-next {
  right: 25px;
}

.movie-slider .slick-next:before {
  right: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* movie-slider - item
------------------------------------------ */
.movie-item {
  margin: 0 0.5%;
  position: relative;
}

.movie-item a {
  display: block;
}

.movie-item a:hover {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

.movie-img {
  width: 100% !important;
  padding-top: 56.57894% !important;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.movie-img:before, .movie-img:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 30;
}

.movie-img:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 0 17px 29px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
  margin-left: 7px;
}

.movie-img:after {
  content: '';
  display: block;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
}

.movie-text {
  margin-top: 10px;
  padding: 0 5px;
  font-size: 1.6rem;
  line-height: 1.5;
}

/* channel
========================================== */
.channel-area {
  /* padding: 40px 0 60px; */
}

.channel-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.channel-item {
  flex: 0 1 100%;
}

.channel-item + .channel-item {
  margin-left: 3%;
}

.channel-item a {
  display: block;
  padding: 13px 10px;
  border-radius: 3px;
}

.channel-item.tada a {
  background-color: #ff005a;
}

.channel-item.hulu a {
  background-color: #67ae3e;
}

.channel-item.tada a span {
  background-image: url(../images/top/channel-tada-pc.png);
}

.channel-item.hulu a span {
  background-image: url(../images/top/channel-hulu-pc.png);
}

.channel-item a span {
  display: block;
  height: 46px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

/* sns
========================================== */
.sns-body {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: space-between;
  align-content: stretch;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

/* twitter
========================================== */
.twitter-area {
  width: 48.5%;
  margin: 0;
  background-color: #69c8ff;
  border-radius: 5px;
}

.twitter-area a {
  display: block;
}

.twitter-inner {
  padding: 0;
}

/* twitter-timeline
------------------------------------------ */
.twitter-timeline-box {
  max-width: 450px;
  margin: 0 auto;
  padding: 0 3%;
}

/* instagram
========================================== */
.instagram-area {
  width: 48.5%;
  margin: 0;
}

.instagram-area .drama-box-body {
  background-color: transparent;
}

.instagram-area a {
  display: block;
}

.instagram-inner {
  padding: 0;
}

/* instagram-list
------------------------------------------ */
.instagram-list {
  margin: 20px auto 30px;
  padding: 0 6%;
  font-size: 0;
}

.instagram-item {
  width: 49.5%;
  display: inline-block;
  vertical-align: top;
}

.instagram-item:not(:nth-child(2n+1)) {
  margin-left: 1%;
}

.instagram-item:nth-child(n+3) {
  margin-top: 1%;
}

.instagram-item:nth-child(n+5) {
  display: none;
}

.instagram-img {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.instagram-img a {
  padding-top: 100%;
}

.instagram-img img {
  width: auto !important;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* goods
========================================== */
.goods-area a {
  display: block;
}

/* goods-list
------------------------------------------ */
.goods-list {
  margin: 40px auto 30px;
  padding: 0 3%;
  font-size: 0;
}

.goods-item {
  width: 24.45%;
  display: inline-block;
  vertical-align: top;
}

.goods-item:not(:first-child) {
  margin-left: 0.733%;
}

.goods-item:nth-child(4n+1) {
  margin-left: 0;
}

.goods-item:nth-child(n+5) {
  margin-top: 15px;
}

.goods-img {
  border: solid 1px #aeaeae;
}

.goods-text {
  margin-top: 10px;
  padding: 0 3px;
  font-size: 1.3rem;
  text-align: left;
}

.goods-btn {
  margin: 3% auto;
  width: 36.3%;
}

/* ------------------------------------------------------------------
 SP（〜600px）
------------------------------------------------------------------ */
@media only screen and (max-width: 600px) {
  /* mainV（TOP用ヘッダー）
  ========================================== */
  .top-mainV-img {
    padding-top: 53.125%;
    background-image: url(https://placehold.jp/640x340.png);
  }

  /* topics一覧（TOP用）※タグは変更不可
  ========================================== */
  .topics-area .topics-btn > a {
    width: 87.5% !important;
  }

  /* prBanner
  ========================================== */
  .prBanner-area {
    margin: 3% auto;
  }

  .prBanner-inner {
    padding: 0 3%;
  }

  /* prBanner-list
  ------------------------------------------ */
  .prBanner-item {
    flex-basis: 100%;
    max-width: 100%;
  }

  .prBanner-item:not(:first-child) {
    margin-top: 15px;
  }

  .prBanner-item:nth-child(2n) {
    margin-left: 0;
  }

  .prBanner-item:nth-child(n+3) {
    margin-top: 15px;
  }

  /* movie
  ========================================== */
  /* movie-slider
  ------------------------------------------ */
  .movie-slider {
    margin: 9% auto;
  }

  .movie-slider .slick-list {
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* movie-slider - item
  ------------------------------------------ */
  .movie-img:before {
    border-width: 12px 0 12px 20px;
    margin-left: 4px;
  }

  .movie-img:after {
    width: 50px;
    height: 50px;
  }

  .movie-text {
    font-size: 0.9rem;
    padding: 0;
    line-height: 1.8;
    white-space: normal;
  }

  /* channel
  ========================================== */
  .channel-area {
    padding: 3% 3% 9%;
  }

  .channel-list {
    width: 100%;
    font-size: 0;
  }

  .channel-item {
    width: 48.2%;
  }

  .channel-item:not(:first-child) {
    margin-left: 3.6%;
  }

  .channel-item a {
    padding: 13px 10px;
  }

  .channel-item a span {
    height: 43px;
  }

  .channel-item.tada a span {
    background-image: url(../images/top/channel-tada-sp.png);
  }

  .channel-item.hulu a span {
    background-image: url(../images/top/channel-hulu-sp.png);
  }

  /* twitter
  ========================================== */
  .twitter-area {
    width: 94%;
    margin: 0 auto;
  }

  .twitter-area .drama-box-body {
    border-radius: 0 0 5px 5px;
  }

  .twitter-timeline-box {
    padding: 3% 3% 5%;
  }

  .twitter-timeline-box iframe {
    max-height: 280px;
  }

  /* instagram
  ========================================== */
  .instagram-area {
    width: 94%;
    margin: 6% auto 0;
  }

  /* instagram-list
  ------------------------------------------ */
  .instagram-list {
    margin: 10px auto 6.5%;
    padding: 0 6%;
  }

  .instagram-item {
    width: 49.5%;
  }

  .instagram-item:not(:nth-child(2n+1)) {
    margin-left: 1%;
  }

  .instagram-item:nth-child(n+3) {
    margin-top: 1%;
  }

  /* goods
  ========================================== */
  .goods-area {
    margin: 9% auto 3%;
  }

  /* goods-list
  ------------------------------------------ */
  .goods-list {
    margin: 8% auto 4%;
    padding: 0 3%;
  }

  .goods-item {
    width: 48.5%;
  }

  .goods-item:not(:first-child) {
    margin-left: 3%;
  }

  .goods-item:nth-child(2n+1) {
    margin-left: 0;
  }

  .goods-item:nth-child(4n+1) {
    margin-left: 0;
  }

  .goods-item:nth-child(n+3) {
    display: none;
    margin-top: 3%;
  }

  .goods-item:nth-child(n+5) {
    margin-top: 3%;
  }

  .goods-text {
    margin-top: 5px;
    font-size: 1.2rem;
  }

  .goods-btn {
    width: 87.5%;
    margin: 4% auto 9%;
  }

  .goods-btn .d-btn {
    padding: 10px 10px 12px;
  }

  .goods-btn .d-btn:after {
    width: 8px;
    height: 8px;
  }
}
/* ------------------------------------------------------------------
 SP 〜 tablet（〜992px）
------------------------------------------------------------------ */
@media screen and (max-width: 992px) {
 /* trailer
========================================== */
  .trailer-area {
    padding: 6% 0;
  }

  .trailer-area .d-box-body {
    padding: 0 3% 3%;
  }

  .trailer-box {
    display: block;
    border-radius: 3px;
  }

  /* trailer-movie
  ------------------------------------------ */
  .trailer-movie {
    width: 100%;
    padding: 4% 3%;
  }

  /* trailer-detail
  ------------------------------------------ */
  .trailer-detail {
    width: 100%;
    padding: 0 3% 5%;
  }

  .trailer-detail-title {
    display: block;
    width: 23%;
    float: left;
    padding-left: 5px;
  }

  .trailer-detail-title span {
    display: block;
  }

  .trailer-detail-title span.number {
    margin-left: 0;
    font-size: 2.8rem;
    letter-spacing: 0;
  }

  .trailer-detail-title span.date {
    font-size: 0.9rem;
  }

  .trailer-detail-text {
    display: block;
    width: 77%;
    float: right;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .trailer-detail-btn {
    clear: both;
    padding: 5% 0 0;
    position: relative;
  }

  .trailer-detail-btn .drama-btn {
    width: 100% !important;
    font-size: 1.5rem !important;
  }

  .trailer-detail-btn .drama-btn:not(:first-child) {
    margin-top: 4.2%;
  }

  /* movie
  ========================================== */
  /* movie-slider
  ------------------------------------------ */
  .movie-slider {
    padding: 0;
  }

  .movie-slider .slick-list {
    padding: 0 17% !important;
  }

  /* slick - nav */
  .movie-slider .slick-nav {
    bottom: -20px;
    width: 100%;
  }

  /* movie-slider - item
  ------------------------------------------ */
  .movie-item {
    margin: 0 0.125%;
  }
}
/* ------------------------------------------------------------------
 PC（993px〜）
------------------------------------------------------------------ */
/*====================================

    00.Base_Settings

====================================*/
/*mainColor*/
/*baseColor*/
/*txtColor*/
/*blandColor*/
/*====================================

    00.Base_Mixin

====================================*/
/*alt*/
/*textIndent*/
/*
 disc.css（ファイル名変更可）
 本サイト各ページ用CSS
*/
body {
  -webkit-text-size-adjust: 100%;
}

#zambi_disc {
  /* disc
  ========================================== */
  /* disc-intro
  ========================================== */
  /* disc-contents
  ========================================== */
  /* disc-contents product
  ========================================== */
  /* disc-contents bonus
  ========================================== */
  /* disc-contents disc-detail
  ========================================== */
}
#zambi_disc h2, #zambi_disc h3, #zambi_disc h4, #zambi_disc p, #zambi_disc ul, #zambi_disc li, #zambi_disc span, #zambi_disc a {
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#zambi_disc .d-inner {
  padding: 0 24px;
}
#zambi_disc .disc-area {
  margin: 0 auto;
  background: #362e35 url(../images/common/bg06.gif) repeat 0 0;
}
#zambi_disc .disc-area a {
  display: block;
}
#zambi_disc .disc-area .d-box-title {
  background-image: url(../images/disc/h2_tit_disc.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  height: 0;
  width: 86%;
  max-width: 860px;
  padding-top: 20.7948%;
  position: absolute;
  top: 0;
  left: -10.5%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -999px;
}
#zambi_disc .disc-area .d-box-body {
  padding: 200px 0 100px;
  position: relative;
}
#zambi_disc .disc-inner {
  position: relative;
}
#zambi_disc .disc-inner::before {
  content: url(../images/disc/item_flower_r.png);
  display: block;
  position: absolute;
  top: 5.8%;
  right: -10%;
}
#zambi_disc .disc-intro-inner p {
  font-size: 2rem;
  letter-spacing: 0.15em;
}
#zambi_disc .disc-intro-title {
  font-size: 2.5rem;
  letter-spacing: 0.25em;
  padding-bottom: 1em;
}
#zambi_disc .disc-intro-title span.red {
  color: #e60012;
  letter-spacing: 0.25em;
}
#zambi_disc #disc-intro .intro-story-box {
  padding-top: 4em;
}
#zambi_disc #disc-intro .intro-story-box p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  padding-bottom: 1em;
}
#zambi_disc #disc-intro .intro-story-box p span.dash {
  width: 3em;
  display: inline-block;
  border-top: 1px solid #fff;
  vertical-align: top;
  margin-top: 1.3rem;
  margin-left: 0.5rem;
}
#zambi_disc #disc-intro .intro-story-title {
  background-image: url(../images/disc/h3_tit_story.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  height: 0;
  width: 100%;
  max-width: 153px;
  padding-top: 2.90519%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 2%;
}
#zambi_disc .disc-contents-inner {
  padding-bottom: 60px;
  border-bottom: 1px solid #ffffff;
  border-image-source: url(../images/common/line_wh01.gif);
  border-image-slice: 0 0 100 0;
}
#zambi_disc #product .disc-product-title {
  background: url(../images/disc/h3_tit_product.png) no-repeat center center;
  padding: 0;
  width: 100%;
  height: 0;
  padding-top: 4.30248%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 1px solid #ffffff;
  border-image-source: url(../images/common/line_wh01.gif);
  border-image-slice: 0 0 100 0;
}
#zambi_disc #product .disc-product-detail {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: space-between;
  align-content: stretch;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5% 0 0 0;
}
#zambi_disc #product .disc-product-detail-img {
  width: 42%;
  margin: 0;
  padding: 0 8% 0 2%;
}
#zambi_disc #product .disc-product-detail-txt {
  width: 58%;
  margin: 0;
}
#zambi_disc #product .disc-product-detail-txt img {
  width: 100%;
}
#zambi_disc #product .disc-product-box {
  padding-bottom: 5%;
  position: relative;
  z-index: 0;
}
#zambi_disc #product .disc-product-box.box-bd::before {
  content: '';
  background-image: url(../images/disc/item_bg_bd.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 20%;
  height: 0;
  padding-top: 20%;
  position: absolute;
  top: 0;
  left: -4.8%;
  z-index: -1;
}
#zambi_disc #product .disc-product-box.box-dvd::before {
  content: '';
  background-image: url(../images/disc/item_bg_dvd.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 20%;
  height: 0;
  padding-top: 20%;
  position: absolute;
  top: 0;
  left: -4.8%;
  z-index: -1;
}
#zambi_disc #product .disc-product-box h4 {
  font-size: 3rem;
  padding-bottom: 0.3em;
}
#zambi_disc #product .disc-product-box .price {
  font-size: 2.2rem;
  padding-bottom: 1em;
  line-height: 1.3;
}
#zambi_disc #product .disc-product-box .price span {
  font-size: 1.6rem;
}
#zambi_disc #bonus.bonus-area {
  background-color: rgba(124, 1, 176, 0.1);
  padding: 4% 0;
  border: 1px solid #958665;
  margin-bottom: 30px;
}
#zambi_disc #bonus .bonus-inner {
  width: 800px;
  margin: 0 auto;
  padding: 0;
}
#zambi_disc #bonus .disc-bonus-title01, #zambi_disc #bonus .disc-bonus-title02, #zambi_disc #bonus .disc-bonus-title03 {
  background: url(../images/disc/bonus01_tit.png) no-repeat 0 0;
  background-size: contain;
  width: 100%;
  height: 0;
  padding-top: 3.625%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#zambi_disc #bonus .disc-bonus-title02 {
  background: url(../images/disc/bonus02_tit.png) no-repeat 0 0;
  background-size: contain;
  padding-top: 3.5%;
}
#zambi_disc #bonus .disc-bonus-title03 {
  background: url(../images/disc/bonus03_tit.png) no-repeat 0 0;
  background-size: contain;
  padding-top: 3.75%;
}
#zambi_disc #bonus ul {
  margin-top: 1em;
  padding: 1em 0 2em;
  border-top: 1px solid #ffffff;
  border-image-source: url(../images/common/line_wh01.gif);
  border-image-slice: 100 0 0 0;
}
#zambi_disc #bonus ul li {
  font-size: 1.8rem;
}
#zambi_disc #disc-detail.disc-detail-area {
  margin-top: 0;
}
#zambi_disc #disc-detail .disc-detail-inner {
  padding: 0;
}
#zambi_disc #disc-detail .disc-detail-title {
  font-size: 2rem;
}
#zambi_disc #disc-detail ul {
  padding-top: 1em;
}
#zambi_disc #disc-detail ul li {
  font-size: 1.6rem;
}
#zambi_disc #disc-detail ul li span.large {
  font-size: 2rem;
}

/* disc-info
========================================== */
#disc-info.disc-info-area {
  margin: 30px 0 0;
}
#disc-info .d-box ul li {
  font-size: 1.6rem;
}
#disc-info .d-box.info-cast-box {
  padding-bottom: 4%;
}
#disc-info .info-box-title_cast, #disc-info .info-box-title_staff {
  background-image: url(../images/disc/h3_tit_cast.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  height: 0;
  width: 100%;
  max-width: 113px;
  padding-top: 2.9875%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 2%;
}
#disc-info .info-box-title_staff {
  background-image: url(../images/disc/h3_tit_staff.png);
  max-width: 123px;
  padding-top: 3.099%;
}

/* Module
========================================== */
#disc-contents {
  /*------- button -------*/
  /*------- note -------*/
}
#disc-contents .disc-contents-btn {
  width: 36.3%;
  margin: 4% auto 0;
  padding: 0;
  position: relative;
}
#disc-contents .disc-contents-btn a {
  padding: 0.8em;
  font-size: 2rem;
  line-height: 1.4;
  color: #ffffff;
  border-color: #ffffff;
  background-repeat: 25px;
  border-radius: 1.8em;
}
#disc-contents .disc-contents-btn a::after {
  border-color: #ffffff;
}
#disc-contents .disc-contents-btn a:hover {
  background: #431653;
}
#disc-contents .note {
  padding-top: 2%;
}
#disc-contents .note ul {
  text-align: center;
}
#disc-contents .note ul li {
  font-size: 1.3rem;
}

/* ------------------------------------------------------------------
 SP（〜600px）
------------------------------------------------------------------ */
@media only screen and (max-width: 600px) {
  div#zambi_disc {
    /* disc
    ========================================== */
    /* disc-intro
    ========================================== */
    /* disc-contents product
    ========================================== */
    /* disc-contents bonus
    ========================================== */
    /* disc-contents disc-detail
    ========================================== */
    /* disc-info
    ========================================== */
    /* Module
    ========================================== */
  }
  div#zambi_disc .disc-area {
    padding: 0;
  }
  div#zambi_disc .disc-area .d-box-title {
    background: url(../images/sp/h2_tit_disc_sp.png) no-repeat right 0 top 0;
    background-size: contain;
    width: 100%;
    min-width: auto;
    height: 0;
    padding-top: 27.2%;
    position: absolute;
    top: 0;
    left: 0;
  }
  div#zambi_disc .disc-area .d-box-body {
    padding: 37.2% 0 12%;
  }
  div#zambi_disc .disc-intro-inner p {
    font-size: 1.6rem;
  }
  div#zambi_disc .disc-intro-title {
    font-size: 2.4rem;
  }
  div#zambi_disc #disc-intro .intro-story-title {
    padding-top: 5.81038%;
  }
  div#zambi_disc #disc-intro .intro-story-box p {
    font-size: 1.4rem;
  }
  div#zambi_disc #product .disc-product-title {
    padding-top: 9.3%;
  }
  div#zambi_disc #product .disc-product-detail {
    display: block;
    flex-flow: unset;
    align-items: center;
  }
  div#zambi_disc #product .disc-product-detail-img {
    width: 70%;
    margin: 0 auto;
    padding: 0;
  }
  div#zambi_disc #product .disc-product-detail-txt {
    width: 100%;
    padding-top: 3%;
  }
  div#zambi_disc #product .disc-product-box h4 {
    font-size: 2.4rem;
  }
  div#zambi_disc #product .disc-product-box .price {
    font-size: 2rem;
    padding-bottom: 0;
  }
  div#zambi_disc #product .disc-product-box .price span {
    font-size: 1.4rem;
  }
  div#zambi_disc #bonus .disc-bonus-title01, div#zambi_disc #bonus .disc-bonus-title02, div#zambi_disc #bonus .disc-bonus-title03 {
    padding-top: 7.25%;
  }
  div#zambi_disc #bonus .disc-bonus-title02 {
    padding-top: 7%;
  }
  div#zambi_disc #bonus .disc-bonus-title03 {
    padding-top: 7.5%;
  }
  div#zambi_disc #bonus ul li {
    font-size: 1.4rem;
  }
  div#zambi_disc #disc-detail .disc-detail-title {
    font-size: 1.8rem;
  }
  div#zambi_disc #disc-detail ul li {
    font-size: 1.4rem;
  }
  div#zambi_disc #disc-detail ul li span.large {
    font-size: 1.8rem;
  }
  div#zambi_disc #disc-info .d-box ul li {
    font-size: 1.4rem;
  }
  div#zambi_disc #disc-info .info-box-title_cast, div#zambi_disc #disc-info .info-box-title_staff {
    padding-top: 5.975%;
  }
  div#zambi_disc #disc-info .info-box-title_staff {
    padding-top: 6.19799%;
  }
  div#zambi_disc #disc-contents {
    /*------- button -------*/
  }
  div#zambi_disc #disc-contents .disc-contents-btn {
    width: 93.09%;
    padding: 0;
    margin: 4% auto 6%;
  }
  div#zambi_disc #disc-contents .disc-contents-btn a {
    padding: 0.8em;
  }
}
/* ------------------------------------------------------------------
 SP 〜 tablet（〜992px）
------------------------------------------------------------------ */
@media screen and (max-width: 992px) {
  #zambi_disc {
    /* disc
    ========================================== */
    /* disc-intro
    ========================================== */
    /* disc-contents
    ========================================== */
    /* disc-contents product
    ========================================== */
    /* disc-contents bonus
    ========================================== */
    /* disc-contents disc-detail
    ========================================== */
    /* disc-info
    ========================================== */
    /* Module
    ========================================== */
  }
  #zambi_disc .disc-area .d-box-title {
    min-width: auto;
    right: -4%;
  }
  #zambi_disc .disc-area .d-box-body {
    padding: 20% 0 14.8%;
  }
  #zambi_disc .disc-inner {
    padding: 0 3%;
  }
  #zambi_disc .disc-intro-inner {
    padding: 0 3%;
  }
  #zambi_disc .disc-intro-title {
    font-size: 3rem;
  }
  #zambi_disc #disc-intro .intro-story-title {
    max-width: unset;
    padding-top: 4.35779%;
  }
  #zambi_disc .disc-contents-inner {
    padding-bottom: 3em;
  }
  #zambi_disc #product .disc-product-title {
    background-size: contain;
    padding-top: 6.2%;
  }
  #zambi_disc #bonus.bonus-area {
    padding: 8% 0 4%;
  }
  #zambi_disc #bonus .bonus-inner {
    width: 90%;
  }
  #zambi_disc #bonus .disc-bonus-title01, #zambi_disc #bonus .disc-bonus-title02, #zambi_disc #bonus .disc-bonus-title03 {
    padding-top: 5.4375%;
  }
  #zambi_disc #bonus .disc-bonus-title02 {
    padding-top: 5.25%;
  }
  #zambi_disc #bonus .disc-bonus-title03 {
    padding-top: 5.625%;
  }
  #zambi_disc #bonus ul li {
    font-size: 1.6rem;
  }
  #zambi_disc #disc-info .d-box.info-cast-box {
    padding-bottom: 8%;
  }
  #zambi_disc #disc-info .info-box-title_cast, #zambi_disc #disc-info .info-box-title_staff {
    padding-top: 4.48125%;
    margin-bottom: 4%;
  }
  #zambi_disc #disc-info .info-box-title_staff {
    padding-top: 4.6485%;
    margin-bottom: 4%;
  }
  #zambi_disc #disc-contents {
    /*------- button -------*/
  }
  #zambi_disc #disc-contents .disc-contents-btn {
    clear: both;
    position: relative;
    width: 70%;
    margin: 4% auto 0;
    padding-bottom: 6%;
  }
  #zambi_disc #disc-contents .disc-contents-btn a {
    font-size: 1.7rem;
  }
}
/* ------------------------------------------------------------------
 PC（993px〜）
------------------------------------------------------------------ */
