@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
.anim,
.box-amin {
	opacity: 0;
	-webkit-transition: opacity 800ms ease;
	transition: opacity 800ms ease;
	-webkit-transition-delay: var(--delay, 0s);
	transition-delay: var(--delay, 0s);
	will-change: opacity;
}

.anim.is-visible,
.box-amin.is-visible {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.anim,
	.box-amin {
		-webkit-transition: none;
		transition: none;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
	}
	.anim.is-visible,
	.box-amin.is-visible {
		opacity: 1;
	}
}
@-webkit-keyframes arrowmove {
	0% {
		bottom: 3px;
	}
	50% {
		bottom: 0px;
	}
	00% {
		bottom: 3px;
	}
}
@keyframes arrowmove {
	0% {
		bottom: 3px;
	}
	50% {
		bottom: 0px;
	}
	00% {
		bottom: 3px;
	}
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width: 600px) {
	.pc {
		display: none;
	}
}

.sp {
	display: none;
}
@media (max-width: 600px) {
	.sp {
		display: block;
	}
}
@media (max-width: 600px) {
	.sp.flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

a {
	text-decoration: none;
}

* {
	font-family: 'Noto Sans JP', sans-serif;
}

:target {
	scroll-margin-top: 120px;
}

header {
	padding: 20px 20px 20px 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: transparent;
	position: fixed;
	z-index: 20;
	top: 0;
}
header.fixed {
	background-color: #fff9e9;
}
header.hidden {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
@media (max-width: 600px) {
	header {
		padding: 10px 15px;
	}
}
header .logo {
	height: 45px;
}
@media (max-width: 600px) {
	header .logo {
		height: 35px;
	}
}
header .logo img {
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
header .list {
	gap: 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 600px) {
	header .list {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		gap: 20px;
		-webkit-box-pack: right;
		-ms-flex-pack: right;
		justify-content: right;
	}
}
header .list .item a {
	color: #583518;
	font-weight: 500;
	height: 100%;
}
header .list .item a img {
	height: 100%;
}
header .list .item .sub-menu {
	display: none;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	min-width: 180px;
	margin-top: 10px;
	padding: 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #e7d2b5;
	border-radius: 10px;
	-webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	z-index: 30;
}
header .list .item .sub-menu::before {
	content: '';
	position: absolute;
	left: 0;
	top: -10px;
	width: 100%;
	height: 10px;
}
header .list .item .sub-menu a {
	display: block;
	padding: 8px 0;
	white-space: nowrap;
}
header .list .item:hover .sub-menu,
header .list .item:focus-within .sub-menu {
	display: block;
}
@media (max-width: 600px) {
	header .list .item {
		height: 25px;
	}
	header .list .item img {
		height: 100%;
		-o-object-fit: contain;
		object-fit: contain;
	}
}
header .list .item .sub-menu-icon {
	font-size: 10px;
	right: -10px;
	top: -15px;
	background-color: #583518;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 20px;
	height: 20px;
	color: #fff;
}
header .list .mypage {
	background-color: #663717;
	border-radius: 30px;
}
header .list .mypage a {
	width: 185px;
	color: #fff;
	padding: 15px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
header .list .mypage a::before {
	content: '';
	display: block;
	width: 22px;
	height: 20px;
	background-image: url(https://gigaplus.makeshop.jp/gibieat/top/images/icon01.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
header .list .mypage .sub-menu a {
	color: #583518;
	font-weight: 500;
}
header .list .mypage .sub-menu a::before {
	display: none;
}
header .list .toggle-btn {
	width: 58px;
	height: 60px;
	background-image: url(https://gigaplus.makeshop.jp/gibieat/top/images/ham-back.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	z-index: 2;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
header .list .toggle-btn span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
header .list .toggle-btn span:nth-child(1),
header .list .toggle-btn span:nth-child(2) {
	display: block;
	background-color: #fff;
	height: 2px;
	width: 25px;
}
header .list .toggle-btn span:nth-child(1) {
	top: 15px;
}
header .list .toggle-btn span:nth-child(2) {
	top: 25px;
}
header .list .toggle-btn span:nth-child(3) {
	color: #fff;
	font-size: 8px;
	bottom: 10px;
}
header .list .toggle-btn.is-open {
	background-image: none;
}
header .list .toggle-btn.is-open span:nth-child(1),
header .list .toggle-btn.is-open span:nth-child(2) {
	background-color: #5b3d1b;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	top: 20px;
}
header .list .toggle-btn.is-open span:nth-child(1) {
	-webkit-transform: rotate(45deg) translateX(-50%);
	transform: rotate(45deg) translateX(-50%);
}
header .list .toggle-btn.is-open span:nth-child(2) {
	-webkit-transform: rotate(-45deg) translateX(-50%);
	transform: rotate(-45deg) translateX(-50%);
}
header .list .toggle-btn.is-open span:nth-child(3) {
	color: #5b3d1b;
}

.hamburger-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #fff3d9;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition:
		opacity 0.35s ease,
		visibility 0s linear 0.35s;
	transition:
		opacity 0.35s ease,
		visibility 0s linear 0.35s;
}
.hamburger-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transition:
		opacity 0.35s ease,
		visibility 0s linear 0s;
	transition:
		opacity 0.35s ease,
		visibility 0s linear 0s;
}
@media (max-width: 600px) {
	.hamburger-menu {
		width: 70%;
	}
}
.hamburger-menu .image {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.hamburger-menu .image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 800px) {
	.hamburger-menu .image {
		display: none;
	}
}
.hamburger-menu .content {
	max-width: 500px;
	padding: 100px 70px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 600px) {
	.hamburger-menu .content {
		padding: 80px 30px;
	}
}
.hamburger-menu .content .row {
	gap: 0px 0px;
}
.hamburger-menu .content .row > * {
	width: calc(100% / 2);
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.hamburger-menu .content .row {
	margin-bottom: 30px;
	text-align: left;
}
@media (max-width: 600px) {
	.hamburger-menu .content .row {
		gap: 0px 0px;
	}
	.hamburger-menu .content .row > * {
		width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}
.hamburger-menu .content .row .block {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 300px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media (max-width: 600px) {
	.hamburger-menu .content .row .block:last-child {
		display: none;
	}
}
.hamburger-menu .content .row .block .item a {
	color: #5b3d1b;
	font-size: 14px;
	text-align: left;
	font-weight: 500;
}
.hamburger-menu .content .row .block .item a.f-12 {
	font-weight: normal;
}
.hamburger-menu .content .row .block .item-group .item {
	margin-bottom: 15px;
}
.hamburger-menu .content .row .block .item-group .item-group-toggle {
	border: 0;
	background: transparent;
	padding: 0;
	color: #5b3d1b;
	font-size: 14px;
	cursor: pointer;
	text-align: left;
	position: relative;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	font-weight: bold;
}
@media (max-width: 600px) {
	.hamburger-menu .content .row .block .item-group .item-group-toggle::before {
		content: '';
		width: 7px;
		height: 7px;
		border-right: 2px solid #5b3d1b;
		border-bottom: 2px solid #5b3d1b;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transition:
			top 0.25s ease,
			-webkit-transform 0.25s ease;
		transition:
			top 0.25s ease,
			-webkit-transform 0.25s ease;
		transition:
			transform 0.25s ease,
			top 0.25s ease;
		transition:
			transform 0.25s ease,
			top 0.25s ease,
			-webkit-transform 0.25s ease;
	}
}
.hamburger-menu .content .row .block .item-group .item-group-children {
	max-height: none;
	overflow: visible;
	-webkit-transition: none;
	transition: none;
}
@media (max-width: 600px) {
	.hamburger-menu .content .row .block .item-group .item-group-children {
		max-height: 0;
		overflow: hidden;
		-webkit-transition: max-height 0.3s ease;
		transition: max-height 0.3s ease;
	}
}
@media (max-width: 600px) {
	.hamburger-menu .content .row .block .item-group.is-open .item-group-toggle::before {
		top: 8px;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}
@media (max-width: 600px) {
	.hamburger-menu .content .row .block .item-group.is-open .item-group-children {
		max-height: 180px;
	}
}
.hamburger-menu .content .btn-list {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
}
@media (max-width: 600px) {
	.hamburger-menu .content .btn-list {
		gap: 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.hamburger-menu .content .btn-list .btn {
	width: 155px;
	height: 45px;
}
@media (max-width: 600px) {
	.hamburger-menu .content .btn-list .btn {
		width: 80%;
	}
}
.hamburger-menu .content .btn-list .btn:first-child a {
	width: 100%;
	height: 100%;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	background-color: #663717;
	border-radius: 30px;
}
.hamburger-menu .content .btn-list .btn:first-child a::before {
	content: '';
	display: block;
	width: 22px;
	height: 20px;
	background-image: url(https://gigaplus.makeshop.jp/gibieat/top/images/icon01.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.hamburger-menu .content .btn-list .btn:last-child a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	background-color: #ef8340;
	font-size: 12px;
	color: #fff;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	border-radius: 60px;
}
.hamburger-menu .content .btn-list .btn:last-child a::before {
	content: '';
	display: block;
	width: 20px;
	height: 13px;
	background-image: url(https://gigaplus.makeshop.jp/gibieat/top/images/icon02.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.hamburger-menu .content .banner {
	margin-bottom: 40px;
}
.hamburger-menu .content .banner img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.hamburger-menu .content .instagram {
	width: 55px;
	height: 55px;
	margin: 0 auto;
}
.hamburger-menu .content .instagram img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

footer {
	padding-top: 70px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #4c3929;
}
footer .inner {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto 80px auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
footer .inner .logo {
	height: 95px;
}
@media (max-width: 600px) {
	footer .inner .logo {
		margin-bottom: 60px;
	}
}
footer .inner .logo img {
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
footer .inner .info {
	width: 360px;
}
@media (max-width: 600px) {
	footer .inner .info {
		margin-bottom: 30px;
	}
}
footer .inner .info .row {
	gap: 0px 0px;
}
footer .inner .info .row > * {
	width: calc(100% / 2);
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
footer .inner .info .row {
	margin-bottom: 30px;
}
footer .inner .info .row .m-30 {
	margin-bottom: 30px;
}
footer .inner .info .row .m-25 {
	margin-bottom: 25px;
}
footer .inner .info .row .f-12 {
	font-size: 12px;
}
footer .inner .info .row .list {
	margin-bottom: 40px;
}
footer .inner .info .row .list .item a {
	color: #fff;
	font-size: 14px;
}
footer .inner .info .row .list .item-group .item {
	margin-bottom: 15px;
}
footer .inner .info .row .tel a {
	color: #ef8340;
}
footer .inner .info .row .tel a span {
	color: #fff;
	margin-top: 5px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 20px;
	gap: 5px;
	line-height: 1;
}
footer .inner .info .row .tel a span::before {
	content: '';
	display: block;
	width: 22px;
	height: 20px;
	background-image: url(https://gigaplus.makeshop.jp/gibieat/top/images/foot-icon01.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
footer .inner .info .row .right .list .item {
	margin-bottom: 30px;
}
footer .inner .info .row .button {
	width: 165px;
	height: 45px;
}
footer .inner .info .row .button a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	background-color: #ef8340;
	font-size: 12px;
	color: #fff;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	border-radius: 60px;
}
footer .inner .info .row .button a::before {
	content: '';
	display: block;
	width: 20px;
	height: 13px;
	background-image: url(https://gigaplus.makeshop.jp/gibieat/top/images/icon02.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
footer .inner .banner {
	margin-bottom: 20px;
}
footer .inner .banner img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
footer .inner .insta {
	width: 36px;
	height: 36px;
	margin: 0 0 0 auto;
}
@media (max-width: 600px) {
	footer .inner .insta {
		margin: 0 auto;
	}
}
footer .inner .insta img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
footer .copyright {
	max-width: 100%;
	width: 100%;
	text-align: center;
	color: #fff;
	padding-bottom: 10px;
}

.add-list-cart,
.modal-order {
	background: #663717 !important;
}

.pdng-t16 {
	display: none;
}

.page-loading.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 0.75s;
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 0.75s;
}

.page-loading.is-hidden .page-loading__inner {
	opacity: 0;
	-webkit-transform: scale(0.985);
	transform: scale(0.985);
}

.page-loading__spinner {
	width: 34px;
	height: 34px;
	border: 3px solid #e8d2b3;
	border-top-color: #ef8340;
	border-radius: 50%;
	-webkit-animation: page-loading-spin 0.9s linear infinite;
	animation: page-loading-spin 0.9s linear infinite;
}

@-webkit-keyframes page-loading-spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes page-loading-spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.openbtn {
	display: none;
}

.clickable.logo {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 150px;
	z-index: 21;
}
@media (max-width: 600px) {
	.clickable.logo {
		display: none;
	}
}
.clickable.logo img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
.clickable.logo .area-main {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.clickable.logo .area-close {
	position: absolute;
	right: 0;
	top: 28%;
	width: 20%;
	height: 16%;
	z-index: 2;
}

.fixed-btn {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}
.fixed-btn img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
.fixed-btn .area-main {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.fixed-btn .area-close {
	position: absolute;
	left: 5%;
	top: 18%;
	width: 6%;
	height: 20%;
	z-index: 2;
}

.clickable.logo,
.fixed-btn {
	-webkit-transition:
		opacity 300ms ease,
		-webkit-transform 300ms ease;
	transition:
		opacity 300ms ease,
		-webkit-transform 300ms ease;
	transition:
		transform 300ms ease,
		opacity 300ms ease;
	transition:
		transform 300ms ease,
		opacity 300ms ease,
		-webkit-transform 300ms ease;
	will-change: transform, opacity;
}

.clickable.logo.is-floating-hidden,
.fixed-btn.is-floating-hidden {
	-webkit-transform: translateY(120%);
	transform: translateY(120%);
	opacity: 0;
	pointer-events: none;
}
