@charset "UTF-8";

/* common */
body {
	background-color: #937852;
}

.container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

a {
	text-decoration: none;
	color: #000;
}

a:hover {
	text-decoration: underline;
	color: #937852;
}

/* header */
header {
	width: 100%;
	background-color: #fff;
}

header li {
	padding-right: 8px;
}

header h1 {
	display: none;
}

/* main */
main h2 {
	display: block;
	position: absolute;
	top: 250px;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	color: #ffffff;
	font-size: 48px;
	white-space: nowrap;
}

main h3 {
	display: block;
	position: absolute;
	top: 350px;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	color: #ffffff;
	font-size: 32px;
	white-space: nowrap;
	max-width: 100%;
}

.main-img {
	position: relative;
	width: 100%;
	height: auto;
}

.main-img img {
	display: block;
	margin: 0 auto;
	width: 1500px;
	max-width: 100%;
	height: 70vh;
	object-fit: cover;
}

.main-img>p {
	position: absolute;
	visibility: hidden;
	animation: anime_slider_fade 16s 0s infinite;
}

.main-img>p:nth-child(2) {
	animation-delay: 4s;
}

.main-img>p:nth-child(3) {
	animation-delay: 8s;
}

.main-img>p:nth-child(4) {
	animation-delay: 12s;
}

@keyframes anime_slider_fade {
	0% {
		visibility: visible;
		opacity: 0;
	}

	15% {
		opacity: 1;
	}

	25% {
		opacity: 1;
	}

	40% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/* footer */
.name p {
	margin-top: 500px;
	padding: 16px;
}

.address p {
	padding: 16px;
}

.tel p {
	padding: 16px;
}

.privacy p {
	padding: 30px;
	text-align: center
}

.privacy p:hover {
	opacity: 0.6;
}

.copyright p {
	padding: 30px;
	text-align: center;
}

/* ロケーション */
.location p {
	padding: 8px 0 32px 16px;
}

.location-img img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.location-title h2 {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	color: #ffffff;
	font-size: 48px;
	white-space: nowrap;
	padding: 32px;
	background-color: rgba(147, 120, 82, 0.5);
}

iframe {
	display: block;
	width: 100%;
	margin: 0 auto;
}

/* about */
.about-img img {
	width: 100%;
	height: 70vh;
	object-fit: cover;
	margin-bottom: 30px;
}

.about-title h2 {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	color: #ffffff;
	font-size: 48px;
	white-space: nowrap;
	padding: 32px;
	background-color: rgba(147, 120, 82, 0.5);
}

.about-text img {
	max-width: 100%;
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
}

.about-text {
	width: 50%;
	padding: 16px;
	text-align: center;
}

.about-text h4 {
	text-align: center;
	font-size: 32px;
	padding: 32px;
}

.about-text img {
	max-width: 100%;
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
}


/* menu */
.menu-img img {
	width: 100%;
	height: 70vh;
	object-fit: cover;
}

.menu-title h2 {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	color: #ffffff;
	font-size: 48px;
	white-space: nowrap;
	padding: 32px;
	background-color: rgba(147, 120, 82, 0.5);
}

.menu p {
	text-align: center;
	font-size: 32px;
	padding: 32px;
}

dl {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
}

dt {
	width: 85%;
	text-align: left;
	border-bottom: 1px dotted #111;
	margin-bottom: 25px;
}

dd {
	width: 15%;
	text-align: right;
}

/* レスポンシブル */
@media (min-width: 600px) {
	header h1 {
		font-size: 32px;
		white-space: nowrap;
		display: block;
	}

	.about-text img {
		width: 250px;
		height: 250px;
	}

	.menu {
		display: flex;
		justify-content: space-around;
	}

	.sp-left {
		width: 50%;
	}

	.sp-right {
		width: 50%;
	}
}