@charset "utf-8";
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	color: #616466;
	font-size: 1.6rem;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
	line-height: 1.5;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}
body a {
	color: #616466;
}
body a:link {
	text-decoration: none;
}
body a:visited {
	text-decoration: none;
}
body a:hover {
	text-decoration: none;
}
body a:active {
	text-decoration: none;
}
.bebas {
	font-family: BebasKai, "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, sans-serif;
}

/* -----------------------------------------------------------
	#page
----------------------------------------------------------- */
#page {
	width: 100%;
	text-align: left;
}

@media only screen and (max-width: 768px) {
  #page {
	/* padding-top: 45px; */
  }
}
/* -----------------------------------------------------------
	header
----------------------------------------------------------- */
.recruit_header {
	width: 100%;
}
.header__logo {
	display: flex;
	align-items: center;
	padding-bottom: 0;
}
.header__contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	padding-top: 0;
}
.recruit_header .recruit_type {
	font-weight: 700;
	font-size: 15px;
	line-height: 100%;
	margin-left: 40px;
	color: #323232;
}
.recruit_header .nav_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
.recruit_header .nav {
	margin-left: auto;
	height: 100%;
}
.nav-global__list {
	display: flex;
	height: 100%;
}
.nav-global__item {
	display: block;
	height: 100%;
}
.nav-global__item a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
	font-weight: 700;
	font-size: 15px;
	line-height: 100%;
	color: #323232;
	padding: 0 15px;
}
.nav-global__item a:before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 6px;
	transform: scaleX(0);
	transition: .5s;
}
.nav-global__item a:hover:before {
	content: "";
	width: 100%;
	height: 6px;
	position: absolute;
	bottom: 0;
	border-bottom: 6px solid #1b4a9e;
	visibility: visible;
	transform: scaleX(1);
}
.nav-global__item.career a:hover:before {
	border-bottom: 6px solid #D93431;
}
.nav-global__item a .linkIcon {
	margin-left: 8px;
}
.btn-entry {
	font-family: 'BebasKai';
	font-style: normal;
	font-weight: 400;
	font-size: 27px;
	line-height: 100%;
	text-align: center;
	letter-spacing: 0.1em;
	color: #fff;
	padding: 26px 42px;
	background: #1B4A9E;
	margin-left: 50px;
	transition: .2s;
	position: relative;
}
.btn-entry.career {
	background: #D93431;
}
.btn-entry::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: #1B4A9E;
}
.btn-entry.career::before {
	background-color: #D93431;
}
.btn-entry:hover {
	opacity: .8;
}
.nav.pc{
	display: block;
}
.nav.sp{
	display: none;
}
.nav_wrapper.sp{
	display: none;
}
.sp_menu_btn {
	display: none;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
	.recruit_header .recruit_type {
		margin-left: 20px;
		font-size: 13px;
	}
	.nav-global__item a {
		font-size: 13px;
		padding: 0 9px;
	}
	.btn-entry {
		margin-left: 20px;
		padding: 26px 30px;
		font-size: 23px;
	}
	.btn-entry::before {
		content: none;
	}
}
@media only screen and (max-width: 768px) {
	.header__contents {
		height: 53px;
		position: relative;
		background-color: #fff;
		z-index: 10;
	}
	.header__contents:before {
		content: none;
	}
	.header__logo img {
		max-height: 37px;
	}
	.recruit_header {
		position: fixed;
    z-index: 2;
	}
	.recruit_header .recruit_type {
		font-size: 8px;
		margin-left: 8px;
	}
	.sp_menu_btn {
		width: 25px;
		height: 25px;
		position: relative;
		background-color: #fff;
		margin-left: auto;
		margin-right: 16px;
		display: block;
	}
	.sp_menu_btn span {
		display: block;
		visibility: visible;
		background: #000;
		position: absolute;
		left: 0;
		height: 1px;
		width: 100%;
		transition: .5s;
	}
	.sp_menu_btn span:nth-child(1) {
		top: 7px;
	}
	.sp_menu_btn span:nth-child(2) {
		top: 13px;
	}
	.sp_menu_btn span:nth-child(3) {
		bottom: 4px;
	}
	.sp_menu_btn.is-active span:nth-child(1),
	.sp_menu_btn.is-active span:nth-child(3) {
		visibility: hidden;
		transform: scale(0);
	}
	.nav.pc{
		display: none;
	}
	.nav_wrapper.sp{
		display: block;
		position: absolute;
    top: -33px;
    z-index: 1;
	}
	.recruit_header .nav {
		position: absolute;
    width: 100vw;
		top: -177px;
    left: 0;
		background-color: #fff;
		height: auto;
		padding: 20px;
		z-index: 1;
		transition: .5s;
		display: block;
		visibility: hidden;
	}
	.recruit_header .nav.is-active {
		top: 52px;
		/* display: block; */
		visibility: visible;
	}
	.nav-global__list {
		flex-direction: column;
	}
	.nav-global__list li a {
		padding: 11px 0;
		justify-content: flex-end;
		color: #616466;
		letter-spacing: 0.1em;
		border-bottom: 1px solid rgba(97, 100, 102, .1);
	}
	.nav-global__list li:last-child a {
		border-bottom: none;
	}
	.nav-util {
		width: 53px;
	}
	.nav-global__item a .linkIcon {
		margin-left: 8px;
		width: 16px;
		height: 16px;
	}
	.btn-entry {
		width: 53px;
		height: 53px;
		font-size: 13px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: unset;
	}
}

/* -----------------------------------------------------------
	#contents
----------------------------------------------------------- */
#contents {
	margin: 0 auto;
	width: 100%;
	min-width: 1200px;
	padding: 70px 50px 0;
	position: relative;
	overflow: hidden;
}
@media only screen and (max-width: 1100px) {
	#contents {
		min-width: 0;
	}
}
@media only screen and (max-width: 768px) {
  #contents {
	min-width: 0;
	padding: 20px 0 0;
  }
}
/* -----------------------------------------------------------
	footer
----------------------------------------------------------- */
.footer {
	min-width: unset;
}
@media only screen and (max-width: 768px) {
  .footer {
	display: none;
  }
}
.sp_footer {
	display: none;
}

@media only screen and (max-width: 768px) {
  .sp_footer {
	display: block;
	line-height: 1;
  }
  .sp_footer a {
	display: block;
	padding: 18px 0;
	text-align: center;
  }
  .sp_footer a i {
	display: inline-block;
	width: 20px;
	vertical-align: middle;
  }
  .sp_footer a i img {
	display: block;
  }
  .sp_footer a span {
	display: inline-block;
	color: #fff;
	margin-left: 5px;
	vertical-align: middle;
  }
  .sp_footer .btn_home a {
	background: #2d3749;
	font-size: 1.2rem;
  }
  .sp_footer .btn_contact a {
	background: #1b4a9e;
	font-size: 1.6rem;
  }
  .sp_footer .sp_copyright {
	background: #222936;
	text-align: center;
	padding: 15px 0;
  }
  .sp_footer .sp_copyright small {
	font-size: 1.1rem;
	color: #a1a5a7;
  }
}
/*	#pagetop
----------------------------------------------------------- */
#recruit .pagetop {
	opacity: 0;
	display: block;
	-webkit-transition: opacity 200ms ease-in 0;
	-o-transition: opacity 200ms ease-in 0;
	-ms-transition: opacity 200ms ease-in 0;
	transition-property: opacity;
	transition-duration: 200ms;
	transition-timing-function: ease-in;
	transition-delay: 0;
}
#recruit .pagetop.active {
	opacity: 1;
	/* position: relative; */
	/* right: -12px; */
	margin-left: auto;
	bottom: 35px;
}
#recruit .pagetop.is-fixed {
	top: unset;
	bottom: 35px;
	right: 35px;
	position: fixed;
}

@media only screen and (max-width: 768px) {
  #recruit .pagetop {
	/* display: none; */
		width: 53px;
		height: 53px;
  }
	.pagetop a {
		width: 53px;
		height: 53px;
	}
	.pagetop a:before {
    width: 36px;
    height: 36px;
	}
	.pagetop a:after {
    width: 9px;
    height: 9px;
		border-top: 2px solid #fff;
    border-right: 2px solid #fff;
	}
	#recruit .pagetop.active {
		right: 15px;
		bottom: 15px;
	}
}
#btn_pagetop {
	display: none;
}

@media only screen and (max-width: 768px) {
  #btn_pagetop {
	display: block;
	opacity: 0;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 2;
	-webkit-transition: all 200ms ease-in 0;
	-o-transition: all 200ms ease-in 0;
	-ms-transition: all 200ms ease-in 0;
	transition-property: all;
	transition-duration: 200ms;
	transition-timing-function: ease-in;
	transition-delay: 0;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(20px);
  }
  #btn_pagetop.active {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
  }
  #btn_pagetop a {
	display: block;
	width: 80px;
	height: 80px;
	position: relative;
  }
  #btn_pagetop a:after {
	content: "";
	width: 50px;
	height: 50px;
	display: block;
	background: #a1a5a7;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -25px 0 0 -25px;
  }
  #btn_pagetop a:before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -6px 0 0 -6px;
	z-index: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  }
}

/*----------------------------------------------------
	.content_inner
----------------------------------------------------*/
.pc_only {
	display: block;
}
@media screen and (max-width: 768px) {
	.pc_only {
		display: none;
	}
}
.sp_only {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp_only {
		display: block;
	}
}
.content_inner {
	max-width: 1366px;
	margin: auto;
}
.content_inner h3 {
	font-style: normal;
	font-weight: 700;
	font-size: 44px;
	line-height: 140%;
	text-align: center;
	color: #1B4A9E;
}
.content_inner h3::first-letter {
	color: #D93431;
}
.content_inner .h3_en {
	font-family: 'BebasKai';
	font-style: normal;
	font-weight: 400;
	font-size: 30px;
	line-height: 100%;
	text-align: center;
	margin-top: 23px;
	text-transform:uppercase;
	display: block;
}
@media screen and (max-width: 768px) {
	.content_inner h3 {
		font-size: 24px;
	}
	.content_inner .h3_en {
		font-size: 18px;
		margin-top: 10px;
	}
}
/*----------------------------------------------------
	.kv
----------------------------------------------------*/
.kv {
	height: 774px;
	max-width: 887px;
	margin: auto;
	padding-top: 100px;
	position: relative;
}
.bg_01 {
	position: absolute;
	/* left: 50%; */
	right: 29%;
	top: 4%;
	/* bottom: 29.3%; */
	background: rgba(187, 197, 204, .1);
	transform: rotate(45deg);
	width: 2674px;
	height: 2674px;
	aspect-ratio: 1 / 1;
	z-index: -1;
}
.bg_kv {
	width: 100%;
	height: 1284px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-image: url(../images/recruit/low/kv_fresh.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
@media only screen and (max-width: 768px) {
	.bg_01 {
		top: -6.5%;
	}
	.bg_kv {
		/* height: 587px; */
		height: auto;
		background-size: cover;
		background-position: center;
		background-image: url(../images/recruit/low/kv_fresh_sp.png);
		background-size: contain;
		background-position: top;
		aspect-ratio: 125 / 138;
    top: 53px;
	}
}
.bg_kv.career {
	background-image: url(../images/recruit/low/kv_career.png);
}
@media only screen and (max-width: 768px) {
	.bg_kv.career {
		/* height: 587px; */
		height: auto;
		background-size: cover;
		background-position: center;
		background-image: url(../images/recruit/low/kv_career_sp.png);
		aspect-ratio: 125 / 138;
    top: 53px;
	}
}
.kv_inner p {
	font-weight: 700;
	font-size: 48px;
	line-height: 140%;
	color: #323232;
}
.kv_inner p span {
	color: #D93431;
}
.kv_inner.career p span {
	color: #1B4A9E;
}
.kv_inner h2 {
	display: inline-block;
	font-weight: 700;
	font-size: 20px;
	line-height: 110%;
	color: #D93431;
	padding-bottom: 14px;
	border-bottom: 4px solid #D93431;
	margin-top: 20px;
	margin-left: 186px;
}
.kv_inner.career h2 {
	color: #1B4A9E;
	border-bottom: 4px solid #1B4A9E;
}
@media only screen and (min-width: 550px) and (max-width: 768px) {
	.kv {
		max-width: 59%;
		height: 116vw;
		min-height: 46vh;
	}
	.kv_inner p {
		font-weight: 700;
		font-size: 20px;
		line-height: 140%;
	}
	.kv_inner h2 {
		font-size: 12px;
		line-height: 110%;
		margin-left: 48px;
    padding-bottom: 6px;
	}
}
@media only screen and (max-width: 549px) {
	.kv {
		max-width: 90%;
		height: 116vw;
		min-height: 46vh;
	}
	.kv_inner p {
		font-weight: 700;
		font-size: 20px;
		line-height: 140%;
	}
	.kv_inner h2 {
		font-size: 12px;
		line-height: 110%;
		margin-left: 48px;
    padding-bottom: 6px;
	}
}

/*----------------------------------------------------
	.message
----------------------------------------------------*/
.message {
	/* color: #323232; */
	scroll-margin-top: 100px;
}
.message_inner {
	max-width: 774px;
	margin: 80px auto 0;
}
.message_inner .name {
	display: flex;
	font-weight: 700;
	font-size: 49px;
	line-height: 100%;
	color: #323232;
}
.message_inner .name .department {
	font-weight: 700;
	font-size: 18px;
	line-height: 140%;
	margin-right: 30px;
	text-align: right;
}
.message_inner .text {
	display: flex;
}
.message_item,
.message_item .text {
	position: relative;
}
.message_inner .name_en {
	font-family: 'BebasKai';
	font-weight: 400;
	font-size: 44px;
	line-height: 100%;
	color: #BBC5CC;
	opacity: 0.7;
	transform: rotate(90deg);
	transform-origin: top;
	margin-top: 35px;
	width: 100%;
}
.message_item .text .name_en,
.message_item > .name_en {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
}
.message_inner p {
	font-weight: 700;
	font-size: 20px;
	line-height: 220%;
}
.message_inner .message_item:first-child .text {
	margin-left: 80px;
}
.message_inner .message_item:last-child {
	display: flex;
	margin-top: 80px;
}
.message_inner .message_item:last-child .text {
	flex-direction: column;
}
.message_inner .message_item:first-child .name_en {
	top: 87px;
	left: -133px;
}
.message_inner .message_item:last-child .name_en {
	transform: unset;
	left: -246px;
}
.message_item:last-child {
	max-width: 514px;
	margin-left: auto;
}
.message_inner .message_item:last-child .text p {
	margin-top: 30px;
}
@media only screen and (max-width: 768px) {
	.message {
		padding: 0 20px;
	}
	.message_inner .name {
		font-size: 32px;
	}
	.message_inner .name .department {
		font-size: 12px;
		margin-right: 20px;
	}
	.message_inner p {
		font-size: 14px;
	}
	.message_inner .message_item:first-child .text {
		margin-left: 64px;
	}
	.message_inner .message_item:first-child .name_en {
		left: -126px;
	}
	.message_inner .message_item:last-child {
		flex-direction: column-reverse;
		margin-top: 40px;
	}
	.message_inner .message_item:last-child .name_en {
		position: initial;
		margin-top: 0;
	}
	.message_inner .message_item:last-child .text p {
		margin-top: 30px;
	}
}

/*----------------------------------------------------
	.work
----------------------------------------------------*/
.work {
	margin-top: 150px;
}
.work_wrapper {
	max-width: 716px;
	margin: 80px auto 0;
}
.work_flow {
	width: 100%;
	display: block;
}
.work p {
	font-weight: 700;
	font-size: 16px;
	line-height: 240%;
	margin-top: 48px;
}
@media screen and (max-width: 768px) {
	.work {
		margin-top: 88px;
	}
	.work_wrapper {
		padding: 0 20px;
		margin-top: 40px;
	}
	.work p {
		font-size: 14px;
		margin-top: 32px;
	}
}

/*----------------------------------------------------
	.numericdata
----------------------------------------------------*/
.numericdata {
	margin-top: 150px;
}
.numericdata_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 42px;
	justify-content: center;
	margin-top: 80px;
}
.numericdata_item {
	width: 33.3%;
	max-width: 394px;
	min-width: 394px;
	height: auto;
	aspect-ratio: 1 / 1;
	border: 1px solid #1B4A9E;
	padding: 24px 37px 0;
	color: #1B4A9E;
	position: relative;
}
.numericdata_item .note {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.numericdata_item_heading {
	background: #1B4A9E;
	border-radius: 60px;
	color: #fff;
	width: 100%;
	max-width: 320px;
	margin: auto;
	text-align: center;
	padding: 7px 0;
	font-size: 20px;
	font-weight: 700;
}

.numericdata_item .item .counter {
	font-family: 'BebasKai';
	display: flex;
	align-items: baseline;
	justify-content: center;
	text-align: right;
	margin: auto;
}
/* coutbox1の設定 */
.numericdata_item.no1 .item {
	font-size: 36px;
	font-weight: 700;
}
.numericdata_item.no1 .item .number {
	width: 194px;
	min-width: 194px;
	font-size: 138px;
	line-height: 110%;
}
.numericdata_item.no1 .imgbox {
	text-align: center;
	margin-top: 27px;
}
/* coutbox2の設定 */
.numericdata_item.no2 .imgbox {
	text-align: center;
	margin-top: 8px;
	width: 121px;
	margin: auto;
}
.numericdata_item.no2 .item {
	display: flex;
}
.numericdata_item.no2 .numbox {
	display: flex;
	align-items: baseline;
	font-size: 21px;
	font-weight: 700;
}
.numericdata_item.no2 .item .number {
	width: 115px;
	margin-right: 4px;
	font-size: 99px;
	line-height: 110%;
}
.numericdata_item.no2 .item .number + span {
	font-weight: 700;
}
.numericdata_item.no2 .man,
.numericdata_item.no2 .woman {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 0 7px;
}
.numericdata_item.no2 .woman {
	border-left: 1px solid rgba(27, 74, 158, .2);
}
.numericdata_item.no2 .man img,
.numericdata_item.no2 .woman img {
	display: flex;
	flex-direction: column;
	width: 36px;
}
/* coutbox3の設定 */
.numericdata_item.no3 .item {
	font-size: 36px;
	font-weight: 700;
}
.numericdata_item.no3 .item .number {
	width: 190px;
	min-width: 180px;
	font-size: 138px;
	line-height: 110%;
}
.numericdata_item.no3 .imgbox {
	text-align: center;
	margin-top: 27px;
}
.numericdata_item.no3 .small {
	font-weight: 700;
	font-size: 14px;
	line-height: 110%;
	text-align: center;
	margin-top: 15px;
}

/* coutbox4の設定 */
.numericdata_item.no4 .item {
	display: flex;
}
.numericdata_item.no4 .item .counter {
	align-items: initial;
}
.numericdata_item.no4 .numbox {
	display: flex;
	align-items: baseline;
	justify-content: center;
	font-size: 21px;
	font-weight: 700;
}
.numericdata_item.no4 .left .item .number {
	width: 115px;
	margin-right: 4px;
	font-size: 99px;
	line-height: 110%;
}
.numericdata_item.no4 .right .item .number {
	width: 40px;
	margin-right: 4px;
	font-size: 99px;
	line-height: 110%;
}
.numericdata_item.no4 .item .number + span {
	font-weight: 700;
}
.numericdata_item.no4 .left,
.numericdata_item.no4 .right {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 40px;
}
.numericdata_item.no4 .left {
	padding-right: 34px;
}
.numericdata_item.no4 .right {
	border-left: 1px solid rgba(27, 74, 158, .2);
	padding-left: 34px;
}
.numericdata_item.no4 .small {
	font-weight: 700;
	font-size: 16px;
	line-height: 110%;
}
.numericdata_item.no4 .unit {
	font-weight: 700;
	font-size: 32px;
	line-height: 110%;
	margin-top: 30px;
	width: 38px;
}
.numericdata_item.no4 .imgbox {
	text-align: center;
	margin-top: 8px;
	width: 150px;
	margin: auto;
}
/* coutbox5の設定 */
.numericdata_item.no5 .item {
	font-size: 36px;
	font-weight: 700;
}
.numericdata_item.no5 .item .counter {
	align-items: center;
}
.numericdata_item.no5 .item .number {
	width: 116px;
	min-width: 116px;
	font-size: 138px;
	line-height: 110%;
}
.numericdata_item.no5 .small {
	font-weight: 700;
	font-size: 16px;
	line-height: 110%;
	margin-top: -64px;
}
.numericdata_item.no5 .unit {
	font-weight: 700;
	font-size: 32px;
	line-height: 110%;
	margin-top: 54px;
	width: 38px;
}
.numericdata_item.no5 .imgbox {
	text-align: center;
	margin-top: 27px;
}
/* coutbox6の設定 */
.numericdata_item.no6 .item {
	font-size: 36px;
	font-weight: 700;
	margin-top: 24px;
}
.numericdata_item.no6 .item .counter {
	align-items: center;
}
.numericdata_item.no6 .item .number {
	width: 158px;
	min-width: 158px;
	font-size: 109px;
	line-height: 100%;
}
.numericdata_item.no6 .small {
	font-weight: 700;
	font-size: 16px;
	line-height: 110%;
	width: 16px;
	margin-top: 8px;
	margin-right: 10px;
}
.numericdata_item.no6 .unit {
	font-weight: 700;
	font-size: 36px;
	line-height: 110%;
	margin-top: 54px;
	width: 38px;
	font-family: 'YuGothic';
}
.numericdata_item.no6 .small2 {
	font-weight: 700;
	font-size: 14px;
	line-height: 110%;
	margin-top: 24px;
	text-align: center;
}
.numericdata_item.no6 .imgbox {
	text-align: center;
	margin-top: 0px;
}




@media screen and (max-width: 768px) {
	.numericdata {
		/* width: 26.3%; */
		margin-top: 80px;
	}
	.numericdata_wrapper {
		gap: 16px;
		margin-top: 40px;
	}
	.numericdata_item {
		width: 100%;
		max-width: 343px;
		min-width: unset;
		padding-top: 16px;
		aspect-ratio: unset;
	}
	.numericdata_item_heading {
		font-size: 14px;
		padding: 8px 0;
	}
	.numericdata_item .note {
		font-size: 12px;
	}
	/* coutbox1の設定 */
	.numericdata_item.no1 .item {
		font-size: 32px;
		font-weight: 700;
	}
	.numericdata_item.no1 .item .number {
		width: 164px;
		min-width: 164px;
		font-size: 118px;
		line-height: 110%;
	}
	.numericdata_item.no1 .imgbox {
		max-width: 110px;
		margin: 20px auto 0;
	}
	/* coutbox2の設定 */
	.numericdata_item.no2 {
		padding: 16px 0;
	}
	.numericdata_item.no2 .imgbox {
		margin-top: 10px;
	}
	.numericdata_item.no2 .numbox {
		justify-content: center;
	}
	.numericdata_item.no2 .item .number {
		font-size: 64px;
	}
	.numericdata_item.no2 .man {
		padding-right: 35px;
	}
	.numericdata_item.no2 .woman {
		padding-left: 35px;
	}
	.numericdata_item.no2 .man .item .number {
		width: 73px;
	}
	.numericdata_item.no2 .woman .item .number {
		width: 73px;
	}
	/* coutbox3の設定 */
	.numericdata_item.no3 .imgbox {
		max-width: 110px;
		margin: auto;
	}
	/* coutbox4の設定 */
	.numericdata_item.no4 .left,
	.numericdata_item.no4 .right {
		margin-top: 24px;
	}
	.numericdata_item.no4 .imgbox {
		max-width: 110px;
		margin: 33px auto 0;
	}
	/* coutbox5の設定 */
	.numericdata_item.no5 .imgbox {
		max-width: 110px;
		margin: 0 auto;
	}
	/* coutbox6の設定 */
	.numericdata_item.no6 .imgbox {
		max-width: 110px;
		margin: 0 auto;
	}
}

/*----------------------------------------------------
	.application
----------------------------------------------------*/
.application {
	margin-top: 150px;
	scroll-margin-top: 100px;
}
.application_inner {
	max-width: 716px;
	margin: 80px auto 0;
}
.application_inner .lead {
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 200%;
	color: #323232;
}
.application_inner .lead .sales {
	line-height: 100%;
	color: #fff;
	width: 98px;
	height: 30px;
	background: #086769;
	border-radius: 50px;
	padding: 6px 13px;
}
.application_inner .lead .tec {
	line-height: 100%;
	color: #fff;
	width: 98px;
	height: 30px;
	background: #163D84;
	border-radius: 50px;
	padding: 6px 13px;
}

.application_inner h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 200%;
	text-align: center;
	color: #323232;
	margin-top: 35px;
}
.application_inner ul {
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 200%;
	margin-top: 8px;
}
.application_inner > img {
	margin-top: 24px;
}
.application_inner .text {
	background: #FFFFFF;
	border: 1px solid #1B4A9E;
	border-radius: 8px;
	padding: 20px 24px;
}
.application_inner .text .title {
	background: #163D84;
	border-radius: 50px;
	padding: 4px 13px;
	display: inline-block;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin-top: 0;
}
.application_inner .text p {
	margin-top: 14px;
	font-weight: 500;
	font-size: 16px;
	line-height: 200%;
}
@media only screen and (max-width: 768px) {
	.application {
		margin-top: 80px;
	}
	.application_inner {
		margin-top: 40px;
		padding: 0 20px;
	}
	.application_inner .lead {
		font-size: 14px;
	}
	.application_inner h4 {
		font-size: 14px;
		margin-top: 24px;
	}
	.application_inner ul {
		font-size: 14px;
		text-align: left;
	}
	.application_inner > img {
		margin-top: 16px;
	}
	.application_inner .text {
		margin-top: 30px;
		padding: 19px;
	}
	.application_inner .text .title {
		font-size: 14px;
	}
	.application_inner .text p {
		font-size: 14px;
		margin-top: 10px;
	}
}
/*----------------------------------------------------
	.summary
----------------------------------------------------*/
.summary {
	margin-top: 150px;
	scroll-margin-top: 100px;
}
.summary_inner {
	margin: 80px auto 0;
	max-width: 1266px;
}
.summary_title {
	background: #1B4A9E;
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	color: #FFFFFF;
	padding: 22px 32px;
}
.summary_title:not(:first-of-type) {
	margin-top: 40px;
}
.summary_title img {
	margin-right: 16px;
}
.summary_dl {
	margin-top: 40px;
}
.summary_dl > div {
	display: flex;
}
.summary_dl div dt {
	width: 167px;
	padding: 24px 17px;
	font-weight: 700;
	font-size: 16px;
	color: #1B4A9E;
	border-top: 1px solid #1B4A9E;
}
.summary_dl div dd {
	width: calc(100% - 167px);
	padding: 24px 32px;
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
	color: #323232;
	border-top: 1px solid #BBC5CC;
}
.summary_dl div:last-child dt {
	border-bottom: 1px solid #1B4A9E;
}
.summary_dl div:last-child dd {
	border-bottom: 1px solid #BBC5CC;
}
.summary_dl table .table_header {
	border-bottom: 1px solid #BBC5CC;
}
.summary > div > dl > div > dd > div > table > tbody > tr.table_header > th,
.summary > div > dl > div > dd > div > table > tbody > tr > td {
	padding: 16px 30px;
}
.summary_dl div dd.flex {
	display: flex;
	gap: 16px;
}
.summary_dl div dd .list .list_title {
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
}
.summary_dl div dd .list ul {
	margin-top: 16px;
}
.summary_dl div dd .list ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
	padding-left: 16px;
	position: relative;
}
.summary_dl div dd .list ul li::before {
	position: absolute;
	content: "・";
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.summary_dl .font_bold {
	font-weight: 700;
}
.summary_dl p:not(:first-child) {
	margin-top: 16px;
}
.summary_dl .mt24 {
	margin-top: 24px;
}
.table_pc {
	display: block;
}
.table_sp {
	display: none;
}
@media only screen and (max-width: 768px) {
	.summary {
		margin-top: 80px;
	}
	.summary_inner {
		margin-top: 40px;
		padding: 0 20px;
	}
	.summary_title {
		padding: 16px 21px;
		font-size: 16px;
	}
	.summary_title img {
		margin-right: 10px;
	}
	.summary_dl {
		margin-top: 20px;
	}
	.summary_dl div dt {
		width: 86px;
		font-size: 14px;
		padding: 24px 0 0 0;
	}
	.summary_dl div dd {
		font-size: 14px;
		padding: 24px 0 24px 16px;
		width: calc(100% - 86px);
	}
	.summary_title:not(:first-of-type) {
		margin-top: 20px;
	}
	.summary_dl div dd.flex {
		flex-direction: column;
	}
	.summary_dl div dd .list .list_title {
		font-size: 14px;
	}
	.summary_dl div dd .list ul {
		margin-top: 10px;
	}
	.summary_dl div dd .list ul li {
		font-size: 14px;
	}
	.table_pc {
		display: none;
	}
	.table_sp {
		display: block;
	}
	.table_sp table {
		width: 100%;
	}
	.table_sp table + table {
		margin-top: 12px;
	}
	.table_header td {
		font-weight: 700;
	}
	.table_content td {
		border-bottom: 1px solid #BBC5CC;
		text-align: left;
	}
	.table_content td span {
		font-weight: 700;
		display: block;
	}
	.table_content td span:nth-of-type(2) {
		margin-top: 10px;
	}
	.summary > div > dl > div > dd > div > table > tbody > tr.table_header > th,
	.summary > div > dl > div > dd > div > table > tbody > tr > td {
		padding: 14px 0;
	}
}

/*----------------------------------------------------
	.flow
----------------------------------------------------*/
.flow {
	margin-top: 150px;
	scroll-margin-top: 100px;
}
.flow_inner {
	justify-content: space-between;
	max-width: 1266px;
	margin: 80px auto 0;
}
.flow_item {
	display: flex;
	gap: 74px;
	font-size: 30px;
	padding: 48px 70px;
}
.flow_item:nth-child(odd) {
	background: #F4F7F9;
}
.flow_item:nth-child(even) {
	background: #EAEDF7;
}
.flow_item .num {
	position: relative;
	width: 136px;
	height: 136px;
	color: #fff;
	font-family: 'BebasKai';
	font-size: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 11px;
	background: #1B4A9E;
	box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.1), 10px 10px 20px rgba(0, 0, 0, 0.1);
}
.flow_item .num::before {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin: auto;
	content: "";
	height: 168px;
	width: 3px;
	background: #1B4A9E;
}
.flow_item:last-child .num::before {
	content: none;
}
.flow_item .num div {
	font-size: 53px;
	display: block;
	line-height: 1;
}
.flow_item_content {
	width: calc(100% - 167px);
}
.flow_item_content .title {
	font-weight: 700;
	font-size: 28px;
	line-height: 160%;
	color: #1B4A9E;
}
.flow_item_content .title span {
	font-size: 20px;
}
.flow_item_content p {
	font-size: 16px;
	line-height: 180%;
}
.flow_item_content .career_p {
	margin-top: 10px;
}
.flow_item_content .font-bold {
	font-weight: 700;
	color: #323232;
}
.flow_item_content .font-red {
	color: #D93431;
}
.flow_item_content .tag {
	font-weight: 700;
	color: #fff;
	padding: 6px 13px;
	background: #163D84;
	border-radius: 50px;
	margin-right: 16px;
}
.flow_item_content ol li {
    font-size: 16px;
    line-height: 180%;	
}
.flow_item_content ul {
	margin-top: 24px;
}
.flow_item_content ul li {
	font-weight: 700;
	font-size: 16px;
	line-height: 200%;
	padding-left: 16px;
	position: relative;
}
.flow_item_content ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.flow > .text {
	background: #FFFFFF;
	border: 1px solid #1B4A9E;
	border-radius: 8px;
	padding: 20px 24px;
	max-width: 1266px;
	margin: 30px auto 0;
}
.flow > .text .title {
	background: #163D84;
	border-radius: 50px;
	padding: 8px 13px;
	display: inline-block;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 13px;
}
.flow > .text p {
	margin-top: 14px;
	font-weight: 500;
	font-size: 16px;
	line-height: 200%;
}
@media only screen and (max-width: 768px) {
	.flow {
		margin-top: 80px;
	}
	.flow_inner {
		margin-top: 40px;
		padding: 0 20px;
		position: relative;
	}
	.flow_inner::after {
    position: absolute;
    left: 41px;
    top: 43px;
    /* margin: auto; */
    content: "";
    height: 87%;
    width: 3px;
    background: #1B4A9E;
}
	.flow_item {
		padding: 25px 20px 25px 74px;
		gap: 20px;
		position: relative;
	}
	.flow_item .num {
		width: 64px;
		height: 64px;
		font-size: 16px;
		position: absolute;
		top: 15px;
		left: -10px;
		padding-top: 1px;
		z-index: 1;
	}
	.flow_item .num::before {
		content: none;
	}
	.flow_item .num div {
		font-size: 32px;
	}
	.flow_item_content {
		width: 100%;
	}
	.flow_item_content .title {
		font-size: 20px;
	}
	.flow_item_content .title span {
		font-size: 14px;
	}
	.flow_item_content .title span.seminar {
		display: block;
		margin-top: -5px;
	}
	.flow_item_content p {
		font-size: 14px;
		margin-top: 10px;
	}
	.flow_item_content ol li {
		font-size: 14px;
	}
	.flow > .text {
		max-width: 90%;
		margin: 20px auto 0;
		padding: 20px;
	}
	.flow > .text .title {
		font-size: 14px;
		padding: 6px 13px;
	}
	.flow > .text p {
		font-size: 14px;
	}
}

/*----------------------------------------------------
	.faq
----------------------------------------------------*/
.faq {
	margin-top: 150px;
}
.faq_wrapper {
	width: 100%;
	max-width: 1266px;
	margin: 70px auto 0;
}
.faq_item {
	background: #F4F7F9;
	border-radius: 2px;
	padding: 40px 64px;
}
.faq_item:not(:first-child) {
	margin-top: 9px;
}
.faq_item .question {
	font-weight: 700;
	font-size: 20px;
	line-height: 180%;
	color: #1B4A9E;
	padding-left: 16px;
	border-left: 2px solid rgba(27, 74, 158, .3);
}
.faq_item .answer {
	margin-top: 32px;
	font-weight: 500;
	font-size: 20px;
	line-height: 180%;
}
@media screen and (max-width: 768px) {
	.faq {
		margin-top: 88px;
	}
	.faq_wrapper {
		max-width: 89%;
		margin-top: 40px;
	}
	.faq_item {
		padding: 20px;
	}
	.faq_item .question {
		font-size: 14px;
		padding-left: 10px;
	}
	.faq_item .answer {
		font-size: 14px;
		margin-top: 16px;
	}
}

/*----------------------------------------------------
	.entry
----------------------------------------------------*/
.entry {
	background-image: url(../images/recruit/low/bg_entry.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: 32px;
	height: 673px;
	margin: 150px calc(50% - 50vw) 0;
	scroll-margin-top: 100px;
}
.entry_inner {
	display: flex;
	gap: 42px;
	width: 100%;
	max-width: 960px;
	margin: 105px auto 0;
}
.entry_item {
	width: 50%;
	max-width: 459px;
}
.entry_item_title {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	padding: 10px 16px;
	display: flex;
	align-items: baseline;
	justify-content: center;
	position: relative;
}
.entry_item_title span {
	font-size: 36px;
	line-height: 1;
	font-family: 'BebasKai','YuGothic';
}
.entry_item:first-child .entry_item_title {
	background: #1B4A9E;
}
.entry_item:first-child .entry_item_title::before {
	content: "";
	position: absolute;
	bottom: -9px;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 8px 0 8px;
border-color: #1B4A9E transparent transparent transparent;
}
.entry_item:last-child .entry_item_title {
	background: #1287BF;
}
.entry_item:last-child .entry_item_title::before {
	content: "";
	position: absolute;
	bottom: -9px;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 8px 0 8px;
border-color: #1287BF transparent transparent transparent;
}
.entry_item_links {
	max-width: 403px;
	margin: 40px auto 0;
}
.entry_item_links a {
	display: flex;
	height: 80px;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #FFFFFF;
	border: 1px solid #323232;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
	border-radius: 140px;
	font-weight: 700;
	font-size: 20px;
	/* padding-left: 74px; */
	transition: .3s;
	overflow: hidden;
	z-index: 1;
}
.entry_item_links a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	transition: .3s;
	z-index: -1;
}
.entry_item:first-child .entry_item_links a::before {
	background-color: #163D84;
}
.entry_item:last-child .entry_item_links a::before {
	background-color: #1287BF;
}
.entry_item_links a:hover:before {
	transform: translateX(0);
}
.entry_item_links a .icon {
	width: 43px;
	height: 43px;
	margin-right: 16px;
}
.entry_item .entry_item_links a:hover {
	color: #fff;
}
.entry_item:first-child .entry_item_links a:first-child {
	color: #1B4A9E;
}
.entry_item:first-child .entry_item_links a:first-child:hover {
	color: #fff;
}
.entry_item:last-child .entry_item_links a:first-child {
	color: #1287BF;
}
.entry_item:last-child .entry_item_links a:first-child:hover {
	color: #fff;
}
.entry_item:first-child .entry_item_links a:first-child .icon {
	background-image: url(../images/recruit/low/ic_contact_01.svg);
	background-repeat: no-repeat;
	background-size: 43px 43px;
	transition: .3s;
}
.entry_item:last-child .entry_item_links a:first-child .icon {
	background-image: url(../images/recruit/low/ic_contact_02.svg);
	background-repeat: no-repeat;
	background-size: 43px 43px;
	transition: .3s;
}
.entry_item:first-child .entry_item_links a:first-child:hover .icon {
	background-image: url(../images/recruit/low/ic_contact_01_hover.svg);
	background-repeat: no-repeat;
	background-size: 43px 43px;
	transition: .3s;
}
.entry_item:last-child .entry_item_links a:first-child:hover .icon {
	background-image: url(../images/recruit/low/ic_contact_02_hover.svg);
	background-repeat: no-repeat;
	background-size: 43px 43px;
	transition: .3s;
}
.entry_item:last-child .entry_item_links a:first-child.entry_item_links_career {
	color: #1B4A9E;
}
.entry_item:last-child .entry_item_links a:first-child.entry_item_links_career:hover {
	color: #fff;
}
.entry_item_links a + a {
	margin-top: 16px;
}
/* .entry_item:first-child .entry_item_links a > img {
	max-height: 56px;
} */
.entry_item .entry_item_links a > img {
	max-height: 56px;
} 
.entry_item:first-child .entry_item_links a:last-child:before {
	background-color: #163D84;
}
.entry_item .baloon {
	text-align: center;
	margin-top: 24px;
	position: relative;
}
.entry_item .baloon::before,
.entry_item .baloon::after {
	content: "";
	width: 94px;
	height: 100px;
	position: absolute;
	top: 0;
	background-size: cover;
}
.entry_item .baloon::before {
	background-image: url(../images/recruit/low/line_left.svg);
	background-repeat: no-repeat;
	left: -40px;
}
.entry_item .baloon::after {
	background-image: url(../images/recruit/low/line_right.svg);
	background-repeat: no-repeat;
	right: -40px;
}
.entry_item .baloon span {
	display: inline-block;
	margin: auto;
	padding: 6px 13px;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	background: #1287BF;
}
.entry_item .baloon span:last-child {
	margin-top: 5px;
}
/* career */
.entry_inner.career {
	justify-content: center;
}
.entry_inner.career .entry_item {
	width: auto;
	max-width: unset;
}
.entry_inner.career .entry_item:last-child .entry_item_title {
	background: #1B4A9E;
	font-size: 16px;
	text-align: center;
}
.entry_inner.career .entry_item:last-child .entry_item_title::before {
	border-color: #1B4A9E transparent transparent transparent;
}
.entry_inner.career .entry_item:last-child .entry_item_links a:first-child .icon {
	background-image: url(../images/recruit/low/ic_contact_01.svg);
}
.entry_inner.career .entry_item:last-child .entry_item_links a:first-child:hover .icon {
	background-image: url(../images/recruit/low/ic_contact_01_hover.svg);
}
.entry_inner.career .entry_item:last-child .entry_item_links a::before {
	background-color: #163D84;
}

.tel_box {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	gap: 48px;
	padding: 22px 29px;
	background: #fff;
	color: #323232;
	text-align: center;
	box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.1), 10px 10px 20px rgba(0, 0, 0, 0.1);
}
.tel_box .tag {
	background: #1287BF;
	border-radius: 50px;
	color: #fff;
}
.tel_box .tel_num {
	margin-top: 11px;
	font-weight: 700;
	font-size: 16px;
	line-height: 200%;
	display: flex;
	align-items: center;
}
.tel_box .tel_num img {
	margin-right: 6px;
}
.tel_box .name {
	font-weight: 500;
	font-size: 14px;
	line-height: 200%;
	margin-top: 11px;
}

@media only screen and (max-width: 768px) {
	.entry {
		background-position-y: 16px;
		/* height: 766px;
		margin-top: 80px; */
		height: auto;
		padding-bottom: 80px;
		margin-top: 100px;
	}
	.entry_inner {
		margin-top: 40px;
		flex-direction: column;
		padding: 0 20px;
		align-items: center;
	}
	.entry_item {
		width: 100%;
	}
	.entry_item_title {
		font-size: 18px;
		padding: 4px 16px;
	}
	.entry_item_title span {
		font-size: 32px;
		font-weight: 400;
	}
	.entry_item_links {
		margin-top: 26px;
	}
	.entry_item_links a {
		font-size: 16px;
		height: 64px;
	}
	.entry_item_links a .icon {
		width: 32px;
		height: 32px;
	}
	.entry_item:first-child .entry_item_links a:first-child .icon {
		background-size: contain;
	}
	.entry_item:first-child .entry_item_links a:first-child:hover .icon {
		background-size: contain;
	}
	.entry_item:last-child .entry_item_links a:first-child .icon {
		background-size: contain;
	}
	.entry_item:last-child .entry_item_links a:first-child:hover .icon {
		background-size: contain;
	}
	.entry_item:first-child .entry_item_links a > img {
		max-height: 56px;
	}
  .entry_item .baloon {
    display: flex;
    flex-direction: column;
  }
	.entry_item .baloon span {
		font-size: 14px;
	}
	.entry_item .baloon::before,
	.entry_item .baloon::after {
		width: 85px;
    height: 82px;
	}
	.entry_item .baloon::before {
		left: -6px;
    top: -6px;
	}
	.entry_item .baloon::after {
		right: -6px;
    top: -6px;
	}
	.tel_box {
		gap: 24px;
		padding: 20px 28px;
	}
	.tel_box .tag {
		font-size: 14px;
	}
	.tel_box .tel_num {
		font-size: 14px;
	}
	.tel_box .name {
		font-size: 12px;
	}
}

/* ローディング */
.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.loading .circle {
  display: block;
  position: relative;
  top: calc( 50% - 20px );
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 4px solid #e0e0e0;
  border-top: 3px solid #D93431;
  border-radius: 50px;
  animation: loading 700ms ease-in-out 0ms infinite normal both;
}
@keyframes loading {
  0% { transform: rotate( 0deg ); }
  100% { transform: rotate( 360deg ); }
}

@keyframes fadeInUpMin {
	from {
			opacity: 0;
			/* transform: translate3d(0, 10%, 0); */
			transform: translateY(30px);
	}
	to {
			opacity: 1;
			transform: none;
	}
}
.fadeInUpMin {
	animation-name: fadeInUpMin;
}
