/* header */
.header{
	width: 100%;
	height: 100vh;
	flex-direction: column;
	padding: 7rem 8rem 12rem 8rem;
	justify-content: space-between;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../image/main-bg.jpg);
}
.header-nav{
	width: 100%;
	justify-content: flex-end;
}
.header-nav a{
	font-size: 1.6rem;
	color: var(--white);
	margin-left: 2.4rem;
}
.header-menu{
	display: none;
}
.header hgroup{
	margin-left: 3.2rem;
	font-size: 1.6rem;
	color: var(--white);
}
.header hgroup p{
	margin-bottom: .8rem;
}
.header hgroup a{
	margin-left: 0;
	text-decoration: underline;
}
.header-footer{
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
}
.header-footer hgroup{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.header-footer hgroup h1{
	font-family: 'Noto Serif', serif;
	font-size: 6rem;
	font-weight: 500;
	text-align: right;
	margin-bottom: 2rem;
}
.header-footer hgroup h3{
	font-weight: 500;
}
.header-footer aside{
	margin-right: 8rem;
}
.header-footer aside a{
	margin-left: 3rem;
}
.header-footer aside img{
	width: 4.2rem;
	height: 4.2rem;
}


/* info */
.info{
	width: 100%;
	height: 110vh;
	padding: 7rem 8rem 7rem 8rem;
	justify-content: space-between;
}
.info-content{
	width: 50%;
	flex-direction: column;
	align-items: flex-start;
}
.info-content h2{
	font-family: 'Noto Serif', serif;
	font-size: 4rem;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 4rem;
}
.info-content hgroup{
	margin-left: 6rem;
}
.info-content hgroup p{
	color: var(--black2);
	font-size: 1.6rem;
	margin-bottom: 3rem;
}
.info-content hgroup p b{
	color: var(--black);
}
.info-content hgroup a{
	font-size: 2.4rem;
	color: var(--black);
}
.info-content hgroup a:after{
	content: "";
	width: 18rem;
	margin-top: 1rem;
	height: 2px;
	background-color: var(--black);
	display: block;
}
.info-image{
	width: 30%;
	padding: 1.6rem;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../image/elements/info-image.jpg);
}
.info-image span{
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.2rem;
	margin-bottom: .8rem;
}
.info-image p{
	color: var(--white);
	font-size: 1.6rem;
}


/* slider */
.slider{
	width: 100%;
	height: 45rem;
	overflow-x: hidden;
	position: relative;
}
.arrow-prev,
.arrow-next{
	position: absolute;
	height: 5rem;
	width: 5rem;
	top: calc(50% - 2.5rem);
	cursor: pointer;
}
.arrow-prev{
	left: 5rem;
}
.arrow-next{
	right: 5rem;
}
.slider-gallery{
	width: 100%;
	height: 100%;
	position: absolute;
	transition: .5s;
	left: 0;
}
.slider-item{
	width: 80%;
	height: 100%;
	min-width: 80%;
	padding: 4rem 8rem;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.slider-item span{
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.2rem;
	margin-bottom: .8rem;
}
.slider-item p{
	color: var(--white);
	font-size: 1.6rem;
}


/* footer */
.footer{
	flex-direction: column;
	padding: 7rem 8rem 0 8rem;
}
.footer-content{
	width: 100%;
	padding: 4rem 0;
	justify-content: space-between;
}
.footer-content hgroup{
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-right: 8rem;
}
.footer-content hgroup h1{
	font-family: 'Noto Serif', serif;
	font-size: 6rem;
	font-weight: 500;
	text-align: right;
	color: var(--black);
	margin-bottom: 2rem;
}
.footer-content hgroup h3{
	font-weight: 500;
	color: var(--black);
	font-size: 2rem;
	margin-left: 4rem;
}
.footer-content nav{
	width: 25%;
	flex-direction: column;
	align-items: flex-start;
}
.footer-content nav a{
	font-size: 1.6rem;
	color: var(--black);
	margin-bottom: 1.6rem;
}
.footer-content aside{
	width: 25%;
	align-items: flex-start;
	flex-direction: column;
}
.footer-content aside p{
	font-size: 1.6rem;
	margin-bottom: 1.6rem;
	color: var(--black);
}
.footer-content aside a{
	font-size: 1.6rem;
	color: var(--black);
	margin-bottom: 1.6rem;
	text-decoration: underline;
}
.footer-social{
	margin-top: 5rem;
}
.footer-social a{
	margin-right: 2rem;
}
.footer-bottom{
	border-top: 1px solid var(--black2);
	height: 12rem;
	justify-content: space-between;
	align-items: center;
}
.footer-bottom p{
	font-size: 1.5rem;
	color: var(--black2);
}


/* mobile menu */
.menu{
	display: none;
}


@media (max-width: 1025px){

}
@media (max-width: 769px){
	
}
@media (max-width: 426px){
	.header-menu{
		display: flex;
	}
	.header-nav a, .header-nav hgroup{
		display: none;
	}
	.header-footer{
		flex-direction: column;
	}
	.header-footer hgroup{
		margin-bottom: 4rem;
	}
	.header-footer aside{
		margin-right: 0;
	}
	.menu{
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		flex-direction: column;
		background-color: var(--gray);
	}
	.menu header{
		margin: 7rem 8rem 7rem 8rem;
		justify-content: flex-end;
	}
	.menu a, .menu p{
		margin-left: 8rem;
		font-size: 1.6rem;
		color: var(--white);
		margin-bottom: 2rem;
	}
	.info-content{
		width: 100%;
	}
	.info-image{
		display: none;
	}
	.footer-content{
		flex-direction: column;
	}
	.footer-content hgroup{
		width: 100%;
		margin-bottom: 2.4rem;
	}
	.footer-content nav, .footer-content aside{
		width: 100%;
	}
	.footer-bottom{
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-around;
	}
}