@media screen and (min-width: 600px) {
	main{
		display: flex;
		align-items: center;
		height: calc(100vh - 8vw);
		position: relative;
		overflow-x: scroll;
		overflow-y: hidden;
	}
	main::-webkit-scrollbar{
		display: none;
	}
	#g-head{
		width: 25vw;
		margin: 0 2vw 2vw 10vw;
	}
	#g-head > h1{
		width: 25vw;
		position: relative;
		font-size: 2.5vw;
	}
	#g-head > h1 > span{
		color: #000;
		height: 3vw;
		position: relative;
		line-height: 5vw;
		font-size: 6vw;
		z-index: 1;
		transform: translate(-5vw, 0);
	}
	#g-head > h1::before{
		content: "";
		display: block;
		width: 25vw;
		height: 18vw;
		background-color: #eee;
		transform: skew(-15deg);
		position: absolute;
		top: -3vw;
		left: -3vw;
		opacity: .5;
		animation: ta 1s backwards;
	}
	#breadol{
	    width: 100vw;
	    display: flex;
	    align-content: center;
	    justify-content: flex-start;
	    list-style: none;
	    position: relative;
	    padding: 2vw 0 0 0;
	    margin: 0;
	    z-index: 1;
	}
	#breadol li{
	    font-size: 1.2vw;
	    color: #000;
	    line-height: 1vw;
	    display: flex;
	}
	#breadol li a{
	    color: #000;
	    margin-right: 2vw;
	    display: block;
	    position: relative;
	}
	#breadol li a::after{
		content: "";
		display: block;
		width: .2vw;
		height: 1vw;
		background-color: #000;
		transform: skew(-15deg);
		position: absolute;
		top: 0vw;
		right: -1.1vw;		
	}
	@keyframes ta{
		0%{transform: skew(-15deg) translate(-50vw, 0); opacity: 0;}
		100%{transform: skew(-15deg) translate(0, 0); opacity: .5;}
	}
	@keyframes tb{
		0%{transform: translate(-100vw, 0) rotate(15deg); opacity: 0;}
		100%{transform: translate(0, 0) rotate(15deg); opacity: 1;}
	}

	#gallery-page{
		position: relative;
		display: flex;
		align-items: center;
	}
	.gallery-1{
		position: relative;
		animation: tb 1.5s backwards;
		animation-delay: .1s;
		transform: translate(0, 0) rotate(15deg);
	}
	.gallery-1 img{
		width: 40vh;
		display: block;
		margin: 1.5vh;
		border-radius: 1vw;
	}
}






























@media screen and (max-width: 600px) {
	main{
		position: relative;
		overflow: hidden;
	}
	main::-webkit-scrollbar{
		display: none;
	}
	#g-head{
		width: 100vw;
		margin: 30vw 0 10vw 0;
		overflow: hidden;
	}
	#g-head > h1{
		width: 100vw;
		position: relative;
		font-size: 7.5vw;
		text-align: center;
		padding: 5vw 0;
	}
	#g-head > h1 > span{
		color: #000;
		height: 9vw;
		position: relative;
		line-height: 15vw;
		font-size: 18vw;
		z-index: 1;
		transform: translate(-5vw, 0);
	}
	#g-head > h1::before{
		content: "";
		display: block;
		width: 90vw;
		height: 50vw;
		background-color: #eee;
		transform: skew(-15deg);
		position: absolute;
		top: 0vw;
		left: 5vw;
		opacity: .5;
		animation: ta 1s backwards;
	}
	#breadol{
		width: 100vw;
	    display: flex;
	    justify-content: center;
	    align-content: center;
	    flex-wrap: wrap;
	    list-style: none;
	    position: relative;
	    z-index: 1;
	    padding: 0;
	    margin: 3vw 0;
	}
	#breadol li{
	    font-size: 3.6vw;
	    color: #000;
	    line-height: 3vw;
	    display: flex;
	    margin: 1vw 0;
	}
	#breadol li a{
	    color: #000;
	    margin-right: 6vw;
	    display: block;
	    position: relative;
	}
	#breadol li a::after{
		content: "";
		display: block;
		width: .6vw;
		height: 3vw;
		background-color: #000;
		transform: skew(-15deg);
		position: absolute;
		top: 0vw;
		right: -3.3vw;		
	}
	@keyframes ta{
		0%{transform: skew(-15deg) translate(-50vw, 0); opacity: 0;}
		100%{transform: skew(-15deg) translate(0, 0); opacity: .5;}
	}
	@keyframes tb{
		0%{transform: translate(0, -10vw) rotate(15deg); opacity: 0;}
		100%{transform: translate(0, -1vw) rotate(15deg); opacity: 1;}
	}

	#gallery-page{
		position: relative;
		overflow: hidden;
		margin: 5vw 0;
	}
	.gallery-1{
		position: relative;
		animation: tb 1.5s backwards;
		animation-delay: .1s;
		transform: translate(0, -1vw) rotate(15deg);
		transform-origin: right;
		display: flex;
		justify-content: center;
	}
	.gallery-1 img{
		width: 40vw;
		display: block;
		margin: 1.5vw 1vw;
		border-radius: 1vw;
	}
}




