html {
	font-size: 62.5%;
}

body {
	font-size: 4.1vw;
	font-family: sans-serif;
	color: #333333;
	line-height: 1.6;
	text-align: center;
}

main {
	padding-bottom: 30px;
	background-color: #F8F6ED;
	overflow: hidden;
	overflow-y: scroll;
}

a {
	color: inherit;
	word-break: break-all;
}

h1 {
	font-size: 2rem;
}

p {
	padding: 5px 0 10px 0;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	padding: 0 20px;
	margin: auto;
}

.cyan {
	color: #00AABC;
}

.orange {
	color: #F5561C;
}

.small {
	font-size: 0.8em;
}

.btn {
	margin: 10px auto;
}

.tc {
	padding-top: 30px;
	background-color: #FFFFFF;
}

.tc h2 {
	font-size: 1.5em;
}

.contact {
	padding: 10px 0;
	font-size: 1.2em;
	color: #FFFFFF;
	background-color: #00AABC;
}

#pagetop {
	display: none;
	position: fixed;
	right: 15px;
	bottom: 15px;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	background-color: #000000;
	border-radius: 50px;
	cursor: pointer;
}

#pagetop::before {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	bottom: 0;
	left: 50%;
	margin: auto;
	width: 16px;
	height: 16px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	transform: translate(-50%, -50%) rotate(-45deg);
}


/* index */
.about {
	margin: 0 -20px;
	padding: 20px;
	background-color: #FFFFFF;
}

.food {
	display: flex;
	gap: 3%;
	padding-bottom: 20px;
	margin: 0 -10px;
}

.food li img {
	border-radius: 50%;
}

.opening {
	padding: 5px 0;
	margin: 10px 0;
	font-weight: bold;
	color: #F5561C;
	border: solid 2px #F5561C;
}

.price {
	padding-top: 8vw;
}

.price h2 img {
	max-width: 38%;
	transform: translateY(-50%);
}

.price h3 {
	font-size: 1.5em;
	line-height: 1;
}

.price strong {
	font-size: 1.8em;
	line-height: 1;
}

.price .box {
	margin-bottom: 40px;
	font-size: 1.2em;
	text-align: center;
	border-color: #00AABC;
}


/* shoplist */
#shoplist h1 {
	font-size: 1.8em;
	color: #FFFFFF;
	background-color: #F5561C;
}

.list {
	padding: 20px 0;
	text-align: left;
}

.list li {
	position: relative;
	padding-left: 1.1em;
	margin: 20px 0;
	font-size: 0.94em;
	line-height: 1.2;
}

.list li::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0.1em;
	left: 0;
	width: 0.9em;
	height: 0.9em;
	background-color: #333333;
	border-radius: 50%;
}

.map {
	margin-bottom: 30px;
	height: 80vh;
	border: solid 2px #00AABC;
	overflow: hidden;
}

.map iframe {
	position: relative;
	top: -59px;
	width: 100%;
	height: calc(100% + 59px);
}

.box {
	padding: 15px;
	margin: 10px 0;
	text-align: left;
	background-color: #FFFFFF;
	border: solid 2px #F5561C;
}

.box dl {
	padding-top: 30px;
}

.box dl dt {
	display: inline-block;
	min-width: 5.5em;
	font-size: 1.2em;
	font-weight: bold;
	color: #F5561C;
	text-align: center;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 100%;
}

.box dl dt:nth-of-type(-n + 2) {
	background-image: url(../images/shoplist/bg_dt1.png);
}

.box dl dt:nth-of-type(n + 3) {
	background-image: url(../images/shoplist/bg_dt2.png);
}

.box dl dd {
	padding: 10px 0 20px 0;
}

.box dl dd:nth-of-type(2)::after {
	content: "";
	display: block;
	position: relative;
	top: 9px;
	border-top: solid 2px #F5561C;
}

.box .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.box .logo h2 {
	flex: 1;
	font-size: 1.2em;
	line-height: 1.2;
	text-align: center;
}

.box .logo img {
	max-width: 30vw;
	max-height: 30vw;
}

.box .photo {
	display: flex;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 30px 0 15px 0;
}

.box .photo img {
	width: calc((100% - 10px) / 2);
}

.btn_map {
	margin: 20px auto;
	width: 25vw;
}