/* H5 Header */
@media screen and (max-width: 799px) {
	.h5_header {
		position: sticky;
		top: 0;
		z-index: 10;
		width: 100%;
		height: fit-content;
		background: linear-gradient(to right, #054447, #063343);
		background: -webkit-linear-gradient(to right, #054447, #063343);
	}
  .mobile-top-nav {
    height: 1rem;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    justify-content: space-between;
    padding: 0 0.25rem;
  }
  .back-btn {
		width: 0.54rem;
		height: 0.54rem;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 100% auto;
		background-image: url("../images/ic_back.svg");
		z-index: 99;
	}
	.header_logo_wrapper {
		width: fit-content;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.header-logo {
		width: 3.3rem;
	}
	.auth-btn {
		border-radius: 0.2rem;
		text-align: center;
		font-size: 0.24rem;
		padding: 0.2rem 0.27rem;
		color: #fff;
		font-weight: bold;
	}
  .btn-pink {
		background: rgba(0, 0, 0, 0) linear-gradient(110deg, #ff2700, #ff00ba) 0 0 no-repeat padding-box;
		border: none;
	}
}

/* PC Header */
@media only screen and (min-width: 800px) {
	.pc_header {
		width: 100%;
		height: 0.3rem;
		display: none;
	}
}