@charset "utf-8";

@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600&display=swap');

/* Base Style
================================================== */
html {
	font-size: 62.5%;
}

body {
	position: relative;
	background-color: #fff;
	color: #000;
	font-size: 1.5rem;
	font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
}

a:link {
	color: #06c;
	transition: color .2s ease-out, background-color .2s ease-out, border-bottom-color .2s ease-out;
}

a:visited {
	color: #66c;
}

a:hover,
a:focus {
	color: #c33;
}

a:focus img {
	background-color: transparent;
}

sup {
	font-size: 75%;
	vertical-align: text-top;
	line-height: 1;
}

sub {
	font-size: 75%;
	vertical-align: text-bottom;
	line-height: 1;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}

#map-canvas img {
	max-width: none;
}

pre, code, kbd, samp, tt {
	font-family: 'Courier New', Courier, Monaco, monospace;
}

abbr[title], dfn[title] {
	border-bottom-color: #999;
	cursor: help;
}

input, select, textarea {
	color: #000;
	font-family: inherit;
	font-size: 100%;
	-webkit-appearance: none;
}

input[type="submit"] {
	appearance: none;
}

:focus:not(:focus-visible) {
	outline: none;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* 固定ヘッダーがあるなら、-100 の代わりに */
section { scroll-margin-top: 100px; }


.new {
	display: inline-block;
	margin-right: .25em;
	padding: 2px .25em;
	border-radius: 3px;
	background-color: #c00;
	color: #fff;
	font-size: 1.4rem;
	font-weight: normal;
	line-height: 1;
	text-transform: uppercase;
}

.hide,
.scrText {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
}

.icon-external-link {
	display: inline-block;
	margin-left: .25em;
	font-size: 87.5%;
	vertical-align: text-bottom;
}

/* del {
	text-decoration: none;
	position: relative;
}

del::before {
	content: '';
	position: absolute;
	top: calc(50% + 1px);
	left: 0;
	transform: translateY(-50%);
	border-top: 4px double #666;
	width: 100%;
}

ins {
	margin-left: .5em;
} */


/* Layout
================================================== */
.inner {
	width: 100%;
	max-width: 1430px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.sectionBody {
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}


@media screen and (max-width: 767px) {
	.sectionBody,
	.inner {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Common Header
================================================== */
#commonHeader {
	position: relative;
	background-color: #EEF9FF;
  padding: 24px 0 56px;
	z-index: 100;
}

#commonHeader.fixed {
	position: fixed;
  width: 100%;
  top: 0;
  left: 0;
	padding: 10px 0;
  transition: all .3s ease;
}

#commonHeader .inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

#commonHeader.fixed .inner {
	align-items: center;
}

#commonHeader .siteId {
	transition: all .3s;
}

#commonHeader .siteId a {
	display: block;
	text-decoration: none;
}

#commonHeader .siteId a span {
	display: block;
	margin-bottom: 12px;
	color: #004080;
	text-align: center;
	transition: font-size .2s;
}

#commonHeader.fixed .siteId {
	width: 170px;
  height: auto;
}

#commonHeader.fixed .siteId a span {
	font-size: 1.2rem;
}

#commonHeader nav .externalLnk.sp {
	display: none;
}

#commonHeader nav .externalLnk.pc {
	display: block;
	display: flex;
}

#commonHeader nav .externalLnk {
	display: flex;
	justify-content: flex-end;
	gap: 64px;
	padding: 0 10% 10px 0;
	overflow: hidden;
	max-height: 33px;
	opacity: 1;
	transform: translateY(0);
	transition:
    max-height .3s ease,
    opacity .3s ease,
    transform .3s ease,
    padding .3s ease;
  will-change: transform, max-height, opacity;
}

#commonHeader.fixed nav .externalLnk {
	padding-bottom: 0;
  max-height: 0;
  opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
}


#commonHeader nav .gNav {
	display: flex;
	justify-content: flex-end;
	gap: 48px;
	padding: 22px 0;
  border: 1px solid #004080;
  border-radius: 40px;
  background-color: #F5F2F2;
}

#commonHeader nav ul a {
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

#commonHeader nav .externalLnk a {
	transition: opacity .3s;
}

#commonHeader nav .externalLnk a:hover {
	opacity: .7;
}

#commonHeader nav .gNav a {
	padding-right: .25em;
	padding-bottom: 2px;
	position: relative;
}

#commonHeader nav .gNav a[href*="#price"] {
	padding-right: .75em;
}

#commonHeader nav .gNav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #004080;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: .3s;
}

#commonHeader nav .gNav a::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 5%;
  height: 8px;
  width: 3px;
  background-color: #004080;
  transform: skew(42deg);
  transition: left .3s;
  opacity: 0;
}

#commonHeader nav .gNav a:hover::after {
  width: 110%;
}

#commonHeader nav .gNav a[href*="#price"]:hover::after {
  width: 108%;
}

#commonHeader nav .gNav a:hover::before {
  left: 105%;
  opacity: 1;
}

#commonHeader nav .gNav a[href*="#price"]:hover::before {
  left: 100%;
}

#commonHeader nav .gNav li:has(a[href*="#strengths"]) {
	margin-left: 40px;
}

#commonHeader nav .gNav li:has(a[href*="#application"]) {
	margin-right: 40px;
	padding-left: 24px;
}

#commonHeader nav .gNav a[href*="#application"] {
	padding: 12px 22px;
	border: 1px solid #004080;
	border-radius: 30px;
  background-color: #004080;
	color: #fff;
  font-weight: 600;
	transition: all .3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#commonHeader nav .gNav a[href*="#application"]:hover {
	color: #004080;
	background-color: #fff;
}

#commonHeader nav .gNav a[href*="#application"]::after,
#commonHeader nav .gNav a[href*="#application"]::before {
	content: none;
}

.focusTrap {
	display: none;
}

@media screen and (max-width: 1000px) {
	#commonHeader .siteId a img {
		width: 188px;
	}

	#commonHeader .siteId a span {
		font-size: 1.2rem;
	}

	#commonHeader nav .gNav {
	  gap: 24px;
	  /* padding: 16px 20px; */
	}

	#commonHeader nav .gNav li:has(a[href*="#strengths"]) {
		margin-left: 20px;
	}

	#commonHeader nav .gNav li:has(a[href*="#application"]) {
		margin-right: 20px;
	  padding-left: 8px;
	}

	#commonHeader nav .gNav a[href*="#application"] {
	  padding: 8px 16px;
	}
}

@media screen and (max-width: 767px) {
	#commonHeader .siteId {
		width: 170px;
  	height: auto;
	}

	body.menuOpen {
	  overflow: hidden;
	  height: 100%;
	}

	body.menuOpen .focusTrap {
		display: block;
	}

	#commonHeader nav .externalLnk.sp {
		display: block;
		display: flex;
	}

	#commonHeader nav .externalLnk.pc {
		display: none;
	}

	#commonHeader {
		position: fixed;
    width: 100%;
		padding: 10px 0;
		top: 0;           /* 追加 */
    left: 0;          /* 追加 */
    z-index: 1200;    /* 追加：初期表示から最前面に */
	}

	#commonHeader .inner {
		align-items: center;
	}

	#commonHeader nav {
		width: 100%;
    max-width: 100%;
	}

	#commonHeader .siteId a span {
		font-size: 1.2rem;
	}

	#globalNav {
		position: fixed;
		top: 110px;
		left: 0;
		width: 100vw;
		height: 100vh;
		padding-top: 40px;
		opacity: 0;
		visibility: hidden;
		box-sizing: border-box;
		background-color: #fff;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
    gap: 16px;
		transition: opacity .2s ease-in, visibility .2s ease-in;
		overflow: hidden;
	}

	body.menuOpen #globalNav {
		opacity: 1;
		visibility: visible;
		transition: opacity .2s ease-out, visibility .2s ease-out;
	}

	#commonHeader nav ul {
		width: 100%;
	  max-width: 200px;
	  margin: 0 auto;
	}

	#commonHeader nav ul a {
		display: block;
		margin: 2px;
		font-size: 1.8rem;
    font-weight: 500;
	}

	#commonHeader nav .gNav a::after,
	#commonHeader nav .gNav a::before {
		content: none;
	}

	#commonHeader.fixed nav .externalLnk {
		opacity: 1;
    transform: unset;
    max-height: unset;
	}

	#commonHeader nav .externalLnk {
		flex-direction: column;
	  gap: 16px;
	  max-height: unset;
	  padding: 0;
	  justify-content: center;
	}

	#commonHeader nav .gNav {
		gap: 16px;
	  padding: 0;
	  border: 0;
	  background-color: transparent;
	  flex-direction: column;
	}

	#commonHeader nav .gNav li:has(a[href*="#strengths"]) {
		margin-left: 0;
	}

	#commonHeader nav .gNav li:has(a[href*="#application"]) {
		margin-right: 0;
		 padding-left: 0;
	}

   #commonHeader nav .gNav a[href*="#application"] {
		padding: 0;
    border: 0;
		border-radius: 0;
    background-color: transparent;
    font-weight: 500;
    color: #333;
	 }

	 #commonHeader nav .gNav a[href*="#application"]::after {
		 content: none;
	 }
}


/* Menu
================================================== */
#spMenu {
	display: none;
}

@media screen and (max-width: 767px) {
	#spMenu {
		display: block;
		position: relative;
    z-index: 1300;
	}

	#spMenu button {
		display: block;
		width: 35px;
		height: 28px;
		padding: 0;
		border: 0;
		background-color: transparent;
	}

	#spMenu::after,
	#spMenu button::before,
	#spMenu button::after {
		content: '';
		position: absolute;
		width: 100%;
		left: 50%;
		transform: translateX(-50%);
		border-bottom: 2px solid #004080;
		transition: all .3s ease;
	}

	#spMenu::after {
		top: 50%;
	}

	#spMenu button::before {
		top: 0;
	}

	#spMenu button::after {
		top: 100%;
	}

	body.menuOpen #spMenu::after {
		width: 0;
	}

	body.menuOpen #spMenu button::before,
	body.menuOpen #spMenu button::after {
		top: 50%;
	}

	body.menuOpen #spMenu button::before {
		transform: translateX(-50%) rotate(45deg);
	}

	body.menuOpen #spMenu button::after {
		transform: translateX(-50%) rotate(-45deg);
	}
}

/* =========================================================
   GlobalNav / SPメニュー
   - SP幅：閉＝ヒット不可 / 開＝ヒット可
   - PC幅：常にヒット可
   - iOS Safari / DDG のタップ抜け・レイヤー乱れ対策
   - スタッキング順：button > spMenu > header > globalNav
   ========================================================= */

/* メニュー開中に固定ボタンが下のリンクをブロックしない */
.menuOpen #alwaysBtn { pointer-events: none; }

/* 擬似要素がヒットを奪うのを防ぐ（常時） */
#spMenu::after,
#spMenu button::before,
#spMenu button::after {
  pointer-events: none;
}

@media (min-width: 768px) {
  #globalNav { pointer-events: auto; }
}

@media (max-width: 767px) {

  /* 非表示ナビはタップを通す／表示時はヒット可（aria-hidden基準） */
  #globalNav[aria-hidden="true"]  { pointer-events: none; }
  #globalNav[aria-hidden="false"] { pointer-events: auto; }

  /* 初期ロードは必ず閉＝ヒット不可、開いた時だけ可（menuOpen基準） */
  #globalNav { pointer-events: none !important; }               /* 初期＝閉 */
  body.menuOpen #globalNav { pointer-events: auto !important; } /* 開時のみ可 */

  /* スタッキング： button > spMenu > header > globalNav */
  #commonHeader {
    position: fixed; top: 0; left: 0;
    z-index: 1200 !important;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
  }
  #spMenu {
    position: relative;
    z-index: 1300 !important;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  #spMenu button {
    position: relative;
    z-index: 1310 !important;
    pointer-events: auto;                /* 明示 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    touch-action: manipulation;
  }
  #globalNav { z-index: 1190 !important; }  /* ヘッダーより下層 */

  /* SP向けの前後関係（必要時の明示） */
  #globalNav { position: fixed; }  /* ナビは固定配置 */
  #spMenu    { position: relative; }

  /* ヘッダー固定時の外部リンクが操作不能にならないように */
  #commonHeader.fixed nav .externalLnk { pointer-events: auto; }
}


/* KeyVisual
================================================== */
#commonHeader.fixed + #keyvisual {
	padding-top: 160px;
}

#keyvisual {
	border-bottom: 40px solid #fff;
	background-color: #EEF9FF;
	color: #fff;
	position: relative;
}

#keyvisual::before {
	position: absolute;
	content: "";
	bottom: -48px;
  right: 0;
	width: 810px;
	height: 615px;
	background: url(/images/img_keyvisual.png) no-repeat right bottom / 810px;
	z-index: 0;
}

#keyvisual .keyvisual_inner {
	width: 90vw;
	margin: 0 auto -40px;
	padding: 64px;
	background-color: #004080;
	box-sizing: border-box;
}

#keyvisual .catch02,
#keyvisual .catch01 {
	position: relative;
	text-shadow:
    1px  0   0 #004080,
   -1px  0   0 #004080,
    0    1px 0 #004080,
    0   -1px 0 #004080,
    1px  1px 0 #004080,
   -1px  1px 0 #004080,
    1px -1px 0 #004080,
   -1px -1px 0 #004080;
}

#keyvisual .catch01 {
	margin-bottom: 56px;
	font-size: clamp(3.2rem, 5vw, 4.35rem);
	font-weight: 700;
}

#keyvisual .catch02 {
	margin-bottom: 184px;
	font-size: 2.4rem;
	font-weight: 500;
}

#keyvisual .application_link {
	margin-bottom: 80px;
	position: relative;
}

.linkBtn a,
#keyvisual .application_link a {
	display: block;
	width: 100%;
	max-width: 494px;
  padding: 20px;
  border: 4px solid #FF9D00;
  border-radius: 5px;
  background-color: #FF9D00;
  font-size: 3.0rem;
  color: #000;
  font-weight: 600;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
  transition: background-color .2s ease-out;
}

.linkBtn a:hover,
#keyvisual .application_link a:hover {
	background-color: #fff;
}

@media screen and (min-width: 2000px) {
	#keyvisual .catch02 br,
	#keyvisual .catch01 br {
		display: none;
	}
}

@media screen and (max-width: 1250px) {
	#keyvisual::before {
		width: 560px;
  	height: 426px;
		background-size: 560px;
	}

	#keyvisual .keyvisual_inner {
		padding-top: 40px;
		padding-left: 32px;
	}

	#keyvisual .catch02 {
		margin-bottom: 80px;
	}

	#keyvisual .application_link {
		margin-bottom: 0;
	}

	#keyvisual .application_link a {
		max-width: 48vw;
	}
}

@media screen and (max-width: 1000px) {
	#keyvisual::before {
		width: 50vw;
    height: 380px;
    background-size: 50vw;
	}
}

@media screen and (max-width: 767px) {
	#commonHeader.fixed + #keyvisual {
		padding-top: 0;
	}

	#keyvisual {
		padding-top: 110px;
	}

	#keyvisual::before {
		width: 80vw;
    height: 64vw;
    background-size: 80vw;
    bottom: 64px;
	}

	#keyvisual .keyvisual_inner {
		width: 96vw;
		padding: 24px 16px;
	}

	#keyvisual .catch01 {
		margin-bottom: 16px;
		font-size: clamp(2.2rem, 5.5vw, 4.5rem);
	}

	#keyvisual .catch02 {
		margin-bottom: 64vw;
		font-size: clamp(1.6rem, 4.8vw, 2.4rem);
	}

	#keyvisual .application_link a {
		max-width: 100%;
		font-size: clamp(2.4rem, 4.8vw, 3.2rem);
	}
}

/* Content
================================================== */
#content section {
	padding: 100px 0;
}

#content section header h2 {
	margin-bottom: 96px;
}

#content section header h2 .en {
	font-size: 9.6rem;
  color: #93BDE6;
  font-weight: 700;
}

#content section header h2 .ja {
	display: block;
	font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 864px) {
	#content section#price header h2 .en {
		font-size: 8.4rem;
	}
}

@media screen and (max-width: 767px) {
	#content section {
		padding: 8.25vw 0 12.5vw;
	}

	#content section header h2 {
	  margin-bottom: 48px;
	}

	#content section header h2 .en {
		font-size: 4.8rem;
	}

	#content section header h2 .ja {
		font-size: 3.0rem;
	}
}

@media screen and (max-width: 479px) {
	#content section header h2 {
	  margin-bottom: 32px;
	}

	#content section header h2 .en {
		font-size: 3.2rem;
	}

	#content section header h2 .ja {
		font-size: 2.4rem;
	}
}

.linkBtn {
	display: flex;
  align-items: center;
  justify-content: center;
	margin-top: 64px;
}


/* Challenges 採用の壁  Solutions ビズリクが応えます */
ul.flexBox01 {
	display: flex;
  justify-content: center;
	flex-wrap: wrap;
  gap: 24px;
}

ul.flexBox01 li {
	display: flex;
  flex-direction: column;
	align-items: center;
  gap: 24px;
}

ul.flexBox01 li span {
	display: flex;
  align-items: center;
  justify-content: center;
	flex-direction: column;
	width: 9.8em;
  height: 9.8em;
	border: 5px solid #93BDE6;
  border-radius: 50%;
  padding: 24px 10px;
	background-color: transparent;
  font-size: 2.0rem;
  font-weight: 500;
	text-align: center;
  box-sizing: border-box;
}

ul.flexBox01 li span em {
	padding-bottom: .5em;
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 600;
}

#content section#strengths {
	padding-bottom: 10px;
}

#strengths {
	background-color: #EEF9FF;
}

#strengths ul.flexBox01 {
	row-gap: 24px;
  column-gap: 32px;
	margin-bottom: 0;
}

#strengths ul.flexBox01 li span {
	width: 10.6em;
  height: 10.6em;
	padding-top: 34px;
	border-color: #FF9D00;
  background-color: #fff;
	font-size: 2.6rem;
  font-weight: 600;
}

.to_strengths {
	padding: 80px 0 64px;
}

.to_strengths .comments {
  max-width: 690px;
	margin: 0 auto;
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
}

.to_strengths .comments p {
	display: block;
	margin-bottom: 1.5em;
}

#demo {
	background-color: #EEF9FF;
}

#demo p {
	margin-bottom: 24px;
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
}

#demo .image {
	text-align: center;
}

@media screen and (max-width: 1155px) {
	#challenges ul.flexBox01 li {
		gap: 16px;
	}
}

@media screen and (max-width: 1331px) {
	#strengths ul.flexBox01 li span em {
		font-size: 2.2rem;
	}

	ul.flexBox01 li span {
		font-size: 1.8rem;
	}

	#challenges ul.flexBox01 li {
		gap: 8px;
	}

}

@media screen and (max-width: 932px) {
	#strengths ul.flexBox01 li span {
		padding-top: 34px;
		width: 8.6em;
		height: 8.6em;
		font-size: 2.2rem;
	}

	#strengths ul.flexBox01 {
		column-gap: 12px;
	}
}

@media screen and (max-width: 767px) {
	#strengths {
		padding-top: 80px !important;
	}

	ul.flexBox01 {
		gap: 20px;
	}

	ul.flexBox01 li span {
	  padding: 12px 6px;
	}

	#strengths ul.flexBox01 {
    row-gap: 48px;
  }

	#strengths ul.flexBox01 li {
    gap: 8px;
  }

	.to_strengths .comments {
		font-size: 2.2rem;
	}

	#demo p {
		font-size: 2.0rem;
	}
}

@media screen and (max-width: 630px) {
	ul.flexBox01 li {
		flex-direction: row;
	}

	ul.flexBox01 li:nth-child(even) {
		flex-direction: row-reverse;
	}

	ul.flexBox01 li img {
		width: 40%;
	}

	#challenges ul.flexBox01 li {
		justify-content: center;
  }

	#strengths ul.flexBox01 li {
		gap: 0;
		align-items: flex-start;
		justify-content: center;
	}

	#strengths ul.flexBox01 li span {
		padding-top: 20px;
	}

	#strengths ul.flexBox01 li span br {
		display: none;
	}

	#strengths ul.flexBox01 li img {
		width: 30%;
		min-width: 72px;
	}

}

/* to_solutions ビズリクでで採用問題を解決！ */
#content .to_solutions {
	padding: 128px 0;
	background-color: #004080;
	color: #fff;
	text-align: center;
	position: relative;
}

#content .to_solutions::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 96px solid transparent;
  border-right: 96px solid transparent;
  border-top: 64px solid #fff;
}

#content .to_solutions::after {
  content: "";
  position: absolute;
  bottom: -63px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 96px solid transparent;
  border-right: 96px solid transparent;
  border-top: 64px solid #004080;
}

#content .to_solutions .title {
	display: flex;
  justify-content: center;
	font-size: 3.4rem;
	font-weight: 700;
}

#content .to_solutions .title span {
	display: block;
  margin-top: .25em;
}

#content .to_solutions .text {
	font-size: 2.0rem;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	#content .to_solutions {
		padding: 128px 0 64px;
	}

	#content .to_solutions .title span {
	  margin-top: 0;
	}
}

@media screen and (max-width: 479px) {
	#content .to_solutions .title {
		flex-direction: column;
	  align-items: center;
		margin-bottom: 24px;
		font-size: 2.8rem;
	}
}

/* step4 採用成功までの4ステップ */
#step4 {
	background-color: #FEFAE4;
	position: relative;
}

#step4::after {
	position: absolute;
	content: "";
	bottom: -56px;
	right: 0;
	width: 788px;
	height: 528px;
	background: url(/images/img_person01.png) no-repeat right bottom / 788px;
	z-index: 1;
}

#step4 h3 {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 3.2rem;
	font-weight: 600;
	color: #004080;
}

#step4 h3 img {
	padding-left: .5em;
}

#step4 .step_list {
	display: flex;
	gap: clamp(24px, 5vw, 72px);
}

#step4 .step_list li {
	flex-basis: 20.5%;
	display: flex;
	flex-direction: column;
}

#step4 ol.step_list .no {
	margin-bottom: 16px;
	font-size: 3.2rem;
	font-weight: 600;
	color: #004080;
}

#step4 .step_list li .step_wrap {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 28px 36px;
	background-color: #fff;
	position: relative;
}

#step4 .step_list li .step_wrap::after {
	position: absolute;
  content: "";
  right: -56px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 48px solid transparent;
  border-bottom: 48px solid transparent;
  border-left: 56px solid #fff;
}

#step4 .step_list li:last-child .step_wrap::after {
	content: none;
}

#step4 ul.step_list li .step_wrap::after {
	content: none;
}

#step4 .step_list li .step_wrap span {
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
}

#step4 .step_list li .step_wrap .image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 154px;
}

#step4 .step_list li .step_wrap p {
	font-size: 2.0rem;
	font-weight: 500;
}

#step4 ol.step_list {
	margin-bottom: 88px;
}

@media screen and (max-width: 1280px) {
	#step4::after {
		bottom: -33px;
		width: 480px;
	  height: 300px;
		background-size: 480px;
	}
}

@media screen and (max-width: 1100px) {
	#step4 .step_list li .step_wrap {
		gap: 16px;
  	padding: 20px 16px;
	}

	#step4 .step_list li .step_wrap::after {
		right: -34px;
	}

	#step4 .step_list li .step_wrap span {
		font-size: 2.0rem;
	}

	#step4 .step_list li .step_wrap p {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 767px) {
	#step4::after {
		content: none;
	}

	#step4 .step_list {
		flex-direction: column;
		gap: 56px;
	}

	#step4 ul.step_list {
		gap: 18px;
	}

	#step4 .step_list li {
		flex-basis: 100%;
	}

	#step4 .step_list li .no {
		margin-bottom: 4px;
		font-size: 2.8rem;
	}

	#step4 .step_list li .step_wrap {
		flex-wrap: wrap;
    flex-direction: row;
		align-items: center;
		padding: 20px 10px;
	}

	#step4 .step_list li .step_wrap::after {
		right: unset;
		top: unset;
		left: 50%;
		transform: translateX(-50%);
		bottom: -90px;
		border-left: 48px solid transparent;
		border-right: 48px solid transparent;
		border-top: 56px solid #fff;
	}

	#step4 .step_list li .step_wrap span {
		width: 100%;
		font-size: 2.4rem;
	}

	#step4 .step_list li .step_wrap span br {
		display: none;
	}

	#step4 .step_list li .step_wrap .image {
		width: 30%;
  	min-height: unset;
	}

	#step4 .step_list li .step_wrap p {
		width: 63%;
	}

}

/* Service ビズリクの基本サービス  */
#service {
	position: relative;
	background-color: #B9E3F9;
	z-index: 0;
}

#service ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 80px;
}

#service ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

#service ul li span {
	font-size: 2.0rem;
	font-weight: 500;
}

#service .comments {
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	font-size: 2.0rem;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	#service ul {
		row-gap: 32px;
    column-gap: 16px;
		margin-bottom: 40px;
	}

	#service ul li {
		flex-basis: 30%;
		gap: 8px;
	}

	#service ul li img {
		width: 88%;
	}

	#service ul li span {
		font-size: 1.8rem;
	}

	#service .comments {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 479px) {
	#service ul li {
		flex-basis: 46%;
	}

	#service ul li img {
		width: 84%;
	}
}

/* Site Contents 求人サイトに掲載される内容 */
#site_contents {
	background-color: #EEF9FF;
}

#site_contents ul {
	width: 100%;
	max-width: 920px;
	margin: 0 auto 88px;
	display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

#site_contents ul li {
	display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#site_contents ul li span {
	font-size: 2.0rem;
	font-weight: 500;
}

#site_contents .comments {
	max-width: 820px;
	margin: 0 auto;
}

#site_contents .note {
  font-size: 2.0rem;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
	#site_contents ul {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 767px) {
	#site_contents ul {
		gap: 24px;
		margin-bottom: 48px;
	}

	#site_contents ul li {
		gap: 4px;
	}

	#site_contents ul li span {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 479px) {
	#site_contents ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* price 基本料金とオプション */
#price {
	background-color: #FEFAE4;
}

#price .sectionBody {
	max-width: 1044px;
}

#price .price {
	display: flex;
  justify-content: center;
	align-items: center;
	align-items: stretch;
	gap: 20px;
	margin-bottom: 48px;
}

#price .price .annual,
#price .price .initial {
	flex-basis: 37%;
	padding: 32px;
	border: 8px solid #B9E3F9;
	border-radius: 20px;
}

#price .price .initial {
	background-color: #B9E3F9;
}

#price .price .plus {
	display: flex;
  align-items: center;
	font-size: 6.4rem;
	font-weight: 700;
}

#price .price .annual {
	background-color: #FEFAE4;
}

#price .price h3 {
	font-size: 3.6rem;
	font-weight: 700;
}

#price .price .cost {
	font-size: 6.4rem;
	font-weight: 700;
	text-align: center;
}

#price .price .price_list {
	margin-left: 2em;
}

#price .price .price_list li {
	padding-left: 1.75em;
	font-size: 2.4rem;
	position: relative;
}

#price .price .price_list li::before {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(/images/icon_check.png) no-repeat 50% 50% / contain;
}

#price .price .include {
	margin-top: 24px;
	font-weight: 500;
}

#price .option {
	padding: 40px;
	border-radius: 20px;
	background-color: #EEF9FF;
}

#price .option.bizriku {
	margin-bottom: 40px;
	background-color: #F5F2F2;
}

#price .option h3 {
	margin-bottom: 40px;
	font-size: 3.6rem;
	font-weight: 700;
}

#price .option h3 span {
	font-size: 2.0rem;
	font-weight: 600;
}

#price .option ul {
	list-style: disc;
	margin-left: 2.0em;
}

#price .option ul li {
	font-size: 2.4rem;
	font-weight: 400;
}

#price .option p {
	display: inline-block;
	margin-bottom: 24px;
	font-size: 2.4rem;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	#price .price {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	#price .price .annual,
	#price .price .initial {
	  flex-basis: 100%;
	  padding: 16px;
	  border: 4px solid #B9E3F9;
	}

	#price .price h3 {
		font-size: 2.6rem;
	}

	#price .price .cost {
	  font-size: 4.8rem;
	}

	#price .option {
  	padding: 24px 16px;
	}

	#price .option h3 {
		margin-bottom: 24px;
		font-size: 2.6rem;
	}

	#price .option h3 span {
		display: block;
		font-size: 1.8rem;
	}

	#price .option ul {
		margin-left: 1.0em;
	}

	#price .option ul li {
		margin-bottom: 12px;
		font-size: 1.7rem;
	}

	#price .price .price_list li {
		padding-left: 1.5em;
		font-size: 2.0rem;
	}

	#price .price .price_list li::before {
	  width: 2.0rem;
	  height: 2.0rem;
	}

	#price .option p {
		font-size: 2.0rem;
	}
}


/* Application
================================================== */
#application {
	background-color: #EEF9FF;
}

#application .inner {
	max-width: 888px;
	margin-bottom: 80px;
  font-size: 2.0rem;
}

#application .inner p {
	margin-bottom: 24px;
}

#application .sectionBody {
	display: flex;
	justify-content: space-between;
	gap: 120px;
}

#application .contact_announce {
	flex-basis: 45%;
	font-size: 2.0rem;
	font-weight: 500;
}

#application .contact_announce strong {
	font-weight: 700;
}

#application .contact_announce strong,
#application .contact_announce p {
	display: block;
	margin-bottom: .75em;
}

#application .contact_announce ul {
	margin-bottom: 88px;
	padding: 24px 20px 12px 20px;
	background-color: #F5F2F2;
	box-sizing: border-box;
}

#application .contact_announce ul li {
	position: relative;
	margin-bottom: .85em;
	padding-left: 2.5em;
}

#application .contact_announce ul li:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	background: url(/images/ic_chk.svg) no-repeat 50% 50% / 40px;
}

#application .contact_announce a.telLink {
	font-size: 4.0rem;
	color: #000;
	text-decoration: none;
}

#application .mailform {
	flex-basis: 55%;
	width: 500px;
	margin: 0 auto;
}

#application .confirm_text {
	margin-bottom: 24px;
	font-size: 1.8rem;
	font-weight: 700;
	color: red;
}

@media screen and (max-width: 1100px) {
	#application .sectionBody {
		gap: 40px;
	}
}

@media screen and (max-width: 950px) {
	#application .sectionBody {
  	flex-direction: column;
	}

	#application .contact_announce .sp_box,
	#application .contact_announce ul {
		width: 100%;
		max-width: 392px;
  	margin: 0 auto .75em;
		text-align: center;
	}

	#application .contact_announce ul {
  	margin-bottom: 40px;
		text-align: left;
	}

	#application .contact_announce .image {
		text-align: center;
	}

	#application .mailform {
		width: 100%;
	}
}

@media screen and (max-width: 479px) {
	#application .contact_announce {
		font-size: 1.8rem;
	}

	#application .contact_announce ul li {
		font-size: 2.0rem;
	}
}

#application .error em {
	color: #d7212d;
	font-style: normal;
	font-weight: 500;
}

#application .error + form {
	margin-top: 30px;
}

#application .mailform dt,
#application .mailform dd label {
	font-weight: 500;
	font-size: 2.0rem;
}

#application .mailform dt span {
	margin-left: .75em;
	padding: 1px 8px 3px;
	border-radius: 8px;
	background-color: #C14040;
	color: #fff;
	font-size: 1.6rem;
}

#application form dd {
	margin: 10px 0 30px;
}

#application .mailform input[type='text'],
#application .mailform input[type='email'],
#application .mailform textarea,
#application .mailform select {
	border: 1px solid #666;
	border-radius: 0;
	box-sizing: border-box;
	padding: 5px 10px;
	font-size: 1.8rem;
}

#application .mailform input[type='text'],
#application .mailform input[type='email'],
#application .mailform textarea {
	width: 100%;
}

#application .mailform textarea {
	height: 15em;
}

#application .mailform input::placeholder,
#application .mailform textarea::placeholder {
	color: #767676;
  font-weight: 200;
}

#application .mailform input#mail_route_other {
	width: calc(100% - 6.8em);
}

#application .mailform input[type='text'].error,
#application .mailform input[type='email'].error,
#application .mailform textarea.error,
#application .mailform select.error {
	border-color: #d7212d;
}

#application .mailform :focus {
	outline: none;
}

#application .mailform a:focus-visible,
#application .mailform button:focus-visible,
#application .mailform input[type="submit"]:focus-visible {
  outline: auto;
  outline-offset: 2px;
}

#application .mailform a:focus:not(:focus-visible),
#application .mailform button:focus:not(:focus-visible),
#application .mailform input[type="submit"]:focus:not(:focus-visible) {
  outline: none;
}

#application .mailform .select {
	position: relative;
	display: inline-block;
	max-width: 100%;
	background-color: #fff;
}

#application .mailform .select::after {
	content: '\f078';
	font-family: icomoon;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	color: #432c02;
	font-size: 2.0rem;
}

#application .mailform select {
	width: 100%;
	height: 100%;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 3em;
	position: relative;
	z-index: 5;
}

#application .mailform .checkbox span {
	display: block;
	margin: 20px 0;
}

#application .mailform .radio span {
	display: inline-block;
	margin: 20px 30px 20px 0;
}

#application .mailform dd label {
	position: relative;
	cursor: pointer;
	display: inline-block;
	padding-left: 2.8em;
}

#application .mailform dd label::before,
#application .mailform dd label::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 1.0em;
	transform: translate(-50%, -50%);
}

#application .mailform dd input[type='radio'] + label::before,
#application .mailform dd input[type='radio'] + label::after {
	border-radius: 50%;
}

#application .mailform dd label::before {
	background-color: #fff;
	border: 2px solid #432c02;
	width: 1.4em;
	height: 1.4em;
}

#application .mailform dd .error label::before {
	border-color: #d7212d;
}

#application .mailform dd input[type='radio'] + label::after {
	background-color: #0d89a9;
	opacity: 0;
	width: 1.0em;
	height: 1.0em;
}

#application .mailform dd input[type='checkbox'] + label::after {
	border-bottom: 5px solid #0d89a9;
	border-left: 5px solid #0d89a9;
	opacity: 0;
	height: .5em;
	width: 1em;
	top: 40%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

#application .mailform dd input:checked + label::after {
	opacity: 1;
}

#application .mailform dd input[type='radio'],
#application .mailform dd input[type='checkbox'] {
	position: absolute;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
}

#application .mailform a {
	color: #004080;
	transition: opacity .3s;
}

#application .mailform a:hover {
	opacity: .7;
}

#application .mailform.confirm dd {
	margin: 10px 0 30px;
	font-size: 1.8rem;
	font-weight: 300;
}

#application .mailform .submit {
	margin-top: 60px;
	text-align: center;
}

#application .mailform input[type='submit'] {
	width: 100%;
	padding: 20px;
	border: 2px solid #FF9D00;
	border-radius: 5px;
	background-color: #FF9D00;
	font-size: 3.0rem;
	color: #000;
	font-weight: 600;
	cursor: pointer;
	transition: background-color .2s ease-out;
}

#application .mailform input[type='submit']:hover {
	background-color: #FFDEA8;
}

#application .mailform input[type='submit'].back {
	width: auto;
	margin-bottom: 30px;
	padding: 0;
	border: 0;
	background-color: transparent;
}

#application .mailform.finish p {
	margin-bottom: 1.5em;
	line-height: 1.75;
}

#application .mailform.finish a {
	color: #333;
}

#privacy {
	padding: 30px 40px 40px;
}

#privacy h3:not(:first-child) {
	margin-top: 2em;
}

#privacy h3 {
	font-size: 1.8rem;
}

#privacy h4 {
	margin: 28px 0 12px;
	font-size: 1.6rem;
}

#privacy p {
	margin-top: 1.5em;
}

#privacy h4 + p {
	margin-top: 0;
}

#privacy ul {
	padding-left: 2em;
	list-style: decimal;
}

#privacy hr {
	margin: 2em 0;
}

#cboxLoadedContent {
	border: 2px solid #432c02;
	margin-bottom: 30px !important;
}

#cboxClose {
	left: 50%;
	transform: translateX(-50%);
}

#cboxClose .icon-close {
	color: #d7212d;
}

@media screen and (max-width: 767px) {
	#privacy {
		padding: 5.0vw;
	}

	#application .mailform dt,
	#application .mailform dd label {
		font-size: 1.8rem;
	}

	#application .mailform dt span {
		padding-bottom: 2px;
		font-size: 1.4rem;
	}

	#application .mailform input[type='submit'] {
		font-size: 2.4rem;
	}
}

/* Common Footer
================================================== */
#commonFooter {
	background-color: #fff;
}

#commonFooter .upper {
	padding: 64px 0;
}

#commonFooter .upper .inner {
	display: flex;
	align-items: center;
}

#commonFooter .upper .inner .footer_title {
	flex-basis: 50%;
}

#commonFooter .upper .inner .footer_title p {
	margin-bottom: 16px;
	font-size: 1.6rem;
}

#commonFooter .upper .inner .footer_navi {
	flex-basis: 50%;
}

#commonFooter .upper .inner .footer_navi a {
	display: block;
  padding: 8px 0;
	text-decoration: none;
}

#commonFooter .upper .inner .footer_navi a:hover {
	text-decoration: underline;
}

#commonFooter .lower {
	padding: 36px 0;
	background-color: #B9E3F9;
}

#commonFooter .lower .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#commonFooter .lower .inner .will_logo {
	display: flex;
  align-items: center;
	gap: 24px;
}

#commonFooter .lower .inner .will_logo a {
	color: #004080;
	text-decoration: none;
	transition: opacity .3s;
}

#commonFooter .lower .inner .will_logo a:hover {
	opacity: .7;
}

#commonFooter .copyright {
	font-size: 1.2rem;
}

#commonFooter a {
	color: #333;
}

@media screen and (max-width: 767px) {
	#commonFooter .lower .inner,
	#commonFooter .upper .inner {
		flex-direction: column;
		gap: 16px;
	}

	#commonFooter .upper {
		padding: 32px 0;
	}

	#commonFooter .upper .inner .footer_title p {
		margin-bottom: 16px;
	}

	#commonFooter .upper .inner .footer_navi {
		display: none;
	}

	#commonFooter .upper .inner .footer_title .logo {
		text-align: center;
	}

	#commonFooter .lower {
		padding: 16px 0;
	}

	#commonFooter .lower .inner .will_logo {
		flex-direction: column;
  	gap: 0;
	}
}

/* Scroll top
================================================== */
#alwaysBtn {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 99;
	display: none;
}

#alwaysBtn .scrollTop a {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 4.25em;
	height: 4.25em;
	padding: 5px;
	box-sizing: border-box;
	border: 2px solid #004080;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	position: relative;
}

#alwaysBtn .scrollTop a {
	background-color: #004080;
	color: #fff;
}

#alwaysBtn .scrollTop a:hover {
	background-color: #fff;
	color: #004080;
}

#alwaysBtn .scrollTop a::before {
	content: '';
	position: absolute;
}

#alwaysBtn .scrollTop a::before {
	top: 1.25em;
	left: 50%;
	width: 1.5em;
	height: 1.5em;
	transform: translateX(-50%) rotate(-45deg);
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

#alwaysBtn .scrollTop a:hover::before {
	border-top-color: #004080;
	border-right-color: #004080;
}

#alwaysBtn .scrollTop a span {
	display: block;
	font-size: 1.1rem;
}

@media screen and (max-width: 767px) {
	#alwaysBtn {
		right: -16px;
	}
}
