@charset "utf-8";

/* root */
html{
	font-size: 16px;
}

/* body common */
body{
	fontsize:1rem;
	line-height: 1.8;
	font-family: sans-serif;
	color: #333;
	background: #fff;
}

main{
	
}
	
	.hero{
		width:100%;
		height:80vh;
		color:#fff;
		text-align: center;
		text-shadow: 0 0 5px #000;
		margin:20px auto;
		border-radius: 10px;
		position: relative;
		text-align: center;
	}
.honmon{
	position: absolute;
	left:50%;
	top:50%;
	transform: translate(-50%,-50%);	
}
.honmon h1{
	font-size: 3.5rem;
	line-height: 1.2;
	font-family: 'Raleway', sans-serif;
}
.honmon h1 span{
display: block;
font-size: 1rem;
font-family: sans-serif;
padding-bottom: 10px;
}

 .honmon p{
	background: #333;
	display: inline;
	padding: .4em 0 .4em 1em;
	letter-spacing:1em;
	transition: .5s;
}
.honmon p:hover{
	background:#444;
	
}
.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.container{
	width: 80%;
	margin:0 auto;
}

.footer-left{
	padding-left: 5%;
	flex:65%;
	font-size: 10px;
}
.footer-right{
	padding-right: 5%;
	flex:30%;
	text-align: right;
	font-size: 10px;
}
.footer-left ul,.footer-left li  {
	display: inline;
}

.footer-left li span{
	padding: 2px 3px;
	background: #666;
	color: #fff;
	margin-right: 5px;
	font-size: 10px;
}

footer h2{
	fontsize:1.2rem;
	font-weight: bold;
}

footer>p{
	padding-bottom: 15px;
	text-align: center;
}

footer a{
	transition: .5s;
}
footer a:hover{
	color:#90A9A9;
}

@media (max-width: 1024px) {
	
	footer p{
		text-align: left;
	}
	
	
	.footer-left {
    padding-left: 0;
}	
}

@media (max-width: 700px) {
	.container{
		width: 100%;
	}
	.honmon h1{
	font-size: 2rem;
	}
	footer{
		margin: 0 1rem!important;
	}
	footer p{
		width: 100%;
	}
}