@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@200;400;500;600&family=Noto+Sans+JP:wght@100;300;400;500&display=swap');
/* CSS Document */
.eng {
	font-family: 'M PLUS 2', sans-serif;
	font-weight: 200;
}
body,html{
	overflow-x: hidden;
}

/*PC Layout
===================================*/
@media print, screen and (min-width: 769px) {
	/*==================================================
	fadeup
	===================================*/
	.fadeup-item {
		opacity: 0;
	}
	.fadeUp {
		animation-name: fadeUpAnime;
		animation-duration: 0.5s;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	table {
		width: 100%;
	}
		@keyframes fadeUpAnime {
		from {
		opacity: 0;
		transform: translateY(100px);
		}
		to {
		opacity: 1;
		transform: translateY(0);
		}
	}
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
	p, a, span, small, li, td, th, label, h1, h2, h3, h4, h5, h6, input, textarea {
		font-size: min(1vw, 16px);
		line-height: 2.4rem;
		letter-spacing: .1rem;
		font-family: 'Noto Sans JP', sans-serif;
	}
	a {
		word-break: break-all;
	}
	html {
		overflow-x: hidden;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch
	}
}
/* layout
------------------------------------------------------ */


/* breadcrumb
------------------------------------------------------ */

main, section, .breadcrumb {
	width: 90%;
	margin: 0 auto;
}
.breadcrumb {
	display: flex;
	margin: 10px auto 40px;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 98%;
	margin-top: -110px;
	z-index: 9999;
	position: fixed;
	max-width: 1480px;
	left: 0;
	right: 0;
	margin: auto;
	padding-right: 50px;
}
.breadcrumb li, .breadcrumb li a {
	font-size: min(1vw, 13px);
}
.breadcrumb li:not(:first-child):before {
	content: '/';
	display: inline-block;
	margin: 0 4px;
}
h3 {
	font-weight: 300;
	font-size: 4rem;
}
h3 span {
	font-weight: 400;
}
.h3-center {
	text-align: center;
}
.h3-center span {
	display: block;
	margin-top: 20px;
	margin-bottom: 60px;
}
.core-main-bg {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	background: #F3F3F3;
	padding: 80px 0 60px;
	margin-top: 90px;
}
h2 {
	text-align: center;
	font-size: 5rem;
	margin-bottom: 20px;
	letter-spacing: .4rem;
}
.page-subttl {
	text-align: center;
	font-size: 2vw;
	letter-spacing: .4rem;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
	h3 {
		font-size: 2.4rem;
	}
	.h3-center span {
		margin-top: 10px;
	}
	.page-subttl {
		font-size: 1.4rem;
	}
	.core-main-bg {
		margin-top: 50px;
	}
	section {
		width: 100%;
	}
	.breadcrumb {
		display: flex;
		margin: 10px auto 40px;
		flex-wrap: wrap;
		justify-content: flex-start;
		width: 98%;
		margin-top: -110px;
		z-index: 0;
		position: relative;
		max-width: 1480px;
		right: 0;
		margin: auto;
		padding-right: 0;
		width: 97%;
		margin: 10px auto;
	}
	.breadcrumb li, .breadcrumb li a {
		font-size: 1.2rem;
	}
}

/*SP Layout
===================================*/
@media all and (min-width: 769px) {
	.breadcrumb{
		right: auto;
		left: auto;
		max-width: 280px;
		margin-left: 1100px;
	}
}


/* header
------------------------------------------------------ */
header {
	margin: 0 auto;
}
.header-top a img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	text-align: center;
}
#header {
	background-color: #fff;
	left: 0;
	position: fixed;
	top: 0;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
}
#header .header_inner {
	position: relative;
	width: 80%;
}
#header .logo {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	height: 96px;
	font-size: 0;
	float: left;
	width: 347px;
}
#header .logo a {
	display: block;
	height: 100%;
	width: 100%;
}
/* global_nav */
#header #header_nav {
	margin-top: 25px;
	margin: 0 auto;
	width: 100%;
}
.header-contact-wrap {
	width: 20%;
	display: flex;
	max-height: 90px;
	height: 90px;
}
.header-contact-wrap img {
	max-height: 70px;
}
#header #global_nav > ul {
	letter-spacing: -0.4em;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#header #global_nav > ul > li {
	letter-spacing: normal;
	font-size: .9rem;
	position: relative;
	text-align: center;
	width: auto;
	margin-right: 30px;
}
#header #global_nav > ul > li:first-child {
	margin-left: 0;
}
#header #global_nav > ul > li a {
	color: #000;
	font-weight: 400;
}
#header #global_nav > ul > li a span {
	display: block;
	font-size: 1rem;
	color: #666;
}
#header #global_nav .second_nav {
	display: none;
}
.header-top {
	display: flex;
	width: 18%;
}
nav#global_nav {
	margin: 0 auto;
}
a.pointer-none {
	pointer-events: none;
}
.global_nav span {
	font-size: 1.2rem;
}
.header-sns-wrap {
	display: flex;
	width: 20%;
	align-items: center;
	background: #fff;
	justify-content: center;
}
.header-sns-item {
	width: 40%;
	margin: 2px;
}
#header #global_nav .third_nav {
	display: none;
} 

/*PC Layout
===================================*/
@media print, screen and (min-width: 901px) {
	#nav_trigger {
		display: none;
	}
	#header {
		height: 130px;
		max-height: 130px;
	}
	/* global_nav */
	#header #global_nav > ul > li.current > a {
		color: #9cc701;
	}
	#header #global_nav > ul > li.btn_inquiry > a {
		background-color: #359973;
		border-radius: 50px;
		color: #303030 !important;
		display: block;
		font-weight: bold;
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		width: 200px;
	}
	#header #global_nav .second_nav {
		background: url(../images/header-bg.png) no-repeat;
		margin-top: 0;
		padding: 0;
		position: absolute;
		width: 100vw;
		z-index: 9999999999;
		margin: 0 calc(50% - 50vw);
		top: 130px;
		left: 0;
		background-size: cover;
	}
	#header #global_nav .second_nav li {
		font-size: 1rem;
		position: relative;
		width: 200px;
		margin: 0 auto;
		position: relative;
		padding-left: 680px;
	}
	#header #global_nav .second_nav_services li {
		width: auto;
		padding: 0;
	}
	#header #global_nav .second_nav_technology li {
		width: auto;
		padding: 0;
	}	
	#header #global_nav .second_nav li a {
		color: #303030;
		padding: 10px 0;
		text-align: center;
		font-size: 1.4rem;
		font-weight: normal;
		display: block;
	}
	figure.header-tel {
		background: #005ACB;
		width: 50%;
	}
	figure.header-tel img {
		max-height: 52px;
		width: 90%;
		margin: 0 auto;
	}
	figure.header-contact {
		background: transparent linear-gradient(91deg, #9CC701 0%, #11540B 100%) 0% 0% no-repeat padding-box;
		width: 74%;
		position: relative;
		margin-left: auto;
		;
	}
	figure.header-tel {
		width: 40%;
		position: relative;
	}
	figure.header-contact a, figure.header-tel a {
		display: block;
	}
	.sp-icon {
		display: none;
	}
	/* IE */
	.ie #header #global_nav > ul > li {
		margin-top: 0.3em;
	}
	.ie #header #global_nav > ul > li.btn_inquiry > a {
		padding-top: calc(10px + 0.3em);
	}
	nav#global_nav {
		margin-left: auto;
		margin-right: 0;
		/*		max-width: 1080px;*/
		height: 100%;
	}
	#header #global_nav > ul {
		height: 100%;
	}
	#header #header_nav {
		margin-right: 0;
		height: 100%;
	}
	#header #global_nav > ul > li {
		height: 100%;
	}
	#header .header_inner {
		display: flex;
		align-items: center;
		position: unset;
	}
	#header #global_nav > ul > li {
		position: unset;
	}
	.header-wrap {
		position: relative;
	}
	.header-contact img {
		width: 100%;
		margin: 0 auto;
		max-width: 150px;
	}
	figure.header-contact a:first-child {
		padding-top: 20px;
		padding-bottom: 10px;
		border-bottom: 1px solid #fff;
		width: 90%;
		margin: 0 auto;
	}
	figure.header-contact a:last-child {
		width: 65%;
		margin: 10px auto;
	}
	.head-contact {
		width: 220px!important;
		line-height: 44px;
		height: 44px;
		margin-right: 12px!important;
		display: flex;
		align-items: center;
	}
	.head-contact a {
		padding-top: 10px!important;
		padding-bottom: 10px!important;
		height: 26px!important;
	}
	#header #global_nav .second_nav li a:after {
		content: '';
		background: url(../images/secondnav-arrow.png) no-repeat;
		background-size: contain;
		width: 12px;
		height: 12px;
		vertical-align: middle;
		display: inline-block;
		transform: inherit;
		position: absolute;
		right: 0;
		top: 44%;
		left: auto;
	}
	#header #global_nav .second_nav_services li a:after, #header #global_nav .second_nav_technology li a:after {
		position: relative;
		top: 0;
		left: 1%;
	}
	.header-area {
		display: flex;
		width: 98%;
		margin: 0 auto;
		max-width: 1480px;
		height: 100%;
	}
	#header #global_nav > ul > li:nth-child(7) {
		margin-right: 30px;
	}
	#header #global_nav > ul > li a {
		font-size: min(.9vw, 15px);
		height: 100%;
		line-height: 120px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header #global_nav > ul > li .none_link {
		font-size: min(.9vw, 15px);
		height: 100%;
		line-height: 120px;
		display: flex;
		align-items: center;
		cursor: default;
	}
	/*==================================================
	共通　横並びのための設定
	===================================*/
	nav#global_nav ul li a {
		padding: 0 0 10px;
		text-decoration: none;
	}
	/*==================================================
	　左から右に線が伸びる（下部）
	===================================*/
	nav#global_nav ul li a {
		position: relative;
	}
	nav#global_nav ul li.current a, nav#global_nav ul li a:hover {
		color: #333333;
	}
	nav#global_nav ul li:not(:nth-child(7)):not(:nth-child(8)) a::after {
		content: '';
		position: absolute;
		bottom: 55px;
		left: 0;
		width: 100%;
		height: 1.5px;
		background:#333333;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: left top;
		}
	nav#global_nav ul li.current a::after, nav#global_nav ul li a:hover::after {
		transform: scale(1, 1);/*X方向にスケール拡大*/
	}
	.header-wrap {
		height: 130px;
	}
	main {
		margin-top: 0!important;
			max-width: 1440px;
	}
	#header #global_nav .second_nav li a {
		line-height: 60px;
		height: 60px;
	}
	#header #global_nav .third_nav {
		background-color: #fff;
		opacity: 0.9;
		padding: 10px;
		width: 30%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin-left: auto;
		margin-right: 1%;
		box-shadow: gray 0px 2px 16px;
	}
	#header_nav #global_nav ul li .second_nav_services .menu_srl .third_nav .preparing a {
		color: #8a8a8a;
	}
}
#header #global_nav.fixed > ul > li:nth-child(1):after, #header #global_nav.fixed > ul > li:nth-child(2):after, #header #global_nav.fixed > ul > li:nth-child(3):after, #header #global_nav.fixed > ul > li:nth-child(4):after, #header #global_nav.fixed > ul > li:nth-child(5):after, #header #global_nav.fixed > ul > li:nth-child(6):after, #header #global_nav.fixed > ul > li:nth-child(7):after {
	content: none;
}

/*SP Layout
===================================*/
@media all and (max-width: 900px) {
	#header {
		border-bottom-width: 2px;
		min-width: inherit;
		align-items: flex-start;
		background: #fff!important;
	}
	#header.active {
		background-color: #333 !important;
		border-bottom: none;
		height: 100%;
		overflow: auto;
		display: block;
	}
	#nav_trigger {
		height: 70px;
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		z-index: 102;
		background: transparent linear-gradient(107deg, #9CC701 0%, #11540B 100%) 0% 0% no-repeat padding-box;
	}
	#header.active #nav_trigger {
		border-color: #393939 !important;
	}
	#nav_trigger span {
		background-color: #fff;
		border-radius: 50px;
		height: 1px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
		position: absolute;
		-webkit-transition: all .3s;
		transition: all .3s;
		width: 38px;
	}
	#nav_trigger.active span {
		color: #fff;
	}
	#nav_trigger span:nth-of-type(1) {
		top: 20px;
	}
	#nav_trigger span:nth-of-type(2) {
		top: 30px;
	}
	#nav_trigger span:nth-of-type(3) {
		top: 40px;
	}
	#nav_trigger.active span:nth-of-type(1) {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 24px;
	}
	#nav_trigger.active span:nth-of-type(2) {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 24px;
	}
	#header .logo {
		height: 35px;
		width: 130px;
	}
	#header.active .logo {
		opacity: 0;
		z-index: -1;
	}
	.header-top {
		display: block;
		width: 40%;
	}
	/* global_nav */
	#header #header_nav {
		/*		background-color:#333;*/
		display: none;
		margin-top: 0;
		overflow-y: scroll;
		left: 0;
		top: 0;
		height: calc(100% - 65px);
		width: 80%;
	}
	#header #global_nav > ul > li {
		display: block;
		margin: 0;
		position: relative;
		text-align: left;
	}
	#header #global_nav > ul > li:first-child {
		border-top: none;
	}
	#header #global_nav > ul > li a {
		font-size: 1.6rem;
		display: inline-flex;
		padding: 16px 0 4px 0;
		color: #fff;
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	#header #global_nav > ul > li .none_link {
		font-size: 1.6rem;
		display: inline-flex;
		padding: 16px 0 4px 0;
		color: #fff;
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	#header #global_nav .second_nav li a {
		font-size: 1.4rem;
		display: block;
	}
	#header #global_nav > ul > li.btn_inquiry > a {
		color: #359973;
	}
	#header #global_nav > ul > li .icn_open {
		position: absolute;
		height: 25px;
		right: 5px;
		top: 12px;
		width: 25px;
	}
	#header #global_nav > ul > li .icn_open:before,  #header #global_nav > ul > li .icn_open:after {
		background-color: #fff;
		content: "";
		height: 1px;
		margin-left: auto;
		margin-right: auto;
		position: absolute;
		left: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0;
		width: 14px;
	}
	#header #global_nav > ul > li .icn_open:after {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	#header #global_nav > ul > li .icn_open.active:after {
		display: none;
	}
	#header #global_nav > ul {
		flex-direction: column;
	}
	#header #global_nav > ul > li {
		width: 100%;
		border-bottom: .5px solid #fff;
	}
	.header-top a img{
		width: 100%;
		margin: 0 auto;
		height: 70px;
	}
	.header-top .headsp-contact-icon img {
		height: auto;
	}
	figure.sp-icon {
		width: 16px;
		margin: 0 auto;
	}
	div#nav_trigger p, .headsp-contact p {
		font-size: .9rem;
		text-align: center;
		position: absolute;
		bottom: 4px;
		right: 0;
		left: 0;
		color: #fff;
	}
	.headsp-contact-icon {
		width: 40%;
		margin: 20px auto 0;
	}
	#header .header_inner {
		width: 0px;
		margin-right: 50px;
	}
	#header.active .header_inner {
		width: 100%;
	}
	.header-contact-wrap {
		width: 64%;
		height: 70px;
		position: absolute;
		right: 50px;
	}
	#header.active .header-contact-wrap {
		width: 80%;
		margin: 20px auto 0;
	}
	#header.active .header-contact, #header.active .header-tel {
		width: 50%;
		margin: 0 auto;
	}
	#header #global_nav > ul > li a span {
		display: none;
	}
	figure.header-tel {
		width: 40%;
	}
	figure.header-contact {
		width: 40%;
		background: #005AC5;
	}
	.header-contact, figure.header-tel {
		background: #005AC5;
	}
	.header-contact img {
		width: 70%;
		margin: 0 auto;
	}
	.header-contact a, .header-tel a {
		display: block;
	}
	.header-tel img {
		margin: 20px auto 0;
		width: 80%;
	}
	figure.header-tel {
		width: 50%;
	}
	figure.header-contact {
		width: 50%;
		border-right: 1px solid #fff;
		display: flex;
		margin-left: 10px;
	}
	figure.header-contact a:first-child {
		border-right: 1px solid #fff;
	}
	.head-contact {
		margin-bottom: 10px!important;
		margin-top: 60px!important;
	}
	.head-contact + .head-contact {
    margin-top: 0!important;
	}
	.head-contact, #header #global_nav > ul > li:last-child {
		border-bottom: none!important;
		width: 100%!important;
	}
	#header #global_nav > ul > li:has(.more-other-btn),
	#header #global_nav > ul > li:has(.more-btn),
	#header #global_nav > ul > li:has(.more-btn02) {
    border-bottom: none !important;
	margin-bottom: 16px;
	}
#header #global_nav > ul > li:has(.more-other-btn) {
    margin-top: 60px;
}
	.sphead-info {
		display: flex;
		justify-content: center;
		margin: 30px auto;
	}
	.sphead-info a {
		color: #fff;
		display: block;
		font-size: 1.4rem;
	}
	.sphead-info a:first-child {
		margin-right: 20px;
	}
	.header-inner {
		position: relative;
	}
	.spheader-saver {
		position: absolute;
		right: 0;
		width: 25%;
		top: -20px;
	}
	#header.active h1 a {
		background: url(../images/foot-logo.png) no-repeat;
		background-size: contain;
		color: transparent;
		width: 100%;
		height: 100%;
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		display: block;
		background-position: center;
	}
	.header-top {
		margin-left: 10px;
	}
	#header.active .header-top {
		margin-left: 24px;
	}
	main {
		margin-top: 70px;
	}
	.headsp-contact {
		position: absolute;
		top: 0;
		right: 140px;
		width: 70px;
		height: 70px;
		background: #333;
	}
	.headsp-contact:first-of-type {
    border-right: 1px solid #555;
	}
	.headsp-contact + .headsp-contact {
    right: 70px;
	}
	#header.active .headsp-contact {
		display: none;
	}
	#header.active #nav_trigger span:nth-of-type(3) {
		display: none;
	}
	#header.active #nav_trigger {
		background: none;
	}
	#header .close {
		display: none;
	}
	#header.active .close {
		display: block;
	}
	#header.active .open {
		display: none;
	}
	.header-area {
		width: 100%;
	}
}


/* contact
------------------------------------------------------ */
.contact h3 {
	text-align: center;
	margin-bottom: 20px;
}
.contact h3 span {
	display: block;
	margin-top: 20px;
}
.contact-item {
	background: #efefef;
	padding: 30px 0;
}
.contact-item p, .contact-item a {
	text-align: center;
	display: block;
}
.contact-num-link {
	font-size: 2.8rem;
	font-weight: 600;
}
.contact-num-link:before {
	content: '';
	background: url(../images/contact-tel-icon.svg) no-repeat;
	display: inline-block;
	background-size: contain;
	width: 48px;
	height: 48px;
	vertical-align: middle;
}
.contact-ttl {
	margin-bottom: 20px;
}
.contact-hours {
	font-size: 1rem;
}
.contact-form-link, .contact-line-link {
	background: #fff;
	width: 80%;
	margin: 0 auto;
	padding: 10px 0;
}
.contact-form-link:before {
	content: '';
	background: url(../images/contact-form-icon.svg) no-repeat;
	display: inline-block;
	background-size: contain;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 4px;
}
.contact-line-link:before {
	content: '';
	background: url(../images/contact-line-icon.svg) no-repeat;
	display: inline-block;
	background-size: contain;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 4px;
}
.contact-wrap {
	padding-bottom: 40px;
	border-bottom: 1px solid #c6c6c6;
	margin-bottom: 40px;
}
.sns-wrap {
	display: flex;
}
.sns-recruit-wrap {
	max-width: 836px;
	margin: 0 auto;
}
.contact-bg {
	margin-bottom: 100px;
}

/*PC Layout
===================================*/
@media print, screen and (min-width: 901px) {
	.contact-wrap {
		display: flex;
		justify-content: space-between;
	}
	.contact-item {
		width: 32%;
	}
	.sns-recruit-wrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.sns-wrap {
		width: 17%;
	}
	.sns-recruit-txt {
		width: 34%;
	}
	.recruit-bnr {
		width: 43%;
	}
}

/*SP Layout
===================================*/
@media all and (max-width: 901px) {
	.sns-recruit-txt {
		text-align: center;
	}
	.sns-wrap {
		width: 50%;
		margin: 0 auto;
	}
	.contact-bg {
		margin-bottom: 60px;
	}
	.contact-item {
		margin: 10px auto;
	}
}


/* contact
------------------------------------------------------ */
.contact-bg {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.foot-link-item01, .foot-link-item02 {
	position: relative;
	transition: .5s;
}
.foot-link-item-ttl {
	color: #fff;
	font-size: 4rem;
	position: absolute;
	top: 40%;
	left: 60px;
	line-height: 2.4rem;
}
.foot-link-item-txt {
	color: #fff;
	position: absolute;
	top: 50%;
	left: 60px;
}
.foot-link-wrap .footer-link-item01, .foot-link-wrap .footer-link-item02 {
	position: absolute;
	top: 60%;
	left: 60px;
	width: 40%;
	max-width: 300px;
}
.foot-link-item01, .foot-link-item02 {
	overflow: hidden;
}
.foot-link-item-ttl, .foot-link-item-txt {
	z-index: 10;
}
.footer-link-item01, .footer-link-item02 {
	z-index: 10;
}
.foot-link-bg01 {
	width: 100%;
	height: 100%;
	background: url(../images/company-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center top;
	transition: .5s all;
	position: relative;
	z-index: 1;
}
.foot-link-bg02 {
	width: 100%;
	height: 100%;
	background: url(../images/download-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	transition: .5s all;
	position: relative;
	z-index: 1;
}
.foot-link-item01:hover .foot-link-bg01, .foot-link-item01:focus .foot-link-bg01 {
	transform: scale(1.2);
}
.foot-link-item02:hover .foot-link-bg02, .foot-link-item02:focus .foot-link-bg02 {
	transform: scale(1.2);
}


/* footer
------------------------------------------------------ */
.footer-bg {
	background: #333333;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 40px 0;
}
footer {
	width: 90%;
	max-width: 1180px;
	margin: 0 auto 50px;
}
.copyrights {
	text-align: center;
	font-size: 1.2rem;
}
.footer-tel span, .footer-fax span {
	background: #4d4d4d;
	color: #fff;
	padding: 0 6px;
	margin-right: 8px;
}
footer, footer a {
	color: #fff;
}
.footer-link-item {
	display: block;
	text-align: center;
}
.copy-wrap, .copy-wrap a {
	color: #fff;
}

/*PC Layout
===================================*/
@media print, screen and (min-width: 901px) {
	footer {
		display: flex;
		justify-content: space-between;
		width: 85%;
		max-width: 1384px;
	}
	.copy-wrap {
		width: 80%;
		max-width: 1384px;
		margin: 0 auto;
	}
	.footer-nav {
		display: flex;
		flex-wrap: wrap;
		width: 45%;
		justify-content: space-between;
	}
	.footer-info {
		width: 19%;
	}
	.footer-logo {
		width: 100%;
	}
	.footer-nav ul {
		width: 24%;
	}
	/* .footer-nav ul li:first-child {
		font-weight: 600;
	} */
	.footer-nav ul {
		width: 42%;
	}
	.footer-nav ul li {
		margin-bottom: 10px;
	}
	.footer-nav ul:last-child {
		width: 15%;
	}
	.footer-link-wrap {
		width: 25%;
	}
	.copy-wrap {
		display: flex;
		justify-content: space-between;
		padding-top: 10px;
		border-top: 0.5px solid #fff;
	}
	.copy-wrap ul {
		display: flex;
	}
	.copy-wrap ul li:first-child {
		margin-right: 20px;
	}
	.foot-link-wrap {
		display: flex;
		justify-content: space-between;
	}
	.foot-link-item01, .foot-link-item02 {
		width: 50%;
		height: 400px;
	}
	.foot-link-item-txt, .footer-link-item01 p, .footer-link-item02 p, .copy-wrap, .copy-wrap a {
		font-size: 1.3rem;
		line-height: 2rem;
	}
}

/*SP Layout
===================================*/
@media all and (max-width: 900px) {
	.footer-info, .footer-logo {
		width: 70%;
		margin: 0 auto;
		margin-left: 0;
	}
	footer {
		margin: 0 auto 40px;
		width: 100%;
	}
	.footer-nav {
		width: 65%;
		margin: 10px auto;
	}
	#header.active .header-contact-wrap {
		width: 62%;
		margin: 20px auto 0;
		position: absolute;
		top: -70px;
		right: 50px;
		top: -20px;
	}
	#header.active #nav_trigger01.close-btn {
		background: #E9E9E9;
		display: block;
		font-size: 1.4rem;
		text-align: center;
		line-height: 50px;
		border: none;
		margin: 20px auto;
	}
	.foot-link-item01, .foot-link-item02 {
		height: 200px;
	}
	.foot-link-item-ttl {
		top: 35%;
		font-size: 3rem;
	}
	.foot-link-wrap .footer-link-item01, .foot-link-wrap .footer-link-item02 {
		font-size: 1.4rem;
		width: 60%;
	}
	.copy-wrap ul {
		display: flex;
		justify-content: center;
	}
	.foot-link-item-txt, .footer-link-item01 p, .footer-link-item02 p, .copy-wrap, .copy-wrap a {
		font-size: 1.4rem;
	}
	.footer-nav ul li {
		margin-bottom: 10px;
	}
	.footer-nav ul li a {
		font-size: 1.4rem;
	}
	.footer-nav ul li .none_link {
		font-size: 1.4rem;
	}
	.footer-nav {
		margin-bottom: 20px;
	}
	.copy-wrap {
		display: flex;
		flex-direction: column-reverse;
		padding-top: 20px;
		border-top: 0.5px solid #fff;
		width: 90%;
		margin: 0 auto;
	}
	.copy-wrap a {
		font-size: 1.2rem;
		margin: 10px;
	}
	.copyrights {
		margin-top: 10px;
	}
}

@media all and (-ms-high-contrast: none) {
	@keyframes fadeUpAnime {
		from {
			opacity: 0;
			transform: translateY(100px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}
.footer-link-item01 {
	position: relative;
	color: #fff;
	padding: 10px 30px;
	display: inline-block;
	text-decoration: none;
	border-radius: 30px;
	outline: none;
	transition: all 0.3s ease-in-out;
	background: linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
	background: -webkit-linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
	width: 70%;
	text-align: center;
	margin-bottom: 10px;
	display: block;
	margin: 10px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-link-item01 p:before {
	content: '';
	background: url(../images/contact-icon.png) no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}
.footer-link-item01 p {
	text-align: center;
}
.footer-link-item01:hover {
	background: #333;
	color: #fff;
	border-color: transparent;
	opacity: 1;
}
.footer-link-item01::before, .footer-link-item01::after {
	content: '';
	position: absolute;
	border: solid #fff;
	width: 0;
	height: 0;
	transition: all 0.3s ease-in-out;
}
.footer-link-item01::before {
	top: 3px;
	left: 6px;
	border-width: 0;
	border-radius: 30px 0 0 0;
}
.footer-link-item01::after {
	bottom: 3px;
	right: 6px;
	border-width: 0;
	border-radius: 0 0 30px 0;
}
.footer-link-item01:hover::before, .footer-link-item01:hover::after {
	width: calc(10% + 11px);
	height: calc(10% + 11px);
	border-color: #fff;
}
.footer-link-item01:hover::before {
	border-width: 1px 0 0 1px;
}
.footer-link-item01:hover::after {
	border-width: 0 1px 1px 0;
}
.footer-link-item02 {
	position: relative;
	color: #fff;
	border: 1px solid #fff;
	padding: 10px 30px;
	display: inline-block;
	text-decoration: none;
	border-radius: 30px;
	outline: none;
	transition: all 0.3s ease-in-out;
	width: 70%;
	text-align: center;
	margin-bottom: 10px;
	background: #333;
	display: block;
	margin: 10px auto;
}
.footer-link-item02 p {
	text-align: center;
}
.footer-link-item02 p:before {
	content: '';
	background: url(../images/download-icon.png) no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}
.footer-link-item02:hover {
	background: #333;
	color: #fff;
	border-color: transparent;
	opacity: 1;
}
.footer-link-item02::before, .footer-link-item02::after {
	content: '';
	position: absolute;
	border: solid #fff;
	width: 0;
	height: 0;
	transition: all 0.3s ease-in-out;
}
.footer-link-item02::before {
	top: 3px;
	left: 6px;
	border-width: 0;
	border-radius: 30px 0 0 0;
}
.footer-link-item02::after {
	bottom: 3px;
	right: 6px;
	border-width: 0;
	border-radius: 0 0 30px 0;
}
.footer-link-item02:hover::before, .footer-link-item02:hover::after {
	width: calc(10% + 11px);
	height: calc(10% + 11px);
	border-color: #fff;
}
.footer-link-item02:hover::before {
	border-width: 1px 0 0 1px;
}
.footer-link-item02:hover::after {
	border-width: 0 1px 1px 0;
}
.more-btn {
	position: relative;
	color: #fff!important;
	border: 1px solid #fff;
	padding: 10px 30px;
	display: inline-block;
	text-decoration: none;
	border-radius: 30px;
	outline: none;
	transition: all 0.3s ease-in-out;
	background: linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
	background: -webkit-linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
	width: 100%;
	text-align: center;
}
.more-btn p {
	text-align: center;
	font-size: min(1vw, 18px);
	letter-spacing: .2rem;
	align-items: center;
	display: inline-flex;
}
.more-btn p:before {
	content: '';
	background: url(../images/contact-icon.png) no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}
.more-btn:hover {
	background: #333;
	color: #fff;
	border-color: transparent;
	opacity: 1;
}
.more-btn::before, .more-btn::after {
	content: '';
	position: absolute;
	border: solid #fff;
	width: 0;
	height: 0;
	transition: all 0.3s ease-in-out;
}
.more-btn::before {
	top: 3px;
	left: 6px;
	border-width: 0;
	border-radius: 30px 0 0 0;
}
.more-btn::after {
	bottom: 3px;
	right: 6px;
	border-width: 0;
	border-radius: 0 0 30px 0;
}
.more-btn:hover::before, .more-btn:hover::after {
	width: calc(10% + 11px);
	height: calc(10% + 11px);
	border-color: #fff;
}
.more-btn:hover::before {
	border-width: 1px 0 0 1px;
}
.more-btn:hover::after {
	border-width: 0 1px 1px 0;
}

.more-other-btn {
	position: relative;
	color: #fff!important;
	border: 1px solid #fff;
	padding: 10px 30px;
	display: inline-block;
	text-decoration: none;
	border-radius: 30px;
	outline: none;
	transition: all 0.3s ease-in-out;
	background: linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
	background: -webkit-linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
	width: 100%;
	text-align: center;
}
.more-other-btn p {
	text-align: center;
	font-size: min(1vw, 18px);
	letter-spacing: .2rem;
	align-items: center;
	display: inline-flex;
}
.more-other-btn p:before {
	content: '';
	background: url(../images/recruit-icon.png) no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}
.more-other-btn:hover {
	background: #333;
	color: #fff;
	border-color: transparent;
	opacity: 1;
}
.more-other-btn::before, .more-other-btn::after {
	content: '';
	position: absolute;
	border: solid #fff;
	width: 0;
	height: 0;
	transition: all 0.3s ease-in-out;
}
.more-other-btn::before {
	top: 3px;
	left: 6px;
	border-width: 0;
	border-radius: 30px 0 0 0;
}
.more-other-btn::after {
	bottom: 3px;
	right: 6px;
	border-width: 0;
	border-radius: 0 0 30px 0;
}
.more-other-btn:hover::before, .more-other-btn:hover::after {
	width: calc(10% + 11px);
	height: calc(10% + 11px);
	border-color: #fff;
}
.more-other-btn:hover::before {
	border-width: 1px 0 0 1px;
}
.more-other-btn:hover::after {
	border-width: 0 1px 1px 0;
}



.more-btn02 {
	position: relative;
	color: #fff;
	border: 1px solid #fff;
	padding: 10px 30px;
	display: inline-block;
	text-decoration: none;
	border-radius: 30px;
	outline: none;
	transition: all 0.3s ease-in-out;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	background: #333;
}
.more-btn02 p:before {
	content: '';
	background: url(../images/download-icon.png) no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}
.more-btn02 p {
	text-align: center;
}
.more-btn02:hover {
	background: #333;
	color: #fff;
	border-color: transparent;
	opacity: 1;
}
.more-btn02::before, .more-btn02::after {
	content: '';
	position: absolute;
	border: solid #fff;
	width: 0;
	height: 0;
	transition: all 0.3s ease-in-out;
}
.more-btn02::before {
	top: 3px;
	left: 6px;
	border-width: 0;
	border-radius: 30px 0 0 0;
}
.more-btn02::after {
	bottom: 3px;
	right: 6px;
	border-width: 0;
	border-radius: 0 0 30px 0;
}
.more-btn02:hover::before {
	border-width: 1px 0 0 1px;
}
.more-btn02:hover::after {
	border-width: 0 1px 1px 0;
}
.more-btn02:hover::before, .more-btn02:hover::after {
	width: calc(10% + 11px);
	height: calc(10% + 11px);
	border-color: #fff;
}
.simplebar-track {
	background: #dedede;
	border-radius: 30px;
}
.simplebar-scrollbar::before {
	background: linear-gradient(-90deg, #9CC701 0%, #11540B 100%)!important;
	background: -webkit-linear-gradient(-90deg, #9CC701 0%, #11540B 100%)!important;
	border-radius: 30px;
	opacity: 1;
}
.simplebar-scrollbar.simplebar-visible::before {
	opacity: 1!important;
}

/*pc Layout
===================================*/
@media all and (min-width: 901px) {
	.footer-bg a {
		font-size: min(.9vw, 15px);
	}
	.footer-nav .none_link {
		font-size: min(.9vw, 15px);
		cursor: default;
	}
}

/*sp Layout
===================================*/
@media all and (max-width: 900px) {
	.footer-link-item01, .footer-link-item02 {
		width: 70%;
		padding: 10px 0;
	}
	.footer-bg {
		position: relative;
	}
	.footer-logo-bg.spElement {
		position: absolute;
		top: 50px;
		width: 25%;
		right: 0;
	}
	li.develop-core {
		margin-left: 20px;
	}
	li.services-core {
		margin-left: 20px;
	}
	li.technology-core {
		margin-left: 20px;
	}
	.more-btn p {
		font-size: 1.4rem;
	}
	#header #global_nav > ul > li a.more-btn, #header #global_nav > ul > li a.more-btn02 {
		padding: 10px 0;
	}
	.more-other-btn p {
		font-size: 1.4rem;
	}
	#header #global_nav > ul > li a.more-other-btn, #header #global_nav > ul > li a.more-btn02 {
		padding: 10px 0;
	}
	.more-btn02 p {
		font-size: 1.4rem;
	}
}
/*==================================================
背景色が伸びて出現
===================================*/

.bgextend {
	animation-name: bgextendAnimeBase;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity: 0;
}
 @keyframes bgextendAnimeBase {
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}
/*中の要素*/
.bgappear {
	animation-name: bgextendAnimeSecond;
	animation-duration: 1s;
	animation-delay: 0.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes bgextendAnimeSecond {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*左から右*/
.bgLRextend::before {
	animation-name: bgLRextendAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #333;/*伸びる背景色の設定*/
	top: 0;
}
@keyframes bgLRextendAnime {
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}
/*右から左*/
.bgRLextend::before {
	animation-name: bgRLextendAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #333;/*伸びる背景色の設定*/
	top: 0;
	left: 0;
}
@keyframes bgRLextendAnime {
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger, .bgLRextendTrigger {
	opacity: 0;
}

@media (max-width: 1240px) and (min-width: 901px) {
	#header #global_nav > ul > li {
		margin-right: 16px;
	}
	header {
		width: 15%;
	}
	.head-contact {
		width: 150px!important;
	}
	#header #global_nav .second_nav li a{
		font-size: 1.2rem!important;
	}
	#header #global_nav .second_nav li{
		padding-left: 550px;
	}
	#header #global_nav .second_nav_services li {
		padding-left: 0;
	}
	#header #global_nav .second_nav li a{
		line-height: 40px!important;
		height: 40px!important;
	}
}

@media screen and (min-width:901px) and ( max-width:1024px) {
	footer {
		flex-wrap: wrap;
	}
	.footer-nav {
		width: 68%;
	}
	.footer-link-wrap {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	.footer-link-item01, .footer-link-item02 {
		width: 38%;
	}
	.foot-link-item01, .foot-link-item02 {
		height: 260px;
	}
	#header #global_nav > ul > li {
		margin-right: 10px;
	}
	#header #global_nav > ul > li:nth-child(7) {
		margin-right: 10px;
	}
	/* .header-top {
		width: 10%;
	} */
	#header .header_inner {
		width: 90%;
	}

	.head-contact {
		width: 120px!important;
	}
	.header-wrap, #header {
		height: 100px;
	}
	.breadcrumb {
		margin-top: -20px!important;
	}
	nav#global_nav ul li:not(:nth-child(8)):not(:nth-child(9)) a::after {
	bottom: 30px;
	}
	.breadcrumb{
			right: 0;
			margin-left: 0;
	}
	#header #grobal_nav .second_nav {
		top: 100px;
	}
	#header #global_nav .second_nav {
		top: 100px;
	}
	@media all and (min-width: 899px) {
    .headsp-contact {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: 16px;
    }
    .headsp-contact p {
        font-size: 1.2rem;
        color: #fff;
    }
	}
}
@media screen and (min-width:769px) and ( max-width:1500px) {
    
}

/*Tablet Layout
===================================*/
@media all and (min-width: 899px) {
	.tabElement {
		display: none;
	}
}