@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;
}

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

/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
.c_jcom {
  color: #e83416 !important;
}

.c_txtlink {
  color: #7affed !important;
}

.c_blue02 {
  color: #1977ff !important;
}

/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================

	レイアウト
	_rayout.scss

===============================================================*/
.full_width {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 800px) {
  .full_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.max_width {
  max-width: 1900px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.large_width {
  max-width: 1500px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .large_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.wide_width {
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .wide_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.content_width {
  max-width: 1130px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.narrow_width {
  max-width: 800px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.absolute_full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.btn_width {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    max-width: inherit;
  }
}

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

	seciton
	headlineとcontentなど、複数の要素、機能を取りまとめるコンテナ的な親要素。
	幅はsection_innerに記述する

===============================================================*/
.section_wrp {
  color: #fff;
}

.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 15vw;
    padding-bottom: 15vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.section_inner_pt0 {
  padding-top: 0;
}
@media screen and (max-width: 800px) {
  .section_inner_pt0 {
    padding-top: 0;
  }
}

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

	content 
	個別のコンテンツ

===============================================================*/
.content + .content {
  margin-top: 100px;
}

.content + .headline {
  margin-top: 100px;
}

.headline + .content {
  margin-top: 100px;
}

.content .content + *,
.content * + .content {
  margin-top: 70px;
}

.content_title + .content {
  margin-top: 0;
}

.content_mt150 {
  margin-top: 150px !important;
}

.content_mt100_pt50 {
  margin-top: 100px !important;
  padding-top: 50px !important;
}

.content_mt50_pt50 {
  margin-top: 50px !important;
  padding-top: 50px !important;
}

@media screen and (max-width: 1030px) {
  .content {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 12vw;
  }
  .content + .headline {
    margin-top: 12vw;
  }
  .headline + .content {
    margin-top: 10vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 9.6vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
  .content_mt150 {
    margin-top: 12vw !important;
  }
  .content_mt100_pt50 {
    margin-top: 6vw !important;
    padding-top: 6vw !important;
  }
  .content_mt50_pt50 {
    margin-top: 6vw !important;
    padding-top: 6vw !important;
  }
}
/*===============================================================

	block 

===============================================================*/
.block + .block {
  margin-top: 70px;
}
.block + .block_mt100 {
  margin-top: 100px;
}
.block p + p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .block + .block {
    margin-top: 9.96vw;
  }
  .block + .block_mt100 {
    margin-top: 12vw;
  }
}

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

	PC/SP/TABLET

===============================================================*/
.sp {
  display: none;
}

.pc {
  display: block;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

@media screen and (max-width: 1030px) {
  .pc {
    display: none;
  }
  .tablet,
  .pc_tablet,
  .sp_tablet {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
}
/*===============================================================

	img fig

===============================================================*/
.fig img,
.fitimg img,
.photo img {
  width: 100%;
  height: auto;
}

.thiscontents img {
  width: 100%;
  height: auto;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

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

	thiscontents

===============================================================*/
.thiscontents {
  color: #fff;
  background: #12142f;
  width: 100%;
}
.thiscontents * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.thiscontents img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-touch-callout: none;
}
.thiscontents .none {
  display: none;
}
.thiscontents h1, .thiscontents h2, .thiscontents h3, .thiscontents h4, .thiscontents h5, .thiscontents h6 {
  font-weight: 700;
  line-height: 1.6;
}
.thiscontents p {
  margin: 0;
  padding: 0;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 500;
}
.thiscontents .caption {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}
.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}
.thiscontents a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .thiscontents p {
    font-size: 3.5vw;
    line-height: 1.8;
  }
  .thiscontents .caption {
    font-size: 3vw;
    line-height: 1.6;
  }
  .thiscontents sup {
    font-size: 3vw;
    line-height: 1.2;
  }
}

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

	slick_slider

===============================================================*/
.slick_slider {
  opacity: 0;
  height: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  /*-------------------------------------------------------------
  	arw
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	arw_blue
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    dots_wrp	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    dots_wrp_blue	
  -------------------------------------------------------------*/
}
.slick_slider.slick-initialized {
  opacity: 1;
  height: auto;
}
.slick_slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slick_slider .slick-slide {
  height: auto !important;
}
.slick_slider.slick-dotted {
  margin-bottom: 0;
}
.slick_slider .arw, .slick_slider .arw_blue {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.slick_slider .arw:hover, .slick_slider .arw_blue:hover {
  opacity: 0.7;
}
.slick_slider .arw:before, .slick_slider .arw_blue:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #e83416;
}
.slick_slider .arw:after, .slick_slider .arw_blue:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: solid 3px #fff;
  border-left: solid 3px #fff;
  -webkit-transform: rotate(-45deg) translate(2px, 2px);
          transform: rotate(-45deg) translate(2px, 2px);
}
.slick_slider .arw.arw_prev, .slick_slider .arw_prev.arw_blue {
  left: -25px;
}
.slick_slider .arw.arw_next, .slick_slider .arw_next.arw_blue {
  right: -25px;
}
.slick_slider .arw.arw_next:after, .slick_slider .arw_next.arw_blue:after {
  right: 0;
  -webkit-transform: rotate(135deg) translate(2px, 2px);
          transform: rotate(135deg) translate(2px, 2px);
}
@media screen and (max-width: 800px) {
  .slick_slider .arw, .slick_slider .arw_blue {
    width: 10vw;
    height: 10vw;
  }
  .slick_slider .arw:after, .slick_slider .arw_blue:after {
    width: 2vw;
    height: 2vw;
    border-top-width: 2px;
    border-left-width: 2px;
  }
  .slick_slider .arw.arw_prev, .slick_slider .arw_prev.arw_blue {
    left: -3vw;
  }
  .slick_slider .arw.arw_next, .slick_slider .arw_next.arw_blue {
    right: -3vw;
  }
}
.slick_slider .arw_blue:before {
  background: #1977ff;
}
.slick_slider .dots_wrp, .slick_slider .dots_wrp_blue {
  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;
  gap: 10px;
  margin-top: 40px;
}
.slick_slider .dots_wrp li, .slick_slider .dots_wrp_blue li {
  width: 12px;
  height: 12px;
  border: 1px solid #e83416;
  border-radius: 50%;
}
.slick_slider .dots_wrp li:hover, .slick_slider .dots_wrp_blue li:hover,
.slick_slider .dots_wrp li.slick-active,
.slick_slider .dots_wrp_blue li.slick-active {
  background: #e83416;
}
.slick_slider .dots_wrp li button, .slick_slider .dots_wrp_blue li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
@media screen and (max-width: 800px) {
  .slick_slider .dots_wrp, .slick_slider .dots_wrp_blue {
    gap: 2vw;
    margin-top: 6vw;
  }
  .slick_slider .dots_wrp li, .slick_slider .dots_wrp_blue li {
    width: 2vw;
    height: 2vw;
  }
}
.slick_slider .dots_wrp_blue li {
  border: 1px solid #1977ff;
}
.slick_slider .dots_wrp_blue li:hover,
.slick_slider .dots_wrp_blue li.slick-active {
  background: #1977ff;
}
/*-------------------------------------------------------------
		一時停止　/　再生	
-------------------------------------------------------------*/
.btn_pause_and_play, .btn_pause_and_play_blue {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-indent: -9999px;
  z-index: 5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  height: 40px;
  width: 40px;
}
.btn_pause_and_play a, .btn_pause_and_play_blue a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  overflow: hidden;
  height: 40px;
  width: 40px;
  position: absolute;
  inset: 0;
  margin: auto;
  background: #e83416;
}
.btn_pause_and_play a:hover, .btn_pause_and_play_blue a:hover {
  opacity: 0.7;
}
.btn_pause_and_play a::after, .btn_pause_and_play_blue a::after, .btn_pause_and_play a::before, .btn_pause_and_play_blue a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 4px;
  height: 16px;
  background-color: #fff;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.btn_pause_and_play a::after, .btn_pause_and_play_blue a::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.btn_pause_and_play a::before, .btn_pause_and_play_blue a::before {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.btn_pause_and_play.stop a::after, .stop.btn_pause_and_play_blue a::after, .btn_pause_and_play.stop a::before, .stop.btn_pause_and_play_blue a::before {
  background-color: transparent;
}
.btn_pause_and_play.stop a::after, .stop.btn_pause_and_play_blue a::after {
  -webkit-transition: all 0s;
  transition: all 0s;
  -webkit-transform: rotate(45deg) translate(2px, 0px);
          transform: rotate(45deg) translate(2px, 0px);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #fff;
  border-right: 10px solid transparent;
  -webkit-transform: translate(6px, 0);
          transform: translate(6px, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn_pause_and_play.stop a::before, .stop.btn_pause_and_play_blue a::before {
  display: none;
}
@media screen and (max-width: 800px) {
  .btn_pause_and_play, .btn_pause_and_play_blue {
    height: 8vw;
    width: 8vw;
  }
  .btn_pause_and_play a, .btn_pause_and_play_blue a {
    height: 8vw;
    width: 8vw;
  }
  .btn_pause_and_play a::after, .btn_pause_and_play_blue a::after, .btn_pause_and_play a::before, .btn_pause_and_play_blue a::before {
    width: 1vw;
    height: 3.2vw;
  }
  .btn_pause_and_play a::after, .btn_pause_and_play_blue a::after {
    -webkit-transform: translateX(1vw);
            transform: translateX(1vw);
  }
  .btn_pause_and_play a::before, .btn_pause_and_play_blue a::before {
    -webkit-transform: translateX(-1vw);
            transform: translateX(-1vw);
  }
  .btn_pause_and_play.stop a::after, .stop.btn_pause_and_play_blue a::after {
    -webkit-transform: rotate(45deg) translate(0.5vw, 0px);
            transform: rotate(45deg) translate(0.5vw, 0px);
    width: 4vw;
    height: 4vw;
    border-top: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 2.5vw solid #fff;
    border-right: 2.5vw solid transparent;
    -webkit-transform: translate(1.5vw, 0);
            transform: translate(1.5vw, 0);
  }
  .btn_pause_and_play.stop a::before, .stop.btn_pause_and_play_blue a::before {
    display: none;
  }
}

/*-------------------------------------------------------------
		一時停止　/　再生（blue）
-------------------------------------------------------------*/
.btn_pause_and_play_blue a {
  background: #1977ff;
}
/*===============================================================

  section_jcs

===============================================================*/
.section_jcs {
  background: #12142f url(../images/jcs/bg.png) no-repeat top 5% center/contain;
  /*-------------------------------------------------------------
    subarea_wrp	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    paramount	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    telasa	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    bnr_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    btn_2lines	
  -------------------------------------------------------------*/
}
.section_jcs .headline .s {
  font-size: 33px;
  line-height: 2;
}
.section_jcs .subhead_jcs {
  padding-bottom: 30px;
}
.section_jcs .subhead_jcs .name {
  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;
  gap: 10px;
}
.section_jcs .subhead_jcs .name img {
  width: 350px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.section_jcs .subhead_jcs .name .link {
  width: 30px;
  height: 30px;
}
.section_jcs .subhead_jcs .name .link a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/jcs/icon_question.svg) no-repeat center/contain;
}
.section_jcs .subhead_jcs .name .link a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .section_jcs {
    background: #12142f url(../images/jcs/bg.png) no-repeat top 15% center/200% auto;
  }
  .section_jcs .headline .title .s {
    font-size: 4vw;
    padding-bottom: 1vw;
  }
  .section_jcs .subhead_jcs {
    padding-bottom: 2vw;
  }
  .section_jcs .subhead_jcs .name {
    gap: 2vw;
  }
  .section_jcs .subhead_jcs .name img {
    width: 50vw;
    -webkit-transform: translateY(0.5vw);
            transform: translateY(0.5vw);
  }
  .section_jcs .subhead_jcs .name .link {
    width: 5vw;
    height: 5vw;
  }
}
.section_jcs .subarea_wrp {
  color: #fff;
  padding: 50px 0 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(47, 3, 116, 0.7)), color-stop(40%, #08137e), to(#08137e));
  background: linear-gradient(to bottom, rgba(47, 3, 116, 0.7), #08137e 40%, #08137e);
}
.section_jcs .subarea_wrp .head {
  font-size: 44px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
.section_jcs .subarea_wrp .subhead {
  width: calc(100% - 100px);
  margin: 0 auto;
  margin-top: 50px;
  padding: 50px 0;
  background: #12142f;
}
.section_jcs .subarea_wrp .subhead.subhead_telasa {
  background: -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(transparent));
  background: linear-gradient(to bottom, #1a1a1a, transparent);
}
.section_jcs .subarea_wrp .subhead.subhead_paramount {
  background: -webkit-gradient(linear, left top, left bottom, from(#0064ff), to(transparent));
  background: linear-gradient(to bottom, #0064ff, transparent);
}
.section_jcs .subarea_wrp .subhead .name {
  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;
  gap: 10px;
  /* font-size: 51px;
  line-height: 1;
  text-align: center; */
}
.section_jcs .subarea_wrp .subhead .name .logo {
  width: 200px;
}
.section_jcs .subarea_wrp .subhead .name .logo_paramount {
  width: 270px;
}
.section_jcs .subarea_wrp .subhead .name .link {
  width: 30px;
  height: 30px;
}
.section_jcs .subarea_wrp .subhead .name .link a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/jcs/icon_question.svg) no-repeat center/contain;
}
.section_jcs .subarea_wrp .subhead .name .link a:hover {
  opacity: 0.7;
}
.section_jcs .subarea_wrp .subhead p {
  font-size: 24px;
  text-align: center;
  margin-top: 30px;
}
.section_jcs .subarea_wrp .telasa + .subhead {
  margin-top: 100px;
}
@media screen and (max-width: 1030px) {
  .section_jcs .subarea_wrp .subhead {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 800px) {
  .section_jcs .subarea_wrp {
    padding: 4vw 0 6vw;
  }
  .section_jcs .subarea_wrp .head {
    font-size: 5.5vw;
  }
  .section_jcs .subarea_wrp .subhead {
    width: calc(100% - 10vw);
    margin-top: 10vw;
    padding: 5vw 0;
  }
  .section_jcs .subarea_wrp .subhead .name {
    gap: 2vw;
  }
  .section_jcs .subarea_wrp .subhead .name .logo {
    width: 20vw;
  }
  .section_jcs .subarea_wrp .subhead .name .logo_paramount {
    width: 32.4vw;
  }
  .section_jcs .subarea_wrp .subhead .name .link {
    width: 5vw;
    height: 5vw;
  }
  .section_jcs .subarea_wrp .subhead p {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  .section_jcs .subarea_wrp .telasa + .subhead {
    margin-top: 10vw;
  }
}
.section_jcs .paramount, .section_jcs .telasa {
  position: relative;
  padding-bottom: 60px;
}
.section_jcs .paramount .slick_slider, .section_jcs .telasa .slick_slider {
  min-height: 269px;
}
.section_jcs .paramount .slick_slider .slick-list, .section_jcs .telasa .slick_slider .slick-list {
  position: relative;
}
.section_jcs .paramount .slick_slider .slick-list:before, .section_jcs .telasa .slick_slider .slick-list:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(transparent), to(#08137e));
  background: linear-gradient(to left, transparent, #08137e);
}
.section_jcs .paramount .slick_slider .slick-list:after, .section_jcs .telasa .slick_slider .slick-list:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#08137e));
  background: linear-gradient(to right, transparent, #08137e);
}
.section_jcs .paramount .slick_slider .item, .section_jcs .telasa .slick_slider .item {
  position: relative;
  z-index: 1;
  width: 384px;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
}
.section_jcs .paramount .slick_slider .item a, .section_jcs .telasa .slick_slider .item a {
  display: block;
}
.section_jcs .paramount .slick_slider .item a:hover, .section_jcs .telasa .slick_slider .item a:hover {
  opacity: 0.7;
}
.section_jcs .paramount .slick_slider .item .head, .section_jcs .telasa .slick_slider .item .head,
.section_jcs .paramount .slick_slider .item .box,
.section_jcs .telasa .slick_slider .item .box,
.section_jcs .paramount .slick_slider .item .copyright,
.section_jcs .telasa .slick_slider .item .copyright,
.section_jcs .paramount .slick_slider .item .btn,
.section_jcs .telasa .slick_slider .item .btn {
  display: none;
}
.section_jcs .paramount .head, .section_jcs .telasa .head {
  font-size: 38px;
  text-align: center;
  margin-top: 40px;
}
.section_jcs .paramount p, .section_jcs .telasa p {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .section_jcs .paramount, .section_jcs .telasa {
    padding-bottom: 12vw;
  }
  .section_jcs .paramount .slick_slider, .section_jcs .telasa .slick_slider {
    min-height: 30vw;
  }
  .section_jcs .paramount .slick_slider .slick-list:before, .section_jcs .telasa .slick_slider .slick-list:before {
    width: 15%;
  }
  .section_jcs .paramount .slick_slider .slick-list:after, .section_jcs .telasa .slick_slider .slick-list:after {
    width: 15%;
  }
  .section_jcs .paramount .slick_slider .item, .section_jcs .telasa .slick_slider .item {
    width: 40vw;
    margin: 0 1.5vw;
  }
  .section_jcs .paramount .head, .section_jcs .telasa .head {
    font-size: 4vw;
    margin-top: 6vw;
  }
  .section_jcs .paramount p, .section_jcs .telasa p {
    text-align: center;
    margin-top: 2vw;
  }
}
.section_jcs .bnr_block {
  width: 64%;
  margin: auto;
}
.section_jcs .bnr_block .link {
  display: block;
}
.section_jcs .bnr_block .link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1030px) {
  .section_jcs .bnr_block {
    width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .section_jcs .bnr_block {
    width: 90%;
  }
}
.section_jcs .btn_2lines {
  width: 410px;
  margin: 0 auto;
}
* + .section_jcs .btn_2lines {
  margin-top: 40px;
}
.section_jcs .btn_2lines a {
  position: relative;
  display: block;
  background: #1b1c26;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  background: -webkit-gradient(linear, left top, right top, from(#e83416), to(#ffd5ce));
  background: linear-gradient(to right, #e83416, #ffd5ce);
  border-radius: 50px;
}
.section_jcs .btn_2lines a .txt {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
.section_jcs .btn_2lines a .s {
  display: block;
  font-size: 21px;
  font-weight: 500;
  padding-bottom: 5px;
}
.section_jcs .btn_2lines a:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #1b1c26;
  border-radius: 48px;
}
.section_jcs .btn_2lines a:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  left: auto;
  right: 30px;
  margin: auto;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section_jcs .btn_2lines a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .section_jcs .btn_2lines {
    width: 65vw;
    margin: 0 auto;
  }
  * + .section_jcs .btn_2lines {
    margin-top: 4vw;
  }
  .section_jcs .btn_2lines a {
    padding: 4vw 0;
    border-radius: calc(8.7vw + 2px);
  }
  .section_jcs .btn_2lines a .txt {
    font-size: 4vw;
  }
  .section_jcs .btn_2lines a .s {
    font-size: 3vw;
    padding-bottom: 1vw;
  }
  .section_jcs .btn_2lines a:before {
    border-radius: calc(8.7vw + 4px);
  }
  .section_jcs .btn_2lines a:after {
    width: 1.5vw;
    height: 1.5vw;
    right: 5vw;
  }
}

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

    js_jcomstream_recommend_slider

===============================================================*/
.js_jcomstream_recommend_slider {
  margin: 0 calc(50% - 50vw) 0;
  min-height: 454px;
}
.js_jcomstream_recommend_slider .slick_slider .slide .box {
  display: none;
}
@media screen and (max-width: 800px) {
  .js_jcomstream_recommend_slider {
    min-height: 47vw;
  }
}

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

	smooth_slider

===============================================================*/
.smooth_slider {
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  /* ガター */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  smooth_slider ここまで
     -------------------------------------------------------------*/
}
.smooth_slider .slider {
  position: relative;
  height: auto !important;
  opacity: 0;
}
.smooth_slider .slide {
  overflow: hidden;
  width: 386px;
  position: relative;
  margin: 0 10px;
}
.smooth_slider .slide a {
  display: block;
  position: relative;
  z-index: 1;
  color: #12142f;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: #D4E0FF;
}
.smooth_slider .slide a:hover {
  opacity: 0.7;
}
.smooth_slider .slide .head {
  display: none;
}
.smooth_slider .slide .box {
  padding: 15px;
}
.smooth_slider .slide .box .ch_genre {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  direction: ltr;
}
.smooth_slider .slide .box .date {
  display: none;
}
.smooth_slider .slide .info,
.smooth_slider .slide .copyright,
.smooth_slider .slide .btn {
  display: none;
}
.smooth_slider .slide.item_gra a {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#f53a26), to(#0963f9));
  background: linear-gradient(to right, #f53a26, #0963f9);
}
@media screen and (max-width: 800px) {
  .smooth_slider .slide {
    width: 40vw;
    margin: 0 1.5vw;
  }
  .smooth_slider .slide .box {
    padding: 2vw;
  }
  .smooth_slider .slide .box .ch_genre {
    font-size: 3.5vw;
  }
}

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

	front_slider

===============================================================*/
.front_slider {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 20px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.front_slider:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(transparent), to(#12142f));
  background: linear-gradient(to left, transparent, #12142f);
}
.front_slider:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#12142f));
  background: linear-gradient(to right, transparent, #12142f);
}
.front_slider .sub_slider + .sub_slider {
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .front_slider {
    margin-top: 3vw;
  }
  .front_slider:before {
    width: 15%;
  }
  .front_slider:after {
    width: 15%;
  }
  .front_slider .sub_slider + .sub_slider {
    margin-top: 3vw;
  }
}

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

    modal

===============================================================*/
.this_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100vh;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      modal_bg	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      modal_container	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      modal_width	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      modal_width_narrow	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      modal_content	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      modal_body	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      modal_close	
  -------------------------------------------------------------*/
  /*===============================================================
      //	modal
  ===============================================================*/
}
.modal_active .this_modal {
  z-index: 99999;
  pointer-events: inherit;
  opacity: 1;
}
.this_modal .modal_bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99999;
  width: 30px;
  height: 30px;
  width: 100%;
  height: 100vh;
  width: 100%;
  height: 100vh;
  border-radius: 0%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_active .this_modal .modal_bg {
  width: 100%;
  height: 100vh;
  border-radius: 0;
  background-color: black;
}
.this_modal .modal_container {
  position: relative;
  z-index: 100000;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_active .this_modal .modal_container {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 1030px) {
  .this_modal .modal_container {
    width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 800px) {
  .this_modal .modal_container {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
.this_modal .modal_width {
  max-width: 900px;
  min-width: 900px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 1000px) {
  .this_modal .modal_width {
    max-width: inherit;
    min-width: inherit;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .this_modal .modal_width {
    max-width: inherit;
    min-width: inherit;
  }
}
.this_modal .modal_width_narrow {
  max-width: 660px;
  min-width: 660px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 1000px) {
  .this_modal .modal_width_narrow {
    max-width: inherit;
    min-width: inherit;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .this_modal .modal_width_narrow {
    max-width: inherit;
    min-width: inherit;
  }
}
.this_modal .modal_content {
  position: relative;
  z-index: -1;
  background: #12142f;
  opacity: 0;
  position: absolute;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.this_modal .modal_content.current {
  z-index: 1;
  opacity: 1;
  position: relative;
}
.this_modal .modal_body {
  padding: 50px;
  height: auto;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .this_modal .modal_body {
    padding: 5vw;
    max-height: calc(100vh - 20vw);
  }
}
.this_modal .modal_close {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.this_modal .modal_close a {
  display: block;
  width: 45px;
  height: 45px;
  position: relative;
}
.this_modal .modal_close a:hover {
  opacity: 0.7;
}
.this_modal .modal_close a::after,
.this_modal .modal_close a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 36px;
  height: 1px;
  background-color: #fff;
}
.this_modal .modal_close a::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.this_modal .modal_close a::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .this_modal .modal_close {
    width: 10vw;
    height: 10vw;
    top: 0;
    right: 0;
    border-radius: 10vw;
  }
  .this_modal .modal_close a {
    width: 10vw;
    height: 10vw;
  }
  .this_modal .modal_close a::after,
  .this_modal .modal_close a::before {
    width: 8vw;
  }
}

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

	modal_programdetail

===============================================================*/
.modal_programdetail {
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #08137e !important;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	title_block	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	modal_content	
  -------------------------------------------------------------*/
  /*===============================================================
  	//	modal_programdetail
  ===============================================================*/
}
.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: 800px) {
  .modal_programdetail {
    width: 100vw !important;
  }
  .modal_programdetail .modal_close {
    right: 0vw;
  }
  .modal_programdetail .slide_haslink a:hover {
    -webkit-transform: translateY(-2vw);
            transform: translateY(-2vw);
  }
}
.modal_programdetail .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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: url(../images/modal/txtimg_pickup.svg) no-repeat top center/450px auto;
  height: 100px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.modal_programdetail .title_block .title {
  width: 200px;
  color: #1977ff;
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  padding: 5px 0;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 800px) {
  .modal_programdetail .title_block {
    background: url(../images/modal/txtimg_pickup.svg) no-repeat top center/67.5vw auto;
    height: 15vw;
  }
  .modal_programdetail .title_block .title {
    width: 30vw;
    font-size: 4vw;
    line-height: 1;
    padding: 1.5vw 0;
    border-radius: 3.5vw;
  }
}
.modal_programdetail .modal_body {
  padding: 50px 0 !important;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .modal_programdetail .modal_body {
    padding: 5vw 0 !important;
  }
}

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

	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 */
  /*-------------------------------------------------------------
    slide	中身
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	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 {
  width: 600px;
  margin: 0 20px;
  position: relative;
  border-radius: 0;
  pointer-events: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.program_detail_modal_slider .slider .slide a {
  text-decoration: none;
}
.program_detail_modal_slider .slider .slide img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .program_detail_modal_slider {
    margin-top: 4vw;
  }
  .program_detail_modal_slider .slider {
    height: auto !important;
  }
  .program_detail_modal_slider .slider .slide {
    width: 80vw;
    margin: 0 2vw;
    height: auto;
  }
}
.program_detail_modal_slider .slider .pager {
  position: absolute;
  top: 138.5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  z-index: 5;
}
.program_detail_modal_slider .slider .prev {
  -webkit-transform: translateX(-320px);
          transform: translateX(-320px);
}
.program_detail_modal_slider .slider .next {
  -webkit-transform: translateX(320px);
          transform: translateX(320px);
}
@media screen and (max-width: 800px) {
  .program_detail_modal_slider .slider .pager {
    top: 17.5vw;
    width: 10vw;
    height: 10vw;
  }
  .program_detail_modal_slider .slider .prev {
    -webkit-transform: translateX(-42vw);
            transform: translateX(-42vw);
  }
  .program_detail_modal_slider .slider .next {
    -webkit-transform: translateX(42vw);
            transform: translateX(42vw);
  }
}
.program_detail_modal_slider .slider .pager a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #fff;
  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: 0.7;
}
.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 #1977ff;
  border-bottom: solid 2px #1977ff;
  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: 800px) {
  .program_detail_modal_slider .slider .pager a {
    width: 10vw;
    height: 10vw;
  }
  .program_detail_modal_slider .slider .pager a:after {
    border-right: solid 2px #1977ff;
    border-bottom: solid 2px #1977ff;
    width: 2vw;
    height: 2vw;
  }
}
.program_detail_modal_slider .slide {
  margin-top: 20px;
}
.program_detail_modal_slider .slide a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.program_detail_modal_slider .slide .thumb {
  overflow: hidden;
  border-radius: 20px;
  /* img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  } */
}
.program_detail_modal_slider .slide .head {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
  margin-top: 20px;
  /* display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 72.8px; */
}
.program_detail_modal_slider .slide .box {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  gap: 20px;
}
.program_detail_modal_slider .slide .box .ch_genre {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  padding: 10px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#317EFF), to(#8236FF));
  background: linear-gradient(to right, #317EFF, #8236FF);
}
.program_detail_modal_slider .slide .box .tag {
  position: relative;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 9.5px 10px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#317EFF), to(#8236FF));
  background: linear-gradient(to right, #317EFF, #8236FF);
}
.program_detail_modal_slider .slide .box .tag span {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
.program_detail_modal_slider .slide .box .tag:after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: auto;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 10px;
  background: #08137e;
}
.program_detail_modal_slider .slide .box .date {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}
.program_detail_modal_slider .slide .info {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 51.2px;
}
.program_detail_modal_slider .slide .copyright {
  color: #BEBEBE;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 10px;
}
.program_detail_modal_slider .slide .btn {
  position: relative;
  display: block;
  text-align: center;
  padding: 10px 0;
  background: #fff;
  border-radius: 20px;
  width: 160px;
  margin-top: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.program_detail_modal_slider .slide .btn:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: auto;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 10px;
  background: #08137e;
  border-radius: 20px;
}
.program_detail_modal_slider .slide .btn:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  top: 0;
  bottom: 0;
  left: auto;
  right: 10px;
  margin: auto;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.program_detail_modal_slider .slide .btn span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
}
.program_detail_modal_slider .slide a:hover .btn {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .program_detail_modal_slider .slide {
    margin-top: 4vw;
  }
  .program_detail_modal_slider .slide .thumb {
    border-radius: 2vw;
  }
  .program_detail_modal_slider .slide .head {
    font-size: 4.5vw;
  }
  .program_detail_modal_slider .slide .box {
    gap: 2vw;
    margin-top: 2vw;
  }
  .program_detail_modal_slider .slide .box .ch_genre {
    font-size: 3vw;
    line-height: 1;
    padding: 1vw 2vw;
    border-radius: 5px;
  }
  .program_detail_modal_slider .slide .box .tag {
    padding: calc(1vw - 1px) 2vw;
    border-radius: 5px;
  }
  .program_detail_modal_slider .slide .box .tag span {
    font-size: 3vw;
    line-height: 1;
  }
  .program_detail_modal_slider .slide .box .tag:after {
    border-radius: 5px;
  }
  .program_detail_modal_slider .slide .box .date {
    font-size: 3vw;
    line-height: 1;
  }
  .program_detail_modal_slider .slide .info {
    font-size: 3vw;
    margin-top: 2vw;
    height: 9.6vw;
  }
  .program_detail_modal_slider .slide .copyright {
    font-size: 2.5vw;
    margin-top: 2vw;
  }
  .program_detail_modal_slider .slide .btn {
    width: 40%;
    margin-top: 4vw;
    padding: 2vw 0;
    border-radius: 10vw;
  }
  .program_detail_modal_slider .slide .btn span {
    font-size: 3vw;
    line-height: 1;
  }
  .program_detail_modal_slider .slide .btn:before {
    border-radius: 4vw;
  }
  .program_detail_modal_slider .slide .btn:after {
    width: 1vw;
    height: 1vw;
    right: 2vw;
  }
}
.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: 800px) {
  .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_programdetail_telasa	
-------------------------------------------------------------*/
.modal_programdetail_telasa {
  background: #101331 !important;
}
.modal_programdetail_telasa .slider .pager a {
  background-color: #e83416;
}
.modal_programdetail_telasa .slider .pager a:after {
  border-color: #fff;
}
.modal_programdetail_telasa .title_block .title {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#E83416), to(#B10404));
  background: linear-gradient(to right, #E83416, #B10404);
}
.modal_programdetail_telasa .slide .box .ch_genre {
  background: -webkit-gradient(linear, left top, right top, from(#CF31FF), to(#C6006D));
  background: linear-gradient(to right, #CF31FF, #C6006D);
}
.modal_programdetail_telasa .slide .box .tag {
  background: -webkit-gradient(linear, left top, right top, from(#CF31FF), to(#C6006D));
  background: linear-gradient(to right, #CF31FF, #C6006D);
}
.modal_programdetail_telasa .slide .box .tag:after {
  background: #101331;
}
.modal_programdetail_telasa .slide .btn {
  background: -webkit-gradient(linear, left top, right top, from(#f53a26), to(#0963f9));
  background: linear-gradient(to right, #f53a26, #0963f9);
}
.modal_programdetail_telasa .slide .btn:before {
  background: #101331;
}
/*-------------------------------------------------------------
  modal_programdetail_paramount	
-------------------------------------------------------------*/
.modal_programdetail_paramount {
  background: #101331 !important;
}
.modal_programdetail_paramount .slider .pager a {
  background-color: #1977ff;
}
.modal_programdetail_paramount .slider .pager a:after {
  border-color: #fff;
}
.modal_programdetail_paramount .title_block .title {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1322B9), to(#524AF0));
  background: linear-gradient(to right, #1322B9, #524AF0);
}
.modal_programdetail_paramount .slide .box .tag:after {
  background: #101331;
}
.modal_programdetail_paramount .slide .btn {
  background: -webkit-gradient(linear, left top, right top, from(#f53a26), to(#0963f9));
  background: linear-gradient(to right, #f53a26, #0963f9);
}
.modal_programdetail_paramount .slide .btn:before {
  background: #101331;
}
/*===============================================================

    js_popup_tips

===============================================================*/
.js_popup_tips {
  /* display: inline-block;
  width: 1em;
  height: 1em;
  border: solid 1px $c_white;
  border-radius: 1em;
  margin: 0;
  vertical-align: middle;
  position: relative;
  text-align: center;
  transform: translate(0px, -0.15em);
  margin-left: 0.2em;
  cursor: pointer;
  transition: all 0.3s;

  &:hover {
    opacity: 0.7;
  }

  &::after {
    content: "?";
    color: $c_white;
    font-size: 70%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: bold;
    transform: translateY(-0.2em);
  } */
}
/*===============================================================

    js_popup_tips_dialogs

===============================================================*/
.js_popup_tips_dialogs dialog {
  border: none;
  border-radius: 8px;
  padding: 50px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: auto;
  max-width: 800px;
  text-align: center;
  background-color: #000;
  border: solid 1px #ffce00;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}
.js_popup_tips_dialogs .txt {
  text-align: left;
}
.js_popup_tips_dialogs .txt .title {
  font-size: 30px;
  font-weight: 700;
  color: #ffce00;
}
.js_popup_tips_dialogs .txt * + .title {
  margin-top: 1em;
}
.js_popup_tips_dialogs .txt .subtitle {
  font-size: 18px;
}
.js_popup_tips_dialogs .txt p {
  font-size: 16px;
  margin-top: 0.5em;
  opacity: 0.8;
}
.js_popup_tips_dialogs .txt .caption {
  font-size: 12px;
  text-align: left;
  margin-top: 1em;
}
.js_popup_tips_dialogs .js_close_modal {
  display: inline-block;
  min-width: 180px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  background-color: #252525;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: solid 1px #333;
  border-radius: 5px;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.js_popup_tips_dialogs .js_close_modal:hover {
  border: solid 1px #444;
}
.js_popup_tips_dialogs .modal-dialog {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}
.js_popup_tips_dialogs .modal-dialog.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}
.js_popup_tips_dialogs .modal-dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.js_popup_tips_dialogs .modal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 800px) {
  .js_popup_tips_dialogs dialog {
    padding: 5vw;
    margin: auto 3vw;
  }
  .js_popup_tips_dialogs .txt .title {
    font-size: 4.5vw;
  }
  .js_popup_tips_dialogs .txt * + .title {
    margin-top: 1em;
  }
  .js_popup_tips_dialogs .txt .subtitle {
    font-size: 3.5vw;
  }
  .js_popup_tips_dialogs .txt p {
    font-size: 3vw;
  }
  .js_popup_tips_dialogs .txt .caption {
    font-size: 2.5vw;
    margin-top: 1em;
  }
  .js_popup_tips_dialogs .js_close_modal {
    min-width: 50%;
    margin-top: 5vw;
    font-size: 3vw;
    padding: 2vw 0;
    border-radius: 5px;
  }
}/*# sourceMappingURL=style.css.map */