@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700);
@import url(https://fonts.googleapis.com/css?family=Oswald:300,400);


html {
	font-size: 62.5%;
	font-family: "Noto Sans Japanese", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	font-weight: 300;
	font-feature-settings: "palt";
	font-kerning: normal;
	line-height: 1;
}

body {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	background-color: rgba(243, 243, 243, 1);
	color: rgba(0, 0, 0, .75);
	text-align: left;
	text-rendering: optimizeLegibility;
	font-feature-settings: "palt"1;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-kerning: normal;
	font-kerning: normal;
}

a {
	color: rgba(0, 0, 0, 1);
	text-decoration: underline;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

a:hover {
	text-decoration: none;
}

a,
input,
select,
textarea,
button,
*:before,
*:after {
	backface-visibility: hidden;
	-webkit-transition: all 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
	transition: all 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
	-webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
	transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}

input[type=submit],
button {
	border-radius: 0;
	-webkit-appearance: none;
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

table {
	border-collapse: collapse;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

object {
	pointer-events: none;
}

.ready .header,
.ready #state {
	opacity: 0;
	visibility: hidden;
}

a.ban {
	cursor: default;
}

label {
	cursor: pointer;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

::selection {
	background: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

::-moz-selection {
	background: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

#state {
	width: 100%;
	background-color: rgba(0, 0, 0, 1);
	transition: opacity 1000ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.open #state {
	position: fixed;
}


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


@media screen and (min-width: 681px),
print {

	body {
		margin-top: 0 !important;
		position: relative !important;
	}

}


/*------------------------------------*/


.header {
	width: 100%;
	padding: 0 5vw;
	display: -webkit-flex;
	display: flex;
	background-color: rgba(243, 243, 243, 1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	box-sizing: border-box;
	transition: all 300ms ease;
	-webkit-align-items: center;
	align-items: center;
}

.scroll .header {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}

.header:hover {
	background-color: rgba(255, 255, 255, 1) !important;
}

.header.homehead {
	background-color: transparent;
}

.header.homehead:after {
	opacity: 0;
}

.header:after {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: rgba(0, 0, 0, .1);
	position: absolute;
	left: 0;
	bottom: 0;
}

.header__logo {
	width: calc(80px + 2vw);
	max-width: 112px;
	position: relative;
}

.header__logo .bk {
	opacity: 1;
	transition: all 300ms ease;
}

.header__logo .wt {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 300ms ease;
}

.header:hover .header__logo .bk {
	opacity: 1 !important;
}

.header:hover .header__logo .wt {
	opacity: 0 !important;
}

.header.homehead .header__logo .bk {
	opacity: 0;
}

.header.homehead .header__logo .wt {
	opacity: 1;
}

.g-nav__list,
.g-nav__list__item,
.g-nav__list__wrap,
.g-sub-nav__list,
.g-sub-nav__list__item {
	position: relative;
}

.g-nav__list__anchor {
	display: block;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
}

.g-sub-nav__list__anchor {
	line-height: 1.4;
	text-decoration: none;
}

.header:hover .g-nav__list__anchor {
	color: rgba(0, 0, 0, 1) !important;
}

.header.homehead .g-nav__list__anchor {
	color: rgba(255, 255, 255, 1);
}


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

	.header {
		height: 55px;
	}

	.g-nav {
		width: 100%;
		height: calc(100% - 50px);
		overflow: hidden;
		background-color: rgba(243, 243, 243, 1);
		overflow-y: scroll;
		position: fixed;
		top: 55px;
		left: 0;
		opacity: 0;
		pointer-events: none;
		-webkit-overflow-scrolling: touch;
		-webkit-transition: opacity 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
		transition: opacity 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	}

	.open-nav .g-nav {
		opacity: 1;
		pointer-events: auto;
	}

	.g-nav__list:before,
	.g-nav__list__item:after,
	.g-sub-nav__list:before,
	.g-sub-nav__list__item:after {
		content: "";
		width: 100%;
		height: 1px;
		display: block;
		background-color: rgba(0, 0, 0, .1);
		position: absolute;
		left: 0;
	}

	.g-sub-nav__list__item:last-child:after {
		display: none;
	}

	.g-nav__list:before {
		top: 0;
	}

	.g-nav__list__item:after {
		bottom: 0;
	}

	.g-nav__list__anchor,
	.g-sub-nav__list__anchor {
		padding: 0 5vw;
		display: -webkit-flex;
		display: flex;
		pointer-events: none;
		-webkit-align-items: center;
		align-items: center;
	}

	.open-nav .g-nav__list__anchor,
	.open-nav .g-sub-nav__list__anchor {
		pointer-events: auto;
	}

	.g-nav__list__wrap .g-nav__list__anchor {
		pointer-events: none !important;
	}

	.g-nav__list__wrap:before,
	.g-nav__list__wrap:after {
		content: "";
		width: 15px;
		height: 1px;
		display: block;
		background-color: rgba(150, 150, 150, 1);
		position: absolute;
		top: 30px;
		right: 4vw;
		transform-origin: center;
		transition: all 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
	}

	.g-nav__list__wrap:after {
		transform: rotate3d(0, 0, 1, -90deg);
	}

	.g-nav__list__wrap.open-sub-nav:after {
		transform: rotate3d(0, 0, 1, 0);
	}

	.g-nav__list__anchor {
		height: 60px;
		font-size: 1.6rem;
	}

	.g-sub-nav {
		height: 0;
		overflow: hidden;
		-webkit-transition: height 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
		transition: height 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	}

	.g-sub-nav__title-en {
		display: none;
	}

	.g-sub-nav__title-index {
		width: 100%;
		display: block;
		position: relative;
	}

	.g-sub-nav__title-index:before {
		content: "";
		width: 100%;
		height: 1px;
		display: block;
		background-color: rgba(0, 0, 0, .1);
		position: absolute;
		top: 0;
		left: 0;
	}

	.g-sub-nav__title-index a {
		height: 50px;
		padding-left: calc(10vw + 20px) !important;
		display: -webkit-flex;
		display: flex;
		text-decoration: none;
		font-size: 1.4rem;
		line-height: 1.4;
		-webkit-align-items: center;
		align-items: center;
	}

	.g-sub-nav__list__item a {
		height: 50px;
		padding-left: calc(10vw + 20px) !important;
		padding-left: 10vw;
		font-size: 1.4rem;
	}

	.g-sub-nav__list__item a:before,
	.g-sub-nav__title-index a:before {
		left: 10vw !important;
	}

	.g-sub-nav__list__item a:after,
	.g-sub-nav__title-index a:after {
		left: 10vw !important;
	}

	.g-sub-nav__pickup,
	.g-sub-nav__service {
		display: none;
	}

	#menu {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
	}

	.menu__icon {
		width: 55px;
		height: 55px;
		display: -webkit-flex;
		display: flex;
		position: relative;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-direction: column;
		flex-direction: column;
	}

	.menu__icon span,
	.menu__icon:before,
	.menu__icon:after {
		width: 20px;
		height: 2px;
		display: block;
		background-color: rgba(0, 0, 0, 1);
		position: relative;
		transition: all 300ms ease;
	}

	.header:hover .menu__icon span,
	.header:hover .menu__icon:before,
	.header:hover .menu__icon:after {
		background-color: rgba(0, 0, 0, 1) !important;
	}

	.header.homehead .menu__icon span,
	.header.homehead .menu__icon:before,
	.header.homehead .menu__icon:after {
		background-color: rgba(255, 255, 255, 1);
	}

	.menu__icon:before,
	.menu__icon:after {
		content: "";
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}

	.menu__icon:before {
		top: -5px;
		animation: menu-top-bk 600ms cubic-bezier(0.215, 0.61, 0.355, 1) 1 forwards;
	}

	.menu__icon:after {
		top: 5px;
		animation: menu-bottom-bk 600ms cubic-bezier(0.215, 0.61, 0.355, 1) 1 forwards;
	}

	.open-nav .menu__icon span {
		opacity: 0;
	}

	.open-nav .menu__icon:before {
		animation: menu-top 600ms cubic-bezier(0.215, 0.61, 0.355, 1) 1 forwards;
	}

	.open-nav .menu__icon:after {
		animation: menu-bottom 600ms cubic-bezier(0.215, 0.61, 0.355, 1) 1 forwards;
	}

	@keyframes menu-top {
		0% {
			transform: translate3d(0, 0, 0);
		}

		50% {
			transform: translate3d(0, 7px, 0);
		}

		100% {
			transform: translate3d(0, 7px, 0) rotate3d(0, 0, 1, 45deg);
		}
	}

	@keyframes menu-bottom {
		0% {
			transform: translate3d(0, 0, 0);
		}

		50% {
			transform: translate3d(0, -7px, 0);
		}

		100% {
			transform: translate3d(0, -7px, 0) rotate3d(0, 0, -1, 45deg);
		}
	}

	@keyframes menu-top-bk {
		0% {
			transform: translate3d(0, 7px, 0) rotate3d(0, 0, 1, 45deg);
		}

		50% {
			transform: translate3d(0, 7px, 0);
		}

		100% {
			transform: translate3d(0, 0, 0);
		}
	}

	@keyframes menu-bottom-bk {
		0% {
			transform: translate3d(0, -7px, 0) rotate3d(0, 0, -1, 45deg);
		}

		50% {
			transform: translate3d(0, -7px, 0);
		}

		100% {
			transform: translate3d(0, 0, 0);
		}
	}

	@media only screen and (orientation : landscape) {}

}


@media screen and (min-width: 801px),
print {

	.header {
		height: 80px;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.g-nav__list {
		display: -webkit-flex;
		display: flex;
	}

	.g-nav__list__item {
		/* 		margin-left: 2vw; */
		position: relative;
	}

	.g-nav__list__item:first-child {
		margin-left: 0;
	}

	.g-nav__list__item:after {
		content: "";
		width: 80%;
		height: 4px;
		display: block;
		background: -webkit-linear-gradient(90deg, #80c31c, #3fb092, #4673b4);
		background: -ms-linear-gradient(90deg, #80c31c, #3fb092, #4673b4);
		background: linear-gradient(90deg, #80c31c, #3fb092, #4673b4);
		position: absolute;
		bottom: 0;
		left: 10%;
		opacity: .8;
		transform: scaleY(0);
		transform-origin: left;
		transition: all 0ms linear;
		transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.g-nav__list__item:hover:after {
		transform: scaleY(1);
	}

	.g-nav__list__anchor {
		padding: 0 2vw;
		height: 80px;
		display: -webkit-flex;
		display: flex;
		font-size: 1.5rem;
		-webkit-align-items: center;
		align-items: center;
	}

	.g-sub-nav {
		width: 250px;
		height: auto !important;
		margin-left: -125px;
		padding-top: 5px;
		position: absolute;
		top: 75px;
		left: 50%;
		z-index: 1;
		box-sizing: border-box;
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		transition: all 250ms ease;
	}

	.g-nav__list__item:hover .g-sub-nav {
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
	}

	/*
	.g-sub-nav:after {
		content: "";
		width: 100%;
		height: 100%;
		display: block;
		background-color: rgba(255, 255, 255, 1);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		transform-origin: left;
	}
*/

	.g-nav__list__item:hover .g-sub-nav:after {
		opacity: 1;
	}

	.g-sub-nav__wrap {
		/* 		max-width: calc(1000px + (5vw * 2)); */
		/* 		min-height: 450px; */
		margin: 0 auto;
		display: -webkit-flex;
		display: flex;
		background-color: rgba(0, 0, 0, .9);
		border-radius: 0 0 5px 5px;
		position: relative;
		z-index: 1;
		box-sizing: border-box;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.g-sub-nav__wrap.service {
		padding-top: 0;
		padding-bottom: 0;
	}

	.g-sub-nav__title,
	.g-sub-nav__list,
	.g-sub-nav__pickup {
		width: calc(100% / 3);
		/* 		min-height: calc(450px - (40px * 2)); */
		position: relative;
		box-sizing: border-box;
		-webkit-flex-grow: 1;
		flex-grow: 1;
	}

	/*
	.g-sub-nav__title:after,
	.g-sub-nav__list:after {
		content: "";
		width: 1px;
		height: 100%;
		display: block;
		background-color: rgba(0, 0, 0, .1);
		position: absolute;
		top: 0;
		right: 0;
	}
*/

	/*
	.g-sub-nav__title {
		padding-right: 3vw;
		opacity: 0;
		transform: translateY(-10px);
		transition: all 250ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
*/

	.service .g-sub-nav__title {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	/*
	.g-nav__list__item:hover .g-sub-nav__title {
		opacity: 1;
		transform: translateY(0);
		transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1) 200ms;
	}
*/

	.g-sub-nav__title-en {
		margin-bottom: 10px;
		display: block;
		font-size: 5rem;
		line-height: 1.2;
	}

	.g-sub-nav__title-index a {
		font-size: 1.4rem;
		line-height: 1.4;
		text-decoration: none;
	}

	.g-sub-nav__list {
		/* 		padding: 0 3vw; */
		position: relative;
		/*
		opacity: 0;
		transform: translateY(-10px);
		transition: all 250ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
*/
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	/*
	.service .g-sub-nav__list {
		display: none;
	}
*/

	/*
	.g-nav__list__item:hover .g-sub-nav__list {
		opacity: 1;
		transform: translateY(0);
		transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1) 240ms;
	}
*/

	.g-sub-nav__list__item {
		position: relative;
		/* 		margin-bottom: 5px; */
	}

	.g-sub-nav__list__item:after {
		content: "";
		width: 100%;
		height: 1px;
		display: block;
		background-color: rgba(255, 255, 255, .1);
		position: absolute;
		left: 0;
		bottom: 0;
	}

	.g-sub-nav__list__item:last-child:after {
		display: none;
	}

	.g-sub-nav__list__anchor {
		height: 60px;
		padding: 0 25px 0 40px !important;
		display: -webkit-flex;
		display: flex;
		background-color: rgba(255, 255, 255, 0);
		position: relative;
		font-size: 1.4rem;
		color: rgba(255, 255, 255, 1);
		box-sizing: border-box;
		-webkit-align-items: center;
		align-items: center;
	}

	.g-sub-nav__list__anchor:hover {
		background-color: rgba(255, 255, 255, .1);
	}

	.arrow .g-sub-nav__list__item a:before {
		left: 20px;
	}

	.arrow .g-sub-nav__list__item a:after {
		left: 20px;
	}

	.g-sub-nav__pickup {
		padding-left: 3vw;
		/*
		opacity: 0;
		transform: translateY(-10px);
		transition: all 250ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
*/
	}

	/*
	.g-nav__list__item:hover .g-sub-nav__pickup {
		opacity: 1;
		transform: translateY(0);
		transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1) 280ms;
	}
*/

	.g-sub-nav__pickup__item {
		margin-bottom: 20px;
	}

	.g-sub-nav__pickup__item a {
		font-size: 1.4rem;
		line-height: 1.8;
		text-decoration: none;
	}

	.g-sub-nav__pickup__image {
		margin-bottom: 5px;
	}

	.g-sub-nav__service {
		width: calc((100% / 3) * 2);
		height: 450px;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-grow: 2;
		flex-grow: 2;
		/*
		opacity: 0;
		transform: translateY(-10px);
		transition: all 250ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
*/
	}

	/*
	.g-nav__list__item:hover .g-sub-nav__service {
		opacity: 1;
		transform: translateY(0);
		transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1) 280ms;
	}
*/

	.g-sub-nav__service__item,
	.g-sub-nav__service__item a {
		display: -webkit-flex;
		display: flex;
	}

	.g-sub-nav__service__item {
		width: calc(100% / 3);
		margin-right: 1px;
		-webkit-flex: 1;
		flex: 1;
	}

	.g-sub-nav__service__item a {
		width: 100%;
		background-color: rgba(0, 0, 0, 1);
		position: relative;
		text-decoration: none;
		color: rgba(255, 255, 255, 1);
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
	}

	.g-sub-nav__service__item a:before,
	.g-sub-nav__service__item a:after {
		content: "";
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
	}

	.g-sub-nav__service__item a:before {
		background-position: center center;
		background-size: cover;
		z-index: 0;
		opacity: .7;
	}

	.g-sub-nav__service__item.electrical a:before {
		background-image: url(../images/home/img_service_electrical.jpg);
	}

	.g-sub-nav__service__item.communicate a:before {
		background-image: url(../images/home/img_service_communicate.jpg);
	}

	.g-sub-nav__service__item.software a:before {
		background-image: url(../images/home/img_service_software.jpg);
	}

	.g-sub-nav__service__item a:after {
		z-index: 1;
		opacity: 0;
	}

	.g-sub-nav__service__item a:hover:after {
		opacity: .6;
	}

	.g-sub-nav__service__item.electrical a:after {
		background: -webkit-linear-gradient(180deg, #80c31c, #c3c11c);
		background: linear-gradient(180deg, #80c31c, #c3c11c);
	}

	.g-sub-nav__service__item.communicate a:after {
		background: -webkit-linear-gradient(180deg, #0cae83, #27d5db);
		background: linear-gradient(180deg, #0cae83, #27d5db);
	}

	.g-sub-nav__service__item.software a:after {
		background: -webkit-linear-gradient(180deg, #1a60c5, #33a4f3);
		background: linear-gradient(180deg, #1a60c5, #33a4f3);
	}

	.g-sub-nav__service__title {
		position: relative;
		z-index: 2;
		font-size: 1.4rem;
		font-weight: 600;
		line-height: 1.8;
		text-align: center;
	}

	.g-sub-nav__service__title .en {
		margin-bottom: 10px;
		display: block;
		font-size: 2.2rem;
		line-height: 1.2;
	}

	#menu {
		display: none;
	}

}


/*------------------------------------*/


.footer {
	padding: calc(20px + 2vw) 5vw;
	background-color: rgba(0, 0, 0, .08);
}

.foorer-profile__logo {
	width: calc(80px + 2vw);
	max-width: 112px;
}

.foorer-profile__logo-exeo {
	width: calc(60px + 2vw);
	max-width: 86px;
}

.foorer-profile__txt--map {
	text-decoration: none;
}

.footer__nav__name a {
	font-size: 1.4rem;
	line-height: 1.4;
	font-weight: 500;
	text-decoration: none;
}

.footer__sub-nav__anchor {
	font-size: 1.2rem;
	line-height: 1.4;
	text-decoration: none;
	color: rgba(0, 0, 0, .75);
}

.footer__sub-nav__anchor:hover {
	text-decoration: underline;
}

.footer__copyright {
	font-size: 1.1rem;
}

.footer__other {
	margin-top: calc(20px + 2vw);
	text-align: right;
}

.footer__sdgs {
	margin-bottom: 40px;
	text-align: center;
}

.footer__sdgs figure {
	width: 100px;
	margin: 0 auto;
	margin-bottom: 10px;
}

.footer__sdgs span {
	display: block;
	font-size: 1.1rem;
	line-height: 1.6;
}



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

	.foorer-profile__logo {
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.foorer-profile__logo-exeo {
		margin: 0 auto;
		margin-top: 10px;
	}

	.foorer-profile__txt {
		font-size: 1.2rem;
		line-height: 1.6;
		text-align: center;
	}

	.foorer-profile__txt--map {
		margin: 0 auto;
		display: table;
	}

	.footer__nav__item {
		display: none;
	}

	.footer__nav__item.other-nav {
		display: block;
	}

	.other-nav .footer__sub-nav {
		height: 60px;
		margin: 30px 0;
		display: -webkit-flex;
		display: flex;
		border-top: 1px solid rgba(0, 0, 0, .15);
		border-bottom: 1px solid rgba(0, 0, 0, .15);
		box-sizing: border-box;
		-webkit-align-items: center;
		align-items: center;
	}

	.other-nav .footer__sub-nav__item {
		width: 50%;
		padding: 0 10px;
		text-align: center;
		box-sizing: border-box;
	}

	.footer__copyright {
		display: block;
		text-align: center;
	}

	.footer__sdgs figure {
		width: 80px;
	}

}


@media screen and (min-width: 681px),
print {

	.footer__wrap {
		display: -webkit-flex;
		display: flex;
	}

	.footer__wrap.foorer-profile {
		padding-bottom: calc(20px + 2vw);
		border-bottom: 1px solid rgba(0, 0, 0, .15);
		-webkit-align-items: center;
		align-items: center;
	}

	.footer__wrap.foorer-controle {
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.foorer-profile__logo {
		margin-right: 30px;
	}

	.foorer-profile__logo-exeo {
		margin-left: auto;
	}

	.foorer-profile__txt {
		font-size: 1.3rem;
		line-height: 1.8;
	}

	.foorer-profile__txt--map {
		margin-left: 20px;
	}

	.footer__nav {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.footer__nav__item {
		width: 140px;
		margin-top: calc(20px + 2vw);
	}

	.footer__nav__name {
		margin-bottom: 15px;
		display: block;
	}

	.footer__sub-nav__item {
		margin: 8px 0;
		margin-left: 20px;
	}

	.footer__sub-nav__item:first-child {
		margin-top: 0;
	}

	.footer__copyright {
		width: 200px;
		margin-top: calc(20px + 2vw);
		text-align: right;
		-webkit-flex: 0 0 200px;
		flex: 0 0 200px;
	}

}


/*------------------------------------*/


.arrow a,
a .arrow {
	padding-left: 20px;
	position: relative;
}

.arrow a:before,
.arrow a:after,
a .arrow:before,
a .arrow:after {
	content: "";
	margin-top: -7px;
	display: block;
	position: absolute;
	top: 50%;
}

.arrow a:before,
a .arrow:before {
	width: 15px;
	height: 15px;
	background-image: url(../images/common/icon_arrow_right_green.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 9px auto;
	left: 0;
	position: absolute;
}

.arrow a:after,
a .arrow:after {
	width: 15px;
	height: 15px;
	background-color: transparent;
	border: 1px solid rgba(67, 203, 171, 1);
	border-radius: 50%;
	left: 0;
	box-sizing: border-box;
}

.arrow a:hover:before,
a:hover .arrow:before {
	animation: arrow-anime 500ms cubic-bezier(0.215, 0.61, 0.355, 1) 1 forwards;
}


@keyframes arrow-anime {
	0% {
		background-position: center center;
	}

	50% {
		background-position: 250% center;
	}

	51% {
		background-position: -100% center;
	}

	100% {
		background-position: center center;
	}
}


.icon:before {
	content: "";
	margin-right: 5px;
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.icon.icon__map:before {
	width: 10px;
	height: 15px;
	background-image: url(../images/common/icon_map.svg);
}


a.btn,
a .btn {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	position: relative;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	color: rgba(0, 194, 149, 1);
	-webkit-transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.software a.btn,
.software a .btn {
	color: rgba(56, 134, 199, 1);
}

a.btn.w-btn,
a .btn.w-btn {
	color: rgba(255, 255, 255, 1);
}

a.btn.g-btn,
a .btn.g-btn {
	color: rgba(0, 0, 0, 1);
}

a.btn:hover:hover,
a:hover .btn {
	color: rgba(255, 255, 255, 1);
}

a.btn.w-btn:hover:hover,
a:hover .btn.w-btn {
	color: rgba(0, 194, 149, 1);
}

a.btn:before,
a .btn:before,
a.btn:after,
a .btn:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	box-sizing: border-box;
	-webkit-transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

a.btn:before,
a .btn:before {
	border: 2px solid rgba(0, 194, 149, .8);
	z-index: 0;
}

.software a.btn:before,
.software a .btn:before {
	border-color: rgba(56, 134, 199, 1);
}

a.btn.w-btn:before,
a .btn.w-btn:before {
	border: 2px solid rgba(255, 255, 255, 1);
}

a.btn.g-btn:before,
a .btn.g-btn:before {
	border: 2px solid rgba(0, 0, 0, .15);
}

a.btn:hover:before,
a:hover .btn:before {
	border-color: rgba(0, 194, 149, 0);
	z-index: 0;
}

a.btn.w-btn:hover::before,
a .btn.w-btn:hover::before {
	border: 2px solid rgba(255, 255, 255, 0);
}

a.btn.g-btn:hover::before,
a .btn.g-btn:hover::before {
	border: 2px solid rgba(0, 0, 0, 0);
}

a.btn:after,
a .btn:after {
	background: -webkit-linear-gradient(135deg, rgba(128, 195, 28, .8), rgba(63, 176, 146, .8), rgba(70, 115, 180, .8));
	background: -ms-linear-gradient(135deg, rgba(128, 195, 28, .8), rgba(63, 176, 146, .8), rgba(70, 115, 180, .8));
	background: linear-gradient(135deg, rgba(128, 195, 28, .8), rgba(63, 176, 146, .8), rgba(70, 115, 180, .8));
	opacity: 0;
}

.software a.btn:after,
.software a .btn:after {
	background: rgba(56, 134, 199, 1);
}

a.btn.w-btn:after,
a .btn.w-btn:after {
	background: none;
	background-color: rgba(255, 255, 255, 1);
	opacity: 0;
}

a.btn:hover:after,
a:hover .btn:after {
	opacity: 1;
}

.btn span {
	position: relative;
	z-index: 1;
}

.gradient__hover__item:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: -webkit-linear-gradient(135deg, rgba(128, 195, 28, .1), rgba(63, 176, 146, .1), rgba(70, 115, 180, .1));
	background: -ms-linear-gradient(135deg, rgba(128, 195, 28, .1), rgba(63, 176, 146, .1), rgba(70, 115, 180, .1));
	background: linear-gradient(135deg, rgba(128, 195, 28, .1), rgba(63, 176, 146, .1), rgba(70, 115, 180, .1));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0;
}

.gradient__hover__item:hover:after {
	opacity: 1;
}


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

	a.btn,
	a .btn {
		max-width: 160px;
		height: 40px;
	}

	a.btn:before,
	a .btn:before,
	a.btn:after,
	a .btn:after {
		border-radius: 20px;
	}

}


@media screen and (min-width: 681px),
print {

	a.btn,
	a .btn {
		max-width: 200px;
		height: 50px;
	}

	a.btn:before,
	a .btn:before,
	a.btn:after,
	a .btn:after {
		border-radius: 25px;
	}

}


/*------------------------------------*/


.en {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	letter-spacing: 0;
}

.serif {
	font-family: "Sawarabi Mincho", "Arapey", "Ryumin Medium KL", "リュウミン M-KL", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	letter-spacing: .1em;
}


.num {
	font-family: "Oswald", sans-serif;
}

.txt-b,
.txt,
.txt-s {
	min-width: 0%;
	margin: calc(10px + 1vw) 0;
	color: rgba(0, 0, 0, .6);
}

.gradient-txt {
	background: -webkit-linear-gradient(135deg, rgba(128, 195, 28, .8), rgba(63, 176, 146, .8), rgba(70, 115, 180, .8));
	background: linear-gradient(135deg, rgba(128, 195, 28, .8), rgba(63, 176, 146, .8), rgba(70, 115, 180, .8));
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}

.gradient-txt.svgtex {
	background: none !important;
}

.sign {
	margin: 40px 0;
	text-align: right;
}

.txt-list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.txt-list li:after {
	content: "、";
}

.txt-list li:last-child:after {
	display: none;
}


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

	.txt-b,
	.txt,
	.txt-s {
		line-height: 1.6;
	}

	.txt-b {
		font-size: 1.5rem;
	}

	.txt {
		font-size: 1.4rem;
	}

	.txt-s {
		font-size: 1.3rem;
	}

}


@media screen and (min-width: 681px),
print {

	.txt-b,
	.txt {
		line-height: 2;
	}

	.txt-b {
		font-size: 1.6rem;
	}

	.txt {
		font-size: 1.5rem;
	}

	.txt-s {
		font-size: 1.4rem;
		line-height: 1.8;
	}

}


/*------------------------------------*/


.pageOpening {
	-webkit-transition: opacity 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: opacity 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.pagetitle,
.pagetitle-index {
	font-weight: 500;
	text-align: center;
	letter-spacing: .3em;
	color: rgba(0, 0, 0, .5);
}

.pagetitle .en,
.pagetitle-index .en {
	margin: 0 auto;
	display: table;
	line-height: 1.2;
	position: relative;
	z-index: 1;
}

.pagetitle .en {
	margin-bottom: 5px;
}

.pagetitle.single {
	margin-top: calc(20px + 2vw);
}

.pagetitle-index {
	margin-bottom: calc(40px + 3vw);
}

.pagetitle-index:before {
	content: "";
	width: 100%;
	height: calc(250px + 30vw);
	max-height: 700px;
	display: block;
	background-position: center center;
	background-size: cover;
	position: relative;
	z-index: 0;
}

.pagetitle-index .pagetitle-index__category {
	margin-bottom: 0 !important;
}

.page-category {
	margin: 0 auto;
	display: table;
	line-height: 1.4;
	text-align: center;
}

.gwrap {
	margin-top: calc(30px + 2vw);
	padding: calc(20px + 5vw) 5vw;
	background: -webkit-linear-gradient(180deg, rgba(70, 115, 180, .1), rgba(63, 176, 146, .1), rgba(128, 195, 28, .1));
	background: -ms-linear-gradient(180deg, rgba(70, 115, 180, .1), rgba(63, 176, 146, .1), rgba(128, 195, 28, .1));
	background: linear-gradient(180deg, rgba(70, 115, 180, .1), rgba(63, 176, 146, .1), rgba(128, 195, 28, .1));
	overflow: hidden;
}

.gwrap.index {
	margin-top: 0;
	padding: 0;
}

.index__wrap {
	padding: 0 5vw;
}

.limit__wrap {
	max-width: 900px;
	margin: 0 auto;
}

.index__txt {
	margin: calc(40px + 3vw) 5vw;
}

.breadcrumbs {
	padding: 0 5vw;
	background-color: rgba(255, 255, 255, 1);
}

.breadcrumbs__list {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-overflow-scrolling: touch;
}

.breadcrumbs__item,
.breadcrumbs__anchor {
	display: -webkit-flex;
	display: flex;
	font-size: 1.2rem;
	line-height: 1.4;
	white-space: nowrap;
	-webkit-align-items: center;
	align-items: center;
}

.breadcrumbs__item:after {
	content: "";
	width: 6px;
	height: 10px;
	margin: 0 10px;
	display: block;
	background-image: url(../images/common/breadcrumbs_icon_arrow.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	opacity: .3;
}

.breadcrumbs__item:last-child:after {
	display: none;
}

.breadcrumbs__home .breadcrumbs__anchor {
	width: 20px;
	height: 20px;
	text-align: center;
}

.breadcrumbs__anchor img {
	width: 10px;
	margin: 0 auto;
}

.pagination {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}

.section__wrap {
	max-width: 900px;
	margin: calc(40px + 3vw) auto;
}

.section__wrap:first-child {
	margin-top: 0;
}

.section__wrap:last-child {
	margin-bottom: 0;
}

.section__title {
	margin-bottom: calc(20px + 2vw);
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.section__title .en {
	margin: 0 auto;
	display: table;
}

.section__title .en:after {
	content: "";
	width: 100%;
	height: 1px;
	margin: 10px 0;
	display: block;
	background-color: rgba(0, 0, 0, .1);
}

.sub-section__wrap {
	margin: calc(40px + 4vw) 0;
}

.entry .sub-section__wrap:first-child {
	margin-top: 0;
}

.sub-section__title {
	margin-bottom: calc(10px + 1vw);
	padding-left: 15px;
	position: relative;
	font-weight: 500;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.sub-section__title:before {
	content: "";
	width: 5px;
	height: 100%;
	display: block;
	background: -webkit-linear-gradient(180deg, rgba(70, 115, 180, .8), rgba(63, 176, 146, .8), rgba(128, 195, 28, .8));
	background: -ms-linear-gradient(180deg, rgba(70, 115, 180, .8), rgba(63, 176, 146, .8), rgba(128, 195, 28, .8));
	background: linear-gradient(180deg, rgba(70, 115, 180, .8), rgba(63, 176, 146, .8), rgba(128, 195, 28, .8));
	position: absolute;
	top: 0;
	left: 0;
}

.sub-wrap__title {
	margin-bottom: 10px;
	font-weight: 500;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.sub-wrap__txt {
	margin-top: 0;
}

.txt-title {
	margin-bottom: 20px;
	font-weight: 500;
	color: rgba(0, 0, 0, 1);
}

.notice {
	font-size: 1.2rem;
	line-height: 1.8;
}

span.notice {
	display: block;
}

span.notice,
.notice li {
	padding-left: 1em;
	text-indent: -1em;

}

span.notice:before,
.notice li:before {
	content: "※";
}

.numberlist {
	padding-left: 1.5em;
	list-style: decimal outside;
}

.numberlist__item {
	line-height: 1.8;
}

.low .numberlist__item {
	line-height: 1.6;
}


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

	#contents {
		padding-top: 55px;
	}

	.pagetitle-index {
		font-size: 1.6rem;
	}

	.pagetitle-index .en {
		margin-bottom: 10px;
		font-size: 5rem;
	}

	.pagetitle-index:before {
		margin-bottom: -30px;
	}

	.recruit-pagetitle-index:before {
		margin-bottom: -60px;
	}

	.pagetitle-index .pagetitle-index__category {
		font-size: 2rem;
	}

	.pagetitle {
		font-size: 1.5rem;
	}

	.pagetitle.news-title {
		margin-top: 20px;
	}

	.pagetitle .en {
		font-size: 4rem;
	}

	.page-category {
		margin-top: 20px;
		font-size: 1.8rem;
	}

	.breadcrumbs__list {
		height: 40px;
	}

	.tbr {
		display: none;
	}

	.section__title {
		font-size: 2.2rem;
	}

	.sub-section__title {
		font-size: 1.8rem;
	}

	.sub-wrap__title {
		font-size: 1.5rem;
	}

	.numberlist__item,
	.low .numberlist__item {
		margin: 10px 0;
		font-size: 1.4rem;
	}

	.high .numberlist__item {
		font-size: 1.5rem;
	}

	.txt-title {
		font-size: 1.5rem;
	}

}


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

	.breadcrumbs__list {
		overflow-x: scroll;
	}

}


@media screen and (min-width: 681px),
print {

	#contents {
		padding-top: 80px;
	}

	.pagetitle-index {
		font-size: 2.5rem;
	}

	.pagetitle-index .en {
		margin-bottom: 10px;
		font-size: 11rem;
	}

	.pagetitle-index .pagetitle-index__category {
		font-size: 4rem;
	}

	.pagetitle-index:before {
		margin-bottom: -70px;
	}

	.recruit-pagetitle-index:before {
		margin-bottom: -120px;
	}

	.pagetitle {
		font-size: 1.8rem;
	}

	.pagetitle.news-title {
		margin-top: 40px;
	}

	.pagetitle .en {
		font-size: 8rem;
	}

	.page-category {
		margin-top: 40px;
		font-size: 3rem;
	}

	.index__txt {
		text-align: center;
	}

	.breadcrumbs__list {
		height: 60px;
	}

	.section__title {
		font-size: 3rem;
	}

	.sub-section__title {
		font-size: 2rem;
	}

	.sub-wrap__title {
		font-size: 1.6rem;
	}

	.numberlist__item {
		margin: 20px 0;
		font-size: 1.5rem;
	}

	.high .numberlist__item {
		font-size: 1.6rem;
	}

	.low .numberlist__item {
		font-size: 1.4rem;
	}

	.txt-title {
		font-size: 1.6rem;
	}

}


/*------------------------------------*/


.service__list__item {
	position: relative;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 1);
}

.service__list__item:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: .6;
	transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.service__list__item:hover:before {
	opacity: .5;
	transform: scale3d(1.1, 1.1, 1.1);
	-webkit-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}

.service__list__item:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.service__list__item:hover:after {
	opacity: .7;
}

.service__list__item.service-electrical:after {
	background: -webkit-linear-gradient(180deg, #80c31c, #c3c11c);
	background: linear-gradient(180deg, #80c31c, #c3c11c);
}

.service__list__item.service-communicate:after {
	background: -webkit-linear-gradient(180deg, #0cae83, #27d5db);
	background: linear-gradient(180deg, #0cae83, #27d5db);
}

.service__list__item.service-software:after {
	background: -webkit-linear-gradient(180deg, #1a60c5, #33a4f3);
	background: linear-gradient(180deg, #1a60c5, #33a4f3);
}

.service__list__anchor {
	width: 100%;
	position: relative;
	z-index: 2;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
}

.service__list__title {
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
	transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.service__list__title .en {
	display: block;
	line-height: 1.1;
}

.service__list__txt {
	width: 100%;
	max-width: 300px;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: center;
}

.service__list__btn {
	color: rgba(255, 255, 255, 1) !important;
}

.service__list__btn:before {
	border: 2px solid rgba(255, 255, 255, 1) !important;
}

.service__list__btn:after {
	background-color: transparent !important;
}


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

	.service__list__title .en {
		font-size: 2.5rem;
	}

	.service__list__title {
		font-size: 1.4rem;
	}

	.service__list__txt {
		display: none !important;
	}

}


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

	.service__list__item {
		margin-bottom: 1px;
	}

	.service__list__item:last-child {
		margin-bottom: 0;
	}

	.service__list__anchor {
		padding: calc(20px + 4vw) 5vw;
		display: block;
	}

}


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

	.service__list__item.service-electrical:before {
		background-image: url(../images/home/img_service_electrical_sp.jpg);
	}

	.service__list__item.service-communicate:before {
		background-image: url(../images/home/img_service_communicate_sp.jpg);
	}

	.service__list__item.service-software:before {
		background-image: url(../images/home/img_service_software_sp.jpg);
	}

	.service__list__title .en {
		margin-bottom: 10px;
	}

	.service__list__btn {
		display: none !important;
	}

}


@media screen and (min-width: 481px) {

	.service__list__anchor {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
	}

}


@media screen and (min-width: 681px),
print {

	.service__list__item {
		margin-bottom: 1px;
		-webkit-flex: 1;
		flex: 1;
	}

}


@media screen and (min-width: 961px),
print {

	.service__list,
	.service__list__item {
		display: -webkit-flex;
		display: flex;
	}

	.service__list__item {
		margin-right: 1px;
	}

	.service__list__item:last-child {
		margin-right: 0;
	}

	.service__list__item.service-electrical:before {
		background-image: url(../images/home/img_service_electrical.jpg);
	}

	.service__list__item.service-communicate:before {
		background-image: url(../images/home/img_service_communicate.jpg);
	}

	.service__list__item.service-software:before {
		background-image: url(../images/home/img_service_software.jpg);
	}

	.service__list__anchor {
		height: calc(400px + 15vw);
		max-height: 700px;
	}

	.service__list__anchor:hover .service__list__title {
		transform: translateY(-100px);
	}

	.service__list__title .en {
		margin-bottom: 10px;
		font-size: 4rem;
	}

	.service__list__title {
		font-size: 1.8rem;
	}

	.service__list__txt {
		margin-top: 0px;
	}

	.service__list__btn {
		margin-top: 100px;
	}

	.service__list__anchor .service__list__txt,
	.service__list__anchor .service__list__btn {
		position: absolute;
		top: 50%;
		left: 50%;
		opacity: 0;
		transform: translate3d(-50%, 100px, 0);
		transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.service__list__anchor:hover .service__list__txt,
	.service__list__anchor:hover .service__list__btn {
		opacity: 1;
		transform: translate3d(-50%, 0, 0);
	}

	.service__list__anchor:hover .service__list__txt {
		transition-delay: 50ms
	}

	.service__list__anchor:hover .service__list__btn {
		transition-delay: 100ms
	}

}


@media screen and (min-width: 480px) and (max-width: 980px),
print {

	.service__list__anchor {
		height: 250px;
	}

	.service__list__title {
		font-size: 1.6rem;
	}

	.service__list__title .en {
		font-size: 3rem;
	}

	.service__list__title br {
		display: none;
	}

	.service__list__anchor:hover .service__list__title {
		transform: translateY(-30px);
	}

	.service__list__anchor .service__list__txt {
		position: absolute;
		top: 50%;
		opacity: 0;
		transform: translateY(50px);
		transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.service__list__txt {
		margin-top: 20px;
	}

	.service__list__anchor:hover .service__list__txt {
		transition-delay: 50ms;
		opacity: 1;
		transform: translateY(0);
	}

}


/*------------------------------------*/


.contact__side {
	max-width: 1200px;
	margin: 0 auto;
}

.contact-tel {
	overflow: hidden;
}

.contact-tel__list,
.contact-tel .notice {
	background-color: rgba(255, 255, 255, .3);
}

.contact-tel__title,
.contact-form__title {
	font-weight: 500;
	line-height: 1.8;
	color: rgba(0, 0, 0, 1);
}

.contact-tel__title {
	display: -webkit-flex;
	display: flex;
	position: relative;
	-webkit-align-items: center;
	align-items: center;
}

.contact-tel__title:before {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: rgba(0, 0, 0, .15);
	position: absolute;
	left: 0;
	bottom: 0;
}

.contact-tel__item {
	padding: 1vw 0;
	display: -webkit-flex;
	display: flex;
	border-bottom: 1px dotted rgba(0, 0, 0, .2);
	position: relative;
	line-height: 1.6;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.contact-tel__item p {
	font-weight: 500;
	color: rgba(0, 0, 0, 1);
}

.contact-tel__item span {
	font-weight: 500;
	color: rgba(0, 0, 0, .6);
}

.form {
	width: 100%;
}

.form th,
.form td {
	padding: calc(10px + 1vw) 0;
	line-height: 1.8;
	box-sizing: border-box;
}

.form.confirm th,
.form.confirm td {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.form th {
	vertical-align: top;
	font-weight: 600;
	color: rgba(0, 0, 0, 1);
}

.form th.required label:after {
	content: "【必須】";
	font-size: 1.2rem;
	font-weight: normal;
	color: rgba(255, 0, 0, 1);
}

.form__textbox {
	width: 100%;
	padding: 0 calc(10px + .5vw);
	background-color: rgba(0, 0, 0, .05);
	border: 0;
	border-radius: 3px;
	font-size: 1.6rem;
	line-height: 1.8;
	box-sizing: border-box;
}

.form__textbox:hover {
	background-color: rgba(0, 0, 0, .1);
}

.form__textbox:focus {
	background-color: rgba(255, 255, 255, .8);
}

textarea.form__textbox {
	padding-top: 10px;
	padding-bottom: 10px;
}

.form__textbox.small {
	max-width: 160px;
}

.form__textbox.address {
	margin-top: 10px;
}

.address__wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.address__wrap li {
	margin-right: 10px;
}

.address__wrap li:last-child {
	margin-right: 0;
}

#zipbtn,
.form__btn {
	display: -webkit-flex;
	display: flex;
	background-color: transparent;
	border: 2px solid rgba(0, 194, 149, 1);
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8;
	text-decoration: none;
	color: rgba(0, 194, 149, 1);
	box-sizing: border-box;
	cursor: pointer;
	transition: all 300ms ease;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.form__btn {
	font-size: 1.6rem;
}

.form__btn.cancel {
	border-color: rgba(0, 0, 0, .3);
	color: rgba(0, 0, 0, .3);
}

#zipbtn:hover,
.form__btn:hover {
	background-color: rgba(0, 194, 149, 1);
	color: rgba(255, 255, 255, 1);
}

.form__btn.cancel:hover {
	background-color: rgba(0, 0, 0, .3);
	border-color: rgba(0, 0, 0, 0);
	color: rgba(255, 255, 255, 1);
}

.contact-privacy {
	margin: calc(20px + 2vw) 0;
}

.contact-privacy__wrap {
	padding: calc(10px + 3vw);
	background-color: rgba(255, 255, 255, 1);
}

.contact-privacy__title {
	margin-bottom: calc(20px + 2vw);
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.contact-privacy__list {
	padding-left: 20px;
	list-style: decimal;
}

.contact-privacy__list li {
	margin: calc(10px + 1vw) 0;
	line-height: 1.6;
}

.contact-privacy__name {
	margin-bottom: 0;
	text-align: right;
}

.contact-privacy__check {
	font-weight: bold;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.btnset {
	margin: calc(20px + 2vw) 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}

.contact__txt {
	text-align: center;
}

#error {
	padding: 5vw;
	border: 4px solid rgba(255, 0, 0, 1);
	box-sizing: border-box;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.8;
	color: rgba(255, 0, 0, 1);
}

.form-dl {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.form-dl dt,
.form-dl dd {
	margin-bottom: 10px;
}

.form-dl dt {
	width: 100px;
	font-size: 1.5rem;
}

.form-dl dd {
	width: calc(100% - 100px);
}

.entry__wrap .txt {
	margin: 0;
}

.entry__btn {
	width: 195px;
}


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

	.contact-form {
		margin-top: calc(40px + 4vw);
	}

}


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

	.contact-tel__title {
		height: 60px;
		padding: 0 20px;
		font-size: 1.5rem;
	}

	.contact-tel__item span {
		font-size: 1.5rem;
	}

	.contact-tel__item p {
		font-size: 1.6rem;
	}

	.contact-tel__list {
		padding: 10px 20px;
	}

	.contact-tel .notice {
		padding: 20px;
	}

	.form th,
	.form td {
		display: block;
	}

	.form th {
		padding-bottom: 0;
		font-size: 1.5rem;
	}

	.form.confirm th {
		border-bottom: 0;
	}

	.form td {
		padding-top: 1vw;
		font-size: 1.4rem;
	}

	input[type="text"].form__textbox,
	input[type="email"].form__textbox {
		height: 40px;
	}

	textarea.form__textbox {
		height: 150px;
	}

	#zipbtn {
		width: 100px;
		height: 40px;
		border-radius: 20px;
	}

	.contact-privacy__title {
		font-size: 1.6rem;
	}

	.contact-privacy__list li {
		font-size: 1.4rem;
	}

	.form__btn {
		width: 200px;
		height: 50px;
		border-radius: 25px;
	}

	.btnset {
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.btnset li {
		margin: 10px 0;
	}

	.entry__btn {
		margin-top: 20px;
	}

}


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

	.contact-tel__item {
		display: block;
	}

}


@media screen and (min-width: 681px),
print {

	.contact-tel__title {
		height: 80px;
		font-size: 1.6rem;
	}

	.contact-tel__list {
		padding: 20px 40px;
	}

	.contact-tel__item span {
		font-size: 1.6rem;
	}

	.contact-tel__item p {
		font-size: 1.8rem;
	}

	.contact-tel .notice {
		padding: 0 40px;
		padding-bottom: 30px;
	}

	.form th {
		width: 30%;
		max-width: 250px !important;
		padding-top: calc(15px + 1vw);
		padding-right: 40px;
		font-size: 1.6rem;
	}

	.form td {
		font-size: 1.5rem;
	}

	input[type="text"].form__textbox,
	input[type="email"].form__textbox {
		height: 50px;
	}

	textarea.form__textbox {
		height: 150px;
	}

	.form__textbox.medium {
		max-width: 300px;
	}

	#zipbtn {
		width: 120px;
		height: 50px;
		border-radius: 25px;
	}

	.contact-privacy__title {
		font-size: 1.8rem;
	}

	.contact-privacy__list li {
		font-size: 1.5rem;
	}

	.contact-tel .notice br {
		display: none;
	}

	.form__btn {
		width: 240px;
		height: 60px;
		border-radius: 30px;
	}

	.btnset {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
	}

	.btnset li {
		margin: 0 10px;
	}

	.entry__wrap {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}

	.entry__btn {
		margin-left: 60px;
		-webkit-flex: 0 0 195px;
		flex: 0 0 195px;
	}

}


/*
@media screen and ( min-width: 681px ) and ( max-width: 1000px ), print {

	.contact-tel__title {
		padding: 0 5vw;
	}

	.contact-tel__list {
		margin: 20px 5vw;
	}

	.contact-tel .notice {
		margin: 20px 5vw;
	}

	.contact-tel .notice br {
		display: none;
	}

}
*/


/*------------------------------------*/


.recruit-foot {
	padding: calc(40px + 3vw) 5vw;
	background-image: url(../images/common/bg_recruit_foot.jpg);
	background-position: center center;
	background-size: cover;
}

.recruit-foot__title,
.recruit-foot__tex {
	text-align: center;
	color: rgba(255, 255, 255, 1);
}

.recruit-foot__title {
	font-weight: 600;
	line-height: 1.6;
}

.recruit-foot__title .en {
	display: block;
	line-height: 1.2;
}

.recruit-foot__tex {
	text-align: center;
	color: rgba(255, 255, 255, 1);
}

.recruit-foot__wrap {
	max-width: 1000px;
	margin: 0 auto;
}

.recruit-foot__section {
	margin-top: calc(20px + 2vw);
}

.recruit-foot__category {
	margin-bottom: -10px;
	display: -webkit-flex;
	display: flex;
	font-weight: 600;
	line-height: 1.8;
	color: rgba(255, 255, 255, 1);
	-webkit-align-items: center;
	align-items: center;
}

.new .recruit-foot__category span {
	width: 100px;
	-webkit-flex: 0 0 100px;
	flex: 0 0 100px;
}

.career .recruit-foot__category span {
	width: 130px;
	-webkit-flex: 0 0 130px;
	flex: 0 0 130px;
}

.recruit-foot__category:after {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: rgba(255, 255, 255, .3);
}

.recruit-foot__item {
	border-bottom: 1px dotted rgba(255, 255, 255, .6);
}

.recruit-foot__item a {
	display: block;
	line-height: 1.8;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}


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

	.recruit-foot__title {
		font-size: 1.5rem;
	}

	.recruit-foot__title .en {
		font-size: 3rem;
	}

	.recruit-foot__category {
		font-size: 1.6rem;
	}

	.recruit-foot__item a {
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 1.5rem;
	}

	.recruit-foot__item a span {
		font-size: 1.3rem;
	}

}


@media screen and (min-width: 681px),
print {

	.recruit-foot__title {
		font-size: 1.8rem;
	}

	.recruit-foot__title .en {
		font-size: 5rem;
	}

	.recruit-foot__wrap {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.recruit-foot__section {
		width: 46%;
	}

	.recruit-foot__category {
		font-size: 1.8rem;
	}

	.recruit-foot__item a {
		padding-top: 20px;
		padding-bottom: 20px;
		font-size: 1.8rem;
	}

	.recruit-foot__item a span {
		font-size: 1.4rem;
	}

}


/*------------------------------------*/


#loader {
	-webkit-transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.acodionList__target,
.acodionList__content,
.acodionList__wrap {
	transition: all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.acodionList__target {
	position: relative;
	cursor: pointer;
}

.acodionList__content {
	padding: 0;
	overflow: hidden;
}

.show .acodionList__content {
	padding: inherit;
}

.acodionList__wrap {
	opacity: 0;
}

.show .acodionList__wrap {
	opacity: 1;
}

.acodionList__icon {
	margin-left: auto;
	display: block;
	border: 1px solid rgba(67, 203, 171, 1);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	box-sizing: border-box;
	transition: all 300ms ease;
	transform: translateY(-50%);
	transform-origin: center center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.acodionList__target:hover .acodionList__icon {
	background-color: rgba(67, 203, 171, .2);
}

.show .acodionList__icon {
	background-color: rgba(67, 203, 171, 1) !important;
	transform: translateY(-50%) rotate3d(0, 0, 1, 45deg);
}

.acodionList__icon:before,
.acodionList__icon:after {
	content: "";
	height: 1px;
	display: block;
	background-color: rgba(67, 203, 171, 1);
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center center;
}

.show .acodionList__icon:before,
.show .acodionList__icon:after {
	background-color: rgba(255, 255, 255, 1) !important;
}

.acodionList__icon:after {
	transform: rotate3d(0, 0, 1, 90deg);
}


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

	.acodionList__icon {
		width: 30px;
		height: 30px;
	}

	.acodionList__icon:before,
	.acodionList__icon:after {
		width: 11px;
		margin-left: -5px;
	}

	.acodionList__wrap .icon__map {
		display: block;
	}

}


@media screen and (min-width: 681px),
print {

	.acodionList__icon {
		width: 40px;
		height: 40px;
	}

	.acodionList__icon:before,
	.acodionList__icon:after {
		width: 15px;
		margin-left: -7px;
	}

}


/*------------------------------------*/


.swiper-button-next,
.swiper-button-prev {
	background-position: center center;
	border-radius: 50%;
	box-sizing: border-box;
}

.swiper-button-next {
	background-image: url(../images/common/icon_arrow_right_green.svg) !important;
}

.swiper-button-prev {
	background-image: url(../images/common/icon_arrow_left_green.svg) !important;
}