/* -------------------------------------------------
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: "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", "Noto Sans JP", 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;
	letter-spacing: 0.15em;
	color: #ffffff;
	font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 16px;
}

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

/* メインビジュアルの全体コンテナ */

.main-visual {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	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;
	font-family: "Bebas Neue", sans-serif;
}

/* 背景動画の設定 */

.main-visual video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 1;
}

.mv-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6); /* 濃さはここで調整（0.5 = 50%） */
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px); /* 映画のようなわずかなボケ効果 */
	z-index: 2;
}

/* テキストコンテンツの配置 */

.mv-content {
	position: relative;
	z-index: 3; /* 動画とレイヤーより上に配置 */
	text-align: center;
	padding: 0 20px;
}

/* ふわっと上に浮き上がるアニメーション */

/* MARVEL COLLECTION タイポグラフィ（力強い斜体デザイン） */

.mv-title {
	color: #fff;
	font-size: 16vw;
	font-weight: 900;
	letter-spacing: 0.04em;
	line-height: 0.95;
	margin: 0;
	text-transform: uppercase;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(75, 75, 75, 0.8);
}

.mv-title span {
	display: block; /* 改行 */
	opacity: 0;
	-webkit-transform: translateY(30px) scaleY(0.9);
	transform: translateY(30px) scaleY(0.9);
}

/* MARVEL */

.mv-title span:nth-child(1) {
	-webkit-animation-delay: 1.1s;
	animation-delay: 1.1s;
}

/* COLLECTION */

.mv-title span:nth-child(2) {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

/* MARVEL感を高めるアクセント（レッド） */

.mv-subtitle {
	color: #e23636;
	font-size: 3rem;
	font-weight: bold;
	letter-spacing: 0.5em;
	margin-bottom: 15px;
	text-transform: uppercase;
	opacity: 0;
	-webkit-transform: translateY(30px) scaleY(0.9);
	transform: translateY(30px) scaleY(0.9);
}

.mv-line {
	width: 80px;
	height: 4px;
	background-color: #e23636;
	margin: 25px auto 0;
	-webkit-box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.scroll-down {
	position: absolute;
	bottom: 30px; /* 画面下部からの距離 */
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-decoration: none;
	color: #ffffff; /* 画像に合わせて白文字 */
	cursor: pointer;
	z-index: 10;
}

/* 「SCROLL」テキストのスタイリング */

.scroll-text {
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 15px;
}

/* 矢印のスタイリングとアニメーション */

.scroll-arrow {
	font-size: 10px;
	-webkit-animation: bounce 2s infinite ease-in-out;
	animation: bounce 2s infinite ease-in-out;
}

/* 上下にふわふわ動くアニメーションの定義 */

/* -------------------------------------------------
.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(15.36px, 2vw, 30px);
}

.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;
	text-shadow: 0 0 20px #fff;
}

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

.lead__txt {
	font-weight: bold;
	font-size: clamp(14.336px, 1.8666666667vw, 28px);
	margin-bottom: clamp(15.36px, 2vw, 30px);
	color: #ffffff;
	text-shadow: 0 0 5px #111;
}

.lead__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: clamp(51.2px, 6.6666666667vw, 100px);
	row-gap: clamp(28.16px, 3.6666666667vw, 55px);
	-webkit-column-gap: clamp(5.12px, 0.6666666667vw, 10px);
	-moz-column-gap: clamp(5.12px, 0.6666666667vw, 10px);
	column-gap: clamp(5.12px, 0.6666666667vw, 10px);
}

.lead__img img {
	width: calc((100% - 30px) / 4);
	height: auto;
	-webkit-filter: drop-shadow(0px 0px 14px #fff);
	filter: drop-shadow(0px 0px 14px #fff);
	opacity: 0;
	-webkit-transform: translateY(20px) scale(0.8);
	transform: translateY(20px) scale(0.8);
	-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.18, 1.35, 0.4, 1);
	transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.18, 1.35, 0.4, 1);
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.18, 1.35, 0.4, 1);
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.18, 1.35, 0.4, 1), -webkit-transform 0.5s cubic-bezier(0.18, 1.35, 0.4, 1);
}

.lead__img img.is-show {
	opacity: 1;
	-webkit-transform: translateY(0) scale(1);
	transform: translateY(0) scale(1);
}

.lead__copy {
	color: #ffffff;
	text-align: right;
	font-size: 12px;
	padding-top: clamp(61.44px, 8vw, 120px);
	font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
	letter-spacing: 0.15em;
}

/* ==========================================================================
   5. ラインナップセクション
   ========================================================================== */

.lineup {
	padding-top: clamp(76.8px, 10vw, 150px);
	padding-bottom: clamp(76.8px, 10vw, 150px);
	background-color: #111;
	color: #fff;
	overflow: hidden;
}

.lineup__title {
	font-size: clamp(35.84px, 4.6666666667vw, 70px);
	margin-bottom: clamp(76.8px, 10vw, 150px);
	text-align: center;
	font-family: "Bebas Neue", sans-serif;
	letter-spacing: 0.05em;
}

.lineup__title span {
	display: inline-block;
}

.lineup__item {
	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;
	margin-inline: auto;
	margin-bottom: clamp(76.8px, 10vw, 150px);
	gap: clamp(40.96px, 5.3333333333vw, 80px);
	max-width: 1520px;
	padding: 0 35px;
}

.lineup__content {
	width: 48%;
}

.lineup__heading {
	font-size: clamp(14.336px, 1.8666666667vw, 28px);
	margin-bottom: clamp(20.48px, 2.6666666667vw, 40px);
	line-height: 1.4;
	font-family: sans-serif;
}

.lineup__description {
	font-size: clamp(10.24px, 1.3333333333vw, 20px);
	margin-bottom: clamp(51.2px, 6.6666666667vw, 100px);
	line-height: 1.7;
	font-family: sans-serif;
}

/* --- スライダー全体のコンテナ調整 --- */

.lineup__image {
	position: relative;
	width: 46%;
}

/* Swiper本体のサイズ設定と背景座布団より上にするためのz-index */

.lineup-swiper {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.lineup__img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.6s ease;
	transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.6s ease;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.6s ease;
}

/* ボタン */

.lineup__button {
	font-size: clamp(10.24px, 1.3333333333vw, 20px);
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	background: #e23636;
	color: #fff;
	padding: 12px 100px;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	-webkit-transition: background 0.3s, -webkit-transform 0.2s;
	transition: background 0.3s, -webkit-transform 0.2s;
	transition: background 0.3s, transform 0.2s;
	transition: background 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.lineup__button::after {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	-webkit-transform: skewX(-30deg);
	transform: skewX(-30deg);
}

.lineup__button:hover {
	background-color: #ff1e24;
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
}

.lineup__button:hover::after {
	left: 150%;
	-webkit-transition: left 0.7s ease-in-out;
	transition: left 0.7s ease-in-out;
}

/* 赤い背景座布団のデザイン（位置はSwiperの外側を基準にする） */

.lineup__image::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #e23636;
	right: -15px;
	bottom: -15px;
	z-index: 1;
}

/* 偶数番目を左右反転 */

.lineup__item:nth-of-type(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.lineup__item:nth-of-type(even) .lineup__image::before {
	right: auto;
	left: -15px;
}

/* --- Swiperカスタマイズ（矢印やドットの色変更） --- */

.lineup-swiper {
	--swiper-theme-color: #e23636; /* ドットや矢印のアクティブ色を赤に */
	--swiper-navigation-size: 13px; /* 矢印のサイズ */
}

.lineup-swiper .swiper-button-next,
.lineup-swiper .swiper-button-prev {
	color: #fff; /* 矢印自体は白にして背景に埋もれないように */
	background: rgba(0, 0, 0, 0.5); /* 薄い黒背景をつけて視認性確保 */
	width: 26px;
	height: 26px;
	border-radius: 50%;
}

.lineup-swiper .swiper-pagination-bullet {
	background: #fff; /*非アクティブドット*/
	opacity: 0.5;
}

.lineup-swiper .swiper-pagination-bullet-active {
	background: #e23636; /*アクティブドット*/
	opacity: 1;
}

/* ==========================================
   collection-hero (Block)
   ========================================== */

.collection-hero {
	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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-inline: 20px;
	padding-top: clamp(102.4px, 13.3333333333vw, 200px);
	padding-bottom: clamp(15.36px, 2vw, 30px);
	background: url(../img/bg-lead.jpg) no-repeat center center/cover;
	overflow: hidden;
	background-attachment: fixed;
}

.collection-hero__copy {
	color: #ffffff;
	text-align: right;
	font-size: 12px;
	padding-top: clamp(61.44px, 8vw, 120px);
	font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
	-ms-flex-item-align: end;
	align-self: flex-end;
	max-width: 1700px;
	width: 100%;
	padding-inline: 5px;
	margin: auto;
	letter-spacing: 0.15em;
}

.collection-hero__inner {
	z-index: 1;
	max-width: 1700px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-inline: 30px;
}

.collection-hero__content {
	width: 35%;
}

.collection-hero__title {
	line-height: 1;
	font-size: clamp(30.72px, 4vw, 60px);
	margin-bottom: clamp(23.04px, 3vw, 45px);
	font-family: "Bebas Neue", sans-serif;
}

.collection-hero__title-sub {
	display: block;
	color: #ffffff;
}

.collection-hero__title-main {
	display: block;
	color: #e23636;
}

.collection-hero__lead {
	color: #fff;
	margin-bottom: clamp(28.16px, 3.6666666667vw, 55px);
	font-size: clamp(10.24px, 1.3333333333vw, 20px);
	line-height: 1.6;
}

.collection-hero__btn {
	font-size: clamp(11.264px, 1.4666666667vw, 22px);
	display: inline-block;
	padding: 12px 50px;
	font-weight: bold;
	border: 1px solid #e23636;
	color: #e23636;
	text-decoration: none;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.collection-hero__btn:hover {
	color: #fff;
	background-color: #e23636;
	-webkit-box-shadow: 0 0 30px rgba(231, 24, 24, 0.7);
	box-shadow: 0 0 30px rgba(231, 24, 24, 0.7);
}

.collection-hero__gallery {
	width: 65%;
}

.collection-hero__grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center; /* これで2段目が中央に寄ります */
	-webkit-column-gap: clamp(0px, 0vw, 0px);
	-moz-column-gap: clamp(0px, 0vw, 0px);
	column-gap: clamp(0px, 0vw, 0px);
	row-gap: clamp(25.6px, 3.3333333333vw, 50px);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* 1アイテムあたりの幅を、4列（隙間10px）に計算して合わせる */

.collection-hero__item {
	width: calc((100% - 30px) / 4);
}

.collection-hero__item {
	position: relative;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.3s ease;
	transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.3s ease;
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.3s ease;
}

.collection-hero__img {
	width: 100%;
	height: auto;
	display: block;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-filter: drop-shadow(0px 0px 5px #fff);
	filter: drop-shadow(0px 0px 5px #fff);
}

.collection-hero__lead,
.collection-hero__action {
	opacity: 0;
}

.collection-hero__item {
	opacity: 0;
	-webkit-transform-origin: center;
	transform-origin: center;
}

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

.cursor-dot {
	position: fixed;
	width: 8px;
	height: 8px;
	background: #E61F2E;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99999;
	-webkit-transition: -webkit-transform 0.1s;
	transition: -webkit-transform 0.1s;
	transition: transform 0.1s;
	transition: transform 0.1s, -webkit-transform 0.1s;
	mix-blend-mode: screen;
}

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

/* ==========================================
   ローディング画面のスタイル
========================================== */

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	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;
	z-index: 9999;
	overflow: hidden;
	font-family: "Bebas Neue", sans-serif;
}

/* 背景を縦に3分割するスリット */

.loader-bg-slice {
	position: absolute;
	top: 0;
	width: 33.334%;
	height: 100%;
	background-color: #e23636;
}

.loader-bg-slice:nth-child(1) {
	left: 0;
}

.loader-bg-slice:nth-child(2) {
	left: 33.333%;
}

.loader-bg-slice:nth-child(3) {
	left: 66.666%;
}

/* 中央のコンテナ */

.loader-container {
	position: relative;
	z-index: 10;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	perspective: 1000px;
}

/* カウンタースタイル */

.loader-counter {
	font-size: 8rem;
	letter-spacing: 2px;
	line-height: 1;
	text-transform: uppercase;
	display: inline-block;
	opacity: 0;
	-webkit-transform: scale(0.8) rotateX(-90deg);
	transform: scale(0.8) rotateX(-90deg); /* 初期状態（カウント中）は視認性の高い白ベース */
	background-image: linear-gradient(70deg, #ffffff 45%, #ffffff 50%, #ffffff 55%);
	background-size: 500% 100%;
	background-position: 100% 50%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

@media (hover: hover) {

.lead__img img:hover {
	-webkit-transform: scale(1.08) translateY(-5px) !important;
	transform: scale(1.08) translateY(-5px) !important;
	-webkit-filter: drop-shadow(0px 0px 20px #fff);
	filter: drop-shadow(0px 0px 20px #fff);
}

.collection-hero__item:hover {
	-webkit-transform: scale(1.08) translateY(-5px) !important;
	transform: scale(1.08) translateY(-5px) !important;
	-webkit-filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
	filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
	z-index: 10;
}

}

@media (min-width: 768px) {

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

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

}

@media (max-width: 768px) {

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

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

.loader-counter {
	font-size: 5rem;
}

}

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

.foot {
	font-size: 12px;
}

.mv-title {
	font-size: 22vw;
}

.mv-subtitle {
	font-size: 5vw;
}

.scroll-down {
	bottom: 15px;
}

.lead {
	background-attachment: scroll;
}

.lead__inner {
	padding: 0 5px;
}

.lead__ttl {
	font-size: clamp(22.5px, 7.03125vw, 54px);
	line-height: 1.4;
	margin-bottom: 3rem;
	text-shadow: 0 0 10px #fff;
}

.lead__logo {
	width: 100%;
}

.lead__txt {
	font-size: clamp(9.1666666667px, 2.8645833333vw, 22px);
}

.lead__img img {
	-webkit-filter: drop-shadow(0px 0px 2px #fff);
	filter: drop-shadow(0px 0px 2px #fff);
}

.lead__copy {
	font-size: 11px;
	padding-top: clamp(51.2px, 6.6666666667vw, 100px);
}

.lineup {
	padding-bottom: clamp(0px, 0vw, 0px);
}

.lineup__title {
	margin-bottom: clamp(40.96px, 5.3333333333vw, 80px);
}

.lineup__item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 15px;
	margin-bottom: clamp(102.4px, 13.3333333333vw, 200px);
}

.lineup__content {
	width: 90%;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.lineup__heading {
	font-size: clamp(16.384px, 2.1333333333vw, 32px);
	margin-bottom: clamp(12.8px, 1.6666666667vw, 25px);
}

.lineup__description {
	font-size: clamp(11.264px, 1.4666666667vw, 22px);
	margin-bottom: clamp(25.6px, 3.3333333333vw, 50px);
}

.lineup__image {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	width: 80%;
}

.lineup__button {
	font-size: clamp(15.36px, 2vw, 30px);
}

.lineup__image::before {
	right: -10px;
	bottom: -10px;
}

.lineup__item:nth-of-type(even) {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.lineup__item:nth-of-type(even) .lineup__image::before {
	left: -10px;
}

.collection-hero {
	padding-inline: 5px;
	padding-top: clamp(76.8px, 10vw, 150px);
	padding-bottom: clamp(12.8px, 1.6666666667vw, 25px);
	background-attachment: scroll;
}

.collection-hero__copy {
	font-size: 11px;
	padding-top: clamp(51.2px, 6.6666666667vw, 100px);
}

.collection-hero__inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	padding-inline: 0px;
}

.collection-hero__content {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 100%;
	text-align: center;
}

.collection-hero__title {
	font-size: clamp(40.96px, 5.3333333333vw, 80px);
}

.collection-hero__lead {
	margin-bottom: clamp(30.72px, 4vw, 60px);
	font-size: clamp(11.264px, 1.4666666667vw, 22px);
}

.collection-hero__btn {
	font-size: clamp(15.36px, 2vw, 30px);
}

.collection-hero__gallery {
	width: 100%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	margin-bottom: clamp(20.48px, 2.6666666667vw, 40px);
}

.collection-hero__img {
	-webkit-filter: drop-shadow(0px 0px 3px #fff);
	filter: drop-shadow(0px 0px 3px #fff);
}

.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);
}

}

@-webkit-keyframes heroIn {

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

}

@keyframes heroIn {

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

}

@keyframes fadeUp {

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

}

@-webkit-keyframes FadeInUp {

0% {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}

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

}

@keyframes FadeInUp {

0% {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}

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

}

@-webkit-keyframes bounce {

0%,100% {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

50% {
	-webkit-transform: translateY(6px);
	transform: translateY(6px);
}

}

@keyframes bounce {

0%,100% {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

50% {
	-webkit-transform: translateY(6px);
	transform: translateY(6px);
}

}

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