@charset "UTF-8";
.kiraboshi .premium-header__container {
	justify-content: flex-start;
}
.kiraboshi_logo {
  margin-right: 16px;
}
.premium-footer__logo img {
 width: 210px;
 height: auto;
 margin-top:20px;
}




#order {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: black;
	text-align: center;
  z-index:999;
}

.order_contents {
	position: fixed;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 100%;
	height: 60px;
	z-index: 999;
	/* Ensure on top */
}

#order a {
	background: linear-gradient(to right, #d1ab6f, #b9963d);
	/* Gold Gradient Button */
	color: white;
	font-size: 18px;
	padding: 0.5em 4em;
	position: relative;
	border-radius: 50px;
	/* Rounded button */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

#order a:hover {
	opacity: 0.8;
}


#order a::after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	right: 23px;
	width: 11px;
	height: 23px;
	background-image: url(../images/icon_arrow_right.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transform: translateY(-50%);
}