@charset "UTF-8";
@import url("/extra/library/common/css/smart_phone.css") only screen and (max-width: 1030px);
body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.l-header{
  display: none;
}

/* Contents
========================================================================== */
/*
#page, .container {
  font-family: Meiryo, メイリオ, sans-serif !important;
}
*/

/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================
	ボタン
	@include btn_base(#c00,#000,#fff,#fff,auto);
===============================================================*/
/*===============================================================
	矢印
	@include mx_arw();	
===============================================================*/
/*===============================================================
	三角
	@include mx_sankaku(幅,高さ,色,色hover,向き);	
===============================================================*/
/*===============================================================
	センタリング
	@include mx_margin_center();	
===============================================================*/
/*===============================================================
	斜線の背景
	@include mx_slash($color1,$color2,$width);	
===============================================================*/
/*===============================================================
	グラデーション
	@include mx_grade(色1,色2,向き（横:h / 縦:v）)
===============================================================*/
/*===============================================================

    bar_animation

===============================================================*/
.bar_animation {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 150px;
  -webkit-animation: bar_animation_kf 1.5s infinite;
          animation: bar_animation_kf 1.5s infinite;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	bar_animation
  ===============================================================*/
}
.image_loaded .bar_animation {
  opacity: 1;
}
.bar_animation .bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 150px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 58, 35)), to(rgb(0, 100, 255)));
  background: linear-gradient(to bottom, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
}
@-webkit-keyframes bar_animation_kf {
  0% {
    top: 0;
    height: 0;
  }
  25% {
    top: 0;
    height: 150px;
  }
  50% {
    top: 150px;
    height: 0;
  }
  100% {
    top: 150px;
    height: 0;
  }
}
@keyframes bar_animation_kf {
  0% {
    top: 0;
    height: 0;
  }
  25% {
    top: 0;
    height: 150px;
  }
  50% {
    top: 150px;
    height: 0;
  }
  100% {
    top: 150px;
    height: 0;
  }
}
/*===============================================================

	sub_slider

===============================================================*/
.sub_slider {
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  /* ガター */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager a
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .slide .photo
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	sub_slider ここまで
  -------------------------------------------------------------*/
}
.sub_slider .slider {
  position: relative;
  height: auto !important;
  opacity: 0;
}
.sub_slider .slider .slide {
  width: auto;
  width: 180px;
  width: 300px;
  position: relative;
}
.sub_slider .slider .slide img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sub_slider .slider .slide {
    width: 180px;
  }
}
.sub_slider .slider .pager {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  z-index: 5;
}
.sub_slider .slider .prev {
  left: calc((100% - 750px) / 2 - 20px);
}
.sub_slider .slider .next {
  right: calc((100% - 750px) / 2 - 20px);
}
@media screen and (max-width: 1030px) {
  .sub_slider .slider .prev {
    left: calc((100% - 750px) / 2);
  }
  .sub_slider .slider .next {
    right: calc((100% - 750px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .sub_slider .slider .pager {
    width: 8vw;
    height: 8vw;
  }
  .sub_slider .slider .prev {
    left: 1vw;
  }
  .sub_slider .slider .next {
    right: 1vw;
  }
}
.sub_slider .slider .pager a {
  display: block;
  width: 50px;
  height: 50px;
  border: solid 1px #fff;
  border-radius: 50% 50%;
  overflow: hidden;
  text-indent: -200%;
  position: relative;
}
.sub_slider .slider .pager a:hover {
  opacity: 0.7;
}
.sub_slider .slider .pager a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg) translate(-2px, -2px);
          transform: rotate(-45deg) translate(-2px, -2px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sub_slider .slider .prev a:after {
  -webkit-transform: rotate(135deg) translate(-2px, -2px);
          transform: rotate(135deg) translate(-2px, -2px);
}
@media screen and (max-width: 767px) {
  .sub_slider .slider .pager a {
    width: 8vw;
    height: 8vw;
  }
}
.sub_slider .slider .slide .photo img {
  width: inherit;
  max-width: 100%;
  min-width: 100%;
  height: auto;
}
/*===============================================================

	scale_slider

===============================================================*/
.scale_slider {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager a
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	tuhmb	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	pager_ui	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	scale_slider ここまで
  -------------------------------------------------------------*/
}
.scale_slider .slider {
  position: relative;
  opacity: 0;
}
.scale_slider .slider .slide {
  width: 300px;
  width: 800px;
  position: relative;
}
.scale_slider .slider .slide img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .scale_slider .slider .slide {
    width: 100vw;
    width: 80vw;
  }
}
.scale_slider .slider .pager {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  z-index: 5;
}
.scale_slider .slider .prev {
  left: calc((100% - 750px) / 2 - 20px);
}
.scale_slider .slider .next {
  right: calc((100% - 750px) / 2 - 20px);
}
@media screen and (max-width: 1030px) {
  .scale_slider .slider .prev {
    left: calc((100% - 750px) / 2);
  }
  .scale_slider .slider .next {
    right: calc((100% - 750px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .scale_slider .slider .pager {
    width: 8vw;
    height: 8vw;
  }
  .scale_slider .slider .prev {
    left: 1vw;
  }
  .scale_slider .slider .next {
    right: 1vw;
  }
}
.scale_slider .slider .pager a {
  display: block;
  width: 50px;
  height: 50px;
  border: solid 1px #fff;
  border-radius: 50% 50%;
  overflow: hidden;
  text-indent: -200%;
  position: relative;
}
.scale_slider .slider .pager a:hover {
  opacity: 0.7;
}
.scale_slider .slider .pager a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg) translate(-2px, -2px);
          transform: rotate(-45deg) translate(-2px, -2px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.scale_slider .slider .prev a:after {
  -webkit-transform: rotate(135deg) translate(-2px, -2px);
          transform: rotate(135deg) translate(-2px, -2px);
}
@media screen and (max-width: 767px) {
  .scale_slider .slider .pager a {
    width: 8vw;
    height: 8vw;
  }
}
.scale_slider .tuhmb {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.scale_slider .tuhmb img {
  width: inherit;
  max-width: 100%;
  min-width: 100%;
  height: auto;
}
.scale_slider .pager_ui {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 30px;
  display: none;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.scale_slider .pager_ui .progress {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.scale_slider .pager_ui .progress .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.scale_slider .pager_ui .progress .bar {
  height: 30px;
  width: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.scale_slider .pager_ui .progress .bar:hover {
  opacity: 0.5;
}
.scale_slider .pager_ui .progress .bar .bar_bg {
  width: 100%;
  background: #333;
  height: 1px;
  position: relative;
  overflow: hidden;
}
.scale_slider .pager_ui .progress .bar + .bar {
  margin-left: 10px;
}
.scale_slider .pager_ui .progress .bar .progress_bar {
  width: 0%;
  background: #999;
  height: 1px;
  position: absolute;
  left: 0;
}
.scale_slider .pager_ui .progress .nums {
  margin-right: 20px;
  font-size: 12px;
}
.scale_slider .pager_ui .progress .nums .slash {
  padding: 0 3px;
}
@media screen and (max-width: 767px) {
  .scale_slider .pager_ui .progress {
    height: 40px;
    margin-right: 10px;
  }
  .scale_slider .pager_ui .progress .bar {
    width: 25px;
    height: 40px;
  }
  .scale_slider .pager_ui .progress .bar + .bar {
    margin-left: 5px;
  }
  .scale_slider .pager_ui .progress .nums {
    margin-right: 10px;
    font-size: 12px;
  }
  .scale_slider .pager_ui .progress .nums .slash {
    padding: 0 3px;
  }
}

/*===============================================================

	作品ススライダー共通

===============================================================*/
.program_slider {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	文字サイズ	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	sub_slider	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	pager	
  -------------------------------------------------------------*/
  /*===============================================================
  	//	program_slider
  ===============================================================*/
}
.program_slider .slide {
  overflow: hidden;
}
.program_slider .slide img {
  border-radius: 0;
}
.program_slider .slide a {
  display: block;
  position: relative;
}
.program_slider .slider .slide {
  padding: 0 10px;
}
.program_slider .thumb {
  position: relative;
}
.program_slider .txt {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  text-align: left;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
}
.program_slider a:hover {
  opacity: 1;
}
.program_slider a:hover .txt {
  opacity: 0;
}
.out .program_slider .slide img {
  border-radius: 10px;
}
.out .program_slider a:hover .txt {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .out .program_slider .slide img {
    border-radius: 5px;
  }
  .program_slider .slider .slide {
    padding: 0 1.5vw;
  }
}
.program_slider .txt {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.program_slider .txt .title {
  font-size: 16px;
  line-height: 1.6;
}
.program_slider .txt .info {
  font-size: 14px;
  display: none;
}
@media screen and (max-width: 767px) {
  .program_slider .txt {
    display: none;
  }
}
.program_slider.sub_slider {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.program_slider.sub_slider .txt {
  padding: 10px;
}
.program_slider.sub_slider .txt .channel,
.program_slider.sub_slider .txt .title {
  font-size: 12px;
}
.program_slider.sub_slider .txt .date {
  display: none;
}
.program_slider .pager {
  display: none;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================

	js_scale_by_scrolling

===============================================================*/
.js_scale_by_scrolling {
  position: relative;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	slide_title	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	slide_title	
  -------------------------------------------------------------*/
}
.js_scale_by_scrolling .js_scroll_area {
  color: #fff;
  position: absolute;
  height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
}
.js_scale_by_scrolling .js_scale_target {
  background: #000;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.js_scale_by_scrolling .carousel_slider .pager {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.js_scale_by_scrolling .carousel_slider .slick-slide {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}
.js_scale_by_scrolling .carousel_slider .slick-center {
  opacity: 1;
}
.js_scale_by_scrolling .active {
  position: fixed;
}
.js_scale_by_scrolling .active .carousel_slider .slick-slide {
  opacity: 0.2;
}
.js_scale_by_scrolling .active .carousel_slider .slick-center {
  opacity: 1;
}
.js_scale_by_scrolling .active_pager .carousel_slider .pager {
  opacity: 1;
  pointer-events: inherit;
}
.js_scale_by_scrolling .active_pager .carousel_slider .slick-slide {
  opacity: 1;
}
.js_scale_by_scrolling .active_pager .carousel_slider .slick-center {
  opacity: 1;
}
.js_scale_by_scrolling .active_pager .pager_ui {
  opacity: 1;
}
.js_scale_by_scrolling .out {
  position: absolute;
  top: auto;
  bottom: 0;
}
.js_scale_by_scrolling .out .js_scale_target {
  top: auto;
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .js_scale_by_scrolling {
    overflow: visible;
  }
  .js_scale_by_scrolling .out .js_scale_target {
    top: auto;
    bottom: 4.5vw;
    bottom: 3vw;
  }
}
.js_scale_by_scrolling .slide_title {
  position: absolute;
  bottom: 480px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0s;
  transition: all 0s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.js_scale_by_scrolling .slide_title .block_skew_label {
  font-size: 20px;
}
.js_scale_by_scrolling .slide_title .block_skew_label .gradation_txt {
  font-size: 20px;
}
.js_scale_by_scrolling .slide_title .title {
  margin-top: 10px;
  display: block;
  width: 100%;
  font-size: 26px;
  text-align: center;
  color: #fff;
}
.js_scale_by_scrolling .slide_title .title img {
  width: auto;
  height: 26px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .js_scale_by_scrolling .slide_title {
    bottom: 53vw;
  }
  .js_scale_by_scrolling .slide_title .block_skew_label {
    font-size: 4vw;
    padding: 2vw 0.8em;
  }
  .js_scale_by_scrolling .slide_title .block_skew_label .gradation_txt {
    font-size: 4vw;
  }
  .js_scale_by_scrolling .slide_title .title {
    margin-top: 2vw;
    font-size: 5vw;
  }
  .js_scale_by_scrolling .slide_title .title img {
    height: 5vw;
  }
}
.js_scale_by_scrolling .out .slide_title {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================

	scale_by_scrolling_content2

===============================================================*/
.scale_by_scrolling_content2 {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  	//	scale_by_scrolling_content2
  ===============================================================*/
}
.scale_by_scrolling_content2 .photo {
  width: 800px;
  height: 450px;
  width: 1000px;
  height: 563px;
  margin: 0 auto;
}
.scale_by_scrolling_content2 .photo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .scale_by_scrolling_content2 .photo {
    margin-left: calc((100vw - 800px) / 2);
  }
}

/*===============================================================

	backbround

===============================================================*/
.backbround {
  z-index: 1;
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  	//	backbround
  ===============================================================*/
}
.backbround.show {
  -webkit-transition: all 2s;
  transition: all 2s;
  opacity: 1;
}
.backbround .inner {
  width: 100vw;
  height: 100vh;
  position: relative;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.backbround .obj {
  position: absolute;
  width: 100vw;
  height: 100vw;
  border-radius: 100vw;
}
.backbround .obj01 {
  -webkit-animation: obj01_animation 10s ease-in infinite;
          animation: obj01_animation 10s ease-in infinite;
  background: radial-gradient(ellipse at center, rgba(248, 58, 35, 0.3), rgba(248, 58, 35, 0.3) 10%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4dffffff", endColorstr="#00ffffff",GradientType=1 );
  top: 0;
  left: 0;
}
.backbround .obj02 {
  -webkit-animation: obj02_animation 11s ease-in infinite;
          animation: obj02_animation 11s ease-in infinite;
  background: radial-gradient(ellipse at center, rgba(0, 100, 255, 0.3) 0%, rgba(0, 100, 255, 0.3) 10%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4dffffff", endColorstr="#00ffffff",GradientType=1 );
  right: 0;
  bottom: 0;
}
.backbround .obj03 {
  -webkit-animation: obj03_animation 12s ease-in infinite;
          animation: obj03_animation 12s ease-in infinite;
  background: radial-gradient(ellipse at center, rgba(0, 100, 255, 0.3) 0%, rgba(0, 100, 255, 0.3) 10%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4dffffff", endColorstr="#00ffffff",GradientType=1 );
  left: 0;
  top: 0;
}
@-webkit-keyframes obj01_animation {
  0% {
    left: 0;
    opacity: 1;
  }
  50% {
    left: -20vw;
    opacity: 0.3;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes obj01_animation {
  0% {
    left: 0;
    opacity: 1;
  }
  50% {
    left: -20vw;
    opacity: 0.3;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@-webkit-keyframes obj02_animation {
  0% {
    right: 0;
    opacity: 1;
  }
  50% {
    right: -30vw;
    opacity: 0.5;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes obj02_animation {
  0% {
    right: 0;
    opacity: 1;
  }
  50% {
    right: -30vw;
    opacity: 0.5;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@-webkit-keyframes obj03_animation {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    top: -30vw;
    opacity: 0.7;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}
@keyframes obj03_animation {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    top: -30vw;
    opacity: 0.7;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}
.js_effect {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  will-change: top, left, right, bottom, opacity, margin, padding, width, height, transform, filter, animation;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-------------------------------------------------------------
	アニメーションの動き
	画面に入ったら.showが追加される。
-------------------------------------------------------------*/
.js_fade_up {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.js_fade_up.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.js_fade_down {
  -webkit-transition: opacity 0.5s, translateY 0.5s;
  transition: opacity 0.5s, translateY 0.5s;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.js_fade_down.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.js_fade_scale {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 1;
}
.js_fade_scale.show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.js_in_left {
  -webkit-transition: all 0.3s cubic-bezier(0.17, 0.67, 0.58, 1.28);
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.58, 1.28);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
.js_in_left.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.js_in_right {
  -webkit-transition: all 0.3s cubic-bezier(0.17, 0.67, 0.58, 1.28);
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.58, 1.28);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.js_in_right.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.js_rotate_left {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.js_rotate_left.show {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.js_rotate_right {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.js_rotate_right.show {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.js_fade {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.js_fade.show {
  opacity: 1;
}

/*===============================================================

	modal_programdetail

===============================================================*/
.modal_programdetail {
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	title_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	modal_content	
  -------------------------------------------------------------*/
  /*===============================================================
  	//	modal_programdetail
  ===============================================================*/
}
.modal_programdetail .slick-list {
  overflow: visible;
}
.modal_programdetail .slide a.deactive {
  pointer-events: none;
  cursor: default;
}
.modal_programdetail .slide a:hover {
  opacity: 1;
}
.modal_programdetail .slide_haslink a {
  pointer-events: visible;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}
.modal_programdetail .slide_haslink a .thumb {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal_programdetail .slide_haslink a:hover {
  opacity: 1;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.modal_programdetail .slide_haslink a:hover .thumb {
  -webkit-box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .modal_programdetail {
    width: 100vw !important;
    margin-left: -5vw !important;
  }
  .modal_programdetail .modal_close {
    right: 0vw;
  }
  .modal_programdetail .slide_haslink a:hover {
    -webkit-transform: translateY(-2vw);
            transform: translateY(-2vw);
  }
}
.modal_programdetail .title_block {
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_programdetail .title_block .title {
  font-size: 24px;
  color: #fff;
}
.modal_programdetail .title_block .title img {
  max-width: 250px !important;
  padding: 10px;
  padding-bottom: 5px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .modal_programdetail .title_block .title {
    font-size: 5vw;
  }
  .modal_programdetail .title_block .title img {
    max-width: 50vw !important;
    padding: 3vw;
    padding-bottom: 1.5vw;
    background-color: #000;
  }
}
.modal_programdetail .modal_body {
  padding: 50px 0 !important;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 767px) {
  .modal_programdetail .modal_body {
    padding: 5vw 0;
  }
}

/*===============================================================

	program_detail_modal_slider

===============================================================*/
.program_detail_modal_slider {
  display: block;
  margin-top: 30px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager a
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	photo	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	txt	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	txt_footer	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	pager_ui	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	.slick-dotted.slick-slider	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	slick-dots	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	program_detail_modal_slider ここまで
  -------------------------------------------------------------*/
}
.program_detail_modal_slider.slider_active .slider {
  opacity: 1;
}
.program_detail_modal_slider .slider {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.program_detail_modal_slider .slider .slide {
  margin: 0;
  position: relative;
  border-radius: 0;
  pointer-events: visible;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.9) translateY(-5px);
          transform: scale(0.9) translateY(-5px);
}
.program_detail_modal_slider .slider .slick-center {
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
}
.program_detail_modal_slider .slider .slide img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .program_detail_modal_slider {
    margin-top: 5vw;
  }
  .program_detail_modal_slider .slider {
    height: auto !important;
  }
  .program_detail_modal_slider .slider .slide {
    height: auto;
  }
}
.program_detail_modal_slider .slider .pager {
  position: absolute;
  top: 200px;
  width: 50px;
  height: 50px;
  z-index: 5;
}
.program_detail_modal_slider .slider .prev {
  left: 20px;
}
.program_detail_modal_slider .slider .next {
  right: 20px;
}
@media screen and (max-width: 1030px) {
  .program_detail_modal_slider .slider .pager {
    top: calc(22.5vw - 25px);
  }
}
@media screen and (max-width: 767px) {
  .program_detail_modal_slider .slider .pager {
    top: 13vw;
    top: 18.5vw;
    width: 8vw;
    height: 8vw;
  }
  .program_detail_modal_slider .slider .prev {
    left: 7vw;
  }
  .program_detail_modal_slider .slider .next {
    right: 7vw;
  }
}
.program_detail_modal_slider .slider .pager a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50% 50%;
  overflow: hidden;
  text-indent: -200%;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.program_detail_modal_slider .slider .pager a:hover {
  opacity: 1;
  background-color: #e83416;
}
.program_detail_modal_slider .slider .pager a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(-45deg) translate(-2px, -2px);
          transform: rotate(-45deg) translate(-2px, -2px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.program_detail_modal_slider .slider .prev a:after {
  -webkit-transform: rotate(135deg) translate(-2px, -2px);
          transform: rotate(135deg) translate(-2px, -2px);
}
@media screen and (max-width: 767px) {
  .program_detail_modal_slider .slider .pager a {
    width: 8vw;
    height: 8vw;
  }
  .program_detail_modal_slider .slider .pager a:after {
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    width: 2.5vw;
    height: 2.5vw;
  }
}
.program_detail_modal_slider .thumb {
  border-radius: 20px;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.program_detail_modal_slider .thumb img {
  width: inherit;
  max-width: 100%;
  min-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .program_detail_modal_slider .thumb {
    border-radius: 2vw;
  }
}
.program_detail_modal_slider .txt {
  display: block;
  color: #fff;
  padding: 0 45px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.program_detail_modal_slider .txt .title {
  font-size: 16px;
  list-style: 1.4;
  font-weight: bold;
  margin-top: 15px;
}
.program_detail_modal_slider .txt .lead {
  font-size: 14px;
  list-style: 1.4;
}
.program_detail_modal_slider .txt .channel,
.program_detail_modal_slider .txt .date {
  display: inline;
  font-size: 16px;
  font-weight: normal;
}
.program_detail_modal_slider .txt .date {
  margin-left: 0.5em;
}
.program_detail_modal_slider .txt .copyright {
  font-size: 12px;
  line-height: 1.2;
  color: #666;
  margin-top: 20px;
}
.program_detail_modal_slider .txt .caption {
  font-size: 14px;
  color: #fff;
  opacity: 1;
  display: inline;
}
.program_detail_modal_slider .txt .caption a {
  color: #fff;
}
.program_detail_modal_slider .txt .caption a:hover {
  -webkit-transform: none;
          transform: none;
  opacity: 0.7;
}
.program_detail_modal_slider .txt .caption + .youtube_link {
  margin-left: 10px;
}
.program_detail_modal_slider .txt .youtube_link {
  display: inline-block;
  padding: 2px 10px;
  border: solid 1px #666;
  font-size: 12px;
  color: #ccc;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}
.program_detail_modal_slider .txt .youtube_link:hover {
  opacity: 0.7;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .program_detail_modal_slider .txt {
    padding: 0 3vw;
  }
  .program_detail_modal_slider .txt .title {
    margin-top: 3vw;
    font-size: 3.5vw;
    list-style: 1.6;
    font-weight: bold;
  }
  .program_detail_modal_slider .txt .info {
    margin-top: 1vw;
  }
  .program_detail_modal_slider .txt .info,
  .program_detail_modal_slider .txt .channel,
  .program_detail_modal_slider .txt .date {
    font-size: 3.5vw;
    list-style: 1.4;
  }
  .program_detail_modal_slider .txt .copyright {
    font-size: 2.5vw;
    margin-top: 3vw;
  }
  .program_detail_modal_slider .txt .caption + .youtube_link {
    margin-left: 0;
  }
  .program_detail_modal_slider .txt .caption {
    display: block;
    font-size: 3vw;
    list-style: 1.4;
  }
  .program_detail_modal_slider .txt .youtube_link {
    padding: 2px 10px;
    font-size: 3vw;
    margin-top: 3vw;
  }
}
.program_detail_modal_slider .txt_footer {
  margin-top: 5px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.program_detail_modal_slider .pager_ui {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 30px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.program_detail_modal_slider .pager_ui .progress {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.program_detail_modal_slider .pager_ui .progress .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.program_detail_modal_slider .pager_ui .progress .bar {
  height: 30px;
  width: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.program_detail_modal_slider .pager_ui .progress .bar:hover {
  opacity: 0.5;
}
.program_detail_modal_slider .pager_ui .progress .bar .bar_bg {
  width: 100%;
  background: #333;
  height: 1px;
  position: relative;
  overflow: hidden;
}
.program_detail_modal_slider .pager_ui .progress .bar + .bar {
  margin-left: 10px;
}
.program_detail_modal_slider .pager_ui .progress .bar .progress_bar {
  width: 0%;
  background: #999;
  height: 1px;
  position: absolute;
  left: 0;
}
.program_detail_modal_slider .pager_ui .progress .nums {
  margin-right: 20px;
  font-size: 12px;
}
.program_detail_modal_slider .pager_ui .progress .nums .slash {
  padding: 0 3px;
}
@media screen and (max-width: 767px) {
  .program_detail_modal_slider .pager_ui .progress {
    height: 40px;
    margin-right: 10px;
  }
  .program_detail_modal_slider .pager_ui .progress .bar {
    width: 25px;
    height: 40px;
  }
  .program_detail_modal_slider .pager_ui .progress .bar + .bar {
    margin-left: 5px;
  }
  .program_detail_modal_slider .pager_ui .progress .nums {
    margin-right: 10px;
    font-size: 12px;
  }
  .program_detail_modal_slider .pager_ui .progress .nums .slash {
    padding: 0 3px;
  }
}
.program_detail_modal_slider .slick-dotted.slick-slider {
  margin-bottom: 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.program_detail_modal_slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.program_detail_modal_slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  margin-top: 10px;
}
.program_detail_modal_slider .slick-dots li button {
  width: 10px;
  height: 10px;
}
.program_detail_modal_slider .slick-dots li button::before {
  font-size: 14px;
  line-height: 10px;
  width: 10px;
  height: 10px;
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.program_detail_modal_slider .slick-dots li button:hover::before {
  opacity: 0.5;
}
.program_detail_modal_slider .slick-dots li.slick-active button::before {
  color: #e83416;
  opacity: 1;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
/*===============================================================

    modal_channel_lineup

===============================================================*/
.modal_channel_lineup {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	title_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      channel_list	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	modal_content	
  -------------------------------------------------------------*/
  /*===============================================================
      //	modal_channel_lineup
  ===============================================================*/
}
.modal_channel_lineup .title_block {
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_channel_lineup .title_block .title {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .modal_channel_lineup .title_block .title {
    font-size: 5vw;
  }
}
.modal_channel_lineup .channel_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_channel_lineup .channel_list .item {
  overflow: hidden;
  background: #fff;
  width: calc((100% - 60px) / 5);
  height: calc((100% - 60px) / 5);
  border-radius: 100%;
  margin-right: 15px;
  margin-top: 20px;
}
.modal_channel_lineup .channel_list .item img {
  width: 100%;
  height: auto;
  padding: 15px;
}
.modal_channel_lineup .channel_list .item:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .modal_channel_lineup .channel_list {
    margin-top: 3vw;
  }
  .modal_channel_lineup .channel_list .item:nth-child(5n),
  .modal_channel_lineup .channel_list .item {
    width: calc((100% - 9vw) / 4);
    height: calc((100% - 9vw) / 4);
    margin-right: 3vw;
    margin-top: 3vw;
  }
  .modal_channel_lineup .channel_list .item:nth-child(5n) img,
  .modal_channel_lineup .channel_list .item img {
    width: 100%;
    height: auto;
    padding: 3vw;
  }
  .modal_channel_lineup .channel_list .item:nth-child(4n) {
    margin-right: 0;
  }
}
.modal_channel_lineup .modal_body {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 767px) {
  .modal_channel_lineup .modal_body {
    padding: 10vw 5vw;
  }
}

/*===============================================================

    modal_paramount

===============================================================*/
.modal_paramount {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      title_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      content_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      block_detail	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      block_caption	
  -------------------------------------------------------------*/
  /*===============================================================
      //	modal_paramount
  ===============================================================*/
}
.modal_paramount .modal_body {
  padding: 0;
}
.modal_paramount .content_block {
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .modal_paramount .content_block {
    padding: 5vw;
  }
}
.modal_paramount .title_block {
  background-color: #0064FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_paramount .title_block .title {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1em;
  font-size: 23px;
}
.modal_paramount .title_block .paramaunt {
  line-height: 1.2;
  text-align: center;
  padding-right: 0.2em;
}
.modal_paramount .title_block .paramaunt span {
  display: block;
  font-size: 60%;
}
@media screen and (max-width: 767px) {
  .modal_paramount .title_block {
    padding: 5vw 0;
  }
  .modal_paramount .title_block .title {
    width: 100%;
    margin-top: 3vw;
    font-size: 6vw;
  }
}
.modal_paramount .content_block {
  color: #fff;
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_paramount .content_block .subtitle {
  font-size: 24px;
  font-weight: bold;
}
.modal_paramount .content_block .lead {
  font-size: 20px;
  margin-top: 30px;
}
.modal_paramount .content_block .block_skew_label {
  margin-top: 30px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .modal_paramount .content_block {
    padding-bottom: 15vw;
  }
  .modal_paramount .content_block .subtitle {
    font-size: 4.5vw;
    font-weight: bold;
  }
  .modal_paramount .content_block .lead {
    margin-top: 3vw;
    font-size: 4vw;
    line-height: 1.6;
  }
  .modal_paramount .content_block .block_skew_label .inner,
  .modal_paramount .content_block .block_skew_label {
    font-size: 3.5vw;
  }
}
.modal_paramount .block_detail {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_paramount .block_detail .txt {
  width: calc(60% - 20px);
}
.modal_paramount .block_detail .thumb {
  width: 40%;
}
.modal_paramount .block_detail .title {
  color: #fff;
  font-size: 20px;
  text-align: left;
}
.modal_paramount .block_detail p {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .modal_paramount .block_detail {
    max-width: inherit;
    width: 100%;
    margin: 0 auto;
    margin-top: 5vw;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .modal_paramount .block_detail .txt {
    width: 100%;
  }
  .modal_paramount .block_detail .thumb {
    width: 50%;
  }
  .modal_paramount .block_detail .title {
    font-size: 5vw;
    text-align: center;
    margin-top: 3vw;
  }
  .modal_paramount .block_detail p {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
}
.modal_paramount .block_caption {
  text-align: left;
  margin-top: 30px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_paramount .block_caption p {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .modal_paramount .block_caption {
    margin-top: 8vw;
  }
  .modal_paramount .block_caption p {
    font-size: 4vw;
  }
}

/*===============================================================

    modal_megapack_stream

===============================================================*/
.modal_megapack_stream {
  max-width: 600px !important;
  min-width: inherit !important;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	modal_megapack_stream
  ===============================================================*/
}
.modal_megapack_stream .modal_body {
  padding: 0;
}
.modal_megapack_stream .title_block {
  padding: 40px;
  background-color: #333;
}
.modal_megapack_stream .title_block .title {
  color: #fff;
  font-size: 26px;
  text-align: center;
}
.modal_megapack_stream .title_block .subtitle {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.modal_megapack_stream .content_block {
  padding: 40px 60px;
  color: #fff;
}
.modal_megapack_stream .content_block .qr {
  width: 120px;
  margin: 0 auto;
}
.modal_megapack_stream .lead {
  margin-top: 2em;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.modal_megapack_stream .jcom_btn {
  margin: 0 auto;
  margin-top: 30px;
  max-width: 350px;
}
@media screen and (max-width: 767px) {
  .modal_megapack_stream {
    max-width: inherit !important;
    min-width: inherit !important;
  }
  .modal_megapack_stream .modal_body {
    padding: 0;
  }
  .modal_megapack_stream .title_block {
    padding: 5vw;
  }
  .modal_megapack_stream .title_block .title {
    font-size: 5vw;
  }
  .modal_megapack_stream .title_block .subtitle {
    font-size: 5vw;
  }
  .modal_megapack_stream .content_block {
    padding: 8vw 5vw;
    padding-bottom: 10vw;
  }
  .modal_megapack_stream .lead {
    font-size: 4vw;
  }
  .modal_megapack_stream .jcom_btn {
    margin: 0 auto;
    margin-top: 5vw;
    max-width: 100%;
  }
}

/*===============================================================

	block_subslider

===============================================================*/
.block_subslider {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  	//	block_subslider
  ===============================================================*/
}
.block_subslider.out {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.block_subslider .sub_slider + .sub_slider {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .block_subslider .sub_slider + .sub_slider {
    margin-top: 3vw;
  }
}

/*===============================================================

	block_itemlist_sp_slider

===============================================================*/
.block_itemlist_sp_slider {
  margin-top: 40px;
  /*-------------------------------------------------------------
      slider_wrp	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      dots	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      // block_itemlist_sp_slider	
  -------------------------------------------------------------*/
}
@media screen and (max-width: 767px) {
  .block_itemlist_sp_slider {
    margin: 0 calc(50% - 50vw) 0;
    margin-top: 5vw;
  }
}
.block_itemlist_sp_slider .slider_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.945%;
}
.block_itemlist_sp_slider .slider_wrp .item {
  width: 31.37%;
  height: min(400px, 38vw);
  color: #fff;
  text-align: center;
  background: #000;
  padding: min(40px, 4vw) 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.block_itemlist_sp_slider .slider_wrp .item .head {
  font-size: min(30px, 3vw);
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
.block_itemlist_sp_slider .slider_wrp .item p {
  font-size: min(16px, 1.6vw);
  line-height: 1.7;
  margin-top: 0.6em;
  text-shadow: 0 0 6px rgb(0, 0, 0);
}
.block_itemlist_sp_slider .slider_wrp .item_01 {
  background: #000 url("../images/enjoy_ph01.jpg") no-repeat bottom center/contain;
}
.block_itemlist_sp_slider .slider_wrp .item_02 {
  background: #000 url("../images/enjoy_ph02.jpg") no-repeat bottom center/contain;
}
.block_itemlist_sp_slider .slider_wrp .item_03 {
  background: #000 url("../images/enjoy_ph03.jpg") no-repeat bottom center/contain;
}
@media screen and (max-width: 767px) {
  .block_itemlist_sp_slider .slider_wrp {
    display: block;
    opacity: 0;
    height: 0;
  }
  .block_itemlist_sp_slider .slider_wrp.slick-initialized {
    opacity: 1;
    height: auto;
  }
  .block_itemlist_sp_slider .slider_wrp .item {
    width: 80vw;
    height: 100vw;
    padding: 10vw 0;
    margin: 0 2vw;
  }
  .block_itemlist_sp_slider .slider_wrp .item .head {
    font-size: 8vw;
  }
  .block_itemlist_sp_slider .slider_wrp .item p {
    font-size: 4vw;
    text-shadow: 0 0 2vw rgb(0, 0, 0);
  }
}
.block_itemlist_sp_slider .dots li button {
  display: none;
}
@media screen and (max-width: 767px) {
  .block_itemlist_sp_slider .dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4vw;
    margin-top: 6vw;
  }
  .block_itemlist_sp_slider .dots li {
    width: 3vw;
    height: 3vw;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: background 0.1s;
    transition: background 0.1s;
  }
  .block_itemlist_sp_slider .dots li.slick-active {
    background: #F83A23;
  }
  .block_itemlist_sp_slider .dots li button {
    display: none;
  }
}

/*===============================================================

    block_tab_newentry

===============================================================*/
.block_tab_newentry {
  width: 100%;
  max-width: inherit;
  margin: 0;
  margin-top: 30px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      block_case_container	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      content_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      block_smartplan	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      jcom_btns	
  -------------------------------------------------------------*/
  /*===============================================================
      //	block_tab_newentry
  ===============================================================*/
}
.block_tab_newentry .block_tab_list {
  max-width: 700px;
  margin: 0 auto;
}
.block_tab_newentry .block_tab_item {
  width: calc((100% - 20px) / 2);
}
.block_tab_newentry .block_tab_content {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .block_tab_newentry {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .block_tab_newentry .block_tab_item {
    width: calc((100% - 3vw) / 2);
  }
  .block_tab_newentry .block_tab_content {
    border-bottom: 0;
  }
}
.block_tab_newentry .block_case_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_tab_newentry .block_case_container .block_case {
  width: calc((100% - 2px) / 2);
}
.block_tab_newentry .block_case_container .case_title {
  text-align: center;
  color: #fff;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 110px;
}
@media screen and (max-width: 767px) {
  .block_tab_newentry .block_case_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block_tab_newentry .block_case_container .block_case {
    width: 100%;
  }
  .block_tab_newentry .block_case_container .case_title {
    font-size: 4.5vw;
    min-height: inherit;
    padding: 10vw 0 5vw;
  }
}
.block_tab_newentry .content_block {
  background-color: #333;
  padding: 30px;
  position: relative;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_tab_newentry .content_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 5px solid #000;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-width: 10px;
  -webkit-transform: translate(3px, 0);
          transform: translate(3px, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.block_tab_newentry .content_block .block_smartplan {
  max-width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .block_tab_newentry .content_block {
    background-color: none;
    padding: 0;
  }
  .block_tab_newentry .content_block .block_smartplan {
    max-width: inherit;
    padding: 5vw;
    margin: 0 auto;
  }
}
.block_tab_newentry .block_smartplan {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_tab_newentry .block_smartplan .skew_label {
  min-width: 100%;
}
.block_tab_newentry .block_smartplan .leadtxt {
  margin-top: 20px;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block_tab_newentry .block_smartplan .has_fig {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
.block_tab_newentry .block_smartplan .has_fig .fig {
  width: 70px;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.block_tab_newentry .block_smartplan .has_fig p {
  width: calc(100% - 75px);
}
.block_tab_newentry .block_smartplan .price_block .txt {
  font-size: 17px;
  padding-right: 10px;
}
.block_tab_newentry .block_smartplan .price_block .price .price_en {
  font-size: 71px;
}
.block_tab_newentry .block_smartplan .price_block .price .ja {
  font-size: 22px;
}
.block_tab_newentry .block_smartplan .price_block .price .tax {
  font-size: 14px;
  bottom: 2.3em;
  right: -5px;
}
.block_tab_newentry .block_smartplan .jcom_btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .block_tab_newentry .block_smartplan {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(51, 51, 51)), to(rgba(51, 51, 51, 0)));
    background: linear-gradient(to bottom, rgb(51, 51, 51) 0%, rgba(51, 51, 51, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .block_tab_newentry .block_smartplan .skew_label {
    min-width: 70vw;
  }
  .block_tab_newentry .block_smartplan .leadtxt {
    margin-top: 5vw;
    min-height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .block_tab_newentry .block_smartplan .has_fig {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
  .block_tab_newentry .block_smartplan .has_fig .fig {
    width: 70px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .block_tab_newentry .block_smartplan .has_fig p {
    width: calc(100% - 75px);
  }
  .block_tab_newentry .block_smartplan .price_block .txt {
    font-size: 4vw;
    padding-right: 4vw;
  }
  .block_tab_newentry .block_smartplan .price_block .price .price_en {
    font-size: 18vw;
  }
  .block_tab_newentry .block_smartplan .price_block .price .ja {
    font-size: 5vw;
    padding-left: 1vw;
  }
  .block_tab_newentry .block_smartplan .price_block .price .tax {
    font-size: 3vw;
  }
  .block_tab_newentry .block_smartplan .jcom_btn {
    margin-top: 30px;
  }
}
.block_tab_newentry .jcom_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_tab_newentry .jcom_btns .jcom_btn {
  min-width: 340px;
}
.block_tab_newentry .jcom_btns .jcom_btn + .jcom_btn {
  margin-top: 0;
}
@media screen and (max-width: 1030px) {
  .block_tab_newentry .jcom_btns {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .block_tab_newentry .jcom_btns {
    padding: 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block_tab_newentry .jcom_btns .jcom_btn {
    min-width: 100%;
  }
  .block_tab_newentry .jcom_btns .jcom_btn + .jcom_btn {
    margin-top: 4vw;
  }
}

/*===============================================================

    block_jcom_btns

===============================================================*/
.block_jcom_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	block_jcom_btns
  ===============================================================*/
}
.block_jcom_btns > :not(:first-of-type) {
  margin-left: 20px;
}
.block_jcom_btns .jcom_btn {
  width: 350px;
}
@media screen and (max-width: 1030px) {
  .block_jcom_btns > :not(:first-of-type) {
    margin-left: 1.94vw;
  }
  .block_jcom_btns .jcom_btn {
    width: 33.98vw;
  }
}
@media screen and (max-width: 767px) {
  .block_jcom_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block_jcom_btns > :not(:first-of-type) {
    margin-top: 5vw;
    margin-left: 0;
  }
  .block_jcom_btns .jcom_btn {
    width: 85vw;
  }
}

/*===============================================================

    block_paramount_plus

===============================================================*/
.block_paramount_plus {
  max-width: 900px;
  background-color: #0064FF;
  margin: 0 auto;
  padding: 50px 100px;
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	block_paramount_plus
  ===============================================================*/
}
.block_paramount_plus .title_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  width: 100% !important;
  margin: 0 !important;
}
.block_paramount_plus .title_block .logo {
  width: 130px;
}
.block_paramount_plus .title_block .logo img {
  width: 100%;
  height: auto;
}
.block_paramount_plus .title_block .title {
  color: #fff;
  width: calc(100% - 150px);
  font-size: 40px;
  line-height: 1;
  text-align: left;
}
.block_paramount_plus .title_block .title span {
  font-size: 24px;
  display: block;
}
.block_paramount_plus .youtube {
  margin-top: 30px;
}
.block_paramount_plus .lead {
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin-top: 30px;
}
.block_paramount_plus .jcom_btn [class^=btn_] {
  width: 350px;
  margin: 0 auto;
  margin-top: 30px;
  font-size: 20px;
  color: #0064FF !important;
}
.block_paramount_plus .jcom_btn [class^=btn_] .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block_paramount_plus .jcom_btn [class^=btn_] .paramaunt {
  font-size: 18px;
  padding-right: 5px;
}
.block_paramount_plus .jcom_btn [class^=btn_] .paramaunt span {
  font-size: 12px;
  display: block;
}
.block_paramount_plus .jcom_btn .btn_white::after {
  background: url("../images/icn_bullet_blue.svg") no-repeat center center/contain;
}
@media screen and (max-width: 1030px) {
  .block_paramount_plus {
    padding: 4.67vw;
  }
  .block_paramount_plus .title_block .logo {
    width: 12.15vw;
  }
  .block_paramount_plus .title_block .title {
    width: calc(100% - 14.02vw);
    font-size: 3.74vw;
  }
  .block_paramount_plus .title_block .title span {
    font-size: 2.24vw;
  }
  .block_paramount_plus .youtube {
    margin-top: 2.8vw;
  }
  .block_paramount_plus .lead {
    font-size: 1.68vw;
    margin-top: 2.8vw;
  }
  .block_paramount_plus .jcom_btn [class^=btn_] {
    width: 32.71vw;
    margin-top: 2.8vw;
    font-size: 1.87vw;
  }
  .block_paramount_plus .jcom_btn [class^=btn_] .paramaunt {
    font-size: 1.68vw;
    padding-right: 0.47vw;
  }
  .block_paramount_plus .jcom_btn [class^=btn_] .paramaunt span {
    font-size: 1.12vw;
  }
}
@media screen and (max-width: 767px) {
  .block_paramount_plus {
    padding: 5vw;
    padding-bottom: 8vw;
  }
  .block_paramount_plus .title_block {
    text-align: center;
  }
  .block_paramount_plus .title_block .logo {
    width: 100%;
  }
  .block_paramount_plus .title_block .logo img {
    width: 30vw;
    height: auto;
  }
  .block_paramount_plus .title_block .title {
    text-align: center;
    margin-top: 3vw;
    width: 100%;
    font-size: 5.5vw;
    line-height: 1.4;
  }
  .block_paramount_plus .title_block .title span {
    font-size: 4vw;
  }
  .block_paramount_plus .youtube {
    margin-top: 5vw;
  }
  .block_paramount_plus .lead {
    font-size: 4vw;
    margin-top: 5vw;
  }
  .block_paramount_plus .jcom_btn [class^=btn_] {
    width: 100%;
    margin-top: 5vw;
    font-size: 5vw;
  }
  .block_paramount_plus .jcom_btn [class^=btn_] .paramaunt {
    font-size: 4.2vw;
    padding-right: 1vw;
  }
  .block_paramount_plus .jcom_btn [class^=btn_] .paramaunt span {
    font-size: 2.6vw;
  }
}

/*===============================================================

    block_shin_standerd

===============================================================*/
.block_shin_standerd {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  padding: 80px 30px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      title_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      cource_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      cource_block 文字
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      block_smartplan	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      price_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      jcom_btn	
  -------------------------------------------------------------*/
  /*===============================================================
      //	block_shin_standerd
  ===============================================================*/
}
.block_shin_standerd::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, rgba(70, 70, 70, 0.6) 0%, rgba(70, 70, 70, 0) 100%);
  -webkit-transform: skewY(-10deg);
          transform: skewY(-10deg);
}
.block_shin_standerd .block_inner {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .block_shin_standerd {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.block_shin_standerd .title_block {
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 1031px) {
  .block_shin_standerd .title_block .block_skew_label {
    margin: 0 auto;
    font-size: 20px;
  }
  .block_shin_standerd .title_block .block_skew_label .gradation_txt {
    font-size: 20px;
  }
}
.block_shin_standerd .title_block .title {
  color: #fff;
  font-size: 44px;
  margin-top: 20px;
}
.block_shin_standerd .title_block .lead {
  margin-top: 15px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .block_shin_standerd .title_block .title {
    font-size: 8vw;
    line-height: 1.3;
    margin-top: 3vw;
  }
  .block_shin_standerd .title_block .lead {
    margin-top: 3vw;
    font-size: 4vw;
  }
}
.block_shin_standerd .cource_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_shin_standerd .cource_block .cource {
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 58, 35)), to(rgb(0, 100, 255)));
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  padding: 5px;
  width: 400px;
}
.block_shin_standerd .cource_block .cource_stream {
  background: -webkit-gradient(linear, right top, left top, from(rgb(248, 58, 35)), to(rgb(0, 100, 255)));
  background: linear-gradient(to left, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
}
.block_shin_standerd .cource_block a {
  display: block;
  background-repeat: none;
  background-size: cover;
  padding: 15px 20px;
  padding-bottom: 20px;
  text-align: left;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 250px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.block_shin_standerd .cource_block a::after, .block_shin_standerd .cource_block a::before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.block_shin_standerd .cource_block a::before {
  border: solid 2px #fff;
  width: 30px;
  height: 30px;
  border-radius: 50px;
}
.block_shin_standerd .cource_block a::after {
  border: solid 2px #fff;
  width: 10px;
  height: 10px;
  bottom: 32px;
  right: 30px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.block_shin_standerd .cource_block a sup {
  font-size: 75%;
}
.block_shin_standerd .cource_block a:hover::before {
  bottom: 15px;
}
.block_shin_standerd .cource_block a:hover::after {
  bottom: 27px;
}
.block_shin_standerd .cource_block .cource_tv {
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  opacity: 0;
}
.block_shin_standerd .cource_block .cource_tv a {
  background-image: url(../images/intro_topics_tv.jpg);
}
.block_shin_standerd .cource_block .cource_stream {
  position: relative;
  margin: 0 0 0 0;
  opacity: 0;
  -webkit-transform: translate(0, 130px);
          transform: translate(0, 130px);
}
.block_shin_standerd .cource_block .cource_stream a {
  background-image: url(../images/intro_topics_stream.jpg);
}
.block_shin_standerd .cource_block .cource_stream .thumb {
  width: 114px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.block_shin_standerd .cource_block .cource_tv.show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.block_shin_standerd .cource_block .cource_tv.show a {
  background-image: url(../images/intro_topics_tv.jpg);
}
.block_shin_standerd .cource_block .cource_stream.show {
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
  opacity: 1;
  margin: 0 0 0 0;
}
.block_shin_standerd .cource_block .cource_stream.show a {
  background-image: url(../images/intro_topics_stream.jpg);
}
.block_shin_standerd .cource_block .icon_plus {
  padding: 20px;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.block_shin_standerd .cource_block .icon_plus img {
  width: 45px;
  height: auto;
}
@media screen and (max-width: 1030px) {
  .block_shin_standerd .cource_block .cource {
    padding: 0.47vw;
    width: 38vw;
  }
  .block_shin_standerd .cource_block a {
    padding: 1.4vw 1.87vw;
    padding-bottom: 2.34vw;
    min-height: 23.36vw;
  }
  .block_shin_standerd .cource_block a::after, .block_shin_standerd .cource_block a::before {
    bottom: 1.87vw;
    right: 1.87vw;
  }
  .block_shin_standerd .cource_block a::before {
    width: 2.8vw;
    height: 2.8vw;
    border-radius: 4.67vw;
  }
  .block_shin_standerd .cource_block a::after {
    width: 0.93vw;
    height: 0.93vw;
    bottom: 2.99vw;
    right: 30px;
  }
  .block_shin_standerd .cource_block .cource_stream .thumb {
    width: 10.65vw;
  }
  .block_shin_standerd .cource_block .icon_plus {
    padding: 0;
    -webkit-transform: translateY(3.74vw);
            transform: translateY(3.74vw);
  }
  .block_shin_standerd .cource_block .icon_plus img {
    width: 4.21vw;
  }
}
@media screen and (max-width: 767px) {
  .block_shin_standerd .cource_block {
    display: block;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 5vw;
  }
  .block_shin_standerd .cource_block .cource {
    width: 80vw;
  }
  .block_shin_standerd .cource_block a {
    padding: 3vw 5vw;
    min-height: 180px;
  }
  .block_shin_standerd .cource_block a::after, .block_shin_standerd .cource_block a::before {
    content: "";
    bottom: 5vw;
    right: 5vw;
  }
  .block_shin_standerd .cource_block a::before {
    width: 8vw;
    height: 8vw;
    border-radius: 30vw;
  }
  .block_shin_standerd .cource_block a::after {
    width: 2.5vw;
    height: 2.5vw;
    bottom: 8vw;
    right: 7.7vw;
  }
  .block_shin_standerd .cource_block a:hover::before {
    bottom: 15px;
  }
  .block_shin_standerd .cource_block a:hover::after {
    bottom: 27px;
  }
  .block_shin_standerd .cource_block .cource_tv {
    margin-left: 0vw;
  }
  .block_shin_standerd .cource_block .cource_stream {
    margin: 0;
  }
  .block_shin_standerd .cource_block .cource_tv.show a {
    background-image: url(../images/intro_topics_tv.jpg);
  }
  .block_shin_standerd .cource_block .cource_stream.show {
    margin: 0 0 0 auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .block_shin_standerd .cource_block .cource_stream.show a {
    background-image: url(../images/intro_topics_stream.jpg);
  }
  .block_shin_standerd .cource_block .cource_stream .thumb {
    width: 20vw;
    top: 1vw;
    right: 1vw;
  }
  .block_shin_standerd .cource_block .icon_plus {
    padding: 5vw;
    text-align: center;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .block_shin_standerd .cource_block .icon_plus img {
    width: 7vw;
    height: auto;
  }
}
.block_shin_standerd .cource_block {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_shin_standerd .cource_block .label {
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 58, 35)), to(rgb(138, 77, 132)));
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(138, 77, 132) 100%);
  display: inline-block;
  padding: 3px 10px;
}
.block_shin_standerd .cource_block .cource_stream .label {
  background: -webkit-gradient(linear, right top, left top, from(rgb(248, 58, 35)), to(rgb(0, 100, 255)));
  background: linear-gradient(to left, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  background: -webkit-gradient(linear, right top, left top, from(rgb(121, 80, 150)), to(rgb(0, 100, 255)));
  background: linear-gradient(to left, rgb(121, 80, 150) 0%, rgb(0, 100, 255) 100%);
}
.block_shin_standerd .cource_block .title {
  color: #fff;
  text-align: left;
  font-size: 23px;
  line-height: 1.2;
}
.block_shin_standerd .cource_block .title strong {
  font-size: 140%;
}
.block_shin_standerd .cource_block .title .small {
  font-size: 75%;
  line-height: 1.4;
  padding-bottom: 3px;
  display: block;
}
.block_shin_standerd .cource_block .title img {
  width: auto;
  height: 35px;
  background: #1A1311;
  padding: 5px 10px;
  padding-top: 8px;
  margin-bottom: 5px;
}
.block_shin_standerd .cource_block .caption {
  margin-top: 10px;
  font-size: 80%;
}
@media screen and (max-width: 1030px) {
  .block_shin_standerd .cource_block .label {
    padding: 0.28vw 0.93vw;
  }
  .block_shin_standerd .cource_block .title {
    font-size: 2.15vw;
  }
  .block_shin_standerd .cource_block .title .small {
    padding-bottom: 0.28vw;
  }
  .block_shin_standerd .cource_block .title img {
    height: 3.27vw;
    padding: 0.47vw 0.93vw;
    padding-top: 0.75vw;
    margin-bottom: 0.47vw;
  }
  .block_shin_standerd .cource_block .caption {
    margin-top: 0.93vw;
  }
}
@media screen and (max-width: 767px) {
  .block_shin_standerd .cource_block .label {
    padding: 0.28vw 0.93vw;
  }
  .block_shin_standerd .cource_block .title {
    font-size: 4vw;
  }
  .block_shin_standerd .cource_block .title .small {
    padding-bottom: 1vw;
    font-size: 80%;
  }
  .block_shin_standerd .cource_block .title img {
    height: 7vw;
    padding: 1vw 1vw;
    padding-top: 0.75vw;
    margin-bottom: 2vw;
  }
  .block_shin_standerd .cource_block .caption {
    margin-top: 0.93vw;
    font-size: 3vw;
  }
}
.block_shin_standerd .block_smartplan {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 150px;
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_shin_standerd .block_smartplan .subtitle {
  font-size: 28px;
  font-weight: bold;
}
.block_shin_standerd .block_smartplan .fig {
  max-width: 370px;
  margin: 0 auto;
  margin-top: 20px;
}
.block_shin_standerd .block_smartplan .fig img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1030px) {
  .block_shin_standerd .block_smartplan .skew_label {
    margin-top: 30px;
    min-width: 500px;
    min-height: 56px;
  }
  .block_shin_standerd .block_smartplan .skew_label .txt {
    font-size: 26px;
    line-height: 56px;
    padding: 0;
  }
  .block_shin_standerd .block_smartplan .skew_label::after, .block_shin_standerd .block_smartplan .skew_label::before {
    height: 56px;
  }
  .block_shin_standerd .block_smartplan .skew_label::after {
    left: -8px;
  }
  .block_shin_standerd .block_smartplan .skew_label::before {
    right: -8px;
  }
  .block_shin_standerd .block_smartplan .skew_label .inner::after, .block_shin_standerd .block_smartplan .skew_label .inner::before {
    height: 56px;
  }
  .block_shin_standerd .block_smartplan .skew_label .inner::after {
    left: -15px;
  }
  .block_shin_standerd .block_smartplan .skew_label .inner::before {
    right: -15px;
  }
}
@media screen and (max-width: 1030px) {
  .block_shin_standerd .block_smartplan .skew_label {
    min-width: 500px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .block_shin_standerd .block_smartplan {
    margin-top: 10vw;
  }
  .block_shin_standerd .block_smartplan .subtitle {
    font-size: 6vw;
  }
  .block_shin_standerd .block_smartplan .skew_label {
    min-width: 50vw;
    margin-top: 30px;
  }
}
.block_shin_standerd .price_block {
  margin-top: 40px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 767px) {
  .block_shin_standerd .price_block {
    margin-top: 5vw;
  }
}
.block_shin_standerd .jcom_btn {
  max-width: 350px;
  margin: 0 auto;
  margin-top: 50px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================

    block_css_loopslider

===============================================================*/
.block_css_loopslider {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      slider_container	
  -------------------------------------------------------------*/
  /*===============================================================
      //	block_css_loopslider
  ===============================================================*/
}
.block_css_loopslider .slider_container {
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_css_loopslider .slider_container .slider {
  width: 100%;
  position: relative;
}
.block_css_loopslider .slider_container .slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  -webkit-animation: slide var(--duration, 30s) linear infinite;
          animation: slide var(--duration, 30s) linear infinite;
}
.block_css_loopslider .slider_container .slides.alternate {
  -webkit-animation: slide_alternate var(--duration, 28s) linear infinite;
          animation: slide_alternate var(--duration, 28s) linear infinite;
}
.block_css_loopslider .slider_container .slides.allow-pause:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.block_css_loopslider .slider_container .slide {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes slide_alternate {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes slide_alternate {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
/*===============================================================

    section_program_panels

===============================================================*/
.section_program_panels {
  padding-bottom: 50px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      block_jcom_btns	
  -------------------------------------------------------------*/
  /*===============================================================
      //	section_program_panels
  ===============================================================*/
}
@media screen and (max-width: 767px) {
  .section_program_panels {
    padding-bottom: 10vw;
  }
}
.section_program_panels .block_jcom_btns {
  padding: 50px 0 100px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 767px) {
  .section_program_panels .block_jcom_btns {
    padding: 10vw 0 10vw;
  }
}

/*===============================================================

    section_channel_lineup

===============================================================*/
.section_channel_lineup {
  background-color: #333;
  position: relative;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_channel_lineup
  ===============================================================*/
}
.section_channel_lineup::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 18px solid #000;
  border-bottom: 18px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  -webkit-transform: translate(3px, 0);
          transform: translate(3px, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_channel_lineup .section_inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section_channel_lineup .title_block .title {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section_channel_lineup .section_inner {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}

/*===============================================================

	チャンネルラインナップのスライダー
	block_channel_lineup

===============================================================*/
.block_channel_lineup {
  width: 100vw;
  height: 100px;
  height: auto;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_channel_lineup .slider {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.block_channel_lineup .slider .item {
  overflow: hidden;
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin-left: 20px;
}
.block_channel_lineup .slider .item img {
  width: 100%;
  height: auto;
  padding: 15px;
}
.block_channel_lineup .slider + .slider {
  margin-top: 25px;
}
.block_channel_lineup .slider_inited {
  opacity: 1;
}
@media screen and (max-width: 1030px) {
  .block_channel_lineup .slider .item {
    width: 15vw;
    height: 15vw;
    border-radius: 15vw;
    margin-left: 1.5vw;
  }
  .block_channel_lineup .slider .item img {
    padding: 2vw;
  }
  .block_channel_lineup .slider + .slider {
    margin-top: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .block_channel_lineup {
    height: 20vw;
  }
  .block_channel_lineup .slider .item {
    width: 20vw;
    height: 20vw;
    border-radius: 20vw;
    margin-left: 3vw;
  }
  .block_channel_lineup .slider .item img {
    padding: 2.5vw;
  }
  .block_channel_lineup .slider + .slider {
    margin-top: 2vw;
  }
}

/*===============================================================

    section_intro

===============================================================*/
.section_intro {
  opacity: 0;
  padding-top: 30px;
  -webkit-transform: all 0.3s;
          transform: all 0.3s;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      content_entry	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      content_div	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      bar_animation01	
  -------------------------------------------------------------*/
  /*===============================================================
      //	section_intro
  ===============================================================*/
}
.section_intro.show {
  opacity: 1;
}
.section_intro .section_inner {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .section_intro .section_inner {
    padding-top: 10vw;
  }
}
.section_intro .content_entry {
  padding-bottom: 50px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_intro .content_entry .label {
  text-align: center;
}
.section_intro .content_entry .label + .label {
  margin-top: 10px;
}
.section_intro .content_entry .btn_gradation {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .section_intro .content_entry .block_skew_label .inner {
    font-size: 4vw;
  }
}
.section_intro .content_div {
  position: relative;
  height: 150px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_intro .bar_animation01 {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 767px) {
  .section_intro .bar_animation01 {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*===============================================================

    content_new_topics

===============================================================*/
.content_new_topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  background: none;
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      new_topics	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      cource_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      cource_block 文字
  -------------------------------------------------------------*/
  /*===============================================================
      //	content_new_topics
  ===============================================================*/
}
.content_new_topics .new_topics {
  background: linear-gradient(100deg, rgba(70, 70, 70, 0.6) 0%, rgba(70, 70, 70, 0) 100%);
  width: calc((100% - 20px) / 2);
  -webkit-transform: skewY(-10deg);
          transform: skewY(-10deg);
  padding: 80px 30px;
}
.content_new_topics .new_topics .inner {
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .content_new_topics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .content_new_topics .new_topics {
    width: 100%;
    padding: 10vw 0vw 25vw;
  }
}
.content_new_topics .new_topics {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.content_new_topics .new_topics .title {
  margin-top: 20px;
  color: #fff;
  font-size: 30px;
  line-height: 1.3;
}
.content_new_topics .new_topics .title span {
  display: block;
  font-size: 80%;
  padding-bottom: 5px;
}
.content_new_topics .new_topics .lead {
  font-size: 16px;
  margin-top: 20px;
}
.content_new_topics .new_topics .btn_paramaount {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .content_new_topics .new_topics .title {
    margin-top: 5vw;
    font-size: 8vw;
  }
  .content_new_topics .new_topics .lead {
    font-size: 4vw;
    margin-top: 5vw;
  }
  .content_new_topics .new_topics .btn_paramaount {
    margin-top: 30px;
  }
}
.content_new_topics .cource_block {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.content_new_topics .cource_block .cource {
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 58, 35)), to(rgb(0, 100, 255)));
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  padding: 5px;
  max-width: 450px;
}
.content_new_topics .cource_block a {
  display: block;
  background-repeat: none;
  background-size: cover;
  padding: 15px 20px;
  text-align: left;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 200px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.content_new_topics .cource_block a::after, .content_new_topics .cource_block a::before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.content_new_topics .cource_block a::before {
  border: solid 2px #fff;
  width: 30px;
  height: 30px;
  border-radius: 50px;
}
.content_new_topics .cource_block a::after {
  border: solid 2px #fff;
  width: 10px;
  height: 10px;
  bottom: 32px;
  right: 30px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.content_new_topics .cource_block a sup {
  font-size: 75%;
}
.content_new_topics .cource_block a:hover::before {
  bottom: 15px;
}
.content_new_topics .cource_block a:hover::after {
  bottom: 27px;
}
.content_new_topics .cource_block .cource_tv {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
}
.content_new_topics .cource_block .cource_tv a {
  background-image: url(../images/intro_topics_tv.jpg);
}
.content_new_topics .cource_block .cource_stream {
  margin: 0 0 0 auto;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
.content_new_topics .cource_block .cource_stream a {
  background-image: url(../images/intro_topics_stream.jpg);
}
.content_new_topics .cource_block .cource_tv.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.content_new_topics .cource_block .cource_tv.show a {
  background-image: url(../images/intro_topics_tv.jpg);
}
.content_new_topics .cource_block .cource_stream.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  margin: 0 0 0 auto;
}
.content_new_topics .cource_block .cource_stream.show a {
  background-image: url(../images/intro_topics_stream.jpg);
}
.content_new_topics .cource_block .icon_plus {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .content_new_topics .cource_block .cource {
    padding: 5px;
    max-width: inherit;
    width: 83vw;
  }
  .content_new_topics .cource_block a {
    padding: 3vw 5vw;
    min-height: 180px;
  }
  .content_new_topics .cource_block a::after, .content_new_topics .cource_block a::before {
    content: "";
    bottom: 5vw;
    right: 5vw;
  }
  .content_new_topics .cource_block a::before {
    width: 8vw;
    height: 8vw;
    border-radius: 30vw;
  }
  .content_new_topics .cource_block a::after {
    width: 2.5vw;
    height: 2.5vw;
    bottom: 8vw;
    right: 7.7vw;
  }
  .content_new_topics .cource_block a:hover::before {
    bottom: 15px;
  }
  .content_new_topics .cource_block a:hover::after {
    bottom: 27px;
  }
  .content_new_topics .cource_block .cource_tv {
    margin-left: -10vw;
    margin: 0;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  .content_new_topics .cource_block .cource_stream {
    margin: 0;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  .content_new_topics .cource_block .cource_tv.show {
    -webkit-transform: translateX(-5vw);
            transform: translateX(-5vw);
  }
  .content_new_topics .cource_block .cource_tv.show a {
    background-image: url(../images/intro_topics_tv.jpg);
  }
  .content_new_topics .cource_block .cource_stream.show {
    -webkit-transform: translateX(5vw);
            transform: translateX(5vw);
    margin: 0 0 0 auto;
  }
  .content_new_topics .cource_block .cource_stream.show a {
    background-image: url(../images/intro_topics_stream.jpg);
  }
  .content_new_topics .cource_block .icon_plus {
    padding: 3vw;
  }
  .content_new_topics .cource_block .icon_plus img {
    width: 7vw;
    height: auto;
  }
}
.content_new_topics .cource_block {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.content_new_topics .cource_block .label {
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 58, 35)), to(rgb(138, 77, 132)));
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(138, 77, 132) 100%);
  display: inline-block;
  padding: 3px 10px;
}
.content_new_topics .cource_block .title {
  text-align: left;
  font-size: 20px;
}
.content_new_topics .cource_block .title strong {
  font-size: 140%;
}
.content_new_topics .cource_block .title img {
  width: auto;
  height: 35px;
  background: #1A1311;
  padding: 5px 10px;
  padding-top: 8px;
  margin-bottom: 5px;
}
.content_new_topics .cource_block .caption {
  margin-top: 10px;
  font-size: 80%;
}
/*===============================================================

	content_scroll_wrp

===============================================================*/
.content_scroll_wrp {
  position: relative;
  margin-top: 50px;
  width: 100%;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  min-height: 300px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      title_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      //  content_scroll_wrp	
  -------------------------------------------------------------*/
}
.content_scroll_wrp .content_croll {
  background: #000;
  color: #fff;
  opacity: 0.5;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.content_scroll_wrp .active {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 255, 0, 0.3);
}
.content_scroll_wrp .out {
  position: absolute;
  top: auto;
  bottom: 0;
}
.content_scroll_wrp .inner {
  width: 100vw;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content_scroll_wrp .title_block {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================

    intro_scroll_content

===============================================================*/
.intro_scroll_content {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
  overflow: visible !important;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      title_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      thumbs_block	
  -------------------------------------------------------------*/
  /*===============================================================
      //	intro_scroll_content
  ===============================================================*/
}
.intro_scroll_content .js_scroll_area {
  z-index: 2;
}
.intro_scroll_content .js_scale_target {
  background: none;
}
.intro_scroll_content .js_scale_target .bar_animation {
  opacity: 0;
}
.intro_scroll_content .active .js_scale_target .bar_animation {
  opacity: 1;
  -webkit-transform: translateY(-250px);
          transform: translateY(-250px);
}
.intro_scroll_content .out .js_scale_target {
  bottom: 100px;
  bottom: calc((100vh - 251px) / 2);
}
@media screen and (max-width: 767px) {
  .intro_scroll_content .active .js_scale_target .bar_animation {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  .intro_scroll_content .out .js_scale_target {
    bottom: calc((100vh - 67.27vw) / 2);
  }
}
.intro_scroll_content .title_block {
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  position: relative;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.intro_scroll_content .title_block.show_logo {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.intro_scroll_content .title_block .label {
  position: absolute;
  top: -80px;
  left: 15px;
  width: 110px;
  height: 110px;
  background-image: url(../images/intro_title_label.svg);
  background-repeat: none;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F83A23;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(350deg);
          transform: rotate(350deg);
}
.intro_scroll_content .title_block .label.show {
  opacity: 1;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (max-width: 767px) {
  .intro_scroll_content .title_block {
    max-width: inherit;
    width: 70vw;
  }
  .intro_scroll_content .title_block .label {
    position: absolute;
    top: -85px;
    left: -10px;
    top: -80px;
    left: -5px;
    width: 25vw;
    height: 25vw;
    font-size: 4vw;
  }
}
.intro_scroll_content .thumbs_block {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.intro_scroll_content .thumbs_block .thumb {
  position: absolute;
  opacity: 0.4;
}
.intro_scroll_content .thumbs_block .thumb_mip {
  width: 10%;
  top: 27%;
  left: 5%;
}
.intro_scroll_content .thumbs_block .thumb_american {
  width: 14%;
  top: 33%;
  left: 18%;
}
.intro_scroll_content .thumbs_block .thumb_csi {
  width: 15%;
  top: 25%;
  right: 25%;
}
.intro_scroll_content .thumbs_block .thumb_sponge {
  width: 8%;
  top: 37%;
  right: 15%;
}
.intro_scroll_content .thumbs_block .thumb_tulsaking {
  width: 18%;
  top: 53%;
  left: 7%;
}
.intro_scroll_content .thumbs_block .thumb_pengin {
  width: 10%;
  top: 73%;
  left: 29%;
}
.intro_scroll_content .thumbs_block .thumb_topgun {
  width: 12%;
  top: 47%;
  right: 5%;
}
.intro_scroll_content .thumbs_block .thumb_ncis {
  width: 14%;
  top: 55%;
  right: 20%;
}
.intro_scroll_content .thumbs_block .thumb_banbrbee {
  width: 8%;
  top: 85%;
  right: 36%;
}
@media screen and (max-width: 767px) {
  .intro_scroll_content .thumbs_block .thumb_mip {
    width: 22%;
    top: 7%;
    left: 10%;
  }
  .intro_scroll_content .thumbs_block .thumb_american {
    width: 22%;
    top: 28%;
    left: 28%;
  }
  .intro_scroll_content .thumbs_block .thumb_csi {
    width: 25%;
    top: 0%;
    right: 5%;
  }
  .intro_scroll_content .thumbs_block .thumb_sponge {
    width: 18%;
    top: 20%;
    right: 3%;
  }
  .intro_scroll_content .thumbs_block .thumb_tulsaking {
    width: 25%;
    top: 63%;
    left: 7%;
  }
  .intro_scroll_content .thumbs_block .thumb_pengin {
    width: 20%;
    top: 43%;
    left: 10%;
  }
  .intro_scroll_content .thumbs_block .thumb_topgun {
    width: 25%;
    top: 70%;
    right: 5%;
  }
  .intro_scroll_content .thumbs_block .thumb_ncis {
    width: 22%;
    top: 47%;
    right: 17%;
  }
  .intro_scroll_content .thumbs_block .thumb_banbrbee {
    width: 18%;
    top: 83%;
    right: 35%;
  }
}

/*===============================================================

    section_enjoy

===============================================================*/
.section_enjoy {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_enjoy
  ===============================================================*/
}
@media screen and (max-width: 767px) {
  .section_enjoy .section_inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/*===============================================================

    section_charm

===============================================================*/
.section_charm {
  position: relative;
  background-color: #333;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(51, 51, 51)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgb(51, 51, 51) 0%, rgb(0, 0, 0) 100%);
  color: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_charm
  ===============================================================*/
}
.section_charm::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 18px solid #000;
  border-bottom: 18px solid transparent;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.section_charm .caption {
  font-size: 75%;
  margin-top: 0.3em;
}
.section_charm .ch_title {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.section_charm .ch_content_title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.section_charm .ch_content_lead {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
.section_charm .ch_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.section_charm .ch_logo_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 7.5px);
}
.section_charm .ch_logo_list > :not(:first-child) {
  margin-left: 15px;
}
.section_charm .ch_logo_item {
  width: calc((100% - 45px) / 4);
}
.section_charm .ch_logo_item li {
  margin-bottom: 0;
}
.section_charm .ch_logo_item img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.section_charm .block_tab_content {
  min-height: 580px;
}
.section_charm .ch_jsports4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.4);
  width: 600px;
  margin: 40px auto 0;
  margin-top: 0;
  padding: 20px 40px;
}
.section_charm .ch_jsports4_img {
  width: 100px;
}
.section_charm .ch_jsports4_img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.section_charm .ch_jsports4_txt {
  width: calc(100% - 100px);
  padding-left: 20px;
}
.section_charm .ch_jsports4_title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
.section_charm .ch_jsports4_text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}
.section_charm .jcom_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.section_charm .jcom_btns > :not(:first-of-type) {
  margin-left: 20px;
}
.section_charm .jcom_btn {
  width: 350px;
}
@media screen and (max-width: 1030px) {
  .section_charm .ch_title {
    font-size: 2.72vw;
  }
  .section_charm .ch_content_title {
    font-size: 3.5vw;
  }
  .section_charm .ch_content_lead {
    margin-top: 2.43vw;
    font-size: 1.75vw;
  }
  .section_charm .ch_logo {
    margin-top: 3.88vw;
  }
  .section_charm .ch_logo_list {
    width: calc((100% - 1.46vw) / 2);
  }
  .section_charm .ch_logo_list > :not(:first-child) {
    margin-left: 1.46vw;
  }
  .section_charm .ch_logo_item {
    width: calc((100% - 4.38vw) / 4);
  }
  .section_charm .block_tab_content {
    min-height: 59vw;
  }
  .section_charm .ch_jsports4 {
    width: 58.25vw;
    margin: 3.88vw auto 0;
    margin-top: 0;
    padding: 1.94vw 3.88vw;
  }
  .section_charm .ch_jsports4_img {
    width: 9.71vw;
  }
  .section_charm .ch_jsports4_txt {
    width: calc(100% - 9.71vw);
    padding-left: 1.94vw;
  }
  .section_charm .ch_jsports4_title {
    font-size: 1.94vw;
  }
  .section_charm .ch_jsports4_text {
    font-size: 1.55vw;
    margin-top: 0.97vw;
  }
  .section_charm .jcom_btns {
    margin-top: 2.91vw;
  }
  .section_charm .jcom_btns > :not(:first-of-type) {
    margin-left: 1.94vw;
  }
  .section_charm .jcom_btn {
    width: 33.98vw;
  }
}
@media screen and (max-width: 767px) {
  .section_charm .section_inner {
    padding-top: 12vw;
    padding-left: 0;
    padding-right: 0;
  }
  .section_charm .sp_hide {
    display: none;
  }
  .section_charm .ch_title {
    font-size: 5.2vw;
  }
  .section_charm .ch_content_title {
    font-size: 6.5vw;
  }
  .section_charm .ch_content_lead {
    margin-top: 4.5vw;
    font-size: 3.6vw;
  }
  .section_charm .ch_logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 6vw auto 0;
    max-width: 100%;
  }
  .section_charm .ch_logo_list {
    width: calc(100% - (100% - 9vw) / 4 / 2);
    margin-bottom: 0;
  }
  .section_charm .ch_logo_list > :not(:first-child) {
    margin-left: 3vw;
  }
  .section_charm .ch_logo_list:nth-child(2n) {
    margin-left: calc((100% - 12vw) / 4 / 2);
  }
  .section_charm .ch_logo_item {
    width: calc((100% - 9vw) / 4);
    margin-bottom: 0;
  }
  .section_charm .block_tab_content {
    min-height: 129vw;
  }
  .section_charm .ch_jsports4 {
    width: 100%;
    margin: 5vw auto 0;
    padding: 5vw 3vw;
  }
  .section_charm .ch_jsports4_img {
    width: 18vw;
  }
  .section_charm .ch_jsports4_txt {
    width: calc(100% - 18vw);
    padding-left: 3vw;
  }
  .section_charm .ch_jsports4_title {
    font-size: 4.6vw;
  }
  .section_charm .ch_jsports4_text {
    font-size: 3.6vw;
    line-height: 1.4;
    margin-top: 1.2vw;
  }
  .section_charm .jcom_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7vw;
  }
  .section_charm .jcom_btns > :not(:first-of-type) {
    margin-top: 5vw;
    margin-left: 0;
  }
  .section_charm .jcom_btn {
    width: 85vw;
  }
}

/*===============================================================

    section_disney_plus

===============================================================*/
.section_disney_plus {
  overflow: visible;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(51, 51, 51)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgb(51, 51, 51) 0%, rgb(0, 0, 0) 100%);
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_disney_plus
  ===============================================================*/
}
.section_disney_plus .label_block {
  margin-top: -150px;
  z-index: 2;
}
.section_disney_plus .title_block {
  margin-top: 50px;
}
.section_disney_plus .title_block .title {
  color: #fff;
  font-size: 28px;
}
.section_disney_plus .bnr_block {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section_disney_plus .label_block {
    margin-top: -25vw;
    z-index: 2;
  }
  .section_disney_plus .title_block {
    margin-top: 5vw;
  }
  .section_disney_plus .title_block .title {
    font-size: 5vw;
  }
  .section_disney_plus .bnr_block {
    margin-top: 8vw;
    border-radius: 10px;
  }
}

/*===============================================================

    section_multidevice

===============================================================*/
.section_multidevice {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(51, 51, 51)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgb(51, 51, 51) 0%, rgb(0, 0, 0) 100%);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_multidevice
  ===============================================================*/
}
.section_multidevice .title_block .title {
  color: #fff;
  font-size: 36px;
  margin-top: 20px;
}
.section_multidevice .block_jcom_btns {
  margin-top: -100px;
}
@media screen and (max-width: 767px) {
  .section_multidevice .title_block .title {
    color: #fff;
    font-size: 6vw;
    margin-top: 3vw;
  }
  .section_multidevice .block_jcom_btns {
    margin-top: -12vw;
  }
}

/*===============================================================

    section_genre_tags

===============================================================*/
.section_genre_tags {
  position: relative;
  background-color: #333;
  color: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      block_css_loopslider	
  -------------------------------------------------------------*/
  /*===============================================================
      //	section_genre_tags
  ===============================================================*/
}
.section_genre_tags::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 18px solid #000;
  border-bottom: 18px solid transparent;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.section_genre_tags .section_inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section_genre_tags .title_block .title {
  color: #fff;
  font-size: 28px;
}
.section_genre_tags .block_css_loopslider {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_genre_tags .block_css_loopslider .slider_container + .slider_container {
  margin-top: 20px;
}
.section_genre_tags .block_css_loopslider ul {
  margin: 0;
}
.section_genre_tags .block_css_loopslider li {
  display: block;
  border: solid 1px #fff;
  color: #fff;
  padding: 0 20px;
  font-size: 18px;
  line-height: 46px;
  border-radius: 23px;
  margin: 0;
  margin-left: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .section_genre_tags .block_css_loopslider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .section_genre_tags .block_css_loopslider .slider_container + .slider_container {
    margin-top: 3vw;
  }
  .section_genre_tags .block_css_loopslider ul {
    margin: 0;
  }
  .section_genre_tags .block_css_loopslider li {
    padding: 0 3vw;
    font-size: 4vw;
    line-height: 2;
    border-radius: 8vw;
    margin-left: 3vw;
  }
}

/*===============================================================

    section_jcomstream_pickup

===============================================================*/
.section_jcomstream_pickup {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_jcomstream_pickup
  ===============================================================*/
}
/*===============================================================

	stream_slider

===============================================================*/
.stream_slider {
  display: block;
  margin-top: 70px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager a
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	photo	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	txt	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	.slick-dotted.slick-slider	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	slick-dots	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	stream_slider ここまで
  -------------------------------------------------------------*/
}
.stream_slider.slider_active .slider {
  opacity: 1;
}
.stream_slider .slider {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.stream_slider .slick-list {
  overflow: visible;
}
.stream_slider .slider .slide {
  width: 510px;
  margin: 0;
  position: relative;
  border-radius: 0;
  pointer-events: visible;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
  opacity: 0.5;
  padding: 0 5px;
}
.stream_slider .slider .slick-center {
  -webkit-transform: scale(1.2) translateY(0px);
          transform: scale(1.2) translateY(0px);
  opacity: 1;
  z-index: 99;
}
.stream_slider .slider .slide img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .stream_slider {
    margin-top: 10vw;
  }
  .stream_slider .slider {
    height: auto !important;
  }
  .stream_slider .slider .slide {
    width: 70vw;
    height: auto;
  }
}
.stream_slider .slider .pager {
  position: absolute;
  top: 115px;
  width: 50px;
  height: 50px;
  z-index: 5;
}
.stream_slider .slider .prev {
  left: calc((100% - 600px) / 2 - 25px);
}
.stream_slider .slider .next {
  right: calc((100% - 600px) / 2 - 25px);
}
@media screen and (max-width: 767px) {
  .stream_slider .slider .pager {
    top: 13vw;
    top: 16vw;
    width: 8vw;
    height: 8vw;
  }
  .stream_slider .slider .prev {
    left: 1vw;
  }
  .stream_slider .slider .next {
    right: 1vw;
  }
}
.stream_slider .slider .pager a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50% 50%;
  overflow: hidden;
  text-indent: -200%;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.stream_slider .slider .pager a:hover {
  opacity: 1;
  background-color: #e83416;
}
.stream_slider .slider .pager a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(-45deg) translate(-2px, -2px);
          transform: rotate(-45deg) translate(-2px, -2px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.stream_slider .slider .prev a:after {
  -webkit-transform: rotate(135deg) translate(-2px, -2px);
          transform: rotate(135deg) translate(-2px, -2px);
}
@media screen and (max-width: 767px) {
  .stream_slider .slider .pager a {
    width: 8vw;
    height: 8vw;
  }
  .stream_slider .slider .pager a:after {
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    width: 2.5vw;
    height: 2.5vw;
  }
}
.stream_slider .thumb {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.stream_slider .thumb img {
  width: inherit;
  max-width: 100%;
  min-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .stream_slider .thumb {
    border-radius: 2vw;
  }
}
.stream_slider .youtube_link {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.stream_slider .txt {
  text-align: left;
}
.stream_slider .txt a {
  color: #fff;
}
.stream_slider .txt .info,
.stream_slider .txt .title {
  display: none;
}
.stream_slider .caption {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.stream_slider .slick-center {
  /* SP */
  /* for SP */
}
.stream_slider .slick-center .txt_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.stream_slider .slick-center .caption {
  display: block;
  font-size: 12px;
  color: #fff;
  opacity: 1;
}
.stream_slider .slick-center .caption + .youtube_link {
  margin-right: 8px;
}
.stream_slider .slick-center .youtube_link {
  display: inline-block;
  padding: 4px 5px;
  border: solid 1px #666;
  font-size: 11px;
  line-height: 1;
  color: #ccc;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}
.stream_slider .slick-center .youtube_link:hover {
  opacity: 0.7;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .stream_slider .slick-center .txt_footer {
    margin-top: 0vw;
  }
  .stream_slider .slick-center .caption {
    font-size: 2.8vw;
    margin-top: 3vw;
  }
  .stream_slider .slick-center .caption + .youtube_link {
    margin-right: 2vw;
  }
  .stream_slider .slick-center .youtube_link {
    padding: 4px 5px;
    font-size: 2.8vw;
    margin-top: 3vw;
  }
}
.stream_slider .slick-dotted.slick-slider {
  margin-bottom: 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.stream_slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.stream_slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  margin-top: 10px;
}
.stream_slider .slick-dots li button {
  width: 10px;
  height: 10px;
}
.stream_slider .slick-dots li button::before {
  font-size: 14px;
  line-height: 10px;
  width: 10px;
  height: 10px;
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.stream_slider .slick-dots li button:hover::before {
  opacity: 0.5;
}
.stream_slider .slick-dots li.slick-active button::before {
  color: #e83416;
  opacity: 1;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
@media screen and (max-width: 767px) {
  .stream_slider .slick-dots {
    margin-top: 10vw;
  }
}

/*===============================================================

	topのみ
    section_jcomstream_pickup

===============================================================*/
.shinsta_lp .section_jcomstream_pickup {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_jcomstream_pickup
  ===============================================================*/
}
.shinsta_lp .section_jcomstream_pickup .section_inner {
  padding-top: 50px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .shinsta_lp .section_jcomstream_pickup .section_inner {
    padding-top: 5vw;
    padding-bottom: 2vw;
  }
}

/*===============================================================

    section_jcomstream_outline

===============================================================*/
.section_jcomstream_outline {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_jcomstream_outline
  ===============================================================*/
}
.section_jcomstream_outline .block_subslider {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: none;
}
.section_jcomstream_outline .block_subslider .thumb {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section_jcomstream_outline .block_subslider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/*===============================================================
	 読み込み
===============================================================*/
body {
  position: inherit;
  height: auto;
}

body.image_loaded {
  position: inherit;
  height: auto;
}

.rellax {
  will-change: top, left, right, bottom, opacity, margin, padding, width, height, transform, filter, animation;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*===============================================================

	thiscontents

===============================================================*/
.thiscontents {
  position: relative;
  z-index: 1;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	now_loading	
  -------------------------------------------------------------*/
  /*===============================================================
  	//	thiscontents
  ===============================================================*/
}
.thiscontents .section_wrp {
  overflow: hidden;
}
.modal_active .thiscontents {
  position: relative;
  z-index: 1000;
}
.thiscontents .section {
  padding: 0;
}
.thiscontents .now_loading {
  padding-top: 120px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents .now_loading.show {
  opacity: 1;
}
.thiscontents .now_loading img {
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .thiscontents .now_loading {
    padding-top: 8vw;
  }
}

.output_status {
  position: fixed;
  z-index: 99999;
  bottom: 100px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 20px;
  -webkit-transform: scale(1);
          transform: scale(1);
  font-size: 12px;
  line-height: 1.8;
  pointer-events: none;
  opacity: 0.9;
}

.space {
  width: 100%;
  height: 100vh;
  background: #333;
  position: relative;
}
.space p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.2em;
  text-align: center;
}
.space .arw::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 1px #fff;
  width: 6px;
  height: 6px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg) translate(-1px, -1px);
          transform: rotate(45deg) translate(-1px, -1px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
/*# sourceMappingURL=top.css.map */