/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe,
img,
svg,
video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	color: #000000;
	background-color: #f4f4f4;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.recruit {
	background-image: url(../images/recruit-background-general.png);
	background-repeat: repeat;
	background-position: left top;
	background-size: 750px auto;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #0e50ad;
}
body.recruit a.color:hover {
	color: #0555c7;
}
h1 {
	font-size: 1.625rem;
	line-height: 2.5rem;
}
h2 {
	font-size: 1.25rem;
}
h3 {
	font-size: 1.125rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
*.indent {
	text-indent: -1em;
	padding-left: 1em;
}
body.corporate span.required {
	color: #0e50ad;
}
body.recruit span.required {
	color: #0555c7;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	outline: none;
	border-radius: 5px;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #000000;
	border: none;
	background-color: #ffffff;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 360px;
	height: 80px;
	overflow: hidden;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5rem;
	color: #ffffff;
	border: none;
	cursor: pointer;
	background-color: #08387d;
	transition: 0.25s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	background-color: #0e50ad;
}
button,
button span.text {
	position: relative;
}
body.corporate button {
	background: linear-gradient(120deg, #0e50ad 0%, #041c3f 100%);
}
body.corporate button::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #0e50ad;
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.corporate button:hover::before {
	opacity: 1;
}
button:has(span.arrow) {
	padding-right: 75px;
}
button span.arrow {
	position: absolute;
	right: 20px;
	top: calc(50% - 15px);
	font-size: 1rem;
	font-weight: 400;
}
body.recruit button {
	background-color: #0555c7;
}
body.recruit button:hover {
	background-color: #08387d;
}
input:where([type=radio], [type=checkbox]),
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:where([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:where([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	border: 1px solid #acacac;
	background-color: #ffffff;
}
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:where([type=radio], [type=checkbox]):checked::after,
label.alternate input:where([type=radio], [type=checkbox]):checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #000000;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input:where([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:where([type=radio], [type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #acacac;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
font
-------------------------------------------------------------------------------- */

@font-face {
	font-family:"din-2014";
	src: url("../fonts/din-2014-light.woff2") format("woff2");
	font-weight :300;
	font-style: normal;
}
@font-face {
	font-family:"din-2014";
	src: url("../fonts/din-2014-demi.woff2") format("woff2");
	font-weight :600;
	font-style: normal;
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow-01::before {
	content: "\e900";
}
i.icon-arrow-02::before {
	content: "\e901";
}
i.icon-arrow-03::before {
	content: "\e902";
}
i.icon-list::before {
	content: "\e903";
}
i.icon-download::before {
	content: "\e904";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #acacac;
	margin: 20px 0px;
}
iframe:where([src*="youtube.com"], .wp-embedded-content),
video {
	width: 100%;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	height: auto;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #f4f4f4;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
}
body.recruit div#page {
	padding-top: 100px;
}
div#trigger {
	position: absolute;
	top: 50svh;
	pointer-events: none;
}
body.recruit nav#navi-side {
	position: fixed;
	height: 100svh;
	right: -10px;
	top: calc(50% - 280px);
	z-index: 100;
	pointer-events: none;
	transition: 0.375s transform 0.125s ease;
	transform: translateX(50px);
}
body.recruit.admin-bar nav#navi-side {
	height: calc(100svh - 32px);
	top: calc(50% - 248px);
}
body.recruit div.scroll nav#navi-side {
	transform: translateX(0px);
}
body.recruit nav#navi-side ul li {
	width: 60px;
	height: 180px;
	font-weight: 600;
	pointer-events: auto;
}
body.recruit nav#navi-side ul li:not(:last-child) {
	margin-bottom: 10px;
}
body.recruit nav#navi-side ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: #ffffff;
	padding-right: 10px;
	border-radius: 10px 0px 0px 10px;
	transition: 0.25s transform ease;
}
body.recruit nav#navi-side ul li a:hover {
	transform: translateX(-10px);
}
body.recruit nav#navi-side ul li.entry a {
	background-color: #0555c7;
}
body.recruit nav#navi-side ul li.guideline a {
	background-color: #08387d;
}
body.recruit nav#navi-side ul li.qa a {
	background-color: #acacac;
}
body.recruit nav#navi-side ul li span {
	display: block;
	writing-mode: vertical-rl;
	white-space: pre;
}
span:where(.arrow, .download, .list) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 55px;
	height: 30px;
	overflow: hidden;
	color: #ffffff;
	border-radius: 5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
span:where(.arrow-white, .download-white, .list-white) {
	border: 1px solid #ffffff;
}
body.corporate span:where(.arrow, .download, .list) {
	background: linear-gradient(120deg, #0e50ad 0%, #041c3f 100%);
}
body.corporate span:where(.arrow, .download, .list)::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #0e50ad;
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.corporate a:hover span:where(.arrow, .download, .list)::before {
	opacity: 1;
}
body.corporate span:where(.arrow-white, .download-white, .list-white) {
	color: #0e50ad;
	background: none;
	background-color: #ffffff;
}
body:where(.corporate, .recruit) a:hover span:where(.arrow-white, .download-white, .list-white) {
	color: #ffffff;
	background: transparent;
}
body.corporate span:where(.arrow-white, .download-white, .list-white)::before {
	display: none;
}
body.recruit span:where(.arrow, .download, .list) {
	background-color: #0555c7;
}
body.recruit span:where(.arrow-white, .download-white, .list-white) {
	color: #0555c7;
	background-color: #ffffff;
}
span:where(.arrow, .download, .list) i.icon {
	position: relative;
}
p.button-default,
p.button-default > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: left;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5rem;
}
p.button-default > *,
p.button-default > * > * {
	position: relative;
}
p.button-default > * {
	align-items: center;
	width: 360px;
	height: 60px;
	overflow: hidden;
	color: #ffffff;
	padding-bottom: 2px;
	border-radius: 5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-wide a {
	width: 400px;
}
p.button-white > * {
	border: 1px solid #ffffff;
}
p.button-default span.text {
	position: relative;
}
p.button-default > *:has(span:where(.arrow, .download, .list, .arrow-white, .download-white, .list-white)) {
	padding-right: 75px;
}
p.button-default span:where(.arrow, .download, .list, .arrow-white, .download-white, .list-white) {
	position: absolute;
	right: 20px;
	top: calc(50% - 15px);
}
p.button-back > *:has(span:where(.arrow, .download, .list, .arrow-white, .download-white, .list-white)) {
	padding-left: 75px;
	padding-right: 0px;
}
p.button-back span:where(.arrow, .download, .list, .arrow-white, .download-white, .list-white) {
	left: 20px;
	right: auto;
	transform: scaleX(-1);
}
body.corporate p.button-default:not(.button-white) > * {
	background: linear-gradient(120deg, #0e50ad 0%, #041c3f 100%);
}
body.corporate p.button-default:not(.button-white) > *::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #0e50ad;
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.corporate p.button-default:not(.button-white) > *:hover::before {
	opacity: 1;
}
body.corporate p.button-white > * {
	color: #08387d;
	border: 1px solid #0e50ad;
	background-color: #ffffff;
}
body.corporate p.button-white > *:hover {
	color: #ffffff;
	background-color: #0e50ad;
}
body.corporate p.button-white > *:hover span:where(.arrow, .download, .list, .arrow-white, .download-white, .list-white) {
	color: #0e50ad;
}
body.corporate p.button-white span:where(.arrow, .download, .list, .arrow-white, .download-white, .list-white)::before {
	background-color: #ffffff;
}
body.recruit p.button-default > * {
	background-color: #0555c7;
}
body.recruit p.button-default > *:hover {
	background-color: #08387d;
}
body.recruit p.button-white > * {
	color: #0555c7;
	border: 1px solid #0555c7;
	background-color: #ffffff;
}
body.recruit p.button-white > *:hover {
	color: #ffffff;
	background-color: #0555c7;
}
body.recruit p.button-white > *:hover span:where(.arrow, .download, .list, .arrow-white, .download-white, .list-white) {
	color: #0555c7;
	background-color: #ffffff;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce, .fade-mask),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce, .fade-each-mask) > * {
	opacity: 0;
	transition-duration: 1.125s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce, .fade-mask).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce, .fade-each-mask).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(60px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-60px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 60px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -60px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.875);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.scroll.fade-mask,
*.scroll.fade-each-mask > * {
	transition-property: opacity, clip-path;
	transition-timing-function: ease-in-out, cubic-bezier(0.78, 0, 0.22, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
*.scroll.fade-mask.active,
*.scroll.fade-each-mask.active > * {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 1;
	bottom: 20px !important;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 100;
	transition: 0.375s transform 0.125s ease;
}
div.scroll header#header {
	transform: translateY(-100px);
}
div.scroll-up header#header {
	transform: translateY(0px);
}
header#header *#logo svg {
	width: 256px;
}
header#header nav#navi ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
header#header nav#navi ul li span {
	position: relative;
}
header#header nav#navi ul li span:where(.sub, .arrow) {
	display: none;
}
header#header nav#navi ul li span.main {
	font-weight: 600;
}
header#header nav#navi p.privacy-policy {
	display: none;
}
body.corporate header#header {
	width: calc(100% - 40px);
	height: 80px;
	left: 20px;
	top: 20px;
	padding: 0px 20px;
	background-color: #ffffff;
}
@media (max-width:1240px) {
body.corporate header#header {
	display: block;
	height: 125px;
	padding-top: 23px;
}
body.corporate div.scroll header#header {
	transform: translateY(-145px);
}
body.corporate div.scroll-up header#header {
	transform: translateY(0px);
}
}
body.corporate.admin-bar header#header {
	top: 52px;
}
body.corporate header#header nav#navi ul li:not(.contact) {
	margin-right: 30px;
}
body.corporate header#header nav#navi ul li.contact {
	order: 1;
}
body.corporate header#header nav#navi ul li.contact a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 140px;
	height: 50px;
	overflow: hidden;
	color: #ffffff;
	background: linear-gradient(120deg, #0e50ad 0%, #041c3f 100%);
	border-radius: 5px;
}
body.corporate header#header nav#navi ul li.contact a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #0e50ad;
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.corporate header#header nav#navi ul li.contact a:hover::before {
	opacity: 1;
}
body.recruit header#header {
	width: 100%;
	height: 100px;
	left: 0px;
	top: 0px;
	padding: 0px 50px;
	background: #f4f4f4 url(../images/recruit-background-general.png) repeat left top;
	background-size: 750px auto;
	transition: 0.25s transform ease;
}
body.recruit.admin-bar header#header {
	top: 32px;
}
body.recruit header#header *#logo a {
	display: flex;
	flex-wrap: wrap;
}
body.recruit header#header *#logo svg {
	margin-right: 15px;
}
body.recruit header#header *#logo span {
	display: block;
	font-family: "din-2014", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #0555c7;
	transform: translateY(5px);
}
body.recruit header#header nav#navi ul li:not(.entry) {
	margin-right: 30px;
}
body.recruit header#header nav#navi ul li.corporate {
	color: #0555c7;
}
body.recruit header#header nav#navi ul li.corporate a:hover {
	color: #08387d;
}
body.recruit header#header nav#navi ul li.entry a,
body.recruit header#header nav#navi ul li.entry a::before {
	background-color: #0555c7;
	transition: 0.25s background-color ease;
}
body.recruit header#header nav#navi ul li.entry a:hover,
body.recruit header#header nav#navi ul li.entry a:hover::before {
	background-color: #08387d;
}
body.recruit header#header nav#navi ul li.entry a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 180px;
	height: 50px;
	color: #ffffff;
	border-radius: 5px;
}
body.recruit header#header nav#navi ul li.entry a::before {
	position: absolute;
	width: 17.5px;
	height: 11px;
	right: 5px;
	bottom: -10.5px;
	content: "";
	mask-image: url(../images/path-02.svg);
	mask-size: 100% auto;
}
body.recruit header#header nav#navi p.corporate {
	display: none;
}

/* home
-------------------------------------------------------------------------------- */

body.home header#header,
body.home div.cover-03.scroll header#header {
	transform: translateY(-100px);
}
body.home div.cover-03 header#header,
body.home div.scroll.scroll-up header#header {
	transform: translateY(0px);
}
@media (max-width:1240px) {
body.home header#header,
body.home div.cover-03.scroll header#header {
	transform: translateY(-145px);
}
body.home div.cover-03 header#header,
body.home div.scroll.scroll-up header#header {
	transform: translateY(0px);
}
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover,
div#cover div.image {
	position: relative;
}
div#cover :where(div.text, p#button-scroll) {
	position: absolute;
	z-index: 5;
	color: #ffffff;
}
div#cover p#button-scroll {
	bottom: 0px;
	text-align: center;
	font-family: "din-2014", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25rem;
}
div#cover p#button-scroll a {
	display: block;
	position: relative;
}
div#cover p#button-scroll a span.line {
	position: absolute;
	width: 0px;
	left: calc(50% - 0.5px);
	bottom: 0px;
}
div#cover p#button-scroll a span.line::before {
	position: absolute;
	border-right: 1px solid #ffffff;
	content: "";
	animation: cover-button-scroll 2.5s linear infinite forwards;
}
@keyframes cover-button-scroll {
	0% { height: 0%; top: 100%; }
	25% { height: 0%; top: 0%; }
	50% { height: 100%; top: 0%; }
	75% { height: 100%; top: 0%; }
	100% { height: 0%; top: 100%; }
}
body.corporate div#cover {
	height: 100svh;
}
body.corporate div#cover div.image {
	height: 100%;
	opacity: 0;
	transition: 1.25s opacity ease;
}
body.corporate div.cover-01 div#cover div.image {
	opacity: 1;
}
body.corporate div#cover div.image p.row,
body.corporate div#cover div.image p.row span {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
body.corporate div#cover div.image p.row span {
	display: block;
	width: calc(100% + 30px);
	left: -15px;
	animation-duration: 5.75s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
body.corporate div#cover div.image p.row span.slide {
	animation-name: cover-slide;
}
@keyframes cover-slide {
	0% { transform: translateX(-15px); }
	100% { transform: translateX(15px); }
}
body.corporate div#cover div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
body.corporate div#cover div.text {
	left: 80px;
	bottom: 80px;
}
body.corporate div#cover div.text h1 {
	font-size: 5rem;
	font-weight: 600;
	line-height: 6.5rem;
	margin-bottom: 20px;
}
body.corporate div#cover div.text h1 span,
body.corporate div#cover div.text p.sub {
	opacity: 0;
	transition-duration: 1.25s;
	transition-property: letter-spacing, opacity, transform;
	transition-timing-function: ease, ease-in-out, ease;
	transform: translateX(60px);
}
body.corporate div.cover-02 div#cover div.text h1 span,
body.corporate div.cover-02 div#cover div.text p.sub {
	letter-spacing: 0em;
	opacity: 1;
	transform: translateX(0px);
}
body.corporate div#cover div.text h1 span {
	display: block;
	letter-spacing: 0.1em;
}
body.corporate div#cover div.text p.sub {
	font-family: "din-2014", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	transition-delay: 0.625s;
}
body.corporate div#cover p#button-scroll {
	width: 20px;
	right: 40px;
	opacity: 0;
	transition: 1.25s opacity ease;
}
body.corporate div.cover-03 div#cover p#button-scroll {
	opacity: 1;
}
body.corporate div#cover p#button-scroll a {
	height: 160px;
}
body.corporate div#cover p#button-scroll span.text {
	writing-mode: vertical-rl;
	white-space: pre;
}
body.corporate div#cover p#button-scroll a span.line {
	height: calc(100% - 55px);
}
body.recruit div#cover {
	width: calc(100% - 100px);
	height: calc(100svh - 150px);
	margin: 0px auto 50px auto;
}
body.recruit.admin-bar div#cover {
	height: calc(100svh - 182px);
}
body.recruit div#cover div.image {
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
	opacity: 0;
	transition: 1.25s opacity ease;
}
body.recruit div.cover-02 div#cover div.image {
	opacity: 1;
}
body.recruit div#cover div.image,
body.recruit div#cover div.image p.row,
body.recruit div#cover div.image p.row span {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
body.recruit div#cover div.image p.row span {
	display: block;
	animation-duration: 6.75s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
body.recruit div#cover div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
body.recruit div#cover div.image p.row span.zoom {
	animation-name: cover-zoom;
}
@keyframes cover-zoom {
	0% { transform: scale(1); }
	100% { transform: scale(1.0625); }
}
body.recruit div#cover div.text {
	left: 80px;
	bottom: 80px;
}
body.recruit div#cover div.text h1 {
	font-size: 5rem;
	font-weight: 600;
	line-height: 6.5rem;
	color: #0555c7;
	transition: 1.25s color ease-in-out;
}
body.recruit div.cover-02 div#cover div.text h1 {
	color: #ffffff;
}
body.recruit div#cover div.text h1 i {
	display: inline-block;
	overflow: hidden;
	height: 6.5rem;
	padding-top: 6.5rem;
	opacity: 0;
	transition: 1.25s padding-top ease, 1.25s opacity ease;
}
body.recruit div.cover-01 div#cover div.text h1 i {
	padding-top: 0rem;
	opacity: 1;
}
body.recruit div#cover p#button-scroll {
	width: 80px;
	left: calc(50% - 40px);
	opacity: 0;
	transition: 1.25s opacity ease;
}
body.recruit div.cover-03 div#cover p#button-scroll {
	opacity: 1;
}
body.recruit div#cover p#button-scroll a {
	height: 60px;
}
body.recruit div#cover p#button-scroll a span.line {
	height: calc(100% - 25px);
}



/* --------------------------------------------------------------------------------
title
-------------------------------------------------------------------------------- */

body.corporate div#title {
	position: relative;
	color: #ffffff;
}
body.corporate div#title::before {
	position: absolute;
	width: 100%;
	height: 480px;
	left: 0px;
	top: 0px;
	background: linear-gradient(90deg, #0e50ad 0%, #041c3f 100%);
	content: "";
	clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 240px), 0% 100%);
}
body.corporate div#title:has(p.image)::before {
	height: 800px;
}
body.corporate div#title div.inner-title {
	position: relative;
	width: calc(100% - 40px);
	max-width: 1200px;
	margin: 0px auto;
	padding-top: 240px;
}
body.corporate.result div#title {
	height: 100svh;
}
body.corporate.result.admin-bar div#title {
	height: calc(100svh - 32px);
}
body.corporate.result div#title::before {
	height: 100%;
	clip-path: none;
}
body.corporate.result div#title p.map {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
body.corporate.result div#title p.map img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
body.corporate div#title div.text {
	position: relative;
}
body.corporate div#title:has(p.image) div.text {
	margin-bottom: 60px;
}
body.corporate div#title div.text p.sub {
	position: relative;
	font-family: "din-2014", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	padding-left: 20px;
}
body.corporate div#title div.text p.sub::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 11px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
body.corporate div#title div.text h1 {
	font-size: 3.75rem;
	font-weight: 600;
	line-height: 4.75rem;
}
body.corporate div#title nav#navi-sub {
	position: absolute;
	width: 360px;
	right: 0px;
	bottom: 0px;
}
body.corporate div#title nav#navi-sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: 0px -30px -20px 0px;
}
body.corporate div#title nav#navi-sub ul li {
	margin: 0px 30px 20px 0px;
}
body.corporate div#title nav#navi-sub ul li a {
	display: block;
	position: relative;
	border-bottom: 1px solid #ffffff40;
	padding-right: 20px;
}
body.corporate div#title nav#navi-sub ul li a::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: -1px;
	border-bottom: 1px solid #ffffff;
	content: "";
	transition: 0.25s transform ease;
	transform-origin: left top;
	transform: scaleX(0);
}
body.corporate div#title nav#navi-sub ul li a:hover::before {
	transform: scaleX(1);
}
body.corporate div#title nav#navi-sub ul li i.icon {
	position: absolute;
	right: 0px;
	top: 9px;
	font-size: 0.875rem;
	transform: rotate(90deg);
}
body.corporate div#title p.image {
	margin-right: calc(50% - 50vw);
}
body.recruit div#title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	height: 340px;
}
body.recruit div#title div.text {
	text-align: center;
}
body.recruit div#title div.text :where(h1, p.sub) {
	font-weight: 600;
}
body.recruit div#title div.text h1 {
	font-size: 3.25rem;
	line-height: 4.25rem;
	margin-bottom: 10px;
}
body.recruit div#title div.text p.sub {
	position: relative;
	font-family: "din-2014", sans-serif;
	font-size: 1.125rem;
	color: #0555c7;
}
body.recruit div#title p.sub::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	bottom: -40px;
	background-color: #0555c7;
	content: "";
	border-radius: 50%;
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.inner-section {
	width: calc(100% - 40px);
	max-width: 1000px;
	margin: 0px auto;
	padding: 120px 0px;
}
main section header.common {
	margin-bottom: 60px;
}
main section header.common p.sub {
	position: relative;
	font-family: "din-2014", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #08387d;
	margin-bottom: 10px;
	padding-left: 20px;
}
main section header.common p.sub::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 11px;
	content: "";
	border-radius: 50%;
}
main section header.common h2 {
	font-size: 3.25rem;
	font-weight: 600;
	line-height: 4.25rem;
}
main section header.common h2:not(:last-child) {
	margin-bottom: 40px;
}
main section header.common p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
}
main section header.common-alternate {
	position: relative;
	text-align: center;
	margin-bottom: 100px;
}
main section header.common-alternate h2 {
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 15px;
}
main section header.common-alternate p.sub {
	position: relative;
	font-family: "din-2014", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.625rem;
	color: #08387d;
}
main section header.common-alternate p.sub::before {
	position: absolute;
	width: 20px;
	height: 0px;
	left: calc(50% - 10px);
	bottom: -30px;
	border-bottom: 2px solid #08387d;
	content: "";
}
main div.description p.row {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 3rem;
}
main div.description p.row.margin-bottom:not(:last-child) {
	margin-bottom: 30px;
}
main div.slide div.pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
main div.slide div.pager p.button {
	cursor: pointer;
}
main div.slide div.pager p.button:not(:last-child) {
	margin-right: 10px;
}
main div.slide div.pager p.button-prev i.icon {
	transform: scaleX(-1);
}
main div.list-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 120px;
}
main div.list-wrapper:has(div.list-year) div.list-category {
	width: calc(100% - 250px);
}
main div:where(.list-category, .list-year) {
	padding: 20px;
	background-color: #ffffff;
}
main div.list-category,
main div.list-category ul {
	display: flex;
	flex-wrap: wrap;
}
main div.list-category {
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px 10px 20px 20px;
}
main div.list-category p.label {
	width: 160px;
	font-weight: 500;
}
main div.list-category ul {
	width: calc(100% - 160px);
	margin-bottom: -10px;
}
main div.list-category ul li {
	line-height: 1.5rem;
	margin: 0px 10px 10px 0px;
}
main div.list-category ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 30px;
	overflow: hidden;
	border: 1px solid #000000;
	padding: 0px 15px;
	background-color: #ffffff;
	background: linear-gradient(90deg, #0e50ad 0%, #041c3f 100%);
	border-radius: 15px;
	transition: 0.25s color ease, 0.25s border-color ease;
}
main div.list-category ul li a:hover,
main div.list-category ul li.active a {
	color: #ffffff;
	border-color: transparent;
}
main div.list-category ul li a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	transition: 0.25s opacity ease;
}
main div.list-category ul li a:hover::before,
main div.list-category ul li.active a::before {
	opacity: 0;
}
main div.list-category ul li span {
	position: relative;
}
main div.list-year {
	width: 240px;
	padding: 20px;
}
main div.list-year {
	position: relative;
}
main div.list-year select {
	width: 100%;
	height: 30px;
	font-weight: 500;
	cursor: pointer;
	padding: 0px 55px 0px 0px;
	background-image: none;
}
main div.list-year span.arrow {
	position: absolute;
	right: 20px;
	top: calc(50% - 15px);
	pointer-events: none;
}
main div.list-year:has(select:hover) span.arrow::before {
	opacity: 1;
}
main div.list-our-job {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 120px;
}
main div.list-our-job div.row {
	width: calc(50% - 40px);
}
main div.list-our-job div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 60px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
}
main div.list-our-job div.row p.image {
	margin-bottom: 15px;
}
main div.list-our-job + p.diagram {
	position: relative;
	width: 940px;
	margin: 0px auto;
}
main div.list-our-job + p.diagram::before,
main div.list-our-job + p.diagram::after {
	position: absolute;
	width: 0px;
	top: -60px;
	border-right-width: 2px;
	border-right-style: dotted;
	content: "";
}
main div.list-our-job + p.diagram::before {
	height: 180px;
	left: calc(50% - 269px);
}
main div.list-our-job + p.diagram::after {
	height: 80px;
	right: calc(50% - 269px);
}
main div.list-our-job + p.diagram img {
	position: relative;
	z-index: 1;
}
main nav#navi-bottom,
main nav#navi-bottom div.list {
	position: relative;
}
body.our-job main nav#navi-bottom::before {
	position: absolute;
	width: 100vw;
	height: calc(100% + 120px);
	left: calc(50% - 50vw);
	top: 0px;
	background-color: #ffffff;
	content: "";
}
main nav#navi-bottom {
	width: calc(100% - 40px);
	max-width: 1200px;
	margin: 0px auto 120px auto;
}
main nav#navi-bottom div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -60px -60px 0px;
}
main nav#navi-bottom div.list div.row {
	width: calc(50% - 60px);
	margin: 0px 60px 60px 0px;
}
main nav#navi-bottom div.list div.row a {
	display: block;
	position: relative;
	color: #ffffff;
}
main nav#navi-bottom div.list div.row p.image {
	position: relative;
	height: 230px;
}
main nav#navi-bottom div.list div.row p.image::before,
main nav#navi-bottom div.list div.row div.text {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
}
main nav#navi-bottom div.list div.row p.image::before {
	background-color: #00000020;
	content: "";
}
main nav#navi-bottom div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main nav#navi-bottom div.list div.row div.text {
	color: #ffffff;
	padding: 75px 40px 0px 40px;
}
main nav#navi-bottom div.list div.row div.text h3 {
	font-family: "din-2014", sans-serif;
	font-size: 3.25rem;
	font-weight: 600;
	line-height: 3.5rem;
}
main nav#navi-bottom div.list div.row div.text p.sub {
	font-size: 1.125rem;
	font-weight: 600;
}
main nav#navi-bottom div.list div.row div.text span.arrow {
	position: absolute;
	right: 40px;
	top: calc(50% - 15px);
	border: 1px solid #ffffff;
	background: none;
}
main nav#navi-bottom div.list div.row a:hover div.text span.arrow {
	color: #0e50ad;
	background-color: #ffffff;
}
main nav#navi-bottom div.list div.row div.text span.arrow::before {
	display: none;
}
main p:where(.list, .more),
main p:where(.list, .more) a {
	display: flex;
	flex-wrap: wrap;
}
main p.list {
	justify-content: center;
}
main p:where(.list, .more) a {
	align-items: center;
}
main p:where(.list, .more) span.text {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	color: #08387d;
	margin-right: 20px;
	transition: 0.25s color ease;
}
main p:where(.list, .more) a:hover span.text {
	color: #0e50ad;
}
main ul.bullet li,
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before,
main article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
main ol.decimal,
main article.common div.body ol {
	padding-left: 20px;
}
main ol.decimal li,
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 600;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f4f4f4;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #acacac;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f4f4f4;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button) {
	display: inline-block;
	height: 50px;
	text-decoration: none;
	font-size: 1rem;
	line-height: 50px;
	color: #ffffff;
	padding: 0px 20px;
	background-color: #000000;
	border-radius: 25px;
	transition: 0.25s background-color ease;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button):hover {
	background-color: #6f6f6f;
}
main :where(div#pager, nav#navi-article) {
	margin-top: 120px;
}
main div#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: -10px;
}
main div#pager :where(span.current, a) {
	display: block;
	font-family: "din-2014", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #6f6f6f;
	transition: 0.25s color ease;
}
main div#pager :where(span.current, a:hover) {
	color: #0e50ad;
}
main div#pager :where(span.current, a) {
	margin-bottom: 10px;
	padding: 0px 10px;
}
main div#pager a:where(.prev, .next) {
	display: none;
}
main div.how-to {
	position: relative;
	padding: 0px 100px 0px 180px;
}
main div.how-to div.trigger {
	position: absolute;
}
main div.how-to div.trigger-01 {
	top: -120px;
}
body.admin-bar main div.how-to div.trigger-01 {
	top: -152px;
}
main div.how-to div.navi {
	position: absolute;
	width: 160px;
	left: 0px;
	top: 0px;
}
main div.how-to.top div.navi {
	position: fixed;
	left: calc(50% - 600px);
	top: 120px;
}
body.admin-bar main div.how-to.top div.navi {
	top: 152px;
}
main div.how-to.bottom div.navi {
	position: absolute;
	top: auto;
	bottom: 0px;
}
body.admin-bar main div.how-to.bottom div.navi {
	top: auto;
}
main div.how-to div.navi ul {
	margin: -5px 0px;
}
main div.how-to div.navi ul li {
	font-weight: 600;
	line-height: 1.5rem;
}
main div.how-to div.navi ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #acacac;
	padding: 5px 0px;
	transition: 0.25s color ease;
}
main div.how-to div.navi ul li.start a {
	color: #000000;
}
main div.how-to div.navi ul li.end a {
	color: #acacac;
}
main div.how-to div.navi ul li span {
	display: block;
	position: relative;
}
main div.how-to div.navi ul li span.number {
	width: 20px;
	font-family: "din-2014", sans-serif;
}
main div.how-to div.navi ul li span::before {
	position: absolute;
	content: "";
}
main div.how-to div.navi ul li span.number::before {
	width: 6px;
	height: 6px;
	left: -16px;
	top: 10px;
	background-color: #000000;
	border-radius: 50%;
	opacity: 0;
	transition: 0.25s opacity ease;
}
main div.how-to div.navi ul li.start span.number::before {
	opacity: 1;
}
main div.how-to div.navi ul li.end span.number::before {
	opacity: 0;
}
main div.how-to div.navi ul li span.main {
	width: calc(100% - 30px);
	font-size: 0.875rem;
}
main div.how-to div.navi ul li span.main::before {
	width: 0px;
	height: calc(100% - 10px);
	left: -10px;
	top: 6px;
	border-right: 1px solid #acacac;
	transition: 0.25s border-color ease;
}
main div.how-to div.navi ul li.start span.main::before {
	border-color: #000000;
}
main div.how-to div.navi ul li.end span.main::before {
	border-color: #acacac;
}
main div.how-to div.list {
	position: relative;
}
main div.how-to div.list::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 20px);
	left: 24px;
	top: 10px;
	border-right: 2px solid #e2e2e2;
	content: "";
}
main div.how-to div.list div.row {
	position: relative;
}
main div.how-to div.list div.row:not(:last-child) {
	padding-bottom: 100px;
}
main div.how-to div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main div.how-to div.list div.row h3:not(:last-child) {
	margin-bottom: 30px;
}
main div.how-to div.list div.row h3 span.number {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-family: "din-2014", sans-serif;
	font-size: 1.625rem;
	font-weight: 600;
	color: #ffffff;
	clip-path: polygon(25% 6.69%, 75% 6.69%, 100% 50%, 75% 93.31%, 25% 93.31%, 0% 50%);
}
main div.how-to div.list div.row h3 span.main {
	width: calc(100% - 90px);
	font-size: 1.625rem;
	font-weight: 600;
}
main div.how-to div.list div.row div.body {
	padding-left: 90px;
}
main div.how-to div.list div.row div.body p.image:not(:last-child) {
	margin-bottom: 15px;
}
body.corporate main section header.common p.sub {
	color: #08387d;
}
body.corporate main section header.common p.sub::before {
	background-color: #08387d;
}
body.corporate main div.slide div.pager p.button:hover span.arrow::before {
	opacity: 1;
	transition: 0.25s background-color ease, 0.25s opacity ease;
}
body.corporate main div.slide div.pager p.button span.arrow::before {
	background-color: #acacac;
	opacity: 1;
}
body.corporate main div.slide div.pager p.button.active span.arrow::before {
	background-color: #0e50ad;
	opacity: 0;
}
body.corporate main div.slide div.pager p.button.active:hover span.arrow::before {
	opacity: 1;
}
body.corporate main div.list-our-job div.row h3 {
	background-color: #08387d;
}
body.corporate main div.list-our-job + p.diagram::before,
body.corporate main div.list-our-job + p.diagram::after {
	border-color: #08387d;
}
body.corporate main div.how-to div.list div.row h3 span.number {
	background: linear-gradient(120deg, #0e50ad 0%, #041c3f 100%);
}
body.recruit main section header.common p.sub {
	color: #0555c7;
}
body.recruit main section header.common p.sub::before {
	background-color: #0555c7;
}
body.recruit main div.slide div.pager p.button span.arrow {
	transition: 0.25s background-color ease;
}
body.recruit main div.slide div.pager p.button:hover span.arrow:hover {
	background-color: #08387d;
}
body.recruit main div.list-our-job div.row h3 {
	background-color: #0555c7;
}
body.recruit main div.list-our-job + p.diagram::before,
body.recruit main div.list-our-job + p.diagram::after {
	border-color: #0555c7;
}
body.recruit main div.how-to div.list div.row h3 span.number {
	background-color: #0555c7;
}

/* home
-------------------------------------------------------------------------------- */

body.home main section div.inner-section {
	max-width: 1200px;
}
main section#home-introduction div.inner-section {
	min-height: 1080px;
	padding-top: 240px;
}
main section#home-introduction p.map {
	position: absolute;
	width: 1400px;
	left: calc(50% - 580px);
	top: 120px;
	mask-image: linear-gradient(180deg, transparent 0%, #000000 25%, #000000 75%, transparent 100%);
}
main section#home-introduction p.image {
	position: absolute;
}
main section#home-introduction p.image-01 {
	width: 280px;
	left: 50%;
	top: 80px;
}
main section#home-introduction p.image-02 {
	width: 280px;
	left: calc(50% + 370px);
	top: 420px;
}
main section#home-introduction p.image-03 {
	width: 290px;
	left: calc(50% + 190px);
	top: 840px;
}
main section#home-introduction :where(h2, div.description) {
	margin-bottom: 60px;
}
main section#home-introduction h2 {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 4rem;
}
main section#home-our-job div.inner-section {
	padding-bottom: 0px;
}
main section#home-our-job {
	background-color: #ffffff;
	clip-path: polygon(0% 120px, 100% 0%, 100% 100%, 0% 100%);
}
main section#home-our-job div.inner-section {
	padding-top: 240px;
}
main section#home-our-job div.diagram-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
main section#home-our-job div.diagram-text div.text {
	width: calc(100% - 835px);
}
main section#home-our-job div.diagram-text div.text p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
}
main section#home-our-job div.diagram-text p.diagram {
	width: 815px;
}
main section#home-our-job div.list-our-job {
	margin-bottom: 60px;
}
main section#home-our-job p.more {
	justify-content: flex-end;
	margin-bottom: 120px;
}
main section#home-our-job div.image {
	overflow: hidden;
	margin: 0px calc(50% - 50vw);
}
main section#home-our-job div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
	animation: home-our-job 120s linear infinite forwards;
}
@keyframes home-our-job {
	0% { transform: translateX(0px); }
	100% { transform: translateX(-2585px); }
}
main section#home-our-job div.image p:where(.row-01, .row-04) {
	width: 600px;
}
main section#home-our-job div.image p:where(.row-02, .row-05) {
	width: 470px;
}
main section#home-our-job div.image p.row-03 {
	width: 445px;
}
main section#home-machine-qual div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	margin-left: calc(50% - 50vw);
}
main section#home-machine-qual div.image-text div.text {
	width: 420px;
}
main section#home-machine-qual div.image-text div.text p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
	margin-bottom: 40px;
}
main section#home-machine-qual div.image-text p.image {
	width: calc(100% - 540px);
	height: 600px;
}
main section#home-machine-qual div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-result div.slide {
	position: relative;
}
main section#home-result div.slide div.list-result {
	display: block;
	overflow: hidden;
	margin: 0px calc(50% - 50vw) 40px 0px;
}
main section#home-result div.slide div.list-result div.inner-list-result {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
main section#home-result div.slide div.list-result div.row {
	width: calc(1120px * 0.33);
	margin: 0px 40px 0px 0px;
}
main section#home-result div.slide div.list-result div.row span.arrow {
	display: none;
}
main section#home-result div.slide p.line,
main section#home-result div.slide div.pager {
	display: none;
}
main section#home-result div.slide p.line {
	position: absolute;
	width: calc(100% - 160px);
	height: 0px;
	left: 0px;
	bottom: 14px;
	border-bottom: 2px solid #e2e2e2;
}
main section#home-result div.slide.active-alternate p.line {
	display: block;
}
main section#home-result div.slide p.line span {
	position: absolute;
	width: 0%;
	height: 0px;
	left: 0px;
	top: 0px;
	border-bottom: 2px solid #08387d;
	content: "";
}
main section#home-result div.slide.active-alternate div.pager {
	display: flex;
}
main section#home-result p.list {
	position: absolute;
	right: 0px;
	top: 198px;
}
main section#home-recruit {
	overflow: hidden;
	text-align: center;
	color: #ffffff;
	background-color: #0e50ad;
}
main section#home-recruit::before,
main section#home-recruit::after {
	position: absolute;
	width: 100%;
	height: 50px;
	left: 0px;
	z-index: 5;
	content: "";
	mask-image: url(../images/path-01.svg);
	mask-size: 100% 100%;
}
main section#home-recruit::before {
	top: -0.5px;
	background-color: #f4f4f4;
}
main section#home-recruit::after {
	bottom: -0.5px;
	background-color: #ffffff;
	transform: scaleY(-1);
}
main section#home-recruit div.inner-section {
	padding: 180px 0px;
}
main section#home-recruit div.image {
	position: absolute;
}
main section#home-recruit div.image-01 {
	aspect-ratio: 345 / 305;
	width: 345px;
	left: calc(50% - 545px);
	top: 0px;
}
main section#home-recruit div.image-02 {
	aspect-ratio: 340 / 295;
	width: 340px;
	left: calc(50% + 280px);
	top: -20px;
}
main section#home-recruit div.image-03 {
	aspect-ratio: 300 / 230;
	width: 300px;
	left: calc(50% - 600px);
	top: calc(50% - 100px);
}
main section#home-recruit div.image-04 {
	aspect-ratio: 230 / 330;
	width: 230px;
	left: calc(50% + 340px);
	top: calc(50% - 160px);
}
main section#home-recruit div.image-05 {
	aspect-ratio: 345 / 280;
	width: 345px;
	left: calc(50% - 585px);
	bottom: 0px;
}
main section#home-recruit div.image-06 {
	aspect-ratio: 370 / 265;
	width: 370px;
	left: calc(50% + 240px);
	bottom: 0px;
}
main section#home-recruit div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
main section#home-recruit div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-recruit header {
	position: relative;
	text-align: center;
	margin-bottom: 80px;
}
main section#home-recruit header p.sub {
	color: #ffffff;
	padding-left: 0px;
}
main section#home-recruit header p.sub::before {
	display: none;
}
main section#home-recruit header h2 {
	position: relative;
}
main section#home-recruit header h2::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	bottom: -40px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
main section#home-recruit header h2.active::before {
	opacity: 1;
}
main section#home-recruit h3 {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 4rem;
	margin-bottom: 40px;
}
main section#home-recruit p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
	margin-bottom: 60px;
}
main section#home-recruit p.button-default a {
	border-color: #ffffff;
}
main section#home-news {
	background-color: #ffffff;
}
main section#home-news div.inner-section {
	padding-left: 280px;
}
main section#home-news :where(header, p.list) {
	position: absolute;
	left: 0px;
}
main section#home-news header {
	top: 120px;
}
main section#home-news p.list {
	top: 260px;
}

/* about-us
-------------------------------------------------------------------------------- */

main section#about-us div.inner-section {
	padding-left: 320px;
}
main section#about-us h2 {
	position: absolute;
	left: 0px;
	top: 120px;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 4rem;
}
main section#strength {
	background-color: #ffffff;
}
main section#strength div.inner-section {
	padding-bottom: 360px;
}
main section#strength div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section#strength div.list div.row:nth-child(2n+1) {
	margin-left: calc(50% - 50vw);
}
main section#strength div.list div.row:nth-child(2n) {
	flex-direction: row-reverse;
	margin-right: calc(50% - 50vw);
}
main section#strength div.list div.row p.image {
	width: calc(100% - 460px);
	height: 470px;
}
main section#strength div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#strength div.list div.row div.text {
	width: 380px;
}
main section#strength div.list div.row div.text p.number {
	font-family: "din-2014", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #08387d;
	margin-bottom: 10px;
}
main section#strength div.list div.row div.text h3 {
	font-size: 2.125rem;
	font-weight: 600;
	line-height: 3.25rem;
	margin-bottom: 20px;
}
main section#strength div.list div.row div.text p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
	margin-bottom: 40px;
}
main section#strength div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
main section#message div.inner-section {
	padding-top: 0px;
}
main section#message p.image-main {
	transform: translateY(-240px);
	margin: 0px -100px -120px -100px;
}
main section#message div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
main section#message div.image-text p.image {
	width: 440px;
}
main section#message div.image-text div.text {
	width: calc(100% - 520px);
}
main section#message div.image-text div.text h3 {
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 3.25rem;
	margin-bottom: 40px;
}
main section#message div.image-text div.text div.description {
	margin-bottom: 40px;
}
main section#message div.image-text div.text p.name {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
main section#message div.image-text div.text p.name span {
	display: block;
}
main section#message div.image-text div.text p.name span.sub {
	font-weight: 500;
	margin-right: 30px;
}
main section#message div.image-text div.text p.name span.main img {
	width: 154px;
}
main section:where(#mission, #philosophy)::before {
	position: absolute;
	width: 1200px;
	left: calc(50% - 600px);
	top: 0px;
	border-bottom: 1px solid #e2e2e2;
	content: "";
}
main section#mission div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}
main section#mission div.image-text div.text {
	width: calc(100% - 540px);
	padding-top: 60px;
}
main section#mission div.image-text div.text dl :where(dt, dd) {
	display: block;
}
main section#mission div.image-text div.text dl dt {
	font-size: 1.625rem;
	font-weight: 600;
	margin-bottom: 10px;
}
main section#mission div.image-text div.text dl dd {
	font-size: 1.125rem;
	padding-left: 40px;
}
main section#mission div.image-text div.text dl dd:not(:last-child) {
	margin-bottom: 60px;
}
main section#mission div.image-text div.image {
	width: 460px;
}
main section#mission div.image-text div.image p.row img {
	width: 100%;
}
main section#mission div.image-text div.image p.row-01 {
	width: 460px;
}
main section#mission div.image-text div.image p.row-02 {
	position: relative;
	width: 230px;
	margin: -200px 0px 0px -100px;
}
main section#philosophy div.inner-section {
	padding-bottom: 0px;
}
main section#philosophy p.description {
	text-align: center;
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 3.75rem;
	margin-bottom: 120px;
}
main section#philosophy div.image {
	overflow: hidden;
	margin: 0px calc(50% - 50vw);
}
main section#philosophy div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
	animation: philosophy 120s linear infinite forwards;
}
@keyframes philosophy {
	0% { transform: translateX(0px); }
	100% { transform: translateX(-2585px); }
}
main section#philosophy div.image p:where(.row-01, .row-04) {
	width: 600px;
}
main section#philosophy div.image p:where(.row-02, .row-05) {
	width: 470px;
}
main section#philosophy div.image p.row-03 {
	width: 445px;
}
main section#outline {
	background-color: #ffffff;
}
main section#outline div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#outline div.column div:where(.left, .right) {
	width: calc(50% - 40px);
}
main section#outline div.column div.list div.row {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5rem;
	border-bottom: 1px solid #acacac;
	padding-bottom: 20px;
}
main section#outline div.column div.list div.row:not(:first-child) {
	padding-top: 20px;
}
main section#outline div.column div.list div.row p.label {
	width: 120px;
	font-weight: 500;
}
main section#outline div.column div.list div.row p.body {
	width: calc(100% - 120px);
}
main section#history div.inner-section {
	max-width: 1200px;
}
main section#history div.history {
	position: relative;
	padding-left: 540px;
}
main section#history div.history div.trigger {
	position: absolute;
}
main section#history div.history div.trigger-01 {
	top: -120px;
}
main section#history div.history div.list div.row,
main section#history div.history div.list div.row :where(p.era-year, div.body),
main section#history div.history div.list div.row div.body p.month-description {
	display: flex;
	flex-wrap: wrap;
}
main section#history div.history div.list div.row,
main section#history div.history div.list div.row p.era-year {
	justify-content: space-between;
}
main section#history div.history div.list div.row {
	position: relative;
	line-height: 1.5rem;
}
main section#history div.history div.list div.row:not(:last-child) {
	padding-bottom: 40px;
}
main section#history div.history div.list div.row:not(:last-child)::before,
main section#history div.history div.list div.row::after {
	position: absolute;
	content: "";
	opacity: 0;
	transition: 1.25s opacity ease-in-out, 1.25s transform ease;
}
main section#history div.history div.list div.row:not(:last-child).active::before,
main section#history div.history div.list div.row.active::after {
	opacity: 1;
}
main section#history div.history div.list div.row:not(:last-child)::before {
	width: 0px;
	height: 100%;
	left: 129.5px;
	top: 14px;
	border-right: 1px solid #acacac;
	transform-origin: left top;
	transform: scaleY(0);
}
main section#history div.history div.list div.row:not(:last-child).active::before {
	transform: scaleY(1);
}
main section#history div.history div.list div.row::after {
	width: 10px;
	height: 10px;
	left: 125px;
	top: 9px;
	background-color: #08387d;
	border-radius: 50%;
	transform: scale(0);
}
main section#history div.history div.list div.row.active::after {
	transform: scale(1);
}
main section#history div.history div.list div.row :where(p.era-year, div.body) {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
main section#history div.history div.list div.row.active :where(p.era-year, div.body) {
	opacity: 1;
}
main section#history div.history div.list div.row p.era-year {
	width: 100px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #08387d;
	transition-delay: 0.25s;
}
main section#history div.history div.list div.row p.era-year span,
main section#history div.history div.list div.row div.body p.month-description span.month {
	display: block;
}
main section#history div.history div.list div.row div.body {
	width: calc(100% - 160px);
	transition-delay: 0.5s;
}
main section#history div.history div.list div.row div.body p.month-description:not(:last-child) {
	margin-bottom: 10px;
}
main section#history div.history div.list div.row div.body p.month-description span.month {
	width: 50px;
	font-weight: 600;
}
main section#history div.history div.list div.row div.body p.month-description span.description {
	width: calc(100% - 50px);
}
main section#history div.history div.slide {
	position: absolute;
	width: 460px;
	left: 0px;
	top: 0px;
}
main section#history div.history.top div.slide {
	position: fixed;
	left: calc(50% - 600px);
	top: 120px;
}
main section#history div.history.bottom div.slide {
	position: absolute;
	top: auto;
	bottom: 0px;
}
main section#history div.history div.slide div.image {
	aspect-ratio: 460 / 320;
	position: relative;
	margin-bottom: 10px;
}
main section#history div.history div.slide div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
main section#history div.history div.slide div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#history div.history div.slide div.caption-pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#history div.history div.slide div.caption {
	width: calc(100% - 140px);
}
main section#history div.history div.slide div.caption p.row {
	display: none;
	overflow: hidden;
	line-height: 1.5rem;
	padding-top: 3px;
}
main section#history div.history div.slide div.caption p.row.active {
	display: block;
}

/* our-job
-------------------------------------------------------------------------------- */

main section:where(#our-job, #how-to) header + p.description {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.75rem;
	margin-bottom: 120px;
}
main section#our-job div.inner-section {
	padding-bottom: 170px;
}
main section#how-to,
main section#how-to::before {
	background-color: #ffffff;
}
main section#how-to::before {
	position: absolute;
	width: 100%;
	height: 50px;
	left: 0px;
	top: -49.5px;
	content: "";
	transform: scaleY(-1);
	mask-image: url(../images/path-01.svg);
	mask-size: 100% 100%;
}
main section#how-to div.inner-section {
	max-width: 1200px;
}

/* factory
-------------------------------------------------------------------------------- */

main section#factory div.inner-section {
	max-width: 1200px;
	padding-top: 0px;
}
main section#factory header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 400px;
	padding-left: 100px;
}
main section#factory header p.map {
	position: absolute;
	width: 473px;
	right: 0px;
	top: -20px;
}
main section#factory header p.description {
	position: relative;
	z-index: 1;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
}
main section#factory div.list div.row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	padding: 60px 100px;
	background-color: #ffffff;
}
main section#factory div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#factory div.list div.row p.image {
	width: 460px;
}
main section#factory div.list div.row div.text {
	width: calc(100% - 540px);
}
main section#factory div.list div.row div.text :where(h2, div.map) {
	margin-bottom: 10px;
}
main section#factory div.list div.row div.text h2 {
	font-size: 1.625rem;
	font-weight: 600;
}
main section#factory div.list div.row div.text p:where(.tel-fax, .area) {
	display: flex;
	flex-wrap: wrap;
}
main section#factory div.list div.row div.text p:where(.tel-fax, .area) span {
	display: block;
}
main section#factory div.list div.row div.text p:where(.tel-fax, .area) span:not(:last-child) {
	margin-right: 20px;
}
main section#factory div.list div.row div.text:not(:has(p.area)) p.tel-fax,
main section#factory div.list div.row div.text p.area {
	margin-bottom: 30px;
}
main section#factory div.list div.row div.text div.map iframe {
	width: 100%;
	height: 180px;
}
main section#factory div.list div.row div.text p.google-maps {
	font-family: "din-2014", sans-serif;
	font-weight: 600;
}
main section#factory div.list div.row div.text p.google-maps i.icon {
	display: inline-block;
	font-weight: 400;
	color: #0e50ad;
	margin-left: 5px;
	transform: translateY(2px) rotate(-45deg);
}

/* machine-qual
-------------------------------------------------------------------------------- */

main div.list-machine {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px -60px 0px;
}
main div.list-machine div.row {
	width: calc(50% - 80px);
	margin: 0px 80px 60px 0px;
}
main div.list-machine div.row p.image {
	margin-bottom: 15px;
}
main div.list-machine div.row :where(h4, div.data) {
	padding-left: 20px;
}
main div.list-machine div.row h4 {
	position: relative;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.625rem;
	margin-bottom: 10px;
	transition: 0.25s color ease;
}
main div.list-machine div.row h4::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 11px;
	background-color: #08387d;
	content: "";
	border-radius: 50%;
}
main div.list-machine div.row div.data ul li {
	display: flex;
	flex-wrap: wrap;
}
main div.list-machine div.row div.data ul li span {
	display: block;
}
main div.list-machine div.row div.data ul li span.label {
	width: 80px;
	font-size: 0.875rem;
	color: #6f6f6f;
}
main div.list-machine div.row div.data ul li span.body {
	width: calc(100% - 80px);
}
main div.list-machine-alternate-wrapper:not(:last-child) {
	margin-bottom: 60px;
}
main div.list-machine-alternate {
	border: 1px solid #acacac;
	background-color: #ffffff;
}
main div.list-machine-alternate div.row,
main div.list-machine-alternate div.row p {
	display: flex;
	flex-wrap: wrap;
}
main div.list-machine-alternate div.row:not(:first-child) {
	border-top: 1px solid #acacac;
}
main div.list-machine-alternate div.row p {
	justify-content: center;
	align-items: center;
	height: 60px;
	text-align: center;
	line-height: 1.5rem;
	padding: 0px 20px;
}
main div.list-machine-alternate div.row p:not(:last-child) {
	border-right: 1px solid #acacac;
}
main div.list-machine-alternate div.row-header p {
	font-weight: 500;
	background-color: #e2e2e2;
}
main div.list-machine-alternate div.row p.name {
	width: 32.5%;
}
main div.list-machine-alternate div.row p:where(.model, .maker, .factory) {
	width: 22.5%;
}
main section#machine div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#machine div.block h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 60px;
}
main section#machine div.block h3 span {
	display: block;
}
main section#machine div.block h3 span.border {
	position: relative;
	width: 7px;
	height: 25px;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
}
main section#machine div.block h3 span.border::before {
	position: absolute;
	width: 50vw;
	height: 0px;
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #000000;
	content: "";
}
main section#machine div.block h3 span.border-left::before {
	right: 6px;
}
main section#machine div.block h3 span.border-right::before {
	left: 6px;
}
main section#machine div.block h3 span.text {
	margin: 0px 40px;
}
main section#qual div.list,
main section#qual div.list div.row,
main section#qual div.list div.row p {
	display: flex;
	flex-wrap: wrap;
}
main section#qual div.list {
	position: relative;
	border: 1px solid #acacac;
	background-color: #ffffff;
}
main section#qual div.list::before {
	position: absolute;
	width: 50%;
	right: 0px;
	bottom: 60px;
	border-bottom: 1px solid #acacac;
	content: "";
}
main section#qual div.list div.row {
	width: 50%;
}
main section#qual div.list div.row:not(:nth-child(1)):not(:nth-child(2)) {
	border-top: 1px solid #acacac;
}
main section#qual div.list div.row p {
	justify-content: center;
	align-items: center;
	height: 60px;
	text-align: center;
	line-height: 1.5rem;
}
main section#qual div.list div.row:nth-child(2n+1),
main section#qual div.list div.row p:not(:last-child) {
	border-right: 1px solid #acacac;
}
main section#qual div.list div.row:not(.row-header) p {
	padding: 0px 10px;
}
main section#qual div.list div.row-header p {
	font-weight: 500;
	background-color: #e2e2e2;
}
main section#qual div.list div.row p.name {
	width: calc(100% - 100px);
}
main section#qual div.list div.row p.number {
	width: 100px;
}

/* result
-------------------------------------------------------------------------------- */

main div.list-result {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px -60px 0px;
}
main div.list-result div.row {
	width: calc(50% - 80px);
	margin: 0px 80px 60px 0px;
}
main div.list-result div.row-add {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
main div.list-result div.row-add.active {
	opacity: 1;
}
main div.list-result div.row a {
	display: block;
	position: relative;
}
main div.list-result div.row p.image {
	margin-bottom: 15px;
}
main div.list-result div.row h3 {
	position: relative;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.625rem;
	margin-bottom: 10px;
	padding-left: 20px;
	transition: 0.25s color ease;
}
main div.list-result div.row a:hover h3 {
	color: #0e50ad;
}
main div.list-result div.row h3::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 12px;
	background-color: #08387d;
	content: "";
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
main div.list-result div.row a:hover h3::before {
	background-color: #0e50ad;
}
main div.list-result div.row div.misc {
	display: flex;
	flex-wrap: wrap;
}
main div.list-result div.row div.misc p:not(:last-child) {
	margin-right: 15px;
}
main div.list-result div.row div.misc p.category span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 30px;
	color: #000000;
	padding: 0px 15px;
	background-color: #e2e2e2;
	border-radius: 15px;
}
main div.list-result div.row p.period {
	color: #6f6f6f;
	padding-top: 5px;
}
main div.list-result div.row span.arrow {
	position: absolute;
	right: 0px;
	bottom: 0px;
}
main:has(div.list-result-no-image) div.list-result {
	margin-bottom: 80px;
}
main div.list-result-no-image div.row {
	border-bottom: 2px dashed #acacac;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main article.result {
	position: relative;
	margin: -120px 0px 60px 0px;
	padding-top: 240px;
}
main:has(div.other) article.result {
	margin-bottom: 160px;
}
main article.result::before {
	position: absolute;
	width: 100vw;
	height: 800px;
	left: 0px;
	top: 0px;
	margin: 0px calc(50% - 50vw);
	background: linear-gradient(90deg, #0e50ad 0%, #041c3f 100%);
	content: "";
	clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 240px), 0% 100%);
}
main article.result div.inner-article {
	position: relative;
}
main article.result header {
	color: #ffffff;
	margin-bottom: 60px;
}
main article.result header p.category,
main article.result header p.category span {
	display: flex;
	flex-wrap: wrap;
}
main article.result header p.category {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
main article.result header p.category span {
	justify-content: center;
	align-items: center;
	height: 30px;
	color: #000000;
	padding: 0px 15px;
	background-color: #e2e2e2;
	border-radius: 15px;
}
main article.result header h1 {
	position: relative;
	font-size: 2.125rem;
	font-weight: 600;
	line-height: 3.25rem;
	padding-left: 25px;
}
main article.result header h1::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 25px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
main article.result div.slide-data {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
}
main article.result div.slide-data div.slide {
	position: relative;
	width: 680px;
}
main article.result div.slide-data div.slide div.image {
	aspect-ratio: 680 / 470;
	position: relative;
}
main article.result div.slide-data div.slide div.image:has(p.row:nth-child(2)) {
	margin-bottom: 10px;
}
main article.result div.slide-data div.slide div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
}
main article.result div.slide-data div.slide div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main article.result div.slide-data div.slide div:where(.pager, .navi) {
	display: none;
}
main article.result div.slide-data div.slide:has(p.row:nth-child(2)) div:where(.pager, .navi) {
	display: flex;
	flex-wrap: wrap;
}
main article.result div.slide-data div.slide div.navi {
	position: absolute;
	left: 0px;
	bottom: 28px;
}
main article.result div.slide-data div.slide div.navi p.button {
	width: 20px;
	height: 0px;
	cursor: pointer;
	border-bottom: 2px solid #acacac;
	transition: 0.25s border-color ease;
}
main article.result div.slide-data div.slide div.navi p.button:not(:last-child) {
	margin-right: 5px;
}
main article.result div.slide-data div.slide div.navi p.button:hover,
main article.result div.slide-data div.slide div.navi p.button.active {
	border-color: #0e50ad;
}
main article.result div.slide-data div.data {
	width: calc(100% - 700px);
}
main article.result div.slide-data div.data ul li {
	display: flex;
	flex-wrap: wrap;
	color: #ffffff;
}
main article.result div.slide-data div.data ul li:not(:last-child) {
	margin-bottom: 10px;
}
main article.result div.slide-data div.data ul li span {
	display: block;
}
main article.result div.slide-data div.data ul li span.label {
	width: 80px;
	font-size: 0.875rem;
}
main article.result div.slide-data div.data ul li span.body {
	width: calc(100% - 100px);
	font-weight: 600;
}
main section#result div.list-wrapper {
	justify-content: space-between;
}
main section#result div#pager {
	display: none;
}
main section#result p.button-more {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 140px;
	height: 40px;
	font-family: "din-2014", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	color: #08387d;
	cursor: pointer;
	margin: 120px auto 0px auto;
	background-color: #ffffff;
	border-radius: 5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main section#result:has(div#pager) p.button-more {
	display: flex;
}
main section#result p.button-more:hover {
	color: #ffffff;
	background-color: #0e50ad;
}
main section#result p.button-more span {
	display: block;
}
main section#result p.button-more span.icon {
	position: relative;
	width: 15px;
	height: 15px;
	left: 10px;
}
main section#result p.button-more span.icon::before,
main section#result p.button-more span.icon::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #08387d;
	content: "";
	transition: 0.25s border-color ease;
}
main section#result p.button-more:hover span.icon::before,
main section#result p.button-more:hover span.icon::after {
	border-color: #ffffff;
}
main section#result p.button-more span.icon::after {
	transform: rotate(90deg);
}
main section#result div.other {
	margin-bottom: 60px;
}
main section#result div.other div.list-result {
	margin: 0px -40px -40px 0px;
}
main section#result div.other div.list-result div.row {
	width: calc(33.33% - 40px);
	margin: 0px 40px 40px 0px;
}
main section#result div.other div.list-result div.row h3 {
	font-size: 1.125rem;
}
main section#result div.other div.list-result div.row div.misc {
	padding-right: 80px;
}
main section#result div.other div.list-result div.row div.misc p,
main section#result div.other div.list-result div.row p.period {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
main section#result div.other div.list-result div.row div.misc p.category span {
	height: 20px;
	font-size: 0.625rem;
	padding: 0px 10px;
	border-radius: 10px;
}
main section#result div.other div.list-result div.row p.period {
	position: absolute;
	right: 0px;
	bottom: 0px;
}
main section#result div.other div.list-result div.row span.arrow {
	display: none;
}
main section#result div.other div.slide {
	display: none;
}

/* news
-------------------------------------------------------------------------------- */

main div.created-category,
main div.created-category div.category ul,
main div.created-category div.category ul li {
	display: flex;
	flex-wrap: wrap;
}
main div.created-category {
	align-items: center;
	margin-bottom: 10px;
}
main div.created-category p.created {
	width: 100px;
	font-family: "din-2014", sans-serif;
	font-weight: 600;
}
main div.created-category p.category {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 30px;
	color: #000000;
	padding: 0px 15px;
	background-color: #e2e2e2;
	border-radius: 15px;
}
main div.list-news div.row a {
	display: block;
	position: relative;
	border-bottom: 1px solid #acacac;
	padding-bottom: 30px;
}
main div.list-news div.row:not(:first-child) a {
	padding-top: 30px;
}
main div.list-news div.row h3 {
	font-size: 1.25rem;
	font-weight: 600;
	padding-right: 40px;
	transition: 0.25s color ease;
}
main div.list-news div.row a:hover h3 {
	color: #0e50ad;
}
main div.list-news div.row i.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 40px;
	height: 40px;
	right: 0px;
	top: calc(50% - 20px);
	color: #08387d;
	transition: 0.25s color ease, 0.25s transform ease;
}
main div.list-news div.row a:hover i.icon {
	color: #0e50ad;
	transform: translateX(5px);
}
main article.news {
	margin: -120px 0px 60px 0px;
	padding-top: 240px;
}
main article.news::before {
	position: absolute;
	width: 100vw;
	height: 800px;
	left: 0px;
	top: 0px;
	margin: 0px calc(50% - 50vw);
	background: linear-gradient(90deg, #0e50ad 0%, #041c3f 100%);
	content: "";
	clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 240px), 0% 100%);
}
main article.news div.inner-article {
	position: relative;
	padding: 100px;
	background-color: #ffffff;
}
main article.news header {
	border-bottom: 1px solid #acacac;
	margin-bottom: 60px;
	padding-bottom: 60px;
}
main article.news header div.created-category {
	justify-content: center;
	margin-bottom: 30px;
}
main article.news header h1 {
	text-align: center;
	font-size: 2.125rem;
	font-weight: 600;
	line-height: 3.25rem;
	color: #08387d;
}
main section#news div.list-wrapper {
	justify-content: center;
}

/* form
-------------------------------------------------------------------------------- */

main section.form div:where(.header, .form) {
	margin-bottom: 120px;
}
main section.form div.header p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
	margin-bottom: 20px;
}
main section.form div.form div.component-wrapper {
	margin-bottom: 120px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
main section.form div.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 180px;
	height: 50px;
	line-height: 1.25rem;
	font-weight: 500;
}
main section.form div.form div.component p.label span.require {
	font-size: 0.875rem;
	font-weight: 400;
	margin-left: 10px;
}
main section.form div.form div.component p.label:has(br) span.require {
	padding-bottom: 1.25rem;
}
main section.form div.form div.component div.body {
	width: calc(100% - 180px);
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -10px;
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body :where(input:where([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field),
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field) {
	margin: 0px 0px 10px 0px;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field) > label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	cursor: pointer;
	padding: 0px 25px 0px 12.5px;
	background-color: #ffffff;
	border-radius: 25px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field):has(input:where([type=radio], [type=checkbox]):checked) > label {
	color: #ffffff;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field):not(:last-of-type) {
	margin-right: 10px;
}
main section.form div.form div.component-radio-checkbox label.alternate input[type=radio] + span {
	background-color: transparent;
}
main section.form div.form div.component-radio-checkbox label.alternate input[type=radio]:checked + span {
	border-color: #ffffff;
}
main section.form div.form div.component-radio-checkbox label.alternate input[type=radio]:checked + span::before {
	background-color: #ffffff;
}
main section.form div.form div.component div.body span.error,
main section.form div.form div.agreement span.error {
	font-size: 0.875rem;
	line-height: 25px;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	padding-top: 5px;
}
main section.form div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 60px;
}
main section.form div.form div.agreement span.mwform-checkbox-field,
main section.form div.form div.agreement span.mwform-checkbox-field > label {
	display: block;
}
main section.form div.form div.agreement span.mwform-checkbox-field {
	margin-right: 5px;
}
main section.form div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section.form div.form div.agreement span.error {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -25px;
	text-align: center;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button) {
	pointer-events: none;
}
main section.form div.form:has(div.agreement input[type=checkbox]:checked) div.action :where(input:where([type=button], [type=submit]), button) {
	pointer-events: auto;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}
main section.form div.tel {
	width: calc(100% - 360px);
	text-align: center;
	margin: 0px auto;
	padding: 40px;
	background-color: #ffffff;
}
main section.form div.tel h3 {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section.form div.tel p.number {
	font-family: "din-2014", sans-serif;
	font-size: 3.75rem;
	font-weight: 600;
	line-height: 4.75rem;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 3.25rem;
	margin-bottom: 120px;
}
body.corporate main section.form div.header span.require {
	color: #08387d;
}
body.corporate main section.form div.form label.alternate input[type=radio] + span::before {
	background-color: #08387d;
}
body.corporate main section.form div.form label.alternate input[type=checkbox] + span::before {
	border-color: #08387d;
}
body.corporate main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field):has(input:where([type=radio], [type=checkbox]):checked) > label {
	background-color: #08387d;
}
body.corporate main section.form div.form div.component p.label span.require {
	color: #08387d;
}
body.corporate main section.form div.form div.component div.body span.error,
body.corporate main section.form div.form div.agreement span.error {
	color: #08387d;
}
body.corporate main section.form div.form div.action button::before {
	background-color: #acacac;
	opacity: 1;
	transition: 0.25s background-color ease, 0.25s opacity ease;
}
body.corporate main section.form div.form:has(div.agreement input[type=checkbox]:checked) div.action button::before {
	background-color: #08387d;
	opacity: 0;
}
body.corporate main section.form div.form:has(div.agreement input[type=checkbox]:checked) div.action button:hover::before {
	opacity: 1;
}
body.corporate main section.form div.form div.action button span.arrow {
	color: #acacac;
}
body.corporate main section.form div.form:has(div.agreement input[type=checkbox]:checked) div.action button span.arrow {
	color: #0e50ad;
}
body.corporate main section.form div.tel p.number {
	color: #08387d;
}
body.recruit main section.form div.header {
	text-align: center;
}
body.recruit main section.form div.header span.require {
	color: #0555c7;
}
body.recruit main section.form div.form label.alternate input[type=radio] + span::before {
	background-color: #0e50ad;
}
body.recruit main section.form div.form label.alternate input[type=checkbox] + span::before {
	border-color: #0555c7;
}
body.recruit main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field):has(input:where([type=radio], [type=checkbox]):checked) > label {
	background-color: #0555c7;
}
body.recruit main section.form div.form div.component p.label span.require {
	color: #0555c7;
}
body.recruit main section.form div.form div.component div.body span.error,
body.recruit main section.form div.form div.agreement span.error {
	color: #0555c7;
}
body.recruit main section.form div.form div.action button {
	background-color: #acacac;
	transition: 0.25s background-color ease;
}
body.recruit main section.form div.form:has(div.agreement input[type=checkbox]:checked) div.action button {
	background-color: #0555c7;
}
body.recruit main section.form div.form:has(div.agreement input[type=checkbox]:checked) div.action button:hover {
	background-color: #08387d;
}
body.recruit main section.form div.form div.action button span.arrow {
	color: #acacac;
}
body.recruit main section.form div.form:has(div.agreement input[type=checkbox]:checked) div.action button span.arrow {
	color: #0555c7;
}
body.recruit main section.form div.tel {
	border-radius: 10px;
}
body.recruit main section.form div.tel p.number {
	color: #0555c7;
}

/* privacy-policy
-------------------------------------------------------------------------------- */

main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#privacy-policy div.list div.row h2 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #08387d;
	margin-bottom: 10px;
}

/* recruit
-------------------------------------------------------------------------------- */

main header.common-recruit :where(p.sub, h3) {
	color: #0555c7;
}
main header.common-recruit p.sub {
	position: relative;
	font-family: "din-2014", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 5px;
}
main header.common-recruit h3 {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 3.5rem;
}
main header.common-recruit h3:not(:last-child) {
	margin-bottom: 40px;
}
main header.common-recruit p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
	margin-bottom: 60px;
}
main section#recruit-introduction p.image {
	position: absolute;
}
main section#recruit-introduction p.image-01 {
	width: 340px;
	right: 60px;
	top: 40px;
}
main section#recruit-introduction p.image-02 {
	width: 335px;
	right: -80px;
	top: 545px;
}
main section#recruit-introduction p.image {
	max-width: 740px;
	border-radius: 10px;
}
main section:where(#recruit-company, #recruit-our-job) div.trigger {
	position: absolute;
	top: 0px;
}
main section:where(#recruit-company, #recruit-our-job) p.headline {
	position: absolute;
	right: -25px;
	top: 120px;
	z-index: 5;
	writing-mode: vertical-rl;
	white-space: pre;
	font-family: "din-2014", sans-serif;
	font-size: 11.5rem;
	font-weight: 600;
	line-height: 11.5rem;
	transform: rotate(180deg);
}
main section:where(#recruit-company, #recruit-our-job).top p.headline {
	position: fixed;
	top: 120px;
}
div.recruit-our-job main section#recruit-company p.headline,
div.recruit-result main section#recruit-our-job p.headline {
	visibility: hidden;
}
main section#recruit-company p.headline {
	color: #ffffff;
}
main section:where(#recruit-company, #recruit-our-job) div.inner-section {
	z-index: 5;
}
main section#recruit-company header.common {
	margin-bottom: 80px;
}
main section#recruit-company div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#recruit-company div.block-message,
main section#recruit-company div.block-message div.inner-block {
	position: relative;
}
main section#recruit-company div.block-message::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	right: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	border-radius: 0px 10px 10px 0px;
}
main section#recruit-company div.block-message div.inner-block {
	padding: 100px 100px 100px 0px;
}
main section#recruit-company div.block-message div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
main section#recruit-company div.block-message div.image-text p.image {
	width: 380px;
	border-radius: 10px;
}
main section#recruit-company div.block-message div.image-text div.text {
	width: calc(100% - 460px);
}
main section#recruit-company div.block-message div.image-text div.text h3 {
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 3.25rem;
	margin: 0px -40px 40px 0px;
}
main section#recruit-company div.block-message div.image-text div.text div.description {
	margin-bottom: 40px;
}
main section#recruit-company div.block-message div.image-text div.text div.description p.row {
	font-size: 1.125rem;
	line-height: 3rem;
}
main section#recruit-company div.block-message div.image-text div.text div.description p.row:not(:last-child) {
	margin-bottom: 3rem;
}
main section#recruit-company div.block-message div.image-text div.text p.name {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
main section#recruit-company div.block-message div.image-text div.text p.name span {
	display: block;
}
main section#recruit-company div.block-message div.image-text div.text p.name span.sub {
	font-weight: 500;
	margin-right: 30px;
}
main section#recruit-company div.block-message div.image-text div.text p.name span.main img {
	width: 154px;
}
main section#recruit-company div.block-feature header.common-recruit {
	margin-bottom: 60px;
}
main section#recruit-company div.block-feature div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
main section#recruit-company div.block-feature div.list div.row {
	width: calc(33.33% - 40px);
	margin-right: 40px;
	padding: 40px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#recruit-company div.block-feature div.list div.row div.icon-headline {
	margin-bottom: 20px;
}
main section#recruit-company div.block-feature div.list div.row div.icon-headline p.icon {
	width: 90px;
	margin: 0px auto 30px auto;
}
main section#recruit-company div.block-feature div.list div.row div.icon-headline h4 {
	text-align: center;
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 2.5rem;
	margin: 0px -20px;
}
main section#recruit-company div.block-voice {
	position: relative;
}
main section#recruit-company div.block-voice header.common-recruit {
	margin-bottom: 60px;
}
main section#recruit-company div.block-voice div.balloon,
main section#recruit-company div.block-voice div.balloon::before {
	background-color: #a1bfea;
}
main section#recruit-company div.block-voice div.balloon {
	position: absolute;
	border-radius: 20px;
}
main section#recruit-company div.block-voice div.balloon::before {
	position: absolute;
	width: 35px;
	height: 22px;
	right: 20px;
	bottom: -21.5px;
	content: "";
	mask-image: url(../images/path-02.svg);
	mask-size: 100% auto;
}
main section#recruit-company div.block-voice div.balloon-01 {
	width: 200px;
	height: 115px;
	left: calc(50% - 40px);
	top: 80px;
}
main section#recruit-company div.block-voice div.balloon-02 {
	width: 310px;
	height: 245px;
	right: calc(50% + 550px);
	top: 500px;
}
main section#recruit-company div.block-voice div.balloon-03 {
	width: 245px;
	height: 245px;
	left: calc(50% + 440px);
	top: 570px;
}
main section#recruit-company div.block-voice div.balloon-04 {
	width: 210px;
	height: 170px;
	right: calc(50% + 410px);
	top: 1010px;
}
main section#recruit-company div.block-voice div.balloon-05 {
	width: 270px;
	height: 110px;
	left: calc(50% + 160px);
	top: 1050px;
}
main section#recruit-company div.block-voice div.list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0px -80px -60px 0px;
}
main section#recruit-company div.block-voice div.list div.row,
main section#recruit-company div.block-voice div.list div.row::before {
	background-color: #0555c7;
}
main section#recruit-company div.block-voice div.list div.row:hover,
main section#recruit-company div.block-voice div.list div.row:hover::before {
	background-color: #08387d;
}
main section#recruit-company div.block-voice div.list div.row {
	position: relative;
	width: calc(50% - 80px);
	height: 330px;
	color: #ffffff;
	cursor: pointer;
	margin: 0px 80px 60px 0px;
	padding-left: 210px;
	background-color: #0555c7;
	border-radius: 20px;
	transition: 1.25s opacity ease-in-out, 1.25s transform ease, 0.25s background-color ease;
}
main section#recruit-company div.block-voice div.list div.row:nth-child(2n+1) {
	margin-top: 120px;
}
main section#recruit-company div.block-voice div.list div.row::before,
main section#recruit-company div.block-voice div.list div.row::after {
	position: absolute;
	content: "";
}
main section#recruit-company div.block-voice div.list div.row::before {
	width: 70px;
	height: 44px;
	bottom: -43.5px;
	transition: 0.25s background-color ease;
	mask-image: url(../images/path-02.svg);
	mask-size: 100% auto;
}
main section#recruit-company div.block-voice div.list div.row:where(:nth-child(1), :nth-child(4)):before {
	right: 20px;
}
main section#recruit-company div.block-voice div.list div.row:where(:nth-child(2), :nth-child(3)):before {
	right: 100px;
	transform: scaleX(-1);
}
main section#recruit-company div.block-voice div.list div.row::after {
	width: calc(100% - 80px);
	height: 0px;
	left: 40px;
	bottom: 80px;
	border-bottom: 1px solid #ffffff40;
}
main section#recruit-company div.block-voice div.list div.row p.image,
main section#recruit-company div.block-voice div.list div.row p.image img {
	position: absolute;
	bottom: 0px;
}
main section#recruit-company div.block-voice div.list div.row p.image {
	width: 210px;
	height: 375px;
	left: 0px;
	z-index: 1;
	border-bottom-left-radius: 10px;
}
main section#recruit-company div.block-voice div.list div.row p.image img {
	width: auto;
	max-width: none;
	height: 100%;
	right: 0px;
}
main section#recruit-company div.block-voice div.list div.row :where(h4, div.profile, p.worth) {
	position: absolute;
}
main section#recruit-company div.block-voice div.list div.row h4 {
	right: 20px;
	top: 40px;
	width: calc(100% - 180px);
}
main section#recruit-company div.block-voice div.list div.row :where(div.profile, p.worth) {
	right: 40px;
	text-align: right;
}
main section#recruit-company div.block-voice div.list div.row div.profile {
	bottom: 90px;
}
main section#recruit-company div.block-voice div.list div.row div.profile p.name {
	display: flex;
	flex-wrap: wrap;
	font-weight: 600;
}
main section#recruit-company div.block-voice div.list div.row div.profile p.name span {
	display: block;
}
main section#recruit-company div.block-voice div.list div.row div.profile p.name span.sub {
	font-size: 1.125rem;
	margin-right: 10px;
	transform: translateY(2px);
}
main section#recruit-company div.block-voice div.list div.row div.profile p.name span.main {
	font-family: "din-2014", sans-serif;
	font-size: 1.875rem;
}
main section#recruit-company div.block-voice div.list div.row div.profile p.year {
	font-size: 0.875rem;
	font-weight: 500;
}
main section#recruit-company div.block-voice div.list div.row p.worth {
	bottom: 40px;
	font-size: 1.125rem;
	font-weight: 500;
	padding-right: 40px;
}
main section#recruit-company div.block-voice div.list div.row p.worth span {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0px;
	top: calc(50% - 15px);
	background-color: #ffffff;
	border-radius: 50%;
}
main section#recruit-company div.block-voice div.list div.row p.worth span::before,
main section#recruit-company div.block-voice div.list div.row p.worth span::after {
	position: absolute;
	width: 15px;
	height: 0px;
	left: calc(50% - 7.5px);
	top: calc(50% - 1px);
	border-bottom: 2px solid #0555c7;
	content: "";
}
main section#recruit-company div.block-voice div.list div.row p.worth span::after {
	transform: rotate(90deg);
}
main section#recruit-company + div.image,
main section#recruit-company + div.image div.inner-image {
	position: relative;
}
main section#recruit-company + div.image {
	position: relative;
	overflow: hidden;
	z-index: 5;
	margin: 0px calc(50% - 50vw);
}
main section#recruit-company + div.image::before {
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0px;
	bottom: 0px;
	background-color: #ffffff;
	content: "";
}
main section#recruit-company + div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
	width: 9999px;
	animation: recruit-company-image 60s linear infinite forwards;
}
@keyframes recruit-company-image {
	0% { transform: translateX(0px); }
	100% { transform: translateX(-1640px); }
}
main section#recruit-company + div.image p.row {
	width: 370px;
	overflow: hidden;
	margin-right: 40px;
	border-radius: 10px;
}
main section#recruit-company + div.image p.row:nth-child(2n) {
	margin-top: 60px;
}
main section:where(#recruit-our-job, #recruit-result) {
	background-color: #ffffff;
}
main section#recruit-our-job {
	z-index: 5;
}
main section#recruit-our-job p.headline {
	color: #f4f4f4;
}
main section#recruit-our-job div.list-our-job div.row h3 {
	border-radius: 10px 10px 0px 0px;
}
main section#recruit-our-job div.list-our-job div.row p.image {
	border-radius: 0px 0px 10px 10px;
}
main section#recruit-our-job p.diagram span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 225px;
	height: 224px;
	left: calc(50% - 560px);
	top: 80px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
	padding-top: 10px;
	background: url(../images/recruit-background.svg) no-repeat center;
	background-size: 100% auto;
	opacity: 0;
	transition: 0.75s opacity 0.75s ease-in-out, 0.75s transform 0.75s ease;
	transform: scale(0.875);
}
main section#recruit-our-job p.diagram.active span {
	opacity: 1;
	transform: scale(1);
}
main section#recruit-our-job p.diagram span i {
	display: block;
}
main section#recruit-result {
	z-index: 6;
}
main section#recruit-result:before {
	position: absolute;
	width: 200vw;
	height: calc(100% - 120px);
	left: calc(50% - 600px);
	top: 0px;
	background: #f4f4f4 url(../images/recruit-background-general.png) repeat left top;
	background-size: 750px auto;
	content: "";
	border-radius: 10px 0px 0px 10px;
}
main section#recruit-result p.map {
	position: absolute;
	width: 660px;
	left: calc(50% - 40px);
	top: 0px;
	mask-image: linear-gradient(180deg, #000000 0%, #000000 75%, transparent 100%);
}
main section#recruit-result div.inner-section {
	padding-bottom: 240px;
}
main section#recruit-result header.common-recruit {
	margin-bottom: 60px;
}
main section#recruit-result div.slide {
	position: relative;
}
main section#recruit-result div.slide div.list-result {
	display: block;
	overflow: hidden;
	margin: 0px;
	padding: 160px 0px;
}
main section#recruit-result div.slide div.list-result div.inner-list-result {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
main section#recruit-result div.slide div.list-result div:where(.width, .row) {
	width: calc(920px * 0.33);
}
main section#recruit-result div.slide div.list-result div.width {
	position: absolute;
}
main section#recruit-result div.slide div.list-result div.row {
	margin: 0px 40px 0px 0px;
	opacity: 1;
}
main section#recruit-result div.slide div.list-result div.row.current-alternate {
	z-index: 1;
}
main section#recruit-result div.slide div.list-result div.row a {
	transition: 0.625s margin ease-in-out;
}
main section#recruit-result div.slide div.list-result div.row.current a {
	margin: -100px -150px;
}
main section#recruit-result div.slide div.list-result div.row p.image {
	height: 200px;
	border-radius: 10px;
	margin-bottom: 10px;
	transition: 0.625s height ease-in-out;
}
main section#recruit-result div.slide div.list-result div.row.current p.image {
	height: 400px;
}
main section#recruit-result div.slide div.list-result div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#recruit-result div.slide div.list-result div.row :where(h3, div.misc, p.period) {
	pointer-events: none;
	opacity: 0;
	transition: 0.625s opacity ease-in-out;
}
main section#recruit-result div.slide div.list-result div.row.current :where(h3, div.misc, p.period) {
	pointer-events: auto;
	opacity: 1;
}
main section#recruit-result div.slide div.list-result div.row p.period {
	position: absolute;
	right: 0px;
	bottom: 0px;
}
main section#recruit-result div.slide div.list-result div.row span.arrow {
	display: none;
}
main section#recruit-result div.slide div.pager {
	position: absolute;
	width: 100%;
	height: 200px;
	left: 0px;
	top: 160px;
	z-index: 5;
	pointer-events: none;
}
main section#recruit-result div.slide div.pager p.button {
	position: absolute;
	top: calc(50% - 15px);
	pointer-events: auto;
}
main section#recruit-result div.slide div.pager p.button-prev {
	left: -27.5px;
}
main section#recruit-result div.slide div.pager p.button-next {
	right: -27.5px;
}
main section#recruit-result div.slide div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 0px;
}
main section#recruit-result div.slide div.navi p.button {
	width: 20px;
	height: 0px;
	cursor: pointer;
	border-bottom: 2px solid #acacac;
	transition: 0.25s border-color ease;
}
main section#recruit-result div.slide div.navi p.button:not(:last-child) {
	margin-right: 5px;
}
main section#recruit-result div.slide div.navi p.button:hover,
main section#recruit-result div.slide div.navi p.button.active {
	border-color: #0555c7;
}
main section#recruit-how-to {
	background-color: #ffffff;
}
main section#recruit-how-to div.inner-section {
	padding-top: 0px;
}
main section#recruit-how-to div.how-to {
	padding-right: 0px;
}
main section#recruit-how-to div.how-to.top div.navi {
	left: calc(50% - 500px);
}
main section#recruit-how-to p.image-main {
	position: relative;
	height: 480px;
	margin: 0px calc(50% - 50vw) 120px calc(50% - 50vw);
}
main section#recruit-how-to p.image-main::before {
	position: absolute;
	width: 100%;
	height: 50px;
	left: 0px;
	bottom: -0.5px;
	z-index: 5;
	content: "";
	background-color: #ffffff;
	transform: scaleY(-1);
	mask-image: url(../images/path-01.svg);
	mask-size: 100% 100%;
}
main section#recruit-how-to p.image-main img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#recruit-how-to header.common-recruit {
	position: relative;
	margin-bottom: 120px;
	padding-left: 380px;
}
main section#recruit-how-to header.common-recruit :where(p.sub, h3) {
	position: absolute;
	left: 0px;
}
main section#recruit-how-to header.common-recruit p.sub {
	top: 0px;
}
main section#recruit-how-to header.common-recruit h3 {
	top: 35px;
}
main section#recruit-how-to header.common-recruit p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.375rem;
}
main section#recruit-how-to div.how-to div.list div.row div.body p.image {
	border-radius: 10px;
}
main section#recruit-guideline::before {
	position: absolute;
	width: 100%;
	height: 50px;
	left: 0px;
	top: -0.5px;
	z-index: 5;
	content: "";
	background-color: #ffffff;
	mask-image: url(../images/path-01.svg);
	mask-size: 100% 100%;
}
main section#recruit-qa::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	border-radius: 40px 40px 0px 0px;
}
main section#recruit-qa div.list {
	margin-bottom: 100px;
}
main section#recruit-qa div.list div.row {
	padding: 0px 40px;
	background-color: #f4f4f4;
	border-radius: 10px;
}
main section#recruit-qa div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#recruit-qa div.list div.row h3,
main section#recruit-qa div.list div.row div.body div.inner-body {
	position: relative;
	padding: 30px 0px 30px 50px;
}
main section#recruit-qa div.list div.row h3 {
	font-size: 1.25rem;
	font-weight: 600;
	cursor: pointer;
	padding-right: 40px;
}
main section#recruit-qa div.list div.row h3::before,
main section#recruit-qa div.list div.row div.body div.inner-body::before {
	position: absolute;
	width: 30px;
	left: 0px;
	top: 30px;
	text-align: center;
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	color: #0555c7;
}
main section#recruit-qa div.list div.row h3::before {
	font-size: 2.125rem;
	content: "Q";
}
main section#recruit-qa div.list div.row h3 span {
	position: absolute;
	width: 20px;
	height: 20px;
	right: 0px;
	top: calc(50% - 10px);
}
main section#recruit-qa div.list div.row h3 span::before,
main section#recruit-qa div.list div.row h3 span::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #acacac;
	content: "";
	transition: 0.25s opacity ease, 0.25s transform ease;
}
main section#recruit-qa div.list div.row h3 span::after {
	transform: rotate(90deg);
}
main section#recruit-qa div.list div.row.open h3 span::before {
	opacity: 0;
	transform: rotate(90deg);
}
main section#recruit-qa div.list div.row.open h3 span::after {
	transform: rotate(180deg);
}
main section#recruit-qa div.list div.row div.body {
	height: 0px;
	overflow: hidden;
}
main section#recruit-qa div.list div.row div.body div.inner-body {
	border-top: 1px solid #e2e2e2;
}
main section#recruit-qa div.list div.row div.body div.inner-body::before {
	font-size: 1.625rem;
	content: "A";
}
main div.catch {
	margin: 0px calc(50% - 50vw) 120px calc(50% - 50vw);
}
main div.catch div.inner-catch {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
	animation: catch 160s linear infinite forwards;
}
@keyframes catch {
	0% { transform: translateX(0px); }
	100% { transform: translateX(-3600px); }
}
main div.catch div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 1800px;
}
main div.catch div.row p.image {
	width: 215px;
	margin-right: 40px;
	border-radius: 10px;
}
main div.catch div.row h3 {
	font-family: "din-2014", sans-serif;
	font-size: 9rem;
	font-weight: 600;
	line-height: 9rem;
	color: #e2e2e2;
	transform: translateY(-2px);
}

/* guideline
-------------------------------------------------------------------------------- */

main div.list-guideline ul li {
	font-size: 1.25rem;
	font-weight: 600;
}
main div.list-guideline ul li:not(:last-child) {
	margin-bottom: 20px;
}
main div.list-guideline ul li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	min-height: 80px;
	color: #ffffff;
	padding: 10px 95px 10px 60px;
	border-radius: 10px;
	transition: 0.25s background-color ease;
}
main div.list-guideline ul li:nth-child(2n+1) a,
main div.list-guideline ul li:nth-child(2n) a:hover {
	background-color: #0555c7;
}
main div.list-guideline ul li:nth-child(2n+1) a:hover,
main div.list-guideline ul li:nth-child(2n) a {
	background-color: #08387d;
}
main div.list-guideline ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 44px;
	top: calc(50% - 3px);
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
main div.list-guideline ul li span.arrow {
	position: absolute;
	right: 20px;
	top: calc(50% - 15px);
}
main article.guideline {
	padding: 100px;
	border-radius: 10px;
}
main article.guideline:not(:last-child) {
	margin-bottom: 60px;
}
main article.guideline:nth-child(2n+1) {
	background-color: #ffffff;
}
main article.guideline:nth-child(2n) {
	background-color: #e2e2e2;
}
main article.guideline h2 {
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 2.5rem;
	color: #0555c7;
	margin-bottom: 60px;
}
main article.guideline div.list {
	margin-bottom: 60px;
}
main article.guideline div.list div.row {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	border-bottom: 1px solid #acacac;
	padding-bottom: 30px;
}
main article.guideline div.list div.row::before {
	position: absolute;
	width: 160px;
	left: 0px;
	bottom: -1px;
	border-bottom: 1px solid #0555c7;
	content: "";
}
main article.guideline div.list div.row:not(:first-child) {
	padding-top: 30px;
}
main article.guideline div.list div.row p.label {
	width: 180px;
	font-weight: 500;
}
main article.guideline div.list div.row p.body {
	width: calc(100% - 180px);
}
main section#guideline div.inner-section {
	max-width: 1200px;
}
main section#guideline div.list-guideline {
	margin-bottom: 120px;
	padding: 0px 100px;
}
main section#guideline div.list-guideline ul li span.arrow i.icon {
	display: inline-block;
	transform: rotate(90deg);
}



/* --------------------------------------------------------------------------------
modal
-------------------------------------------------------------------------------- */

div#modal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 0%;
	left: 0px;
	top: 0px;
	overflow: auto;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: 0.5s opacity ease-in-out;
	-webkit-overflow-scrolling: touch;
}
div#modal.active {
	height: 100%;
	pointer-events: auto;
}
div#modal.fade {
	opacity: 1;
}
div#modal::before {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.625);
	content: "";
}
div#modal div.inner-modal {
	position: relative;
}
div#modal section {
	display: none;
}
div#modal section.active {
	display: block;
}
div#modal section div.inner-section {
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 60px 0px;
}
div#modal section.voice div.content,
div#modal section.voice div.content div.inner-content {
	position: relative;
}
div#modal section.voice div.content {
	color: #ffffff;
}
div#modal section.voice div.content div.inner-content {
	min-height: 680px;
	padding: 60px 100px 60px 520px;
	background-color: #0555c7;
	border-radius: 10px;
}
div#modal section.voice div.content p.button-close {
	position: absolute;
	right: 0px;
	top: -40px;
	font-size: 1.125rem;
	font-weight: 500;
	cursor: pointer;
	padding-right: 40px;
}
div#modal section.voice div.content p.button-close span {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0px;
	top: calc(50% - 15px);
	background-color: #ffffff;
	border-radius: 50%;
}
div#modal section.voice div.content p.button-close span::before {
	position: absolute;
	width: 15px;
	height: 0px;
	left: calc(50% - 7.5px);
	top: calc(50% - 1px);
	border-bottom: 2px solid #0555c7;
	content: "";
}
div#modal section.voice div.content :where(h3, p.image, div.profile) {
	position: absolute;
}
div#modal section.voice div.content h3 {
	width: 440px;
	left: 40px;
	top: 60px;
}
div#modal section.voice div.content p.image {
	width: 320px;
	height: 500px;
	left: 60px;
	bottom: 0px;
}
div#modal section.voice div.content div.profile {
	left: 340px;
	bottom: 280px;
}
div#modal section.voice div.content div.profile p.name {
	display: flex;
	flex-wrap: wrap;
	font-weight: 600;
}
div#modal section.voice div.content div.profile p.name span {
	display: block;
}
div#modal section.voice div.content div.profile p.name span.sub {
	font-size: 1.125rem;
	margin-right: 10px;
	transform: translateY(2px);
}
div#modal section.voice div.content div.profile p.name span.main {
	font-family: "din-2014", sans-serif;
	font-size: 1.875rem;
}
div#modal section.voice div.content div.profile p.year {
	font-size: 0.875rem;
	font-weight: 500;
}
div#modal section.voice div.content div.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}
div#modal section.voice div.content div.image p.row {
	height: 240px;
	overflow: hidden;
	border-radius: 10px;
}
div#modal section.voice div.content div.image p.row:nth-child(1) {
	width: calc(55% - 5px);
}
div#modal section.voice div.content div.image p.row:nth-child(2) {
	width: calc(45% - 5px);
}
div#modal section.voice div.content div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#modal section.voice div.content p.description {
	font-weight: 500;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer,
footer#footer div.inner-footer {
	position: relative;
}
footer#footer::before {
	position: absolute;
	width: 100%;
	height: calc(100% - 160px);
	left: 0px;
	bottom: 0px;
	content: "";
}
footer#footer div.inner-footer {
	padding: 0px 80px 80px 80px;
}
@media (max-width:1240px) {
footer#footer div.inner-footer {
	padding-bottom: 100px;
}
}
footer#footer div:where(#trigger-footer, #trigger-footer-alternate) {
	position: absolute;
}
footer#footer div#trigger-footer {
	top: 180px;
}
footer#footer div#trigger-footer-alternate {
	bottom: 240px;
}
footer#footer p#button-page-top {
	position: fixed;
	width: 60px;
	right: 15px;
	bottom: 15px;
	z-index: 10;
	pointer-events: none;
	transition: 0.5s bottom 0.125s ease, 0.5s transform 0.125s ease;
	transform: translateY(130px);
}
div.scroll footer#footer p#button-page-top {
	pointer-events: auto;
	transform: translateY(0px);
}
footer#footer p#button-page-top a {
	display: block;
}
footer#footer p#button-page-top span.arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 50px;
	height: 50px;
	overflow: hidden;
	color: #ffffff;
	margin: 0px auto;
	border-radius: 50%;
}
footer#footer p#button-page-top span.arrow i.icon {
	display: block;
	position: relative;
	transform: rotate(-90deg);
}
footer#footer p#button-page-top span.text {
	display: block;
	text-align: center;
	font-family: "din-2014", sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.25rem;
	margin: 0px -5px;
}
footer#footer div.information-navi-footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 10px;
}
footer#footer div.information h3 {
	margin-bottom: 20px;
}
footer#footer div.information h3 svg {
	width: 256px;
}
footer#footer div.information p.tel-fax {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.information p.tel-fax span {
	display: block;
}
footer#footer div.information p.tel-fax span:not(:last-child) {
	margin-right: 20px;
}
footer#footer nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
}
footer#footer nav#navi-footer ul li {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 30px;
}
footer#footer nav#navi-footer ul li span:where(.sub, .arrow) {
	display: none;
}
footer#footer nav#navi-footer p.privacy-policy {
	display: none;
}
footer#footer p.catch {
	font-size: 4.25rem;
	font-weight: 600;
	line-height: 5.5rem;
	margin-bottom: -10px;
}
footer#footer div.misc {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	right: 80px;
	bottom: 80px;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
footer#footer div.misc p.privacy-policy {
	margin-right: 30px;
}
footer#footer div.misc p.copyright {
	font-family: "din-2014", sans-serif;
	font-weight: 300;
}
body.corporate footer#footer {
	color: #ffffff;
}
body.corporate footer#footer::before {
	background: url(../images/background-footer.jpg) no-repeat center top;
	background-size: cover;
}
body.corporate footer#footer a.color:hover {
	color: #acacac;
}
body.corporate footer#footer p#button-page-top span.arrow {
	background: linear-gradient(90deg, #0e50ad 0%, #041c3f 100%);
}
body.corporate footer#footer p#button-page-top span.arrow::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #0e50ad;
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.corporate footer#footer p#button-page-top a:hover span.arrow::before {
	opacity: 1;
}
body.corporate footer#footer p#button-page-top span.text {
	color: #08387d;
}
body.corporate div.footer footer#footer p#button-page-top span.text {
	color: #ffffff;
}
body.corporate footer#footer div.contact,
body.recruit footer#footer div.entry {
	width: calc(100% - 40px);
	max-width: 1200px;
	margin: 0px auto 120px auto;
}
body.corporate footer#footer div.contact a,
body.recruit footer#footer div.entry a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 320px;
	color: #ffffff;
}
body.corporate footer#footer div.contact a {
	background: linear-gradient(90deg, #0e50ad 0%, #041c3f 100%);
}
body.corporate footer#footer div.contact a::before,
body.corporate footer#footer div.contact a::after {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
}
body.corporate footer#footer div.contact a::before {
	background-color: #0e50ad;
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.corporate footer#footer div.contact a:hover::before {
	opacity: 1;
}
body.corporate footer#footer div.contact a::after {
	pointer-events: none;
	background: url(../images/symbol.svg) no-repeat right top;
	background-size: auto 100%;
	opacity: 0.05;
}
body.corporate footer#footer div.contact div.text,
body.recruit footer#footer div.entry div.text,
body.corporate footer#footer div.contact div.text p.sub,
body.recruit footer#footer div.entry div.text p.sub {
	position: relative;
}
body.corporate footer#footer div.contact div.text,
body.recruit footer#footer div.entry div.text {
	width: calc(100% - 160px);
	padding-top: 15px;
}
body.corporate footer#footer div.contact div.text::before,
body.recruit footer#footer div.entry div.text::before {
	position: absolute;
	height: 0px;
	right: 95px;
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #ffffff;
	content: "";
}
body.corporate footer#footer div.contact div.text::before {
	width: calc(100% - 440px);
}
body.corporate footer#footer div.contact div.text p.sub,
body.recruit footer#footer div.entry div.text p.sub {
	font-family: "din-2014", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 20px;
	padding-left: 20px;
}
body.corporate footer#footer div.contact div.text p.sub::before,
body.recruit footer#footer div.entry div.text p.sub::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 11px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
body.corporate footer#footer div.contact div.text h3,
body.recruit footer#footer div.entry div.text h3 {
	font-size: 3.25rem;
	font-weight: 600;
	line-height: 3.25rem;
	margin-bottom: 40px;
}
body.corporate footer#footer div.contact div.text p.description,
body.recruit footer#footer div.entry div.text p.description {
	font-weight: 500;
}
body.corporate footer#footer div.contact div.text span.arrow,
body.recruit footer#footer div.entry div.text span.arrow {
	position: absolute;
	right: 0px;
	top: calc(50% - 15px);
}
body.corporate footer#footer div.information h3 svg :where(path, polygon, rect) {
	fill: #ffffff !important;
}
body.corporate footer#footer nav#navi-footer ul {
	flex-direction: column;
	height: calc(calc(1.875rem + 30px) * 3);
}
body.corporate footer#footer nav#navi-footer ul li:not(:where(.recruit, .contact)),
body.recruit footer#footer nav#navi-footer ul li:not(:where(.guideline, .entry)) {
	margin-right: 60px;
}
body.recruit:has(div#cover) footer#footer {
	background-color: #ffffff;
}
body.recruit footer#footer::before {
	background: #e2e2e2 url(../images/recruit-background-general.png) repeat left top;
	background-size: 750px auto;
}
body.recruit footer#footer p#button-page-top span.arrow {
	background-color: #0555c7;
}
body.recruit footer#footer p#button-page-top a:hover span.arrow {
	background-color: #08387d;
}
body.recruit footer#footer p#button-page-top span.text {
	color: #0555c7;
}
body.recruit footer#footer div.entry a {
	background-color: #0555c7;
	border-radius: 10px;
	transition: 0.25s background-color ease;
}
body.recruit footer#footer div.entry a:hover {
	background-color: #08387d;
}
body.recruit footer#footer div.entry div.text::before {
	width: calc(100% - 360px);
}
body.recruit footer#footer div.entry div.text span.arrow {
	color: #ffffff;
	border-color: #ffffff;
	background-color: transparent;
}
body.recruit footer#footer div.entry a:hover div.text span.arrow {
	color: #0555c7;
	background-color: #ffffff;
}
body.recruit footer#footer nav#navi-footer ul {
	justify-content: flex-end;
	width: 400px;
}
body.recruit footer#footer nav#navi-footer ul li.corporate {
	display: none;
}
body.recruit footer#footer nav#navi-footer ul li.entry i.no-small {
	display: none;
}
body.recruit footer#footer nav#navi-footer p.corporate {
	text-align: right;
}

/* home
-------------------------------------------------------------------------------- */

body:where(.home, .our-job) footer#footer {
	background-color: #ffffff;
}