@charset "UTF-8";

/*************
FMT
*************/
html {
  touch-action: manipulation;
}
body.is-splash {
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
}
.header_box {
	border-bottom: 1px solid #222222;
}
.content_wrap {
	margin-top: 66px;
}
@media(min-width:751px){
	.content_wrap {
		margin-top: 90px;
	}
}
/*************
CONTENTS
*************/
/*
page
*/
.page {
	--ff-default: "Noto Sans JP", sans-serif;
	--ff-en: "Inter", sans-serif;
	--ff-deco: "Oswald", sans-serif;

	--header-height: 66px;
  --base-width: 390;
	--vw: calc(100vw / var(--base-width));

	--black: #000000;
	--white: #FFFFFF;
	--gray: #CDCDCD;
	--gray-dark: #7F7F7F;
	--gray-light: #EAEAEA;
	--red: #B71649;
	--red-02: #FF0000;

	font-family: var(--ff-default);
	font-weight: 400;
	letter-spacing: 0;
	box-sizing: border-box;
	overflow-x: clip;
}
.page * {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

.page__wrapper {
	background-color: var(--black);
	opacity: 0;
}

@media(min-width:751px) {
	.page {
		--header-height: 90px;
		--base-width: 751;
	}
}


/*
overlay
*/
.overlay {
	position: fixed;
	top: 0;
	left: 100%;
	display: flex;
	width: auto;
	height: 100vh;
	z-index: 998;
	overflow: hidden;
}

.overlay__black {
	width: calc(1770 / 1440 * 150vw);
	height: 100%;
	background-color: #000000;
	clip-path: polygon(calc(480 / 1440 * 100%) 0%, 100% 0%, calc(100% - 480 / 1440 * 100%) 100%, 0% 100%);
}
.overlay__white {
	width: calc(1770 / 1440 * 150vw);
	height: 100%;
	background-color: #FFFFFF;
	margin-left: calc(-240 / 1440 * 100%);
	clip-path: polygon(calc(480 / 1440 * 100%) 0%, 100% 0%, calc(100% - 480 / 1440 * 100%) 100%, 0% 100%);
}

@media(min-width:751px) {
	.overlay__black {
		width: calc(1770 / 1440 * 100vw);
		clip-path: polygon(calc(278 / 1770 * 100%) 0%, 100% 0%, calc(100% - 278 / 1770 * 100%) 100%, 0% 100%);
	}
	.overlay__white {
		width: calc(1770 / 1440 * 100vw);
		clip-path: polygon(calc(278 / 1770 * 100%) 0%, 100% 0%, calc(100% - 278 / 1770 * 100%) 100%, 0% 100%);
	}
}



/*
mv
*/
.mv {
	padding-bottom: 60px;
	min-height: calc(100vh - var(--header-height));
	background-color: #E8E8E8;
	position: relative;
	z-index: 0;
}

.mv::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-image: url(../img/mv/bg.png);
	background-size: cover;
	background-position: left center;
	mix-blend-mode: screen;
}

.mv__heading {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.mv__inner {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}

.mv__catch {
	width: calc(340 / 390 * 100%);
	max-width: 560px;
	margin-top: calc(67 / 390 * -100vw);
	position: relative;
	z-index: 1;
}

.mv__catchImg {
	display: flex;
}


.mv__catchImg {
	display: flex;
}
.mv__catchBadge {
	width: min(72px, calc(44 / 390 * 100vw));
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 15.5%;
	top: 60%;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mv__catchBadge::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/common/bg-circle.svg);
	background-size: cover;
	background-position: center;
	z-index: -1;
	animation: badgeRotate 15s linear infinite;
}
.mv__catchBadge span {
	display: flex;
	align-items: baseline;
	font-size: min(14.4px, calc(8.8 / 390 * 100vw));
	font-weight: 900;
	line-height: 1;
	color: var(--white);
	transform: skewX(-8deg) translateY(max(-3.6px, calc(-2.2 / 390 * 100vw))) translateX(0.275px);
}
.mv__catchBadge span strong {
	font-size: min(27.2px, calc(16.6 / 390 * 100vw));
	font-weight: 900;
	line-height: 1;
	transform: translateY(min(1.6px, calc(1 / 390 * 100vw)));
}

.mv__image {
	width: 100%;
	max-width: 640px;
}

@keyframes badgeRotate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media(min-width:751px) {
	.mv {
		padding-bottom: 96px;
	}
}

@media(min-width:992px) {
	.mv {
		max-height: calc(920px - var(--header-height));
		min-height: auto;
		height: calc(100vh - var(--header-height));
		position: sticky;
		top: var(--header-height);
	}

	.mv::before {
		background-image: url(../img/mv/bg_pc.png);
		background-position: center center;
	}

	.mv__inner {
		height: 100%;
		max-width: 1350px;
		padding-left: 40px;
		margin-inline: auto;
		flex-direction: row;
		justify-content: center;
	}

	.mv__catch {
		margin-top: 0;
		margin-right: max(-110px, calc(-56 * var(--vw)));
		width: calc(695 / 1350 * 100%);
		max-width: 695px;
	}

	.mv__catchBadge {
		width: min(90px, calc(90 / 1350 * 100vw));
		top: 59%;
	}
	.mv__catchBadge span {
		font-size: min(18px, calc(18 / 1350 * 100vw));
		transform: skewX(-8deg) translateY(max(-4px, calc(-4 / 1350 * 100vw)));
	}
	.mv__catchBadge span strong {
		font-size: min(34px, calc(34 / 1350 * 100vw));
		transform: translateY(min(2.24px, calc(1.4 / 1350 * 100vw)));
	}

	.mv__image {
		margin-bottom: -32px;
		width: calc(722 / 1350 * 100%);
		max-width: 722px;
	}
}



/*
intro
*/
.intro {
	position: relative;
	z-index: 1;
}

.intro__info {
	width: 100%;
	max-width: 340px;
	height: 36px;
	padding-top: 8px;
	padding-inline: 24px;
	margin-top: -36px;
	margin-inline: auto;
	background-color: var(--black);
	clip-path: polygon(48px 0%, calc(100% - 48px) 0%, 100% 100%, 0% 100%);
}

.intro__infoCont {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro__infoText {
	display: flex;
	align-items: baseline;
	transform: skewX(-8deg);
}

.intro__infoYear {
	font-family: var(--ff-en);
	font-size: 15px;
	font-weight: bold;
	line-height: 1;
	color: var(--white);
}

.intro__infoMain {
	font-family: var(--ff-en);
	font-size: 22.8px;
	font-weight: bold;
	line-height: 1;
	color: var(--white);
}

.intro__infoSub {
	font-family: var(--ff-en);
	font-size: 12.8px;
	font-weight: bold;
	line-height: 1;
	color: var(--white);
}

.intro__infoArrow {
	width: 20px;
	margin-left: 4px;
}

.intro__inner {
	padding-inline: 25px;
	background-image: linear-gradient(to top, transparent 122px, var(--black) 122px);
	position: relative;
	z-index: 0;
}

.intro__logo {
	display: flex;
	max-width: 200px;
	padding-top: 94px;
	margin-inline: auto;
}

.intro__heading {
	max-width: 340px;
	margin-top: 52px;
	margin-inline: auto;
	position: relative;
}

.intro__icon {
	width: 70px;
	font-style: normal;
	position: absolute;
	left: 0;
	top: -24px;
}
.intro__iconBadge {
	width: 70px;
	aspect-ratio: 1 / 1;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro__iconBadge::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/common/bg-circle.svg);
	background-size: cover;
	background-position: center;
	z-index: -1;
	animation: badgeRotate 15s linear infinite;
}
.intro__iconBadge span {
	display: flex;
	align-items: baseline;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	color: var(--white);
	transform: skewX(-8deg) translateY(-3.5px);
}
.intro__iconBadge span strong {
	font-size: 26.4px;
	font-weight: 900;
	line-height: 1;
	transform: translateY(1.5px);
}

.intro__title {
	font-size: 32px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
	color: var(--white);
}

.intro__title span {
	display: inline-block;
	transform: skewX(-8deg);
}

.intro__content {
	margin-top: 20px;
}

.intro__text {
	font-size: 16px;
	font-weight: 500;
	line-height: 2.4;
	text-align: center;
	color: var(--white);
}

.intro__text br {
	display: none;
}

.intro__text .--paragraph {
	display: block;
	line-height: 2.4;
}

.intro__text .--border {
	font-weight: 900;
	color: var(--black);
	padding-inline: 3px;
	margin-inline: 3px;
	position: relative;
	z-index: 0;
}
.intro__text .--border::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 22px;
	background-color: var(--white);
	z-index: -1;
}

.intro__text .--strong {
	font-size: 22px;
	font-weight: 900;
	line-height: 2;
}

.intro__text .--large {
	font-size: 26px;
	font-weight: 900;
	line-height: 1.8;
}

.intro__stadium {
	margin-top: -122px;
	background-color: var(--black);
	position: relative;
	/* z-index: -1; */
}

.intro__stadiumImage {
	display: flex;
	width: calc(100% + 50px);
	max-width: 1265px;
	margin-left: -25px;
	overflow: hidden;
}

.intro__stadiumImage img {
	opacity: 0;
	transition: opacity 0.3s ease-out, transform 0.5s linear;
}
.intro__stadiumImage.is-animated img {
	opacity: 1;
	transform: scale(1.1);
}

.intro__stadiumBox {
	display: none;
}

@media(min-width:751px) {
	.intro {
		position: relative;
		z-index: 1;
	}

	.intro__info {
		width: 90%;
    max-width: 1060px;
    height: 62px;
    padding-top: 10px;
    padding-inline: 24px;
    margin-top: -62px;
    clip-path: polygon(82px 0%, calc(100% - 82px) 0%, 100% 100%, 0% 100%);
	}

	.intro__infoYear {
		font-size: 32px;
		font-weight: 700;
	}

	.intro__infoMain {
		font-size: 50px;
		font-weight: 700;
	}

	.intro__infoSub {
		font-size: 28px;
		font-weight: 700;
	}

	.intro__infoArrow {
		width: 48px;
		margin-left: 8px;
	}

	.intro__inner {
		background-color: unset;
		background-image: linear-gradient(to top, transparent 342px, var(--black) 342px);
	}

	.intro__logo {
		max-width: 431px;
		padding-top: 212px;
	}

	.intro__heading {
		width: fit-content;
		max-width: unset;
		margin-top: 70px;
	}

	.intro__icon {
		width: 90px;
		position: absolute;
		left: -10px;
		top: -22px;
	}
	.intro__iconBadge {
		width: 90px;
	}
	.intro__iconBadge span {
		font-size: 18px;
		transform: skewX(-8deg) translateY(-4.5px);
	}
	.intro__iconBadge span strong {
		font-size: 34px;
		transform: translateY(2px);
	}

	.intro__title {
		width: 100%;
		font-size: 50px;
	}

	.intro__title span {
		display: block;
	}

	.intro__content {
		margin-top: 60px;
	}

	.intro__text {
		font-size: 24px;
	}

	.intro__text br {
		display: block;
	}

	.intro__text .--paragraph {
		display: contents;
		line-height: 2.4;
	}

	.intro__text .--border {
		padding-inline: 5px;
	}
	.intro__text .--border::before {
		height: 34px;
	}

	.intro__text .--strong {
		font-size: 34px;
	}

	.intro__text .--large {
		font-size: 40px;
	}

	.intro__stadium {
		margin-top: -342px;
		position: sticky;
		top: var(--header-height);
		z-index: 0;
	}

	.intro__stadiumImage {
		margin-inline: auto;
		height: 100vh;
	}
	.intro__stadiumImage img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.intro__stadiumBox {
		display: block;
		position: sticky;
		top: var(--header-height);
		top: 0;
		left: 0;
		z-index: 0;
		width: 100vw;
		height: 100vh;
		-webkit-mask-image: linear-gradient(
			to bottom,
			transparent 0%,
			black 10%
		);
		mask-image: linear-gradient(
			to bottom,
			transparent 0%,
			black 10%
		);
		-webkit-backdrop-filter: grayscale(1);
		backdrop-filter: grayscale(1);
	}
}

@media(min-width:992px) {

	.intro__heading {
		padding-left: 100px;
	}

	.intro__title span {
		display: inline-block;
	}

	.intro__icon {
		width: 90px;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}



/*
nav
*/
.nav {
	padding-top: 68px;
	padding-bottom: 146px;
}

.nav__inner {
	max-width: 1120px;
	padding-inline: 30px;
	margin-inline: auto;
}

.nav__heading {
	font-family: var(--ff-en);
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
	color: var(--white);
}

.nav__list {
	margin-top: 24px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 15px;
}

.nav__item {
	display: flex;
}
.nav__item:last-child .nav__label {
	font-size: 16px;
}
/* .nav__item:nth-child(2) .nav__label {
	line-height: 2;
} */

.nav__frame {
	width: 330px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../img/nav/button-border.png);
	background-size: 100% 100%;
	mask-image: url(../img/nav/button-mask.png);
	mask-size: 100% 100%;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.nav__frame::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	transition: opacity 0.3s ease;
	z-index: -1;
}

.nav__frame i {
	display: flex;
	width: 20px;
	height: 10px;
	opacity: 0.8;
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
}

.nav__label {
	width: 100%;
	padding-right: 28px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
	color: var(--white);
}

@media(min-width:751px) {
	.nav {
		height: calc(120vh - var(--header-height));
		margin-top: -80vh;
		padding-top: calc(70 / 780 * 100vh);
		padding-bottom: 0;
		position: sticky;
		top: var(--header-height);
	}

	.nav__heading {
		font-size: 30px;
	}

	.nav__list {
		margin-top: 54px;
		column-gap: 60px;
		row-gap: 40px;
	}

	.nav__item:last-child .nav__label {
		font-size: 20px;
	}

	.nav__frame {
		width: 500px;
		height: 140px;
		background-color: rgba(0, 0, 0, 0.8);
	}

	.nav__frame::before {
		transition: transform 0.2s ease-out;
	}

	.nav__frame i {
		width: 28px;
		height: 14px;
		right: 44px;
		transform-origin: center;
		transition: transform 0.2s ease-out, opacity 0.2s ease-out;
	}

	.nav__label {
		font-size: 18px;
		padding-right: 46px;
		transition: color 0.2s ease-out;
	}

	.nav__frame:hover::before {
		transform: translateX(100%);
	}
	.nav__frame:hover i {
		opacity: 1;
		transform: translateY(-50%) scale(1.87);
	}
	.nav__frame:hover .nav__label {
		color: var(--black);
	}
	.nav__frame:hover i img {
		opacity: 1;
	}
}

@media(min-width:992px) {
	.nav {
		padding-top: calc(140 / 780 * 100vh);
	}
}


/*
section
*/
.section {
	background-color: var(--white);
}

.section_wrap {
	display: contents;
}

@media(min-width:751px) {
	.section {
		z-index: 1;
	}
	.section.--last {
		position: relative;
		z-index: 1;
	}
	.section_wrap {
		display: block;
	}
}


/*
heading
*/
.heading {
	width: 100%;
	padding-block: 40px 12px;
	border-top: 1px solid var(--black);
	background-color: var(--white);
	position: relative;
	z-index: 0;
}
.heading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(50% - 155px);
	height: 100%;
	background-image: url(../img/common/pattern-border.svg);
	background-repeat: repeat;
	background-size: 10px 360px;
	background-position: left center;
	transform: scaleX(-1);
	z-index: -1;
}
.heading::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: calc(50% - 155px);
	height: 100%;
	background-image: url(../img/common/pattern-border.svg);
	background-repeat: repeat;
	background-size: 10px 360px;
	background-position: left center;
	z-index: -1;
}

.heading__inner {
	max-width: 390px;
	margin-inline: auto;
	padding-inline: 40px;
}

.heading__label {
	font-family: var(--ff-en);
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
}

.heading__logo {
	display: flex;
	max-width: 163px;
	margin-top: 20px;
	margin-inline: auto;
}

.heading__main {
	min-height: 2.8em;
	max-width: 270px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: 20px;
	margin-inline: auto;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-align: center;
}
.heading__main.--smaller {
	font-size: 14px;
}

@media(min-width:751px) {
	.heading {
		padding-block: 76px 40px;
	}
	.heading::before {
		width: calc(50% - 370px);
		background-image: url(../img/common/pattern-border_pc.svg);
		background-size: 40px 500px;
	}
	.heading::after {
		width: calc(50% - 370px);
		background-image: url(../img/common/pattern-border_pc.svg);
		background-size: 40px 500px;
	}

	.heading__inner {
		max-width: 820px;
		margin-inline: auto;
		padding-inline: 40px;
	}

	.heading__label {
		font-size: 70px;
	}

	.heading__logo {
		max-width: 172.6px;
		margin-top: 40px;
	}

	.heading__main {
		min-height: auto;
		max-width: 562px;
		margin-top: 65px;
		font-size: 30px;
		line-height: 1;
		letter-spacing: 0.1em;
	}
	.heading__main.--smaller {
		font-size: 24px;
		line-height: 1.4;
		letter-spacing: 0;
	}
}


.headingMain {
	background-color: var(--black);
	position: relative;
	z-index: 0;
}

.completeHeading {
	background-color: unset;
	background-image: linear-gradient(to bottom, var(--black) 50%, var(--gray) 50%);
}

.headingMain__frame {
	height: 100%;
}

.headingMain__main {
	width: fit-content;
	height: 100%;
	min-height: 140px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headingMain__main.--smaller {
	min-height: 100px;
}

.headingMain__chara {
	display: none;
}

.headingMain__title {
	font-size: 28px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
	color: var(--white);
	transform: skewX(-8deg);
}
.headingMain__main.--smaller .headingMain__title {
	font-size: 22px;
}

.headingMain__title span {
	font-size: 20px;
}

.headingMain__sub {
	width: fit-content;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	position: relative;
}

.headingMain__subTitle {
	font-size: 26px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
	transform: skewX(-8deg);
}

.headingMain__subChara01 {
	width: 58px;
	position: absolute;
	bottom: 0;
	right: -48px;
}

.headingMain__subChara02 {
	width: 46px;
	position: absolute;
	bottom: 0;
	left: -40px;
}

.headingMain__bg {
	display: flex;
	column-gap: 40px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
}
.headingMain__bg.--exclusion {
	mix-blend-mode: exclusion;
}

.headingMain__bgLabel {
	font-family: var(--ff-en);
	font-size: 122.5px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
  white-space: nowrap;
	color: #1A1A1A;
	animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media(min-width:751px) {
	.headingMain__main {
		min-height: 180px;
	}
	.headingMain__main.--smaller {
		position: relative;
	}

	.headingMain__chara {
		display: flex;
		width: 88px;
		position: absolute;
		bottom: 0;
		left: -96px;
	}

	.headingMain__title {
		font-size: 50px;
	}
	.headingMain__title span {
		font-size: 40px;
	}
	.headingMain__main.--smaller .headingMain__title {
		font-size: 35px;
	}

	.headingMain__subTitle {
		font-size: 35px;
	}

	.headingMain__subChara01 {
		display: none;
	}

	.headingMain__subChara02 {
		width: 70px;
		left: -75px;
	}

	.headingMain__bgLabel {
		font-size: 140px;
	}
}

@media(min-width:992px) {

}

@media(min-width:1280px) {

	.completeHeading {
		background-image: linear-gradient(to bottom, var(--black) calc(50% + 6px), var(--gray) calc(50% + 6px));
	}
	.headingMain__main.--smaller {
		min-height: 106px;
	}
	.headingMain__main.--smaller .headingMain__title {
		font-size: 45px;
	}
	.headingMain__title br:not(.br) {
		display: none;
	}
	.headingMain__subTitle br {
		display: none;
	}
	.headingMain__sub {
		min-height: 94px;
	}
	.headingMain__subTitle {
		font-size: 48px;
	}
}



/*
collabo
*/
.collaboInfo {
	margin-top: 40px;
}

.collaboInfo__inner {
	padding-inline: 20px;
}

.collaboInfo__container {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	row-gap: 4px;
}

.collaboInfo__term {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-align: center;
	padding: 10px 50px;
	background-color: var(--gray);
	border: 2px solid var(--black);
}

.collaboInfo__list {
	display: flex;
	flex-direction: column;
	row-gap: 4px;
}

.collaboInfo__box {
	padding: 10px 50px;
	background-color: var(--white);
	border: 2px solid var(--black);
}

.collaboInfo__cont {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
}

.collaboInfo__label {
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.collaboInfo__detail {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}
.collaboInfo__detail span {
	display: inline-block;
}

.collaboInfo__lead {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}

.collaboInfo__lead  .--paragraph {
	display: inline-block;
}

.collaboInfo__lead  .--border {
	color: var(--white);
	padding-inline: 2px;
	position: relative;
	z-index: 0;
}
.collaboInfo__lead  .--border::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 30px;
	background-color: var(--black);
	z-index: -1;
}

@media(min-width:751px) {
	#collaboration {
		margin-top: 50vh;
	}

	.collaboInfo {
		margin-top: 50px;
	}

	.collaboInfo__inner {
		max-width: 790px;
		margin-inline: auto;
	}

	.collaboInfo__container {
		grid-template-columns: 160px minmax(0, 1fr);
		column-gap: 4px;
	}

	.collaboInfo__term {
		padding: 50px 10px;
	}

	.collaboInfo__list {
		display: flex;
		flex-direction: column;
		row-gap: 4px;
	}

	.collaboInfo__box {
		padding: 14px 10px 14px 70px;
	}

	.collaboInfo__cont {
		column-gap: 0;
		justify-content: flex-start;
	}

	.collaboInfo__label {
		font-size: 20px;
	}

	.collaboInfo__detail {
		font-size: 20px;
	}
	.collaboInfo__detail span {
		display: inline-block;
	}

	.collaboInfo__lead {
		margin-top: 40px;
		font-size: 24px;
	}

	.collaboInfo__lead  .--border::before {
		height: 36px;
	}
}


.collaboCard {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	row-gap: 0;
}

.collaboCard__inner {
	max-width: 1060px;
	padding-top: 13px;
	margin-inline: auto;
	position: relative;
	overflow-x: clip;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.25s ease-out;
}
.collaboCard__inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	transition: transform 0.25s ease-out 0.25s;
}
.collaboCard__inner.is-animated {
	clip-path: inset(0 0 0 0);
}
.collaboCard__inner.is-animated::before {
	transform: translateX(100%);
}

.collaboCard__heading {
	padding: 6.4px;
	background-color: var(--black);
}

.collaboCard__headingFrame {
	width: fit-content;
	margin-inline: auto;
	position: relative;
}

.collaboCard__headingLabel {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--red);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	color: var(--white);
	position: absolute;
	top: -19.4px;
	left: -35px;
}

.collaboCard__headingTitle {
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	color: var(--white);
}

.collaboCard__headingDate {
	margin-top: 6px;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	color: var(--white);
}

.collaboCard__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collaboCard__item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	padding: 26px 10px 50px;
	background-size: cover;
	background-position: center;
}
.collaboCard__item:nth-child(1) {
	background-image: url(../img/collabo/noise-01.png);
}
.collaboCard__item:nth-child(2) {
	background-image: url(../img/collabo/noise-02.png);
}
.collaboCard__item:nth-child(3) {
	background-image: url(../img/collabo/noise-03.png);
}

.collaboCard__itemName {
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(8.5 * var(--vw));
}
.collaboCard__itemName img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.collaboCard__itemImage {
	margin-top: 15px;
	width: calc(86 / 110 * 100%);
	margin-inline: auto;
	filter: drop-shadow(0px 3.8px 11.4px rgba(0, 0, 0, 0.35));
}

.collaboCard__itemNote {
	margin-top: 4px;
	padding-right: 10px;
	font-size: 10px;
	line-height: 1.4;
	text-align: right;
}

.collaboCard__dummy {
	width: 100%;
}

@media(min-width:751px) {
	.collaboCard {
		margin-top: 50px;
		row-gap: 15px;
	}

	.collaboCard__inner {
		width: 100%;
	}

	.collaboCard__heading {
		padding: 13.25px;
	}

	.collaboCard__headingLabel {
		width: 70px;
		height: 70px;
		font-size: 20px;
		top: -25.5px;
		left: -75px;
	}

	.collaboCard__headingTitle {
		font-size: 20px;
	}

	.collaboCard__headingDate {
		margin-top: 10px;
		font-size: 12px;
	}

	.collaboCard__item {
		padding: 52px 10px 60px;
	}

	.collaboCard__itemName {
		height: 16px;
	}

	.collaboCard__itemImage {
		margin-top: 30px;
		max-width: 214px;
		filter: drop-shadow(0px 7.4px 22px rgba(0, 0, 0, 0.35));
	}

	.collaboCard__itemNote {
		margin-top: 7px;
		padding-right: 0;
		font-size: 12px;
	}
}


.collaboCta {
	margin-top: 40px;
}

.collaboCta__inner {
	max-width: 780px;
	margin-inline: auto;
	padding-inline: 20px;
}

.collaboCta__button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 330px;
	margin-inline: auto;
	margin-bottom: 10px;
	padding: 12px 28px;
	border-radius: 999px;
	background-color: var(--red);
}
.collaboCta__button[disable] {
	margin-bottom: 20px;
	position: relative;
	pointer-events: none;
}
.collaboCta__button[disable]::after {
	content: "COMING SOON";
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--ff-en);
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	color: var(--white);
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	background-color: rgba(127, 127, 127, 0.9);
	border-radius: 999px;
}

.collaboCta__button i {
	flex-shrink: 0;
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--white);
	position: relative;
}
.collaboCta__button i::before {
	content: "";
	width: 10.8px;
	height: 14.4px;
	background-color: var(--red);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
}

.collaboCta__buttonText {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	color: var(--white);
}

.collaboCta__buttonText span {
	display: inline-block;
}

.collaboCta__toggle {
	margin-top: 30px;
}


.collaboCta_note {
	margin-top: 20px;
}

.collaboHowto {
	margin-top: 30px;
	padding-bottom: 100px;
}

.collaboHowto__button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	width: 100%;
	max-width: 330px;
	margin-inline: auto;
	padding: 18px 21px 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	background-color: var(--red);
	border-radius: 999px;
}

.collaboHowto__button i {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--white);
	position: relative;
}
.collaboHowto__button i::before {
	content: "";
	width: 18px;
	height: 1px;
	background-color: var(--red);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform 0.3s ease;
}
.collaboHowto__button i::after {
	content: "";
	width: 18px;
	height: 1px;
	background-color: var(--red);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.collaboHowto__button.is-open i::before {
	transform: translate(-50%, -50%) rotate(180deg);
}

.collaboHowto__buttonText {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: var(--white);
}

.collaboHowto__content {
	max-width: 560px;
	margin-inline: auto;
	margin-top: 20px;
}

.collaboHowto__flow {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.collaboHowto__item {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.collaboHowto__lead {
	font-family: var(--ff-en);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--white);
	padding: 3px 20px 1px;
	background-color: var(--black);
}

.collaboHowto__body {
	padding-inline: 20px;
}

.collaboHowto__text {
	font-size: 14px;
	line-height: 1.6;
}

.collaboHowto__text a {
	font-weight: 500;
	color: var(--red-02);
	text-decoration: underline;
}

.collaboHowto__note {
	font-size: 12px;
	line-height: 1.6;
}

@media(min-width:751px) {
	.collaboCta {
		margin-top: 50px;
	}

	.collaboCta__inner {
		max-width: 780px;
		margin-inline: auto;
		padding-inline: 20px;
	}

	.collaboCta__button {
		display: none;
	}

	.collaboCta__toggle {
		margin-top: 50px;
	}

	.collaboCta_note {
		margin-top: 20px;
	}

	.collaboCtaPc {
		margin-top: 120px;
		height: 280px;
		display: flex;
		justify-content: center;
		background-image: url(../img/collabo/cta-image.jpg);
		background-size: cover;
		background-position: center;
	}

	.collaboCtaPc__inner {
		max-width: 1025px;
		margin-inline: auto;
		padding-inline: 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		column-gap: 40px;
	}

	.collaboCtaPc__frame {
		display: flex;
		flex-direction: column;
		row-gap: 20px;
	}

	.collaboCtaPc__lead {
		font-size: 37px;
		font-weight: 900;
		line-height: 1.4;
		color: var(--white);
	}
	.collaboCtaPc__lead span {
		display: inline-block;
	}

	.collaboCtaPc__text {
		font-size: 20px;
		line-height: 1.4;
		color: var(--white);
	}
	.collaboCtaPc__text span {
		display: inline-block;
	}

	.collaboCtaPc__arrow {
		display: block;
		width: 125px;
	}

	.collaboCtaPc__qr {
		display: block;
		width: 140px;
	}

	.collaboHowto {
		margin-top: 46px;
		padding-bottom: 254px;
	}

	.collaboHowto__button {
		max-width: 100%;
		column-gap: 20px;
		transition: background-color 0.2s ease-out;
	}

	.collaboHowto__button i {
		width: 36px;
		height: 36px;
		transition: transform 0.2s ease-out;
	}
	.collaboHowto__button i::before {
		content: "";
		width: 24px;
		height: 2px;
	}
	.collaboHowto__button i::after {
		content: "";
		width: 24px;
		height: 2px;
	}

	.collaboHowto__button.is-open i::before {
		transform: translate(-50%, -50%) rotate(180deg);
	}

	.collaboHowto__buttonText {
		font-size: 24px;
		transition: transform 0.2s ease-out;
	}

	.collaboHowto__button:hover {
		background-color: #D91F5A;
	}
	.collaboHowto__button:hover i {
		transform: translateX(5px) rotate(90deg);
	}
	.collaboHowto__button.is-open:hover i {
		transform: translateX(5px) rotate(0);
	}
	.collaboHowto__button.is-open:hover i::before {
		transform: translate(-50%, -50%) rotate(180deg);
	}
	.collaboHowto__button.is-open:hover i::after {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	.collaboHowto__button:hover .collaboHowto__buttonText {
		transform: translateX(-5px);
	}

	.collaboHowto__content {
		max-width: 560px;
		margin-inline: auto;
		margin-top: 20px;
	}

	.collaboHowto__flow {
		display: flex;
		flex-direction: column;
		row-gap: 20px;
	}

	.collaboHowto__item {
		display: flex;
		flex-direction: column;
		row-gap: 10px;
	}

	.collaboHowto__lead {
		font-family: var(--ff-en);
		font-size: 16px;
		font-weight: 700;
		line-height: 1.6;
		color: var(--white);
		padding: 3px 20px 1px;
		background-color: var(--black);
	}

	.collaboHowto__body {
		padding-left: 20px;
	}

	.collaboHowto__text {
		font-size: 14px;
		line-height: 1.6;
	}

	.collaboHowto__text a {
		color: var(--red-02);
		text-decoration: underline;
	}

	.collaboHowto__note {
		font-size: 12px;
		line-height: 1.6;
	}
}





/*
note
*/
.note_list {
	display: flex;
	flex-direction: column;
}

.note_listItem {
	display: flex;
	font-size: 12px;
	line-height: 1.8;
}
.note_listItem::before {
	content: "※";
}

.note_listItem a {
	font-weight: 500;
	color: var(--red-02);
	text-decoration: underline;
}

.--red {
	font-weight: 500;
	color: var(--red-02);
}

@media (min-width:751px) {
	.note_listItem {
		font-size: 14px;
		line-height: 1.6;
	}
}



/*
toggle
*/
.toggle {
}

.toggle__button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	width: 100%;
	max-width: 180px;
	margin-inline: auto;
	padding: 12px 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	background-color: var(--black);
	border-radius: 999px;
}
.toggle__button.--larger {
	max-width: 220px;
}

.toggle__button i {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: var(--white);
	position: relative;
}
.toggle__button i::before {
	content: "";
	width: 10.3px;
	height: 1px;
	background-color: var(--black);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform 0.3s ease;
}
.toggle__button i::after {
	content: "";
	width: 10.3px;
	height: 1px;
	background-color: var(--black);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
}

.toggle__button.is-open i::before {
	transform: translate(-50%, -50%) rotate(180deg);
}

.toggle__buttonText {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	color: var(--white);
}

.toggle__content {
	display: none;
}


@media (min-width:751px) {
	.toggle__button {
		max-width: 220px;
		padding: 12px 12px 10px;
		transition: background-color 0.2s ease-out;
	}
	.toggle__button.--larger {
		max-width: 270px;
	}

	.toggle__button i {
		width: 28px;
		height: 28px;
		transition: transform 0.2s ease-out;
	}
	.toggle__button i::before {
		content: "";
		width: 18px;
		height: 2px;
	}
	.toggle__button i::after {
		content: "";
		width: 18px;
		height: 2px;
	}

	.toggle__buttonText {
		font-size: 18px;
		transition: transform 0.2s ease-out;
	}

	.toggle__button:hover {
		background-color: #404040;
	}
	.toggle__button:hover i {
		transform: translateX(5px) rotate(90deg);
	}
	.toggle__button.is-open:hover i {
		transform: translateX(5px) rotate(0);
	}
	.toggle__button.is-open:hover i::before {
		transform: translate(-50%, -50%) rotate(180deg);
	}
	.toggle__button.is-open:hover i::after {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	.toggle__button:hover .toggle__buttonText {
		transform: translateX(-5px);
	}
}





/*
complete
*/
.completeIntro {
	padding-block: 50px 20px;
	background-color: var(--white);
}

.completeIntro__text {
	width: fit-content;
	margin-inline: auto;
	margin-bottom: 14px;
	padding: 12px 18px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: var(--white);
	background-color: var(--black);
	position: relative;
}
.completeIntro__text::before {
	content: "";
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 49px;
	height: 14px;
	background-color: var(--black);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@media(min-width:751px) {
	.completeIntro {
		padding-block: 60px 50px;
	}

	.completeIntro__text {
		margin-bottom: 20px;
		padding: 18px 34px;
		font-size: 24px;
	}
	.completeIntro__text::before {
		bottom: -20px;
		width: 70px;
		height: 20px;
	}
}


.completeCont {
}
.completeCont ~ .completeCont {
	margin-top: 20px;
}

.completeCont__inner {
	max-width: 1060px;
	margin-inline: auto;
	background-color: var(--gray-light);
}

.completeCont__heading {
	min-height: 180px;
	padding-block: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../img/complete/bg-01.jpg);
	background-size: cover;
	background-position: center;
}
.completeCont__heading.--02 {
	background-image: url(../img/complete/bg-02.jpg);
}

.completeCont__headingMain {
	font-size: 24px;
	font-weight: 900;
	line-height: 1.6;
	text-align: center;
	color: var(--white);
}
.completeCont__headingMain span {
	font-size: 18px;
	line-height: 2.2;
}

.completeCont__lead {
	margin-top: 30px;
	padding-inline: 25px;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.8;
	text-align: center;
}
.completeCont__lead span {
	display: inline-block;
}

.completeCont__info {
	max-width: 600px;
	margin-top: 20px;
	margin-inline: auto;
	padding-inline: 20px;
	align-items: flex-start;
}

.completeCont__infoItem {
	position: relative;
	overflow-x: clip;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.25s ease-out;
}
.completeCont__infoItem::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	transition: transform 0.25s ease-out 0.25s;
}
.completeCont__infoItem.is-animated {
	clip-path: inset(0 0 0 0);
}
.completeCont__infoItem.is-animated::before {
	transform: translateX(100%);
}

.completeCont__infoItem + .completeCont__infoItem {
	margin-top: 20px;
}

.completeCont__infoNum {
	font-family: var(--ff-deco);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}

.completeCont__infoTitle {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: var(--white);
	padding: 14px;
	background-color: var(--black);
}

.completeCont__infoList {
}

.completeCont__infoFrame {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
}

.completeCont__infoTerm {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 1.6;
	text-align: center;
	color: var(--white);
	background-color: var(--black);
	border-top: 1px solid var(--gray-light);
}

.completeCont__infoDesc {
	font-size: 14px;
	line-height: 1.6;
	padding: 8px 10px;
	background-color: var(--white);
	border-top: 1px solid var(--gray-light);
}
.completeCont__infoDesc span {
	display: inline-block;
}

.completeCont__infoChara {
	display: block;
	max-width: 108px;
	margin-top: 40px;
	margin-inline: auto;
}
.completeCont__infoChara.--02 {
	max-width: 158px;
	padding-bottom: 40px;
}
.completeCont__infoChara img {
	width: 100%;
	height: auto;
}

@media(min-width:751px) {
	.completeCont ~ .completeCont {
		margin-top: 40px;
	}

	.completeCont__heading {
		min-height: 330px;
	}

	.completeCont__headingMain {
		font-size: 44px;
	}
	.completeCont__headingMain span {
		font-size: 34px;
	}

	.completeCont__lead {
		max-width: 770px;
		margin-inline: auto;
		margin-top: 50px;
		font-size: 20px;
	}

	.completeCont__info {
		max-width: 982px;
		margin-top: 40px;
		padding-inline: 20px;
		display: flex;
		justify-content: space-between;
		column-gap: 20px;
		position: relative;
	}

	.completeCont__infoItem {
		max-width: 440px;
	}
	.completeCont__infoItem + .completeCont__infoItem {
		margin-top: 156px;
	}

	.completeCont__infoNum {
		font-size: 50px;
	}

	.completeCont__infoTitle {
		margin-top: 10px;
		font-size: 18px;
	}

	.completeCont__infoTerm {
		font-size: 14px;
	}

	.completeCont__infoDesc {
		font-size: 16px;
		padding: 8px 20px;
	}

	.completeCont__infoChara {
		display: block;
		width: 100%;
		max-width: 151px;
		margin: 0;
		position: absolute;
		top: -40px;
		right: 3px;
	}
	.completeCont__infoChara.--02 {
		max-width: 196px;
		padding-bottom: 0;
		position: absolute;
		top: -42px;
		right: -20px;
	}
	.completeCont__infoChara img {
		width: 100%;
		height: auto;
	}

	.completeCont__info.--02 {
		width: 100%;
		max-width: 680px;
		margin-top: 34px;
		padding-bottom: 60px;
	}
	.completeCont__info.--02 .completeCont__infoItem {
		width: 100%;
		max-width: 100%;
	}
}

@media(min-width:992px) {

	.completeCont__infoChara {
		top: -50px;
	}
}

@media(min-width:1060px) {
	.completeCont__infoChara.--02 {
		top: -92px;
		right: -176px;
	}

	.completeCont__info.--02 {
		margin-top: 34px;
	}
}


.completeMain {
	padding-top: 40px;
	background-color: var(--gray-light);
}

.completeMain__inner {
	max-width: 940px;
	margin-inline: auto;
}

.completeMain__lead {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: var(--white);
	padding: 6px;
	background-color: var(--red);
}

.completeMain__frame {
	position: relative;
	overflow-x: clip;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.25s ease-out;
}
.completeMain__frame::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	transition: transform 0.25s ease-out 0.25s;
}
.completeMain__frame.is-animated {
	clip-path: inset(0 0 0 0);
}
.completeMain__frame.is-animated::before {
	transform: translateX(100%);
}

.completeMain__main {
	position: relative;
}

.completeMain__mainInner {
	display: flex;
	flex-direction: column;
}

.completeMain__mainHeading {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 16px;
	background-color: var(--black);
	padding: 15px 20px;
}

.completeMain__label {
	flex-shrink: 0;
	padding-left: 16px;
	position: relative;
}

.completeMain__labelLead {
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	color: var(--white);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.completeMain__labelNum {
	display: flex;
	width: 50px;
}
.completeMain__labelNum.--02 {
	width: 67px;
}

.completeMain__info {
	display: flex;
	column-gap: 10px;
}

.completeMain__infoText {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	background-color: var(--white);
}

.completeMain__infoLead {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.4;
	color: var(--white);
}

.completeMain__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	background-color: var(--black);
	padding-inline: 20px;
	position: relative;
}
.completeMain__list::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 35px;
	height: 68px;
	background-image: url(../img/complete/main-cross.svg);
	background-size: cover;
	background-position: center;
}

.completeMain__item {
	position: relative;
}

.completeMain__itemImage {
}

.completeMain__itemBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 2px;
	position: absolute;
	left: 50%;
	bottom: 6px;
	transform: translateX(-50%);
}

.completeMain__itemSub {
	font-size: 10px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	color: var(--white);
}

.completeMain__itemName {
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	color: var(--white);
}
.completeMain__itemName span {
	font-size: 10px;
}

.completeMain__sub {
	border-top: 1px solid var(--gray-light);
	position: relative;
}

.completeMain__subInner {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
}
.completeMain__subInner .completeMain__mainHeading {
	padding-block: 10px;
}

.completeMain__coming {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--gray);
}

.completeMain__comingImage {
	display: block;
	max-width: 175px;
}

.complete__note {
	padding-block: 20px 56px;
	padding-inline: 20px;
	background-color: var(--gray-light);
}

@media(min-width:751px) {
	.completeMain {
		padding-top: 80px;
		max-width: 1060px;
		margin-inline: auto;
	}

	.completeMain__lead {
		font-size: 22px;
		padding: 14px;
	}

	.completeMain__main {
		padding: 0;
	}

	.completeMain__mainInner {
		display: grid;
		grid-template-columns: 268px minmax(0, 1fr);
		row-gap: 0;
	}

	.completeMain__mainHeading {
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		row-gap: 56px;
		padding: 54px 25px 64px;
	}

	.completeMain__label {
		padding-left: 32px;
		margin-left: 15px;
		z-index: 0;
	}
	.completeMain__label:has(.completeMain__labelNum.--02) {
		margin-left: 0;
	}

	.completeMain__labelLead {
		font-size: 14px;
	}

	.completeMain__labelNum {
		display: flex;
		width: 116px;
	}
	.completeMain__labelNum.--02 {
		width: 157px;
	}

	.completeMain__info {
		width: 100%;
		flex-direction: column;
		row-gap: 10px;
	}

	.completeMain__infoText {
		width: 100%;
		height: 32px;
		font-size: 20px;
	}

	.completeMain__infoLead {
		text-align: center;
	}

	.completeMain__list {
		padding: 0;
	}
	.completeMain__list::after {
		width: 71px;
		height: 138px;
	}

	.completeMain__itemImage {
		display: flex;
		width: 100%;
		height: 100%;
	}
	.completeMain__itemImage img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top center;
	}

	.completeMain__itemBox {
		row-gap: 4.4px;
		bottom: 18px;
	}

	.completeMain__itemSub {
		font-size: 14px;
	}

	.completeMain__itemName {
		font-size: 22px;
	}
	.completeMain__itemName span {
		font-size: 14px;
	}

	.completeMain__sub {
	}

	.completeMain__subInner {
		display: grid;
		grid-template-columns: 268px minmax(0, 1fr);
		column-gap: 0;
		padding-left: 0;
	}
	.completeMain__subInner .completeMain__mainHeading {
		padding-block: 45px;
		padding-left: 35px;
	}

	.completeMain__comingImage {
		max-width: 398px;
	}

	.complete__note {
		max-width: 1060px;
		margin-inline: auto;
		padding-block: 40px 60px;
		padding-inline: 20px;
	}
	.complete__note > ul {
		max-width: 446px;
		margin-inline: auto;
	}
}



/*
guide
*/
.guide {
	margin-top: 40px;
	padding-bottom: 100px;
}

.guide__inner {
	max-width: 780px;
	margin-inline: auto;
	padding-inline: 20px;
}

.guide__heading {
	width: fit-content;
	margin-inline: auto;
	padding-bottom: 4px;
	position: relative;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
}
.guide__heading::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 2px;
	background-color: var(--black);
}

.guide__main {
	margin-top: 26px;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.guide__list {
	position: relative;
	overflow-x: clip;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.25s ease-out;
}
.guide__list::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	transition: transform 0.25s ease-out 0.25s;
}
.guide__list.is-animated {
	clip-path: inset(0 0 0 0);
}
.guide__list.is-animated::before {
	transform: translateX(100%);
}

.guide__frame {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	border-bottom: 1px solid var(--white);
}

.guide__term {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	color: var(--white);
	padding: 10px;
	background-color: var(--black);
}

.guide__term.--first {
	grid-area: 1 / 2 / 2 / 3;
}

.guide__term.--last {
	grid-area: 1 / 2 / 2 / 3;
}

.guide__desc {
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	padding: 5px;
	background-color: var(--gray-light);
}

.guide__note {
	margin-top: 25px;
}

.guideToggle {
	margin-top: 40px;
}

.guideToggle_note {
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.8;
}
.guideToggle_note a {
	font-weight: 500;
	color: var(--red-02);
	text-decoration: underline;
}

.guide__button {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	max-width: 330px;
	margin-top: 40px;
	margin-inline: auto;
	padding: 23px 28px;
	border-radius: 999px;
	background-color: var(--red);
}

.guide__button i {
	flex-shrink: 0;
	display: block;
	width: 30px;
}

.guide__buttonText {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: var(--white);
}

.guide__buttonText span {
	display: inline-block;
}

@media(min-width:751px) {
	.guide {
		margin-top: 75px;
		padding-bottom: 400px;
	}

	.guide__heading {
		font-size: 20px;
	}

	.guide__frame {
		display: grid;
		grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1fr);
		column-gap: 1px;
	}

	.guide__term {
		font-size: 14px;
	}

	.guide__term.--last {
		grid-area: 1 / 3 / 2 / 4;
	}

	.guide__desc {
		padding: 6px;
	}
	.guide__desc.--left {
		text-align: left;
	}

	.guide__note {
		margin-top: 35px;
	}

	.guideToggle_note {
		margin-top: 40px;
		font-size: 14px;
		line-height: 1.8;
	}
	.guideToggle_note a {
		font-weight: 500;
	}

	.guide__button {
		max-width: 100%;
		margin-top: 50px;
		padding: 18px;
		transition: background-color 0.2s ease-out;
	}
	.guide__button i {
		transition: transform 0.2s ease-out;
	}
	.guide__buttonText {
		transition: transform 0.2s ease-out;
	}
	.guide__button:hover {
		background-color: #D91F5A;
	}
	.guide__button:hover i {
		transform: translateX(5px);
	}
	.guide__button:hover i img {
		opacity: 1;
	}
	.guide__button:hover .guide__buttonText {
		transform: translateX(-5px);
	}
}


/*
invitation
*/
.invitation__mv {
	display: flex;
	aspect-ratio: 39 / 20;
	overflow: hidden;
}
.invitation__mv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* opacity: 0; */
	transition: transform 0.5s ease-out;
}

.invitation__mv.is-animated img {
	/* opacity: 1; */
	transform: scale(1.05);
}


.invitation__inner {
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: 20px;
	padding-bottom: 40px;
}

.invitation__lead {
	margin-top: 30px;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.8;
	text-align: center;
}

.invitation__list {
	max-width: 1060px;
	margin-top: 30px;
	margin-inline: auto;
	position: relative;
	overflow-x: clip;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.25s ease-out;
}
.invitation__list::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	transition: transform 0.25s ease-out 0.25s;
}
.invitation__list.is-animated {
	clip-path: inset(0 0 0 0);
}
.invitation__list.is-animated::before {
	transform: translateX(100%);
}

.invitation__listLead {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: var(--white);
	padding: 15px;
	background-color: var(--black);
}

.invitation__listCont {
}

.invitation__listFrame {
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr);
	border-top: 1px solid var(--white);
}
.invitation__listFrame:nth-child(odd) .invitation__listDesc {
	background-color: var(--gray-light);
}

.invitation__listterm {
	font-size: 12px;
	line-height: 1.6;
	text-align: center;
	color: var(--white);
	padding: 10px;
	background-color: var(--black);
}

.invitation__listDesc {
	font-size: 14px;
	line-height: 1.6;
	padding: 8px 20px;
}

.invitation__info {
	margin-top: 40px;
	position: relative;
	overflow-x: clip;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.25s ease-out;
}
.invitation__info::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	transition: transform 0.25s ease-out 0.25s;
}
.invitation__info.is-animated {
	clip-path: inset(0 0 0 0);
}
.invitation__info.is-animated::before {
	transform: translateX(100%);
}

.invitation__infoList {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.invitation__infoFrame {
}

.invitation__infoTerm {
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	color: var(--white);
	padding: 10px;
	background-color: var(--black);
}

.invitation__infoDesc {
	font-size: 16px;
	line-height: 1.6;
	padding: 8px 20px;
}
.invitation__infoDesc small {
	font-size: 14px;
}
.invitation__infoDesc span {
	display: block;
}

.invitation__chara {
	display: block;
	max-width: 135px;
	margin-top: 20px;
	margin-inline: auto;
}

.invitation__note {
	margin-top: 50px;
	max-width: 740px;
	margin-inline: auto;
}

.invitation__button {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 330px;
	margin-inline: auto;
	margin-top: 50px;
	padding: 22px 28px;
	border-radius: 999px;
	background-color: var(--red);
}
.invitation__button[disable] {
	margin-top: 60px;
	position: relative;
	pointer-events: none;
}
.invitation__button[disable]::after {
	content: "COMING SOON";
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--ff-en);
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	color: var(--white);
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	background-color: rgba(127, 127, 127, 0.9);
	border-radius: 999px;
}

.invitation__button i {
	flex-shrink: 0;
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--white);
	position: relative;
}
.invitation__button i::before {
	content: "";
	width: 10.8px;
	height: 14.4px;
	background-color: var(--red);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
}

.invitation__buttonText {
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: var(--white);
}

.invitation__buttonText span {
	display: inline-block;
}

.invitation__buttonNote {
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.6;
	text-align: center;
}

.invitation__copyright {
	margin-top: 5px;
	font-size: 12px;
	line-height: 1.6;
	text-align: center;
}


@media(min-width:751px) {
	.invitation__mv {
		aspect-ratio: unset;
		height: 450px;
	}

	.invitation__inner {
		padding-bottom: 78px;
	}

	.invitation__lead {
		margin-top: 40px;
		font-size: 34px;
	}

	.invitation__wrap {
		margin-top: 60px;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		column-gap: 20px;
		position: relative;
	}

	.invitation__list {
		margin-top: 0;
		width: calc(50% - 10px);
		max-width: 500px;
	}

	.invitation__listLead {
		font-size: 18px;
		padding: 14px;
	}
	.invitation__listFrame {
		grid-template-columns: 90px minmax(0, 1fr);
	}

	.invitation__listterm {
		font-size: 12px;
	}

	.invitation__listDesc {
		font-size: 14px;
	}

	.invitation__info {
		margin-top: 0;
		width: calc(50% - 10px);
		max-width: 500px;
	}

	.invitation__infoList {
		row-gap: 30px;
	}

	.invitation__infoFrame {
	}

	.invitation__infoTerm {
		line-height: 1;
		padding: 14px;
	}

	.invitation__chara {
		max-width: 177px;
		padding-bottom: 0;
		margin-top: 0;
		position: absolute;
		right: 20px;
		bottom: 44px;
	}

	.invitation__note {
		margin-top: 60px;
	}

	.invitation__button {
		max-width: 740px;
		justify-content: center;
		column-gap: 20px;
		margin-top: 60px;
		padding: 25px;
		transition: background-color 0.2s ease-out;
	}
	.invitation__button[disable]:after {
		font-size: 24px;
	}

	.invitation__button i {
		width: 50px;
		height: 50px;
		transition: transform 0.2s ease-out;
	}
	.invitation__button i::before {
		width: 15px;
		height: 20px;
	}

	.invitation__buttonText {
		font-size: 34px;
		transition: transform 0.2s ease-out;
	}

	.invitation__buttonText span {
		display: inline-block;
	}

	.invitation__button:hover {
		background-color: #D91F5A;
	}
	.invitation__button:hover i {
		transform: translateX(5px);
	}
	.invitation__button:hover i img {
		opacity: 1;
	}
	.invitation__button:hover .invitation__buttonText {
		transform: translateX(-5px);
	}

	.invitation__buttonNote {
		margin-top: 30px;
		font-size: 14px;
	}

	.invitation__copyright {
		margin-top: 10px;
		font-size: 14px;
	}
}

@media(min-width:992px) {
	.invitation__listFrame {
		grid-template-columns: 120px minmax(0, 1fr);
	}

	.invitation__listterm {
		font-size: 14px;
	}

	.invitation__listDesc {
		font-size: 16px;
	}

	.invitation__infoTerm {
		font-size: 18px;
	}
}

@media(min-width:1160px) {
	.invitation__chara {
		right: -38px;
	}
}



/*
bottom
*/
.bottom {
	min-height: calc(100vh - var(--header-height));
	background-color: var(--black);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.bottom__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}
.bottom__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease-out, transform 1s ease-out;
}

.bottom.is-animated .bottom__bg img {
	opacity: 1;
	transform: scale(1.1);
}

.bottom__inner {
	width: calc(335 / 390 * 100%);
	max-width: 560px;
	margin-inline: auto;
	padding-block: 100px;
	position: relative;
}

.bottom__catch {
	display: block;
}
.bottom__badge {
	width: min(72px, calc(44 / 390 * 100vw));
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 15.5%;
	top: 55.5%;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bottom__badge::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/common/bg-circle.svg);
	background-size: cover;
	background-position: center;
	z-index: -1;
	animation: badgeRotate 15s linear infinite;
}
.bottom__badge span {
	display: flex;
	align-items: baseline;
	font-size: min(14.4px, calc(8.8 / 390 * 100vw));
	font-weight: 900;
	line-height: 1;
	color: var(--white);
	transform: skewX(-8deg) translateY(max(-3.2px, calc(-2 / 390 * 100vw)));
}
.bottom__badge span strong {
	font-size: min(27.2px, calc(16.6 / 390 * 100vw));
	font-weight: 900;
	line-height: 1;
	transform: translateY(min(1.64px, calc(1 / 390 * 100vw)));
}

@media(min-width:751px) {
	.bottom__inner {
		max-width: 615px;
		padding-block: 120px;
	}

	.bottom__badge {
		width: min(80px, calc(80 / 1350 * 100vw));
		top: 56.5%;
	}
	.bottom__badge span {
		font-size: min(16px, calc(16 / 1350 * 100vw));
		transform: skewX(-8deg) translateY(max(-3.2px, calc(-3.2 / 1350 * 100vw)));
	}
	.bottom__badge span strong {
		font-size: min(30px, calc(30 / 1350 * 100vw));
		transform: translateY(min(2.24px, calc(1.4 / 1350 * 100vw)));
	}
}

.pagetop {
	display: none;
}

@media(min-width:751px){
	.pagetop {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 70px;
		height: 70px;
		border-radius: 50%;
		position: fixed;
		bottom: 30px;
		right: 30px;
		z-index: 100;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
	}
	.pagetop.is-show {
		opacity: 1;
		visibility: visible;
	}
	.pagetop span {
		font-family: var(--ff-en);
		font-size: 14px;
		font-weight: 800;
		line-height: 1.4;
		text-align: center;
		color: var(--red);
	}
	.pagetop img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: -1;
		transition: transform 0.2s ease-out;
	}
	.pagetop:hover img {
		opacity: 1;
		transform: rotate(90deg);
	}
}


/*
fuwafuwa
*/
.fuwafuwa {
	animation: float 2s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(-3%) rotate(-4deg);
	}
	50% {
		transform: translateY(3%) rotate(4deg);
	}
}





/*************
footer
*************/
.oshitabi_btn--block {
	position: relative;
	padding: 24px 10px;
	background-color: var(--white);
}

.oshitabi_btn {
	display: block;
	border: 4px solid #333;
	background-color: #FFF;
	width: 100%;
	max-width: 315px;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	border-radius: 20px;
	position: relative;
	transition: all .5s;
}

.oshitabi_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	height: 12px;
	width: 12px;
	border-top: 3px solid #333;
	border-right: 3px solid #333;
	transform: translateY(-50%) rotate(45deg);
}
@media(min-width:751px){

	.oshitabi_btn--block {
		padding: 32px 10px;
	}

	a.oshitabi_btn:hover {
		opacity: 1;
	}

	.oshitabi_btn:hover {
		background-color: #333;
		color: #fff;
	}

	.oshitabi_btn:hover::after {
		border-top: 3px solid #fff;
		border-right: 3px solid #fff;
		transform: translateY(-50%) rotate(45deg);
	}
}

.footer_container {
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	font-weight: 400;
	position: relative;
	z-index: 100;
	background-color: #FFF;
	padding-top: 1px;
}

/*************
メディアクエリ
*************/
@media(min-width:751px){
	.sp {
		display: none;
	}
}
@media(max-width:750px){
	.pc {
		display: none;
	}

}
	
