@charset "utf-8";

* {
	box-sizing: border-box;
}
html,body {
	margin: 0;
	padding: 0;
}
body, input, textarea {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
body {
/*	min-width: 425px;*/
	min-width: 360px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	padding: 8px 16px;
	margin-bottom: 1em;
	display: flex;
	align-items: center;
	height: 72px;
}
#header_logo {
	margin-right: 0.5em;
}
#header_logo a img{
	width: 150px;
	height: auto;
	display: block;
}
#header_text {
	line-height: 1.1;
}

/*ハンバーガーメニュー*/
#menu {
	position: relative;
	margin-left: auto;
}

.hamburger {
	margin-left: auto;
/*	position: fixed;*/
	position: relative;
/*	top: 20px;
	right: 20px;*/
	z-index: 100;
	width: 48px;
	height: 48px;
	border: none;
	background: transparent;
	cursor: pointer;
}

.hamburger__line {
	position: absolute;
	left: 11px;
	width: 26px;
	height: 3px;
	background-color: #333;
	transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
	top: 14px;
}
.hamburger__line:nth-of-type(2) {
	top: 23px;
}
.hamburger__line:nth-of-type(3) {
	top: 32px;
}

/* メニューオープン時 */
.hamburger.active {
	position: fixed;
	top: 10px;
	right: 16px;
}

.hamburger.active .hamburger__line:nth-of-type(1) {
	transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
	opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
	transform: translateY(-9px) rotate(45deg);
}

.nav {
	position: fixed;
	top: 0;
	/*left: 0;*/
	right: 0;
	/*width: 200px;*/
	width: 60vw;
	height: 100vh;
	background-color: #fff;
/*
	box-shadow: 2px 0 4px rgba(0,0,0,.1);
	transform: translateX(-100%);
	transition: transform .4s;
*/
	transform: translateX(100%);
	transition: transform .4s;


	z-index: 90;
}

.nav.active {
	transform: translateX(0);
	box-shadow: -2px 0 4px rgba(0,0,0,.1);
}

.nav__list {
	margin: 0;
/*	padding: 100px 0 0;*/
	padding: 60px 0 0;
	list-style: none;
}

.nav__item {
/*	padding: 0 20px;*/
}

.nav__link {
	display: block;
/*	padding: 15px 0;*/
	padding: 15px 20px;
/*	color: #333;*/
	color: #ffffff;
	text-decoration: none;
/*	border-bottom: 1px solid #eee;*/
}

#nav_search {
	background-color: #5FB187;
}
#nav_sale {
	background-color: #8D8BBE;
}
#nav_api {
	background-color: #D85E6D;
}
#nav_corp {
	background-color: #009E41;
}
#nav_outline .nav__link,
#nav_pp .nav__link,
#nav_contact .nav__link {
	color: #009E41;
}

/*ハンバーガーメニューここまで*/


footer {
	margin-top: auto;
}
#page_top {
}
.to_top {
	margin-left: auto;
	margin-right: 1em;
	padding: 4px 0;
	width: 10em;
	height: 2em;
	text-align: center;
	color: #ffffff;
	background-color: #5FB187;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-size: smaller;
	cursor: pointer;
}

#footer_logo_area {
	border-top: 8px solid #5FB187;
/*	border-bottom: 8px solid #5FB187;*/

	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-bottom: 48px;
}
#footer_logo_area > div {
	margin: 8px;
}
#footer_logo_marron {
	text-align: center;
}
#footer_logo_marron img {
	display: block;
	width: 30vw;
	max-width: 200px;
}
#footer_logo_kamei {
	text-align: center;
}
#footer_logo_kamei img {
	display: block;
	width: 40vw;
	max-width: 200px;
}
#footer_cta {
	position: fixed;
	bottom: 0;
	text-align: center;
	background-color: #5FB187;
	width: 100%;
	/* height: 1.5em; */
	height: 3em;
}
#footer_cta a {
	display: inline-block;
	width: 100%;
	height: 100%;
	color: #ffffff;
	text-decoration: none;
	padding: 0.5em 0;
	line-height: 2.3em;
	font-family: sans-serif;
}

.header_03 {
	margin: 0 1em 1em 1em;
	padding-left: 34px;
	border-bottom: 2px solid #bbb;
	background-image: url("/sp/img/header_mark_02.png");
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: 0 center;
	font-weight: normal;
	color: #333;
}

.header_03a {
	margin: 0 1em 1em 1em;
	border-bottom: 2px solid #bbb;
	font-weight: normal;
	color: #333;
}

.header_04 {
	margin: 0 1em 0.5em 1.3em;
	padding-left: 0.2em;
	border-left: 4px solid #B1CAD1;
	font-weight: normal;
	color: #333;
}


@media screen and (max-width: 979px) and (min-width: 760px) {
}

@media screen and (max-width: 759px) {
}

@media screen and (max-width: 979px) {
}



