/* General ******************** */

html {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
}

body {
	background-color: #000;
	background-image: url(stage_01.jpg);
	background-size: 100%;
	background-repeat:no-repeat;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	color: #FFF;
	font-size: 1.4rem;
}

img {
	max-width: 100%;
}

.fadein1 {
    animation-name: fadein;
    animation-duration: 1s;
	animation-delay: 0.5s;
	animation-fill-mode:forwards;
    opacity: 0;

}

.fadein3 {
    animation-name: fadein;
    animation-duration: 2s;
	animation-delay: 1s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadein{
    from{
    opacity: 0;
    transform: translatey(20px);
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}

.scroll_fadein{
  opacity: 0;
}

.fadein_animation_start{
  animation-name: fadein_animation;
  animation-delay: 0.3s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
@keyframes fadein_animation{
  0% {
    opacity: 0;
  }
  100%{
    opacity: 1;
    transform: translate(0);
  }
}
.slideup{
  transform: translateY(20px);
}

.nopc {
	display: none;
}

/* Elements - header ******************** */

.header {
	position:relative;
	background-image: url(stage_01.jpg);
	background-size: 100%;
	background-repeat:no-repeat;
	background-attachment: fixed;
	height:100vh;
}

.info {
	position: absolute;
	bottom: 0;
	padding: 4em 4em 3em 4em;
}

.info h1 {
	font-size: 1.6rem;
}

.info .logo {
	width: 45%;
	filter: drop-shadow(0 0 3px #888);
}

.info p {
	text-align: justify;
}

/* Elements - ritual ******************** */

.ritual {
	background-color: transparent;
}

.before {
	background-color: rgba(0,0,0, 0.6);
	font-size: 2rem;
	font-weight: 500;
	font-style: italic;
	text-align: center;
	padding: 2em 2em 2em 2em;
}

.album {
	background-color: #333;
	display: flex;
	grid-template-columns:1fr 1fr;
}

.album .left,
.album .right {
	flex: 1;
}

.album .left {
	padding: 3em 2em 0em 4em;
}

.album .left h2 {
	margin-bottom: 0.5em;
	font-size: 1.6rem;
}
.album .left .data {
	font-size: 1.2rem;
}

.album .left .tracklist,
.album .left .recording,
.album .left .member {
	margin-top: 1em;
}

.album .right {
	padding: 4em 4em 0em 0;
	line-height: 0;
}

.after {
	display: inline-block;
    padding: 3em 4em 3em 4em;
	background-color: #333;
	position: sticky;
	top: 0;
}

.after p {
	margin: 0 0 0.75em 0;
	text-align: justify;
}

/* Elements - footer ******************** */

#footer {
	position: relative;
} 

.order {
	background-color: rgba(0,0,0, 0.6);
	text-align: center;
	position: sticky;
	top: 0;
	height: 12em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.order a {
	font-size: 2rem;
	letter-spacing: 0.4em;
}

.order a img {
	transition: all 1s;
}

.order a img:hover {
	transform: scale(1.04);
	transition: all 0.3s;
}

.footer {
	margin-top: -12em;
}

.footer span {
	text-align: center;
	width: 100%;
	display: block;
	position: absolute;
	bottom: 4em;
	font-style: italic;
}

.inquiry {
	text-decoration: underline;
	color: #FFF;
}

@media only screen and (max-width: 768px) {
	body {
		background-image: none;
		font-size: 1.6rem;
	}
	.nopc {
		display: block;
	}
	.header {
		background-attachment: scroll;
		height: auto;
	}
	.info {
		position: relative;
		padding: 1em;
		padding-top: 30vh;
	}
	.info .logo {
		width: auto;
	}
	.before {
		background-color: #000;
		font-size: inherit;
		font-weight: normal;
		font-style: normal;
		text-align: left;
		padding: 0 1em 1em 1em;
	}
	.album .left {
		padding: 1em;
	}
	.album .right {
		display: none;
	}
	.after {
		padding: 1em;
	}
	.order {
	    height: 8.5em;
	    padding: 0 1em;
	}
	.order h3 {
		letter-spacing: initial;
	}
	.footer {
		margin-top: 0;
	}
	.footer span {
		bottom: 1em;
	}
}
