@charset "utf-8";
/* CSS Document */

html{
	font-size: 100%;
}
body{
	background-color: #E7E4DE;
	color: #464646;
	font-family: 'Playfair Display', serif;
	letter-spacing: .15rem;
}
img{
	max-width: 100%;
}
a{
	color:#464646;
	text-decoration: none;
}



.wrapper{
	max-width: 1000px;
	margin: 0 auto;
}
.section{
	margin-bottom: 120px;
}

/*----------------*/
#header{
	position: fixed;
	width: 100%;
	z-index: 100;
}
.header-div{
	background-color: #474242;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}
.logopic{
	width: 100px;
	height: auto;
}
.nav{
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
}
.nav li{
	padding-left: 20px;
}
.nav a{
	color: #fff;
}
#header a:hover{
	opacity: .7;
	transition: .2s;
}
.mainimg{
	padding-top: 60px;
	width: 100%;
	height: 500px;
	object-fit: cover;
	margin-bottom: 100px;
	object-position: 0% 30%;
}
.main-title{
	font-size: 2.0rem;
	text-align: center;
	margin-bottom: 50px;
	font-weight: 600;
}
/*--------------
about
----------------*/
.about-div{
	display: flex;
	justify-content:center;
}
.about-img img{
	width: 150px;
	height: 150px;
	object-fit: cover;
	margin: auto;
	border-radius: 30px;
}
.about-text{
	width: 50%;
	padding: 20px 0 0;
	line-height: 1.45;
	padding-left: 130px;
}
.about-div div p{
	padding-bottom: 10px;
}
/*-----------------
item
------------------*/
.item-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 0 10px;
}
.item-wrapper li{
	width: 30%;
	padding-bottom: 30px;
}
.item-wrapper li img:hover{
	opacity: .6;
	z-index: 10;
	transition: .3s;
}
.item-wrapper li img{
	width: 300px;
	height: 250px;
	border-radius: 10px;
	object-fit: cover;
}
.item-wrapper li:nth-of-type(1) img{
	object-position: 0 80% ;
}
.item-wrapper li:nth-of-type(6) img{
	object-position: 0 80%;
}
.linktext{
	text-align: center;
	display: block;
	position: relative;
}
.linktext::after{
	position: absolute;
	content: "";
	left: 50%;
	top: 130%;
	width: 6px;
	height: 6px;
	border-top: 2px solid #474242;
	border-right: 2px solid #474242;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.linktext:hover{
	opacity: 0.5;
}
.linktext::after:hover{
	opacity: 0.5;
}

/*--------------------
footer
-------------------*/
#footer{
	display: flex;
	justify-content: space-between;
	padding: 30px 40px;
	background-color: #474242;
	color: #fff;
	
}
#footer ul{
	display: flex;
}
#footer ul li{
	padding-right: 30px;
}
#footer ul li:hover{
	opacity: .5;
}#footer a{
	color: #fff;
}
.copyright{
	text-align: center;
	font-size: 0.75rem;
}

/*---------------
contact.html
-----------------*/
.contact-form{
	padding-top: 150px;
	max-width: 600px;
	width: 100%;
	box-sizing: border-box;
}
.contact-form-area1 textarea{
	display: inline-block;
	width: 100%;
	margin: 0 0 50px;
	border: none;
	resize: vertical;
	box-sizing: border-box;
	border-radius: 5px;
}
.contact-form-area1 label{
	display: block;
	padding-left: 10px;
	margin-bottom:20px;
	font-size: 0.875rem;
}
.contact-form-area2{
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding-left: 10px;
	margin-bottom: 40px;
}
.contact-form-area2 label{
	width: 25%;
	display: inline-block;
	padding-bottom: 10px;
	font-size: 0.875rem;
	box-sizing: border-box;
}
.contact-form-area2 input{
	display: inline-block;
	width: 70%;
	height:25px;
	margin-bottom: 30px;
	align-items:flex-end;
	box-sizing: border-box;
	border: none;
	border-radius: 5px;
}
.send{
	display: block;
	margin: 0 auto;
	padding: 10px 25px;
	border: none;
	background-color: #474242;
	border-radius: 5px;
	font-family: 'Playfair Display', serif;
	color: #fff;
}
.send:hover{
	opacity: .5;
}


@media screen and (max-width: 990px){
	body{
		font-size: 0.75rem;
	}
	
	/*------header-------*/
	.header-div{
		padding: 10px;
	}
	.nav{
		padding-left: 10px;
		font-size: 0.875rem;
	}
	
	/*------------------*/
	.mainimg{
		padding-top: 30px;
		height: 300px;
		margin-bottom: 50px;
	}
	.wrapper{
		padding: 0 15px;
	}
	.main-title{
		font-size: 1.0rem;
		margin-bottom: 30px;
	}
	.section{
		margin-bottom: 60px;
	}
	/*-------------------*/
	
	/*------about-------*/
	.about-div{
		display: block;
	}
	.about-img{
		padding-bottom: 10px;
		text-align: center;
	}
	.about-div div{
		padding-left: 0;
	}
	.about-div div:nth-child(2){
		display: inline-block;
		padding-left: 0;
		margin:0 auto;
	}
	.about-text{
		width: 100%;
		padding-left: 0;
	}
	/*--------item--------*/
	.item-wrapper{
		margin: 0 auto;
		padding: 0;
	}
	.item-wrapper li{
		width: 48%;
		display: block;
	}
	.item-wrapper li img{
		width: 100%;
	}
	/*------footer-------*/
	#footer{
		display: block;
	}
	#footer ul{
		justify-content:center;
		padding-bottom: 10px;
	}
	#footer ul li:nth-of-type(2){
		padding-right: 0;
	}
	.copyright{
		font-size: 0.6rem;
	}
	/*--------contact.html-----------*/
	.contact-form{
		padding-top: 150px;
		width: 100%;
		min-width: 300px;
	}
	.contact-form-area2 label{
		width: 100%;
	}
	.contact-form-area2 input{
		width: 100%;
	}
}



















