@charset "utf-8";

/*--------------------------------------
CSS変数
---------------------------------------*/
:root {
	--primary-blue: #001d33;
	--primary-white: #fff;
	--primary-gray: #999;
	--secondary-blue: #005799;
	--boder-colorGray: #99a5af;
	--gradation-colorBlue: linear-gradient(to right, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	--gradation-hoverColorBlue: linear-gradient(to right, var(--secondary-blue) 0%, var(--primary-blue) 100%);
	--gradation-colorRed: linear-gradient(to right, #660033 0%, #cc0066 100%);
	--gradation-hoverColorRed: linear-gradient(to right, #cc0066 0%, #660033 100%);
}

/*--------------------------------------
WEBフォント
---------------------------------------*/
@font-face {
	font-family: 'Prompt';
	font-style: normal;
	font-weight: normal;
	src: url('/recruit/assets/font/Prompt-Regular.woff') format('woff'),
		url('/recruit/assets/font/Prompt-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Prompt';
	font-style: normal;
	font-weight: bold;
	src: url('/recruit/assets/font/Prompt-Medium.woff') format('woff'),
		url('/recruit/assets/font/Prompt-Medium.ttf') format('truetype');
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: normal;
	src: url('/common/fonts/NotoSansCJKjp-Regular.woff') format('woff'),
		url('/common/fonts/NotoSansCJKjp-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 500;
	src: url('/common/fonts/NotoSansCJKjp-Medium.woff') format('woff'),
		url('/common/fonts/NotoSansCJKjp-Medium.ttf') format('truetype');
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: bold;
	src: url('/common/fonts/NotoSansCJKjp-Bold.woff') format('woff'),
		url('/common/fonts/NotoSansCJKjp-Bold.ttf') format('truetype');
}
/*-------------------------------------
リセットCSS
---------------------------------------*/
*,
*:before,
*:after {
	box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
textarea,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0px;
	padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
th,
input,
textarea,
select {
	font-family: inherit;
	font-size: 100%;
	font-weight: normal;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
table,
th,
td {
	text-align: left;
	border: none;
}
ol,
ul,
li {
	list-style: none;
}
img {
	border: none;
	vertical-align: top;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
	color: inherit;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
}

input::-webkit-input-placeholder {
	color: var(--primary-gray);
}

input:-ms-input-placeholder {
	color: var(--primary-gray);
}

input::-moz-placeholder {
	color: var(--primary-gray);
}

textarea::-webkit-input-placeholder {
	color: var(--primary-gray);
}

textarea:-ms-input-placeholder {
	color: var(--primary-gray);
}

textarea::-moz-placeholder {
	color: var(--primary-gray);
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
	outline-offset: -2px;
}

select::-ms-expand {
	display: none;
}

iframe {
	width: 100%;
}
/*--------------------------------------
初期設定
---------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	font-family: Prompt, Noto Sans Japanese, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	font-size: 1.6rem;
	letter-spacing: 0.075em;
	color: var(--primary-blue);
	background-color: var(--primary-white);
	overflow-x: hidden;
}
html.is_fixed,
body.is_fixed {
	overflow: hidden !important;
}
/*--------------------------------------
共通設定
---------------------------------------*/
.pageFixed {
	width: 100vw;
	height: 100svh;
}
.page {
	position: relative;
	backdrop-filter: blur(15px);
	width: 100%;
}
.page::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: rgb(255, 255, 255, 0.5);
}
.inner {
	padding-inline: 30px;
	padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
	.inner {
		padding-inline: 50px;
	}
}
@media screen and (min-width: 1024px) {
	.inner {
		padding-inline: 100px;
		margin-inline: auto;
		max-width: 1740px;
		width: 100%;
	}
}
.u_taRight {
	text-align: right !important;
}
@media screen and (max-width: 767px) {
	.u_ov767 {
		display: none !important;
	}
}
/*--------------------------------------
header
---------------------------------------*/
.header {
	position: relative;
	z-index: 10000;
	padding-top: 10px;
	padding-inline: 20px 10px;
}
@media screen and (min-width: 768px) {
	.header {
		padding-top: 26px;
		padding-inline: 30px 20px;
	}
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 768px) {
	.header__inner {
		align-items: start;
	}
}
.header__link {
	position: relative;
	z-index: 1000;
	display: inline-block;
	width: 80px;
}
@media screen and (min-width: 768px) {
	.header__link {
		width: 124px;
	}
}
.header__link img {
	width: 100%;
	height: auto;
}
.header__menuBtn {
	position: relative;
	z-index: 100000;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-blue);
}
@media screen and (min-width: 768px) {
	.header__menuBtn {
		width: 60px;
		height: 60px;
	}
}
.header__menuBtnItem {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 20px;
	height: 8px;
}
.header__menuBtnItem span {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--primary-white);
	transition: all 0.3s;
}
.header__menuBtnItem span::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: inherit;
	transition: all 0.3s;
}
.header.is_open .header__menuBtnItem span {
	transform: rotate(-45deg);
	top: 4px;
}
.header.is_open .header__menuBtnItem span::before {
	transform: rotate(90deg);
	bottom: 0;
}
.header__menuBtn:focus-visible {
	background-color: var(--primary-white);
}
.header__menuBtn:focus-visible .header__menuBtnItem span {
	background-color: var(--primary-blue);
}
@media (hover: hover) and (pointer: fine) {
	.header__menuBtn {
		transition: all 0.3s;
	}
	.header__menuBtn:hover {
		background-color: var(--primary-white);
	}
	.header__menuBtn:hover .header__menuBtnItem span {
		background-color: var(--primary-blue);
	}
}
/*--------------------------------------
メニュー
---------------------------------------*/
.drawNav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	background-color: rgb(255, 255, 255, 0.4);
	overflow-y: auto;
}
.drawNav__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100svh;
}
.header:not(.is_open) .drawNav {
	display: none;
	animation: hd-fade-out 0.5s forwards;
}
@keyframes hd-fade-out {
	0% {
		display: block;
		opacity: 1;
	}
	99% {
		display: block;
		opacity: 0;
	}
	100% {
		display: none;
		opacity: 0;
	}
}
.header.is_open .drawNav {
	display: block;
	animation: hd-fade-in 0.5s forwards;
}
@keyframes hd-fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	50% {
		display: block;
		opacity: 1;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
.drawNav__nav {
	margin-top: auto;
	margin-inline: auto;
	padding-inline: 20px;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.drawNav__nav {
		max-width: 860px;
	}
}
.drawNav__btns {
	margin-block: auto 50px;
	margin-inline: auto;
	padding-inline: 20px;
	width: 100%;
}
.drawNav__btnItem {
	text-align: center;
}
.drawNav__btnItem + .drawNav__btnItem {
	margin-top: 15px;
}
@media screen and (min-width: 768px) {
	.drawNav__btns {
		max-width: 860px;
	}
	.drawNav__btnItem + .drawNav__btnItem {
		margin-top: 30px;
	}
}
.drawNav__list {
	display: flex;
	align-items: center;
	row-gap: 5px;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (min-width: 768px) {
	.drawNav__list {
		column-gap: 40px;
		padding-inline: 40px;
	}
}
.drawNav__listItem {
	position: relative;
	width: 50%;
	padding-left: 14px;
}
.drawNav__listItem::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--secondary-blue);
	transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
	.drawNav__listItem {
		width: auto;
	}
}
.drawNav__listItem a {
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 500;
	opacity: 0.75;
}
@media screen and (min-width: 768px) {
	.drawNav__listItem a {
		font-size: 1.2rem;
	}
}
@media (hover: hover) and (pointer: fine) {
	.drawNav__listItem a {
		transition: all 0.3s;
	}
	.drawNav__listItem a:hover {
		text-decoration: underline;
	}
}
.drawNav__copiRight {
	border-top: 1px solid var(--boder-colorGray);
	margin-top: 20px;
	margin-inline: calc(50% - 50vw);
	padding: 25px 30px;
	width: 100vw;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.drawNav__copiRight {
		margin-inline: 0;
		width: 100%;
	}
}
.drawNav__copiRight small {
	font-size: 1.2rem;
	color: #687b8c;
}
/*--------------------------------------
ボタン
---------------------------------------*/
.btnArea {
	margin-top: 40px;
}
@media screen and (min-width: 768px) {
	.btnArea {
		margin-top: 54px;
	}
}
.btn {
	position: relative;
	display: inline-block;
}
.ghostBtn {
	padding: 16px 30px 15px;
	border: 2px solid var(--primary-blue);
	max-width: 330px;
	width: 100%;
	text-align: center;
	border-radius: 9999px;
	background-color: rgb(255, 255, 255, 0.2);
}
.ghostBtn.s_type02 {
	padding: 9px 20px 8px;
	width: 80%;
}
@media screen and (min-width: 768px) {
	.ghostBtn {
		padding: 22px 40px;
		max-width: 800px;
	}
	.ghostBtn.s_type02 {
		padding: 16px 32px 15px;
	}
}
.ghostBtn span {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
}
.ghostBtn span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--secondary-blue);
}
.ghostBtn.s_type02 span {
	font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
	.ghostBtn span {
		font-size: 2rem;
	}
	.ghostBtn.s_type02 span {
		font-size: 1.6rem;
	}
	.ghostBtn span::after {
		right: 40px;
	}
}
.ghostBtn:focus-visible {
	color: var(--primary-white);
	background-color: var(--primary-blue);
}
.ghostBtn:focus-visible span::after {
	background-color: var(--primary-white);
}
@media (hover: hover) and (pointer: fine) {
	.ghostBtn {
		transition: all 0.3s;
	}
	.ghostBtn:hover {
		color: var(--primary-white);
		background-color: var(--primary-blue);
	}
	.ghostBtn:hover span::after {
		background-color: var(--primary-white);
	}
}
.entryBtn {
	position: relative;
    z-index: 0;
    padding: 14px 25px;
	max-width: 320px;
    width: 100%;
    text-align: center;
	color: var(--primary-white);
	background: var(--gradation-colorRed);
}
.entryBtn::after {
	content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: var(--gradation-hoverColorRed);
    transition: opacity 0.3s;
}
.entryBtn span {
	display: inline-block;
	font-size: 2rem;
	font-weight: 500;
}
.entryBtn span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-white);
}
.entryBtn:focus-visible::after {
	opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
    .entryBtn:hover::after {
        opacity: 1;
    }
}
/*--------------------------------------
ページタイトル
---------------------------------------*/
.pageTitle {
	position: relative;
	z-index: 100;
	margin-top: 40px;
}
@media screen and (min-width: 768px) {
	.pageTitle {
		margin-top: min(100px, calc(100 / 1000 * 100vh));
	}
}
.pageTitle__subTitle {
	position: relative;
	margin-left: 0.25em;
	margin-bottom: 12px;
}
.pageTitle__subTitle::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: -13px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--primary-blue);
}
.pageTitle__subTitle span {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	background: var(--gradation-colorBlue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
	.pageTitle__subTitle {
		margin-bottom: 20px;
	}
	.pageTitle__subTitle::before {
		left: -24px;
		width: 10px;
		height: 10px;
	}
	.pageTitle__subTitle span {
		font-size: 2.4rem;
	}
}
.pageTitle__title span {
	display: inline-block;
	font-size: clamp(24px, calc(30 / 390 * 100vw), 48px);
	font-weight: bold;
	background: var(--gradation-colorBlue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.pageTitle__text {
	margin-top: 16px;
}
.pageTitle__text span {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: bold;
	background: var(--gradation-colorBlue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
	.pageTitle__text span {
		font-size: 3rem;
	}
}
/*--------------------------------------
2カラムレイアウト
---------------------------------------*/
.contents2col {
	display: flex;
	flex-direction: column;
	row-gap: 45px;
}
@media screen and (min-width: 1024px) {
	.contents2col {
		flex-direction: row;
		justify-content: space-between;
		gap: 0 40px;
	}
}
.contents2col__head {
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.contents2col__head {
		width: auto;
		flex-shrink: 0;
	}
}
.contents2col__body {
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.contents2col__body {
		max-width: 670px;
		padding-top: 20px;
	}
}
.contents2col__titleGroup {
	padding-left: 20px;
	margin-bottom: 30px;
}
.contents2col__title {
	font-size: 2rem;
	font-weight: bold;
	color: var(--primary-blue);
}
.contents2col__subTitle {
	margin-bottom: 5px;
	font-size: 1.6rem;
	font-weight: bold;
	color: var(--secondary-blue);
}
.contents2col__btnArea {
	margin-block: 10px;
}
.table__item {
	display: block;
	padding: 15px 20px;
	border-top: 1px solid #a3b2be;
}
.table__item:last-child {
	border-bottom: 1px solid #a3b2be;
}
@media screen and (min-width: 768px) {
	.table__item {
		display: flex;
		align-items: center;
		padding: 15px 20px;
	}
}
.table__title {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--secondary-blue);
}
@media screen and (min-width: 768px) {
	.table__title {
		padding-right: 35px;
		max-width: 120px;
		width: 100%;
	}
}
.table__contents {
	margin-top: 5px;
	font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
	.table__contents {
		margin-top: 0;
	}
}
.table__text + .table__list {
	margin-top: 0.5em;
}
.table__list + .table__text {
	margin-top: 0.5em;
}
.table__list + .table__list {
	margin-top: 0.5em;
}
.table__listItem {
	position: relative;
	padding-left: 0.75em;
}
.table__listItem::before {
	content: "■";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
.s_noIcon .table__listItem {
	padding-left: 0;
}
.s_noIcon .table__listItem::before {
	content: none;
}
.s_note .table__listItem {
	padding-left: 1em;
}
.s_note .table__listItem::before {
	content: "※";
}