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

body {
	font-family:'Roboto';
	color: #333;
}

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

header{
	width: 1100px;
	margin: 0 auto;
	margin-bottom: 30px;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#wrap_logo {
	display: flex;
	justify-content: flex-start;
}

#wrap_logo h1 {
	margin-right: 30px;
}

#wrap_logo div {
	width: 60px;
}

header ul {
	display: flex;
	justify-content: flex-end;
	column-gap: 30px;
}

header ul li a {
	font-weight: bold;
}

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

footer {
	background: #F0F0F1;
	padding: 60px 0;
}

#footer_in {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

footer h2 {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 30px;
}

footer dl {
	display: flex;
	justify-content: flex-start;
	column-gap: 50px;
	margin-bottom: 40px;
}

footer dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}

footer ul li {
	margin-bottom: 10px;
}

footer .insta {
	position: absolute;
	right: 25%;
	top: 0;
	width: 60px;
}

/* title
----------------------------------- */

#page_title {
	width: 1100px;
	margin: 0 auto;
	margin-bottom: 70px;
	padding: 90px;
	color: #46B450;
	font-weight: bold;
	font-size: 2rem;
	text-align: center;
	background: #EDF8EE;
	border-radius: 10px;
}