@charset "utf-8";

/*  ===============================
			ROOT
===============================*/

/* variable
===============================
	--bigInrMaxW -
	--cntInrMaxW - pc時inrのmaxwidth inr
*/

img {
	width: auto;
}

/* 1200px < window */
:root {
	--windowMinW: 1024px;
	--windowMaxW: none;
	--cntInrMaxW: 960px;
	--bigInrMaxW: 1200px;
	--secBodyWidth: 960px;

	/* sp camp width */
	--spCampWidth: 375;

	/* js */
	--documentHeight: ;

	--commonSidePadding: 40px;
	/* --sans-serif: "Noto Sans JP", sans-serif; */
	--serif: "Noto Serif JP", serif;
	--en: "EB Garamond", serif;

	--fzBody: 16px;
	--letterBody: 1px;
	--lh: 1.8;

	--documentTextAlign: center;
	--primaryColor: #234169;
	--secondaryColor: #6e1ac3;
	--textColor: #0f0f0f;
	--lightTextColor: #fff;
	--darkTextColor: #0f0f0f;

	/* --bgBody: url(../images/bg_body.jpg) repeat; */
	--bgColor: var(--bgColor);
	font-size: 10px;
}

body {
	font-family: var(--serif);
	color: var(--textColor);
	background: var(--bgBody);
	background-color: var(--bgColor);

	font-size: var(--fzBody);
	line-height: var(--lh);
	letter-spacing: var(--letterBody);
	text-align: var(--documentTextAlign);
}

body.development {
	/* display */
	--dvModeDisplay: block;
	--dvModeAlpha: 1;
}

body:not(.development) {
	/* display */
	--dvModeDisplay: none;
	--dvModeAlpha: 0;
}

html,
body,
.loading {
	max-width: var(--windowMaxW);
	min-width: var(--windowMinW);
}

.Ghdr,
.hero,
.main {
	min-width: var(--windowMinW);
}

.inr {
	max-width: var(--cntInrMaxW);
	margin-left: auto;
	margin-right: auto;
}

/* window = 1025px ~ 1199px */
@media screen and (min-width: 1025px) and (max-width: 1199px) {
	:root {
		--windowMinW: 1024px;
		--windowMaxW: 100%;
		--cntInrMaxW: 960px;
		--bigInrMaxW: 1200px;
	}
}

/* window = 769px ~ 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
	:root {
		--windowMinW: 1024px;
		--windowMaxW: 100%;
		--cntInrMaxW: 960px;
		--bigInrMaxW: 1200px;
	}
}

/* window < 768px */
@media screen and (max-width: 768px) {
	:root {
		--windowMinW: none;
		--windowMaxW: 100%;
		--cntInrMaxW: 480px;
		--bigInrMaxW: 100%;
	}

	.inr {
		padding-left: var(--commonSidePadding);
		padding-right: var(--commonSidePadding);
	}
}

/* init */

body {
	position: relative;
	overflow-x: hidden;
}

/* fade init */

@keyframes fadeIn {
	0% {
		opacity: 0;
		filter: blur(10px);
	}
	25% {
		opacity: 0.25;
		filter: blur(5px);
	}
	50% {
		opacity: 0.5;
		filter: blur(2px);
	}
	75% {
		opacity: 0.75;
		filter: blur(1px);
	}
	100% {
		opacity: 1;
		filter: blur(0px);
	}
}

.sec_body {
	opacity: var(--dvModeAlpha);
}

.fade.is-show,
.fade--show,
.sec.is-show .sec_body {
	--y: 20;
	animation: fadeIn 0.4s forwards 0s;
	will-change: opacity, transform, animation;
}

.fade {
	opacity: 1;
	filter: blur(10px);
}

.fade--show {
	animation-duration: 0.6s;
}

/* development */
.development .sec_body,
.development .main img,
.development .Gcontainer img {
	opacity: var(--dvModeAlpha) !important;
}

.development .Gcontainer:not(.is-active),
.development .main:not(.is-active),
.development .Gftr:not(.is-active) {
	display: var(--dvModeDisplay) !important;
}

/*  ===============================
	animation & transition
===============================*/

/* clip-to-bottom
===============================
*/

/*  ===============================
			global
===============================  */

.Gcontainer {
	overflow: hidden;
}

/* Gheader
===============================
.Ghdr
*/

.Ghdr {
	position: relative;
}

.Ghdr_ttl {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	writing-mode: vertical-rl;
	top: 0;
	bottom: 0;
	right: 0.5em;
	margin: auto;
	color: var(--lightTextColor);
	font-weight: 400;
	font-size: 12px;
	z-index: 1000;
}

/* navi
===============================
Gnavi
*/
.Gnavi {
	display: none;
}
/* animation */
/* header画像を白文字 */
.is-white {
	filter: grayscale(1) brightness(100);
}

/* 展開中は有色 */
/* .Ghdr img , .Gnavi hamburger */
.is-active .is-white {
	filter: none;
}

/* footer
===============================
Gftr
*/

.Gftr {
	background: var(--primaryColor) url(../images/bg_footer.jpg) no-repeat center / cover;
	color: var(--lightTextColor);
	text-align: center;
}

.Gftr_inr {
	max-width: 395px;
	padding: 40px 0 63px;
}

.Gftr_link {
	margin-top: 50px;
}

.Gftr_copy {
	padding-bottom: 10px;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* main
===============================
*/

.Gmain {
}

/* sec , subSec
===============================
*/

.sec {
	position: relative;
	padding: 20rem 0;
	background: center / cover no-repeat;
}

@keyframes bgLoop {
	from {
		background-position-x: 0;
	}
	to {
		background-position-x: -1440px;
	}
}

.sec--release {
	background-image: url(../images/bg_release.jpg);
}
/* center / 1440px 100% repeat-x*/
/*animation: bgLoop 30s linear 0s infinite;*/

.sec--lyric {
	padding: 130px 0;
	background-image: url(../images/bg_lyric.jpg);
}
/*波型背景時*/
/*top / 100% 100%*/
/*margin: -150px 0 -100px;*/
/*z-index: 5;*/
/*releaseのpadding-bottom: 150px;にする*/
/*campaignのpadding-top: 300px;にする*/

.sec--campaign {
	background-image: url(../images/bg_campaign.jpg);
}

@media screen and (max-width: 768px) {
	.sec--release {
		background-image: url(../images/bg_release_sp.jpg);
	}

	.sec--lyric {
		background-image: url(../images/bg_lyric_sp.jpg);
	}

	.sec--campaign {
		background-image: url(../images/bg_campaign_sp.jpg);
	}
}

.sec_inr {
	--w: 100%;
	width: var(--w);
}

@media screen and (min-width: 769px) {
	.sec_inr {
		position: relative;
	}
}

.sec_ttlSpan,
.sec_leadSpan,
.hero_ttlSpan {
	display: block;
}

.hero_ttlSpan--stickOut,
.hero_leadSpan--stickOut,
.sec_ttlSpan--stickOut {
	line-height: 70px;
}

@media screen and (max-width: 768px) {
	.hero_ttlSpan--stickOut,
	.hero_leadSpan--stickOut,
	.sec_ttlSpan--stickOut {
		line-height: 60px;
	}
}

.hero_ttlItem,
.hero_leadItem,
.sec_ttl {
	overflow: hidden;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: baseline;
	gap: 0 5px;
}

.hero_ttlImage,
.hero_leadImage,
.sec_ttlImg {
	opacity: 0;
	transform: translateY(200px);
	transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero_ttlImage.is-visible,
.hero_leadImage.is-visible,
.sec_ttlImg.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/*  ===============================
		  component
===============================*/

/* btn
===============================
*/

.btns {
	text-align: center;
}

.btn {
	display: inline-block;
	margin-top: 2rem;
	padding: 0.9em 6rem;
	color: var(--primaryColor);
	font-size: 1.6rem;
	font-weight: 700;
	background-color: #fff;
	cursor: pointer;
}

.btn:first-child {
	margin-top: 0;
}

.btn--campaign {
	padding: 10px 60px;
	font-size: 2.2rem;
}

.btn--entry {
	font-weight: 900;
	font-size: 1.2em;
	box-shadow: 2px 2px 5px, inset 0 0 0 2px #fff, inset 0 0 0 3px;
	padding: 18px 5em;
	font-family: var(--serif);
}

.btn--disable {
	filter: contrast(0.4);
	color: #ccc;
	cursor: no-drop;
}

/* label
===============================
*/

.label {
	display: inline-block;
	padding: 10px 30px;
	border-radius: 10px;
	background: var(--primaryColor) url(../images/bg_label.jpg) no-repeat center / cover;
	color: #fff;
	font-weight: 500;
}

.label--white {
	padding: 0 0.3em;
	color: inherit;
	background: #fff;
	border-radius: 0;
}

/* hamburger
===============================
*/

@media screen and (min-width: 769px) {
	.hamburger {
		display: none;
	}
}

/* marker
===============================
*/

.marker {
	display: inline-block;
	padding: 8px 0;
	background: url(../images/bg_maker.png) repeat-x bottom / 800px;
}

/* texts
===============================
*/

/* notes
===============================
*/

/* sns_list
===============================
*/
.sns_list {
	display: flex;
	justify-content: space-around;
	padding: 0 20px;
}

.sns_item {
	position: relative;
	display: flex;
	box-sizing: content-box;
}

.sns_anchor {
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 1;
}

@media screen and (min-width: 769px) {
	.sns_anchor:hover {
		opacity: 0.8;
	}
}

.sns_img {
	position: relative;
	z-index: 1;
	fill: #0f0f0f;
	width: auto;
}

.official-link {
	text-align: center;
}

.official-link_anchor {
	font-size: 1.8rem;
	font-weight: 400;
	text-decoration: none;
}

/* scrollGuide
===============================
*/
.scrollGuide {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	right: 60px;
	bottom: 0;
	z-index: 2;
	overflow: hidden;
}

.scrollGuide_text {
	--scrollHeight: 58.5px;
	position: relative;
	padding-bottom: var(--scrollHeight);
	color: #fff;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0;
	writing-mode: vertical-lr;
}

.scrollGuide_text::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translateX(-50%);
	width: 4.5px;
	height: var(--scrollHeight);
	background: url(../images/hero_scrollLine.png) center / contain no-repeat;
}

/*  ===============================
		  project
===============================*/

/* hero
===============================
*/

.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	background: var(--primaryColor) url(../images/hero.jpg) center / cover no-repeat;
}

@keyframes grayFadeIn {
	from {
		filter: grayscale(1) blur(10px);
		opacity: 0;
	}
	to {
		filter: grayscale(1) blur(0);
		opacity: 1;
	}
}

.hero--mono {
	animation: grayFadeIn 1.5s forwards;
	filter: grayscale(1);
}

@media screen and (min-width: 769px) {
	.hero_image {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 0;
	}

	.hero_image img {
		height: 100svh;
		object-fit: cover;
	}
}

.hero_ttl {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 20px;
	top: 40px;
	left: 47px;
	z-index: 2;
}

.hero_ttlImage--1 {
	margin-left: -20px;
}

.hero_lead {
	position: absolute;
	left: 40px;
	bottom: 55px;
	animation-delay: 0.75s;
	z-index: 0;
}

.hero_leadRow {
	margin-top: 2rem;
	filter: drop-shadow(0 5px 5px #999);
}

.hero_leadRow:nth-child(1) {
	gap: 0 10px;
}

.hero_leadRow:nth-child(2) .hero_leadSpan:nth-child(8) {
	margin-left: 20px;
}

/* release
===============================
*/

.release {
}

.releaseGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.releaseGrid_item--ttl {
	grid-row: 1;
	grid-column: 1;
}

.releaseGrid_item--thumb {
	grid-row: 1 / 3;
	grid-column: 2 / 3;
}

.releaseGrid_item--thumb img {
	width: 100%;
}

.releaseGrid_item--jktTtl {
	grid-row: 2 / 3;
	grid-column: 1 / 2;
}

.release_thumb {
	max-width: 354px;
	margin-left: 20px;
}

.release_ttl {
	display: inline;
	padding-bottom: 3px;
	background: url(../images/release_border.png) bottom / contain no-repeat;
	color: var(--lightTextColor);
	font-size: clamp(18px, 5.6vw, 24px);
}

.release_jktTtl {
	padding: 5px 0 15px;
	color: var(--lightTextColor);
	font-weight: 600;
	font-size: clamp(37px, 10.6vw, 46px);
	letter-spacing: 0.4rem;
}

.release_btns {
	margin-top: 2.5rem;
}

/* lyric
===============================
*/

.lyric {
	color: var(--lightTextColor);
	font-weight: 600;
	line-height: 2;
}

.lyric_texts {
	padding: 80px 0 20px;
	font-size: 18px;
}

.lyric_text:not(:first-child) {
	margin-top: 4rem;
}

/* campaign
===============================
*/

.campaign {
	font-weight: 600;
	color: var(--darkTextColor);
}

.campaign_texts {
	margin-top: 5rem;
	color: var(--lightTextColor);
	font-size: 18px;
}
.campaign_notes {
	margin: 2rem 0;
	padding-left: 1.3rem;
	font-family: sans-serif;
	font-weight: 400;
	font-size: 12px;
	text-indent: -1.3rem;
	color: var(--lightTextColor);
}

.campaign_btn {
	font-size: clamp(10px, 3.9vw, 13px);
}

/* entry
===============================
*/
.entry {
	margin: 0 50px;
	padding: 20px 0 0;
	border: solid rgba(255, 255, 255, 0.7) 100px;
	border-image-source: url(../images/campaign_border-image.png);
	border-image-slice: 200 fill;
}

/* term */
.entry_term {
	--text-divider-gap: 30px;
	display: flex;
	align-items: center;
	padding: 60px 0 30px;
	color: var(--primaryColor);
	font-weight: 700;
	font-size: clamp(13px, 4.2vw, 19px);
	line-height: 2rem;
}

.entry_term::before,
.entry_term::after {
	content: "";
	flex-grow: 1;
	height: 19px;
	background: url(../images/campaign_border.png) center / contain no-repeat;
}

.entry_term::before {
	margin-right: var(--text-divider-gap);
}
.entry_term::after {
	margin-left: var(--text-divider-gap);
}

.entry_term--short::before,
.entry_term--short::after {
	background-image: url(../images/campaign_border--short.png);
}

/* texts */
.entry_texts {
	padding: 0 1rem;
	font-size: clamp(13px, 4vw, 17px);
	font-weight: 900;
	line-height: clamp(2rem, 6vw, 3rem);
}

.entry_texts--ttl {
	margin-top: 25px;
	font-size: 22px;
}

.entry_text--number {
	display: inline-block;
	margin: 15px auto;
	padding-bottom: 5px;
	background: url(../images/campaign_wavyLine.png) bottom / contain no-repeat;
}

.entry_texts--strong {
	color: var(--primaryColor);
	font-size: 21px;
}

.entry_texts--plane {
	padding-top: 30px;
	font-weight: 600;
	font-size: clamp(11px, 3.6vw, 14px);
}

.entry_text--end {
	text-decoration: line-through;
	color: #999;
}

/* notes */
.entry_notes {
	margin-top: 3rem;
	padding-left: 1.3rem;
	font-family: sans-serif;
	font-weight: 400;
	font-size: 10px;
	text-indent: -1.3rem;
}

.entry_notes--center {
	text-align: center;
}

.entry_btns {
	margin-top: 4rem;
	padding: 20px 0;
}

/* prize
===============================
*/

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

.prize_notes {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

/* step
===============================
*/

.step {
	padding: 20px 0 0;
}

.step_list {
	padding: 0 1rem;
	text-align: left;
}

.step_item {
	display: flex;
	gap: 2rem;
	padding: 40px 0;
	border-top: 1px solid #fff;
}

.step_item:first-child {
	padding-top: 0;
	border-top: 0;
}

.step_body {
	width: 100%;
}

/* num */
.step_num {
	min-width: 83px;
}

/* texts */
.step_texts {
	font-size: clamp(12px, 4vw, 13px);
}

.step_texts--share-step01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.step_texts--col {
	display: flex;
	flex-direction: column;
}

.step_texts--margin {
	margin-top: 30px;
}

.step_strong {
	font-size: clamp(13px, 4vw, 15px);
	font-weight: 700;
}

.step_strong--large {
	font-size: clamp(14px, 4vw, 16px);
	font-weight: 900;
}

.step_colored {
	color: var(--secondaryColor);
}

.step_anchor {
	padding: 1em;
	font-weight: 600;
	font-size: clamp(10px, 3.9vw, 13px);
	text-align: center;
}

/* grid */
.stepGrid {
	display: grid;
	grid-template-columns: 300px 1fr;
}

.stepGrid_item--text {
	grid-row: 1;
	grid-column: 1;
}

.stepGrid_item--btn {
	grid-row: 1;
	grid-column: 2 / 3;
}

.stepGrid_item--note {
	grid-row: 2;
	grid-column: 1 / 3;
}

/* notes */
.step_notes {
	margin-top: 2rem;
	padding-left: 1.3rem;
	font-family: sans-serif;
	font-weight: 400;
	font-size: 10px;
	text-indent: -1.3rem;
}

.step_notes--btnNote {
	margin-top: 0;
	padding-top: 10px;
	text-indent: 0;
	padding-left: 0;
}

/* contact
===============================
*/

.contact {
	margin: 0 50px;
	color: var(--lightTextColor);
}

.contact_anchor {
	display: block;
	padding: 10px 0 40px;
	font-weight: 800;
	font-size: 22px;
}

/* term */
.contact_term {
	color: var(--lightTextColor);
}

.contact_term::before,
.contact_term::after {
	filter: brightness(0) invert(100%);
}

/* notes */
.contact_notes {
	font-family: sans-serif;
	font-weight: 500;
	font-size: 1.2rem;
}

/* form
===============================
*/

.form {
	max-width: 600px;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
}

form--confirm {
	margin-top: 0;
}

.form--input {
	padding-top: 60px;
	border-top: 1px solid var(--primaryColor);
}

.form_ttl {
	font-size: 21px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 15px;
}

.form_texts {
	font-size: clamp(12px, 3.2vw, 14px);
}

.form_texts--finish,
.form_texts--confirm {
	margin-top: 50px;
}

.form_list {
	margin-top: 3em;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
}
.form_item:not(:first-child):not(.form_item--full) {
	margin-top: 2em;
}

.form_item--full {
	width: 100%;
	margin-top: 4rem;
}

.form_flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.form_term,
.form_desc {
	display: block;
	font-size: clamp(8px, 3.4vw, 14px);
	text-align: left;
}

.form_term--long,
.form_desc--long {
	text-align: center;
}

.form_term {
	font-weight: 700;
}
.form_term--long {
	max-width: 480px;
	margin: 80px auto 0;
	text-align: center;
}

.entry--confirm .form_term {
	padding-top: 1rem;
}

.form_detail {
	display: inline-block;
	font-size: 0.8em;
	font-weight: 400;
}

.form_anchor {
	padding-bottom: 1px;
	border-bottom: 0.5px solid #fff;
}

.form_note {
}

.form_btns {
	margin-top: 3em;
	font-size: 16px;
}

.form_btns--submit {
	margin-top: 80px;
}

.form_btns--upload {
	margin-top: 30px;
}

.form_btn {
	font-size: 14px;
}

.form_btn .btn--secondary {
	background-color: #eaeaea;
	padding: 0.8em 4.5rem;
	font-size: 0.95em;
}

.btn--fetch {
	margin-top: 0.5rem;
	padding: 0.3em 1.5em;
	font-size: 10px;
	width: auto;
}

.form_btns form:not(:first-child) .form_btn {
	margin-top: 2rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea {
	box-shadow: 0 0 0 1px var(--primaryColor) inset;
	background-color: #eee;
}

.form_legal {
	width: 100%;
	height: 10em;
	margin-top: 5em;
	color: #777;
	text-align: left;
	padding: 1rem 2rem;
	font-size: 11px;
	overflow: scroll;
	border: 1px solid #999;
	font-size: 10px;
}

.form_legal h3 {
	margin-bottom: 1em;
	font-size: 12px;
	font-weight: 500;
}

.form_legal .form_notes:not(:last-child) {
	margin-bottom: 3rem;
}

/* validation */

.validation {
	margin-top: 3rem;
	padding: 1rem 1.5rem;
	font-size: 12px;
	color: red;
	background: #eee;
	border: 1px solid var(--primaryColor);
}

.validation_ttl {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--primaryColor);
}

.validation_texts {
	margin-top: 1rem;
	font-weight: 700;
}

.validation_text:not(:first-child) {
	margin-top: 0.8em;
}

/* form_message */
.form_message {
	margin-top: 1em;
	font-size: 14px;
}

/* form_error */
.form_error {
	text-align: center;
	color: red;
}

/* upload */

.form_current {
	text-align: center;
	margin: 60px auto;
}

.form_currentPic {
}

.form_currentImg {
	max-width: 300px;
}

.form_currentMessage {
	word-wrap: break-word;
	margin-top: 0.5em;
	font-size: 13px;
}

.rim1_fileUploadedName {
	margin-top: 1em;
}

/* confirm時 */

.entry--confirm {
	margin: 5rem auto;
}

.entry--confirm .form_term {
	margin-bottom: 0.8em;
}

.entry--confirm .form_desc {
	font-weight: 400;
}

.entry--confirm .form_desc p {
	margin-bottom: 0.8em;
}

.confirm_text {
	padding: 0 7%;
	font-size: clamp(8px, 3.4vw, 16px);
	text-align: center;
}

/* finish画面 */

.entry--finish {
	margin: 5rem auto 0;
}

.finish {
	text-align: center;
}

.finish_ttl {
	margin: 0 0 50px;
}

.finish_texts {
	margin-top: 2em;
	text-align: center;
	font-size: clamp(12px, 3.3vw, 14px);
}

.finish_text--email {
	margin: 0.5em 0 1em;
	text-decoration: underline;
	font-weight: 800;
	font-size: 1.5em;
	text-underline-offset: 8px;
	white-space: pre-wrap;
	word-break: break-all;
}

.finish_notes {
	margin-top: 3em;
	font-size: clamp(10px, 2.8vw, 12px);
}

/* loading
===============================
*/

@keyframes flare {
	0% {
		transform: translate(-10%, -50%) scale(1.8);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% {
		transform: translate(-20%, -30%) scale(20);
		opacity: 0;
	}
}

body:has(.loading.is-anime),
body:has(.hero.is-anime) {
	overflow: hidden;
}

.hero_image {
}

.hero_image.is-anime {
}

.loading,
.blindfold {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.loading_flare {
	position: absolute;
	display: inline-block;
	width: 50vw;
	height: 50vw;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	border-radius: 50%;
	background-color: #fff;
	filter: blur(20px);
}

.loading_flare.is-active {
	animation: flare 2s ease-in-out 0s forwards;
}

.loading_body {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100svh;
}

.loading_name {
	--offset: 10rem;

	margin-top: calc(-1 * var(--offset));
	margin-bottom: var(--offset);
	opacity: 0;
	transition: 1s;
}

.loading_ttls {
	position: relative;
}

.loading_ttl {
	position: relative;
	top: 2rem;

	transition: 3s ease-in-out;
	z-index: 10;
	opacity: 0;
	animation: fadeIn 0.3s ease-in-out 0s forwards;
}

.loading_circle {
	position: absolute;
	display: inline-block;
	width: fit-content;
	height: fit-content;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	z-index: 1;
}

.loading_control {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1000;
}
