@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_YLW : #ffea00;
	--color_BEG : #ffefce;
	--color_RED : #bb0000;
	--color_BLU : #0068b7;
	--fontS : clamp(16px,2.4vw,24px);
	--fontM : clamp(18px,2.8vw,28px);
	--fontL : clamp(18px,4vw,38px);
	--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: #fff;
	font-family: "Noto Sans JP", Lato, "游ゴシック 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%;
	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;
}
.shippori-antique-regular {
	font-family: "Shippori Antique", sans-serif;
	font-weight: 400;
}	

.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.red {
	color: var(--color_RED) !important;
}
.blue {
	color: var(--color_BLU) !important;
}
.ylw {
	color: var(--color_YLW) !important;
}
.lgry {
	color: #999;
}
.line_ylw {
	background: linear-gradient(180deg,transparent 70%, #ffea00 70%, #ffea00 100%);
}

.inner_wrap {
	padding: 0 var(--gap_32px);
	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);
}
.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;
}
.stanby, .stanby a {
    position: relative;
}
.stanby a img {
	filter: blur(1px);
}
.stanbyText {
	display: none;
}
.stanby .stanbyText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,50%);
    display: -webkit-flex;
    display: flex;
    align-items: center;
	text-align: center;
	z-index: 100;
}
.stanby .stanbyText P {
	color: #fff;
	text-shadow: 0 0 0.2em #000,0 0 0.2em #000,0 0 0.3em #000,0 0 0.3em #000,0 0 0.3em #000;
	margin-inline: auto;
	padding-inline: var(--gap_16px);
}

.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: 3%;
	justify-content: center;
}
.flex.col3 .flex_item {
	width: calc(94% / 3);
}
.flex.col4 {
	column-gap: 2%;
	justify-content: unset;
}
.flex.col4 .flex_item {
	width: calc(90% / 6);
}
.flex.col4 .flex_item:nth-child(n + 7) {
	margin-top: var(--gap_48px);
}
@media screen and (max-width:767px) {
	.flex.col2,
	.flex.col3 {
		justify-content: center;
	}
	.flex.col2 .flex_item {
		width: min(100%, 480px);
	}
	.flex.col3 .flex_item {
		width: min(100%, 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(94% / 4);
	}
	.flex.col4 .flex_item:nth-child(n + 5) {
        margin-top: var(--gap_48px);
    }
}
@media screen and (max-width:479px) {
	.flex.col4 .flex_item {
		width: calc(96% / 3);
	}
	.flex.col4 .flex_item:nth-child(n + 4) {
        margin-top: var(--gap_48px);
    }
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}

.list_ad {
	/* margin-top: var(--gap_24px); */
	display: flex;
	position: relative;
}
/* .list_ad::before {
	content: "";
	border-top: solid 1px;
	width: 50%;
	margin-inline: auto;
    display: block;
} */
.bnr_ad {
	line-height: 1.2;
    padding: var(--gap_8px);
    border: solid 1px var(--color_BLU);
    box-sizing: border-box;
    display: block;
    position: relative;
}
.bnr_ad_title {
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: bold;
    color: var(--color_BLU);
    padding-bottom: calc(var(--gap_8px) / 2);
}
.bnr_ad_title_sub {
    font-size: clamp(10px, 1.2vw, 16px);
    color: var(--color_BLK);
	padding-right: 6em;
}
.bnr_ad_more {
    font-size: clamp(10px, 1vw, 12px);
	line-height: 1;
    color: #fff;
    padding: clamp(3px, 0.5vw, 8px);
    background-color: var(--color_BLU);
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
}
.notice_ad p {
	font-size: clamp(10px,1vw,12px);
	padding-left: 1em;
	text-indent: -1em;
	word-break: break-all;
}

.btn_wrap {
	text-align: center;
}
.btn {
	font-weight: bold;
	padding: var(--gap_16px) var(--gap_16px);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	box-shadow: 0 0 var(--gap_24px) #000000;
	transition: all 0.3s;
	display: inline-block;
}
#btn_pagetop,
#btn_pagetop2 {
	bottom: clamp(8px, 2vw, 16px);
    position: fixed;
    z-index: 1300;
}
#btn_pagetop {
	/* right: clamp(8px, 2vw, 16px); */
    right: 0;
    bottom: 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 {
    font-size: clamp(12px, 1.8vw, 14px);
    line-height: 1;
    color: var(--color_YLW) !important;
    padding: var(--gap_8px) var(--gap_8px) var(--gap_8px) var(--gap_16px);
    border: solid 1px var(--color_YLW);
    border-right: 0;
    border-radius: 50px 0 0 50px;
    background-color: rgba(0, 0, 0, 0.85);
}
/* #btn_pagetop a i {
	padding: var(--gap_16px) var(--gap_24px);
} */
#btn_pagetop a img {
  width: clamp(50px, 9vw, 80px);
}
#btn_pagetop2 i {
	font-size: 1.4em;
	color: #fff;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000;
	display: inline-block;
	cursor: pointer;
	position: relative;
	z-index: 999;
}
#btn_pagetop2 a.textbnr {
    /* font-size: var(--fontS); */
    font-weight: 800;
    line-height: 1.1;
    /* text-shadow: 0 0 0.3em #fff; */
    color: #fff !important;
    padding: var(--gap_16px) var(--gap_16px);
    /* aspect-ratio: 1 / 1; */
    /* background-color: rgba(0, 0, 0, 0.85); */
    background-color: rgb(2 22 83 / 85%);
	/* background: linear-gradient(160deg, var(--color_BLK), rgb(0 0 0 / 90%)); */
    border: solid 1px var(--color_YLW);
    box-shadow: 0 0 var(--gap_8px) #000;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
}
#btn_pagetop2 a.textbnr > span {
	display: block;
}
#btn_pagetop2 a + a {
	margin-top: var(--gap_16px);
}
#btn_pagetop2 a img {
    width: clamp(120px, 12vw, 160px);
}

.hidden {
	display: none !important;
}

.mob {
	display: none;
}
@media screen and (max-width: 899px) {
	.mob {
		display: block;
	}
	.pc {
		display: none;
	}
}

.page_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #000;
}
/* .page_bg:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
} */

/* ==================================
    背景fixed　safari対応
============================*/
.bg_photo,
.bg_photo_mob {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, auto, auto, 0);
    z-index: -1;
}
.bg_photo:before,
.bg_photo_mob:before {
    content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
}
.bg_photo:before {
	background: url(../images/bg_photo.jpg) right 20% top/cover repeat-y;
}
.bg_photo_mob:before {
	background: url(../images/bg_photo_mob.jpg) center top/cover repeat-y;
}

/* =============================================================
    head
============================================*/
#navi_live,
#navi {
	max-width: max-content;
}
#head {
	padding: var(--gap_8px) var(--gap_24px);
	align-items: center;
	position: sticky;
	top: 0;
	box-shadow: 0 0 var(--gap_16px) #000;
	/* background: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 90%) 10%, rgb(0 0 0 / 90%) 90%, transparent 100%); */
	/* background: linear-gradient(90deg, transparent 0%, rgb(113 0 0 / 90%) 10%, rgb(219 12 12 / 100%), rgb(113 0 0 / 90%) 90%, transparent 100%); */
	background: linear-gradient(90deg, rgb(219 12 12 / 100%), rgb(113 0 0 / 90%) 10%, rgb(0 0 0 / 90%), rgb(113 0 0 / 90%) 90%, rgb(219 12 12 / 100%));
	z-index: 999;
}
#head a {
	color: #fff;
}
#navi_live a {
	font-size: 0.8em;
}
#navi_live mark {
	font-weight: 800;
	line-height: 1;
	color: var(--color_BLK);
	padding: calc(var(--gap_8px) / 2) var(--gap_8px);
	border-radius: var(--gap_8px);
	background-color: var(--color_YLW);
	background: linear-gradient(135deg, #fff 5%, var(--color_YLW) 10%, var(--color_YLW) 90%, #bfaf00 96%);
	display: inline-block;
	margin-right: var(--gap_8px);
	animation: navi_anime 20s steps(1) infinite;
}
@keyframes navi_anime {
	0%,5%,10%,15%,20%,100% {
		opacity: 1;
	}
	2.5%,7.5%,12.5%,17.5% {
		opacity: 0;
	}
}
#navi {
	display: -webkit-flex;
	display: flex;
    gap: var(--gap_24px);
    align-items: center;
    justify-content: center;
}
.mov_notice {
	font-size: clamp(10px,1.8vw,13px);
	line-height: 1.1;
	text-align: right;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000,0 0 0.3em #000;
	color: #fff;
	margin-top: var(--gap_8px);
	padding-inline: 1em;
	/* position: absolute;
	top: 0;
	right: 0; */
}
@media screen and (max-width: 767px) {
	#head {
		justify-content: center;
	}
	#navi_live,
	#navi {
		text-align: center;
		width: 100%;
		max-width: 100%;
	}
	#navi a {
		font-weight: 600;
		padding-block: var(--gap_8px);
	}
}

.kv {
	padding: var(--gap_96px) 0 var(--gap_16px);
	overflow: hidden;
}
.logo_wrap {
	font-size: 0em;
	margin-inline: auto;
	width: min(80%,680px);
}
.logo {
	background: url(/tenjinmatsuri/lib/2026/images/logo.png) center center/contain no-repeat;
	padding-top: calc(375 / 824 * 100%);
}
/* .logo_wrap {
	line-height: 1.1;
	text-align: center;
	text-shadow: 0 0 0.5em #000, 0 0 0.6em #000, 0 0 0.6em #000;
}
.logo_sub {
	font-family: "Shippori Mincho", serif;
	font-weight: 800;
	font-size: var(--fontL);
	font-style: italic;
	margin-bottom: var(--gap_16px);
}
.logo {
	font-size: clamp(22px,7vw,78px);
	font-weight: 800;
}
.logo span {
	font-size: var(--fontS);
	line-height: 1;
	display: block;
} */
.kv_pr_area {
	text-align: center;
	margin-top: var(--gap_96px);
}
.kv_pr_area .pr_text_wrap {
    text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000;
}

.kv .btn_cam {
	margin-top: var(--gap_32px);
}

/* 横スクロールテキスト用 */
.scroll-wrap {
	margin-bottom: var(--gap_80px);
	overflow: hidden;
	white-space: nowrap;
	padding-block: var(--gap_8px);
	background: linear-gradient(90deg, transparent 0%, rgb(25 47 96 / 90%) 15%, rgb(25 47 96 / 90%) 85%, transparent 100%);
	box-shadow: 0 0 var(--gap_8px) #000;
	position: relative;
}
/* .scroll-wrap::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9c9c9 20%, #c9c9c9 80%, transparent);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}
.scroll-wrap::after {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9c9c9 20%, #c9c9c9 80%, transparent);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
} */
.scroll-text {
	display: inline-block;
	animation: scroll-loop 30s linear infinite;
}
.scroll-text span {
	display: inline-block;
}
.scroll-text span em {
	color: var(--color_YLW);
}
@keyframes scroll-loop {
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(-50%);
	}
}
/* END 横スクロールテキスト用 */

.kv_pr_area .bnr_tenjin2026,
.kv_pr_area .bnr_tenjin2026_pre {
	width: min(90%,700px);
	margin-inline: auto;
}
/* .kv_pr_area .bnr_tenjin2026 img {
	border: 0 !important;
} */
.kv_pr_area .bnr_tenjin2026 {
	position: relative;
	margin-bottom: var(--gap_80px);
}
.kv_pr_area .bnr_tenjin2026 .btn_more_sub {
	content: "";
    width: max-content;
    height: max-content;
    aspect-ratio: 1 / 1;
    padding: 1.5em;
    border: solid 2px #0a0627;
    border-radius: 50%;
    background: #FFEA00;
	background: linear-gradient(335deg,#ffea00 50%, #FFFCCF 100%);
    box-shadow: 0 0 var(--gap_16px) var(--color_BLK);
    position: absolute;
    bottom: -1em;
    right: -1em;
    display: -webkit-flex;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
	animation: btn_more_sub 2s infinite ease;
}
@keyframes btn_more_sub {
	0% {
		transform: rotate(5deg);
	}
	50% {
		transform: rotate(-5deg);
	}
	100% {
		transform: rotate(5deg);
	}
}

.kv_pr_area .timer {
	font-size: var(--fontM);
	line-height: 1.1;
	color: #0a0628;
	margin-inline: auto;
	padding: var(--gap_16px) var(--gap_24px);
	width: min(90%,700px);
	background-color: #fff;
}
.kv_pr_area .timer .timecode {
	font-size: 1.3em !important;
	font-weight: 600;
	color: var(--color_RED);
}
.kv_pr_area .timer .timecode small {
	font-size: clamp(12px,1.8vw,16px);
}
@media screen and (max-width: 479px) {
	.kv_pr_area .bnr_tenjin2026 .btn_more_sub {
		font-size: clamp(12px, 3.2vw, 16px);
		padding: 1em;
	}
}


/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: #000 3px solid;
    padding: 15px;
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    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;
}

/* ==================================
    ページ内共通
============================*/
.btn_ylw a {
	line-height: 1;
	color: var(--color_BLK);
	border: solid 1px var(--color_BLK);
	background: linear-gradient(135deg, #fff 5%, var(--color_YLW) 10%, var(--color_YLW) 90%, #bfaf00 96%);
	display: -webkit-inline-flex;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sec_wrap {
	text-align: center;
	padding-top: var(--gap_96px);
}
.sec_title {
	font-size: var(--fontS);
	font-weight: 800;
	/* text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000; */
	text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.3em #000;
	line-height: 1.2;
    margin-inline: auto;
	margin-bottom: var(--gap_32px);
    max-width: max-content;
	background-color: #000;
	background: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 100%) 15%, rgb(0 0 0 / 100%) 85%, transparent 100%);
	position: relative;
}
.sec_title_pr {
	position: absolute;
	top: var(--gap_24px);
	left: -1em;
	transform: rotate(-5deg);
	font-size: 0.8em;
	background-color: var(--color_BEG);
	background: linear-gradient(150deg, #cfb682, var(--color_BEG) 30%, var(--color_BEG) 70%, #cfb682);
    box-shadow: 2px 2px var(--gap_8px) var(--color_BLK);
    padding: var(--gap_8px);
    color: var(--color_BLK);
}
.read {
    padding-block: var(--gap_48px);
	background: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 90%) 15%, rgb(0 0 0 / 90%) 85%, transparent 100%);
}
.read p {
    /* text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000; */
    text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.3em #000;
}
.read.sentence p {
	color: #dfdfdf;
}
.read p + p {
	margin-top: var(--gap_16px);
}
.read > img {
	margin-block: var(--gap_16px);
}
.read_head {
	font-size: var(--fontS);
}

.cont_flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.cont_flex .sec_title {
	text-shadow: none;
	width: min(40%,580px);
	max-width: unset;
    /* margin-inline: auto; */
	margin-bottom: 0;
	padding: var(--gap_32px);
    border-radius: var(--gap_16px) 0 var(--gap_16px) 0;
	background: linear-gradient(160deg, rgb(219 12 12 / 100%), rgb(113 0 0 / 90%));
	box-shadow: 0 0 var(--gap_24px) #000000;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cont_flex .sec_title .serif {
	font-weight: 800;
}
.cont_flex .read {
	text-align: left;
	/* width: min(60%,700px); */
	width: 60%;
	padding: var(--gap_32px);
	background: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 90%) 20%, rgb(0 0 0 / 90%) 80%, transparent 100%);
}
.cont_flex .read p {
	line-height: 1.6;
	letter-spacing: 1px;
}

.cont_wrap {
	padding-bottom: var(--gap_96px);
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	.sec_title_pr {
		top: calc(var(--gap_24px) * -1);
		left: -2em;
	}
	.cont_flex {
		flex-direction: column;
	}
	.cont_flex .sec_title {
		width: 80%;
		border-radius: var(--gap_16px) var(--gap_16px) 0 0;
	}
	.cont_flex .read {
		width: 100%;
	}
}

.bnr_wrap {
	margin-top: var(--gap_32px);
}
.bnr_base img {
	box-shadow: 0 0 var(--gap_16px) #000;
    /* border: solid calc(var(--gap_8px) / 4) #000 !important; */
    border: solid 1px #dfdfdf !important;
}

.btn_more {
	margin-top: var(--gap_24px);
}
.btn_more a {
	font-size: 0.9em;
	font-weight: normal;
	color: #fff;
	border: solid 1px;
}

.img_thumb {
    width: min(100%, 580px);
	margin-inline: auto;
}
.img_thumb a {
    color: #fff !important;
    display: block;
    position: relative;
}
.img_thumb a::after {
    font-size: clamp(18px, 3vw, 22px);
    color: #fff;
    position: absolute;
    content: '\f00e';
    bottom: -0.5em;
    right: -0.5em;
	text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.3em #000;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
}
@media screen and (max-width: 767px) {
	.img_thumb {
		width: min(85%, 480px);
	}
}

.cam_pr_subttl {
	line-height: 1;
	text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000;
	/* color: var(--color_YLW); */
	padding: var(--gap_8px);
	margin-bottom: var(--gap_16px);
	/* background-color: #000; */
	border: solid 1px;
	display: inline-block;
}
.cam_pr_ttl {
	font-size: var(--fontM);
	font-weight: 700;
	text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000;
	margin-bottom: var(--gap_24px);
}
.cam_pr_ttl_pr {
	color: var(--color_YLW);
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-end;
}
.cam_pr_ttl_pr em {
	margin-inline: var(--gap_8px);
	padding-bottom: var(--gap_8px);
	display: inline-block;
}

.btn_cam a {
	font-size: var(--fontS);
}
.btn_cam a i {
	font-size: 0.7em;
	margin-left: var(--gap_8px);
}
.btn_cam a[tabindex="-1"] {
	background: #999;
}

/* =============================================================
    cam
============================================*/
.cam_info {
	padding-top: var(--gap_32px);
}

.pre_wrap {
	margin-bottom: var(--gap_48px);
}
.grade {
	font-size: var(--fontM);
    font-weight: 600;
    line-height: 1;
    width: max-content;
    margin-inline: auto;
    margin-bottom: var(--gap_16px);
    padding: var(--gap_8px) var(--gap_24px);
    background: linear-gradient(160deg, rgb(219 12 12 / 100%), rgb(113 0 0 / 90%));
}
.pre_item {
	position: relative;
	padding-bottom: var(--gap_48px);
}
.pre_item::after {
	content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9c9c9 20%, #c9c9c9 80%, transparent);
    position: absolute;
    bottom: 0;
    left: 50%;
	transform: translate(-50%);
}
.pre_item + .pre_item {
	padding-top: var(--gap_48px);
}

.pre_ttl {
	font-size: var(--fontL);
	font-weight: 800;
}
.pre_ttl i {
	font-size: 0.6em;
	margin-inline: var(--gap_8px);
}
.pre_ttl small {
	font-size: clamp(14px,1.8vw,18px);
	line-height: 1.2;
	margin-top: var(--gap_8px);
	display: block;
}
.winner {
	line-height: 1.1;
	margin-top: var(--gap_16px);
}
.flex_img small {
	font-size: clamp(12px,1.8vw,14px);
	line-height: 1;
	text-align: right;
	text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.3em #000;
	margin-top: var(--gap_8px);
	display: block;
}

.pre01 {
	align-items: center;
}

.cam_info .btn_cam {
	margin-top: var(--gap_32px);
}
.cam_info .btn_cam a {
	font-size: var(--fontM);
}
.pre_limit {
	text-align: left;
	margin-top: var(--gap_32px);
	margin-inline: auto;
	padding: var(--gap_24px);
	max-width: max-content;
	border: solid 1px;
}

/* =============================================================
    howto
============================================*/
.howto_area {
	padding-top: var(--gap_64px);
}
.howto_ttl {
	font-size: var(--fontS);
	font-weight: 600;
}

.howto_read {
	margin-top: var(--gap_32px);
}
.howto_item {
	width: calc(94% / 3);
	padding: var(--gap_32px);
    border-radius: var(--gap_16px);
	background: linear-gradient(160deg, rgb(219 12 12 / 100%), rgb(113 0 0 / 90%));
    box-shadow: 0 0 var(--gap_16px) #000;
}
.howto_item i {
	font-size: calc(var(--fontL) * 1.5);
}
.step_ttl {
	font-size: var(--fontM);
	font-weight: 800;
	text-shadow: 2px 2px 1px #670000;
	line-height: 1.2;
	color: var(--color_YLW);
	padding-block: var(--gap_16px) var(--gap_8px);
}
.step_ttl b {
	font-size: 1.4em;
	font-style: italic;
	color: #fff;
	margin-right: var(--gap_8px);
}
.howto_item small {
	font-size: 0.8em;
	line-height: 1.3;
	text-align: left;
	margin-top: var(--gap_32px);
	padding-top: var(--gap_16px);
	border-top: dotted calc(var(--gap_8px) / 4);
	display: inline-block;
}
.howto_read p {
	text-shadow: none !important;
}
@media screen and (max-width:767px) {
	.howto_read {
		justify-content: center;
		row-gap: var(--gap_32px);
	}
	.howto_item {
		width: min(85%,480px);
	}
}

/* =============================================================
    cont_highlights 見どころバナーエリア
============================================*/
.bnr_ttl {
	font-weight: 600;
}
.pr_text_wrap {
	max-width: max-content;
    margin-inline: auto;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: var(--gap_8px);
}
.pr_text {
	padding-bottom: var(--gap_8px);
	margin-inline: var(--gap_8px);
}

.bnr_tenjin .bnr_base {
	width: min(85%,480px);
	margin-inline: auto;
}
.bnr_tenjin .bnr_tenjin_achv {
	width: min(75%, 380px);
}

.bnr_area_ttl {
	font-size: var(--fontM);
    font-weight: 600;
    color: #fff;
    padding: var(--gap_8px);
	margin-block: 0 var(--gap_48px);
	background: linear-gradient(160deg, rgb(219 12 12 / 100%), rgb(113 0 0 / 90%));
    box-shadow: 2px 2px var(--gap_8px) var(--color_BLK);
}

.bnr_list {
	justify-content: center;
	gap: var(--gap_32px);
}
.bnr_list .bnr_base {
	width: calc(calc(100% - var(--gap_32px) * 2) / 3);
}
.bnr_list .bnr_ttl {
	font-size: 0.9em;
	text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000, 0 0 0.4em #000;
	line-height: 1.2;
	margin-top: var(--gap_8px);
}

/* #cont_others02 .bnr_list .bnr_base img {
	box-shadow: 0 0 var(--gap_16px) #ffffff;
} */
@media screen and (max-width:767px) {
	.bnr_list .bnr_base {
		width: calc(calc(100% - var(--gap_32px) * 1) / 2);
	}
}

/* =======================================
    【クラブTVO記事用】　
=========================*/
.topics_cont {
	padding-top: var(--gap_32px);
}
.topics_list {
	display: grid;
    gap: var(--gap_24px) var(--gap_24px);
    grid-template-columns: repeat(4, 1fr);
}
.tvo-report-thumbnail-wrapper {
	margin-bottom: var(--gap_8px);
}
.topics_list .tvo-report-time {
	display: none;
}
.topics_list .tvo-report-title {
	/* font-size: 0.9em; */
	line-height: 1.2;
	text-align: left;
	color: #dfdfdf;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
@media screen and (max-width:767px) {
	.topics_list {
		grid-template-columns: repeat(2, 1fr);
		padding: var(--gap_32px);
	}
}

/* =============================================================
    【video】ブロック　
============================================*/
.video_wrap {
	position: fixed;
    top: 0;
    right:0;
    left:-1px;
    bottom:0;
    overflow: hidden;
	z-index: -1;
}
.video_wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(0 0 0 / 40%); */
    /* background-image: radial-gradient(rgba(255 255 255 / .2) 30%, rgba(255 255 255 / 0) 31%), radial-gradient(rgba(255 255 255 / .2) 30%, rgba(255 255 255 / 0) 31%); */
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}
#video,
#video_mob {
	position: absolute;
    /* z-index: -1; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
}
video.pc {
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
}
video.mob {
    width: 56.25vw; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 177.77777778vh; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
}

/* =======================================
    【Youtube再生リスト用】　
=========================*/
.c-mov-list {
	display: grid;
	gap: var(--gap_24px) var(--gap_24px);
	grid-template-columns: repeat(2, 1fr);
}
.c-mov-list__item.hide {
    display: none
}
.c-mov-list figure {
	margin-bottom: var(--gap_8px);
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.c-mov-list figure img {
    position: absolute;
    top: -16.5%;
}
.c-mov-list__title_wrap time {
	display: none;
}
.c-mov-list__title {
	font-size: 0.8em;
	line-height: 1.1;
	color: var(--color_BLK);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

/* ==========　ここまで　=============================
=========================*/

/* =======================================
    【swiper】ブロック　※追加
=======================*/
.swiper_box {
	position: relative;
	margin-bottom: var(--gap_32px);
}
.swiper {
	margin: 0 var(--gap_32px);
}
.swiper .read p:first-of-type,
.swiper .read img:first-of-type {
	margin-top: 0;
}
.swiper-autoheight .swiper-wrapper {
	align-items: unset;
}
.swiper-pagination-bullet {
	background: rgba(70, 70, 70, 0.4) !important;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .4) !important;
	width: var(--swiper-pagination-bullet-width,calc(var(--gap_8px)*1.5));
    height: var(--swiper-pagination-bullet-height,calc(var(--gap_8px)*1.5));
}
.swiper-pagination-bullet-active {
	background: rgb(66 108 157) !important;
    opacity: 1 !important;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	top: 100%;
}

.swiper-button-next, .swiper-button-prev {
	color: var(--color_YLW) !important;
	text-shadow: 0 0 0.3em #666,0 0 0.3em #666,0 0 0.3em #666;
	top: 50% !important;
	/* bottom: 0; */
	z-index: 50 !important;
}
.swiper_service .swiper-button-next, .swiper_service .swiper-button-prev {
	color: var(--myColor03) !important;
}
.swiper-button-prev {
	left: calc(var(--gap_24px) * -1) !important;
}
.swiper-button-next {
	right: calc(var(--gap_24px) * -1) !important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
	font-size: clamp(28px, 3.6vw, 38px);
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands" !important;
    font-weight: 900;
	text-shadow: 0 0 10px var(--myColor01);
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
	content: '\f137' !important;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
	content: '\f138' !important;
}

/* =======================================
    アニメーション
=======================*/
.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_16px));
	}
	50% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(var(--gap_16px));
	}
}

.poyopoyo {
    animation: poyopoyo 2s ease-out infinite 1s;
}
.poyopoyo2 {
    animation: poyopoyo 2s ease-out infinite 2s;
}
@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
}

.anm_arrow_btm {
	animation: anm_arrow_btm 1s infinite;
}
@keyframes anm_arrow_btm {
	0% {
	transform: translateY(0);
	opacity: 1;
   }
   100% {
	transform: translateY(var(--gap_24px));
	opacity: 0;
   }
}

/* ページbg用*/
  .fade-in {
	opacity: 1;
	transition: opacity 1s; /* アニメーションの速度設定 */
  }
  .fade-in.visible {
	opacity: 0;
  }

/* 画像の表示アニメーション*/
  .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;
}
