@charset "UTF-8";

/* common
========================================== */
* {
	box-sizing: border-box;
}
img {
	height: auto;
	max-width: 100%;
}
/* SP */
@media only screen and (max-width: 1023px) {
	html.hidden,
	body.hidden {
		overflow: hidden;
	}
}


/* header
========================================== */
#header {
  background-color: #fff;
  display: flex;
	flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
	z-index: 100;
}
#header .header-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	width: 100%;
}
#header .header-logo {
	line-height: 1;
	width: 27px;
}
#header .header-logo a {
	display: block;
}
#header .back-top {
	margin-left: 15px;
}
#header .back-top a {
	color: #555;
	display: table;
	font-size: 1.2rem;
	font-weight: 700;
	padding-left: 12px;
	position: relative;
}
#header .back-top a:before {
	border-width: 5px 6px 5px 0;
	border-style: solid;
	border-color: transparent #555 transparent transparent;
	content: "";
	height: 0;
	position: absolute;
	margin-top: 1px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 0;
}
#header .btn-login {
	margin-left: auto;
	width: 180px;
}
#header .btn-login a {
	background: linear-gradient(90deg,#0c7159,#2ead61);
	border-radius: 6px;
	color: #fff;
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 32px;
	text-align: center;
}
@media only screen and (min-width: 1024px) {
	#header .header-logo a:hover {
		opacity: 0.8;
	}
	#header .btn-login a:hover {
		opacity: 0.8;
	}
}
/* SP */
@media only screen and (max-width: 1023px) {
	#header {
		position: fixed;
		top: 0;
		left: 0;
		height: 69px;
		padding: 0 16px;
		width: 100%;
	}
  #header .btn-login {
		width: 83px;
	}
  #header .btn-login a {
		background: #fff;
		border: 2px solid #0B7158;
		border-radius: 4px;
		color: #0B7158;
		font-size: 1.3rem;
		line-height: 1.4;
		padding: 5px 0;
	}
}



/* main
========================================== */

/* PC */
@media only screen and (min-width: 1024px) {
}
/* SP */
@media only screen and (max-width: 1023px) {
	#main {
		padding-top: 69px;
	}
}


