@charset "UTF-8";
.bddvd .swiper-pagination-bullet {
  background: #fff !important;
}

.bddvd__content__jacket {
  flex-shrink: 0;
}

.detail {
  position: relative;
  opacity: 0;
}
.-load .detail {
  animation: bddvdDetailIn 0.6s 0s forwards cubic-bezier(1, 0, 0, 1);
}
@keyframes bddvdDetailIn {
  0% {
    clip-path: inset(0 100% 0 -20%);
    opacity: 0;
  }
  99% {
    clip-path: inset(0 0 0 -20%);
    opacity: 1;
  }
  100% {
    clip-path: none;
    opacity: 1;
  }
}

.detail__title {
  position: absolute;
  top: 7px;
  left: min(-7.3%, -40px);
  font-size: 1.125rem;
  color: #858585;
  display: none;
  letter-spacing: -0.06em;
  writing-mode: vertical-rl;
  opacity: 0;
}
.-load .detail__title {
  animation: tapeInTop 0.6s 0s forwards cubic-bezier(1, 0, 0, 1);
}

.detail__content__btn {
  background: #ec1014;
  color: #000;
  display: block;
  font-weight: 800;
  text-align: center;
}
.detail__content__btn p {
  position: relative;
}
.detail__content__btn .c-arw {
  position: absolute;
  top: 50%;
  display: inline-block;
  transform: translateY(-50%);
}
.detail__content__left__detail .detail__item {
  flex-shrink: 0;
  width: 100%;
  /* @include MQ_WIDE {
      width: getPer(326, 690);
  } */
}
.detail__content__left__detail .detail__item.dvd {
  margin-top: 50px;
}

.detail__item__title {
  font-weight: 600;
  position: relative;
}
.detail__item__title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #858585;
  content: "";
  height: 1px;
  transform: scaleX(0);
  transition: 0.5s 0.4s cubic-bezier(1, 0, 0, 1);
  transform-origin: left;
  width: 100%;
}
.-load .detail__item__title::after {
  transform: scaleX(1);
}

.detail__item__listwrap {
  line-height: 1.7;
}
.detail__item__listwrap dl {
  display: flex;
}
.detail__item__listwrap dt {
  color: #858585;
  margin-right: 2em;
}

.detail__item__tokutenimg {
  position: relative;
}
.detail__item__tokutenimg .js-tokuten-slider {
  margin: 0;
}

.detail__item__tokutenimg__note {
  color: #858585;
}

.detail__content__video {
  cursor: pointer;
  position: relative;
  width: 100%;
}
.detail__content__video .thumb {
  overflow: hidden;
}
.detail__content__video img {
  transition: transform 0.3s ease;
}
.detail__content__video::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(/assets/img/bddvd/ico_play.svg) no-repeat center/contain;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.jacket {
  text-align: center;
  position: relative;
}
.jacket__inner {
  background: #ec1014;
  opacity: 0;
}
.-load .jacket__inner {
  animation: tapeInLeft 0.6s 0s forwards cubic-bezier(1, 0, 0, 1);
}

.jacket__number {
  line-height: 1;
  color: #fff;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  /* opacity: 0;
  .-load & {
      animation: tapeInLeft 0.6s 0.3s forwards $EaseInOut_Expo;
  } */
}
.jacket__number img {
  height: 100%;
  width: auto;
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.5s 0s cubic-bezier(1, 0, 0, 1);
}
.-load .jacket__number img {
  opacity: 1;
  transform: translateY(0);
}

.jacket__header {
  background: #ec1014;
}

.jacket__title {
  color: #000;
  font-weight: 800;
  line-height: 1;
}

.jacket__releasedate {
  background: #000;
  color: #fff;
  font-weight: 500;
  width: 100%;
}
.bddvd__content__slider .swiper-wrapper {
  align-items: center;
}

.bddvd__tokuten__modal {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  height: 100%;
  opacity: 0;
  overflow: hidden;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  overflow-y: scroll;
  pointer-events: none;
  scrollbar-width: none; /* Firefox 対応 */
  transition: all 0.5s 0s ease;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.bddvd__tokuten__modal.-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 100;
}
.bddvd__tokuten__modal .swiper-wrapper {
  display: flex;
}
.bddvd__tokuten__modal .swiper-slide {
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}
.bddvd__tokuten__modal .swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}
.bddvd__tokuten__modal .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  max-width: none;
  width: 100%;
}
.bddvd__tokuten__modal .bddvd__tokuten__modal__pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: relative !important;
  bottom: auto !important;
}
.bddvd__tokuten__modal .bddvd__tokuten__modal__pagination span {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  height: 2vw;
  margin: 0 1.5vw;
  transition: background 0.4s;
  width: 2vw;
  cursor: pointer;
}
.bddvd__tokuten__modal .bddvd__tokuten__modal__pagination span.swiper-pagination-bullet-active {
  background-color: #fff;
}
.bddvd__tokuten__modal.-single .swiper-pagination {
  display: none;
}
.bddvd__tokuten__modal.-single .swiper-slide {
  pointer-events: none;
}

.bddvd__tokuten__modal__contwrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 100vw;
}

.bddvd__tokuten__modal__cont {
  aspect-ratio: 1/1;
  max-height: 90vh;
  max-width: 100%;
}

.bddvd__tokuten__sec {
  color: #fff;
  opacity: 0;
}
.bddvd__tokuten__sec + .bddvd__tokuten__sec {
  margin-top: 21.7vw;
}
.bddvd__tokuten__sec:last-of-type {
  padding-bottom: 48px;
}
.bddvd__tokuten__sec.-reveal {
  animation: bddvdTokutenIn 0.6s 0s forwards cubic-bezier(1, 0, 0, 1);
}
@keyframes bddvdTokutenIn {
  0% {
    clip-path: inset(-10% 100% 0 -20%);
    opacity: 0;
  }
  99% {
    clip-path: inset(-10% 0 0 -20%);
    opacity: 1;
  }
  100% {
    clip-path: none;
    opacity: 1;
  }
}

.bddvd__tokuten__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.bddvd__tokuten__title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #858585;
  content: "";
  height: 1px;
  width: 100%;
}
.bddvd__tokuten__title::before {
  background: url(/assets/img/bddvd/tokuten/ico_uzu.png) no-repeat center/100% auto;
  content: "";
  z-index: -1;
}
.-reveal .bddvd__tokuten__title::before {
  animation: uzuIn 2s 0.2s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}

.bddvd__tokuten__sec__txt {
  font-size: 0.875rem;
}

.bddvd__tokuten__kyotsu__ph {
  flex-shrink: 0;
}
.bddvd__tokuten__kyotsu__ph img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.bddvd__tokuten__header {
  position: relative;
}
.bddvd__tokuten__header::after {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #858585;
  content: "";
  height: 1px;
  transform: scaleX(0);
  transition: 0.5s 0.4s cubic-bezier(1, 0, 0, 1);
  transform-origin: left;
  width: 100%;
}
.-reveal .bddvd__tokuten__header::after {
  transform: scaleX(1);
}

.bddvd__tokuten__detail__subtitle {
  background: #ec1014;
  color: #000;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
}

.bddvd__tokuten__detail__title {
  font-weight: 700;
}
.bddvd__tokuten__kyotsu__infolist__ttl {
  color: #858585;
}

.bddvd__tokuten__offerlist {
  font-size: 0.75rem;
  color: #858585;
}

.bddvd__tokuten__shop__list__item {
  clip-path: inset(0 100% 0 0);
  transition: all 0.5s 0.3s cubic-bezier(1, 0, 0, 1);
}
.-reveal .bddvd__tokuten__shop__list__item {
  clip-path: inset(0 0 0 0);
}

.bddvd__tokuten__shop__list__item__head {
  align-items: center;
  background: #ec1014;
  justify-content: center;
}
.bddvd__tokuten__shop__list__item__head .head__inner {
  /* align-items: center;
  display: flex; */
  display: block;
  height: 100%;
  width: 100%;
}
.bddvd__tokuten__shop__list__item__head .head__inner span {
  display: inline-block;
  position: relative;
}
.bddvd__tokuten__shop__list__item__head .head__inner span::before {
  position: absolute;
  top: 6px;
  right: -12px;
  background-image: url(/tv/assets/img/common/ico/ico_external.svg);
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}
.bddvd__tokuten__shop__list__item__head .sho-item__detail {
  font-size: 0.75rem;
  background: #000;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.bddvd__tokuten__shop__list__item__head__cont {
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  width: 100%;
}
.bddvd__tokuten__shop__list__item__head__cont h4 {
  font-size: 0.9375rem;
  color: #000;
  font-weight: 600;
}
.bddvd__tokuten__shop__list__item__head__cont h4 small {
  font-size: 0.6875rem;
  display: block;
  font-weight: 700;
}
.bddvd__tokuten__shop__list__item__head__cont h4 .ico_link {
  background: url(/assets/img/common/ico/ico_external.svg) no-repeat center/contain;
  display: none;
}
.-haslink .bddvd__tokuten__shop__list__item__head__cont h4 .ico_link {
  display: inline-block;
}

.bddvd__tokuten__shop__list__item__thumb {
  position: relative;
  aspect-ratio: 206/166;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}
.bddvd__tokuten__shop__list__item__thumb img {
  transition: all 0.3s ease;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.bddvd__tokuten__shop__list__item__thumb.-cs img {
  -o-object-fit: cover;
     object-fit: cover;
}
.bddvd__tokuten__shop__list__item__thumb::after {
  position: absolute;
  top: 2vw;
  right: 2vw;
  background: url(/assets/img/bddvd/tokuten/ico_plus.svg) no-repeat;
  content: "";
  height: 6.6vw;
  width: 6.6vw;
}
.bddvd__tokuten__shop__list__item__thumb.-cs {
  pointer-events: none;
}
.bddvd__tokuten__shop__list__item__thumb.-cs::after {
  display: none;
}

.bddvd__tokuten__shop__list__item__txt {
  font-weight: 500;
}
.bddvd__tokuten__shop__list__item__note {
  font-size: 0.75rem;
  color: #858585;
  margin-top: 4px;
  line-height: 1.2;
}
@media (max-width: 779px){
  .bddvd__content {
    margin: 8.9vw 0 0;
  }
  .bddvd__content__jacket {
    margin: 0 -9vw 0;
  }
  .bddvd__content__detail {
    margin-top: 18.5vw;
  }
  .detail__content {
    font-size: 3.5vw;
    line-height: 1.5;
  }
  .detail__content__right {
    margin-top: 17.6vw;
  }
  .detail__content__btn {
    font-size: 6.1vw;
    line-height: 20.2vw;
    margin-top: 8.3vw;
    min-height: 20.5vw;
  }
  .detail__content__btn .c-arw {
    border-width: 0.5vw;
    height: 2.6vw;
    right: 2.5vw;
    width: 2.6vw;
  }
  .detail__content__btn .c-arw::after {
    height: 0.4vw;
  }
  .detail__content__left__detail .detail__item.dvd {
    margin-top: 7.6vw;
  }
  .detail__item__title {
    font-size: 5.1vw;
    margin-bottom: 4.7vw;
    padding-bottom: 4.2vw;
  }
  .detail__item__tokutenimg {
    margin-top: 7vw;
  }
  .detail__item__tokutenimg .js-tokuten-slider {
    width: 63.4vw;
  }
  .detail__item__tokutenimg__note {
    font-size: 0.75rem;
    margin-top: 3.8vw;
  }
  .detail__content__video {
    margin-top: 10.2vw;
  }
  .detail__content__video::after {
    height: 16.9vw;
    width: 16.9vw;
  }
  .jacket__number {
    position: absolute;
    left: -1.1vw;
    bottom: -3.3vw;
    height: 20vw;
    z-index: 2;
  }
  .jacket__header {
    padding: 3.7vw 0 2.8vw;
    opacity: 0;
  }
  .-load .jacket__header {
    animation: tapeInLeft 0.6s 0s forwards cubic-bezier(1, 0, 0, 1);
  }
  .jacket__title {
    font-size: 8.2vw;
  }
  .jacket__releasedate {
    font-size: 5.1vw;
    line-height: 9.4vw;
    margin-top: 3.4vw;
  }
  .jacket__pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 3.2vw;
    padding-right: 2.5vw;
  }
  .bddvd__content__slider {
    opacity: 0;
  }
  .-load .bddvd__content__slider {
    animation: tapeInLeft 0.6s 0.2s forwards cubic-bezier(1, 0, 0, 1);
  }
  .bddvd__tokuten__title {
    font-size: 7.6vw;
    padding-bottom: 5.1vw;
  }
  .bddvd__tokuten__title::before {
    position: absolute;
    top: -3.9vw;
    left: -7.7vw;
    height: 11.5vw;
    width: 11.5vw;
  }
  .bddvd__tokuten__sec__inner {
    margin-top: 8.3vw;
  }
  .bddvd__tokuten__sec__txt {
    margin-top: 12px;
  }
  .bddvd__tokuten__kyotsu__ph {
    aspect-ratio: 1/1;
    width: 100%;
  }
  .bddvd__tokuten__kyotsu__detail {
    margin: 8.2vw 0 0;
  }
  .bddvd__tokuten__header {
    padding-bottom: 5.1vw;
  }
  .bddvd__tokuten__detail__subtitle {
    font-size: 5.1vw;
    line-height: 6.4vw;
    padding: 0 1.2vw;
    text-align: center;
    width: 100%;
  }
  .bddvd__tokuten__detail__title {
    font-size: 5.3vw;
    line-height: 1.4285714286;
    margin-top: 4.1vw;
  }
  .bddvd__tokuten__kyotsu__infolist {
    font-size: 3.5vw;
    margin-top: 3.7vw;
  }
  .bddvd__tokuten__offerlist {
    line-height: 1.45;
    margin-top: 6.4vw;
  }
  .bddvd__tokuten__shop__list {
    display: flex;
    flex-wrap: wrap;
    gap: 4.1vw;
  }
  .bddvd__tokuten__shop__list__item {
    width: calc(50% - 2.1vw);
  }
  .bddvd__tokuten__shop__list__item__head {
    min-height: 21vw;
  }
  .bddvd__tokuten__shop__list__item__head .head__inner {
    padding: 0 0.2vw 1.2vw;
  }
  .bddvd__tokuten__shop__list__item__head .head__inner span::before {
    display: none;
  }
  .bddvd__tokuten__shop__list__item__head .sho-item__detail {
    font-size: 2.9vw;
    line-height: 5.8vw;
  }
  .bddvd__tokuten__shop__list__item__head__cont {
    height: 13.8vw;
  }
  .bddvd__tokuten__shop__list__item__head__cont h4 {
    font-size: 4.1vw;
    line-height: 1.03125;
    letter-spacing: -0.06em;
  }
  .bddvd__tokuten__shop__list__item__head__cont h4 small {
    font-size: 3vw;
    margin-top: 2px;
  }
  .bddvd__tokuten__shop__list__item__head__cont h4 .ico_link {
    height: 2.5vw;
    margin-left: 0.5vw;
    margin-bottom: 0.5vw;
    width: 2.5vw;
  }
  .bddvd__tokuten__shop__list__item__txt {
    font-size: 3.5vw;
    line-height: 1.5;
    letter-spacing: -0.05em;
    margin-top: 1.6vw;
  }
  .bddvd__tokuten__shop__list__item__note {
    margin-top: 2.5vw;
  }
}
@media (min-width: 780px){
  .bddvd__content {
    display: flex;
    margin: 50px auto 0;
  }
  .-tokuten .bddvd__content {
    display: block;
  }
  .bddvd__content__jacket {
    max-width: 500px;
    min-width: 290px;
    width: 26vw;
  }
  .bddvd__content__detail {
    flex: 1;
    margin-left: min(8.8vw, 170px);
  }
  .detail__title {
    display: block;
  }
  .detail__content {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: -7px;
  }
  .detail__content__right {
    margin-top: 44px;
  }
  .detail__content__btn {
    font-size: 1.375rem;
    line-height: 78px;
    margin-top: 35px;
    min-height: 80px;
    width: 100%;
  }
  .detail__content__btn .c-arw {
    height: 13px;
    right: 10px;
    width: 13px;
  }
  .detail__item__title {
    font-size: 1.125rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .detail__item__listwrap {
    line-height: 1.6;
  }
  .detail__item__tokutenimg {
    margin-top: 34px;
  }
  .detail__item__tokutenimg .js-tokuten-slider {
    width: 253px;
  }
  .detail__item__tokutenimg__note {
    font-size: 0.8125rem;
    margin-top: 5px;
  }
  .detail__item__tokutenimg__pagination {
    position: absolute;
    bottom: 0;
    right: -20px;
  }
  .detail__content__video {
    margin-top: 57px;
    max-width: 326px;
  }
  .detail__content__video:hover img {
    transform: scale(1.05);
  }
  .detail__content__video::after {
    height: 66px;
    width: 66px;
  }
  .jacket__number {
    position: absolute;
    top: -72px;
    left: -100px;
    height: 102px;
  }
  .jacket__header {
    padding: 20px 2px 14px;
  }
  .jacket__title {
    font-size: 2.125rem;
  }
  .jacket__releasedate {
    font-size: 1.375rem;
    margin-top: 17px;
  }
  .jacket__pagination {
    text-align: center;
  }
  .bddvd__tokuten__modal .bddvd__tokuten__modal__pagination span {
    height: 8px;
    margin: 0 5px;
    width: 8px;
  }
  .bddvd__tokuten__modal__cont {
    max-height: 90vh;
    max-width: 1000px;
    width: 100%;
  }
  .bddvd__tokuten {
    margin-top: 65px;
  }
  .bddvd__tokuten__sec + .bddvd__tokuten__sec {
    margin-top: 140px;
  }
  .bddvd__tokuten__sec:last-of-type {
    padding-bottom: 100px;
  }
  .bddvd__tokuten__title {
    font-size: 2.125rem;
    padding-bottom: 30px;
  }
  .bddvd__tokuten__title::before {
    position: absolute;
    top: -30px;
    left: -20px;
    height: 53px;
    width: 53px;
  }
  .bddvd__tokuten__sec__inner {
    margin-top: 48px;
  }
  .-kyotsu .bddvd__tokuten__sec__inner {
    display: flex;
  }
  .bddvd__tokuten__sec__txt {
    font-size: 1rem;
  }
  .bddvd__tokuten__kyotsu__ph {
    width: clamp(300px, 33.8vw, 650px);
    height: clamp(300px, 33.8vw, 650px);
  }
  .bddvd__tokuten__kyotsu__detail {
    margin-left: 48px;
    flex: 1;
  }
  .bddvd__tokuten__header {
    padding-bottom: 30px;
  }
  .bddvd__tokuten__detail__subtitle {
    font-size: 1.375rem;
    line-height: 28px;
    padding: 0 17px;
  }
  .bddvd__tokuten__detail__title {
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }
  .bddvd__tokuten__kyotsu__infolist {
    font-size: 1rem;
    margin-top: 20px;
  }
  .bddvd__tokuten__kyotsu__infolist ul {
    margin-top: 6px;
  }
  .bddvd__tokuten__offerlist {
    margin-top: 30px;
  }
  .bddvd__tokuten__shop__list {
    display: grid;
    grid-auto-rows: 1fr;
    grid-gap: 33px;
    grid-template-columns: repeat(auto-fit, minmax(206px, 1fr));
    margin-top: 24px;
  }
  .bddvd__tokuten__shop__list__item__head {
    min-height: 100px;
    transition: opacity 0.3s ease;
  }
  .-haslink .bddvd__tokuten__shop__list__item__head:hover {
    opacity: 0.6;
  }
  .bddvd__tokuten__shop__list__item__head .head__inner {
    padding: 0 2px 10px;
  }
  .bddvd__tokuten__shop__list__item__head .sho-item__detail {
    font-size: 0.8125rem;
    line-height: 26px;
  }
  .bddvd__tokuten__shop__list__item__head__cont {
    height: 72px;
  }
  .bddvd__tokuten__shop__list__item__head__cont h4 {
    font-size: 1.0625rem;
    line-height: 1.2222222222;
  }
  .bddvd__tokuten__shop__list__item__head__cont h4 small {
    font-size: 0.875rem;
  }
  .bddvd__tokuten__shop__list__item__head__cont h4 .ico_link {
    height: 13px;
    margin-left: 4px;
    width: 13px;
  }
  .bddvd__tokuten__shop__list__item__thumb:hover img {
    transform: scale(1.1);
  }
  .bddvd__tokuten__shop__list__item__thumb::after {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 26px;
    width: 26px;
  }
  .bddvd__tokuten__shop__list__item__txt {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 7px;
  }
  .bddvd__tokuten__shop__list__item__note {
    margin-top: 10px;
  }
}
@media (min-width: 1120px){
  .detail__content__btn {
    width: 47.2%;
  }
  .detail__content__left__detail {
    display: flex;
    justify-content: space-between;
  }
  .detail__content__left__detail .detail__item {
    width: 47.2%;
  }
  .detail__content__left__detail .detail__item.dvd {
    margin-top: 0;
  }
}