@charset "UTF-8";
/*
ブレイクポイント本国サイト基準
https://www.axa.com/
以下max-width相当へ変換
@media (max-width:767px)
@media (max-width:991px)
@media (max-width:1199px)
@media (max-width:1919px)
*/

/* ==================================================

CONFIG

*/
:root {
	--text-black: #333;
	--bg-gray: #F7F7F8;
	--border-gray: #CCC;
	--color-primary: #04008F;
}

/* ==================================================

RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
img,
picture,
svg {
	display: block;
	width: 100%;
	height: auto;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}
iframe {
	position: fixed;
	top: 0;
	left: 0;
	outline: none;
	border: 0;
}

/* ==================================================

WEB FONTS

*/
@font-face {
	font-family: "Publico Headline";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src:
		url(../fonts/Publico-Headline-Bold.woff2) format("woff2"),
		url(../fonts/Publico-Headline-Bold.woff) format("woff");
}

/* ==================================================

HTML

*/
html {
	background-color: #FFF;
	/* 1rem = 10px */
	font-size: 62.5%;
}
@media screen and (max-width: 1120px) {
	html {
		/* 幅1120px 1rem = 10px */
		font-size: calc(1000 / 1120 * 1vw);
	}
}
@media screen and (max-width: 767px) {
	html {
		/* 幅375px 1rem = 10px */
		font-size: calc(1000 / 375 * 1vw);
	}
}

body {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	font-optical-sizing: auto;
	line-height: 2;
	color: var(--text-black);
	letter-spacing: 0.04em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
		letter-spacing: 0.02em;
	}
}

main {
	overflow: hidden;
	padding: 8.5rem 0 6rem 0;
}
@media screen and (max-width: 767px) {
	main {
		padding: 7rem 0 0 0;
	}
}

/* ==================================================

	[ UTILITY ] VISIBLE

*/
@media screen and (min-width: 768px) {
	.u-visible-sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.u-visible-pc {
		display: none !important;
	}
}

/* ==================================================

[ UTILITY ] INVIEW

*/
.js-inview {
	opacity: 0;
	transform: translateY(3rem);
}
.loaded .js-inview {
	transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.16s, opacity 0.6s ease-out 0.16s;
}
.loaded .js-inview.u-inview {
	opacity: 1;
	transform: translateY(0);
}

/* ==================================================

	[ UTILITY ] COLOR

*/
.u-color-primary {
	color: var(--color-primary);
}

/* ==================================================

	[ UTILITY ] OBJECT-FIT

*/
.u-fit-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-fit-contain {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ==================================================

	[ UTILITY ] LINK

*/
.u-link {
	text-decoration: underline;
	color: var(--color-primary);
}
.u-link-blank,
.u-link-blank-white {
	display: flex !important;
	align-items: center;
}
.u-link-blank::after,
.u-link-blank-white::after {
	content: '';
	display: block;
	margin: 0.08em 0 0 0.4em;
	width: 0.8em;
	height: 0.8em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-blank.svg);
	background-size: contain;
}
.u-link-blank-white::after {
	background-image: url(../img/icon-arrow-blank-w.svg);
}
@media (any-hover: hover) {
	.u-link {
		transition: opacity 0.4s ease;
	}
	.u-link:hover {
		opacity: 0.5;
	}
	a:hover .u-link-blank::after,
	a:hover .u-link-blank-white::after {
		animation: animArrowBlank .5s both;
	}
}

/* ==================================================

	[ UTILITY ] FINDENT HALF

*/
.u-indent-half {
	display: inline-block;
	text-indent: -0.5em;
	margin-right: -0.5em;
}

/* ==================================================

	[ UTILITY ] FONT

*/
.u-font-en-serif {
	font-family: "Publico Headline", serif;
	font-style: normal;
	font-weight: 700;
}
.u-font-en-sans {
	font-family: "Source Sans 3", sans-serif;
	font-style: normal;
	font-weight: 600;
}

/* ==================================================

	[ COMPONENT ] LIST

*/
.c-list-primary li {
	position: relative;
	padding-left: 1.4em;
}
.c-list-primary li:before {
	content: '・';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

/* ==================================================

	[ COMPONENT ] BUTTON

*/
.c-button-outline {
	position: relative;
	overflow: hidden;
	display: block;
	padding: 1rem 3.6rem 1.1rem 3.6rem;
	border: 2px solid var(--color-primary);
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--color-primary);
}
.c-button-outline em {
	display: block;
	position: relative;
}
.c-button-outline::before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 0;
	height: 130%;
	content: '';
	transition: all .3s ease-in-out;
	transform: translate(-50%,-50%) skewX(-38deg);
	background-color: var(--color-primary);
}
.c-button-outline[target="_blank"]::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1.4rem;
	display: block;
	margin: -0.5em 0 0 0;
	width: 0.9em;
	height: 0.9em;
	-webkit-mask-image: url(../img/icon-arrow-blank.svg);
	mask-image: url(../img/icon-arrow-blank.svg);
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: var(--color-primary);
}
@media(hover: hover) {
	.c-button-outline {
		transition: color 0.5s ease;
	}
	.c-button-outline:hover {
		color: #FFF;
	}
	.c-button-outline:hover::before {
		width:130%
	}
	.c-button-outline[target="_blank"]::after {
		transition: background-color 0.5s ease;
	}
	.c-button-outline[target="_blank"]:hover::after {
		animation: animArrowBlank .5s both;
		background-color: #FFF;
	}
}

/* ==================================================

	[ COMPONENT ] HEADING PRIMARY

*/
.c-heading-primary {
	position: relative;
	padding-bottom: 3.5rem;
}
.c-heading-primary::before,
.c-heading-primary::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 100%;
	background-color: #EFEFF1;
}
.c-heading-primary::after {
	width: 4.8rem;
	background-color: #FF1721;
}
.c-heading-primary__title {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	color: var(--color-primary);
}
.c-heading-primary__title i {
	position: relative;
	top: 0.06em;
	display: inline-block;
	padding-right: 0.2em;
	font-family: "Source Sans 3", sans-serif;
	font-size: 128%;
}
@media screen and (max-width: 767px) {
	.c-heading-primary {
		padding-bottom: 3rem;
	}
	.c-heading-primary::after {
		width: 3.2rem;
	}
}

/* ==================================================

	[ COMPONENT ] BANNER AXA RECRUIT SITE

*/
.c-banner-axa-recruit-site {
	overflow: hidden;
	position: relative;
	display: block;
	padding: 5rem 4rem 0 4rem;
	height: 28.6rem;
	color: #FFF;
}
.c-banner-axa-recruit-site::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-position: center;
	background-image: url(../img/bnr-axa-recruit-site-pc.jpg);
	background-size: cover;
}
.c-banner-axa-recruit-site::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 50%;
	background-image: linear-gradient(90deg,rgba(51, 91, 159, 1) 0%, rgba(51, 91, 159, 0) 100%);
}
.c-banner-axa-recruit-site > div {
	position: relative;
	z-index: 1;
}
.c-banner-axa-recruit-site h2 {
	position: relative;
}
.c-banner-axa-recruit-site h2 span {
	display: block;
	font-family: "Publico Headline", serif;
	font-weight: 700;
	font-size: 4rem;
	line-height: 1.15;
}
.c-banner-axa-recruit-site h2 em {
	display: block;
	margin-top: 2rem;
	font-weight: 700;
	font-family: "Noto Serif JP", serif;
	font-size: 1.2rem;
}
.c-banner-axa-recruit-site i {
	display: block;
	position: relative;
	margin-top: 3rem;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
}
@media (any-hover: hover) {
	.c-banner-axa-recruit-site::before {
		transition: transform 0.4s ease;
	}
	.c-banner-axa-recruit-site:hover::before {
		transform: scale(1.04);
	}
}
@media screen and (max-width: 767px) {
	.c-banner-axa-recruit-site {
		display: flex;
		align-items: flex-end;
		padding: 2rem;
		height: 40rem;
	}
	.c-banner-axa-recruit-site::before {
		background-image: url(../img/bnr-axa-recruit-site-sp.jpg) !important;
	}
	.c-banner-axa-recruit-site::after {
		top: 30%;
		right: 0;
		background-image: linear-gradient(0deg,rgba(51, 91, 159, 1) 40%, rgba(51, 91, 159, 0) 100%);
	}
	.c-banner-axa-recruit-site h2 span {
		font-size: 3.2rem;
		line-height: 1.3;
	}
	.c-banner-axa-recruit-site h2 em {
		line-height: 1.5;
	}
	.c-banner-axa-recruit-site i {
		font-size: 1.2rem;
	}
}

/* ==================================================

	[ COMPONENT ] BANNER LINK

*/
.c-banner-link {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 28.6rem;
	text-align: center;
	line-height: 1.5;
	color: #FFF;
}
.c-banner-link h2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 13rem;
	font-weight: 700;
	font-size: 2.4rem;
}
.c-banner-link__image {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
}
.c-banner-link__image::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 60%);
}
.c-banner-link i {
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	padding: 0.7em 1.8rem 0.7em 2rem;
	border: 2px solid #FFF;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
}
.c-banner-link i::before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 0;
	height: 130%;
	content: '';
	transition: all .3s ease-in-out;
	transform: translate(-50%,-50%) skewX(-38deg);
	background-color: #FFF;
}
.c-banner-link i::after {
	content: '';
	display: block;
	margin-left: 0.8em;
	width: 0.9em;
	height: 0.9em;
	-webkit-mask-image: url(../img/icon-arrow-blank.svg);
	mask-image: url(../img/icon-arrow-blank.svg);
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: #FFF;
}
.c-banner-link i em {
	display: block;
	position: relative;
}
.c-banner-job .c-banner-link__image {
	background-image: url(../img/bnr-job-pc.jpg);
}
.c-banner-entry .c-banner-link__image {
	background-image: url(../img/bnr-entry-pc.jpg);
}
@media (any-hover: hover) {
	.c-banner-link__image {
		transition: transform 0.4s ease;
	}
	a:hover .c-banner-link__image {
		transform: scale(1.04);
	}
	.c-banner-link i {
		transition: color 0.5s ease;
	}
	.c-banner-link:hover i {
		color: var(--color-primary);
	}
	.c-banner-link:hover i::before {
		width: 130%;
	}
	.c-banner-link i::after {
		transition: background-color 0.5s ease;
	}
	.c-banner-link:hover i::after {
		animation: animArrowBlank .5s both;
		background-color: var(--color-primary);
	}
}
@media screen and (max-width: 767px) {
	.c-banner-link {
		height: 34rem;
	}
	.c-banner-link h2 {
		height: 100%;
		font-size: 2rem;
	}
	.c-banner-link i {
		position: absolute;
		bottom: 2.5rem;
		left: 2rem;
		right: 2rem;
		justify-content: center;
		padding: 1em 0;
		border-width: 1px;
		font-size: 1.2rem;
	}
	.c-banner-job .c-banner-link__image {
		background-image: url(../img/bnr-job-sp.jpg);
	}
	.c-banner-entry .c-banner-link__image {
		background-image: url(../img/bnr-entry-sp.jpg);
	}
}

/* ==================================================

	[ LAYOUT ] CONTAINER

*/
.l-container,
.l-container-middle {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0 5rem;
	max-width: 127rem;
}
.l-container-middle {
	max-width: 106rem;
}
@media screen and (max-width: 767px) {
	.l-container,
	.l-container-middle {
		padding: 0 2rem;
		max-width: initial;
	}
}

/* ==================================================

	[ LAYOUT ] HEADER

*/
.l-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
}
.l-header__wrap {
	position: relative;
	z-index: 1001;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem 0 2.5rem;
	height: 8.5rem;
	background-color: #FFF;
	line-height: 1.2;
}
.l-header__logo a,
.l-header__logo span {
	display: flex;
	align-items: center;
}
.l-header__logo img {
	display: block;
	width: 4.5rem;
}
.l-header__logo em {
	display: block;
	padding-left: 2.8rem;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1.6;
	color: var(--color-primary);
}
.l-header__nav {
	display: flex;
	align-items: center;
	gap: 4rem;
	height: 100%;
}
.l-header__nav-content {
	display: flex;
	align-items: center;
	gap: 4rem;
	height: 100%;
	font-weight: 500;
	font-size: 1.4rem;
	color: var(--color-primary);
}
.l-header__nav-content a {
	display: flex;
	align-items: center;
	color: var(--color-primary);
}
.l-header__nav-content li {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.l-header__nav-content li::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0.4rem;
	background-color: #D24723;
	transform: translateX(-50%);
	transition: width 0.4s ease;
}
.l-header__nav-content li.--active::after {
	width: 100%;
}
.l-header__nav-content li.--hover::after {
	width: 100% !important;
}
.l-header__nav-content.--hide li.--active::after {
	width: 0 !important;
}
.l-header__nav-content li.--active a {
	pointer-events: none;
	cursor: default;
}
.l-header__nav-content a[target="_blank"]::after {
	content: '';
	display: block;
	margin: 0.08em 0 0 0.1em;
	width: 0.9em;
	height: 0.9em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-blank.svg);
	background-size: contain;
}
.l-header__toggle-entry button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-right: 1rem;
	width: 12.8rem;
	height: 4.5rem;
	background-color: var(--color-primary);
	font-weight: 700;
	font-family: "Source Sans 3", sans-serif;
	font-size: 1.5rem;
	color: #FFF;
}
.l-header__toggle-entry button::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1.6rem;
	display: block;
	margin-top: -0.5em;
	width: 1em;
	height: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-entry-w.svg);
	background-size: contain;
	transition: transform 0.4s ease;
}
.l-header__toggle-entry button[aria-expanded="true"]::after {
	transform: rotate(180deg);
}
.l-header__toggle-content {
	display: none;
}
@media (any-hover: hover) {
	.l-header__nav-content a[target="_blank"]:hover::after {
		animation: animArrowBlank .5s both;
	}
}
@media screen and (max-width: 767px) {
	.l-header__wrap {
		padding: 0 0.5rem 0 2rem;
		height: 7rem;
	}
	.l-header__logo em {
		padding-left: 2rem;
		font-size: 1rem;
	}
	.l-header__nav {
		gap: 0;
	}
	.l-header__nav-content {
		display: none;
	}
	.l-header__toggle-entry button {
		padding-right: 1rem;
		width: 10rem;
		height: 5rem;
		background-color: transparent;
		color: var(--color-primary);
	}
	.l-header__toggle-entry button::after {
		right: 1.2rem;
		background-image: url(../img/icon-arrow-entry.svg);
	}
	.l-header__toggle-content {
		display: block;
	}
	.l-header__toggle-content button {
		position: relative;
		display: block;
		width: 5rem;
		height: 5rem;
	}
	.l-header__toggle-content i {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: -0.8rem;
		width: 1.6rem;
		height: 0.2rem;
		background-color: var(--color-primary);
		transition: all 0.4s ease;
	}
	.l-header__toggle-content i:nth-child(1) {
		margin-top: -0.7rem;
	}
	.l-header__toggle-content i:nth-child(2) {
		margin-top: -0.1rem;
	}
	.l-header__toggle-content i:nth-child(3) {
		margin-top: 0.5rem;
	}
	.l-header__toggle-content button[aria-expanded="true"] i:nth-child(1) {
		transform: rotate(45deg);
		margin-top: 0;
	}
	.l-header__toggle-content button[aria-expanded="true"] i:nth-child(2) {
		opacity: 0;
	}
	.l-header__toggle-content button[aria-expanded="true"] i:nth-child(3) {
		transform: rotate(-45deg);
		margin-top: 0;
	}
}

/* ==================================================

	[ LAYOUT ] MEGAMENU ENTRY

*/
.l-megamenu-entry {
	overflow: hidden;
	position: fixed;
	z-index: 1001;
	top: 7.5rem;
	right: 2rem;
	transform: translateY(-0.8rem);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-megamenu-entry[aria-hidden='true'] {
	display: none;
}
.l-megamenu-entry.--show {
	transform: translateY(0);
	opacity: 1;
}
.l-megamenu-entry nav {
	border: 1px solid var(--color-primary);
	background-color: #FFF;
	overflow-y: auto;
	overscroll-behavior: none;
	font-weight: 500;
	font-size: 1.3rem;
}
.l-megamenu-entry nav ul {
	padding: 0 1rem;
	min-width: 28rem;
}
.l-megamenu-entry nav li {
	border-bottom: 1px solid #EFEFF1;
}
.l-megamenu-entry nav li:last-child {
	border-bottom: 0;
}
.l-megamenu-entry nav a,
.l-megamenu-entry nav span {
	display: block;
	position: relative;
	padding: 1.3rem 4rem 1.3rem 0.5rem;
	color: var(--color-primary);
}
.l-megamenu-entry nav span {
	opacity: 0.25;
}
.l-megamenu-entry nav a::after,
.l-megamenu-entry nav span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0.5rem;
	display: block;
	margin-top: -0.46em;
	width: 1em;
	height: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-link.svg);
	background-size: contain;
}
.l-megamenu-entry nav a[target="_blank"]::after,
.l-megamenu-entry nav span.blank::after {
	width: 0.9em;
	height: 0.9em;
	background-image: url(../img/icon-arrow-blank.svg);
}
@media (any-hover: hover) {
	.l-megamenu-entry nav a:hover::after {
		animation: animArrow .5s both;
	}
	.l-megamenu-entry nav a:hover[target="_blank"]::after {
		animation: animArrowBlank .5s both;
	}
}
@media screen and (max-width: 767px) {
	.l-megamenu-entry {
		top: 7.5rem;
		left: 0.5rem;
		right: 0.5rem;
	}
	.l-megamenu-entry nav {
		max-height: calc(100vh - 8rem);
		overflow-y: auto;
		overscroll-behavior: none;
	}
}

/* ==================================================

	[ LAYOUT ] MEGAMENU CONTENT

*/
.l-megamenu-content {
	display: none;
	overflow: hidden;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	transition: height 0.3s ease;
	background-color: #FFF;
}
.l-megamenu-content[aria-hidden='true'] {
	display: none;
}
.l-megamenu-content.--show {
	height: 100vh;
}
.l-megamenu-content nav {
	padding-top: 7rem;
	height: 100%;
	overflow-y: auto;
	overscroll-behavior: none;
}
.l-megamenu-content nav ul {
	border-top: 1px solid #EFEFF1;
	font-weight: 700;
}
.l-megamenu-content nav li {
	border-bottom: 1px solid #EFEFF1;
}
.l-megamenu-content nav a {
	display: block;
	position: relative;
	padding: 1.8rem 4rem 1.8rem 2rem;
	color: var(--color-primary);
}
.l-megamenu-content nav a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 2.2rem;
	display: block;
	margin-top: -0.46em;
	width: 1em;
	height: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-link.svg);
	background-size: contain;
}
.l-megamenu-content nav a[target="_blank"]::after {
	background-image: url(../img/icon-arrow-blank.svg);
}
@media screen and (max-width: 767px) {
	.l-megamenu-content {
		display: block;
	}
}

/* ==================================================

	[ LAYOUT ] FOOTER

*/
.l-footer {
	padding-top: 8rem;
	background-color: #4976BA;
	color: #FFF;
}
.l-footer a {
	display: flex;
	align-items: center;
	line-height: 1.5;
	color: inherit;
}
.l-footer nav a::after {
	content: '';
	position: relative;
	top: 0.06em;
	display: block;
	margin-left: 0.5em;
	width: 1em;
	height: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-link-w.svg);
	background-size: contain;
}
.l-footer nav a[target="_blank"]::after {
	width: 0.9em;
	height: 0.9em;
	background-image: url(../img/icon-arrow-blank-w.svg);
}
.l-footer__wrap {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	min-height: 15rem;
}
.l-footer__follow {
	flex-shrink: 0;
	line-height: 1.5;
}
.l-footer__follow div {
	font-weight: 600;
	font-family: "Source Sans 3", sans-serif;
}
.l-footer__follow ul {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}
.l-footer__follow a {
	overflow: hidden;
	display: block;
	width: 2.4rem;
	height: 2.4rem;
	text-indent: -999rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.l-footer__icon-facebook {
	background-image: url(../img/icon-facebook.svg);
}
.l-footer__icon-linkdin {
	background-image: url(../img/icon-linkedin.svg);
}
.l-footer__icon-youtube {
	background-image: url(../img/icon-youtube.svg);
}
.l-footer__icon-note {
	background-image: url(../img/icon-note.svg);
}
.l-footer__nav {
	flex-basis: 84rem;
	padding-right: 4rem;
}
.l-footer__nav-recruit {
	margin-bottom: 4rem;
}
.l-footer__nav-recruit a::after {
	content: none !important;
}
.l-footer__nav-recruit ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 8rem;
	font-weight: 700;
	font-size: 1.6rem;
}
.l-footer__nav-content {
	min-height: 10rem;
	margin-bottom: 4rem;
}
.l-footer__nav-content ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
	font-weight: 500;
	font-size: 1.4rem;
}
.l-footer__nav-axa ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
	font-weight: 500;
	font-size: 1.4rem;
}
.l-footer__nav-corporate {
	margin-top: 4rem;
	padding: 3rem 0;
	border-top: 1px solid #7C98C7;
}
.l-footer__nav-corporate ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
	font-weight: 500;
	font-size: 1.4rem;
}
.l-footer__foot {
	padding: 1.5rem 0;
	background-color: #3B6096;
	text-align: right;
}
.l-footer__foot small {
	display: block;
	font-weight: 600;
	font-family: "Source Sans 3", sans-serif;
	font-size: 1.2rem;
}
@media (any-hover: hover) {
	.l-footer a {
		transition: opacity 0.3s ease;
	}
	.l-footer a:hover {
		opacity: 0.5;
	}
	.l-footer nav a[target="_blank"]:hover::after {
		animation: animArrowBlank .5s both;
	}
}
@media screen and (max-width: 767px) {
	.l-footer {
		padding-top: 0;
	}
	.l-footer a {
		display: inline-block;
	}
	.l-footer nav a[target="_blank"]::after {
		display: inline-block;
	}
	.l-footer .l-container {
		padding: 0;
	}
	.l-footer__wrap {
		display: block;
		min-height: initial;
	}
	.l-footer__follow div {
		display: none;
	}
	.l-footer__follow ul {
		justify-content: center;
		margin-top: 0;
		padding: 2.5rem 0;
	}
	.l-footer__follow a {
		display: block;
	}
	.l-footer__nav {
		padding-right: 0;
	}
	.l-footer__nav-recruit {
		margin-bottom: 0;
	}
	.l-footer__nav-recruit ul {
		display: block;
		border-bottom: 1px solid #7C98C7;
		font-size: 1.4rem;
	}
	.l-footer__nav-recruit li {
		border-top: 1px solid #7C98C7;
	}
	.l-footer__nav-recruit a {
		display: block;
		padding: 2rem;
	}
	.l-footer__nav-content {
		min-height: initial;
		margin-bottom: -2rem;
		padding: 2rem;
	}
	.l-footer__nav-content ul {
		display: block;
	}
	.l-footer__nav-content li {
		padding: 0.8rem 0;
	}
	.l-footer__nav-axa {
		padding: 2rem;
	}
	.l-footer__nav-axa ul {
		display: block;
	}
	.l-footer__nav-axa li {
		padding: 0.8rem 0;
	}
	.l-footer__nav-corporate {
		margin-top: 0;
		padding: 2rem;
	}
	.l-footer__nav-corporate ul {
		display: block;
	}
	.l-footer__nav-corporate li {
		padding: 0.8rem 0;
	}
	.l-footer__foot {
		padding: 1.5rem 2rem;
		text-align: left;
	}
	.l-footer__foot small {
		font-size: 1rem;
	}
}

/* ==================================================

	[ LAYOUT ] PAGE HEADER

*/
.l-page-header {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 24.6rem;
	background-color: #000;
	text-align: center;
	line-height: 1.5;
	color: #FFF;
}
.l-page-header h1 > span {
	overflow: hidden;
	display: block;
	font-family: "Publico Headline", serif;
	font-weight: 700;
	font-size: 2rem;
}
.l-page-header h1 > span span {
	display: block;
	transform: translateY(80%);
}
.l-page-header h1 > em {
	overflow: hidden;
	display: block;
	font-weight: 500;
	font-size: 3.2rem;
}
.l-page-header h1 > em span {
	display: block;
	transform: translateY(90%);
}
.p-recruit-students .l-page-header {
	background-color: #00008F;
}
.p-recruit-experienced .l-page-header {
	background-color: #4975BF;
}
.p-recruit-disabilities .l-page-header {
	background-color: #027180;
}
.p-recruit-privacy .l-page-header {
	background-color: #8DAAD6;
}
.loaded .l-page-header h1 > span span {
	transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
	transform: translateY(0);
}
.loaded .l-page-header h1 > em span {
	transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
	transform: translateY(0);
}
@media screen and (max-width: 767px) {
	.l-page-header {
		height: 20rem;
	}
	.l-page-header h1 > span {
		font-size: 1.4rem;
	}
	.l-page-header h1 > em {
		margin-top: 0.5rem;
		font-size: 2.4rem;
	}
}

/* ==================================================

	[ LAYOUT ] BANNER ENTRY

*/
.l-banner-entry {
	display: flex;
	gap: 4rem;
	margin: 8rem 0;
}
.l-banner-entry li {
	flex: 1;
	color: var(--color-primary);
}
.l-banner-entry a {
	display: block;
	color: var(--color-primary);
}
.l-banner-entry h2 {
	margin: 1.5rem 0;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
}
.l-banner-entry a i {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
}
.l-banner-entry__thumb {
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 18.6rem;
	color: #FFF;
}
.l-banner-entry__thumb::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-size: cover;
}
.l-banner-entry__thumb em {
	position: relative;
	display: block;
	font-size: 4rem;
	font-family: "Publico Headline", serif;
	font-weight: 700;
	line-height: 1;
}
.l-banner-entry li > div i {
	display: block;
	font-weight: 500;
	font-size: 1.4rem;
	color: #333;
}
.l-banner-entry__2026 .l-banner-entry__thumb::before {
	background-image: url(../img/bnr-entry-2026.jpg);
}
.l-banner-entry__2027 .l-banner-entry__thumb::before {
	background-image: url(../img/bnr-entry-2027.jpg);
}
@media (any-hover: hover) {
	a .l-banner-entry__thumb::before {
		transition: transform 0.4s ease;
	}
	a:hover .l-banner-entry__thumb::before {
		transform: scale(1.06);
	}
}
@media screen and (max-width: 767px) {
	.l-banner-entry {
		flex-direction: column;
		gap: 3rem;
		margin: 6rem 0 5.5rem 0;
	}
	.l-banner-entry h2 {
		font-size: 2rem;
	}
	.l-banner-entry a i {
		font-size: 1.2rem;
	}
	.l-banner-entry__thumb {
		height: 16rem;
	}
	.l-banner-entry__thumb em {
		font-size: 3.2rem;
	}
	.l-banner-entry li > div i {
		font-size: 1.2rem;
	}
}

/* ==================================================

	[ LAYOUT ] BANNER ENTRY

*/
.l-banner-link {
	display: flex;
	flex-direction: column;
	margin: 8rem 0;
	gap: 8rem;
}
@media screen and (max-width: 767px) {
	.l-banner-link {
		margin: 6rem 0;
		gap: 6rem;
	}
}

/* ==================================================

	[ LAYOUT ] RECRUIT HEAD

*/
.l-recruit-head {
	margin: 5rem 0;
}
.l-recruit-head__lead {
	margin-bottom: 1em;
}
@media screen and (max-width: 767px) {

}

/* ==================================================

	[ LAYOUT ] RECRUIT DETAIL

*/
.l-recruit-detail {
	display: table;
	margin: 8rem 0;
	width: 100%;
	border-top: 1px solid var(--border-gray);
	font-size: 1.5rem;
	line-height: 1.8;
}
.l-recruit-detail .--middle-size {
	font-size: 1.4rem;
}
.l-recruit-detail__item {
	display: table-row;
}
.l-recruit-detail__heading,
.l-recruit-detail__content {
	display: table-cell;
	vertical-align: top;
	padding: 2rem;
	border-bottom: 1px solid var(--border-gray);
}
.l-recruit-detail__heading {
	width: 22rem;
	background-color: var(--bg-gray);
}
.l-recruit-detail__content p:not(:last-child),
.l-recruit-detail__content ul:not(:last-child) {
	margin-bottom: 0.8em;
}
.l-recruit-detail__content p em {
	font-weight: 500;
	font-size: 1.6rem;
}
.l-recruit-detail__block {
	margin: 8rem 0;
}
.l-recruit-detail__block p:not(:last-child),
.l-recruit-detail__block ul:not(:last-child) {
	margin-bottom: 0.8em;
}
.l-recruit-detail__block .c-heading-primary {
	margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
	.l-recruit-detail {
		display: block;
		margin: 6rem 0;
		border-top: 0;
		border-bottom: 1px solid var(--border-gray);
		font-size: inherit;
		line-height: 1.7;
	}
	.l-recruit-detail .--middle-size {
		font-size: 1.2rem;
	}
	.l-recruit-detail__item {
		display: block;
		border-top: 1px solid var(--border-gray);
	}
	.l-recruit-detail__heading,
	.l-recruit-detail__content {
		display: block;
		padding: 1.8rem 1.5rem;
		border-bottom: 0;
	}
	.l-recruit-detail__heading {
		padding: 1.2rem 1.5rem;
		width: auto;
	}
	.l-recruit-detail__content p em {
		font-size: 1.5rem;
	}
	.l-recruit-detail__block {
		margin: 5rem 0;
	}
	.l-recruit-detail__block .c-heading-primary {
		margin-bottom: 3rem;
	}
}

/* ==================================================

	[ PROJECT ] HOME

*/
.p-home {
	padding: 0;
}
.p-home .content {
	position: relative;
	padding: 10rem 0;
	background-color: #FFF;
}
@media screen and (max-width: 767px) {
	.p-home .content {
		padding: 8rem 0;
	}
}

/* ==================================================

	[ PROJECT ] HOME VIDEO

*/
.p-home-video {
	position: fixed;
	z-index: -1;
	inset: 0;
	background-color: #000;
}
.p-home-video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
}
.loaded .p-home-video video {
	transition: opacity 1s ease;
	opacity: 1;
}

/* ==================================================

	[ PROJECT ] HOME MAIN

*/
.p-home-main {
	position: relative;
	min-height: 100dvh;
	color: #FFF;
}
.p-home-main__container {
	position: absolute;
	inset: 0;
}
.p-home-main__container::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60%;
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.p-home-main__content {
	position: absolute;
	padding: 7rem 10rem;
	left: 0;
	bottom: 0;
}
.p-home-main h1 {
	font-family: "Publico Headline", serif;
	font-weight: 700;
}
.p-home-main h1 em {
	display: block;
	font-size: 7.2rem;
	line-height: 1.23;
	transform: translateY(2rem);
	opacity: 0;
}
.p-home-main h1 span {
	display: block;
	font-size: 3.2rem;
	transform: translateY(2rem);
	opacity: 0;
}
.loaded .p-home-main h1 em {
	transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.8s, opacity 1s ease 0.8s;
}
.loaded .p-home-main h1 span {
	transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1.6s, opacity 1s ease 1.6s;
}
.loaded .p-home-main h1 em,
.loaded .p-home-main h1 span {
	transform: translateY(0);
	opacity: 1;
}
@media screen and (max-width: 1119px) {
	.p-home-main__content {
		padding: 6rem 5rem;
	}
}
@media screen and (max-width: 767px) {
	.p-home-main__content {
		padding: 0;
		left: 2rem;
		bottom: 6rem;
	}
	.p-home-main h1 em {
		font-size: 4rem;
		line-height: 1.32;
	}
	.p-home-main h1 span {
		margin-top: 1rem;
		font-size: 2rem;
	}
}

/* ==================================================

	[ PROJECT ] HOME OUR PURPOSE

*/
.p-home-our-purpose {
	padding: 6rem 0;
	background-color: var(--color-primary);
	text-align: center;
	color: #FFF;
}
.p-home-our-purpose h2 span {
	display: block;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
}
.p-home-our-purpose h2 em {
	display: block;
	font-weight: 500;
	font-size: 2rem;
}
.p-home-our-purpose h3 {
	margin-top: 2rem;
	font-weight: 700;
	font-family: "Publico Headline", serif;
	font-size: 4rem;
	line-height: 1.4;
}
.p-home-our-purpose p {
	margin-top: 3.5rem;
	font-size: 1.6rem;
	line-height: 1.75;
}
@media screen and (max-width: 767px) {
	.p-home-our-purpose h2 em {
		margin-top: 1rem;
		font-size: 1.6rem;
	}
	.p-home-our-purpose h3 {
		margin-top: 2.5rem;
		font-size: 3.2rem;
		line-height: 1.32;
	}
	.p-home-our-purpose p {
		margin-top: 3rem;
		font-size: 1.4rem;
		line-height: 2;
	}
}

/* ==================================================

	[ PROJECT ] HOME KV

*/
.p-home-kv {
	height: 42rem;
}
@media screen and (max-width: 767px) {
	.p-home-kv {
		height: 28rem;
	}
}

/* ==================================================

	[ PROJECT ] HOME MESSAGE

*/
.p-home-message {
	padding: 8rem 0;
	background-color: rgba(12, 14, 69, 0.8);
	text-align: center;
	color: #FFF;
}
.p-home-message__title {
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.3;
}
.p-home-message__read {
	margin-top: 4.5rem;
	font-size: 1.5rem;
	line-height: 2.1;
}
.p-home-message__read p:not(:last-child) {
	margin-bottom: 3.2rem;
}
.p-home-message__read em {
	font-family: "Publico Headline", serif;
	font-weight: 700;
	font-size: 4rem;
	line-height: 1.2;
}
@media screen and (max-width: 767px) {
	.p-home-message {
		padding: 6rem 0;
	}
	.p-home-message__title {
		font-size: 2.4rem;
	}
	.p-home-message__read {
		margin-top: 4rem;
		font-size: 1.4rem;
		line-height: 1.7;
		text-align: left;
	}
	.p-home-message__read p:not(:last-child) {
		margin-bottom: 2.5rem;
	}
	.p-home-message__read p.--last {
		padding-top: 1rem;
		text-align: center;
	}
	.p-home-message__read em {
		font-size: 3.2rem;
		line-height: 1.5;
	}
}

/* ==================================================

	[ PROJECT ] HOME ABOUT

*/
.p-home-about {
	padding: 8rem 0 12rem 0;
	background-color: var(--bg-gray);
}
.p-home-about__lead {
	margin-top: 4rem;
}
.p-home-about__note {
	margin-top: 4rem;
	text-align: right;
	font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
	.p-home-about {
		padding: 6rem 0 6rem 0;
	}
	.p-home-about__lead {
		margin-top: 3rem;
	}
	.p-home-about__note {
		margin-top: 2rem;
		padding-left: 1em;
		text-align: left;
		font-size: 1.2rem;
		text-indent: -1em;
	}
}

/* overview */
.p-home-about-overview {
	margin-top: 5rem;
	padding: 4rem;
	background-color: var(--color-primary);
	text-align: center;
}
.p-home-about-overview h3 {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: #FFF;
}
.p-home-about-overview__list {
	display: flex;
	gap: 4rem;
	margin-top: 3.5rem;
}
.p-home-about-overview__item {
	flex: 1;
	background-color: #FFF;
	font-size: 1.4rem;
}
.p-home-about-overview__item h4 {
	padding: 1rem;
	border-bottom: 0.4rem solid var(--color-primary);
	background-color: #4975BF;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: #FFF;
}
.p-home-about-overview__detail {
	padding: 1.5rem 4rem 3.5rem 4rem;
}
.p-home-about-overview__image {
	margin: 0 auto;
	max-width: 20rem;
	min-height: 15rem;
}
.p-home-about-overview__title {
	margin: 1rem 0 2rem 0;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.p-home-about-overview {
		margin-top: 3rem;
		padding: 3rem 1.5rem;
	}
	.p-home-about-overview__list {
		flex-direction: column;
		gap: 1.5rem;
		margin-top: 3rem;
	}
	.p-home-about-overview__item {
		font-size: 1.2rem;
	}
	.p-home-about-overview__item h4 {
		font-size: 1.6rem;
	}
	.p-home-about-overview__detail {
		padding: 1.5rem 2.5rem 2rem 2.5rem;
	}
	.p-home-about-overview__title {
		margin: 1rem 0 1rem 0;
		font-size: 1.6rem;
	}
}

/* position */
.p-home-about-position {
	margin-top: 5rem;
	padding: 4rem;
	background-color: var(--color-primary);
	text-align: center;
}
.p-home-about-position h3 {
	margin-bottom: 5rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: #FFF;
}
.p-home-about-position__figure {
	margin: 0 auto;
	max-width: 96rem;
	aspect-ratio: 960 / 300;
}
.p-home-about-position__list {
	display: flex;
	gap: 4rem;
	margin-top: 4.5rem;
}
.p-home-about-position__item {
	flex: 1;
	background-color: #FFF;
}
.p-home-about-position__item h4 {
	padding: 1rem;
	border-bottom: 0.4rem solid var(--color-primary);
	background-color: #4975BF;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: #FFF;
}
.p-home-about-position__title {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 15rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
@media screen and (max-width: 1280px) {
	.p-home-about-position__list {
		flex-direction: column;
		gap: 1.5rem;
	}
	.p-home-about-position__title {
		padding: 2.2rem 0;
		height: auto;
	}
	.p-home-about-position__title br {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.p-home-about-position {
		margin-top: 3rem;
		padding: 3rem 1.5rem;
	}
	.p-home-about-position h3 {
		margin-bottom: 1rem;
	}
	.p-home-about-position__figure {
		max-width: initial;
		aspect-ratio: 303 / 600;
	}
	.p-home-about-position__list {
		flex-direction: column;
		gap: 1.5rem;
		margin-top: 2rem;
	}
	.p-home-about-position__item h4 {
		font-size: 1.6rem;
	}
	.p-home-about-position__title {
		font-size: 1.6rem;
		line-height: 1.6;
	}
	.p-home-about-position__title br {
		display: block;
	}
}

/* business */
.p-home-about-business {
	margin-top: 6rem;
	padding: 5rem 5rem 7rem 5rem;
	background-color: #FFF;
	text-align: center;
}
.p-home-about-business h3 {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
.p-home-about-business__lead {
	margin: 4rem 0 5rem 0;
	font-size: 1.4rem;
}
.p-home-about-business__figure {
	margin: 0 auto;
	max-width: 71rem;
	aspect-ratio: 710 / 444;
}
.p-home-about-business__note {
	margin-top: 3rem;
	font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
	.p-home-about-business {
		margin-top: 4rem;
		padding: 3rem 1.5rem 4rem 1.5rem;
	}
	.p-home-about-business__lead {
		margin: 2.5rem 0 3rem 0;
		text-align: left;
	}
	.p-home-about-business__figure {
		max-width: initial;
		aspect-ratio: 303 / 328;
	}
	.p-home-about-business__note {
		margin-top: 2rem;
		text-align: left;
	}
}

/* ==================================================

	[ PROJECT ] HOME SERVICE

*/
.p-home-service {
	padding: 0 0 12rem 0;
	background-color: var(--color-primary);
}
.p-home-service__kv {
	margin-bottom: 7rem;
	height: 42rem;
}
.p-home-service .c-heading-primary__title {
	color: #FFF;
}
.p-home-service__lead {
	margin-top: 4rem;
	color: #FFF;
}
.p-home-service__list {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	margin-top: 5rem;
}
.p-home-service__item {
	display: flex;
	min-height: 25.4rem;
	background-color: #FFF;
}
.p-home-service__image {
	flex-basis: 38rem;
}
.p-home-service__detail {
	flex: 1;
	padding: 3rem 4rem;
	line-height: 1.75;
}
.p-home-service__detail h3 {
	margin-bottom: 1.5rem;
	font-weight: 700;
	font-size: 2rem;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.p-home-service {
		padding: 0 0 6rem 0;
	}
	.p-home-service__kv {
		margin-bottom: 6rem;
		height: 28rem;
	}
	.p-home-service__lead {
		margin-top: 3rem;
	}
	.p-home-service__list {
		gap: 2rem;
		margin-top: 3.5rem;
	}
	.p-home-service__item {
		display: block;
	}
	.p-home-service__image {
		height: 20rem;
	}
	.p-home-service__detail {
		padding: 2rem 1.5rem 2.5rem 1.5rem;
	}
	.p-home-service__detail h3 {
		margin-bottom: 1.5rem;
		line-height: 1.5;
	}
}

/* ==================================================

	[ PROJECT ] HOME RECRUIT

*/
.p-home-recruit {
	position: relative;
	padding: 8rem 0 12rem 0;
	background-color: rgba(255,255,255,0.94);
}
.p-home-recruit::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 26rem;
	background-color: #EFEFF1;
}
.p-home-recruit__list {
	display: flex;
	margin: 6.5rem -2.5rem 0 -2.5rem;
}
.p-home-recruit__item {
	flex-basis: 33.333%;
	padding: 0 2.5rem;
}
.p-home-recruit__item a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 24.6rem;
	border: 1px solid var(--color-primary);
	text-align: center;
	color: var(--color-primary);
}
.p-home-recruit__item h3 .--en {
	display: block;
	font-family: "Publico Headline", serif;
	font-weight: 700;
	font-size: 1.4rem;
}
.p-home-recruit__item h3 .--small {
	display: block;
	font-weight: 500;
	font-size: 1.2rem;
}
.p-home-recruit__item h3 em {
	display: block;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 1.4;
}
.p-home-recruit__item i {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 2rem;
	right: 3rem;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
}
.p-home-recruit__item i::after {
	content: '';
	display: block;
	margin-left: 0.8em;
	width: 1em;
	height: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-link.svg);
	background-size: contain;
}
.p-home-recruit__item a[target="_blank"] i::after {
	width: 0.9em;
	height: 0.9em;
	background-image: url(../img/icon-arrow-blank.svg);
}
.p-home-recruit__site {
	margin-top: 11rem;
}
.p-home-recruit__site p {
	text-align: center;
}
.p-home-recruit__site .c-banner-axa-recruit-site {
	margin-top: 6rem;
	background-image: url(../img/bnr-axa-recruit-site-lg-pc.jpg);
}
.p-home-recruit__item.--2nd {
	flex-basis: 50%;
}
.p-home-recruit__item.--2nd a {
	height: 20rem;
}
.p-home-recruit__item.--2nd a h3 em {
	font-size: 2rem;
}
@media (any-hover: hover) {
	.p-home-recruit__item a {
		transition: opacity 0.3s ease;
	}
	.p-home-recruit__item a:hover {
		opacity: 0.5;
	}
	.p-home-recruit__item a:hover i::after {
		animation: animArrow .5s both;
	}
	.p-home-recruit__item a[target="_blank"]:hover i::after {
		animation: animArrowBlank .5s both;
	}
}
@media screen and (max-width: 1280px) {
	.p-home-recruit__list {
		flex-direction: column;
		gap: 3rem;
	}
	.p-home-recruit__item a {
		height: 14rem;
	}
	.p-home-recruit__item.--2nd a {
		height: 14rem;
	}
	.p-home-recruit__item a br {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.p-home-recruit {
		padding: 5rem 0 8rem 0;
	}
	.p-home-recruit::before {
		height: 28rem;
	}
	.p-home-recruit__nav + .p-home-recruit__nav {
		margin-top: -1.5rem;
	}
	.p-home-recruit__list {
		flex-direction: column;
		margin: 3.5rem 0 0 0;
		gap: 2rem;
	}
	.p-home-recruit__item {
		padding: 0;
	}
	.p-home-recruit__item a {
		height: 20rem;
	}
	.p-home-recruit__item a br {
		display: block;
	}
	.p-home-recruit__item h3 .--en {
		font-size: 1.2rem;
	}
	.p-home-recruit__item h3 em {
		font-size: 2rem;
	}
	.p-home-recruit__item i {
		bottom: 1.5rem;
		right: 2rem;
		font-size: 1.2rem;
	}
	.p-home-recruit__site {
		margin-top: 5rem;
	}
	.p-home-recruit__site p {
		text-align: left;
	}
	.p-home-recruit__site .c-banner-axa-recruit-site {
		margin-top: 5rem;
	}
	.p-home-recruit__item.--2nd a {
		height: 18rem;
	}
}

/* ==================================================

	[ PROJECT ] RECRUIT STUDENTS

*/
.p-recruit-students {
	padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
	.p-recruit-students {
		padding-bottom: 7rem;
	}
}

/* ==================================================

	[ PROJECT ] PRIVACY

*/
.p-privacy-detail__block {
	margin-bottom: 6rem;
}
.p-privacy-detail__block .c-heading-primary {
	margin-bottom: 4rem;
}
.p-privacy-detail__block p:not(:last-child) {
	margin-bottom: 0.8em;
}
.p-privacy-detail__title {
	margin-bottom: 1.6rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.6;
	color: var(--color-primary);
}
.p-privacy-detail__title i {
	position: relative;
	top: 0.06em;
	display: inline-block;
	padding-right: 0.2em;
	font-family: "Source Sans 3", sans-serif;
	font-size: 128%;
}
.p-privacy-sharing {
	margin: 4rem 0;
	padding: 4rem 3rem;
	border-top: 1px solid #EFEFF1;
	border-bottom: 1px solid #EFEFF1;
}
.p-privacy-sharing ol > li:not(:last-child) {
	margin-bottom: 3rem;
}
.p-privacy-sharing h3 {
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--color-primary);
}
.p-privacy-sharing h3 i {
	position: relative;
	top: 0.06em;
	display: inline-block;
	padding-right: 0.2em;
	font-family: "Source Sans 3", sans-serif;
	font-size: 112%;
}
.p-privacy-contact {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 5rem 0;
}
.p-privacy-contact__block {
	padding: 3rem 4rem;
	background-color: var(--bg-gray);
}
.p-privacy-contact__block h3 {
	margin-bottom: 2rem;
	font-weight: 700;
}
.p-privacy-contact__block dl {
	display: flex;
	gap: 1em;
	margin-bottom: 0.6em;
}
@media screen and (max-width: 767px) {
	.p-privacy-detail__block {
		margin-bottom: 4rem;
	}
	.p-privacy-detail__block .c-heading-primary {
		margin-bottom: 3rem;
	}
	.p-privacy-detail__title {
		font-size: 1.8rem;
	}
	.p-privacy-sharing {
		margin: 3rem 0;
		padding: 3rem 0;
	}
	.p-privacy-sharing ol > li:not(:last-child) {
		margin-bottom: 2rem;
	}
	.p-privacy-sharing h3 {
		margin-bottom: 0.5rem;
		font-size: 1.6rem;
	}
	.p-privacy-contact {
		margin: 4rem 0;
	}
	.p-privacy-contact__block {
		padding: 2rem;
	}
	.p-privacy-contact__block h3 {
		font-size: 1.6rem;
		line-height: 1.6;
	}
	.p-privacy-contact__block dl {
		display: block;
		margin-bottom: 1.5em;
	}
}

@keyframes animArrow {
	0% {
		opacity: 1;
		transform: translate(0);
	}
	50% {
		opacity: 0;
		transform: translate(0.8em,0);
	}
	51% {
		opacity: 0;
		transform: translate(-0.8em,0);
	}
	to {
		opacity: 1;
		transform: translate(0);
	}
}
@keyframes animArrowBlank {
	0% {
		opacity: 1;
		transform: translate(0);
	}
	50% {
		opacity: 0;
		transform: translate(0.6em,-0.6em);
	}
	51% {
		opacity: 0;
		transform: translate(-0.6em,0.6em);
	}
	to {
		opacity: 1;
		transform: translate(0);
	}
}