@media (max-width: 576px) {
	.navbar-brand img {
		max-width: 150px;
	}
	div.box-aboutus {
		margin-top: -1px;
	}
	div.box-aboutus > div {
		padding-bottom: 100px;
	}
	img.label {
		width: 120px;
		margin-top:-40px;
		margin-left:-2em;
	}
	div.box-recoomend div.item {
		padding: 0 2em;
	}
	p.caption {
		margin: 1em 0 2em 0;
	}
	h2.title {
		margin: 30px 0;
		font-size: 4.5rem;
	}
	h2.title span {
		display: block;
	}
	p.detail {
		line-height: 1.5em;
		padding: 0 1em;
		text-align: left;
	}
	img.bg-illust-01 {
		left: 3%;
		width: 90px;
	}
	img.bg-illust-02 {
		right: 3%;
		width: 200px;
		margin-top: -100px;
	}
	img.bg-photo-01 {
		width: 160px;
		left: -20px;
		margin-top: -80px;
		overflow-x: hidden;
	}
	img.bg-photo-02 {
		width: 120px;
		right: 0;
		margin-top: -100px;
		overflow-x: hidden;
	}
	table.news {
		width: 90%;
		margin: 0 auto;
	}
	div.box-menu > div {
		padding-bottom: 40px;
	}
	div.box-contact {
		margin: 0 auto 40px auto;
		margin-left: 10px;
		width: 98%;
		height: auto;
	}
	div.box-contact h2 {
		margin: 40px 0 0 0;
	}
	div.box-contact span.shop {
		display: inline-block;
		margin: 1em 0 0 0;
	}
	div.box-contact span.tel {
		display: block;
		font-size: 3rem;
	}
	div.box-contact a.btn {
		margin: 0.25em 0 1em 0;
		padding: 0.25em 2em;
	}
	footer {
		padding: 30px 0;
	}
	footer .menu * {
		font-size: 1.4rem !important;
	}
	footer .menu a::before {
		padding: 0 0.1em 0 0;
	}

}



/* Hamburger Menu */
.openbtn{
	position: relative;
	cursor: pointer;
	width: 55px;
	height:55px;
}

.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 5px;
	width: 32px;
	background: var(--color-text);
}
.openbtn span:nth-of-type(1) {
	top:20px; 
}
.openbtn span:nth-of-type(2) {
	top:30px;
}
.openbtn span:nth-of-type(3) {
	top:40px;
}
.openbtn.active span:nth-of-type(1) {
	top: 21px;
	left: 16px;
	transform: translateY(6px) rotate(-45deg);
	width: 32px;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
	top: 33px;
	left: 16px;
	transform: translateY(-6px) rotate(45deg);
	width: 32px;
}
nav li {list-style: none;}
.header__nav {
	position: fixed;
	right: 0;
	top: 75px;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	background-color: var(--color-text);
	transition: ease .4s;
	overflow: hidden;
	z-index: 1000;
}
.nav-items {
	position: absolute;
	width: 100%;
	top: 50px;
	left: 0;
	padding: 0;
}
.nav-items a {
	display: block;
	font-family:'Noto Serif JP', sans-serif;
	width: 100%;
	font-size: 1.9rem;
	font-weight: 600;
	background: #fff;
	border-radius: 15px;
	padding: 10px 15px;
	margin-bottom: 15px;
}
.nav-items a:after {
	font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
	content: '\f0da';
	color: var(--color-brown) !important;
	font-weight: 600;
	float: right;
}
.nav-items > div {
	padding: 0 20px;
}
.nav-items div.submenu {
	display: grid;
	grid-template-columns: 1fr 15px 1fr;
}
.nav-items div.main-navi {
	padding: 0;
	margin-top: 20px;
}
.nav-items div.main-navi h3 {
	color: #fff;
	font-size: 1.9rem;
	font-weight: 600;
	background: var(--color-blue);
	padding: 0.5em 35px;
	margin: 0;
}
.nav-items table {
	border: solid 1px var(--color-blue);
}
.nav-items td {
	border: solid 1px var(--color-blue);
	border-right: none;
	border-bottom: none;
}
.nav-items td a {
	font-size: 1.6rem;
	color: var(--color-brown);
	border-radius: 0;
	margin: 0;
	padding: 5px;
}
.nav-items td a:after {
	color: var(--color-blue) !important;
}
.nav-items td img {
	height: 28px;
	margin-top: -5px;
	margin-right: 5px;
}
.header__nav.active {
	transform: translateX(0);
}
