@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* html
---------------------------------------------------- */
html {
	font-size: 62.5%;
	height: 100%;
}
h1, h2, h3, h4, h5, h6, strong {
     font-weight: 700;
} 

/* ボディー
---------------------------------------------------- */
body {
	height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 25px;
	font-weight: 400;
	color: #333;
	background: #fff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

/* リンク
---------------------------------------------------- */
a {
	color: #333;
	background: transparent;
	text-decoration: none;
}
a:visited {
	background: transparent;
}
a:hover,
a:active {
	background: transparent;
	text-decoration: underline;
}

/* 共通
---------------------------------------------------- */
.inner {
	max-width: 990px;
	padding: 0 10px;
}

.flex {
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.row-column {
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.row-column-reverse {
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.column {
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}
/* 幅いっぱいに広げる */
.between {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
}
/* 均等に広げる */
.around {
	-ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
	justify-content: space-around;
}
/* 左寄せ */
.start {	
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
	justify-content: flex-start;
}
/* 右寄せ */
.end {	
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
}
/* 真ん中寄せ */
.center {	
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
}
/* 下揃え */
.bottom {
	-webkit-box-align: end;
    -ms-flex-align: end;
	-webkit-align-items: flex-end;
    align-items: flex-end;
}
/* 真ん中揃え */
.centre {	
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*追加*/

.shareaholic-canvas{
	margin-top: 75px;
}

/* 画像
---------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	line-height: 0;
}
a img {
	border: none;
	color: #fff;
	background: transparent;
	-webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
a img:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/* ヘッダー
---------------------------------------------------- */
header {
    width: 100%;
    height: 92px;
    border-top: 10px solid #2bb391;
    background: #fff url(../images/nav-global-pc-shadow.jpg) 0 bottom repeat-x;
    position: fixed;
    z-index: 9000;
}
header .logo-sp {
    width: 100px;
    margin-top: 15px;
    margin-left: 10px;
}

.wrapper {
    padding-top: 92px;
}

/* ナビゲーション
---------------------------------------------------- */
#btn-nav {
	display: block;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 25px;
	font-size: 12px;
	font-size: 1.2rem;
	width: 36px;
	height: 36px;
	z-index: 9999;
}
.menu {
	position: absolute;
	right: 15px;
	top: 55px;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #2bb391;
	z-index: 9998;
}
#btn-nav span {
	display: block;
	width: 36px;
	position: absolute;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
#btn-nav span:nth-child(1) {
	top: 5px;
	left: 5px;
	height: 2px;
	background: #c9caca;
}
#btn-nav span:nth-child(2) {
	margin-top: -2px;
	top: 50%;
	left: 5px;
	height: 2px;
	background: #c9caca;
}
#btn-nav span:nth-child(3) {
	bottom: 7px;
	left: 5px;
	height: 2px;
	background: #c9caca;
}
#btn-nav.active span:nth-child(1) {
	-webkit-transform: translateY(11px) rotate(135deg);
	-moz-transform: translateY(11px) rotate(135deg);
	-ms-transform: translateY(11px) rotate(135deg);
	-o-transform: translateY(11px) rotate(135deg);
	transform: translateY(11px) rotate(135deg);
}
#btn-nav.active span:nth-child(2) {
	opacity: 0;
	-webkit-transform: translateY(-10px) rotate(-315deg);
	-moz-transform: translateY(-10px) rotate(-315deg);
	-ms-transform: translateY(-10px) rotate(-315deg);
	-o-transform: translateY(-10px) rotate(-315deg);
	transform: translateY(-10px) rotate(-315deg);
}
#btn-nav.active span:nth-child(3) {
	-webkit-transform: translateY(-11px) rotate(-135deg);
	-moz-transform: translateY(-11px) rotate(-135deg);
	-ms-transform: translateY(-11px) rotate(-135deg);
	-o-transform: translateY(-11px) rotate(-135deg);
	transform: translateY(-11px) rotate(-135deg);
}
div.active {
	color: #fff;
}
nav.global-sp {
	display: none;
	width: 100%;
    height: 100%;
	left: 0;
	top: 0;
	background: rgba(255,255,255,0.9);
    position: fixed;
	z-index: 9998;
	overflow-x: auto;
	/*overflow: scroll;*/
    /*-webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);*/
    -webkit-overflow-scrolling: touch;
}
nav.global-sp ul {
    /*height: 100%;*/
	  margin: 30px 0 10px 0;
    padding-bottom: 45px;
    border-top: 1px solid #333;
    /*overflow-x: auto;
	overflow: scroll;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-overflow-scrolling: touch;*/
}
nav.global-sp ul li {
	margin: 0;
	padding: 18px 0;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
	border-bottom: 1px solid #333; 
}
nav.global-sp ul li a {
	display: block;
}
nav.global-sp ul li.sub-nav ul.child {
	display: none;
	margin: 0 7px;
	border-top: none;
}
nav.global-sp ul li.sub-nav ul.child li {
	margin-top: 20px;
	padding: 0 7px;
	border: none;
}
nav.global-sp ul li.sub-nav ul.child li a {
    display: block;
	padding: 0 0 10px 0;
}

nav ul li.angle-right,
nav ul li.angle-down {
	position: relative;
}
nav ul li.angle-right:after {
	font-family: "Font Awesome 5 Free";
font-weight: bold;
	content: "\f105";
	position: absolute;
	top: 18px;
	right: 5px;
	color: #898989;
}
nav ul li.angle-down:after {
	font-family: "Font Awesome 5 Free";
font-weight: bold;
	content: "\f107";
	position: absolute;
	top: 18px;
	right: 5px;
	color: #898989;
}
nav.global-pc {
	display: none;
}

.service-sub,
.company-sub,
.recruit-sub {
    visibility: hidden;
}
.header-search label {
	display: none;
}
nav.global-sp .header-search-box {
	margin-top: 38px;
}
nav.global-sp .header-search form {
	margin: 13px auto 0;
	width: 215px;
}
nav .header-search input[type="search"] {
	padding: 0 5px;
	width: 75%;
	height: 30px;
	border: 1px solid #c0c0c0;
	border-radius: 0;
	-webkit-appearance: none;
	box-shadow: none;
}
nav .header-search button[type="submit"] {
	padding: 0 10px;
	width: 22%;
	height: 30px;
	font-size: 10px;
	font-size: 1.0rem;
	font-weight: bold;
	color: #fff;
	background: #696969;
	border-style: solid;
	border-width: 1px;
	border-color: #696969;
	border-radius: 0;
	cursor: pointer;
	display: block;
}


/* パンくず
---------------------------------------------------- */
.pankuzu {
	padding-top: 2px;
	padding-bottom: 2px;
}
.pankuzu ul {
	display: block;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	text-align: center;
	list-style: none;
	position: relative;
	line-height: 1em;
}
.pankuzu ul li:after {
	content: ">";
	color: #898989;
	margin: 0 10px;
}
.pankuzu ul li:last-child:after {
	content: "";
	margin: 0 7px 0 0;
}
.pankuzu ul li {
	font-size: 10px;
	font-size: 1.0rem;
	color: #333;
    text-align: left;
}
.pankuzu ul li a {
	font-size: 10px;
	font-size: 1.0rem;
	color: #333;
}
.pankuzu ul li span {
	display: none;
}

/* メイン
---------------------------------------------------- */
main {
	display: block;
}
main p {
	margin-bottom: 1em;
} 
main hr {
    margin: 50px 0 30px 0;
}
.text-center {
    text-align: center!important;
}
.text-left {
    text-align: left!important;
}
.text-right {
    text-align: right!important;
}

/* ピックアップ
---------------------------------------------------- */
.pick-up {
	padding: 70px 10px 50px 10px;
	background: #2db392 url(../images/pick-up-bg.png) center top no-repeat;
	background-size: cover;
}
.pick-up h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 35px;
	font-size: 3.5rem;
	line-height: 25px;
	font-weight: normal;
	text-align: center;
	color: #fff;
}
.pick-up h2 span {
	display: block;
	margin-top: 10px;
	font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 25px;
	text-align: center;
}
.pick-up-banners {
	list-style: none;
	margin: 45px auto 0 auto;
}
.pick-up-banners li {
	margin: 0 auto 20px auto;
	padding: 0;
	line-height: 0;
	list-style: none;	
}

/* お問い合わせボックス
---------------------------------------------------- */
.contact-box {
	padding: 70px 10px;
	background: url(../images/contact-box-bg.jpg) center top no-repeat;
	background-size: cover;
}
.contact-box .box-tel-mail {
	max-width: 970px;
	margin: 0;
}
.box-tel {
	width: 300px;
	height: 120px;
	margin: 0 auto 20px auto;
	padding: 10px 0;
	text-align: center;
	background: #fff;
	border: 1px solid #2bb391;
}
.box-tel .tel {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 32px;
	font-size: 3.2rem;
	line-height: 35px;
}
.box-tel .tel img {
	width: 48px;
	margin-right: 10px;
}
.box-mail {
	width: 300px;
	height: 120px;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
	background: #fff;
	border: 1px solid #2bb391;
}
.contact-form a {
	width: 246px;
	height: 52px;
	margin-top: 4px;
	text-align: center;
	background: #2db392;
	border: 1px solid #2db392;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 48px;
	color: #fff;
	position: relative;
}
.contact-form i {
	position: absolute;
	left: 15px;
	top: 18px;
}
.contact-form a:hover {
	color: #2db392;
	text-decoration: none;
}

/* Sweep To Right */
.contact-form .hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.contact-form .hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.contact-form .hvr-sweep-to-right:hover,
.contact-form .hvr-sweep-to-right:focus,
.contact-form .hvr-sweep-to-right:active {
  color: #2db392;
}
.contact-form .hvr-sweep-to-right:hover:before,
.contact-form .hvr-sweep-to-right:focus:before,
.contact-form .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* フッタナビ
---------------------------------------------------- */
.footer-nav {
	background: url(../images/shadow.png) 0 0 repeat-x;
}
.footer-nav .inner {
	height: 140px;
	position: relative;
}
.cols {
	display: none;
}
.privacy-mark img {
	width: 60px;
	margin-top: 16px;
	margin-left: 16px;
}

.privacy-mark {
	margin-bottom: -2px;
	margin-right: 10px;
}

.privacy-marks p {
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 18px;
}

.go-top a {
	width: 174px;
	height: 50px;
	margin: auto;
	padding: 18px 0 0 0;
	background: url(../images/go-top-bg.svg) 0 0 no-repeat;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

/* フッタ
---------------------------------------------------- */
footer {
	background: #333;
	color: #fff;
	padding: 30px 0 70px 0;
}
footer .footer-left {
	width: 100%;
}
footer .footer-left .footer-other-nav {
	display: none;
}
footer .logo-footer-sp {
	width: 121px;
	margin: 0 auto;
}
footer p.copyright {
	padding-top: 20px;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 20px;
	border-top: 1px solid #fff;
}

/* お問い合わせボックススマフォ
---------------------------------------------------- */
.box-tel-mail-sp {
    width: 100%;
    padding: 10px;
    position: fixed;
    bottom: 0;
    display: none;
    z-index: 9999;
    background: rgba(255,255,255,0.8);
}
.box-tel-mail-sp-inner {
}
.box-tel-sp {
	width: 49%;
	height: 35px;
    font-size: 9px;
	font-size: 0.9rem;
    line-height: 9px;
	text-align: center;
	background: #fff;
	border: 2px solid #2bb391;
}
.box-tel-sp .tel {
    display: inline-block;
    margin-bottom: 3px;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 16px;
}
.box-mail-sp {
	width: 49%;
}

.box-mail-sp a {
    width: 100%;
    height: 35px;
    display: block;
	text-align: center;
	background: #2db392;
	border: 2px solid #2db392;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 28px;
	color: #fff;
	position: relative;
}
.box-mail-sp i {
	position: relative;
	right: 5px;
	top: 10x;
}
.box-mail-sp a:hover {
	color: #2db392;
	text-decoration: none;
}

/* Sweep To Right */
.box-mail-sp .hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.box-mail-sp .hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.box-mail-sp .hvr-sweep-to-right:hover,
.box-mail-sp .hvr-sweep-to-right:focus,
.box-mail-sp .hvr-sweep-to-right:active {
  color: #2db392;
}
.box-mail-sp .hvr-sweep-to-right:hover:before,
.box-mail-sp .hvr-sweep-to-right:focus:before,
.box-mail-sp .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* iPad　縦　以上
---------------------------------------------------- */
@media all and (min-width: 767px) {
/* 共通
---------------------------------------------------- */
.inner {
	margin: 0 auto;
}
.row {
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
}
.flex-1 {
	-ms-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	flex-shrink: 1;
}
.row-column {
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
}
.row-column-reverse {
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/* 上揃え */
.top {	
	-webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
/* 下揃え */
.bottom {	
	-webkit-box-align: end;
    -ms-flex-align: end;
	-webkit-align-items: flex-end;
    align-items: flex-end;
}
/* ベースライン揃え */
.baseline {	
	-webkit-box-align: baseline;
    -ms-flex-align: baseline;
	-webkit-align-items: baseline;
    align-items: baseline;
}
/* ストレッチ揃え */
.stretch {	
	-webkit-box-align: stretch;
    -ms-flex-align: stretch;
	-webkit-align-items: stretch;
    align-items: stretch;
}
.wrap {
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
	
/* ヘッダー
---------------------------------------------------- */
header {
    height: 106px;
	border-top: 7px solid #2bb391;
    background: none;
    background: #fff;
    /*position: relative;*/
}
header .logo-sp {
    display: none;
}

.wrapper {
    padding-top: 110px;
}

/* ナビゲーション
---------------------------------------------------- */
#btn-nav {
	display: none;
}
.menu {
    display: none;
}
nav.global-sp {
	display: none;
}
nav.global-pc {
	display: block;
	height: 63px;
	margin: 40px auto 0 auto;
	background-image: url(../images/nav-global-pc-line.jpg), url(../images/nav-global-pc-shadow.jpg);
	background-position: 0 0, 0 bottom;
	background-repeat: repeat-x, repeat-x;
	/*-webkit-box-shadow: 0px -4px 8px 0px #eee inset;
       -moz-box-shadow: 0px -4px 8px 0px #eee inset;
	    -ms-box-shadow: 0px -4px 8px 0px #eee inset;
	     -o-box-shadow: 0px -4px 8px 0px #eee inset;
	        box-shadow: 0px -4px 8px 0px #ccc inset;*/
}
nav.global-pc .header-search-box {
	margin: 0 auto;
	max-width: 990px;
	position: relative;
}
nav.global-pc .header-search {
	position: absolute;
	top: -33px;
	right: 0;
	width: 280px;
}
nav.global-pc .header-search input[type="search"],
nav.global-pc .header-search button[type="submit"] {
	height: 25px;
	line-height: 24px;
	font-size: 13px;
	font-size: 1.3rem;
}

nav.global-pc ul {
	padding-top: 20px;
}
nav.global-pc ul li {
	margin: 0;
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 500;
}
nav.global-pc ul li a {
	display: block;
	color: #333;
}
nav.global-pc ul li a:hover {
	text-decoration: none;
}
nav.global-pc ul.global-pc-left {
	width: 40.51546%;
	/*margin-top: 20px;*/
}
nav.global-pc ul.global-pc-right {
	width: 40.51546%;
	/*margin-top: 20px;*/
}
nav.global-pc .logo-pc {
		margin-top: -40px;
}
nav.global-pc .logo-pc a img:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}
nav.global-pc ul li.strength {
	width: 39.4402%;
	/*border-right: 1px solid #9fa0a0;*/
	text-align: center;
}
nav.global-pc ul li.strength span {
	display: block;
	border-right: 1px solid #9fa0a0;
}
nav.global-pc ul li.service {
	width: 31.2977%;
	/*border-right: 1px solid #9fa0a0;*/
	text-align: center;
}
nav.global-pc ul li.service span {
	display: block;
	border-right: 1px solid #9fa0a0;
	position: relative;
}
nav.global-pc ul li.service span:before {
	font-family: "Font Awesome 5 Free";
    font-weight: bold;
	content: "\f107";
	position: absolute;
	top: 70%;
	left: 48%;
	color: #898989;
}
nav.global-pc ul li.company {
	width: 31.04325%;/*29.2621%*/
	/*border-right: 1px solid #9fa0a0;*/
	text-align: center;
}
nav.global-pc ul li.company span {
	display: block;
	border-left: 1px solid #9fa0a0;
	position: relative;
}
nav.global-pc ul li.company span:before {
	font-family: "Font Awesome 5 Free";
    font-weight: bold;
	content: "\f107";
	position: absolute;
	top: 70%;
	left: 48%;
	color: #898989;
}

/*right*/

nav.global-pc ul li.qanda {
	width: 29.2621%;/*31.04325%*/
	/*border-left: 1px solid #9fa0a0;*/
	text-align: center;
}
nav.global-pc ul li.qanda span {
	display: block;
	border-right: 1px solid #9fa0a0;
	position: relative;
}
nav.global-pc ul li.recruit {
	width: 33.58778%;
	/*border-left: 1px solid #9fa0a0;*/
	text-align: center;
}
nav.global-pc ul li.recruit span {
	display: block;
	border-left: 1px solid #9fa0a0;
	position: relative;
}
nav.global-pc ul li.recruit span:before {
	font-family: "Font Awesome 5 Free";
    font-weight: bold;
	content: "\f107";
	position: absolute;
	top: 70%;
	left: 48%;
	color: #898989;
}



nav.global-pc ul li.contact {
	width: 35.36897%;
	height: 27px;
	text-align: center;
	background: #2db392;
	border: 1px solid #2db392;
	font-size: 12px;
	font-size: 1.2rem;
}
nav.global-pc ul li.contact i {
	margin-right: 5px;
}
nav.global-pc ul li.contact a {
	color: #fff;
}
nav.global-pc ul li.contact a:hover {
	color: #2db392;
}

/* Sweep To Right */
nav .hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
nav .hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
nav .hvr-sweep-to-right:hover,
nav .hvr-sweep-to-right:focus,
nav .hvr-sweep-to-right:active {
  color: #fff;
}
nav .hvr-sweep-to-right:hover:before,
nav .hvr-sweep-to-right:focus:before,
nav .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}



/*nav.global-pc ul li.service:hover a + .service-sub,
nav.global-pc ul li.company:hover a + .company-sub {
    display: block;
    opacity: 1;
    animation-duration: 0.2s;
    animation-name: fade-in;
    -moz-animation-duration: 0.2s;
    -moz-animation-name: fade-in;
    -webkit-animation-duration: 0.2s;
    -webkit-animation-name: fade-in;
}
    @keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }

    @-moz-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }

    @-webkit-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }
    

.service-sub:hover,
.company-sub:hover {
    display: block;
}*/


nav.global-pc ul li.service a + .service-sub,
nav.global-pc ul li.company a + .company-sub,
nav.global-pc ul li.recruit a + .recruit-sub {
    opacity: 0;
    -webkit-transition: 0.1s ease-in-out;
       -moz-transition: 0.1s ease-in-out;
         -o-transition: 0.1s ease-in-out;
            transition: 0.1s ease-in-out;
}
nav.global-pc ul li.service:hover a + .service-sub,
nav.global-pc ul li.company:hover a + .company-sub,
nav.global-pc ul li.recruit:hover a + .recruit-sub {
    opacity: 1;
    visibility: visible;
}   

.service-sub:hover,
.company-sub:hover,
.recruit-sub:hover {
    visibility: visible;
}


.service-sub,
.company-sub,
.recruit-sub {
	width: 100%;
	padding-top: 30px;
	background: #2bb391;
	position: absolute;
	top: 103px;
	left: 0;
	z-index: 8000;
}
.service-sub div ul,
.company-sub div ul,
.recruit-sub div ul {
	list-style: none;
}
.service-sub div ul:nth-of-type(2) {
    padding-top: 0;
}
.service-sub div ul li,
.company-sub div ul li {
	width: 17.52577%;
	margin-bottom: 25px;
	text-align: center;
}

.recruit-sub div ul li {
	width: 50%;
	margin-bottom: 25px;
	margin-left: 30px;
	margin-right: 30px;
	text-align: center;
}


.service-sub div ul li a,
.company-sub div ul li a,
.recruit-sub div ul li a {
	display: block;
    font-size: 11px;
	font-size: 1.1rem;
	color: #fff;
}
.service-sub div ul li a:hover,
.company-sub div ul li a:hover,
.recruit-sub div ul li a:hover {
	text-decoration: none;
}
.service-sub div ul li span,
.company-sub div ul li span,
.recruit-sub div ul li span {
	display: block;
	border-right: 5px!important;
}
nav.global-pc ul li.service .service-sub div ul li span:before,
nav.global-pc ul li.company .company-sub div ul li span:before,
nav.global-pc ul li.recruit .recruit-sub div ul li span:before {
	content: "";
}
.service-sub div ul li span .small {
	display: inline;
    font-size: 9px;
	font-size: 0.9rem;
}


/* パンくず
---------------------------------------------------- */
.pankuzu {
	padding-top: 3px;
	padding-bottom: 3px;
}
.pankuzu ul li {
	font-size: 12px;
	font-size: 1.2rem;
}
.pankuzu ul li a {
	font-size: 12px;
	font-size: 1.2rem;
}

/* メイン
---------------------------------------------------- */

	
/* ピックアップ
---------------------------------------------------- */
.pick-up h2 {
	font-size: 60px;
	font-size: 6.0rem;
}
.pick-up h2 span {
	margin-top: 20px;
	font-size: 20px;
	font-size: 2.0rem;
}
.pick-up-banners {
	max-width: 970px;
}
.pick-up-banners::before {
	content:"";
	display: block;
	width: 30.82474%;
    order: 1;
}
.pick-up-banners::after {
	content:"";
	display: block;
	width: 30.82474%;
}
.pick-up-banners li {
	width: 30.82474%;
	margin: 0 0 20px 0;
}

/* お問い合わせボックス
---------------------------------------------------- */
.contact-box {
}
.contact-box .box-tel-mail {
	margin: 0 auto;
}

.box-tel {
	width: 47.42268%;
	height: 150px;
	margin: 0;
	padding: 20px 0;
}
.box-tel .tel {
	font-size: 41px;
	font-size: 4.1rem;
	line-height: 44px;
}
.box-tel .tel img {
	width: 60px;
}
.box-mail {
	width: 47.42268%;
	height: 150px;
	margin: 0;
}
.contact-form i {
	top: 22px;
}
.contact-form a {
	width: 308px;
	height: 65px;
	margin-top: 15px;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 60px;
}

/* フッタナビ
---------------------------------------------------- */
.cols {
	display: block;
	position: relative;
}
.footer-nav {
	padding: 35px 0 0 0;
}
.footer-nav .inner {
	height: auto;
	padding-bottom: 30px;
}
.footer-nav .col-1 {
	width: 26.28865%;
}
.footer-nav .col-2 {
	width: 52.57731%;
}
.footer-nav .col-2 ul:first-child {
	margin-right: 30px;
}
.footer-nav .col-3 {
	width: 21.13402%;
}
.footer-nav p a {
	font-weight: 500;
	color: #2bb391;
}
.footer-nav ul {
	list-style: none;
	line-height: 25px;
}
.footer-nav ul li:before {
	font-family: "Font Awesome 5 Free";
font-weight: bold;
    content: "\f0da";
    position: relative;
	color: #2bb391;
	margin-right: 10px;
}

	
.footer-nav ul li.to-support:before {
    content: "";
}
.to-support {
	position: absolute;
	top: 185px;
	right: 0px;
}
.to-support a {
	width: 205px;
	height: 48px;
	text-align: center;
	background: #2db392;
	border: 1px solid #2db392;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 46px;
	color: #fff;
}
.to-support i {
	position: absolute;
	left: 15px;
	top: 16px;
}
.to-support a:hover {
	color: #2db392;
	text-decoration: none;
}

/* Sweep To Right */
.to-support .hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.to-support .hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.to-support .hvr-sweep-to-right:hover,
.to-support .hvr-sweep-to-right:focus,
.to-support .hvr-sweep-to-right:active {
  color: #2db392;
}
.to-support .hvr-sweep-to-right:hover:before,
.to-support .hvr-sweep-to-right:focus:before,
.to-support .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.privacy-mark img {
	margin-top: 30px;
	margin-left: 0;
}

/* フッタ
---------------------------------------------------- */
footer {
	padding: 23px 0 8px 0;
}
footer .footer-left .footer-other-nav {
	display: block;
}
footer .footer-left {
	width: 84.53608%;
	margin-right: 30px;
}
footer .footer-left ul {
	list-style: none;
	margin-bottom: 15px;
}
footer .footer-left ul li:before {
	font-family: "Font Awesome 5 Free";
font-weight: bold;
    content: "\f0da";
    position: relative;
	color: #fff;
	margin-right: 10px;
}
footer .footer-left ul li {
	margin-right: 10px;
}
footer .footer-left ul li a {
	color: #fff;
}
footer .logo-footer-pc {
	width: 121px;
}
footer .logo-footer-sp {
	display: none;
}
footer p.copyright {
	font-size: 12px;
	font-size: 1.2rem;
}
.box-tel-mail-sp {
    display: none;
}
}

/* 900　以上
---------------------------------------------------- */
@media all and (min-width: 900px) {
nav.global-pc ul {
}
nav.global-pc ul li {
	font-size: 14px;
	font-size: 1.4rem;
}
nav.global-pc ul li.contact {
	font-size: 12px;
	font-size: 1.2rem;
}

.service-sub div ul li a,
.company-sub div ul li a,
.recruit-sub div ul li a  {
    font-size: 12px;
	font-size: 1.2rem;
}
.service-sub div ul li a:hover,
.company-sub div ul li a:hover,
.recruit-sub div ul li a:hover {
	text-decoration: none;
}
.service-sub div ul li span .small {
    font-size: 11px;
	font-size: 1.1rem;
}


}
/* IE10 */
@media all and (-ms-high-contrast:none) and (min-width: 767px) {

}
