@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #231815;
	--color_YLW : #ffea00;
	--color_lYLW : #fef5a1;
	--color_RED : #940302;
	--color_dRED : #650101;
	--color_GRY : #363636;
	--color_lGRY : #b2b2b2;
	/* --color_BLU : #000082; */
	--textSHDW : 0 0 0.2em var(--color_GRY),0 0 0.2em var(--color_GRY),0 0 0.3em var(--color_GRY);
	--dropSHDW : drop-shadow(0 0 0.2em var(--color_GRY));
	--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.4;
	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;
}
.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;
}
.reggae-one-regular {
	font-family: "Reggae One", system-ui;
	font-weight: 400;
	font-style: normal;
  }

.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;
}
.inner_wrap.max {
	max-width: 100%;
}
.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: space-between;
}
.flex.col2 {
	column-gap: 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 {
    position: fixed;
    z-index: 500;
}
#btn_pagetop {
	right: clamp(4px, 2.4vw, 10px);
	bottom: clamp(4px, 1.4vw, 10px);
}
#btn_pagetop2 {
	left: clamp(8px, 2vw, 16px);
	bottom: clamp(12px, 2.8vw, 28px);
}
#btn_pagetop a,
#btn_pagetop2 a {
	line-height: 1.2;
	/* 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, 14vw, 120px);
}
/* #btn_pagetop2 a img {
    width: clamp(120px, 18vw, 260px);
    left: clamp(8px, 2vw, 16px);
    bottom: clamp(8px, 2vw, 16px);
	box-shadow: 0 0 var(--gap_16px) var(--color_BLK);
} */
#btn_pagetop2 i {
	font-size: 1.4em;
	color: #fff;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000;
	margin-bottom: var(--gap_16px);
	display: inline-block;
	cursor: pointer;
	position: relative;
	z-index: 999;
}
#btn_pagetop2 a {
	font-size: var(--fontS);
	color: var(--color_dRED) !important;
	/* font-weight: bold; */
	text-align: center;
	color: var(--color_BLU);
	padding: var(--gap_16px);
	border: solid calc(var(--gap_8px) / 2) var(--color_dRED);
	background-color: #fdcf3c;
	background: linear-gradient(180deg, #fdfab3 0%, #fdcf3c 100%);
	box-shadow: 0 0 var(--gap_8px) var(--color_BLK);
}
#btn_pagetop2 a + a {
	margin-top: var(--gap_16px);
}

.hidden {
	display: none !important;
}
.mob {
	display: none;
}
@media screen and (max-width: 767px) {
	.mob {
		display: inline-block;
	}
}

/* =============================================================
    ページ内　共通
============================================*/
#page {
	background: url(/sp/bluff_card/oa/01/images/kv_bg.png) right top/min(90vw,1660px) no-repeat;
	position: relative;
	padding-bottom: var(--gap_48px);
	overflow: hidden;
}
.page_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.page_bg:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	background: url(/sp/bluff_card/oa/01/images/bg.jpg) center center/100% repeat-y;
}
@media screen and (max-width: 1279px) {
	#page {
		background: url(/sp/bluff_card/oa/01/images/kv_bg.png) center top/min(120vw,1660px) no-repeat;
	}
}

#page a.textlink {
	color: inherit;
	text-decoration: underline;
}
.contents {
	position: relative;
}

.read_wrap {
	line-height: 1.5;
	padding: var(--gap_16px) 0;
}
.read_wrap p:not(:last-of-type) {
	margin-bottom: var(--gap_8px);
}

.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;
}

/* =============================================================
    kv
============================================*/
.logo_wrap {
	font-size: 0em;
    margin: 0 auto;
	padding-top: min(36vw, 600px);
    width: min(80vw, 1247px);
}
.logo {
	background: url(/sp/bluff_card/oa/01/images/logo.png) center center/contain no-repeat;
	padding-top: calc(337 / 1247 * 100%);
}
@media screen and (max-width: 1279px) {
	.logo_wrap {
		padding-top: min(46vw, 600px);
	}
}

/* =============================================================
    oa_date
============================================*/
.oa_title {
	font-size: clamp(16px,2.4vw,38px);
	text-align: right;
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff;
	color: var(--color_BLK);
}
.oa_date_item {
	font-size: clamp(16px,2.4vw,38px);
	padding:  clamp(8px, 2vw, 24px) clamp(8px, 2vw, 24px);
	border: solid calc(var(--gap_8px) / 2) var(--color_lYLW);
	background: linear-gradient(135deg,var(--color_RED) 0%,var(--color_dRED) 100%);
	align-items: center;
	column-gap: clamp(8px, 2vw, 24px);
	box-shadow: 0 0 var(--gap_16px) var(--color_GRY);
}
/* .oa_date_item + .oa_date_item {
	transform: translateX(calc(var(--gap_16px) * -1.25));
} */

.oa_date {
	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;
	font-weight: normal !important;
	line-height: 1.2;
	color: #fff;
}
.oa_date em {
	font-size: 1.5em;
	font-weight: normal !important;
	color: var(--color_YLW);
}
.oa_num {
	font-size: 0.8em;
	line-height: 1;
	color: var(--color_dRED);
	padding: calc(var(--gap_8px) / 2) var(--gap_8px);
	background-color: #fff;
}
@media screen and (min-width: 1280px) {
	.oa_date_area {
		position: absolute;
		top: var(--gap_96px);
		left: calc(var(--gap_8px) * -1);
		transform: rotate(-5deg);
	}
	.oa_date_item {
		transform: translateX(-100vw);
		animation: oa_date_item 1.5s forwards 0s;
	}
	.oa_date_item + .oa_date_item {
		margin-top: var(--gap_32px);
		animation: oa_date_item2 2s forwards 0.5s;
	}
}
@keyframes oa_date_item {
	0% {
		transform: translateX(-100vw);
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes oa_date_item2 {
	0% {
		transform: translateX(-100vw);
	}
	100% {
		transform: translateX(calc(var(--gap_16px) * -1.25));
	}
}
@media screen and (max-width: 1279px) {
	.oa_date_area {
		margin: var(--gap_48px) auto 0;
		max-width: max-content;
	}
	.oa_title {
		text-align: center;
		margin-bottom: var(--gap_16px);
	}
	.oa_date_item {
		margin-inline: var(--gap_8px);
		display: inline-flex;
	}
}
@media screen and (max-width: 375px) {
	.oa_date_item {
		display: flex;
	}
	.oa_date_item + .oa_date_item {
		margin-top: var(--gap_24px);
	}
}

/* =============================================================
      intro
============================================*/
.diamond {
	font-size: var(--fontM);
	text-align: center;
	color: #fff;
	padding-inline: var(--gap_48px);
	margin-top: var(--gap_64px);
	filter: var(--dropSHDW);
}

#intro {
	text-align: center;
	color: #fff;
	padding: var(--gap_80px) 0;
	background: url(/sp/bluff_card/oa/01/images/bg_intro.png) center center/cover no-repeat;
}

.intro_read {
	text-shadow: var(--textSHDW);
}
.intro_read > p {
	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;
	font-size: var(--fontM);
	line-height: 1.6;
	letter-spacing: 1px;
	margin-block: var(--gap_64px);
}
.pr_text02 + p {
	margin-bottom: var(--gap_16px);
}

.pr_text01 {
	font-size: clamp(18px,5vw,68px);
}
.pr_text01 p {
	font-size: 1.6em;
}
.pr_text01 *:not(p) {
	text-shadow: none;
}
.pr_text01 mark {
	line-height: 1.1;
	color: var(--color_RED);
	filter: var(--dropSHDW);
	display: inline-block;
}
.pr_text02 {
	font-size: clamp(16px,5vw,48px);
	line-height: 1.2;
}
.pr_text03 {
	font-size: clamp(18px,7vw,108px);
	line-height: 1.1;
	text-align: left;
	max-width: max-content;
	padding-right: var(--gap_160px);
	margin: 0 auto;
	margin-bottom: calc(var(--gap_64px) * -1);
	transform: rotate(-5deg);
	position: relative;
	z-index: 500;
}
.intro_read .slidein:last-of-type {
	position: relative;
	z-index: 500;
}
.pr_text01,
.pr_text02,
.pr_text03 {
	text-shadow: var(--textSHDW);
}
.intro_read > p b,
.pr_text02 b,
.pr_text03 b {
	color: var(--color_YLW);
}
.reggae-one-regular b {
	font-weight: normal;
}

/* =============================================================
    【movie】ブロック　※equipmediaの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 1100px;
    margin: 0 auto 0;
    /* border: var(--color_GRN) 2px solid;
    padding: var(--gap_16px); */
	position: relative;
    z-index: 200;
}
.movie_wrap * {
	text-align: left;
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
	filter: drop-shadow(0 0 var(--gap_16px) var(--color_GRY));
}
.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 #005ab4;
}
.tver_area_head {
	font-size: var(--fontM);
	font-weight: bold;
	color: var(--color_YLW);
	margin-bottom: var(--gap_24px);
}
.tver_area img {
	width: min(100%,300px) !important;
	filter: drop-shadow(0 0 var(--gap_8px) #5b4245);
}
.tver_info {
    margin-bottom: var(--gap_8px);
}
.tver_info em {
	font-weight: normal !important;
}
.tver_info_btm {
	font-size: 0.9em;
	color: #fff;
    margin: 0 auto var(--gap_16px);
    text-align: center;
    line-height: 1.2;
}

.yt_mov_wrap {
	width: 100%;
    max-width: 900px;
	margin: 0 auto;
}
.yt_mov_wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    vertical-align: top;
}

.clown {
    width: min(20vw, 215px);
	position: absolute;
    bottom: calc(100% - var(--gap_64px));
    left: calc(100% - var(--gap_96px));
    z-index: -1;
}
	/* =============================================================
      sec_wrap
============================================*/
.sec_wrap {
	padding-top: var(--gap_80px);
	position: relative;
}
.sec_title {
	font-size: var(--fontM);
	text-align: center;
	line-height: 1.1;
	color: var(--color_dRED);
	padding-bottom: var(--gap_48px);
}
.sec_title i {
	font-size: 0.7em;
}
.sec_read {
	line-height: 1.6;
}
@media screen and (max-width: 767px) {

}

/* =============================================================
      sec01
============================================*/
.inner_box {
	text-align: center;
	padding: var(--gap_64px) var(--gap_48px);
	background: linear-gradient(135deg,var(--color_RED) 0%,var(--color_dRED) 100% );
	filter: drop-shadow(0 0 var(--gap_16px) var(--color_GRY));
	border: solid calc(var(--gap_8px) / 2) var(--color_lYLW);
	position: relative;
}
.player_info > .img_wrap {
	position: relative;
	width: min(100%,1200px);
	margin-inline: auto;
}
.player_list {
	position: absolute;
	left: 50%;
	bottom: calc(var(--gap_32px) / -1);
	transform: translateX(-50%);
}
.player_list li {
	font-size: clamp(14px,4vw,58px);
	line-height: 1;
}
.player_list li + li {
	margin-top: clamp(6px, 1.6vw, 24px);
}
.player_list li mark {
	line-height: 1.1;
	color: var(--color_lYLW);
	background-color: #000;
	filter: drop-shadow(0 0 var(--gap_8px) #fff);
	display: inline-block;
}

.cast_wrap {
	margin-top: var(--gap_80px);
}
.cast_wrap_item {
	font-size: clamp(13px,2.8vw,28px);
	color: #fff;
}
.cast_wrap_item + .cast_wrap_item {
	margin-top: var(--gap_32px);
	padding-inline: var(--gap_32px);
}
.oa_num_big {
	font-size: clamp(16px,12vw,148px);
	font-style: italic;
	line-height: 1;
	text-shadow: var(--textSHDW);
	color: var(--color_lYLW);
	position: absolute;
	right: calc(var(--gap_16px) * -1.5);
	bottom: 0;
}

.player_info + .player_info {
	margin-top: var(--gap_80px);
}
.btm_text {
	width: min(80%,652px);
	margin-inline: auto;
	margin-top: var(--gap_48px);
	animation: btm_text 5s infinite;
	opacity: 0;
}
@keyframes btm_text {
	0%,100% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
}

/* =============================================================
    【swiper】ブロック ※スライド
============================================*/
.slide-paused:hover .slideshow {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper-wrapper li {
	list-style: none;
}
.swiper-slide {
	padding: 0 0.6%;
	margin-top: var(--gap_16px);
	margin-bottom: var(--gap_32px);
}
.swiper-slide img {
	box-shadow: 0 var(--gap_8px) var(--gap_16px) #939495;
	display: block;
}
@media screen and (max-width:767px) {
	.swiper-slide {
		padding: 0 2%;
	}
}
/* @media screen and (max-width: 479px) {
	.swiper-slide {
		padding: 0 5px;
	}
} */

/* =============================================================
    アニメーション
============================================*/
.fuwafuwa {
	animation: fuwafuwa 2s infinite;
}
@keyframes fuwafuwa {
	0% {
	transform: translateY(var(--gap_16px));
   }
	50% {
	transform: translateY(0);
   }
	100% {
	transform: translateY(var(--gap_16px));
   }
}

.poyopoyo {
    animation: poyopoyo 3s ease-out infinite;
    opacity: 1;
}
@keyframes poyopoyo {
	0%, 20%, 30%, 40% {
	  transform: scale(1.0);
	}
	25%, 35% {
	  transform: scale(0.95);
	}
}

/* 画像の表示アニメーション*/
/* 発火タイミング指示のjs記述も必要 */
/* @media only screen and (min-width: 1024px) { */
	.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;
	}
	}
/* } */

#tvoHeader,
#tvoFooter {
	position: relative;
	z-index: 1200;
}