@charset "utf-8";

html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	font-family: san-serif;
}

img {
	vertical-align: bottom;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

h1 {
	color: #673913;
	font-size: 24px;
	font-weight: bold;
	font-family: serif;
	padding: 30px 0 10px;
	text-align: center;
}

header,
#topimage,
main,
footer {
	width: 1000px;
	margin: 0 auto;
}

nav {
	width: 1000px;
	margin: 0 auto;
	position: sticky;
	top: 0;
	z-index: 2;
}

nav button {
	display: none;
}

nav ul {
	width: 1000px;
	margin: 0 auto;
	list-style-type: none;
	display: flex;
}

nav li {
	width: 250px;
}

nav li a {
	background-color: rgba(103, 57, 19, 0.9);
	padding: 15px;
	display: block;
	text-align: center;
	color: #ffffff;
	text-decoration: none;
}

nav li a:hover,
#index nav li:nth-child(1) a,
#menu nav li:nth-child(2) a,
#access nav li:nth-child(3) a,
#contact nav li:nth-child(4) a {
	background-color: #bf783e;
	color: #673913;
}

main {
	background: url(img/paper3.jpg) no-repeat 0 0/cover;
	padding: 40px 0;
}

h2 {
	font-family: serif;
	margin: 0 20px 30px;
	color: #673913;
	border-bottom: 5px double #673913;
	line-height: 1;
	/* border-style: double; */
}

#index main h2 {
	background-color: #673913;
	width: 120px;
	text-align: center;
	padding: 10px 0;
	color: #ffffff;
	border-radius: 10px;
	border: none;
	line-height: 1.5;
	margin: 0 20px;
}

#index main ul {
	list-style: none;
}

#index main ul li {
	margin: 0 20px;
	padding-top: 20px;
	border-bottom: 3px dotted #ffffff;
}

#index main ul li time {
	margin-right: 16px;
}

/*menuページここから*/
section {
	background-color: #673913;
	margin: 0 20px 40px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

section h3 {
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	color: #ffffff;
	width: 100%;
}

.drink {
	background-image: url(img/listmark2.png);
}

.food {
	background-image: url(img/listmark.png);
}

section div {
	background-color: #ffffff;
	width: 880px;
	padding: 20px;
	margin-top: 20px;
}

section div h4 {
	border-top: 3px solid #673913;
	border-bottom: 1px solid #673913;
	margin-bottom: 10px;
	padding: 5px;
}

section div ul {
	width: 800px;
	padding: 0 40px;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
}

section div ul li {
	width: 240px;
}

section div ul li img {
	width: 100%;
	margin-bottom: 5px;
}

section div ul li dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

section div ul li dl dt {
	font-weight: bold;
}

section div ul li dl dd.description {
	font-size: 14px;
	width: 240px;
}

/*accessページここから*/
#access main>div {
	margin: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

iframe {
	width: 500px;
	height: 400px;
}

table {
	width: 440px;
	border-collapse: collapse;
}

table th,
table td {
	border: 1px solid #673913;
	background-color: #ffffff;
	padding: 10px;
}

table th {
	background-color: #673913;
	color: #ffffff;
}

/*contactページここから*/
form>ul {
	border: 20px solid #673913;
	background-color: #ffffff;
	margin: 0 20px;
	padding: 30px 0 0;
}

form>ul li {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin: 0 auto 20px;
}

form>ul>li>label {
	background-color: #673913;
	color: #fff;
	width: 220px;
	display: block;
	margin-right: 10px;
	padding: 7px;
}

form>ul>li>ul {
	width: 400px;
	padding: 7px 14px 0 0;
	display: flex;
}

form>ul>li>ul>li {
	margin-right: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
	width: 400px;
	font-size: 100%;
	padding: 5px;
}

input[type="radio"] {
	margin-right: 5px;
}

textarea {
	height: 150px;
}

.submitbox {
	background: url(img/paper3.jpg) no-repeat 0 0/cover;
	padding: 40px;
	text-align: center;
	border-top: 1px dashed #673913;
	margin: 0 auto;
}

.submitbox input {
	background-color: #673913;
	color: #ffffff;
	border-radius: 20px;
	padding: 10px 40px;

}

/*footerここから*/
footer {
	background-color: #673913;
	padding: 40px 0;
	text-align: center;
	font-size: 80%;
	color: #ffffff;
	text-align: center;
}

/*TOPへ戻るボタン*/
.topbtn a {
	background-color: #ffffff;
	color: #673913;
	display: block;
	width: 120px;
	text-align: center;
	padding: 10px 0;
	border-radius: 20px;
	position: fixed;
	right: 10px;
	bottom: 10px;
	box-shadow: 3px 3px 3px #666;
}

.topbtn a:hover {
	opacity: 0.8;
}