@charset "UTF-8";
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::before, ::after {
	box-sizing: inherit;
}
body{
	background-color: #e9e9e9;
	line-height: 1.5;
	color:#333;
	font-family: "Avenir Next", Verdana, sans-serif;
	font-size: 16px;
}
h1, h2, p {
	text-align: center;
}

/*🍔*/
button {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
.menu {
	display: flex;
	flex-direction: column;
	position: fixed;
	right: -100%;
	width: 100%;
	height: 300px;
	background-color: rgba(167, 148, 58, 0.7);
	color: #efefef;
	transition: .3s;
}
.menu-list {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}
.menu.open {
	position: absolute;
	right: 0;
}
.btn{
	position: fixed;
	top: 32px;
	right: 16px;
	width: 48px;
	height: 48px;
	z-index: 10;

}
.btn-line {
	display: block;
	position: relative;
	width: 100%;
	height: 4px;
	background-color: #d6d5d5;
	transition: .2s;
}
.btn-line::before,
.btn-line::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #d6d5d5;
	transition: .5s;
}
.btn-line::before {
	transform: translateY(-16px);
}
.btn-line::after {
	transform: translateY(16px);
}
.menu.open {
	right: 0;
}
.btn-line.open {
	background-color: transparent;
}
.btn-line.open::before,
.btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	transform: rotate(45deg);
}
.btn-line.open::after {
	transform: rotate(-45deg);
}


header{
 	background-color: #1C97AC;
	color: #fff;
	max-width: 100%;
}

img {
	max-width: 100%;
	padding-bottom: 10px;
}
h1{
	color: #fff;
  	margin-left: auto;
 	margin-right: auto;
  	padding-left: auto;
  	padding-right: auto;
  	color: #fff;
  	text-shadow: 1px 1px 10px #4b2c14;
}

h2 {
	margin: 80px 40px auto;
}
p{
	padding: 20px;
}
a {
	text-decoration: none;
	color: inherit;
}
#tool {
	text-align: center;
}
footer {
	background-color: #C0C0C0;
}



@media screen and (min-width: 600px) {
	.btn {
		display: none;
	}
	.menu {
		display: flex;
		flex-direction: row;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100px;
	}
	body {
		text-align: center;
	}

	main {
		max-width: 820px;
		margin: 0 auto;
	}
	.slider img {
	margin-left: 50%;
	transform: translateX(-50%);
	}


}






























