@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(8vw, -2.212rem + 8.91vw, 3.3854166666666665vw);/*375-768*/
	--cts-width: 1180px;

	/* font */
	--dp-font-jp: "Noto Sans JP", sans-serif;      
	/* 100 to 900 */

	/* color */
	--color-white-1: #FFFFFF;
	--color-white-2: #E6F4FA;
	--color-yellow-1: #F3D432;
	--color-blue-1: #001C4F;
	--color-black-1: #000000;
}

/* LP共通汎用
____________________*/
body {
	padding-right: 0 !important;
	overflow: visible !important;
}
#container a, #container a span {
    color: inherit;
    text-decoration: none;
}

figure {
	margin: 0;
	text-align: center;
}
img {
	image-rendering: -webkit-optimize-contrast;
}
.l-header {
    width: 100%;
    background: #fff;
    position: relative;
}
.c-breadcrumb--gray {
	display: flex;
	align-items: center;
}
.bnr_link_win11_wrap {
    margin: 0 auto;
}
.bnr_link_win11 img {
    transition: opacity 0.3s;
    width: 300px;
}
.bnr_link_win11 img:hover {
	opacity: 0.75;
}
.BreadcrumbList_wrap {
	background: #fff;
	position: relative;
    z-index: 2;
}
.footer-wrap {
    background: #fff;
    position: relative;
    z-index: 2;
}
@media screen and (min-width: 768px), print and (min-width: 768px) {
	.c-breadcrumb__list.u-pc-width,
	.bnr_link_win11_wrap.u-pc-width {
		padding-inline: 30px;
	}
	.bnr_link_win11_wrap.u-pc-width {
		width: auto;
	}
}
@media screen and (max-width: 1280px) {
    .l-header {
        z-index: 10;
    }
}
@media screen and (max-width: 1000px) {
	.c-breadcrumb--gray {
		display: inherit;
	}
	.bnr_link_win11_wrap {
		width: 100%;
		margin: 10px auto 0 !important;
		padding-block-end: 10px;
	}
	.bnr_link_win11 {
		width: 100%;
		margin-top: 0;
		text-align: center;
	}
}
.contents__wrap {
	width: 100%;
	margin-inline: auto;
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	letter-spacing: 0.05em;
	color: var(--color-white-1);
}
.contents__wrap img {
	max-width: 100%;
	vertical-align: bottom;
}
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
.flash:hover {
	animation-name: hover-flash;
	animation-duration: 1s;
	opacity: .85;
}
@keyframes hover-flash {
	0% {
		opacity: .3;
	}
	100% {
		opacity: .85;
	}
}

/* コンテンツ
____________________*/
::selection {
	color: var(--color-white-1);
	background-color: var(--color-blue-1);
}
.contents__wrap {
	position: relative;
	z-index: 1;
	padding-bottom: 5.208333333333334vw;
}
.contents__wrap .lp-bg {
	width: 100vw;
	height: 100vh;
	background: url(../../gamepc/img/nijifes2026/bg-pc.webp) no-repeat center center/cover;
	position: fixed;
	top: 0;
	left: 0;
}
.contents__inner {
	width: 100%;
	max-width: var(--cts-width);
	margin-inline: auto;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
	position: relative;
}
@media (max-width: 768px) {/*375-768*/
/* コンテンツ
____________________*/
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
.contents__wrap {
	padding-bottom: 17.333333333333336vw;
}
.contents__wrap .lp-bg {
	background: url(../../gamepc/img/nijifes2026/bg-sp.webp) no-repeat center center/cover;
}
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-bottom: 3px solid var(--color-white-2);
}
.contents--mv img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
@media (max-width: 768px) {/*375-768*/
.contents--mv {
	border-bottom: 1px solid var(--color-white-2);
}
}
/* intro
____________________*/
.contents--intro {
	width: 100%;
	padding-top: 4.166666666666666vw;
	position: relative;
	z-index: 1;
}
.intro-catch {
	font-size: 3.125vw;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}
.intro-txt {
	font-size: 1.1458333333333333vw;
	font-weight: 500;
	line-height: 2;
	text-align: center;
	margin-top: 4.6875vw;
}
.intro-flex {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 3.125vw;
	margin-top: 5.46875vw;
}
.bnr-link {
    display: block; 
    width: 18.541666666666668vw;
    position: relative;
    overflow: hidden; /* 光を枠内に収める */
    line-height: 0;
}

.bnr-link img {
    width: 100%;
    height: auto;
    /* transitionやtransformを削除してズームを停止 */
}

/* --- キラッと光るエフェクトの本体 --- */
.bnr-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%; 
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 1;
    pointer-events: none; /* 万が一のクリック干渉防止 */
}

/* ホバー時に光のアニメーションのみ実行 */
.bnr-link:hover::before {
    animation: shine-bnr 0.8s forwards;
}

@keyframes shine-bnr {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}
.movie-box {
	width: 32.96875vw;
	aspect-ratio: 16 / 9;
}
.movie-box iframe {
	width: 100%;
	height: 100%;
}
.intro-txt-wrap {
	margin-top: 6.510416666666667vw;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.0416666666666665vw;
}
.star {
	width: 3.2031249999999996vw;
	animation: star-bound 2s ease-in-out infinite;
    transform-origin: center;
}
@keyframes star-bound {
    0%, 100% {
        transform: scale(1); /* 元のサイズ */
    }
    50% {
        transform: scale(1.2); /* 1.2倍に拡大（お好みで調整） */
    }
}
.intro-txt-big {
	font-size: 3.125vw;
	font-weight: 700;
	line-height: 1;
}
@media (max-width: 768px) {/*375-768*/
	.contents--intro {
		padding-top: 9.333333333333334vw;
	}
	.intro-catch {
		font-size: 6.033333333333333vw;
		letter-spacing: 0;
		line-height: 1.8;
	}
	.intro-txt {
		font-size: 3.4666666666666663vw;
		margin-top: 9.333333333333334vw;
		letter-spacing: 0;
		line-height: 3;
	}
	.intro-flex {
		flex-direction: column;
		align-items: center;
		gap: 17.333333333333336vw;
		margin-top: 22.666666666666664vw;
	}
	.bnr-link {
		width: 62.66666666666667vw;
	}
	.movie-box {
		width: 84vw;
	}
	.intro-txt-wrap {
		margin-top: 18.666666666666668vw;
		gap: 2.4vw;
	}
	.star {
		width: 6.133333333333333vw;
	}
	.intro-txt-big {
		font-size: 6.133333333333333vw;
	}
}
/* outline
____________________*/
.contents--outline {
	padding-top: 8.59375vw;
}
.out-line-block {
	background: var(--color-white-1);
	border-radius: 2.083333333333333vw;
	padding: 2.604166666666667vw 2.604166666666667vw 3.3854166666666665vw;
	box-sizing: border-box;
	position: relative;
}
.out-line-block .deco {
	width: 9.883333333333333vw;
	position: absolute;
	top: -5.208333333333334vw;
	left: 14.0625vw;
}
.ttl-outline {
	color: var(--color-blue-1);
	font-size: 2.083333333333333vw;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	position: relative;
}
.ttl-outline::after {
	content: "";
	width: 13.333333333333334vw;
	height: 1px;
	background: var(--color-blue-1);
	position: absolute;
	left: 50%;
	bottom: -1.5625vw;
	transform: translateX(-50%);
}
.txt-outline {
	color: var(--color-blue-1);
	font-size: 1.1458333333333333vw;
	font-weight: 700;
	text-align: center;
	line-height: 2;
	margin-top: 2.34375vw;
}
.link-btn {
	color: var(--color-blue-1);
	font-size: 1.5625vw;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	width: 31.666666666666664vw;
	background: var(--color-yellow-1);
	border-radius: 9999px;
	display: block;
	padding-block: 2.2395833333333335vw;
	margin: 1.8229166666666667vw auto 0;
	position: relative;
	z-index: 1;
	position: relative;
    overflow: hidden; /* 光がはみ出さないように必須 */
    transition: transform 0.3s ease; /* ホバー時のボタンの動き用（お好みで） */
}
.link-btn .new-window {
	width: 2.2395833333333335vw;
	height: 2.2916666666666665vw;
	background: url(../../gamepc/img/nijifes2026/icon-new-window.webp) no-repeat center center/contain;
	position: absolute;
	top: 50%;
	right: 3.125vw;
	transform: translateY(-50%);
	z-index: 2;
}
/* ホバー時に少しボタンを大きくする場合（お好みで） */
.link-btn:hover {
    transform: scale(1.03);
}

/* --- キラッと光るエフェクトの本体 --- */
.link-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* スタート位置はボタンの外側左 */
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%, /* 光の強さ */
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg); /* 斜めにする */
    z-index: 1; /* テキストより下、背景より上 */
}

/* ホバーした時にアニメーションを実行 */
.link-btn:hover::before {
    animation: shine 0.75s forwards;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        left: 150%; /* 右側へ通り抜ける */
        opacity: 0;
    }
}
/* --- Z-indexの調整 --- */
.link-btn span {
    position: relative;
    z-index: 2; /* 光より上にテキストが来るように */
}
.lp-copy {
	font-size: 0.9375vw;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	margin: 5.208333333333334vw auto 0;
	display: block;
}
@media (max-width: 768px) {/*375-768*/
	.contents--outline {
		padding-top: 20vw;
	}
	.out-line-block {
		padding: 8vw 6.4vw 9.333333333333334vw;
		border-radius: 4vw;
	}
	.out-line-block .deco {
		width: 30.8vw;
		top: -8.208333vw;
		left: 2.0625vw;
	}
	.ttl-outline {
		font-size: 6.666666666666667vw;
	}
	.ttl-outline::after {
		width: 57.333333333333336vw;
		bottom: -5.866666666666666vw;
	}
	.txt-outline {
		font-size: 3.4666666666666663vw;
		margin-top: 12vw;
	}
	.link-btn {
		font-size: 3.4666666666666663vw;
		width: 70.53333333333333vw;
		padding-block: 4.933333333333334vw;
		margin-top: 8.533333333333333vw;
	}
	.link-btn .new-window {
		width: 4.989333333333334vw;
		height: 5.104vw;
		right: 7.125vw;
	}
	.lp-copy {
		font-size: 3.2vw;
		margin-top: 18.666666666666668vw;
	}
}

/*　アニメーション
____________________*/
.fade-in { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-center { transform: translate(0, 0); }      /* 位置変更なし */
.fade-in-top { transform: translateY(-75); }      /* 上から */
.fade-in-bottom { transform: translateY(75px); }    /* 下から */
.fade-in-right { transform: translateX(75px); }     /* 右から */
.fade-in-left { transform: translateX(-75px); }     /* 左から */
.fade-in-zoom-in { transform: scale(0.6); }          /* ズームイン：最初は小さく表示される */
.fade-in-zoom-out { transform: scale(1.1); }         /* ズームアウト：最初は大きく表示される */
.fade-in.is-visible { opacity: 1; transform: translate(0, 0); } /* 元の位置に戻る */