﻿@charset "UTF-8";

* {
	box-sizing: border-box;
}

body {
	max-width: 1200px;
	font-family: Arial, sans-serif;
	color: #8b4513;
	margin: 0 auto;
	padding: 0;
	background-color: #fff8dc;
}

header {
	display: flex;
	justify-content: space-between;
	height: 80px;
	margin: 0 auto;
	padding: 0 10px;
}

header h1{
	font-size: 1.5;
}

header h1 a {
	text-decoration: none;
	color: #8b4513;
}

header h1 a:hover {
	text-decoration: none;
	color: #d2b48c;
}


header nav {
	padding: 0;
}

header nav ul {
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}

header nav ul li {
	margin: 30px 15px 0 15px;
}

header nav ul li a {
	text-decoration: none;
	color: #8b4513;
}

header nav ul li a:hover {
	color: #d2b48c;
}

h2 {
	border-left: 10px solid #8b4513;
	border-bottom: 1px solid #8b4513;
	padding: 0 0 0 10px;
}

main {
	margin: 0 0 25px 0;
}

#main-content {
	display: flex;
	justify-content: space-evenly;
}

#shop-img-area {
	background-color: #d2b48c;
	width: 350px;
	height: 250px;
}

.menu-section {
	display: flex;
	justify-content: space-evenly;
	margin: 0 auto 15px auto;
	max-width: 800px;
}

.menu-section ul {
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	max-width: 400px;
}

.menu-section ul li:first-child {
	font-weight: bold;
	font-size: 1.2em;
}

.menu-img-area {
	background-color: #d2b48c;
	width: 200px;
	height: 200px;
}

footer {
	margin: 0 auto 25px auto;
	padding: 25px 0 0 0;
	border-top: 1px solid #d2b48c;
}

footer p {
	text-align: center;
}

footer nav {
	display: flex;
	justify-content: center;
}

footer ul {
	list-style-type: none;
	margin: 0 10px;
	padding: 0;
}

footer ul li {
	margin: 5px 0 0 0;
}

.sns-area {
	background-color: #d2b48c;
	width: 50px;
	height: 50px;
}

footer small {
	display: block;
	text-align: center;
	margin: 10px 0 0 0;
}

footer a {
	text-decoration: none;
	color: #8b4513;
}

footer a:hover {
	color: #d2b48c;
}

@media (max-width: 768px) {
	header {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		height: 150px;
	}
	
	header nav {
		font-size: 0.9em;
	}
	
	#shop-img-area,.menu-img-area {
		width: 300px;
		height: 200px;
		margin: 0 auto;
	}

	#main-content,.menu-section {
		display: flex;
		flex-direction: column;
	}

	.menu-section ul li:first-child {
		font-weight: bold;
		font-size: 1.2em;
		text-align: center;
	}

	#main-content section p {
		text-align: center;
	}
}
