@charset "UTF-8";

/* Necessary */

body::-webkit-scrollbar {
    display: none;
}
body::-webkit-scrollbar-track {
    display: none;
}
body::-webkit-scrollbar-thumb {
    display: none;
}
#topFixedNavbar1::-webkit-scrollbar {
    display: none;
}
#topFixedNavbar1::-webkit-scrollbar-track {
    display: none;
}
#topFixedNavbar1::-webkit-scrollbar-thumb {
    display: none;
}
html {
  font-family: 'PT Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

/* Custom */

#navi {
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	background-color: white;
	margin: 0;
	padding: 0;
	outline: 1px solid rgba(230,230,230,1);
}
#navi h2 {
	font-weight: 400;
	font-style: normal;
}
#navi a {
	color: #000000;
}
#navi a:hover {
	color: rgba(0,122,255,1);
	cursor: crosshair;
}
#navi a:active {
	color: blueviolet;
	cursor: crosshair;
}
#work {
	position: absolute;
	z-index: 99000;
	display: flex;
	flex-flow: row wrap;
	top: 0;
	right: 0;
	background-color: white;
	margin: 0;
	padding: 0;
	overflow: scroll;
}
.cast {
	height: max-content;
	background-color: white;
	outline: none;
	text-align: center;
	margin-bottom: 25px;
}
.cast p {
	font-weight: 300;
	font-style: normal;
	padding: 0 10%;
	color: rgba(50,50,50,1);
}
.cast-show {
	display: inline-block !important;
}
.cast-no {
	display: none !important;
}
footlock {
	line-height: 1;
	font-weight: 500;
	font-style: normal;
    text-transform: uppercase;
	position: absolute;
	padding: 0 0 10px 0;
    bottom: 0px;
    text-align: center;
    width: 100%;
    color: rgba(0,0,0,.2);
}

/* Device Small - Mobile */

@media (max-width: 767px) {
	
	#navi {
		height: 100vh;
		width: 90px;
	}
	#work {
		min-height: 100vh;
		width: calc(100vw - 90px);
	}
	#navi h2 {
		font-size: 11px;
		margin-left: 7px;
	}
	.cast {
		width: 100%;
	}
	.cast img {
		width: 100%;
		height: auto;
	}
	.cast p {
		font-size: 7px;
	}
	footlock {
		font-size: 5px;
	}
}

/* Device Medium - Tablet */

@media (min-width: 768px) and (max-width: 991px) {
	
	#navi {
		height: 100vh;
		width: 100px;
	}
	#work {
		min-height: 100vh;
		width: calc(100vw - 100px);
	}
	#navi h2 {
		font-size: 12px;
		margin-left: 9px;
	}
	.cast {
		width: 50%;
	}
	.cast img {
		width: 100%;
		height: auto;
	}
	.cast p {
		font-size: 8px;
	}
	footlock {
		font-size: 5px;
	}
	
}

/* Device Large - Laptop */

@media (min-width: 992px) {
	
	#navi {
		height: 100vh;
		width: 110px;
	}
	#work {
		min-height: 100vh;
		width: calc(100vw - 110px);
	}
	#navi h2 {
		font-size: 13px;
		margin-left: 10px;
	}
	.cast {
		width: 50%;
	}
	.cast img {
		width: 80%;
		height: auto;
	}
	.cast p {
		font-size: 9px;
	}
	footlock {
		font-size: 6px;
	}
	
}

/* Device X-Large - Desktop */

@media (min-width: 992px) and (max-width: 1199px) {
}

/* Device XX-Large - Monitor */

@media (min-width: 1200px) {
}

/* CSS Document */