@charset "UTF-8";

body{
	font-family: 'Noto Sans JP', sans-serif;
}

.pcOnly, .pc_only {
	display: none;
}
main {
	margin: auto;
}
a {
	text-decoration: none;
}
img{
	width: 100%;
}
h1 {
    font-size: 20px;
    font-weight: 600;
}
/*--------------------------------------------------
**************************************************
ヘッダー
**************************************************
--------------------------------------------------*/

header#top_header {
	width: 100%;
	height: 50px;
}
nav#header_top_nav.spOnly {
	position: fixed;
	display: flex;
	width: 100%;
	height: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	align-items: center;
	border-bottom: 1px solid #ddd;
	background: #fff;
	z-index: 10;
}
nav#header_top_nav div#logo {
	position: relative;
	width: 80px;
	margin-left: 10px;
}
nav#header_top_nav div#logo a {
	display: block;
	width: 100%;
	height: 100%;
	transition: 1s;
}
nav#header_top_nav div#logo a:hover {
	opacity: 0.8;
}
nav#header_top_nav div#logo a img {
	width: 100%;
}
nav#header_top_nav div#logo a span.h_title {
	position: absolute;
	display: block;
	width: 100%;
	bottom: 4px;
	font-size: 10px;
	transform: scale(0.7);
	text-align: center;
}
nav#header_top_nav .black {
	width: calc(100% - 142px);
	display: flex;
	justify-content: flex-end;
}

div#hamburger_icon {

}
ul.top_nav_ul_sp{
	position: fixed;
	top: 49px;
	display: none;
	width: 100%;
	text-align: center;
	padding: 0 0 20px 0;
	color: #333;
	background: #fff;
	list-style: none;
	z-index: 99999;
	border-bottom: 1px solid #ccc;
}

ul.top_nav_ul_sp > li{
	position: relative;
}
ul.top_nav_ul_sp > li::after{
	content: "";
	display: block;
	width: 120px;
	height: 1px;
	margin: 0 auto;
	border-bottom: 1px dashed #ddd;
}
ul.top_nav_ul_sp > li:last-child::after{
	content: none;
}
ul.top_nav_ul_sp > li:last-child{
	border-bottom: none;
}

ul.top_nav_ul_sp > li > a{
	position: relative;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 14px;
	color: #333;
	box-sizing: border-box;
}
ul.top_nav_ul_sp > li > a:hover::after {
	transform: scale(1, 1);
}
ul.top_nav_ul_sp > li > ul.sub_navi{
	display: none;
}

ul.top_nav_ul_sp > li > ul.sub_navi > li{
	background: #34b13da6;
	border-bottom: 1px solid #b50000;
}

ul.top_nav_ul_sp > li > ul.sub_navi > li:last-child{
	border-bottom: none;
}

ul.top_nav_ul_sp > li > ul.sub_navi > li >a{
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding-left: 20px;
	color: #333;
	box-sizing: border-box;
}
nav#header_top_nav .black a {
	display: block;
	width: 94px;
	background: #b50000;
	color: #ffffff;
	text-align: center;
	padding: 6px 8px;
	transition: background 0.3s;
}
nav#header_top_nav .black a .a_top{
	display: block;
}
nav#header_top_nav .black a .a_top{
	display: block;
	margin-bottom: 2px;
	text-align: center;
	line-height: 1;
	font-size: 12px;
}
nav#header_top_nav .black a .a_bottom{
	display: block;
	text-align: center;
	line-height: 1;
	font-size: 10px;
}

/* ハンバーガーアイコン */

.icon-animation {
	position: relative;
	display: block;
	width: 32px;
	height: 40px;
	margin: 0 10px 0 10px;
}

.icon-animation span {
	position: absolute;
	display: block;
	width: 32px;
	height: 1px;
	top: 50%;
	right: 0;
	background: #333;
}

#hamburger_icon span {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

#hamburger_icon .top {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

#hamburger_icon .bottom {
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}

#hamburger_icon.is-open .middle {
	background: rgba(255, 255, 255, 0);
}

#hamburger_icon.is-open .top {
	-webkit-transform: rotate(-45deg) translateY(0px);
	-ms-transform: rotate(-45deg) translateY(0px);
	transform: rotate(-45deg) translateY(0px);
}

#hamburger_icon.is-open .bottom {
	-webkit-transform: rotate(45deg) translateY(0px);
	-ms-transform: rotate(45deg) translateY(0px);
	transform: rotate(45deg) translateY(0px);
}

/*--------------------------------------------------
**************************************************
パンくず
**************************************************
--------------------------------------------------*/
.breadcrumb {
	width: calc(100% - 20px);
  margin: 10px auto 10px auto;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 18px;
  box-sizing: border-box;
}
.breadcrumb ul {
	display: flex;
	color: #666666;
}
.breadcrumb a {
	position: relative;
  display: block;
  text-decoration: none;
  color: #666666;
  margin-right: 30px;
}
.breadcrumb a::before {
	content: "";
	position: absolute;
	display: block;
	width: 5px;
	height: 5px;
	top: 7px;
	right: -15px;
	bottom: 0;
	border-bottom: solid 1px #aaa;
	border-right: solid 1px #aaa;
	transform: rotate(-45deg);
}
/*--------------------------------------------------
**************************************************
共通コンテンツ
**************************************************
--------------------------------------------------*/

/*--------------------------------------------------
**************************************************
トップ画像
**************************************************
--------------------------------------------------*/
div#sub_top {
  position: relative;
  width: 100%;
}
div#sub_top .top_wrap {
  position: revert;
  height: auto;
  margin: 0 auto;
  padding: 20px 0;
}
div#sub_top .top_wrap .top_img {
}
div#sub_top .top_wrap .top_img span.map_r {
  position: absolute;
  display: block;
  width: 17vw;
  height: 25vw;
  top: 3vw;
  left: 15vw;
  right: 0;
  bottom: 0;
  margin: auto;
}
div#sub_top .top_wrap .top_text {
  position: absolute;
  top: 7vw;
  right: 10vw;
  bottom: 0;
  margin: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
}
div#sub_top .top_wrap .top_text .it_wrap {
	display: block;
  width: 20vw;
  margin: 10px auto;
}
div#sub_top .top_wrap .top_text .itcareer span.it {
  display: block;
  font-size: 30px;
  line-height: 20px;
  letter-spacing: 0.1em;
}
div#sub_top .top_wrap .top_text .itcareer span.career {
  display: block;
  font-size: 10px;
  letter-spacing: 0;
}
div#sub_top .top_wrap .top_text .it_wrap .place {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 10px;
}

/*--------------------------------------------------
**************************************************
4つのサービス
**************************************************
--------------------------------------------------*/

div#service_top {
  position: relative;
  padding: 30px 0 0 0;
}
div#service_top::before {
  position: absolute;
  content: "";
  width: calc(100% / 2);
  height: 900px;
  top: -50px;
  right: 0;
  margin: auto;
  background: url(../imgs/top/service_b.png);
  background-size: contain;
}
div#service_top::after {
  position: absolute;
  content: "";
  width: calc(100% / 2);
  height: 900px;
  left: 0;
  bottom: 0;
  margin: auto;
  background: url(../imgs/top/service_b.png);
  background-size: contain;
}
div#service_top h1 {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin: 30px auto 20px auto;
}
div#service_top .service_title {
  position: relative;
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
div#service_top .service_title span.service_num {
  font-size: 50px;
  color: #325c78;
}
div#service_top  .service_title h2 {
  font-size: 16px;
  line-height: 20px;
  padding-left: 20px;
}
.service_inner.pcOnly {
  display: none;
}
div#service_top .service_inner .content {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 70px;
  padding-top: 20px;
}
div#service_top .service_inner .content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: auto;
  background: #f7f7f7;
  padding: 20px 0;
  z-index: 1;
}
div#service_top .service_inner .content:nth-child(even)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #f7f7f7;
  padding: 20px 0;
  z-index: 1;
}
.service_inner .text_wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  padding-bottom: 30px;
  z-index: 2;
}
.service_inner .text_wrap .title_wrap {
  display: flex;
  width: calc(100% - 40px);
  max-width: 320px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  color: #325c78;
}
.service_inner .text_wrap .title_wrap span.service_number {
  display: block;
  font-size: 38px;
}
.service_inner .text_wrap .title_wrap .title {
  line-height: 24px;
  font-size: 18px;
  font-weight: bold;
  margin-left: 20px;
}
.service_inner .text_wrap .title_wrap .title br {
  display: none;
}
.service_inner .text_wrap p {
  width: calc(100% - 60px);
  max-width: 380px;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.1em;
  margin: auto;
}
div#service_top .service_inner .content .photo_img {
  position: relative;
  width: calc(100% - 40px);
  max-width: 400px;
  margin: auto;
  text-align: center;
  z-index: 2;
}
div#service_top .service_inner .content .photo_img img {
  background: #ffffff;
  padding: 20px;
  margin: auto auto 20px auto;
}

/*--------------------------------------------------
**************************************************
サービスについて
**************************************************
--------------------------------------------------*/
div#service {
  position: relative;
}
body#employment div#service {
  background: #f9f9f9;
}
body#employment div#service h2{
  padding-top: 30px;
}
div#service h1 {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin: 30px auto 20px auto;
}
div#service h2 {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin: 30px auto 20px auto;
}
div#service .service_wrap {
  position: relative;
  display: block;
  justify-content: center;
  margin: 70px auto 0 auto;
}
div#service .service_wrap .service_inner {
  position: relative;
  display: block;
  width: calc(100% - 80px);
  margin: 80px auto 0 auto;
  text-align: center;
}
div#service .service_wrap .service_inner:first-child {
	margin-top: 0;
}
div#service .service_wrap .service_inner .service_title {
  position: absolute;
  display: inline-block;
  width: 280px;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  box-shadow: 3px 5px 15px -2px #818181;
  z-index: 2;
}
div#service .service_wrap .service_inner .img_cont {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}
div#service .service_wrap .service_inner .service_cont {
  font-size: 14px;
  color: #fff;
  line-height: 25px;
  padding: 20px 30px;
  text-align: left;
}
div#service .service_wrap .service_inner .service_cont p {
  margin: 0;
}

/*--------------------------------------------------
**************************************************
新着求人
**************************************************
--------------------------------------------------*/
div#recruit {
  position: relative;
	background: #f5f5f5;
  margin: 50px auto;
  padding-bottom: 50px;
}
div#recruit h2 {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  padding-top: 40px;
}
div#recruit .recruit_wrap {
  padding-top: 30px;
}
div#recruit .recruit_wrap li {
  position: relative;
  display: block;
	width: calc(100% - 40px);
  background: #fff;
  margin: 0px auto 50px auto;
	padding: 20px 10px 20px 10px;
}
div#recruit .recruit_wrap li:last-child {
	margin-bottom: 0;
}
div#recruit .recruit_wrap li .recruit_inner {
  position: relative;
	margin-bottom: 20px;
}
div#recruit .recruit_wrap li .recruit_inner .new {
  display: none;
  font-size: 13px;
  color: #fff;
  background: #e85050;
  letter-spacing: 0.1em;
	opacity: 0;
  padding: 4px 8px;
}
div#recruit .recruit_wrap li .recruit_inner.new .new {
	display: inline-block;
	opacity: 1;
}
div#recruit .recruit_wrap li .recruit_inner .recruit_catch span.catch_cont {
  display: block;
	margin: 10px 0 15px 0;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}
div#recruit .recruit_wrap li .recruit_inner .recruit_catch span.society {
  display: block;
  font-size: 14px;
  text-align: center;
  padding-left: 20px;
}
div#recruit .recruit_wrap li .recruit_inner .terms {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.termas_icon {

}
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.termas_icon svg#man {
  width: 24px;
	height: 24px;
  fill: #a49d93;
}
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.work,
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.place {
  position: relative;
  font-size: 13px;
	line-height: 15px;
	height: 20px;
  color: #666666;
  margin-left: 10px;
  z-index: 1;
}
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.termas_icon svg#map {
  fill: #e89f50;
	width: 24px;
  height: 24px;
}
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.work::before, div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.place::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 9px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.work::before{
  background: #ebf7ed;
}
div#recruit .recruit_wrap li .recruit_inner .terms .termas_wrap span.place::before {
  background: #f8f0e7;
}
div#recruit .recruit_wrap li .recruit_inner .code {
	position: relative;
  width: calc(100% - 80px);
  margin: 0 auto;
}
div#recruit .recruit_wrap li .recruit_inner .code .code_icon {
  position: absolute;
	top: 0;
	bottom: 0;
	left: -29px;
	width: 28px;
	height: 24px;
	margin: auto 0;
  background: #fff;
}
div#recruit .recruit_wrap li .recruit_inner .code .code_inner{
  background: #f9fafc;
  border: 1px solid #c3e2f9;
  padding: 10px 20px 10px 30px;
  margin-left: -15px;
}
div#recruit .recruit_wrap li .recruit_inner .code .code_icon svg#coding {
  fill: #58aced;
	width: 28px;
	height: 24px;
}
div#recruit .recruit_wrap li span.type {
  display: inline-block;
  background: #fff;
  color: #666666;
  font-size: 10px;
  border: 1px dotted #cccccc;
  padding: 3px 5px;
  margin: 0px 0px 2px 3px;
}
div#recruit .recruit_wrap li .staff .staff_icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -29px;
  width: 29px;
	height: 25px;
	margin: auto 0;
  background: #fff;
}
div#recruit .recruit_wrap li .staff .staff_icon svg#man {
  fill: #a49d93;
	width: 29px;
	height: 25px;
}
div#recruit .recruit_wrap li .staff .staff_inner {
  background: #fcfcfc;
  border: 1px solid #dce0e1;
  padding: 10px 20px 10px 30px;
  margin: 20px 0 20px -15px;
}
div#recruit .recruit_img {
  position: relative;
  display: flex;
  justify-content: center;
}
div#recruit .recruit_img span.cont_img {
  display: block;
  margin: 0 10px;
}
div#recruit .recruit_wrap li .message {
  position: relative;
}
div#recruit .recruit_wrap li .message .message_wrap {
  display: block;
}
div#recruit .recruit_wrap li .message .message_wrap .message_icon {
  position: relative;
  width: 100%;
  color: #e89f50;
  font-size: 12px;
  text-align: center;
  padding: 20px 0 10px 0;
}
div#recruit .recruit_wrap li .message .message_wrap .message_icon::before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background: #cccccc;
}
div#recruit .recruit_wrap li .message .message_wrap .message_icon span.micon {
  display: block;
	height: 28px;
}
div#recruit .recruit_wrap li .message .message_wrap .message_icon svg#message {
  fill: #e89f50;
  width: 28px;
	height: 28px;
}
div#recruit .recruit_wrap li .message .message_wrap .message_text {
	width: calc(100% - 20px);
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 25px;
  margin: 20px auto;
}
div#recruit .recruit_wrap li .message .message_wrap .message_text span.pink {
  color: #e97d42;
}
div#recruit .recruit_company {
  position: relative;
  width: 100%;
  text-align: center;
  color: #333333;
  background: #f6f6f0;
  padding: 25px 20px 25px 20px;
	margin: 0 auto;
}
div#recruit .recruit_company .company_name {
  font-size: 18px;
  font-weight: 600;
}
div#recruit .recruit_company .company_info span {
  display: inline-block;
  font-size: 12px;
  margin: 5px;
}
div#recruit .recruit_company .occupation, div#recruit .recruit_company .industry {
  position: relative;
  display: flex;
	align-items: center;
  text-align: left;
}
div#recruit .recruit_company .occupation {
	margin-top: 15px;
}
div#recruit .recruit_company .industry {
  margin-top: 30px;
}
div#recruit .recruit_company span.title {
	display: flex;
	align-items: center;
	justify-content: center;
  width: 42px;
	height: 26px;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  margin-right: 10px;
}
div#recruit .recruit_company .occupation span.title {
  background: #c1bf82;
}
div#recruit .recruit_company .industry span.title {
  background: #7cc6cf;
}
div#recruit .recruit_company span.text {
	display: block;
	width: calc(100% - 50px);
	font-size: 12px;
	text-align: left;
	letter-spacing: 0.1em;
}
/* div#recruit .recruit_company .occupation::before {
  position: absolute;
  content: "";
  width: calc(100% - 100px);
  height: 1px;
  left: 0;
  right: 0;
  bottom: -15px;
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22point%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.04%205.1%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3B%7D.cls-2%7Bfill%3A%23bbb%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Crect%20class%3D%22cls-1%22%20width%3D%2215.04%22%20height%3D%225.1%22%2F%3E%3Ccircle%20class%3D%22cls-2%22%20cx%3D%222.5%22%20cy%3D%222.5%22%20r%3D%222%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: repeat;
  background-size: 2px;
  margin: auto;
} */
/* @media all and (-ms-high-contrast: none) {
	div#recruit .recruit_company .occupation::before {
		border-bottom: 1px dotted #ccc;
	}
} */
div#recruit .recruit_wrap li .detail_bth {
  text-align: center;
  margin: 30px auto;
}
div#recruit .recruit_wrap li .detail_bth a {
  position: relative;
  background: #e85050;
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 30px;
  transition: opacity 1s;
}
div#recruit .recruit_wrap li .detail_bth a:hover {
  opacity: 0.8;
}
div#recruit .recruit_bth {
	position: relative;
	text-align: center;
	margin: 30px 0 20px 0;
}
div#recruit .recruit_bth a {
	display: inline-block;
  position: relative;
  background: #333333;
	border-radius: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 50px;
  transition: opacity 1s;
}
div#recruit .recruit_bth a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto 0;
  color: rgba(255,255,255,0.6);
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(-225deg);
  transform: rotate(225deg);
  box-sizing: border-box;
}
div#recruit .recruit_bth a:hover {
  opacity: 0.8;
}
@media (max-width: 506px) {
	div#recruit .recruit_wrap li .recruit_inner .recruit_catch span.catch_cont{
		font-size: 4vw;
	}
	div#recruit .recruit_wrap li .recruit_inner .terms{
		display: block;
	}
	div#recruit .recruit_wrap li .message .message_wrap .message_text{
    font-size: 14px;
    line-height: 170%;
	}
	div#recruit .recruit_company .company_name{
		font-size: 4.5vw;
	}
}
/*--------------------------------------------------
**************************************************
転職までのSTEP
**************************************************
--------------------------------------------------*/

#step_wrap {
	position: relative;
	background: #eef5fa;
	padding: 90px 0 80px 0;
}
#step_wrap .step_inner{
	width: calc(100% - 40px);
	max-width: 500px;
	margin: 0 auto;
}
#step_wrap h2 {
	text-align: center;
	font-size: 22px;
}
#step_wrap ul {
	width: 100%;
	list-style: none;
	margin: auto;
	padding: 0;
}
#step_wrap ul li {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-bottom: 40px;
}
#step_wrap ul li::after {
	position: absolute;
	content: "";
	width: calc(100% - 60px);
	height: 5px;
	left: 0;
	right: 0;
	bottom: -20px;
	background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22point%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.04%205.1%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3B%7D.cls-2%7Bfill%3A%23bbb%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Crect%20class%3D%22cls-1%22%20width%3D%2215.04%22%20height%3D%225.1%22%2F%3E%3Ccircle%20class%3D%22cls-2%22%20cx%3D%222.5%22%20cy%3D%222.5%22%20r%3D%222%22%2F%3E%3C%2Fsvg%3E);
	background-repeat: repeat;
	background-size: 15px;
	margin: auto;
}
@media all and (-ms-high-contrast: none) {
	#step_wrap ul li .step_text::after{
		border-bottom: 1px dotted #ccc;
	}
}
#step_wrap ul li:last-child::after{
	display: none;
}
#step_wrap ul li .step_inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
#step_wrap ul li .step_num {
	position: relative;
	display: inline-block;
	width: 120px;
	height: auto;
}
#step_wrap ul li .step_num::before {
	position: absolute;
	content: "";
	width: 120px;
	height: 60px;
	top: 0px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: #325c78;
	z-index: 1;
}
#step_wrap ul li .step_num::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	left: 0;
	right: 0;
	bottom: -33px;
	margin: auto;
	z-index: 1;
	border-style: solid;
	border-width: 30px 60px 0 60px;
	border-color: #325c78 transparent transparent transparent;
}
#step_wrap ul li .step_num span.step_menu {
	position: relative;
	display: block;
	width: 120px;
	height: auto;
	margin: auto;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.3em;
	text-align: center;
	padding-bottom: 0px;
	z-index: 2;
}
#step_wrap ul li .step_num span.step_menu span.step_number {
	font-size: 35px;
}
#step_wrap ul li .step_text {
	width: calc(100% - 10px);
	padding: 2vw 1vw;
}
#step_wrap ul li .illust{
	display: none;
}
#step_wrap ul li .step_inner .illust_01 {
	position: relative;
	display: inline-block;
	padding: 20px 0 20px 20px;
}
#step_wrap ul li .step_text .title_inner {
	position: relative;
	display: block;
	font-size: 18px;
	letter-spacing: 0.15em;
	z-index: 2;
}
#step_wrap ul li .step_text .title_inner::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 10px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffffff;
}
#step_wrap ul li .step_text .title_inner span.title {
	position: relative;
	z-index: 2;
}
#step_wrap ul li .step_text span.text {
	display: block;
	font-size: 12px;
	letter-spacing: 0.15em;
	margin: 30px auto 20px auto;
}

#step_wrap ul li .illust img {
	width: 100%;
}

/*--------------------------------------------------
**************************************************
運営会社
**************************************************
--------------------------------------------------*/

div#footer_inner .company {
	margin: 50px auto;
}
div#footer_inner .company h2 {
	font-size: 20px;
	text-align: center;
	letter-spacing: 0.3em;
	margin-bottom: 20px;
}
div#footer_inner .company .logo_c img {
	width: 100%;
}
div#footer_inner .company .company_inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 40px);
	height: auto;
	margin: 0 auto;
}
div#footer_inner .company .company_inner .company_cont {
	width: 100%;
	margin-left: 20px;
}
div#footer_inner .company .company_inner .company_cont span.company_name {
	display: block;
	font-size: 16px;
}
div#footer_inner .company .company_inner span.post {
	display: block;
	font-size: 12px;
	letter-spacing: 0.1em;
	padding-top: 20px;
}
div#footer_inner .company .company_inner span.address {
	font-size: 12px;
	letter-spacing: 0.1em;
}

/*--------------------------------------------------
**************************************************
フッター
**************************************************
--------------------------------------------------*/

div#footer_inner .nav {
	background: #f1f1f1;
	padding: 50px 0 50px 0;
}
div#footer_inner .nav ul {
	display: flex;
	width: calc(100% - 20px);
	max-width: 400px;
	flex-wrap: wrap;
	margin: 0 auto 20px auto;
	padding: 0px 10px 10px 10px;
	border-radius: 10px;
	list-style: none;
	background: #fff;
}
div#footer_inner .nav ul li {
	width: calc(100% / 2);
	position: relative;
	padding-left: 20px;
	line-height: 40px;
}
div#footer_inner .nav ul li:first-child{
	width: 100%;
	margin-left: -10px;
	line-height: 50px;
	text-align: center;
}
div#footer_inner .nav ul li:first-child a{
	font-size: 16px;
}
div#footer_inner .nav ul li::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 1px;
	top: 0;
	left: 10px;
	bottom: 0;
	margin: auto;
	background: #333333;
}
div#footer_inner .nav ul li:first-child::before {
	background: none;
}
div#footer_inner .nav ul li a {
	position: relative;
	text-decoration: none;
	font-size: 13px;
	color: #333333;
}
div#footer_inner .nav ul li a::after {
	position: absolute;
	content: '';
	width: calc(100% + 20px);
	height: 1px;
	bottom: 0;
	left: -10px;
	background: #999999;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}
div#footer_inner .nav ul li a:hover::after {
	transform: scale(1, 1);
}

#pageup {
	position: fixed;
	bottom: 50px;
	right: 20px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
	z-index: 1000;
}
#pageup.active{
	pointer-events: auto;
	opacity: 1;
}
#pageup a {
	position: relative;
	display: block;
	width: 70px;
	height: 70px;
	background: #b50000;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	box-sizing: border-box;
	transition: 0.3s;
	opacity: 1;
}
#pageup a:hover {
	opacity: 0.8;
}
span.page_up {
	position: absolute;
	width: 100%;
	height: 16px;
	top: 18px;
	text-align: center;
	color: #fff;
	font-size: 10px;
	font-family: "Noto Sans JP",sans-serif;
	font-weight: bold;
	z-index: 99999;
}
span.page_up::after {
	content: "";
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
	top: 26px;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: rgba(255,255,255,0.6);
	border-bottom: solid 2px #fff;
	border-left: solid 2px #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	box-sizing: border-box;
}


/* 改行防止 */
.word_wrap{
	display: inline-block;
}
