@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

html {
	font-size: 16px;
}

body {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	font-size: 1rem;
}

header {
	position: relative;
	height: 100vh;
}

footer {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 10vw;
	background: white;
}

article {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: 500px;
	padding: 0 10vw;
	background: white;
}

.article_title {
	width: 31rem;
	
	position: relative;
	top: 16rem;
	left: -9rem;
	
	transform: rotate(90deg);
}

.article_title h2 {
	font-family: 'Permanent Marker', cursive;
	font-size: 5rem;
}

.article_paragraph {
	font-size: 1rem;
	position: relative;
	top: -2rem;
	left: 9rem;
	width: calc(100% - 9rem);
}

.article_paragraph h3 {
	font-size: 2rem;
	margin: 1rem 0 2rem 0;
}

.article_paragraph p {
	margin: 3rem 0 0 2rem;
	line-height: 1.5rem;
}

#profile_page {
	width: 100%;
	height: 100%;
	background-image: url('../img/bg_profile_page.jpg');
	background-size: cover;
	
	position: fixed;
	z-index: 1;
	top: 0;
	overflow: hidden;
	
	transform-style: preserve-3d;
	perspective: 1200px;
}

#profile_card_outerWrapper {
	width: 100%;
	height: 100%;
	
	transform-style: preserve-3d;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

#profile_card {
	padding: 1rem;
	width: 1000px;
	height: 440px;
	
	background-image: url('../img/card_pic.jpg');
	border-radius: 1rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	transform-style: preserve-3d;
}

#profile_card_innerWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	
	transform-style: preserve-3d;
}

#profile_card_outerWrapper::after {
	content: "";
	display: block;
	width: 150px;
	height: 50px;
	
	background-image: url('../img/scroll_arrow.png');
	background-size: cover;
	opacity: 0.7;
	
	position: absolute;
	bottom: 20px;
	margin: 0 auto;
	
	transform: translateZ(-50px);
	
	animation-duration: 1.5s;
	animation-name: ScrollAllowAnim;
	animation-iteration-count: infinite;
}

@keyframes ScrollAllowAnim {
	0% {
		bottom: 20px;
		transform: rotate3d(0, 1, 0, 0deg);
	}
	
	50% {
		bottom: 70px;
	}

	100% {
		bottom: 20px;
		transform: rotate3d(0, 1, 0, 180deg);
	}
}

#profile_card_innerWrapper>img {
	width: 128px;
	height: 128px;
	border-radius: 50%;
	filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
	transition: all 1s ease-in-out;
	transform: rotateZ(0deg) translateZ(100px);
}

#profile_card_innerWrapper>h1 {
	margin: 16px 0px 8px 0px;
	padding: 4px 12px;
	color: black;
	font-size: 1.75rem;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 1.75rem;
	filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.5));
	transform: translateZ(100px);
}

#profile_card_innerWrapper>p {
	margin: 8px 0px 8px 0px;
	padding: 4px 12px;
	color: black;
	font-size: 1.1rem;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 1.1rem;
	filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.5));
	transform: translateZ(100px);
}

#prof_links {
	position: relative;
	width: 100%;
	height: 48px;
	margin: 1em auto;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	transform: translateZ(100px);
	filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.5));
}

#prof_links>li {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 1.0);
	background-size: cover;
	margin: 0px 8px;
	transition: all .3s ease-in-out;
}

#prof_links>li:hover {
	transform: scale(1.1);
}

#prof_links>li>a,
#prof_links>li>button {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: all .3s ease-in-out;
	opacity: 0;
}

#prof_links>li>a:hover,
#prof_links>li>button:hover {
	opacity: 1;
}

#prof_links>li>a>span,
#prof_links>li>button>span {
	display: flex;
	align-items: center;
	position: absolute;
	top: 56px;
	width: max-content;
	border-radius: 1rem;
	height: 2rem;
	padding: 0 1rem;
	font-size: 1rem;
	color: white;
	background-color: rgba(0, 0, 0, 0.7);
	pointer-events: none;
}

#prof_email {
	background-image: url("../img/icon_email.png");
}

#prof_twitter {
	background-image: url("../img/icon_twitter.png");
}

#prof_misskey {
	background-image: url("../img/icon_misskey.png");
}

#prof_instagram {
	background-image: url("../img/icon_instagram.png");
}

#prof_amazon {
	background-image: url("../img/icon_amazon.png");
}

#prof_share-copy {
	background-image: url("../img/icon_share-copy.png");
}

#gallery_page {	
	filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 1));
	overflow: hidden;
}
#gallery_page ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

#gallery_page ul>li{
	width: 25%;
	height: 20rem;
	
	background-size: auto 130%;
	background-repeat: no-repeat;
	background-position: center;
	
	transition: all .3s ease-out;
}

#gallery_page ul>li:hover{
	box-shadow: inset 0 0 1rem 0.3rem rgba(0, 0, 0, 0.6);
	background-size: auto 100%;
}





#gallery_page #website-setowarabi {
	background-image: url("../img/gallery_website_setowarabi.jpg");
}

#gallery_page #website-28yo {
	background-image: url("../img/gallery_website_28yo.jpg");
}

#gallery_page #website-omorashi {
	background-image: url("../img/gallery_website_omorashi.jpg");
}

#gallery_page #website-pmu {
	background-image: url("../img/gallery_website_pmu.jpg");
}





#gallery_page ul>li>a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	
	filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.6));
	
	transition: all .3s ease-out;
	opacity: 0;
}

#gallery_page ul>li>a:hover{
	opacity: 1;
}

#gallery_page ul>li>a>span{
	background: white;
	padding: 0.5rem;
}

#aboutme_page figure {
	width: 256px;
	margin: 1rem 0 0 2rem;
}

#aboutme_page figure>#aboutme_prof_pic {
	width: 100%;
	border-radius: 3rem;
	
	filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.7));
}

#aboutme_page figcaption {
	margin: 1rem 0;
	text-align: center;
}

#aboutme_page figcaption a {
	text-decoration: underline;
}

footer{
	height: 3rem;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	background: white;
	
}

footer p{
	
}