@charset "UTF-8";

/* オリジナルのレイアウト
----------------------------------------*/
html {
	font-size: 1rem;
	font-size: 10px;
}

body {
	color: #202020;
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	height: 100%;
	min-width: 1200px;
	-webkit-text-size-adjust: 100%;
}
.wrapper {
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	body {
		height: 100%;
		min-width: 0;
	}
}
a {
	text-decoration: none;
	color: inherit;
}


/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
	display: block !important;
}
/* SPだけ表示 */
.visible_sp {
	display: none !important;
}

/* PCだけ表示 */
.visible_pc_inline {
	display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	/* PCだけ表示 */
	.visible_pc {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp {
		display: block !important;
	}

	/* PCだけ表示 */
	.visible_pc_inline {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp_inline {
		display: inline !important;
	}
	/* SPだけ改行 */
	.sp_br {
		display: block;
	}

}

/* font
----------------------------------------*/
.en {
	font-family: 'Roboto', sans-serif;
}

/* header
----------------------------------------*/
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	z-index: 2000;
}
.header img {
	display: block;
}
.header_logo {
	padding: 43px 0 0 37px;
}
.header_logo a {
	display: block;
	transition: opacity 300ms;
}
.header_logo a:hover {
	opacity: .6;
}
.header_btn {
	display: none;
}

@media only screen and (max-width: 768px) {
	.header_logo {
		width: 180px;
		padding: 31px 0 0;
		margin: 0 auto;
		z-index: 2000;
	}
	.header_logo a:hover {
		opacity: 1;
	}
	.header_btn {
		-webkit-appearance: none;
		appearance: none;
		display: block;
		width: 39px;
		height: 39px;
		position: absolute;
		top: 20px;
		right: 20px;
		border: 0;
		background: none;
		z-index: 2000;
	}
	.header_btn:focus {
		outline: none;
	}
	.header_btn::before,
	.header_btn::after {
		content: '';
		display: block;
		background: #fff;
		width: 30px;
		height: 2px;
		transform: skewX(-30deg);
		position: absolute;
		top: 9px;
		left: 0;
		transition: transform 300ms;
	}
	.header_btn.open::before,
	.header_btn.open::after {
		transform: rotate(45deg) skewX(-30deg);
		width: 31px;
		top: 17px;
		left: 0;
	}
	.header_btn.open::after {
		transform: rotate(-45deg) skewX(-30deg);
	}
	.header_btn::after {
		top: 28px;
	}
	.header_btn span {
		display: block;
		background: #fff;
		width: 23px;
		height: 2px;
		transform: skewX(-30deg);
		position: absolute;
		top: 18px;
		right: 3px;
	}
	.header_btn.open span {
		display: none;
	}
}

/* gnav
----------------------------------------*/
.gnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 29px 29px 0;
}
.gnav a {
	color: #fff;
	transition: opacity 300ms;
}
.gnav_contact {
	padding-left: 11px;
}
.gnav_contact a {
	width: 131px;
	text-align: center;
	display: block;
	border: 2px solid #fff;
	border-radius: 5px;
	font-weight: 500;
	font-size: 1.2rem;
	padding: 11px 10px 7px;
	letter-spacing: .1em;
}
.gnav_contact a::before {
	content: '';
	width: 12px;
	height: 9px;
	display: block;
	background: url(../img/common/icon_contact.svg) no-repeat;
	margin: 0 auto 4px;
}
.gnav_contact a .en {
	display: block;
	font-size: 1rem;
	margin-top: 1px;
	letter-spacing: .1em;
}
.gnav_contact a:hover {
	opacity: .6;
}
.gnav li:not(.gnav_contact) {
	padding-bottom: 10px;
}
.gnav li:not(.gnav_contact) a {
	display: block;
	font-weight: 500;
	text-align: right;
	white-space: nowrap;
	letter-spacing: .1em;
}
.gnav li:not(.gnav_contact) .en {
	display: block;
	opacity: .5;
	font-size: 1rem;
	margin-top: 4px;
	letter-spacing: .1em;
}
.gnav li:not(.gnav_contact) + li {
	margin-left: 3.75vw;
}
.gnav a:hover {
	opacity: .6;
}

@media only screen and (max-width: 1200px) {
	.gnav li:not(.gnav_contact) + li {
		margin-left: 45px;
	}
}

@media only screen and (max-width: 768px) {
	.gnav {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		background: rgba(0, 100, 175, .9);
	}
	.gnav ul {
		width: 87.5%;
		display: block;
		margin: 0 auto;
		padding: 75px 0 0;
	}
	.gnav_contact {
		padding: 38px 0;
	}
	.gnav_contact a {
		width: auto;
		border-width: 1px;
		border-radius: 10px;
		font-size: 2.2rem;
		padding: 18px 10px;
	}
	.gnav_contact a::before {
		width: 22px;
		height: 17px;
		display: inline-block;
		background-size: 22px 17px;
		margin: 0 12px 0 0;
	}
	.gnav_contact a .en {
		font-size: 1.75rem;
		margin-top: 3px;
	}
	.gnav li:not(.gnav_contact) {
		padding-bottom: 0;
	}
	.gnav li:not(.gnav_contact) a {
		text-align: center;
		font-size: 1.9rem;
		padding: 30px 0 24.5px;
	}
	.gnav li:not(.gnav_contact) .en {
		font-size: 1.5rem;
	}
	.gnav li:not(.gnav_contact) + li {
		margin-left: 0;
		border-top: 1px solid #fff;
	}
	.gnav_contact a:hover,
	.gnav a:hover {
		opacity: 1;
	}
}

/*footer
----------------------------------------*/
.footer {
	background: linear-gradient(114.7deg, #fff 31.0%,#F6F6F6 31.05%);
}
.footer a {
	transition: opacity 300ms;
}
.footer a:hover {
	opacity: .6;
}
.footer_inner {
	width: 1140px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 45px 0 34px;
}
.footer_logo {
	margin: 9px 0 16px;
}
.footer_info {
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.85;
	padding-bottom: 9px;
	letter-spacing: .1em;
}
.footer_nav {
	padding-right: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	letter-spacing: .1em;
}
.footer_nav ul {
	padding: 0 0 8px 66px;
}
.footer_nav ul + ul {
	border-left: 1px solid #CCC;
	margin-left: 65px;
}
.footer_nav ul li + li {
	margin-top: 9px;
}
.footer_nav ul a {
	color: #636363;
}
.footer_copy {
	padding: 31px;
	display: block;
	background: #252525;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: .1em;
}

@media only screen and (max-width: 768px) {
	.footer {
		background: none;
	}
	.footer a:hover {
		opacity: 1;
	}
	.footer_inner {
		width: auto;
		display: block;
		text-align: center;
		padding: 26px 0 20px;
	}
	.footer_logo {
		width: 193px;
		margin: 9px auto 12px;
	}
	.footer_info {
		font-size: .8rem;
		line-height: 2;
	}
	.footer_nav {
		display: none;
	}
	.footer_copy {
		padding: 15px;
		font-size: .7rem;
	}
}

/* recruit
----------------------------------------*/
.recruit_block {
	padding: 116px 0 105px;
	color: #fff;
	background: linear-gradient(60.9deg, #F6F6F6 60.6%,#fff 60.65%);
}
.recruit_block .btn_more a {
	display: inline-block;
	background: #000;
	color: #fff;
	letter-spacing: .3em;
	font-weight: 900;
	transform: skewX(-28deg);
	padding: 14px 64px 16px 71px;
	transition: background 300ms, color 300ms;
}
.recruit_block .btn_more a > span {
	display: block;
	font-size: 1.5rem;
	transform: skewX(28deg);
}
.recruit_block .btn_more a > span::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/index/icon_btn_arrow.svg) no-repeat;
	position: absolute;
	right: -34px;
	top: 50%;
	margin-top: -9px;
	transition: right 300ms;
}
.recruit_block .btn_more a:hover {
	background-color: rgba(0, 0, 0, .6);
	color: rgba(255, 255, 255, .6);
}
.recruit_block .btn_more a:hover > span::after {
	right: -44px;
	opacity: .6;
}
.recruit_block img {
	display: block;
}
.recruit_img {
	width: 1090px;
	margin: 0 auto;
	z-index: 2;
}
.recruit_block h2 {
	position: absolute;
	left: 4px;
	top: 218px;
	right: 0;
	text-align: center;
	font-size: 2.3rem;
	line-height: 1.15;
	font-weight: 900;
	z-index: 10;
	letter-spacing: .3em;
	opacity: 0;
}
.show.recruit_block h2 {
	animation-fill-mode: forwards;
	animation-duration: 1000ms;
	animation-name: fadeUp;
}
.recruit_block h2 span {
	display: block;
	font-size: 6.6rem;
	margin-bottom: 1px;
	letter-spacing: .05em;
}
.recruit_txt {
	position: absolute;
	top: 367px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: .05em;
	z-index: 10;
}
.recruit_block .recruit_txt p {
	opacity: 0;
}
.show.recruit_block .recruit_txt p {
	animation-fill-mode: forwards;
	animation-duration: 1000ms;
	animation-delay: 500ms;
	animation-name: fadeUp;
}
.recruit_block .btn_more {
	margin-top: 30px;
	z-index: 10;
}
.show.recruit_block .recruit_txt .btn_more {
	animation-delay: 1000ms;
}
.recruit_block .btn_more a {
	padding: 16px 64px 16px 71px;
	letter-spacing: .35em;
}
.recruit_img::after,
.recruit_img::before {
	content: '';
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	position: absolute;
	top: -1px;
	right: -1px;
	left: auto;
	-webkit-transition: width .9s cubic-bezier(.77,0,.175,1);
	transition: width .9s cubic-bezier(.77,0,.175,1);
}
.recruit_img::after {
	background-color: rgba(255,255,255,.8);
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	z-index: 1;
}
.recruit_img::before {
	background-color: #fff;
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
	z-index: 2;
}
.show.recruit_img::after,
.show.recruit_img::before {
	width: 0;
}

@media only screen and (max-width: 768px) {
	.recruit_block {
		padding: 25px 0;
		background: linear-gradient(60.9deg, #F6F6F6 55.3%,#fff 55.35%);
	}
	.recruit_block .btn_more a {
		padding: 8px 32px 9px 36px;
	}
	.recruit_block .btn_more a > span {
		font-size: .75rem;
		letter-spacing: .3em;
	}
	.recruit_block .btn_more a > span::after {
		width: 10px;
		height: 10px;
		background-size: 10px 10px;
		right: -17px;
		margin-top: -5px;
	}
	.recruit_block .btn_more a:hover {
		background-color: #000;
		color: #fff;
	}
	.recruit_block .btn_more a:hover > span::after {
		right: -17px;
		opacity: 1;
	}
	.recruit_img {
		width: 89.75%;
	}
	.recruit_block h2 {
		top: 50%;
		margin-top: -74px;
		font-size: 1.1rem;
		line-height: 1.1;
	}
	.recruit_block h2 span {
		font-size: 3.8rem;
		margin-bottom: 0;
	}
	.recruit_txt {
		transform: translateX(-50%);
		width: 89.75%;
		max-width: 320px;
		left: 50%;
		top: 50%;
		margin-top: 5px;
		font-size: 1.1rem;
		line-height: 1.85;
		letter-spacing: .05em;
	}
	.recruit_block .btn_more {
		margin-top: 11px;
	}
	.recruit_block .btn_more a span {
		font-size: .9rem;
	}
	.recruit_block .btn_more a {
		padding: 9px 33px 9px 29px;
		letter-spacing: .35em;
	}
}

/* contact
----------------------------------------*/
.contact_block {
	background: linear-gradient(58.5deg, #00529e 52.6%,#0064af 52.65%);
	color: #fff;
	text-align: center;
	padding: 85px 0 100px;
}
.contact_block h2 {
	font-weight: 900;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: .3em;
	margin-bottom: 36px;
}
.contact_block h2::before {
	content: '';
	display: block;
	position: absolute;
	top: -125px;
	left: 50%;
	margin-left: -7px;
	background: #FFDE71;
	width: 14px;
	height: 109px;
	transform: skewX(-34deg);
}
.contact_block h2 span {
	display: block;
	font-size: 5.6rem;
	letter-spacing: .05em;
}
.contact_tel {
	font-weight: 900;
	font-size: 2.6rem;
	letter-spacing: .05em;
}
.contact_tel a {
	pointer-events: none;
}
.contact_tel span {
	font-size: 3.6rem;
	letter-spacing: .05em;
}
.contact_btn {
	margin-top: 24px;
}
.contact_btn a {
	width: 440px;
	display: inline-block;
	border: 2px solid #fff;
	border-radius: 5px;
	font-weight: 500;
	font-size: 1.7rem;
	padding: 21px 17px 25px 27px;
	letter-spacing: .1em;
	transition: opacity 300ms;
}
.contact_btn a:hover {
	opacity: .6;
}
.contact_btn a::before {
	content: '';
	display: inline-block;
	width: 21px;
	height: 16px;
	vertical-align: -1px;
	margin-right: 19px;
	background: url(../img/common/icon_contact.svg) no-repeat left top / 21px 16px;
}

@media only screen and (max-width: 768px) {
	.contact_block {
		background: linear-gradient(58.5deg, #00529e 51.6%,#0064af 51.65%);
		padding: 56px 0 60px;
	}
	.contact_block h2 {
		font-size: 1rem;
		line-height: 1.2;
		margin-bottom: 22px;
	}
	.contact_block h2::before {
		top: -76px;
		margin-left: 4px;
		width: 7px;
		height: 54px;
	}
	.contact_block h2 span {
		font-size: 3.4rem;
	}
	.contact_tel {
		font-size: 2.3rem;
	}
	.contact_tel a {
		pointer-events: auto;
	}
	.contact_tel span {
		font-size: 3.3rem;
	}
	.contact_btn {
		margin-top: 16px;
	}
	.contact_btn a {
		width: 275px;
		border-width: 1px;
		border-radius: 3px;
		font-size: 1.3rem;
		padding: 12px 15px 15px 20px;
	}
	.contact_btn a:hover {
		opacity: 1;
	}
	.contact_btn a::before {
		width: 16px;
		height: 12px;
		margin-right: 10px;
		background-size: 16px 12px;
	}
}

/* loading
----------------------------------------*/
.l-loading {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999999;
	overflow: hidden;
}
.is-load .l-loading {
	width: 0;
	-webkit-transition: 1.6s cubic-bezier(.86,0,.07,1);
	transition: 1.6s cubic-bezier(.86,0,.07,1);
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
	-webkit-transition-property: width;
	transition-property: width;
}
.l-loading__bg {
	width: 400%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #fff;
	-webkit-transform: skewX(-30deg);
	transform: skewX(-30deg);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.is-load .l-loading__bg {
	-webkit-transition: width 1.6s cubic-bezier(.86,0,.07,1);
	transition: width 1.6s cubic-bezier(.86,0,.07,1);
	width: 0!important;
}
.l-loading__bg::after, .l-loading__bg::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.l-loading__bg::before {
	background-color: rgba(255,255,255,.6);
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	opacity: 1;
}
.is-load .l-loading__bg::before {
	opacity: 0;
	-webkit-transition: opacity .6s 1s linear;
	transition: opacity .6s 1s linear;
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}