html,
body {
	min-width: 100vw;
	min-height: 100vh;
	font-size: 16px;
	color: #fff;
	background-color: black;
	font-family: 'Yu Gothic UI','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

h1.title {
	position: fixed;
	left: 0;
	font-size: 5rem;
	color: #fff;
	writing-mode: vertical-rl;
	opacity: 0.5;
}

.inner {
	padding: 5%;
}

p {
	word-wrap: break-word;
}
/*menu*/
/**********************************************************/
.menuButton {
	display: block;
	position: fixed;
	padding: 20px 12px;
	right: 20px;
	bottom: 20px;
	font-size: 1.6rem;
	color: #fff;
	font-family: 'Economica', sans-serif;
	border: 2px solid #fff;
	border-radius: 48px;
	opacity: 0.5;
	transition: 0.5s;
}

.menuArea {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000000b3;
	transition: 0.5s;
}

.menuBox {
	display: block;
	position: fixed;
	width: fit-content;
	right: -170px;
	bottom: 20px;
	font-size: 3.3rem;
	font-family: 'Economica', sans-serif;
	transition: 0.5s;
}

@keyframes ani {
    0%,
    100% {
      filter: hue-rotate(0deg);
    }
    50% {
      filter: hue-rotate(360deg);
    }
}

.menu {
	display: block;
	width: 100%;
	text-align: right;
}

.menu p {
	color: rgb(228, 228, 228);
}

.unshown {
	visibility: hidden;
	background-color: #00000000;
}

.rightSlide {
	right: 10px;
}

.bottomSlide {
	bottom: -110px
}

@media screen and (min-width:768px) {
	h1.title {
		font-size: 9rem;
	}

	.inner {
        margin: 0 auto;
		width: 600px;
	}
}

h2.sns,
h2.youtube {
    padding-top: 60px;
    font-size: 2rem;
    text-align: center;
}

.icon {
    display: block;
    margin: 10%;
    width: 50px;
    height: auto;
}

.youtubeIcon {
    display: block;
    margin: 10% auto 20%;
    width: 60px;
    height: auto;
}

.flexBox {
    display: flex;
    justify-content: center;
}