<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--myColor01 : #252525;
	--myColor02 : #ff6e79;
	--myBasePX_XL : 80px;
	--myBasePX_L : 48px;
	--myBasePX_M : 32px;
	--myBasePX_S : 24px;
}
@media screen and (max-width: 767px) {
	:root {
		--myBasePX_XL : 7vw;
		--myBasePX_L : 5vw;
		--myBasePX_M : 3.5vw;
		--myBasePX_S : 2.5vw;
	}
}
@media screen and (max-width: 479px) {
	:root {
		--myBasePX_XL : 32px;
		--myBasePX_L : 20px;
		--myBasePX_M : 16px;
		--myBasePX_S : 12px;
	}
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	font-size: 20px;
	margin: 0 auto;
    max-width: 1920px;
	color: var(--myColor01);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	background-color: var(--myColor02);
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}

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

#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
  }
@media screen and (max-width: 767px) {
	#page {
		font-size: 18px;
	}
}
@media screen and (max-width: 479px) {
	#page {
		font-size: 16px;
	}
}

.serif {
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
}
.arial {
	font-family: Arial;
}
.font_kosugimaru {
	font-family: 'Kosugi Maru',sans-serif;
}
.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.pc4,
.flex.pc3,
.flex.pc2 {
	column-gap: 3%;
	justify-content: center;
}
.flex.pc4 &gt; div {
	width: calc(calc(100% - 3% * 3) / 4);
}
.flex.pc4 &gt; div:nth-child(n + 5) {
	margin-top: 3%;
}
.flex.pc3 &gt; div {
	width: calc(calc(100% - 3% * 2) / 3);
}
.flex.pc3 &gt; div:nth-child(n + 4) {
	margin-top: 3%;
}
.flex.pc2 &gt; div {
	width: calc(calc(100% - 3% * 1) / 2);
}
.flex.pc2 &gt; div:nth-child(n + 3) {
	margin-top: 3%;
}
@media screen and (max-width: 1279px) {
	.flex.pc3 &gt; div {
		width: calc(calc(100% - 3% * 1) / 2);
	}
	.topics_item:nth-child(n + 3) {
		margin-top: var(--myBasePX_L);
	}
}
@media screen and (max-width: 999px) {
	.flex.pc4 &gt; div {
		width: calc(calc(100% - 3% * 2) / 3);
	}
	.flex.pc4 &gt; div:nth-child(n + 4) {
		margin-top: 3%;
	}
}
@media screen and (max-width: 899px) {
	.flex.pc3 &gt; div {
		width: 100%;
	}
	.topics_item:nth-child(n + 2) {
		margin-top: var(--myBasePX_L);
	}
	.icon_check {
		width: 14vw;
	}
}
@media screen and (max-width: 767px) {
	.flex.pc4 &gt; div {
		width: calc(calc(100% - 3% * 1) / 2);
	}
	.flex.pc4 &gt; div:nth-child(n + 3) {
		margin-top: 3%;
	}
}

.inner_wrap {
	padding: 0 var(--myBasePX_L);
	margin: 0 auto;
}
.pd_tb {
	padding-top: var(--myBasePX_XL);
	padding-bottom: var(--myBasePX_XL);
}
.pd_t {
	padding-top: var(--myBasePX_XL);
}
.pd_b {
	padding-bottom: var(--myBasePX_XL);
}
.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}

.block_title {
	font-size: 1.4em;
	font-weight: bold;
	text-align: center;
}
.block_read p {
	margin: 0.8me auto;
}
.block_read p:not(.demo_btn) {
	padding-left: 1em;
	text-indent: -1em;
}
.ib {
	font-size: inherit !important;
	display: inline-block;
}
.btn_wrap {
	text-align: center;
}
.btn {
	font-size: 1.2em;
	color: #fff;
	font-weight: bold;
	padding: 0.8em var(--myBasePX_S);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: 8px;
	transition: all 0.3s;
	display: inline-block;
}
.btn:hover {
	box-shadow: unset !important;
}
#btn_pagetop {
    position: fixed;
    font-size: 77%;
    z-index: 500;
}
#btn_pagetop a img {
  width: 80px;
  display: block;
}
#page_top:hover {
	cursor: pointer;
}
.pc {
	display: block;
}
@media screen and (min-width: 768px) {
    #btn_pagetop {
        bottom: 0;
        right: 20px;
    }
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.mob {
		display: none;
	}	
}
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
    #btn_pagetop {
        bottom: 0;
        right: 5px;
    }
    #btn_pagetop a img {
        width: 10vw;
        height: auto;
    }
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 900px;
    margin: 0 auto var(--myBasePX_XL);
	box-shadow: 0 0 var(--myBasePX_S) var(--myColor05);
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
	border: solid 3px;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.tver_wrap {
	margin: 0 auto var(--myBasePX_XL);
}
.bnr_tver {
	margin: 0 auto;
	max-width: 800px;
	border: solid 2px #fff;
	box-shadow: 0 0 var(--myBasePX_S) var(--myColor05);
}
.tver_wrap .limit_text {
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	margin: 12px auto 0;
	text-shadow: 0 0 0.2em #e8e1b9, 0 0 0.2em #e8e1b9, 0 0 0.3em #e8e1b9, 0 0 0.3em #e8e1b9;
}
.tver_wrap .limit_text small {
	font-size: 16px;
	font-weight: normal;
}

/* =============================================================
    page用css
============================================*/
.sec_wrap {
	padding-top: var(--myBasePX_XL);
	padding-bottom: var(--myBasePX_XL);
}
.sec_title {
	font-size: 1.9em;
	font-weight: bold;
	color: #fff;
	margin: 0 1.5em;
	padding: 0.4em 0.8em;
	position: relative;
	line-height: 1;
	display: inline-block;
	background-color: #0087b8;
    border: solid 3px #fff;
	border-radius: 0.25em;
	/* text-shadow: 2px 0 1px #d13b46, 0 2px 1px #d13b46, 2px 0 1px #d13b46, 0 2px 1px #d13b46, 2px 0 1px #d13b46, 0 2px 1px #d13b46, 2px 0 1px #d13b46, 0 2px 1px #d13b46; */
}
.sec_title::before,
.sec_title::after {
	position: absolute;
	content: '\f192';
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
	font-size: clamp(16px, 2.2vw, 22px);
	top: 60%;
	transform: translateY(-50%);
}
.sec_title::before {
	left: -1.5em;
}
.sec_title::after {
	right: -1.5em;
}
/* .sec_title i:first-child {
	margin-right: var(--myBasePX_S);
}
.sec_title i:last-child {
	margin-left: var(--myBasePX_S);
} */

@media screen and (max-width: 767px) {
	.sec_title {
		font-size: 1.5em;
	}
}
@media screen and (max-width: 479px) {
	.sec_title {
		font-size: 1.2em;
		border: solid 2px #fff;
	}
}

/* =============================================================
    キービジュアル
============================================*/
#header {
	background: url(../images/kv_bg.jpg) center center/cover no-repeat;
}
.kv_logo_wrap {
	font-size: 0;
	width: 78vw;
	max-width: 1084px;
	margin: 0 auto;
	position: relative;
    z-index: 100;
}
.kv_logo {
	background: url(../images/logo.png) center center/contain no-repeat;
	padding-top: calc(521 / 1084 * 100%);
}
.slide_top {
	margin-bottom: -120px;
}
.slide_top .swiper {
	transform: rotate(180deg);
}
.slide_top .swiper-slide img {
	transform: rotate(180deg);
	width: 101% !important;
}
.slide_btm {
	margin-top: var(--myBasePX_M);
}
.kv_stripe {
	display: block;
}
@media screen and (max-width: 1919px) {
	.slide_top {
		margin-bottom: -6vw;
	}
}
@media screen and (max-width: 767px) {
	.slide_top {
		margin-bottom: -8vw;
	}
}

/* =============================================================
    放送日時
============================================*/
.oadate_wrap {
	text-align: center;
	background: url(../images/bg_oadate.jpg) center bottom/contain no-repeat,
		url(../images/result_bg.png) center top/100% no-repeat #252525;
}
.oadate {
	font-size: clamp(24px, 4vw, 58px);
	font-weight: bold;
	color: #fff;
	line-height: 1.1;
	padding: 0.8em 0;
	/* text-shadow: 0 0 0.2em #000, 0 0 0.2em #000, 0 0 0.2em #000; */
}
.oadate em {
	font-size: 1.5em;
	background: rgb(251,197,0);
	background-image: linear-gradient(0deg, rgba(251,197,0,1) 25%, rgba(255,238,0,1) 45%, rgba(255,255,255,1) 45%, rgba(245,167,0,1) 85%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}
.result {
	margin: 0 auto;
	padding: var(--myBasePX_XL) 0 var(--myBasePX_L);
	max-width: 1000px;
	border-bottom: dotted 2px #fffccd;
}
@media screen and (max-width: 479px) {
	.oadate_wrap {
		background-size: 130vw;
		background-position-x: right;
	}
}

/* =============================================================
    この番組は
============================================*/
#overview {
	background: url(../images/line_dot01.png) center bottom #000 repeat-x;
	padding: 0 var(--myBasePX_L) var(--myBasePX_L);
	position: relative;
}
#overview .inner_wrap {
	text-align: center;
	background-color: #fff;
}
#overview .sec_read {
	padding-bottom: var(--myBasePX_L);
}
.pr_catch {
	font-size: clamp(20px, 3.4vw, 36px);
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: var(--myBasePX_M);
}
.pr_catch mark {
	background: linear-gradient(transparent 0%, transparent 50%, #fff300 50%, #fff300 100%);
}
#overview .sec_read p {
	font-size: clamp(18px, 2.4vw, 28px);
}
#overview .sec_read p:not(:last-child) {
	margin-bottom: var(--myBasePX_S);
}
.pr_catch em,
#overview .sec_read p em {
	font-size: 1.3em;
	position: relative;
	display: inline-block;
}
#overview .sec_read p em:not(.txt_clip) {
	color: var(--myColor02);
}
#overview .sec_read p em::after {
	position: absolute;
	content: "";
	width: 100%;
	border-top: dotted 4px;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
}
#overview .sec_read .txt_clip {
	font-size: 1.6em;
	background: rgb(251,197,0);
	background-image: linear-gradient(0deg, rgba(251,197,0,1) 0%, rgba(254,255,0,1) 50%, rgba(255,238,0,1) 51%, rgba(251,197,0,1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	filter: drop-shadow(2px 2px 0 #ff6e79);
}
#overview .sec_read .pr {
	font-weight: bold;
}
.ill_mic {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 1399px) {
	#overview {
		background-size: 3.5%;
	}
}
@media screen and (max-width: 767px) {
	.ill_mic {
		width: 9vw;
	}
}
@media screen and (max-width: 479px) {
	#overview {
		background-size: 7%;
	}
	.pr_catch em,
	#overview .sec_read p em {
		font-size: 1.2em;
	}
	#overview .sec_read .txt_clip {
		font-size: 1.4em;
	}
}

/* =============================================================
    出演
============================================*/
#cast {
	text-align: center;
	background: url(../images/bg_cast_top.jpg) center top no-repeat,
		url(../images/bg_cast_btm.jpg) center calc(100% + 1px) no-repeat;
	background-size: 100%;
	position: relative;
	z-index: 100;
}
.mc_wrap {
	margin: var(--myBasePX_L) auto var(--myBasePX_XL);
	max-width: 1100px;
}
.player_wrap {
	margin: var(--myBasePX_L) auto 0;
	max-width: 1750px;
}

/* =============================================================
    ゲスト
============================================*/
#guest {
	text-align: center;
	background: url(../images/bg_cast_top2.jpg) center -1px no-repeat,
		url(../images/bg_cast_btm2.jpg) center bottom no-repeat;
	background-size: 100%;
	position: relative;
	z-index: 100;
}
#guest {
	padding-top: 0;
}
.guest_wrap {
	margin: 0 auto;
	max-width: 1060px;
}
.guest_img {
	margin-top: var(--myBasePX_L) !important;
}

/* =============================================================
    【swiper】ブロック ※スライド
============================================*/
.swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper-wrapper li {
	list-style: none;
}
@keyframes loop-slide {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-100%);
	}
}
.slide-paused:hover .slideshow {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}




</pre></body></html>