/* -------------------------------------------------
mixin
---------------------------------------------------- */

/*
 * htmlのfont-size用
 */

/*
 * font-size可変用
 */

/* -------------------------------------------------
variable
---------------------------------------------------- */

/* -------------------------------------------------
anime 
---------------------------------------------------- */

.js-fadein {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
	transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
	transition: opacity 0.8s ease, transform 0.8s ease;
	transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.js-fadein.is-show {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* 光が走る */

/* コンテナをフェードアウト */

/* ネオンのチラつき（明滅）を再現するキーフレーム */

/* -------------------------------------------------
reset
---------------------------------------------------- */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}

/* change colours to suit your needs */

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* change border colour to suit your needs */

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

ul li,
ol li {
	list-style-type: none; /*リストマーカー無しにする*/
}

/* -------------------------------------------------
setting
---------------------------------------------------- */

html {
	font-size: 62.5%; /*デフォルト10px、rem使うときはbodyではなく、htmlに62.5%しないとだめ*/
	line-height: 1.8;
	color: #2e1e1e;
	font-family: "vdl-megamarupop-futoline", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	letter-spacing: 0.5em;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	text-spacing-trim: space-first;
	-webkit-tap-highlight-color: transparent; /* リンクがタップされている間の強調をなくす */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-break: strict;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	min-width: 320px;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	overflow-x: hidden;
}

:target {
	scroll-margin-top: 3rem;
}

::-moz-selection {
	background: #acacac;
}

::selection {
	background: #acacac;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

picture {
	display: block;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a,
a:hover,
a:visited,
a:active {
	text-decoration: none;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background-color: #ccc;
}

::-webkit-scrollbar-thumb {
	background-color: #333;
}

/* -------------------------------------------------
l-header
---------------------------------------------------- */

/* -------------------------------------------------
l-footer
---------------------------------------------------- */

.foot {
	padding: 1.5rem;
	background: #212121;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}

/* -------------------------------------------------
mv
---------------------------------------------------- */

.mv {
	height: 100svh;
	background: url(../../img/bg-mv.jpg) no-repeat center center/cover;
	display: -ms-grid;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.mv__ttl img {
	width: 45vw;
}

.mv__inner {
	opacity: 0;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-animation: mvShow 1.2s ease-out forwards;
	animation: mvShow 1.2s ease-out forwards;
	-webkit-animation-delay: 4.2s;
	animation-delay: 4.2s;
}

.mv__ttl img {
	-webkit-animation: neonFlicker 4s infinite alternate ease-in-out;
	animation: neonFlicker 4s infinite alternate ease-in-out;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

/* -------------------------------------------------
.lead
---------------------------------------------------- */

.lead {
	background: url(../../img/bg-lead.jpg) no-repeat center center/cover;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-attachment: fixed;
	padding-top: clamp(61.44px, 8vw, 120px);
	padding-bottom: clamp(92.16px, 12vw, 180px);
}

.lead__inner {
	max-width: 1520px;
	margin-inline: auto;
	padding: 0 15px;
}

.lead__ttl {
	font-size: clamp(28.16px, 3.6666666667vw, 55px);
	margin-bottom: clamp(15.36px, 2vw, 30px);
	color: #ffffff;
}

.lead__logo {
	width: 77%;
	max-width: 860px;
	margin-inline: auto;
	margin-bottom: clamp(25.6px, 3.3333333333vw, 50px);
}

.lead__txt {
	font-family: vdl-megamaru, sans-serif;
	font-weight: 100;
	font-size: clamp(14.336px, 1.8666666667vw, 28px);
	margin-bottom: clamp(15.36px, 2vw, 30px);
	color: #ffffff;
}

.lead__img {
	margin: 5rem auto 0;
	width: 54%;
	max-width: 650px;
}

/* -------------------------------------------------
xxx
---------------------------------------------------- */

.items {
	background: repeat url(../../img/bg-items.jpg) center center;
	text-align: center;
	padding-top: clamp(61.44px, 8vw, 120px);
	padding-bottom: clamp(92.16px, 12vw, 180px);
}

.items__inner {
	max-width: 1520px;
	margin-inline: auto;
	padding-inline: 2.5%;
}

.items__block {
	margin-bottom: clamp(76.8px, 10vw, 150px);
}

.items__block--disney {
	--neon-color: #b362ff;
	--title-color: #ffffff;
	--shadow-color: #b362ff;
}

.items__block--pixar {
	--neon-color: #37a965;
	--title-color: #fff;
	--shadow-color: #37a965;
}

.items__block--starwars {
	--neon-color: #2bbadc;
	--title-color: #fff;
	--shadow-color: #2bbadc;
}

.items__block--marvel {
	--neon-color: #da3715;
	--title-color: #fff;
	--shadow-color: #da3715;
}

.items__block--taj {
	--neon-color: #e2ac47;
	--title-color: #fff;
	--shadow-color: #e2ac47;
}

.items__block--ppg {
	--neon-color: #e34c95;
	--title-color: #fff;
	--shadow-color: #e34c95;
}

.items__ttl {
	font-size: clamp(35.84px, 4.6666666667vw, 70px);
	margin-bottom: clamp(20.48px, 2.6666666667vw, 40px);
	color: #ffffff;
	-webkit-animation: flicker 1.5s infinite alternate;
	animation: flicker 1.5s infinite alternate;
}

.items__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	row-gap: clamp(40.96px, 5.3333333333vw, 80px);
	-webkit-column-gap: clamp(15.36px, 2vw, 30px);
	-moz-column-gap: clamp(15.36px, 2vw, 30px);
	column-gap: clamp(15.36px, 2vw, 30px);
}

.items__item {
	width: 80%;
	-ms-grid-column-align: center;
	justify-self: center;
}

.items__img {
	margin-bottom: clamp(10.24px, 1.3333333333vw, 20px);
}

.items__item-title {
	color: var(--title-color);
	font-family: vdl-megamaru;
	font-weight: 200;
	font-size: clamp(15.36px, 2vw, 30px);
	text-shadow: 0 0 5px var(--shadow-color), 0 0 10px var(--shadow-color), 0 0 20px var(--shadow-color), 0 0 40px var(--shadow-color);
}

.items__link {
	display: block;
}

.items__link:hover .items__img-off {
	opacity: 0;
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}

.items__link:hover .items__img-on {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.items__img {
	position: relative;
	overflow: hidden;
}

.items__img-off,
.items__img-on {
	-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.items__img-off {
	opacity: 1;
}

.items__img-on {
	position: absolute;
	inset: 0;
	opacity: 0;
	-webkit-transform: scale(0.98);
	transform: scale(0.98);
}

.items__ttl span {
	display: inline-block;
	opacity: 0;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	white-space: pre;
}

.items__ttl.is-show span {
	-webkit-animation: fadeUp 0.6s ease forwards;
	animation: fadeUp 0.6s ease forwards;
}

/* -------------------------------------------------
xxx
---------------------------------------------------- */

/* コンテナ */

.neon-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #222;
	z-index: 9999; /* ライン終了後にフェードアウト */
	-webkit-animation: containerFadeOut 0.8s ease forwards;
	animation: containerFadeOut 0.8s ease forwards;
	-webkit-animation-delay: 2.8s;
	animation-delay: 2.8s; /* lineMove の時間と合わせる */
}

/* 光のライン */

.light-line {
	position: absolute;
	top: 50%;
	left: -60%;
	width: 40%;
	height: 5px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#b362ff), to(transparent));
	background: linear-gradient(90deg, transparent, #b362ff, transparent);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation: lineMove 2.8s ease-out forwards;
	animation: lineMove 2.8s ease-out forwards;
	-webkit-filter: blur(1px);
	filter: blur(1px);
}

/* -------------------------------------------------
xxx
---------------------------------------------------- */

/* -------------------------------------------------
xxx
---------------------------------------------------- */

/* -------------------------------------------------
xxx
---------------------------------------------------- */

.ff-mm {
	font-family: vdl-megamaru, sans-serif;
}

/* -------------------------------------------------
c-components
---------------------------------------------------- */

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: min(78%, 620px);
	margin-inline: auto; /* 高さを可変 */
	padding-block: clamp(1rem, 3vw, 2.5rem);
	padding-inline: clamp(1.5rem, 4vw, 3rem);
	background: transparent; /* 枠線も可変 */
	border: clamp(1px, 0.3vw, 2px) solid #e5dc34; /* 角丸も可変 */
	border-radius: clamp(16px, 2vw, 24px);
	color: #fff;
	text-decoration: none; /* フォントサイズ可変 */
	font-size: clamp(21.504px, 2.8vw, 42px);
	margin-top: clamp(102.4px, 13.3333333333vw, 200px);
	font-weight: 100;
	letter-spacing: 0.05em;
	text-align: center;
	text-shadow: 0 0 2px #f7d458, 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(255, 255, 255, 0.6);
	-webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 0 10px rgba(229, 220, 52, 0.4), 0 0 25px rgba(229, 220, 52, 0.25);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 0 10px rgba(229, 220, 52, 0.4), 0 0 25px rgba(229, 220, 52, 0.25);
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

.btn:hover {
	text-shadow: 0 0 4px #f7d458, 0 0 10px #fff, 0 0 20px #fff, 0 0 35px rgba(247, 212, 88, 0.8);
	-webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35), 0 0 15px rgba(229, 220, 52, 0.6), 0 0 35px rgba(229, 220, 52, 0.5), 0 0 60px rgba(229, 220, 52, 0.35);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35), 0 0 15px rgba(229, 220, 52, 0.6), 0 0 35px rgba(229, 220, 52, 0.5), 0 0 60px rgba(229, 220, 52, 0.35);
}

/* -------------------------------------------------
loading
---------------------------------------------------- */

@media (min-width: 768px) {

.is-sp {
	display: none !important;
}

.is-pc {
	display: block !important;
}

}

@media (max-width: 1500px) {

.mv__ttl img {
	width: 60vw;
}

}

@media (max-width: 768px) {

.is-pc {
	display: none !important;
}

.is-sp {
	display: block !important;
}

.mv__ttl img {
	width: 100vw;
}

}

@media screen and (max-width: 767px) {

.lead {
	background: url(../../img/bg-lead-sp.jpg) no-repeat center center/cover;
	background-attachment: scroll;
}

.lead__ttl {
	font-size: clamp(17.5px, 5.46875vw, 42px);
	line-height: 1.4;
	margin-bottom: 3rem;
}

.lead__logo {
	width: 100%;
}

.lead__txt {
	font-size: clamp(9.5833333333px, 2.9947916667vw, 23px);
}

.lead__img {
	width: 95%;
}

.items {
	background: repeat url(../../img/bg-items-sp.jpg) center center;
}

.items__block--taj .items__ttl {
	font-size: clamp(25.8333333333px, 8.0729166667vw, 62px);
}

.items__block--ppg .items__ttl {
	font-size: clamp(16.6666666667px, 5.2083333333vw, 40px);
}

.items__ttl {
	font-size: clamp(30.8333333333px, 9.6354166667vw, 74px);
	-webkit-animation: flicker-sp 1.5s infinite alternate;
	animation: flicker-sp 1.5s infinite alternate;
}

.items__list {
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.items__item-title {
	font-size: clamp(17.5px, 5.46875vw, 42px);
}

.btn {
	width: 88%;
}

}

@-webkit-keyframes flicker {

0%,18%,22%,25%,53%,57%,100% {
	text-shadow: 0 0 4px var(--neon-color), 0 0 11px var(--neon-color), 0 0 19px var(--neon-color), 0 0 40px var(--neon-color), 0 0 80px var(--neon-color);
}

20%,24%,55% {
	text-shadow: none;
}

}

@keyframes flicker {

0%,18%,22%,25%,53%,57%,100% {
	text-shadow: 0 0 4px var(--neon-color), 0 0 11px var(--neon-color), 0 0 19px var(--neon-color), 0 0 40px var(--neon-color), 0 0 80px var(--neon-color);
}

20%,24%,55% {
	text-shadow: none;
}

}

@-webkit-keyframes flicker-sp {

0%,18%,22%,25%,53%,57%,100% {
	text-shadow: 0 0 2px var(--neon-color), 0 0 8px var(--neon-color);
}

20%,24%,55% {
	text-shadow: none;
}

}

@keyframes flicker-sp {

0%,18%,22%,25%,53%,57%,100% {
	text-shadow: 0 0 2px var(--neon-color), 0 0 8px var(--neon-color);
}

20%,24%,55% {
	text-shadow: none;
}

}

@-webkit-keyframes fadeUp {

to {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

}

@keyframes fadeUp {

to {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

}

@-webkit-keyframes lineMove {

0% {
	left: -60%;
	opacity: 0;
}

20% {
	opacity: 1;
}

100% {
	left: 140%;
	opacity: 0;
}

}

@keyframes lineMove {

0% {
	left: -60%;
	opacity: 0;
}

20% {
	opacity: 1;
}

100% {
	left: 140%;
	opacity: 0;
}

}

@-webkit-keyframes containerFadeOut {

to {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

}

@keyframes containerFadeOut {

to {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

}

@-webkit-keyframes mvShow {

from {
	opacity: 0;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

to {
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
	-webkit-transform: scale(1);
	transform: scale(1);
}

}

@keyframes mvShow {

from {
	opacity: 0;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

to {
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
	-webkit-transform: scale(1);
	transform: scale(1);
}

}

@-webkit-keyframes neonFlicker {

0%,19%,21%,23%,25%,54%,56%,100% { /* 通常点灯時：明るく、わずかにドロップシャドウで光が漏れている感を演出 */
	opacity: 1;
	-webkit-filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
	filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

20%,24%,55% { /* 一瞬消えかける（不調なネオンのリアルな動き） */
	opacity: 0.4;
	-webkit-filter: drop-shadow(0 0 0px transparent);
	filter: drop-shadow(0 0 0px transparent);
}

}

@keyframes neonFlicker {

0%,19%,21%,23%,25%,54%,56%,100% { /* 通常点灯時：明るく、わずかにドロップシャドウで光が漏れている感を演出 */
	opacity: 1;
	-webkit-filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
	filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

20%,24%,55% { /* 一瞬消えかける（不調なネオンのリアルな動き） */
	opacity: 0.4;
	-webkit-filter: drop-shadow(0 0 0px transparent);
	filter: drop-shadow(0 0 0px transparent);
}

}

/*# sourceMappingURL=map/style.css.map */
