@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #020004;
	--color_YLW : #fdce05;
	--color_BLU : #053dc7;
	--color_RED : #af0000;
	--fontS : clamp(12px,2.2vw,22px);
	--fontM : clamp(14px,2.8vw,28px);
	--fontL : clamp(16px,4vw,38px);
	--gap_160px : clamp(54px, 24vw, 160px);
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

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: clamp(16px, 2.2vw, 20px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	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.3;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	/* background-color: var(--color_lGRY); */
	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: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
}
.arial {
	font-family: Arial;
}
.font_yusei-magic {
	font-family: "Yusei Magic", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.m-plus-1 {
	font-family: "M PLUS 1", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}
.dela {
    font-family: 'Dela Gothic One', cursive;
    font-weight: 100;
}
.dotgothic {
	font-family: "DotGothic16", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
}
.dela em,
.dotgothic em {
	font-weight: normal !important;
}

.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.red {
	color: var(--color_RED);
}
.blue {
	color: var(--color_BLU);
}
.ylw {
	color: var(--color_YLW);
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1500px;
}
.pd_tb {
	padding-top: var(--gap_80px);
	padding-bottom: var(--gap_80px);
}
.pd_t {
	padding-top: var(--gap_80px);
}
.pd_b {
	padding-bottom: var(--gap_80px);
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flex.col2 {
	gap: var(--gap_32px) 4%;
}
.flex.col2 .flex_item {
	width: calc(96% / 2);
}
.flex.col3 {
	column-gap: 1.5%;
	justify-content: center;
}
.flex.col3 .flex_item {
	width: calc(97% / 3);
}
.flex.col4 {
	column-gap: 2%;
	justify-content: unset;
}
.flex.col4 .flex_item {
	width: calc(94% / 4);
}
.flex.col4 .flex_item:nth-child(n + 5) {
	margin-top: var(--gap_48px);
}
@media screen and (max-width:767px) {
	.flex.col2,
	.flex.col3 {
		justify-content: center;
	}
	.flex.col2 .flex_item {
		width: min(80%, 480px);
	}
	.flex.col3 .flex_item {
		width: min(90%, 480px);
	}
	/* .flex.col2 .flex_item:not(:first-of-type), */
	.flex.col3 .flex_item:not(:first-of-type) {
		margin-top: var(--gap_48px);
	}
	.flex.col4 .flex_item {
		width: calc(96% / 3);
	}
	.flex.col4 .flex_item:nth-child(n + 4) {
        margin-top: var(--gap_48px);
    }
}
@media screen and (max-width:479px) {
	.flex.col4 .flex_item {
		width: calc(98% / 2);
	}
	.flex.col4 .flex_item:nth-child(n + 3) {
        margin-top: var(--gap_48px);
    }
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}

.btn_wrap {
	text-align: center;
}
.btn {
	font-size: 1.4em;
	font-weight: bold;
	padding: 0.8em var(--gap_24px);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	transition: all 0.3s;
	display: inline-block;
}
#btn_pagetop,
#btn_pagetop2 {
	bottom: clamp(8px, 2vw, 16px);
    position: fixed;
    z-index: 1010;
}
#btn_pagetop {
	right: clamp(8px, 2vw, 16px);
}
#btn_pagetop2 {
	left: clamp(8px, 2vw, 16px);
}
#btn_pagetop a,
#btn_pagetop2 a {
	/* font-size: clamp(20px,3.8vw,38px);
	color: var(--color_YLW);
	text-align: center;
	border-radius: var(--gap_16px) 0 0 0;
	background-color: var(--color_BLU); */
	display: block;
}
/* #btn_pagetop a i {
	padding: var(--gap_16px) var(--gap_24px);
} */
#btn_pagetop a img {
  width: clamp(60px, 16vw, 120px);
}
#btn_pagetop2 a img {
    width: clamp(120px, 12vw, 160px);
}
#btn_pagetop2 > i {
	font-size: 1.4em;
	text-shadow: 0 0 0.6vw #e9546b,0 0 0.6vw #e9546b,0 0 0.6vw #e9546b;
	color: #fff;
	display: inline-block;
	cursor: pointer;
	position: relative;
	z-index: 999;
}
#btn_pagetop2 a i {
	font-size: clamp(48px,10vw,98px);
	text-shadow: 0 0 0.8vw #fff,0 0 0.8vw #fff,0 0 0.8vw #fff;
	color: var(--color_RED);
}
.hidden {
	display: none !important;
}

.mob {
	display: none;
}
@media screen and (max-width: 899px) {
	.mob {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* ==================================
    背景fixed　safari対応
============================*/
.page_bg,
.page_bg2 {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, auto, auto, 0);
    z-index: -1;
}
.page_bg::before {
    content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
	/* background: url(/sp/tigers/lib/2026/images/bg_audience.png) center bottom/100% no-repeat,
		url(/sp/tigers/lib/2026/images/bg_ptn.jpg) center top/100% repeat-y; */
	background: url(/sp/tigers/lib/2026/images/bg_ptn.jpg) center top/100% repeat-y;
}
.page_bg2::before {
    content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
	background: url(/sp/tigers/lib/2026/images/bg_audience.png) center bottom/100% no-repeat;
	animation: anime_page_bg2 3s infinite;
}
@keyframes anime_page_bg2 {
	0% {
		filter: blur(0);
		transform: translateY(var(--gap_8px) / 4);
	}
	10% {
		filter: blur(2px);
		transform: translateY(var(--gap_8px) / -4);
	}
	20% {
		filter: blur(0);
		transform: translateY(var(--gap_8px) / 4);
	}
	30% {
		filter: blur(calc(var(--gap_8px) / 4));
		transform: translateY(calc(var(--gap_8px) / -4));
	}
	40% {
		filter: blur(0);
		transform: translateY(calc(var(--gap_8px) / 4));
	}
	50% {
		filter: blur(calc(var(--gap_8px) / 2));
		transform: translateY(calc(var(--gap_8px) / -4));
	}
	60% {
		filter: blur(0);
		transform: translateY(calc(var(--gap_8px) / 4));
	}
	70% {
		filter: blur(calc(var(--gap_8px) / 4));
		transform: translateY(calc(var(--gap_8px) / -4));
	}
	80% {
		filter: blur(0);
		transform: translateY(calc(var(--gap_8px) / 4));
	}
	90% {
		filter: blur(calc(var(--gap_8px) / 4));
		transform: translateY(calc(var(--gap_8px) / -4));
	}
	100% {
		filter: blur(0);
		transform: translateY(calc(var(--gap_8px) / 4));
	}
}

/* .page_bg::after {
	content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFF;
	background: linear-gradient(180deg,transparent 0%, transparent 54%, #ffffff50 55%, transparent 56%, transparent 100%);
	background-size: 200% 200%;
	animation: Grad 3s ease infinite;
}
@keyframes Grad {
    0%{background-position:50% 48%;}
    50%{background-position:50% 52%;}
    100%{background-position:50% 48%;}
} */

@media screen and (max-width: 767px) {
	/* .page_bg::after {
		content: unset;
	} */
}

.cont_close {
    position: relative;
}
.cont_close::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 999;
}

/* =============================================================
      特番ページ用
============================================*/
#page {
	background: url(/sp/tigers/lib/2026/images/kv_bg.png) center top/100% no-repeat;
}

/* =============================================================
      kv キービジュアル
============================================*/
.kv {
	padding: clamp(12px, 5vw, 96px) var(--gap_48px); 
}
.logo_wrap {
	font-size: 0em;
	max-width: 1199px;
	margin: 0 auto;
}
.logo {
	background: url(/sp/tigers/lib/2026/images/logo.png) center center/contain no-repeat;
	padding-top: calc(657 / 1199 * 100%);
	filter: brightness(0.1) drop-shadow(0 0 16px #2a0004);
	animation: anime_logo 2s forwards 1s;
	/* animation-iteration-count: 6; */
}
@keyframes anime_logo {
	0% {
		filter: brightness(0.1) drop-shadow(0 0 16px #2a0004);
	}
	100% {
		filter: brightness(1) drop-shadow(0 0 16px #2a0004);
	}
}

.oa_date_wrap {
	text-align: center;
	background: linear-gradient(90deg,transparent 0%,rgb(0,0,0,100%) 12vw,rgb(0,0,0,100%) 88vw,transparent 100%);
}
.oa_date_wrap .inner_wrap {
	max-width: 100%;
}
.oa_date {
	font-size: clamp(18px, 5vw, 78px);
	font-weight: bold;
	font-style: italic;
	line-height: 1.1;
	color: var(--color_YLW);
	padding: var(--gap_16px) 0 var(--gap_24px);
}
.oa_date em {
	font-style: italic !important;
	line-height: 1.1;
	color: #fff;
}
.oa_date em:not(.nml) {
	font-size: 1.3em;
}

/* =============================================================
      main コンテンツ
============================================*/
.contents {
	overflow: hidden;
}
#intro_wrap {
	padding-top: var(--gap_80px);
}
.intro {
	line-height: 1.5;
	text-align: center;
	text-shadow: 0 0 0.5vw #fff,0 0 0.5vw #fff,0 0 0.5vw #fff,0 0 1vw #fff;
}
.intro * {
	font-weight: bold !important;
}
.intro em {
	font-size: 1.3em;
}
.intro p + p {
	margin-top: var(--gap_16px);
}

.cast_wrap {
	margin: var(--gap_48px) auto 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
    justify-content: center;
}
.live {
	width: min(26vw,274px) !important;
	margin-left: var(--gap_32px);
    top: var(--gap_32px);
	position: absolute;
	z-index: 10;
	animation: anime_live 1s steps(1) infinite;
	/* animation-iteration-count: 6; */
}
@keyframes anime_live {
	0%,100% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.9);
	}
}

.cast {
	width: min(100%,876px) !important;
	position: relative;
	z-index: 100;
}

.intro_btm_wrap {
	text-align: center;
	margin-top: var(--gap_64px);
}
.intro_btm {
	font-size: clamp(16px, 3.8vw, 48px);
	font-weight: bold !important;
	line-height: 1.2;
	text-shadow: 0 0 0.5vw #fff,0 0 0.5vw #fff,0 0 0.5vw #fff,0 0 1vw #fff;
}
.intro_btm em {
	font-size: 1.3em;
	color: var(--color_RED);
	position: relative;
}
.intro_btm * {
	font-weight: bold !important;
}
.intro_btm p + p {
	margin-top: var(--gap_16px);
}
.note_live {
	margin-top: var(--gap_32px);
}
@media screen and (max-width: 479px) {

}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 900px;
    margin: var(--gap_48px) auto 0;
    /* border: var(--color_GRN) 2px solid;
    padding: var(--gap_16px); */
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
	border: solid calc(var(--gap_8px) / 2) var(--color_YLW);
	filter: drop-shadow(0 0 var(--gap_16px) var(--color_RED));
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.jstream-eqPlayer,
.eq-h5_player {
	width: 100% !important;
	height: 100% !important;
}
.jstream-eqPlayer .bl {
	-webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
}
.tvo-video-equipmedia .hl img {
	width: inherit !important;
}

.tver_area {
	text-align: center;
    margin: 0 auto var(--gap_32px);
	padding-bottom: var(--gap_32px);
    width: min(80%, 480px);
	border-bottom: solid 1px var(--color_BLK);
}
.tver_area_head {
	font-size: var(--fontM);
	font-weight: bold;
	text-shadow: 0 0 0.5vw #fff,0 0 0.5vw #fff,0 0 0.5vw #fff,0 0 1vw #fff;
	margin-bottom: var(--gap_24px);
}
.tver_area img {
	width: min(80%,400px) !important;
	filter: drop-shadow(0 0 var(--gap_8px) var(--color_BLK));
}
.tver_info {
	text-shadow: 0 0 0.5vw #fff,0 0 0.5vw #fff,0 0 0.5vw #fff,0 0 1vw #fff;
    margin-bottom: var(--gap_8px);
}
.tver_info em {
	font-weight: bold !important;
}
.tver_info_btm {
	font-size: 0.9em;
	text-shadow: none;
    text-align: center;
    margin: 0 auto var(--gap_16px);
    line-height: 1.2;
}

/* =============================================================
      コンテンツ
============================================*/
#section {
	background: url(/sp/tigers/lib/2026/images/ptn_stripe.jpg) repeat;
	padding: calc(var(--gap_96px) * 2) 0 var(--gap_96px);
}

.sec_wrap:not(:first-of-type) {
	margin-top: var(--gap_96px);
}
.sec_wrap .inner_box {
	margin: 0 auto;
	padding: 0 var(--gap_48px) var(--gap_48px);
	background-color: rgb(255,255,255,80%);
	border: solid calc(var(--gap_8px)/ 2) var(--color_BLK);
	border-radius: var(--gap_16px);
	box-shadow: 0 0 var(--gap_24px) var(--color_RED);
	position: relative;
}
.sec01 .inner_box::before {
	content: "";
	position: absolute;
	top: max(-180px, -18vw);
    right: var(--gap_16px);
    display: inline-block;
    width: clamp(40px, 30vw, 350px);
    height: 100%;
    background: url(/sp/tigers/lib/2026/images/cast_nkok.png) right top / 100% no-repeat;
}
.sec_title {
	padding-bottom: var(--gap_32px);
	margin: 0 auto;
	position: relative;
	z-index: 150;
}
.sec_title img {
	margin-top: calc(clamp(8px, 4vw, 48px) * -1);
}
.title_nkok {
	width: clamp(150px,58vw,698px);
}
.title_interview {
	width: clamp(180px,47vw,624px);
}

.sec_read {
	font-size: var(--fontS);
	text-align: center;
}
.sec_read p + p {
	margin-top: var(--gap_8px);
}
.sec_read p > small {
	line-height: 1.1;
	display: inline-block;
}
.sec_photo {
	margin: var(--gap_32px) auto 0;
	max-width: 1000px;
}

.prg_list {
	text-align: left;
	max-width: max-content;
	margin-inline: auto;
}
.prg_list li {
	font-size: var(--fontM);
	font-weight: bold;
	line-height: 1.2;
}
.prg_list li + li {
	margin-top: var(--gap_8px);
}

.bnr_question {
	/* margin: var(--gap_64px) auto 0; */
	margin: 0 auto 0;
	max-width: 800px;
	box-shadow: 0 0 var(--gap_16px) #8a6f05;
}
.bnr_question_notice {
	font-size: 1.2em;
	font-weight: bold;
	padding-top: var(--gap_32px);
}
.bnr_question_notice p:not(:last-of-type) {
	margin-bottom: var(--gap_16px);
}

#present_wrap {
	padding-top: clamp(38px, 16vw, 160px);
	position: relative;
	z-index: 100;
}
.present_wrap_inner {
	text-align: center;
    padding: 0 0 var(--gap_48px);
	background-color: rgb(255,255,255,80%);
}
.present {
	width: min(100%,1200px);
	margin: var(--gap_24px) auto var(--gap_48px) ;
}
.title_present {
    width: clamp(125px, 40vw, 436px);
}
.present_img {
	filter: drop-shadow(0 0 var(--gap_8px) #999);
}
.present_name {
	font-size: var(--fontL);
	font-weight: bold;
	padding-bottom: var(--gap_24px);
}
.present_info {
	padding-bottom: var(--gap_32px);
}
.present_info_inner {
	padding: var(--gap_16px);
	margin: 0 auto;
	max-width: 1000px;
	border: dotted 1px;
	background-color: #fff;
}
.present_limit {
	font-size: 1.1em;
	padding-bottom: var(--gap_16px);
}
.present_limit p + p {
	margin-top: var(--gap_8px);
}
.present_read {
	font-size: clamp(16px, 3.2vw, 32px);
	font-weight: bold;
}
.btn_present {
	color: #fff;
	background-color: var(--color_RED);
	border-radius: 100px;
}
.btn_present i {
	font-size: 0.8em;
}
.present_note {
	text-align: left;
	margin: var(--gap_16px) auto 0;
    max-width: 1000px;
}
@media screen and (max-width:767px) {
	.present.flex.col2 .flex_item {
        width: min(90%, 400px);
    }
	.present_name {
		padding-top: var(--gap_32px);
	}
}

/* =======================================
    アニメーション
=======================*/
.pikapika {
	animation: pikapika 2s steps(1) infinite;
}
@keyframes pikapika {
	0%,100% {
	opacity: 0.2;
   }
	50% {
	opacity: 1;
   }
}

.fuwafuwa {
	animation: fuwafuwa 2s infinite;
}
@keyframes fuwafuwa {
	0% {
	transform: translateY(var(--gap_8px));
   }
	50% {
	transform: translateY(calc(var(--gap_8px) * -1));
   }
	100% {
	transform: translateY(var(--gap_8px));
   }
}

.poyopoyo {
    animation: poyopoyo 2s ease-out infinite 1s;
}
@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
}

/* 画像の表示アニメーション*/
.slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
  &.slidein-left{
      transform: translate(-100%,0);
  }
  &.slidein-right{
      transform: translate(100%,0);
  }
  &.slidein-up{
      transform: translate(0,-100%);
  }
  &.slidein-bottom{
      transform: translate(0,100%);
  }
  &.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}

footer.tvo-footer {
	position: relative;
    z-index: 1000;
}
@media only screen and (max-width: 767px) {
    footer.tvo-footer.sp_ad_pad {
        padding-bottom: 0 !important;
    }
}