@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;700&family=Poppins:wght@500;600&display=swap");

html {
	scroll-behavior: smooth;
}

/* =========================================
   ベース
========================================= */
:root {
	--black: #000000;
	--pl-red: #A01D3F;
	--pl-red-dark: #4E0C1F;
	--pl-red-deep: #95183A;
	--pl-red-bright: #C13556;
}
#fp-wrap {
	background: #EEE;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		Osaka, "メイリオ", "Meiryo", "Lucida Grande", Verdana, "ＭＳ Ｐゴシック",
		sans-serif;
	letter-spacing: 0.15em;
	/*font-feature-settings: "palt";*/
	color: #333;
	line-height: 1.7;
	font-size: 16px;
	overflow: hidden;
}

.center{
	text-align: center;
}
.imgR{
	border-radius: 4px;
	overflow: hidden;
}
.floatLeft{
	float: left;
	margin: 0 20px 60px 0;
}
@media screen and (max-width: 768px) {
	.floatLeft{
		float: none;
		margin: 0 auto 20px;
	}
	.spSmlPhoto{
		width: 60%;
	}
}

/* =========================================
   メインビジュアル
========================================= */
.mainvisual {
	margin:  0 auto;
}
.mainvisual img{
	width: 100%;
}
.l-mainvisual {
	background: var(--pl-red-dark);
	padding: 0px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.l-mainvisual {
		padding: 0;
	}
}

.pl-mv{
	background: url(../img/mvBg.png) center center / cover no-repeat, var(--pl-red-dark);
	padding: 90px 40px 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pl-mv__inner{
	width: 100%;
}
.pl-mv__logo{
	margin: 0 auto;
}
.pl-mv__logo img{
	width: min(58%, 738px);
	height: auto;
}
.pl-mv__credit{
	color: #fff;
	font-weight: 600;
	font-size: 2.4rem;
	letter-spacing: 0.25em;
	margin-top: 1em;
	text-indent: 0.25em;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.1em;
	text-align: center;
	justify-content: center;
}
.pl-mv__credit span{
	font-size: 0.6em;
}
.markX{
	display: inline-block;
	position: relative;
	width: 50px;
	height: 40px;
	background: #000;
	background: none;
}
.markX::before,
.markX::after{
	content:"";
	width: 40px;
	height: 1px;
	background: #fff;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}
.markX::before{
	transform: translate( -50%, -50%) rotate(45deg);
}
.markX::after{
	transform: translate( -50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
	.pl-mv{
		padding: 40px 16px;
	}
	.pl-mv__logo img{
		width: 82%;
	}
	.pl-mv__credit{
		font-size: 1.8rem;
	}
	.markX{
		width: 40px;
		height: 30px;
	}
	.markX::before,
	.markX::after{
		width: 32px;
	}
}

/* =========================================
   放送情報バー
========================================= */
.info-area{
	background: #000;
	padding: 10px 8px;
	text-align: center;
}
.info-area p{
	font-size: 0;
	line-height: 1;
}
.info-area img{
	height: 26px;
	width: auto;
	max-width: 100%;
	vertical-align: middle;
}
@media screen and (max-width: 768px) {
	.info-area{
		padding: 8px 16px;
	}
	.info-area img{
		height: auto;
	}
}

/* =========================================
   ナビゲーション
========================================= */
.l-menu{
 background: var(--pl-red);
}
.menu {
    margin-bottom: 0px;
}

.menu__item{
	position: relative;
}
.menu__item::after{
	content:"";
	display: block;
	width: 1px;
	background: rgba(255, 255, 255, 0.45);
	height: 52px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate( 0, -50%);
}

.menu__item:last-child:after{ display: none;}
.menu--4.menu--sp2 .nav-intro a{ background:  url(../img/nv1.png) center center / auto 49px no-repeat;}
.menu--4.menu--sp2 .nav-story a{ background:  url(../img/nv2.png) center center / auto 49px no-repeat;}
.menu--4.menu--sp2 .nav-caststaff a{ background:  url(../img/nv3.png) center center / auto 49px no-repeat;}
.menu--4.menu--sp2 .nav-chart a{ background:  url(../img/nv4.png) center center / auto 49px no-repeat;}

.comingsoon a{
	opacity: 0.5;
	pointer-events: none;
	cursor: default;
}
.menu__item:not(.is-comingsoon) a:hover {
    opacity: .8;
}
.menu__item.comingsoon:not(.is-comingsoon) a:hover {
    opacity: .5;
}
.comingsoon a:hover{
	opacity: 0.5;
}

@media screen and (max-width: 768px) {
	.menu__item:after{ display: none;}
	.menu--4.menu--sp2 .nav-intro a{ background:  url(../img/nv1.png) center center / auto 40px no-repeat;}
	.menu--4.menu--sp2 .nav-story a{ background:  url(../img/nv2.png) center center / auto 40px no-repeat;}
	.menu--4.menu--sp2 .nav-caststaff a{ background:  url(../img/nv3.png) center center / auto 40px no-repeat;}
	.menu--4.menu--sp2 .nav-chart a{ background:  url(../img/nv4.png) center center / auto 40px no-repeat;}
}

/* =========================================
   レイアウト共通
========================================= */
.l-main{
	max-width: none;
	padding-bottom: 0;
}
.contentInner780{
	max-width: 780px;
	margin: 0 auto;
}
.contentInner840{
	max-width: 840px;
	margin: 0 auto;
}
.contentInner1080{
	max-width: 1080px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.l-main {
		width: 100%;
		padding: 0 0px;
	}
	.contentInner780{
		padding: 0 16px;
	}
	.contentInner840{
		padding: 0 16px;
	}
	.contentInner1080{
		padding: 0 16px;
	}
}

.content__title{
	position: relative;
	padding: 0;
	font-weight: bold;
	background: none;
	line-height: 1.2em;
	text-align: center;
	font-size: 0rem;
}
.content{
    margin: 0px auto 0;
    position: relative;
	padding: 80px 0;
	background: none;
}
@media screen and (max-width: 768px) {
	.content{
		padding: 60px 0;
	}
}

.content__subtitle {
    font-size: 2rem;
	font-family: "Noto Sans JP";
    font-weight: 600;
    color: var(--pl-red);
    border-bottom: 1px solid var(--pl-red);
    margin-bottom: 15px;
    padding-bottom: 10px;
	line-height: 1.4;
	clear: both;
}
@media screen and (max-width: 768px) {
	.content__subtitle {
		font-size: 1.8rem;
	}
}

/* =========================================
   公式SNSリンク
========================================= */
.pl-linkArea{
	padding: 60px 0 0;
    margin-bottom: -20px;
}
.official__account {
	padding: 0px 0px 0px;
	box-shadow: none;
	margin: 0 auto;
  }

  @media screen and (max-width: 768px) {
	.official__account {
	  padding: 0 0px;
	}
  }
  .official__account ul {
	gap: 0 20px;
  }
  .official__account li {
	width: calc((100% - 20px) / 2);
	padding: 0;
	/*box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.1);*/
	margin-bottom: 0;
  }
  .official__account li span{
	display: flex;
	gap: 8px;
  }
  @media screen and (max-width: 768px) {
	.official__account li {
	  width: 100%;
	  margin-bottom: 8px;
	}
	.official__account li span::before {
        width: 36px;
        height: 36px;
		margin-right: 0.5em;
    }
  }
  .official__account li a {
	height: 50px;
	background: #000;
	border: 1px solid #fff;
	color: #fff;
	font-weight: bold;
	border-radius: 6px;
	padding: 1.6rem 1.2rem;
  }
  @media screen and (max-width: 768px) {
	.official__account li a {
	  height: auto;
	  padding: 2.1rem 1.2rem;
	}
  }

/* =========================================
   What's NEW（スライダー）
========================================= */
.pl-whatsnew{
	padding-bottom: 0;
}

  .swiper-container {
	overflow: visible;
  }
  .slider .swiper-prev,
  .slider .swiper-next {
	background: none;
	box-shadow: none;
	border-radius: 0;
  }
  .slider .swiper-prev{
	left: -40px;
	left: 10px;
  }
  .slider .swiper-next {
	right: -40px;
	right: 10px;
  }
  .slider .swiper-prev::before,
  .slider .swiper-next::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border-left: 3px solid #3c3c3c;
	border-bottom: 3px solid #3c3c3c;
	position: absolute;
	top: 50%;
	left: 50%;
  }
  .slider .swiper-prev::before {
	transform: translate(-30%, -50%) rotate(45deg);
  }
  .slider .swiper-next::before {
	transform: translate(-70%, -50%) rotate(225deg);
  }

  .slider .swiper-container {
	width: 90%;
	height: auto;
  }
  .slider .swiper-slide {
	opacity: 0;
	transition: 0.3s;
	background: transparent;
	padding: 0;
  }
  .slider #what-is-new .swiper-slide {
	width: 280px;
	padding: 0px;
	background-color: #fff;
	color: #000;
	/*box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);*/
	height: 300px;
	border-radius: 2px;
	overflow: hidden;
  }
  .slider .swiper-slide-active{
	opacity: 1;
  }
  .slider #what-is-new .swiper-slide-active + .swiper-slide{
	opacity: 1;
  }
  .slider #what-is-new .swiper-slide-active + .swiper-slide + .swiper-slide{
	opacity: 1;
  }
  .slider #what-is-new.swiper-container {
	width: 88%;
	height: auto;
  }
  .slider__update,
  .cx-fujitv-view-feed-carousel-item-date{
	padding: 0 15px;
	font-family: 'poppins';
	margin-top: 10px;
	color: var(--black);
	font-size: 13px;
	letter-spacing: 0.05em;
	font-weight: 500;
  }
  .slider__text,
  .cx-fujitv-view-feed-carousel-item-text{
	padding: 0 15px;
	font-size: 15px;
	color: var(--black);
  }

  .slider__photo{
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #ddd;
  }
  .slider__photo img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50%);
  }

  @media screen and (max-width: 768px) {
	.slider #what-is-new .swiper-slide {
	  height: auto;
	  padding-bottom: 30px;
	}
	.slider .swiper-slide {
	  width: 100%;
	  height: auto;
	  padding-bottom: 30px;
	}
  }

/* =========================================
   Introduction
========================================= */
.pl-intro__photo{
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
}
.pl-intro__photo img{
	width: 100%;
	height: auto;
}
.pl-lead{
	color: var(--pl-red);
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.7;
}
.pl-introText{
	color: #333;
	font-size: 1.4rem;
	line-height: 2.1;
}
@media screen and (max-width: 768px) {
	.pl-lead{
		font-size: 1.9rem;
		line-height: 1.7;
		font-feature-settings: "palt"
	}
	.pl-introText br{
		display: none;
	}
}

/* =========================================
   Cast&Staff
========================================= */
.pl-caststaff{
	background: var(--pl-red-deep);
	color: #fff;
	text-align: center;
}
.pl-cs__block{
	margin-top: 40px;
}
.pl-cs__label{
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-indent: 0.3em;
	margin-bottom: 25px;
}
.pl-cs__name{
	font-size: 2.4rem;
	font-weight: 700;
}
.pl-staffList dt{
	font-size: 1.8rem;
	font-weight: 600;
	opacity: 1;
	margin-bottom: 4px;
}
.pl-staffList dd{
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 50px;
	line-height: 1.6;
}
.pl-staffList dd:last-child{
	margin-bottom: 0;
}
.pl-staffList dd span{
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.9;
	margin-top: 8px;
}
@media screen and (max-width: 768px) {
	.pl-cs__block{
		margin-top: 40px;
	}
	.pl-cs__name{
		font-size: 2.4rem;
	}
	.pl-staffList dd{
		font-size: 2.4rem;
	}
	.pl-staffList dd span br{
		display: none;
	}
}

/* =========================================
   その他
========================================= */
@media print {
	/* 印刷用スタイルはすべてこちらへ */
	img{
	  display: none !important;
	}
  }

  /*バグ修正*/
	.fpWidth,
	.fpWidth #cx_spContentsMain {
		width: 100% !important;
	}
	/*--バグ修正*/
