<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 {
	--color_BLK : #252525;
	--color_YLW : #ffea00;
	--color_BEG : #ffefce;
	--color_RED : #bb0000;
	--color_BLU : #0068b7;
	--fontS : clamp(18px,2.4vw,24px);
	--fontM : clamp(18px,2.8vw,28px);
	--fontL : clamp(20px,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: 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%;
	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;
}

.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: var(--gap_32px) 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(80%, 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_8px) var(--gap_16px);
	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(50px, 9vw, 80px);
}
#btn_pagetop2 a img {
    width: clamp(100px, 12vw, 160px);
    left: clamp(8px, 2vw, 16px);
    bottom: clamp(8px, 2vw, 16px);
}
#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;
}
.hidden {
	display: none !important;
}

.mob {
	display: none;
}
@media screen and (max-width: 899px) {
	.mob {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* =============================================================
    【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;
}


/* ==================================
    背景fixed　safari対応
============================*/
.bg01,
.bg_mob {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, auto, auto, 0);
    z-index: -1;
}
.bg01:before,
.bg_mob:before {
    content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
}
.bg01:before {
	background: url(../images/bg01.jpg) right 20% top/cover repeat-y;
}
.bg_mob:before {
	background: url(../images/bg_mob.jpg) center top/cover repeat-y;
}

/* =============================================================
    【content】ブロック　
============================================*/
.mov_notice {
	font-size: 0.8em;
	color: #fff;
	line-height: 1.1;
	margin-top: var(--gap_8px);
	padding-inline: 1em;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000,0 0 0.3em #000;
	position: absolute;
	top: 0;
	right: 0;
}
.cont_wrap {
	margin-inline: auto;
	max-width: max-content;
	column-gap: var(--gap_48px);
	position: relative;
	z-index: 100;
}
@media screen and (max-width: 899px) {
	.cont_wrap {
		padding-top: var(--gap_96px);
	}
}
@media screen and (max-width: 479px) {
	.mov_notice {
		left: 0;
		right: unset;
	}
}

.side_left {
	width: 300px;
	padding-top: var(--gap_32px);
	justify-content: flex-start;
    flex-direction: column;
	position: sticky;
	top: 0;
}
.center_area {
	width: 480px;
	margin-top: var(--gap_32px);
	background-color: rgb(255,255,255,0.4);
	box-shadow: 0 0 var(--gap_8px) var(--color_BLK);
}
@media screen and (max-width: 899px) {
	.side_wrap {
		display: none;
	}
	.center_area {
		width: min(90%,480px);
		margin-inline: auto;
	}
}

.side_navi li {
	margin-block: var(--gap_16px);
	position: relative;
}
.side_navi li.new::before {
    font-size: 0.7em;
    line-height: 1;
	color: var(--color_YLW);
    padding: calc(var(--gap_8px) / 4);
    background-color: var(--color_RED);
	box-shadow: 0 0 calc(var(--gap_8px) / 2) #000;
    content: "NEW";
	position: absolute;
    left: -1em;
    top: -0.7em;
    transform: rotate(-10deg);
    z-index: 100;
}
.side_navi li:first-of-type {
	margin-top: 0;
}
.side_navi li a {
	line-height: 1.2;
	color: var(--color_BLK);
	padding: var(--gap_8px) var(--gap_48px) var(--gap_8px) var(--gap_16px);
	background-color: rgb(255,255,255,70%);
	box-shadow: 0 0 var(--gap_8px) var(--color_BLK);
	display: block;
	position: relative;
}
.side_navi li a::after {
	position: absolute;
	content: "\f178";
	line-height: 1;
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
	font-weight: 900;
	right: var(--gap_16px);
	top: 50%;
	transform: translateY(-50%);
}
.mob .side_navi li a::after {
	content: "\f063";
}
.side_navi li a small {
	font-size: 0.8em;
	color: #555;
	padding-left: var(--gap_8px);
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.mob .side_navi {
	margin-bottom: var(--gap_32px);
}

@media screen and (min-width: 900px) {
	/* カレント表示の指定 */
	.side_navi li a.is-active {
		/* background-color: rgb(255,234,0,70%); */
		background-color: rgb(255,255,255,100%);
		box-shadow: 0 0 var(--gap_8px) #fff;
	}
}

.side_topics .topics_title {
	font-size: 1em;
	text-align: center;
	margin-bottom: var(--gap_24px);
}
.side_topics .topics_title i {
	font-size: 0.7em;
	margin-inline: var(--gap_8px);
}
.side_topics {
	padding: var(--gap_24px);
	background-color: rgb(255,255,255,0.7);
}
.side_topics .topics_list {
	grid-template-columns: repeat(1,1fr);
}

.side_topics .tvo-report-article:nth-of-type(n + 3) {
	display: none;
}
.btn_more {
	margin-top: var(--gap_24px);
}
.btn_more a {
	font-size: 0.9em;
	font-weight: normal;
	color: var(--color_BLK);
	border: solid 1px;
}

.kv {
	padding: var(--gap_32px) var(--gap_32px);
}
.logo_wrap {
	font-size: 0em;
	width: 100%;
	max-width: 362px;
	margin: 0 auto;
	position: relative;
	z-index: 999;
	/* position: absolute;
	top: 50%;
	left: 50%;
	z-index: 999;
	transform: translate(-50%,-50%); */
}
.logo {
	background: url(../images/logo.png) center center/contain no-repeat;
	padding-top: calc(315 / 362 * 100%);
}
.kv_pr_area {
	text-align: center;
	margin-top: var(--gap_32px);
	overflow: hidden;
}
/* 横スクロールテキスト用 */
.c-text {
	overflow: hidden;
	display: flex;
	width: 100vw;
	margin-inline: calc(50% - 50vw);
}
.c-text__item {
	flex-shrink: 0;
	white-space: nowrap;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000,0 0 0.3em #000;
	margin: 0 0 var(--gap_16px) 0 ;
  
	&amp;:nth-child(odd) {
	  animation: MoveLeft 12s -6s infinite linear; /*24秒かけて-12秒後に無限ループさせる*/
	}
  
	&amp;:nth-child(even) {
	  animation: MoveLeft2 12s infinite linear; /*24秒かけて無限ループさせる*/
	}
  }
  @keyframes MoveLeft {
	from {
	  transform: translateX(100%);
	}
	to {
	  transform: translateX(-100%);
	}
  }
  @keyframes MoveLeft2 {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-200%);
	}
  }
.c-text__item em {
	color: var(--color_YLW);
}
/* END 横スクロールテキスト用 */

.btn_pr_area a {
	color: var(--color_BLK);
	background-color: var(--color_YLW);
}

#page section {
	margin-top: -1px;
	background-color: rgb(255,255,255,100%);
}
#page section.bg_col:nth-of-type(2n) {
	background-color: rgb(248,244,230,100%);
}
#page section.bg_none {
	background-color: transparent;
}
.sec_title {
	font-size: var(--fontS);
	font-weight: 800;
	text-align: center;
	line-height: 1.2;
	padding-block: var(--gap_24px);
	margin-bottom: var(--gap_24px);
	background: url(/tenjinmatsuri/lib/2025/images/bg_title.png) center center/contain no-repeat;
}
.read {
	text-align: center;
	overflow: hidden;
}
.read p {
	margin-block: var(--gap_8px);
}
.read &gt; img {
	margin-block: var(--gap_16px);
}
.read.intro {
	text-align: center !important;
	margin-bottom: var(--gap_32px);
}
.notice_box {
	padding: var(--gap_8px);
    margin-inline: auto;
    width: min(90%, 380px);
    border: dotted calc(var(--gap_8px) / 2) #d9d3bc;
    background-color: #fff;
}

.btn_program {
	margin-top: var(--gap_24px);
}

.pr_text_wrap.flex {
	font-size: 0.9em;
	justify-content: center;
	align-items: flex-end;
}
.pr_text {
	line-height: 1.2;
	padding-bottom: var(--gap_8px);
	margin-inline: var(--gap_16px);
	display: inline-block;
}
.bnr_base {
	width: min(90%,380px);
	margin-inline: auto;
}
.list_ad .bnr_base {
	width: min(100%,480px);
}

.photo_area {
	position: sticky;
	top: 0;
}

#cont_about .read,
#cont_hanabi .read,
#cont_feature .read {
	text-align: justify;
}
#cont_hanabi .swiper_box,
#cont_feature .swiper_box {
	width: calc(100% + var(--gap_32px) * 2);
	margin-left: calc(var(--gap_32px) * -1);
}

#cont_hanabi .swiper_box {
	position: relative;
	padding-top: var(--gap_32px);
}
#cont_hanabi .swiper_box::before {
	position: absolute;
	content: "";
	width: 50%;
	border-top: dashed calc(var(--gap_8px) / 4) #ccc;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.img_area_wrap {
	position: relative;
}
.img_area_text {
	text-align: left;
	text-shadow: 0 0 0.2em #f8f4e6,0 0 0.2em #f8f4e6,0 0 0.2em #f8f4e6,0 0 0.2em #f8f4e6,0 0 0.2em #f8f4e6,0 0 0.3em #f8f4e6,0 0 0.3em #f8f4e6,0 0 0.3em #f8f4e6,0 0 0.3em #f8f4e6,0 0 0.3em #f8f4e6;
	position: absolute;
	bottom: var(--gap_48px);
	left: 0;
	z-index: 100;
}
.img_area_wrap + p {
	text-align: left;
	text-shadow: 0 0 0.2em #f8f4e6,0 0 0.2em #f8f4e6,0 0 0.2em #f8f4e6,0 0 0.2em #f8f4e6,0 0 0.2em #f8f4e6,0 0 0.3em #f8f4e6,0 0 0.3em #f8f4e6,0 0 0.3em #f8f4e6,0 0 0.3em #f8f4e6,0 0 0.3em #f8f4e6;
	margin-top: calc(var(--gap_16px) * -1);
	position: relative;
	z-index: 100;
}
.swiper_hanabi .read &gt; img {
	margin-block: 0;
}
.interview_title {
	line-height: 1.2;
	margin-bottom: var(--gap_16px);
	padding-left: 1.5em;
    text-indent: -1em;
}
.interview_title::before {
	margin-left: -0.5em;
    margin-right: 0.5em;
	content: "\f5ad";
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.interviewer {
	font-size: 0.9em;
	line-height: 1.2;
	color: #666;
	padding-left: 1em;
    text-indent: -1em;
}

.photo_area~section {
	position: relative;
	z-index: 100;
}

.cam_detail {
	margin-block: var(--gap_24px) var(--gap_16px) !important;
}
.logo_quopay {
	width: clamp(80px,18vw,180px) !important;
	margin: var(--gap_24px) auto;
	display: block;
}
.cam_limit {
	margin-block: 0 0 !important;
}
.btn_cdcam .btn {
	font-weight: normal;
	color: #fff;
	border: 0;
	background-color: var(--color_RED);
}
.btn_cdcam a[tabindex="-1"] {
	color: #ff7b7b;
	opacity: 0.3;
}

#cont_ranking .read.intro {
	padding-bottom: var(--gap_32px);
    margin-bottom: 0;
}
#cont_ranking .notice_box {
	background-color: #f8f4e6;
}

.bnr_ranking_wrap {
	position: relative;
}
.fukidashi {
	position: absolute;
	width: clamp(80px,15vw,135px) !important;
	z-index: 150;
}
.fkds01 {
	left: calc(clamp(80px,15vw,135px) * -1 / 2);
    bottom: 100%;
}
.fkds02 {
	right: calc(clamp(80px,15vw,135px) * -1 / 2);
    bottom: calc(100% - var(--gap_24px));
}
.fkds03 {
	left: calc(clamp(80px,15vw,135px) * -1 / 2);
	top: calc(100% - var(--gap_8px));
}
.bnr_ranking {
	margin-bottom: var(--gap_24px);
}
.rank_after_wrap {
	margin-top: var(--gap_32px);
}
.rank_title {
	font-weight: bold;
	line-height: 1.3;
	margin-block: var(--gap_32px) var(--gap_8px);
}
.rank_result {
	border-bottom: solid 1px;
}
.rank_result &gt; div {
	border: solid 1px;
	border-bottom: 0;
	clear: both;
	overflow: hidden;
}
.rank_result dt,
.rank_result dd {
	font-size: 0.8em;
	line-height: 1.2;
	padding: var(--gap_8px);
	display: block;
	float: left;
}
.rank_result dt {
	text-align: center;
	width: 3em;
}
.rank_result dd {
	width: calc(100% - 3em);
	border-left: solid 1px;
}
.rank_result_wrap + .read {
	text-align: justify;
}
.rank_result_wrap + .read .anm_arrow_btm {
	text-align: center;
}
@media screen and (max-width: 767px) {
	#cont_ranking .read.intro,
	.bnr_ranking_wrap+.read {
		width: 70%;
		margin-inline: auto;
	}
}
@media screen and (max-width: 479px) {
	.fkds01,
	.fkds03 {
		left: -10%;
	}
	.fkds02 {
		right: -10%;
	}
	.bnr_ranking_wrap+.read em {
		width: 85%;
		display: inline-block;
	}
}

#cont_finally .read {
	text-align: center;
}
#cont_finally .read p:first-of-type {
	margin-top: 0;
}

.bnr_tenjin_achv {
	width: min(80%, 300px);
}

.bnr_list {
	display: flex;
	flex-wrap: wrap;
	row-gap: var(--gap_24px);
}

#cont_others .bnr_list:last-of-type {
	margin-top: var(--gap_32px);
	padding-top: var(--gap_32px);
	position: relative;
}
#cont_others .bnr_list:last-of-type::before {
	position: absolute;
    content: "";
    width: 50%;
    border-top: dotted calc(var(--gap_8px) / 2) #d9d3bc;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* =======================================
    【クラブTVO記事用】　
=========================*/
.topics_list {
	display: grid;
    gap: var(--gap_24px) var(--gap_24px);
    grid-template-columns: repeat(2, 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.8em;
	line-height: 1.1;
	color: var(--color_BLK);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

/* =============================================================
    【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&gt;.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(8px);
   }
	50% {
	transform: translateY(-8px);
   }
	100% {
	transform: translateY(8px);
   }
}

.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;
  &amp;.slidein-left{
      transform: translate(-100%,0);
  }
  &amp;.slidein-right{
      transform: translate(100%,0);
  }
  &amp;.slidein-up{
      transform: translate(0,-100%);
  }
  &amp;.slidein-bottom{
      transform: translate(0,100%);
  }
  &amp;.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}






footer.tvo-footer {
	position: relative;
    z-index: 1000;
}
.tvo-footer_sp_ad {
	display: none !important;
}
@media only screen and (max-width: 767px) {
    footer.tvo-footer.sp_ad_pad {
        padding-bottom: 0 !important;
    }
}</pre></body></html>