@charset "utf-8";

body {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	width: 100%;
	/* min-width: 300px; */
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	/* font-family: "Roboto", "Noto Serif JP", sans-serif; */
	font-weight: 300;
	font-style: normal;
	/*******************************　06　其他　*/
}

header {
	/*******************************　01　配置　*/
	display: grid;
	place-content: center;
	/*******************************　02　領域　*/
	width: 100%;
	height: 101svh;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-bottom: 1px solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

header h1 {
	/*******************************　01　配置　*/
	position: fixed;
	z-index: 100;
	right: 0.5rem;
	bottom: 0.5rem;
	/*******************************　02　領域　*/
	width: 8rem;
	height: 2.3rem;
	/*******************************　03　背景　*/
	background-color: #fff;
	/*******************************　04　境界　*/
	border-radius: 1.2rem;
	border: 0.05rem solid #000;
	/*******************************　05　文字　*/
	font-size: 0.8rem;
	text-align: center;
	color: #000;
	/*******************************　06　其他　*/
}

header h1 a {
	/*******************************　01　配置　*/
	display: grid;
	place-items: center;
	/*******************************　02　領域　*/
	width: 100%;
	height: 100%;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

header h2 {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding-bottom: 0.3rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-bottom: 1px solid #000;
	/*******************************　05　文字　*/
	font-size: 1.2rem;
	text-align: center;
	/*******************************　06　其他　*/
}

header h2 mark {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	display: block;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-size: 0.7rem;
	text-align: center;
	padding-bottom: 0.3rem;
	/*******************************　06　其他　*/
}

header p {
	/*******************************　01　配置　*/
	position: relative;
	/*******************************　02　領域　*/
	margin-top: 1rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-size: 0.9rem;
	text-align: center;
	/*******************************　06　其他　*/
}

/***********************************　headerheader　> p > a */
header p a {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0.2rem 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-radius: 1.2rem;
	border: 0.05rem solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}





/***********************************************************
試作
***********************************************************/

/***********************************　aside */
aside {
	/*******************************　01　配置　*/
	z-index: 9999;
	position: fixed;
	inset: 0;
	display: grid;
	place-content: center;
	/*******************************　02　領域　*/
	width: 100%;
	height: 100%;
	/*******************************　03　背景　*/
	/* background-color: #fff; */
	background-color: #222;

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	color: #1d3557;
	/*******************************　06　其他　*/
	opacity: 1;
}

/***********************************　aside アニメーション */
@keyframes fadein {
	0% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		visibility: hidden;
	}
}

aside {
	/*******************************　01　配置　*/
	display: grid;
	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-family: "Roboto", "Noto Serif JP", sans-serif;
	/*******************************　06　其他　*/
	animation: fadein 11.5s ease-out forwards;
}

/***********************************　aside h2 */
aside h2 {
	/*******************************　01　配置　*/
	position: absolute;
	inset: 0;

	margin: auto;
	/*******************************　02　領域　*/
	width: 9rem;
	height: fit-content;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-size: 1.2rem;
	color: transparent;
	text-align-last: justify;

	/*******************************　06　其他　*/
}

aside h2 mark {
	/*******************************　01　配置　*/
	display: block;
	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-size: 0.8rem;
	color: transparent;
	text-align-last: justify;
	/*******************************　06　其他　*/
}

aside p {
	/*******************************　01　配置　*/
	position: absolute;
	inset: 0;

	display: grid;
	place-content: center;
	/*******************************　02　領域　*/
	overflow: hidden;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-weight: 600;
	font-size: 1.6rem;
	color: transparent;
	text-align: center;
	/*******************************　06　其他　*/
}

/***********************************　aside h2, aside p アニメーション */
@keyframes blurFadeInOut01 {
	0% {
		opacity: 0;
	}
	10% {
		opacity: 0;
		text-shadow: 0px 0px 2rem #fff;
		transform: scale(3);
	}
	30%,
	75% {
		opacity: 1;
		text-shadow: 0px 0px 0.05rem #fff;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		/* display: none; */
	}
}

@keyframes blurFadeInOut02 {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 2rem #fff;
		transform: scale(1);
	}
	30%,
	85% {
		opacity: 1;
		text-shadow: 0px 0px 0.05rem #fff;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		/* display: none; */
	}
}

aside h2 {
	animation: blurFadeInOut02 3.5s ease-in backwards;
}

aside p {
	animation: blurFadeInOut01 3.5s ease-in backwards;
}

aside h2:nth-of-type(1) {
	animation-delay: 7s;
}

aside p:nth-of-type(2) {
	animation-delay: 3.5s;
}

aside p:nth-of-type(1) {
	animation-delay: 0s;
}


