/*-------------------------------------------
header
-------------------------------------------*/
header{
	position: fixed;
	display: flex;
	justify-content: space-between;
	height: 80px;
	width: 100%;
	z-index: 20;
}

/* logo */
.header_logo {
}
.header_logo a {
	display: block;
	height: 100%;
	padding: 15px 20px;
	box-sizing: border-box;
}
.header_logo a img {
	height: 50px;
}

/* gnav */
.header_gnav{
	display: flex;
	flex-direction: row-reverse;
	height: 100%;
}
.header_gnav ul{
	display: flex;
	height: 100%;
	width: 145px;
}
.header_gnav ul li{
	height: 80px;
	width: 80px;
}
.header_gnav ul li:first-child{
	margin-right: -15px;
}
.header_gnav ul li a{
	display: block;
	height: 100%;
	box-sizing: border-box;
}
.header_gnav ul li a img{
	height: 100%;
}
/* gnav inquiry */
.header_gnav a.inquiry{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to right, #E95700, #E22F00);
	border-radius: 50px 0 0 50px;
	height: 100%;
	width: 330px;
	color: #fff;
	font-size: 1.8rem;
	text-decoration: none;
	transition: all 0.3s ease-out;
	box-sizing: border-box;
}
.header_gnav a.inquiry:hover{
	opacity: 0.8;
}
.header_gnav a.inquiry::after{
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 25px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	transition: all 0.3s ease-out;
}
.header_gnav a.inquiry:hover::after{
	right: 15px;
}

/*-------------------------------------------
.recruit
-------------------------------------------*/
.recruit_frame {
	padding-left: calc((100% - 1200px)/2);
	box-sizing: border-box;
}
.recruit {
	background: url(../img/re_grd_bg.png) center left no-repeat;
	background-size: cover;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	/* 可変マージン */
/*	margin-left: calc((100% - 1200px)/2);*/
	width: 100%;
	height: 230px;
	border-radius: 115px 0 0 115px;
	box-sizing: border-box;
}
/* title */
.recruit .title_box {
	width: 600px;
	padding-left: 70px;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	box-sizing: border-box;
}
.recruit .title_box h2 {
	margin-bottom: 15px;
	font-size: 2.8rem;
	line-height: 1.4;
	font-family: 'Quicksand', sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
}
.recruit .title_box h2 span {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0;
}
.br_onoff {
	display: none;
}
/* button */
.recruit .btn_box {
	width: 600px;
	text-align: center;
}
.recruit .btn_box .recruit_btn {
	position: relative;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border-radius: 50px;
	color: #031641;
	font-size: 2.0rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease-out;
}
.recruit .btn_box .recruit_btn::after{
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 40px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	transition: all 0.3s ease-out;
}
.recruit .btn_box .recruit_btn:hover::after{
	right: 30px;
}
.recruit .btn_box .recruit_btn:hover {
	opacity: 0.8;
}
.recruit_frame.first {
	margin-top: -115px;
}

/*-------------------------------------------
footer
-------------------------------------------*/
footer {
	text-align: center;
	padding: 45px 20px 20px;
}
/* .pm_logo */
footer .pm_logo {
	margin-bottom: 30px;
}
footer .pm_logo img {
	height: 34px;
}
/* .footer_nav */
.footer_nav {
	display: block;
	margin-bottom: 110px;
}
.footer_nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.footer_nav li {
	position: relative;
	padding: 0.5em 1em;
	line-height: 1;
}
.footer_nav li:first-child:before {
	position: absolute;
	content: "｜";
	top: 50%;
	left: -0.5em;
	margin-top: -0.45em;
}
.footer_nav li:after {
	position: absolute;
	content: "｜";
	top: 50%;
	right: -0.5em;
	margin-top: -0.45em;
}
.footer_nav li a {
	position: relative;
	color: #000;
	font-size: 1.4rem;
	line-height: 1;
	text-decoration: none;
}
.footer_nav li a::before {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #d0d0d0;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
.footer_nav li a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}
/* .footer_btn */
.footer_btn{
	margin: 0 auto;
	width: 115px;
}
.footer_btn ul{
	display: flex;
	justify-content: center;
	height: 50px;
	margin-bottom: 25px;
}
.footer_btn ul li{
	height: 50px;
	width: 50px;
}
.footer_btn ul li:first-child{
	margin-right: 15px;
}
.footer_btn ul li a{
	display: block;
	height: 100%;
	box-sizing: border-box;
}
.footer_btn ul li a img{
	height: 100%;
}
/* footer info */
footer .pe_add {
	margin-bottom: 100px;
	font-size: 1.6rem;
}
footer .pe_add a {
	color: #333333;
	text-decoration: none;
}
footer .copyright {
	font-size: 1.6rem;
}

/* *********************************************************************** */
@media screen and (max-width: 1240px) {
/*-------------------------------------------
.recruit
-------------------------------------------*/
.recruit_frame {
	padding-left: 20px;
	box-sizing: border-box;
}
.recruit {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	/* 可変マージン */
/*	margin-left: 20px;*/
	width: 100%;
	height: 230px;
	border-radius: 115px 0 0 115px;
}
/* title */
.recruit .title_box {
	width: 45%;
	padding-left: 7vw;
	font-size: 1.4rem;
}
.recruit .title_box h2 {
	margin-bottom: 15px;
	font-size: 2.8rem;
}
.recruit .title_box h2 span {
	font-size: 1.4rem;
}
.br_onoff {
	display: inline-block;
}
/* button */
.recruit .btn_box {
	width: 55%;
	padding-right: 4vw;
}
.recruit .btn_box .recruit_btn {
	height: 100px;
	border-radius: 50px;
	font-size: 2.0rem;
	transition: all 0.3s ease-out;
}
.recruit .btn_box .recruit_btn::after{
	right: 40px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	transition: all 0.3s ease-out;
}
.recruit .btn_box .recruit_btn:hover::after{
	right: 30px;
}
.recruit .btn_box .recruit_btn:hover {
	opacity: 0.8;
}
.recruit_frame.first {
	margin-top: -115px;
}
}

/* *********************************************************************** */
@media screen and (max-width: 1024px) {
/*-------------------------------------------
header
-------------------------------------------*/
header{
	height: auto;
}

/* logo */
.header_logo a {
	padding: 16px 10px 2px 20px;
}
.header_logo a img {
	height: 32px;
}

/* gnav */
.header_gnav{
	display: flex;
	flex-direction: column;
}
.header_gnav ul{
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
	width: 135px;
}
.header_gnav ul li{
	height: 75px;
	width: 75px;
}
/* gnav inquiry */
.header_gnav a.inquiry{
	height: 50px;
	width: 140px;
	font-size: 1.4rem;
	transition: all 0s ease-out;
}
.header_gnav a.inquiry:hover{
	opacity: 1;
}
.header_gnav a.inquiry::after{
	right: 15px;
	width: 8px;
	height: 8px;
	transition: all 0s ease-out;
}
.header_gnav a.inquiry:hover::after{
	right: 15px;
}

/*-------------------------------------------
.recruit
-------------------------------------------*/
.recruit_frame {
	padding-left: 0;
}
.recruit {
	display: block;
	padding: 40px 20px 50px;
	width: 100%;
	height: auto;
	border-radius: 0;
}
/* title */
.recruit .title_box {
	margin-bottom: 20px;
	width: 100%;
	padding-left: 0;
	font-size: 1.4rem;
}
.recruit .title_box h2 {
	margin-bottom: 20px;
	font-size: 4.0rem;
}
.recruit .title_box h2 span {
	font-size: 1.4rem;
}
/* button */
.recruit .btn_box {
	width: 100%;
	padding-right: 4vw;
}
.recruit .btn_box .recruit_btn {
	height: 80px;
	border-radius: 40px;
	font-size: 2.0rem;
	transition: all 0s ease-out;
}
.recruit .btn_box .recruit_btn::after{
	right: 30px;
	transition: all 0s ease-out;
}
.recruit .btn_box .recruit_btn:hover::after{
	right: 30px;
}
.recruit .btn_box .recruit_btn:hover {
	opacity: 1;
}
.recruit_frame.first {
	margin-top: 0;
}

/*-------------------------------------------
footer
-------------------------------------------*/
footer {
	text-align: center;
	padding: 50px 20px 10px;
}
/* .pm_logo */
footer .pm_logo {
	margin-bottom: 34px;
}
footer .pm_logo img {
	height: 50px;
}
/* .footer_nav */
.footer_nav {
	display: block;
	margin-bottom: 90px;
}
.footer_nav ul {
	display: block;
}
.footer_nav li {
	margin-bottom: 10px;
	position: relative;
	padding: 0;
	text-align: left;
	line-height: 1;
}
.footer_nav li:first-child:before {
	display: none;
}
.footer_nav li:after {
	display: none;
}
.footer_nav li a {
	position: relative;
	display: block;
	padding: 10px 10px 10px 20px;
	font-size: 1.4rem;
}
.footer_nav li a::before {
	display: none;
}
.footer_nav li a:hover::before {
	display: none;
}
.footer_nav li a::after {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	transition: all 0.3s ease-out;
}
/* footer info */
footer .pe_add {
	margin-bottom: 65px;
	font-size: 1.6rem;
}
footer .copyright {
	font-size: 1.6rem;
}
}

/* *********************************************************************** */
@media screen and (max-width: 559px) {
}


