@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;
}

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

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: 1.75;
	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;
		line-height: 2;
		letter-spacing: 0.02em;
	}
}

main {
	overflow: hidden;
	padding: 8.5rem 0 0 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 ] SUP

*/
.u-sup {
	display: inline-block;
	position: relative;
	top: 0.1em;
	font-size: 64%;
}

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

	[ UTILITY ] OBJECT-FIT

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

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

	[ UTILITY ] FINDENT HALF

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

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

	[ UTILITY ] FONT

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

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

	[ COMPONENT ] LINK

*/
.c-link-arrow {
	display: flex;
	align-items: center;
	color: var(--color-primary);
}
.c-link-arrow::after {
	content: '';
	display: block;
	margin-left: 0.6em;
	width: 1em;
	height: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('../img/icon-arrow-link.svg');
	background-size: contain;
}
.c-link-arrow[target="_blank"]::after {
	width: 0.9em;
	height: 0.9em;
	background-image: url('../img/icon-arrow-blank.svg');
}
@media (any-hover: hover) {
	.c-link-arrow {
		transition: opacity 0.4s ease;
	}
	.c-link-arrow:hover {
		opacity: 0.5;
	}
	.c-link-arrow:hover::after {
		animation: animArrow .5s both;
	}
	.c-link-arrow[target="_blank"]:hover::after {
		animation: animArrowBlank .5s both;
	}
}

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

	[ COMPONENT ] TEXT ALLOW

*/
.c-text-arrow,
.c-text-arrow-white {
	display: flex;
	align-items: center;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.3;
	color: inherit;
}
.c-text-arrow::after,
.c-text-arrow-white::after {
	content: '';
	display: block;
	margin-left: 0.6em;
	width: 1em;
	height: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('../img/icon-arrow-link.svg');
	background-size: contain;
}
a[target="_blank"] .c-text-arrow::after {
	width: 0.9em;
	height: 0.9em;
	background-image: url('../img/icon-arrow-blank.svg');
}
.c-text-arrow-white::after {
	background-image: url('../img/icon-arrow-link-w.svg');
}
a[target="_blank"] .c-text-arrow-white::after {
	width: 0.9em;
	height: 0.9em;
	background-image: url('../img/icon-arrow-blank-w.svg');
}
@media (any-hover: hover) {
	a:hover .c-text-arrow::after,
	a:hover .c-text-arrow-white::after {
		animation: animArrow .5s both;
	}
	a[target="_blank"]:hover .c-text-arrow::after,
	a[target="_blank"]:hover .c-text-arrow-white::after {
		animation: animArrowBlank .5s both;
	}
}

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

	[ 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-readmore {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 12.6rem;
	height: 4rem;
	background-color: var(--color-primary);
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	color: #FFF;
}
.c-button-readmore::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: #000072;
}
.c-button-readmore span {
	position: relative;
	display: block;
}
@media(hover: hover) {
	a.c-button-readmore:hover::before,
	a:hover .c-button-readmore::before {
		width: 130%;
	}
}

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

	[ COMPONENT ] HEADING BASIC

*/
.c-heading-basic {
	text-align: center;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.c-heading-basic {
		font-size: 2.4rem;
	}
}

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

	[ 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 ] HEADING SECONDARY

*/
.c-heading-secondary {
	text-align: center;
	line-height: 1.5;
	color: var(--color-primary);
}
.c-heading-secondary span {
	display: block;
	font-family: "Publico Headline", serif;
	font-weight: 700;
	font-size: 2rem;
}
.c-heading-secondary em {
	display: block;
	font-weight: 500;
	font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
	.c-heading-secondary span {
		font-size: 1.6rem;
	}
	.c-heading-secondary em {
		font-size: 2.4rem;
	}
}

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

	[ COMPONENT ] LIST TAG

*/
.c-list-tag {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.c-list-tag li {
	position: relative;
}
.c-list-tag a,
.c-list-tag button {
	position: relative;
	display: block;
	padding: 0.38em 1em 0.52em 1em;
	background-color: #8DAAD6;
	border-radius: 99rem;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.3;
	color: #FFF;
}
.c-list-tag li input {
	opacity: 0;
	display: block;
	position: absolute;
	inset: 0;
	cursor: pointer;
}
.c-list-tag li input:checked + button {
	background-color: var(--color-primary);
}

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

	[ LAYOUT ] CONTAINER

*/
.l-container,
.l-container-middle {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0 10rem;
	max-width: 137rem;
}
.l-container-middle {
	max-width: 116rem;
}
@media screen and (max-width: 1119px) {
	.l-container,
	.l-container-middle {
		padding: 0 5rem;
	}
}
@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__wrap::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #EFEFF1;
}
.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__logo br {
	display: none;
}
.l-header__nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	height: 100%;
}
.l-header__nav-content {
	display: flex;
	align-items: center;
	height: 100%;
	font-weight: 500;
	font-size: 1.4rem;
	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 button {
	display: flex;
	align-items: center;
	padding: 0 2rem;
	height: 100%;
}
.l-header__nav-content li.--active::after {
	width: 100%;
}
.l-header__nav-content li.current::after {
	width: 100% !important;
}
.l-header__nav-content.--hide li::after,
.l-header__nav-content li.--hide::after {
	width: 0% !important;
}
.l-header__nav-content li.--hover::after {
	width: 100% !important;
}
.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) {

}
@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__logo br {
		display: block;
	}
	.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 ] HEADER PULLDOWN

*/
.l-header-pulldown {
	position: absolute;
	top: 8.5rem;
	left: 0;
	width: 100%;
	background-color: #FFF;
	transform: translateY(-102%);
	transition: transform 0.4s ease;
}
.l-header-pulldown[aria-hidden="false"] {
	transform: translateY(0);
	z-index: 1000;
}
.l-header-pulldown nav {
	display: flex;
	justify-content: center;
	padding: 3rem 0;
	font-weight: 500;
	font-size: 1.4rem;
	color: var(--color-primary);
}
.l-header-pulldown ul {
	position: relative;
	padding-left: 6rem;
}
.l-header-pulldown ul::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: #EFEFF1;
}
.l-header-pulldown li {
	width: 27rem;
}
.l-header-pulldown li:not(:last-child) {
	margin-bottom: 1rem;
}
.l-header-pulldown li a {
	display: block;
	position: relative;
}
.l-header-pulldown li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	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-header-pulldown li a[target="_blank"]::after {
	width: 0.9em;
	height: 0.9em;
	background-image: url(../img/icon-arrow-blank.svg);
}
.l-header-pulldown__heading {
	flex-basis: 18rem;
	flex-shrink: 0;
}
@media (any-hover: hover) {
	.l-header-pulldown li a:hover::after {
		animation: animArrow .5s both;
	}
	.l-header-pulldown li a[target="_blank"]:hover::after {
		animation: animArrowBlank .5s both;
	}
}
@media screen and (max-width: 767px) {
	.l-header-pulldown {
		display: none;
	}
}

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

	[ 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: 20rem;
}
.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 {
	display: block;
	position: relative;
	padding: 1.3rem 4rem 1.3rem 0.5rem;
	color: var(--color-primary);
}
.l-megamenu-entry nav a::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 {
	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[target="_blank"]:hover::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 {
	overflow: hidden;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	transition: height 0.3s ease;
	background-color: #FFF;
}
@media screen and (max-width: 767px) {
	.l-megamenu-content {
		width: 100%;
	}
	.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;
		font-weight: 500;
		line-height: 1.5;
		color: var(--color-primary);
	}
	.l-megamenu-content nav a {
		display: flex;
		align-items: center;
		color: inherit;
	}
	.l-megamenu-content nav a[target="_blank"]::after {
		content: '';
		position: relative;
		top: 0.06em;
		display: block;
		margin-left: 0.5em;
		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-megamenu-content nav br {
		display: none;
	}
	.l-megamenu-content nav > ul > li {
		border-bottom: 1px solid #EFEFF1;
	}
	.l-megamenu-content nav > ul > li ul {
		padding: 1rem 0;
		border-top: 1px solid #EFEFF1;
		background-color: #F7F7F8;
	}
	.l-megamenu-content nav > ul > li ul a {
		padding: 1rem 2rem;
	}
	.l-megamenu-content__nav-root {
		position: relative;
		display: block;
		padding: 1.8rem 2rem;
		width: 100%;
		text-align: left;
		font-weight: 700;
	}
	.l-megamenu-content__nav-root::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 1.8rem;
		display: block;
		margin-top: -0.8rem;
		width: 1.5rem;
		height: 1.5rem;
		background-position: center;
		background-repeat: no-repeat;
		background-image: url(../img/icon-arrow-entry.svg);
		background-size: contain;
		transition: transform 0.4s ease;
	}
	.l-megamenu-content__nav-root[aria-expanded="true"]::after {
		transform: rotate(180deg);
	}
	.l-megamenu-content__nav-root + div {
		overflow: hidden;
		height: 0;
		transition: height 0.4s ease;
	}
}

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

	[ LAYOUT ] FOOTER

*/
.l-footer {
	position: relative;
	padding-top: 8rem;
	background-color: #4976BA;
	color: #FFF;
}
.l-footer a {
	display: flex;
	align-items: center;
	color: inherit;
}
.l-footer nav a[target="_blank"]::after {
	content: '';
	position: relative;
	top: 0.06em;
	display: block;
	margin-left: 0.5em;
	width: 0.9em;
	height: 0.9em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-blank-w.svg);
	background-size: contain;
}
.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: 1;
	padding-right: 4rem;
	line-height: 1.5;
}
.l-footer__nav-content > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 10rem;
	font-weight: 500;
	font-size: 1.4rem;
}
.l-footer__nav-content-root {
	text-align: left;
	font-weight: 700;
	font-size: 1.6rem;
}
.l-footer__nav-content > ul > li ul li {
	display: flex;
	margin-top: 2rem;
}
.l-footer__nav-corporate {
	margin-top: 6rem;
	padding: 3rem 0;
	border-top: 1px solid #7C98C7;
}
.l-footer__nav-corporate ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem 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 (min-width: 768px) {
	.l-footer__nav-content-root {
		cursor: default;
		pointer-events: none;
	}
}
@media screen and (max-width: 767px) {
	.l-footer {
		padding-top: 0;
	}
	.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-content br {
		display: none;
	}
	.l-footer__nav-content > ul {
		display: block;
	}
	.l-footer__nav-content > ul > li ul {
		padding: 1rem 0;
	}
	.l-footer__nav-content > ul > li ul li {
		margin: 0;
	}
	.l-footer__nav-content > ul > li ul li a {
		padding: 1rem 2rem;
	}
	.l-footer__nav-content-root {
		position: relative;
		padding: 1.8rem 2rem;
		width: 100%;
		border-top: 1px solid #7C98C7;
		font-size: 1.4rem;
		transition: background-color 0.4s ease;
	}
	.l-footer__nav-content-root::after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 1.8rem;
		margin-top: -0.8rem;
		width: 1.5rem;
		height: 1.5rem;
		background-image: url(../img/icon-arrow-entry-w.svg);
		background-size: contain;
		transition: transform 0.4s ease;
	}
	.l-footer__nav-content-root[aria-expanded="true"] {
		background-color: rgba(39, 65, 104, 0.2);
	}
	.l-footer__nav-content-root[aria-expanded="true"]::after {
		transform: rotate(180deg);
	}
	.l-footer__nav-content-root + div {
		overflow: hidden;
		height: 0;
		transition: height 0.4s ease;
	}
	.l-footer__nav-corporate {
		margin-top: 0;
		padding: 2rem;
	}
	.l-footer__nav-corporate ul {
		display: block;
		font-size: 1.2rem;
	}
	.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 {
	position: relative;
	background-color: #000;
	text-align: center;
	line-height: 1.5;
	color: #FFF;
}
.l-page-header__base {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 44rem;
}
.l-page-header__base::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.l-page-header h1 {
	position: relative;
}
.l-page-header h1 > span {
	overflow: hidden;
	display: block;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
}
.l-page-header h1 > span span {
	display: block;
	transform: translateY(80%);
}
.l-page-header h1 > em {
	overflow: hidden;
	display: block;
	font-weight: 700;
	font-size: 3.2rem;
}
.l-page-header h1 > em span {
	display: block;
	transform: translateY(90%);
}
.l-page-header__kv {
	position: fixed;
	top: 8.5rem;
	left: 0;
	width: 100%;
	height: 44rem;
}
.l-page-header__kv picture,
.l-page-header__kv img {
	object-position: 50% 10%;
}
.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__base {
		height: 28.6rem;
	}
	.l-page-header h1 > span {
		font-size: 1.2rem;
	}
	.l-page-header h1 > em {
		margin-top: 0.5rem;
		font-size: 2.4rem;
	}
	.l-page-header__kv {
		top: 7rem;
		height: 28.6rem;
	}
}

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

	[ LAYOUT ] CONTENT

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

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

	[ LAYOUT ] INLINESCROLL

*/
.l-inlinescroll {
	position: relative;
	overflow: hidden;
}
.l-inlinescroll__arrow {
	display: none;
}
@media screen and (max-width: 768px) {
	.l-inlinescroll {
		margin: 0 -2rem;
	}
	.l-inlinescroll__arrow {
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		position: absolute;
		top: 50%;
		right: 2rem;
		margin: -1.5rem 0 0 0;
		width: 3rem;
		height: 3rem;
		background-color: #fff;
		background-position: center;
		background-repeat: no-repeat;
		background-image: url(../img/icon-arrow-scroll.svg);
		background-size: contain;
		border-radius: 50%;
		opacity: 0.89;
		transition: opacity 0.2s;
	}
	.l-inlinescroll__arrow.--hide{
		opacity: 0;
	}
	.l-inlinescroll__scrollbar {
		overflow: hidden;
		position: absolute;
		bottom: 0;
		left: 2rem;
		right: 2rem;
		height: 0.4rem;
		background-color: #EFEFF1;
	}
	.l-inlinescroll__track {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background: var(--color-primary);
	}
	.l-inlinescroll__wrap {
		position: relative;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		bottom: -1rem;
		padding: 0 0 3rem 0;
	}
	.l-inlinescroll__in {
		display: flex;
	}
	.l-inlinescroll__in::before,
	.l-inlinescroll__in::after {
		content: '';
		display: block;
		flex-basis: 2rem;
		flex-shrink: 0;
	}
	.l-inlinescroll__wrap::-webkit-scrollbar {
		position: relative;
		z-index: 1;
		height: 0;
		opacity: 0;
		visibility: hidden;
	}
	.l-inlinescroll__wrap::-webkit-scrollbar-track {
		opacity: 0;
		height: 0;
		visibility: hidden;
	}
	.l-inlinescroll__wrap::-webkit-scrollbar-thumb {
		opacity: 0;
		height: 0;
		visibility: hidden;
	}
}

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

	[ LAYOUT ] MODAL MOVIE

*/
.l-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	inset: 0;
	background-color: rgba(255,255,255,0.85);
	overflow-y: auto;
}
.l-modal[aria-hidden="false"] {
	display: flex;
}
.l-modal__video {
	position: relative;
	margin: auto;
	padding: 6rem 0 5rem 0;
	width: 96rem;
}
.l-modal__player {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	background-color: #999;
}
.l-modal__player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.l-modal__close {
	position: absolute;
	top: 0;
	right: 0;
	width: 4rem;
	height: 4rem;
	background-color: var(--color-primary);
	border-radius: 50%;
}
.l-modal__close::before,
.l-modal__close::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -0.1rem 0 0 -0.8rem;
	width: 1.6rem;
	height: 0.2rem;
	background-color: #FFF;
}
.l-modal__close::before {
	transform: rotate(-45deg);
}
.l-modal__close::after {
	transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
	.l-modal__video {
		padding: 4.4rem 0;
		width: 100%;
	}
	.l-modal__close {
		right: 1rem;
		width: 3.4rem;
		height: 3.4rem;
	}
}

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

	[ PROJECT ] HOME

*/
.p-home {
	padding: 0;
}
.p-home-content {
	background-color: #FFF;
}

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

	[ 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;
	left: 10rem;
	bottom: 8rem;
}
.p-home-main h1 em {
	display: block;
	font-size: 6.4rem;
	line-height: 1.23;
	transform: translateY(2rem);
	opacity: 0;
}
.p-home-main h1 span {
	display: block;
	margin-top: 3.5rem;
	font-size: 2rem;
	line-height: 1.5;
	transform: translateY(2rem);
	opacity: 0;
}
.p-home-main__foot {
	display: flex;
	margin-top: 4rem;
	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.2s, opacity 1s ease 1.2s;
}
.loaded .p-home-main__foot {
	transition: opacity 1s ease 1.6s;
	opacity: 1;
}
.loaded .p-home-main h1 em,
.loaded .p-home-main h1 span {
	transform: translateY(0);
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.p-home-main__content {
		left: 2rem;
		bottom: 6rem;
	}
	.p-home-main h1 > em {
		font-size: 4rem;
		line-height: 1.32;
	}
	.p-home-main h1 > span {
		margin-top: 2rem;
		font-size: 1.6rem;
	}
	.p-home-main__foot {
		margin-top: 3rem;
	}
}

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

	[ PROJECT ] HOME GROUP

*/
.p-home-group {
	display: flex;
	line-height: 1.3;
	color: #FFF;
}
.p-home-group__side {
	display: flex;
	align-items: center;
	flex-basis: 42rem;
	padding: 8rem 6rem 8rem 10rem;
	background-color: #4975BF;
}
.p-home-group__side h2 {
	margin-bottom: 3.5rem;
}
.p-home-group__side h2 span {
	display: block;
	font-size: 2rem;
}
.p-home-group__side h2 em {
	display: block;
	margin-top: 1rem;
	font-weight: 500;
	font-size: 2.8rem;
}
.p-home-group__side p {
	font-size: 1.4rem;
	line-height: 2;
}
.p-home-group__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	padding: 8rem 7rem 8rem 3rem;
	background-color: #274168;
}
.p-home-group__nav ul {
	display: flex;
	flex-wrap: wrap;
	max-width: 97rem;
}
.p-home-group__nav li {
	flex-basis: 50%;
	padding: 2rem 3rem;
}
.p-home-group__nav a {
	position: relative;
	display: flex;
	align-items: center;
	padding-right: 3rem;
}
.p-home-group__nav a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	margin-top: -0.65rem;
	width: 1.3rem;
	height: 1.3rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-blank-w.svg);
	background-size: contain;
}
.p-home-group__nav span {
	display: block;
	overflow: hidden;
	flex-basis: 14rem;
}
.p-home-group__nav dl {
	flex: 1;
	padding: 0 0 0 1.5rem;
}
.p-home-group__nav dt {
	font-size: 1.3rem;
}
.p-home-group__nav dd {
	margin-top: 0.8rem;
	font-weight: 500;
	font-size: 1.8rem;
}
@media (any-hover: hover) {
	.p-home-group__nav a:hover::after {
		animation: animArrowBlank .5s both;
	}
	.p-home-group__nav a span img {
		transition: transform 0.4s ease;
	}
	.p-home-group__nav a:hover span img {
		transform: scale(1.1);
	}
}
@media screen and (min-width: 1500px) {
	.p-home-group__side {
		flex-basis: 28%;
	}
	.p-home-group__nav dd br {
		display: none;
	}
}
@media screen and (max-width: 1260px) {
	.p-home-group {
		display: block;
	}
	.p-home-group__side {
		padding: 5rem 10rem;
	}
	.p-home-group__nav {
		padding: 3rem 7rem;
	}
	.p-home-group__nav ul {
		max-width: initial;
	}
}
@media screen and (max-width: 767px) {
	.p-home-group__side {
		padding: 5rem 2rem;
	}
	.p-home-group__side h2 {
		margin-bottom: 3.5rem;
	}
	.p-home-group__side h2 span {
		font-size: 1.6rem;
	}
	.p-home-group__side h2 em {
		font-size: 2.4rem;
	}
	.p-home-group__nav {
		padding: 5rem 2rem;
	}
	.p-home-group__nav ul {
		display: block;
	}
	.p-home-group__nav li {
		padding: 1rem 0;
	}
	.p-home-group__nav a {
		padding-right: 3rem;
	}
	.p-home-group__nav a::after {
		margin-top: -0.65rem;
		width: 1.3rem;
		height: 1.3rem;
	}
	.p-home-group__nav span {
		flex-basis: 10rem;
	}
	.p-home-group__nav dl {
		padding: 0 0 0 2rem;
	}
	.p-home-group__nav dt {
		font-size: 1.2rem;
	}
	.p-home-group__nav dd {
		font-size: 1.6rem;
	}
	.p-home-group__nav dd br {
		display: block;
	}
}

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

	[ PROJECT ] HOME SLIDE

*/
.p-home-slide {
	height: 52rem;
	background-color: #000;
	text-align: center;
}
.p-home-slide__slider {
	height: 100%;
}
.p-home-slide__item {
	position: relative;
	height: 100%;
}
.p-home-slide__item::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%);
}
.p-home-slide .l-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
/**/
.p-home-slide-reasons {
	background-position: 50% 10%;
	background-image: url(../img/home-slide-reasons-pc.jpg);
	background-size: cover;
	color: #FFF;
}
.p-home-slide-reasons h2 {
	line-height: 1.2;
}
.p-home-slide-reasons h2 span {
	display: block;
	font-size: 1.4rem;
}
.p-home-slide-reasons h2 em {
	margin-top: 2rem;
	display: block;
	font-size: 4rem;
}
.p-home-slide-reasons p {
	margin: 3rem 0 2rem 0;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 2;
}
.p-home-slide-reasons .c-button-readmore {
	margin: 0 auto;
}
/**/
.p-home-slide-xxx {
	background-color: #666;
	color: #FFF;
}
/**/
.p-home-slide .slick-list,
.p-home-slide .slick-track {
	height: 100%;
}
.p-home-slide .slick-arrow {
	overflow: hidden;
	display: block;
	position: absolute;
	z-index: 10;
	top: 50%;
	margin-top: -1.5rem;
	width: 3rem;
	height: 3rem;
	text-indent: -999em;
}
.p-home-slide .slick-prev {
	left: 10rem;
	background-image: url(../img/icon-arrow-prev.svg);
}
.p-home-slide .slick-next {
	right: 10rem;
	background-image: url(../img/icon-arrow-next.svg);
}
.p-home-slide .slick-dots {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 4rem;
	left: 0;
	width: 100%;
	gap: 0.6rem;
}
.p-home-slide .slick-dots button {
	overflow: hidden;
	display: block;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background-color: #CCC;
	text-indent: -999rem;
}
.p-home-slide .slick-dots .slick-active button {
	background-color: #FFF;
}
@media screen and (max-width: 767px) {
	.p-home-slide {
		height: 52rem;
	}
	.p-home-slide-reasons {
		background-image: url(../img/home-slide-reasons-sp.jpg);
	}
	.p-home-slide-reasons .c-button-readmore {
		width: 100%;
	}
	.p-home-slide .slick-arrow {
		top: auto;
		margin-top: 0;
		bottom: 2.8rem;
	}
	.p-home-slide .slick-prev {
		left: 12rem;
	}
	.p-home-slide .slick-next {
		right: 12rem;
	}
}

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

	[ PROJECT ] HOME WORKS

*/
.p-home-works {
	margin-top: 5rem;
}
.p-home-works__row {
	display: flex;
	margin-top: 5rem;
}
.p-home-works__row a {
	position: relative;
	display: flex;
	align-items: flex-end;
	flex: 1;
	height: 42rem;
	color: #FFF;
}
.p-home-works__bg {
	overflow: hidden;
	position: absolute;
	inset: 0;
}
.p-home-works__bg picture,
.p-home-works__bg img {
	object-position: 50% 20%;
}
.p-home-works__bg::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 30%);
}
.p-home-works__item {
	position: relative;
	padding: 4rem;
}
.p-home-works__item h3 {
	margin-bottom: 2.5rem;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.25;
}
@media (any-hover: hover) {
	.p-home-works a img {
		transition: transform 0.4s ease;
	}
	.p-home-works a:hover img {
		transform: scale(1.04);
	}
}
@media screen and (max-width: 767px) {
	.p-home-works {
		margin-top: 4rem;
	}
	.p-home-works__row {
		display: block;
		margin-top: 4rem;
	}
	.p-home-works__row a {
		height: 32rem;
	}
	.p-home-works__bg::after {
		background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 50%);
	}
	.p-home-works__item {
		padding: 2rem;
	}
	.p-home-works__item h3 {
		margin-bottom: 2rem;
		font-size: 2rem;
	}
}

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

	[ PROJECT ] HOME ENVIRONMENT

*/
.p-home-environment {
	padding: 10rem 0;
	background-color: var(--color-primary);
	color: #FFF;
}
.p-home-environment .c-heading-secondary {
	text-align: left;
	color: #FFF;
}
.p-home-environment__list {
	display: flex;
	gap: 4rem;
	margin-top: 4rem;
}
.p-home-environment__list li {
	flex: 1;
}
.p-home-environment__list h3 {
	margin: 1.5rem 0 2.5rem 0;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.25;
}
.p-home-environment__thumb {
	overflow: hidden;
}
@media (any-hover: hover) {
	.p-home-environment a img {
		transition: transform 0.4s ease;
	}
	.p-home-environment a:hover img {
		transform: scale(1.08);
	}
}
@media screen and (max-width: 767px) {
	.p-home-environment {
		padding: 5rem 0;
	}
	.p-home-environment__list {
		display: block;
	}
	.p-home-environment__list li:not(:last-child) {
		margin-bottom: 3rem;
	}
	.p-home-environment__list h3 {
		margin: 1.5rem 0 2rem 0;
		font-size: 2rem;
	}
	.p-home-environment__thumb {
		height: 18rem;
	}
}

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

	[ PROJECT ] HOME INFO

*/
.p-home-info {
	position: relative;
	margin-top: 5rem;
	padding-bottom: 12rem;
}
.p-home-info::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 26rem;
	background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
	.p-home-info {
		margin-top: 4rem;
		padding-bottom: 12rem;
	}
	.p-home-info::before {
		height: 26rem;
	}
}

.p-home-info-message {
	margin-top: 5rem;
}
.p-home-info-message a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 42rem;
	text-align: center;
	color: #FFF;
}
.p-home-info-message__bg {
	overflow: hidden;
	position: absolute;
	inset: 0;
}
.p-home-info-message__bg picture,
.p-home-info-message__bg img {
	position: relative;
	object-position: 50% 0%;
}
.p-home-info-message__bg::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
.p-home-info-message h3 {
	position: relative;
	margin-bottom: 4rem;
	font-size: 4rem;
	line-height: 1.2;
}
.p-home-info-message i {
	position: relative;
}
@media (any-hover: hover) {
	.p-home-info-message img {
		transition: transform 0.4s ease;
	}
	.p-home-info-message a:hover img {
		transform: scale(1.03);
	}
}
@media screen and (max-width: 767px) {
	.p-home-info-message {
		margin-top: 4rem;
	}
	.p-home-info-message a {
		padding: 0 2rem;
		height: 38rem;
	}
	.p-home-info-message h3 {
		margin-bottom: 7rem;
		padding-top: 6rem;
	}
	.p-home-info-message i {
		width: 100%;
	}
}

.p-home-info__lead {
	margin: 6rem 0 5rem 0;
	text-align: center;
	font-weight: 500;
}
@media screen and (max-width: 767px) {
	.p-home-info__lead {
		margin: 3rem 0;
	}
}

.p-home-info-recruitment {
	display: flex;
	gap: 4rem;
}
.p-home-info-recruitment__item {
	flex: 1;
}
.p-home-info-recruitment__item a {
	display: block;
	color: var(--color-primary);
}
.p-home-info-recruitment__item h3 {
	margin: 2rem 0 2.5rem 0;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.25;
}
.p-home-info-recruitment__thumb {
	overflow: hidden;
	height: 36rem;
}
@media (any-hover: hover) {
	.p-home-info-recruitment a img {
		transition: transform 0.4s ease;
	}
	.p-home-info-recruitment a:hover img {
		transform: scale(1.04);
	}
}
@media screen and (max-width: 767px) {
	.p-home-info-recruitment {
		display: block;
	}
	.p-home-info-recruitment__item {
		margin-bottom: 3rem;
	}
	.p-home-info-recruitment__item h3 {
		margin: 1.5rem 0 2rem 0;
		font-size: 2rem;
	}
	.p-home-info-recruitment__thumb {
		height: 24rem;
	}
}

.p-home-info-challenged {
	margin-top: 8rem;
}
.p-home-info-challenged a {
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 28.6rem;
	color: #FFF;
}
.p-home-info-challenged__bg {
	overflow: hidden;
	position: absolute;
	inset: 0;
}
.p-home-info-challenged__bg::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background-image: linear-gradient(90deg,rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
}
.p-home-info-challenged__inner {
	position: relative;
	padding: 4rem;
}
.p-home-info-challenged__inner h3 {
	margin-bottom: 2.5rem;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.25;
}
@media (any-hover: hover) {
	.p-home-info-challenged a img {
		transition: transform 0.4s ease;
	}
	.p-home-info-challenged a:hover img {
		transform: scale(1.04);
	}
}
@media screen and (max-width: 767px) {
	.p-home-info-challenged {
		margin-top: 0;
	}
	.p-home-info-challenged__inner {
		padding: 2rem;
	}
	.p-home-info-challenged__inner h3 {
		margin-bottom: 2rem;
		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 ] WORKS BUSINESS

*/
.p-works-business-visualize {
	padding: 8rem 0 0 0;
}
.p-works-business-visualize h2 {
	margin-bottom: 5rem;
	text-align: center;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
.p-works-business-visualize__lead p:not(:last-child) {
	margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
	.p-works-business-visualize {
		padding: 6rem 0 0 0;
	}
	.p-works-business-visualize h2 {
		margin-bottom: 3rem;
		font-size: 2.4rem;
	}
}

.p-works-business-flow {
	margin-top: 7rem;
	padding: 8rem 0;
	background-color: var(--bg-gray);
	text-align: center;
	font-weight: 700;
	line-height: 1.7;
}
.p-works-business-flow__head {
	margin: 0 auto;
	padding: 2rem 0;
	max-width: 42rem;
	background-color: #C8D0E7;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--color-primary);
}
.p-works-business-flow__head em {
	display: block;
}
.p-works-business-flow__middle {
	display: flex;
	justify-content: center;
	gap: 5rem;
	margin: 1.5rem 0;
}
.p-works-business-flow__type {
	flex-basis: 29rem;
}
.p-works-business-flow__type::before,
.p-works-business-flow__type::after {
	content: '';
	display: block;
	margin: 0 auto;
	width: 2rem;
	height: 5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/works-business-flow-arrow-pc.svg);
	background-size: contain;
}
.p-works-business-flow__type h3 {
	margin-top: 1rem;
	font-size: 1.8rem;
	color: var(--color-primary);
}
.p-works-business-flow__type ul {
	display: flex;
	gap: 1rem;
	margin: 1.5rem 0 1rem 0;
}
.p-works-business-flow__type li {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.6rem;
	background-color: #FFF;
	border: 0.2rem solid var(--color-primary);
	font-size: 1.8rem;
	color: var(--color-primary);
}
.p-works-business-flow__type p {
	margin-bottom: 1rem;
	font-size: 1.3rem;
	line-height: 2;
	color: #274168;
}
.p-works-business-flow__foot {
	padding: 3rem 2rem 4rem 2rem;
	background-color: var(--color-primary);
	color: #FFF;
}
.p-works-business-flow__foot h3 {
	margin-bottom: 2.5rem;
	font-size: 2rem;
}
.p-works-business-flow__foot > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.p-works-business-flow__foot > ul > li {
	flex-basis: 20%;
	padding: 0 8px;
}
.p-works-business-flow__foot > ul > li:last-child {
	flex-basis: 60%;
	margin-top: 3rem;
}
.p-works-business-flow__foot > ul > li h4 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;
	height: 10rem;
	border: 0.2rem solid #FFF;
	font-size: 1.8rem;
}
.p-works-business-flow__foot > ul > li:last-child h4 {
	height: 6rem;
}
.p-works-business-flow__foot > ul > li > ul {
	text-align: left;
	font-size: 1.2rem;
}
.p-works-business-flow__foot > ul > li:last-child > ul {
	display: grid;
	justify-content: start;
	grid-template-columns: repeat(4, auto);
	grid-template-rows: repeat(2, auto);
	gap: 0 2rem;
}
.p-works-business-flow__foot > ul > li > ul > li {
	position: relative;
	padding-left: 1.3em;
}
.p-works-business-flow__foot > ul > li > ul > li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 767px) {
	.p-works-business-flow {
		margin-top: 6rem;
		padding: 6rem 0;
	}
	.p-works-business-flow__head {
		padding: 1.6rem 0;
		max-width: initial;
		font-size: 1.6rem;
	}
	.p-works-business-flow__middle {
		gap: 2rem;
		margin: 1.5rem 0;
	}
	.p-works-business-flow__type {
		flex-basis: 29rem;
	}
	.p-works-business-flow__type::before,
	.p-works-business-flow__type::after {
		width: 2rem;
		height: 4rem;
		background-image: url(../img/works-business-flow-arrow-sp.svg);
	}
	.p-works-business-flow__type h3 {
		margin-top: 0.6rem;
		font-size: 1.6rem;
	}
	.p-works-business-flow__type ul {
		flex-direction: column;
		gap: 0.5rem;
		margin: 1rem 0 1rem 0;
		height: 11.6rem;
	}
	.p-works-business-flow__type li {
		height: auto;
		font-size: 1.6rem;
	}
	.p-works-business-flow__type p {
		font-size: 1.2rem;
		line-height: 1.7;
	}
	.p-works-business-flow__foot {
		padding: 3rem 2rem 4rem 2rem;
	}
	.p-works-business-flow__foot h3 {
		margin-bottom: 2.5rem;
		font-size: 1.6rem;
	}
	.p-works-business-flow__foot > ul {
		display: block;
	}
	.p-works-business-flow__foot > ul > li {
		padding: 0;
		margin-top: 1.5rem !important;
	}
	.p-works-business-flow__foot > ul > li:last-child {
		flex-basis: 60%;
	}
	.p-works-business-flow__foot > ul > li h4 {
		height: 4.8rem !important;
		font-size: 1.5rem;
	}
	.p-works-business-flow__foot > ul > li > ul {
		display: flex;
		flex-wrap: wrap;
		font-size: 1.0rem;
	}
	.p-works-business-flow__foot > ul > li:last-child > ul {
		display: flex;
		gap: 0;
	}
	.p-works-business-flow__foot > ul > li > ul > li {
		flex-basis: 50%;
		padding-left: 1em;
	}
	.p-works-business-flow__foot > ul > li > ul > li::before {
		left: -0.3rem;
	}
	.p-works-business-flow__foot > ul > li:nth-child(4) > ul {
		display: block;
	}
}

.p-works-business-detail {
	margin: 8rem 0 10rem 0;
}
.p-works-business-detail .c-heading-primary {
	margin-bottom: 5.5rem;
}
.p-works-business-detail__block:not(:last-child) {
	margin-bottom: 6rem;
}
.p-works-business-detail__main {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30rem;
	text-align: center;
	font-weight: 700;
	font-size: 2.4rem;
	color: #FFF;
}
.p-works-business-detail__main h3 {
	position: relative;
}
.p-works-business-detail__kv {
	position: absolute;
	inset: 0;
}
.p-works-business-detail__kv::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(39, 65, 104, 0.15);
}
.p-works-business-detail__heading {
	margin: 3rem 0 2rem 0;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
.p-works-business-detail__lead {
	line-height: 1.75;
}
.p-works-business-detail__interview {
	display: flex;
	gap: 3rem;
	margin-top: 3.5rem;
}
.p-works-business-detail__interview h5 {
	margin-top: 0.3rem;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.3;
}
@media screen and (max-width: 767px) {
	.p-works-business-detail {
		margin: 6rem 0;
	}
	.p-works-business-detail .c-heading-primary {
		margin-bottom: 3rem;
	}
	.p-works-business-detail__block:not(:last-child) {
		margin-bottom: 4rem;
	}
	.p-works-business-detail__main {
		height: 24rem;
		font-size: 2rem;
	}
	.p-works-business-detail__heading {
		margin: 2.5rem 0 2rem 0;
	}
	.p-works-business-detail__interview {
		display: block;
		margin-top: 3.5rem;
	}
	.p-works-business-detail__interview ul {
		margin: 2rem 0 0 0;
	}
}

.p-works-business-interview a {
	display: block;
	position: relative;
	text-align: center;
	font-size: 1.3rem;
	color: #FFF;
}
.p-works-business-interview__bg {
	overflow: hidden;
	position: absolute;
	inset: 0;
}
.p-works-business-interview__bg::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%);
}
.p-works-business-interview__inner {
	position: relative;
	padding-top: 6rem;
	height: 28.6rem;
}
.p-works-business-interview__inner h2 {
	font-size: 2.4rem;
	font-weight: 700;
}
.p-works-business-interview__inner p {
	margin: 1rem 0 3rem 0;
	font-weight: 500;
}
.p-works-business-interview__foot {
	display: flex;
	justify-content: center;
}
@media (any-hover: hover) {
	.p-works-business-interview a img {
		transition: transform 0.4s ease;
	}
	.p-works-business-interview a:hover img {
		transform: scale(1.04);
	}
}
@media screen and (max-width: 767px) {
	.p-works-business-interview a {
		font-size: 1.2rem;
	}
	.p-works-business-interview__inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-top: 0;
		height: 34rem;
	}
	.p-works-business-interview__inner h2 {
		font-size: 2rem;
	}
	.p-works-business-interview__inner p {
		margin: 1rem 0 3rem 0;
	}
	.p-works-business-interview__foot {
		display: block;
		position: absolute;
		bottom: 2rem;
		left: 0;
		padding: 0 2rem;
		width: 100%;
	}
	.p-works-business-interview__foot i {
		width: 100%;
	}
}

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

	[ PROJECT ] WORKS INTERVIEW

*/
.p-works-interview-tag {
	padding: 5rem 0;
}
.p-works-interview-tag h2 {
	margin-bottom: 2.5rem;
	text-align: center;
	font-family: "Publico Headline", serif;
	font-weight: 700;
	font-size: 2.4rem;
}
.p-works-interview-tag__list {
	position: relative;
	border-bottom: 1px solid #EDEDED;
}
.p-works-interview-tag__reset {
	display: block;
	position: absolute;
	bottom: 100%;
	right: 0;
	padding: 0 1em;
	background-color: #F5F5F5;
	font-size: 1.4rem;
}
.p-works-interview-tag__item {
	display: flex;
	padding: 2.5rem 2rem;
	border-top: 1px solid #EDEDED;
}
.p-works-interview-tag__item h3 {
	margin-top: 0.3rem;
	flex-basis: 12rem;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.3;
}
@media screen and (max-width: 767px) {
	.p-works-interview-tag h2 {
		margin-bottom: 3.5rem;
		font-size: 2rem;
	}
	.p-works-interview-tag__reset {
		padding: 0 1em;
		font-size: 1.3rem;
	}
	.p-works-interview-tag__item {
		display: block;
		padding: 2.5rem 0;
	}
	.p-works-interview-tag__item ul {
		margin-top: 2rem;
	}
	.p-works-interview-tag__item h3 {
		margin-top: 0;
	}
}

.p-works-interview-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem;
	gap: 4rem 0;
}
.p-works-interview-list__item {
	padding: 0 2rem;
	flex-basis: 33.333%;
}
.p-works-interview-list__item[aria-hidden="true"] {
	display: none;
}
.p-works-interview-list__item a {
	display: block;
	position: relative;
	padding-bottom: 3rem;
	height: 100%;
	color: var(--color-primary);
}
.p-works-interview-list__item h3 {
	margin: 1.5rem 0;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.4;
}
.p-works-interview-list__item ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 1em;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.5;
	color: #6C6C6C;
}
.p-works-interview-list__item i {
	position: absolute;
	bottom: 0;
	right: 0;
}
.p-works-interview-list__thumb {
	overflow: hidden;
	height: 24rem;
}
@media (any-hover: hover) {
	.p-works-interview-list a img {
		transition: transform 0.4s ease;
	}
	.p-works-interview-list a:hover img {
		transform: scale(1.08);
	}
}
@media screen and (max-width: 767px) {
	.p-works-interview-list {
		display: block;
		margin: 0;
	}
	.p-works-interview-list__item {
		padding: 0;
	}
	.p-works-interview-list__item:not(:last-child) {
		margin-bottom: 3rem;
	}
	.p-works-interview-list__item a {
		height: auto;
	}
	.p-works-interview-list__item h3 {
		margin: 1.5rem 0 1rem 0;
	}
}

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

	[ PROJECT ] WORKS INTERVIEW DETAIL

*/
.p-interview::before {
	content: '';
	display: block;
	height: 49.8710232158212vw;
}
.p-interview-detail-main {
	position: fixed;
	top: 8.5rem;
	left: 0;
	padding-left: 20rem;
	width: 100%;
	height: 49.8710232158212vw;
	background-color: var(--color-primary);
}
.p-interview-detail-main__kv {
	width: 100%;
	height: 100%;
}
.p-interview-detail-main__head {
	position: absolute;
	top: 0;
	left: 6rem;
	font-family: "Publico Headline", serif;
	font-weight: 700;
	line-height: 1.1;
	color: #FFF;
	transform: rotate(90deg);
	transform-origin: 0 100%;
}
.p-interview-detail-main__head > span {
	display: block;
	font-size: 2.4rem;
}
.p-interview-detail-main__head > span span {
	display: block;
	opacity: 0;
	transform: translateX(3rem);
}
.p-interview-detail-main__head > em {
	display: block;
	font-size: 4.8rem;
}
.p-interview-detail-main__head > em span {
	display: block;
	opacity: 0;
	transform: translateX(3rem);
}
.loaded .p-interview-detail-main__head > span span {
	transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.4s ease;
	opacity: 1;
	transform: translateX(0);
}
.loaded .p-interview-detail-main__head > em span {
	transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.2s, opacity 0.4s ease 0.2s;
	opacity: 1;
	transform: translateX(0);
}
@media screen and (max-width: 767px) {
	.p-interview::before {
		height: 38rem;
	}
	.p-interview-detail-main {
		top: 7rem;
		padding-left: 0;
		height: auto;
	}
	.p-interview-detail-main__kv {
		height: 38rem;
	}
	.p-interview-detail-main__head {
		display: none;
	}
}

.p-interview-detail-head {
	position: relative;
	top: -8rem;
	margin-bottom: -8rem;
}
.p-interview-detail-head::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 10rem;
	right: 10rem;
	height: 10rem;
	background-color: #FFF;
}
.p-interview-detail-head .l-container {
	position: relative;
}
.p-interview-detail-head h1 {
	padding: 8rem 0 0 0;
	text-align: center;
	font-weight: 700;
	font-size: 4rem;
	line-height: 1.4;
	color: var(--color-primary);
}
.p-interview-detail-head__profile {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 8rem 0 4rem 0;
}
.p-interview-detail-head__portrait span {
	display: flex;
	overflow: hidden;
	border-radius: 50%;
}
.p-interview-detail-head__portrait img {
	width: 10rem;
	height: 10rem;
}
.p-interview-detail-head__detail {
	padding-left: 3rem;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
}
.p-interview-detail-head__detail dl {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 1rem;
	padding-top: 1rem;
	line-height: 1.3;
}
.p-interview-detail-head__detail dl::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2rem;
	height: 2px;
	background-color: #FF1721;
}
.p-interview-detail-head__detail dt {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 3.8rem;
}
.p-interview-detail-head__detail dd {
	margin-top: 0.8rem;
	padding-left: 2rem;
	font-weight: 500;
	font-size: 1.3rem;
}
.p-interview-detail-head .c-list-tag {
	justify-content: center;
}
.p-interview-detail-head__lead {
	margin-top: 6rem;
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.p-interview-detail-head {
		top: -2rem;
		margin-bottom: -2rem;
	}
	.p-interview-detail-head::before {
		left: 2rem;
		right: 2rem;
		height: 4rem;
	}
	.p-interview-detail-head h1 {
		margin: 0 -1rem;
		padding: 6rem 0 0 0;
		font-size: 2.4rem;
	}
	.p-interview-detail-head__profile {
		justify-content: flex-start;
		align-items: flex-start;
		margin: 5rem 0 3.5rem 0;
	}
	.p-interview-detail-head__portrait img {
		width: 8rem;
		height: 8rem;
	}
	.p-interview-detail-head__detail {
		padding-left: 2.5rem;
		font-size: 1.2rem;
	}
	.p-interview-detail-head__detail dl {
		margin-top: 1rem;
		padding-top: 1rem;
	}
	.p-interview-detail-head__detail dt {
		font-size: 3.2rem;
	}
	.p-interview-detail-head__detail dd {
		padding-left: 1.6rem;
		font-size: 1.2rem;
	}
	.p-interview-detail-head .c-list-tag {
		justify-content: flex-start;
	}
	.p-interview-detail-head__lead {
		margin-top: 4rem;
		font-size: 1.3rem;
		line-height: 1.7;
	}
}

.p-interview-detail-article section {
	margin: 8rem 0 6rem 0;
}
.p-interview-detail-article section h2 {
	margin-bottom: 3rem;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
.p-interview-detail-article__lead p:not(:last-child) {
	margin-bottom: 2rem;
}
.p-interview-detail-article__photo {
	position: relative;
	margin-top: 6rem;
	padding-top: 43.75%;
	height: 0;
}
.p-interview-detail-article__photo img {
	position: absolute;
	top: 0;
	left: 0;
}
.p-interview-detail-article__note {
	margin: 5rem 0;
	text-align: right;
	font-size: 1.2rem;
}
.p-interview-detail-article__video {
	margin: 8rem 0;
}
.p-interview-detail-article__player {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.p-interview-detail-article__player iframe {
	display: block;
	outline: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.p-interview-detail-article__foot {
	display: flex;
	padding-top: 1.5rem;
	border-top: 2px solid #CCC;
}
.p-interview-detail-article__foot a {
	display: block;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.p-interview-detail-article section {
		margin: 6rem 0;
	}
	.p-interview-detail-article section h2 {
		margin-bottom: 2rem;
		font-size: 2rem;
	}
	.p-interview-detail-article__photo {
		margin-left: -2rem;
		margin-right: -2rem;
		padding-top: 0;
		height: 28rem;
	}
	.p-interview-detail-article__photo img {
		position: absolute;
		top: 0;
		left: 0;
	}
	.p-interview-detail-article__note {
		text-align: left;
	}
	.p-interview-detail-article__video {
		margin: 6rem 0;
	}
	.p-interview-detail-article__foot {
		padding-top: 1.5rem;
	}
	.p-interview-detail-article__foot a {
		font-size: 1.2rem;
	}
}

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

	[ PROJECT ] ENVIRONMENT CAREER

*/
.p-environment-career-vision {
	margin: 0 0 8rem 0;
	padding: 8rem 0 0 0;
}
.p-environment-career-vision .c-heading-basic {
	margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
	.p-environment-career-vision {
		margin: 0 0 6rem 0;
		padding: 6rem 0 0 0;
	}
	.p-environment-career-vision .c-heading-basic {
		margin-bottom: 3rem;
	}
}

.p-environment-career-keyword {
	margin: 8rem 0;
}
.p-environment-career-keyword__row {
	display: flex;
	gap: 4rem;
	margin-top: 5rem;
}
.p-environment-career-keyword__item h3 {
	margin: 2.5rem 0 1.5rem 0;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.p-environment-career-keyword {
		margin: 6rem 0;
	}
	.p-environment-career-keyword__row {
		display: block;
		margin-top: 3rem;
	}
	.p-environment-career-keyword__item:not(:last-child) {
		margin-bottom: 3rem;
	}
	.p-environment-career-keyword__item h3 {
		margin: 1.5rem 0 1rem 0;
		font-size: 2rem;
	}
}

.p-environment-career-training {
	padding: 8rem 0;
	background-color: #F7F7F8;
}
.p-environment-career-training__figure {
	margin: 4rem 0 3.5rem 0;
}
.p-environment-career-training__item {
	display: flex;
	padding: 2rem;
	background-color: #FFF;
	border-top: 1px solid var(--color-primary);
}
.p-environment-career-training__item:not(:last-child) {
	margin-bottom: 1rem;
}
.p-environment-career-training__item h3 {
	flex-basis: 15rem;
	font-weight: 700;
	color: var(--color-primary);
}
.p-environment-career-training__detail {
	flex: 1;
	padding: 0.2rem 0;
	font-size: 1.4rem;
}
.p-environment-career-training__detail li {
	position: relative;
	padding-left: 1.5em;
}
.p-environment-career-training__detail li::before {
	content: '・';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 767px) {
	.p-environment-career-training {
		padding: 6rem 0;
	}
	.p-environment-career-training__figure {
		margin: 3rem 0 3.5rem 0;
	}
	.p-environment-career-training__figure .l-inlinescroll__in {
		width: 70rem;
	}
	.p-environment-career-training__item {
		display: block;
		padding: 1.5rem 2rem 2rem 2rem;
	}
	.p-environment-career-training__item h3 {
		margin-bottom: 1rem;
		font-size: 1.6rem;
	}
	.p-environment-career-training__detail {
		padding: 0;
	}
}

.p-environment-career-block {
	margin: 8rem 0;
}
.p-environment-career-block:last-child {
	margin-bottom: 0;
}
.p-environment-career-block__lead {
	margin-top: 4rem;
}
.p-environment-career-block__lead p:not(:last-child) {
	margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
	.p-environment-career-block {
		margin: 6rem 0;
	}
	.p-environment-career-block__lead {
		margin-top: 3rem;
	}
}

.p-environment-career-learning {
	margin-top: 6rem;
}
.p-environment-career-learning__item {
	display: flex;
}
.p-environment-career-learning__item:not(:last-child) {
	margin-bottom: 4.5rem;
}
.p-environment-career-learning__icon {
	flex-basis: 12rem;
	flex-shrink: 0;
	margin-top: 1rem;
}
.p-environment-career-learning__detail {
	flex: 1;
	padding-left: 4rem;
}
.p-environment-career-learning__detail h3 {
	margin-bottom: 1.5rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.p-environment-career-learning {
		margin-top: 3rem;
	}
	.p-environment-career-learning__item {
		display: block;
	}
	.p-environment-career-learning__item:not(:last-child) {
		margin-bottom: 4.5rem;
	}
	.p-environment-career-learning__icon {
		margin: 0 auto;
		width: 8.6rem;
	}
	.p-environment-career-learning__detail {
		padding: 0;
	}
	.p-environment-career-learning__detail h3 {
		margin: 2rem 0 1.5rem 0;
		text-align: center;
	}
}

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

	[ PROJECT ] ENVIRONMENT WELFARE

*/
.p-environment-welfare-lead {
	padding: 8rem 0;
}
@media screen and (max-width: 767px) {
	.p-environment-welfare-lead {
		padding: 6rem 0;
	}
}

.p-environment-welfare-wecare {
	padding: 8rem 0;
	background-color: #F7F7F8;
}
.p-environment-welfare-wecare__lead {
	margin: 4rem 0;
}
.p-environment-welfare-wecare__care {
	margin-top: 6rem;
}
.p-environment-welfare-wecare__care h3 {
	margin-bottom: 4rem;
	text-align: center;
	font-weight: 700;
	color: var(--color-primary);
}
.p-environment-welfare-wecare__care h3 span {
	display: block;
	text-indent: -0.5em;
}
.p-environment-welfare-wecare__care h3 em {
	display: block;
	font-size: 3.2rem;
}
.p-environment-welfare-wecare-item {
	background-color: #FFF;
}
.p-environment-welfare-wecare-item:not(:last-child) {
	margin-bottom: 3rem;
}
.p-environment-welfare-wecare-item > h4 {
	padding: 1.5rem 3rem;
	background-color: var(--color-primary);
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: #FFF;
}
.p-environment-welfare-wecare-item__detail {
	padding: 2.5rem 3rem 3.5rem 3rem;
}
.p-environment-welfare-wecare-item__detail p:not(:last-child) {
	margin-bottom: 1.5rem;
}
.p-environment-welfare-wecare-item__detail .--small {
	font-size: 1.2rem;
}
.p-environment-welfare-wecare-item__holiday {
	display: flex;
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 2px solid #EFEFF1;
}
.p-environment-welfare-wecare-item__holiday-icon {
	flex-basis: 10rem;
	flex-shrink: 0;
}
.p-environment-welfare-wecare-item__holiday-detail {
	flex: 1;
	padding-left: 3.5rem;
}
.p-environment-welfare-wecare-item__holiday-detail h4 {
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.p-environment-welfare-wecare {
		padding: 6rem 0;
	}
	.p-environment-welfare-wecare__lead {
		margin: 3rem 0;
	}
	.p-environment-welfare-wecare__care {
		margin-top: 4rem;
	}
	.p-environment-welfare-wecare__care h3 {
		margin-bottom: 3rem;
	}
	.p-environment-welfare-wecare__care h3 em {
		font-size: 2.4rem;
	}
	.p-environment-welfare-wecare-item:not(:last-child) {
		margin-bottom: 2rem;
	}
	.p-environment-welfare-wecare-item > h4 {
		padding: 1.5rem;
	}
	.p-environment-welfare-wecare-item__detail {
		padding: 2rem 1.5rem 3rem 1.5rem;
	}
	.p-environment-welfare-wecare-item__detail p:not(:last-child) {
		margin-bottom: 1.5rem;
	}
	.p-environment-welfare-wecare-item__holiday {
		display: block;
		margin-top: 2.5rem;
		padding-top: 3rem;
	}
	.p-environment-welfare-wecare-item__holiday-icon {
		margin: 0 auto;
		width: 8rem;
	}
	.p-environment-welfare-wecare-item__holiday-detail {
		padding: 0;
	}
	.p-environment-welfare-wecare-item__holiday-detail h4 {
		margin: 2rem 0 1rem 0;
		text-align: center;
	}
}

.p-environment-welfare-system {
	margin: 8rem 0 0 0;
}
.p-environment-welfare-system .c-heading-primary {
	margin-bottom: 4rem;
}
.p-environment-welfare-system__foot {
	font-size: 1.4rem;
}
.p-environment-welfare-system__foot li {
	position: relative;
	margin-bottom: 1rem;
	padding-left: 2rem;
}
.p-environment-welfare-system__foot li:last-child {
	margin-bottom: 0;
}
.p-environment-welfare-system__foot li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}
.p-environment-welfare-system__label {
	position: relative;
	margin: 2rem 0;
	padding-left: 2rem;
}
.p-environment-welfare-system__label::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -0.8rem;
	width: 1.6rem;
	height: 1.6rem;
	background-color: #F07662;
}
@media screen and (max-width: 767px) {
	.p-environment-welfare-system {
		margin: 6rem 0 0 0;
	}
	.p-environment-welfare-system .c-heading-primary {
		margin-bottom: 3rem;
	}
	.p-environment-welfare-system__figure .l-inlinescroll__in {
		width: 70rem;
	}
	.p-environment-welfare-system__foot li {
		line-height: 1.8;
	}
	.p-environment-welfare-system__label {
		font-size: 1.2rem;
	}
	.p-environment-welfare-system__label::before {
		margin-top: -0.7rem;
	}
}

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

	[ PROJECT ] ENVIRONMENT WORKSTYLE

*/
.p-environment-workstyle-smart {
	margin: 0 0 8rem 0;
	padding: 8rem 0 0 0;
}
.p-environment-workstyle-smart__lead {
	margin-top: 5rem;
}
.p-environment-workstyle-smart__lead p:not(:last-child) {
	margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
	.p-environment-workstyle-smart {
		margin: 0 0 6rem 0;
		padding: 6rem 0 0 0;
	}
	.p-environment-workstyle-smart__lead {
		margin-top: 3rem;
	}
}

.p-environment-workstyle-gallery {
	margin: 10rem 0 0 0;
}
.p-environment-workstyle-gallery h2 {
	margin-bottom: 5rem;
}
.p-environment-workstyle-gallery__list {
	display: flex;
	flex-wrap: wrap;
	margin: -4rem;
}
.p-environment-workstyle-gallery__list li {
	flex-basis: 33.333%;
	padding: 4rem;
}
.p-environment-workstyle-gallery__list li span {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
}
.p-environment-workstyle-gallery__list li img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	.p-environment-workstyle-gallery {
		margin: 6rem 0 0 0;
	}
	.p-environment-workstyle-gallery h2 {
		margin-bottom: 3rem;
	}
	.p-environment-workstyle-gallery__list {
		display: block;
		margin: 0;
	}
	.p-environment-workstyle-gallery__list li {
		padding: 0;
	}
	.p-environment-workstyle-gallery__list li:not(:last-child) {
		margin-bottom: 2rem;
	}
}

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

	[ PROJECT ] ENVIRONMENT DIVERSITY

*/
.p-environment-diversity-lead {
	padding: 8rem 0 0 0;
}
@media screen and (max-width: 767px) {
	.p-environment-diversity-lead {
		padding: 6rem 0 0 0;
	}
}

.p-environment-diversity-image01,
.p-environment-diversity-image02 {
	margin: 8rem 0;
	height: 36rem;
}
.p-environment-diversity-image01 picture,
.p-environment-diversity-image01 img {
	object-position: 50% 0%;
}
@media screen and (max-width: 767px) {
	.p-environment-diversity-image01,
	.p-environment-diversity-image02 {
		margin: 6rem 0;
		height: 28rem;
	}
}

.p-environment-diversity-block {
	margin: 8rem 0;
}
.p-environment-diversity-block:last-child {
	margin-bottom: 0;
}
.p-environment-diversity-block__list {
	margin-top: 5rem;
}
.p-environment-diversity-block__item {
	display: flex;
	align-items: flex-start;
}
.p-environment-diversity-block__item:not(:last-child) {
	margin-bottom: 5rem;
}
.p-environment-diversity-block__logo,
.p-environment-diversity-block__image {
	display: flex;
	justify-content: center;
	flex-basis: 26rem;
}
.p-environment-diversity-block__image img {
	width: 18rem;
}
.p-environment-diversity-block__detail {
	flex: 1;
	padding-left: 4rem;
}
.p-environment-diversity-block__detail h3 {
	margin-bottom: 1.5rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
}
.p-environment-diversity-block__note {
	position: relative;
	margin-top: 1.5rem;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
	.p-environment-diversity-block {
		margin: 6rem 0;
	}
	.p-environment-diversity-block__list {
		margin-top: 3rem;
	}
	.p-environment-diversity-block__item {
		display: block;
	}
	.p-environment-diversity-block__item:not(:last-child) {
		margin-bottom: 4rem;
	}
	.p-environment-diversity-block__logo img,
	.p-environment-diversity-block__image img {
		margin: 0 auto;
		width: 14rem;
	}
	.p-environment-diversity-block__detail {
		margin-top: 2rem;
		padding: 0;
	}
	.p-environment-diversity-block__detail h3 {
		text-align: center;
	}
}

.p-environment-diversity-erg {
	margin-top: 5rem;
}
.p-environment-diversity-erg__caption {
	margin-top: 3rem;
	text-align: right;
	font-size: 1.4rem;
}
.p-environment-diversity-erg__pdf {
	margin-top: 6rem;
	font-weight: 500;
	font-size: 1.4rem;
}
.p-environment-diversity-erg__pdf li {
	display: flex;
	margin-bottom: 1.5rem;
}
.p-environment-diversity-erg__pdf li:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	.p-environment-diversity-erg {
		margin-top: 3rem;
	}
	.p-environment-diversity-erg__figure .l-inlinescroll__in {
		width: 70rem;
	}
	.p-environment-diversity-erg__caption {
		margin-top: 2rem;
		text-align: left;
		font-size: 1.2rem;
	}
	.p-environment-diversity-erg__pdf {
		margin-top: 3rem;
		font-size: 1.2rem;
	}
}

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

	[ PROJECT ] INFORMATION MESSAGE

*/
.p-information-message-header h1 span {
	font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
	.p-information-message-header h1 span {
		font-size: 2.4rem;
	}
}

.p-information-message-our-purpose {
	padding: 8rem 0 0 0;
}
.p-information-message-our-purpose__base {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 46rem;
	background-position: center;
	background-image: url(../img/information-message-our-purpose-pc.jpg);
	background-size: cover;
	text-align: center;
	font-weight: 500;
	color: #FFF;
}
.p-information-message-our-purpose h2 span {
	display: block;
	font-weight: 700;
	font-size: 1.4rem;
}
.p-information-message-our-purpose h2 em {
	display: block;
	font-size: 2rem;
}
.p-information-message-our-purpose h3 {
	margin: 3rem 0;
	font-size: 4rem;
	line-height: 1.4;
}
.p-information-message-our-purpose p {
	
}
@media screen and (max-width: 767px) {
	.p-information-message-our-purpose {
		padding: 4rem 0 0 0;
	}
	.p-information-message-our-purpose__base {
		background-image: url(../img/information-message-our-purpose-sp.jpg);
	}
	.p-information-message-our-purpose h2 em {
		font-size: 1.6rem;
	}
	.p-information-message-our-purpose h3 {
		margin: 2.5rem 0;
		font-size: 3.2rem;
		line-height: 1.3;
	}
}

.p-information-message-drive-progress {
	margin: 10rem;
	text-align: center;
}
.p-information-message-drive-progress h2 {
	margin-bottom: 5rem;
	color: var(--color-primary);
}
.p-information-message-drive-progress h2 span {
	display: block;
	font-size: 6.4rem;
	line-height: 1.1;
}
.p-information-message-drive-progress h2 em {
	display: block;
	margin-top: 2.5rem;
	font-size: 2rem;
}
.p-information-message-drive-progress p {
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.p-information-message-drive-progress {
		margin: 6rem 0;
	}
	.p-information-message-drive-progress h2 {
		margin-bottom: 3rem;
	}
	.p-information-message-drive-progress h2 span {
		font-size: 4rem;
		line-height: 1.25;
	}
	.p-information-message-drive-progress h2 em {
		margin-top: 2rem;
		font-size: 1.6rem;
	}
	.p-information-message-drive-progress p {
		text-align: left;
		line-height: 2.2;
	}
}

.p-information-message-promise {
	padding: 8rem 0;
	background-color: var(--color-primary);
	color: #FFF;
}
.p-information-message-promise h2 {
	margin-bottom: 7rem;
	text-align: center;
}
.p-information-message-promise h2 span {
	display: block;
	font-size: 4rem;
}
.p-information-message-promise h2 em {
	display: block;
	font-weight: 500;
}
.p-information-message-promise__item:not(:last-child) {
	margin-bottom: 9rem;
}
.p-information-message-promise__heading {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36.8rem;
	text-align: center;
}
.p-information-message-promise__heading h3 {
	position: relative;
	font-weight: 700;
}
.p-information-message-promise__heading h3 span {
	display: block;
	font-size: 3.6rem;
	line-height: 1.2;
}
.p-information-message-promise__heading h3 em {
	display: block;
	margin-top: 3rem;
	font-size: 2rem;
	line-height: 1.5;
}
.p-information-message-promise__kv {
	position: absolute;
	inset: 0;
}
.p-information-message-promise__kv::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,74,0.2);
}
.p-information-message-promise__lead {
	margin-top: 3rem;
}
.p-information-message-promise__lead p:not(:last-child) {
	margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
	.p-information-message-promise {
		padding: 6rem 0;
	}
	.p-information-message-promise .l-container-middle {
		padding: 0;
	}
	.p-information-message-promise h2 {
		margin-bottom: 3rem;
	}
	.p-information-message-promise h2 span {
		font-size: 2.8rem;
	}
	.p-information-message-promise__item:not(:last-child) {
		margin-bottom: 4rem;
	}
	.p-information-message-promise__heading {
		height: 34rem;
	}
	.p-information-message-promise__heading h3 span {
		font-size: 2.8rem;
	}
	.p-information-message-promise__heading h3 em {
		margin-top: 2.5rem;
		font-size: 1.4rem;
	}
	.p-information-message-promise__lead {
		margin-top: 3rem;
		padding: 0 2rem;
	}
	.p-information-message-promise__lead p:not(:last-child) {
		margin-bottom: 2rem;
	}
}

.p-information-message-movie {
	margin: 10rem 0 0 0;
}
.p-information-message-movie__list {
	display: flex;
	gap: 6rem;
	margin-top: 7rem;
}
.p-information-message-movie__item {
	flex: 1;
}
.p-information-message-movie__item a {
	display: block;
	color: var(--color-primary);
}
.p-information-message-movie__item h3 {
	margin: 2.5rem 0 2.5rem 0;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
}
.p-information-message-movie__thumb {
	overflow: hidden;
	position: relative;
	padding-top: 63.716814159292%;
	height: 0;
}
.p-information-message-movie__thumb img {
	position: absolute;
	top: 0;
	left: 0;
}
@media (any-hover: hover) {
	.p-information-message-movie a img {
		transition: transform 0.4s ease;
	}
	.p-information-message-movie a:hover img {
		transform: scale(1.04);
	}
}
@media screen and (max-width: 767px) {
	.p-information-message-movie {
		margin: 6em 0 0 0;
	}
	.p-information-message-movie__list {
		display: block;
		margin-top: 3rem;
	}
	.p-information-message-movie__item:not(:last-child) {
		margin-bottom: 3rem;
	}
	.p-information-message-movie__item h3 {
		margin: 2rem 0 2rem 0;
		font-size: 2rem;
	}
}

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

	[ PROJECT ] INFORMATION CHALLENGED

*/
.p-information-challenged-beginning {
	margin: 0 0 8rem 0;
	padding: 8rem 0 0 0;
}
.p-information-challenged-beginning__lead {
	margin-top: 5rem;
}
@media screen and (max-width: 767px) {
	.p-information-challenged-beginning {
		margin: 0 0 6rem 0;
		padding: 6rem 0 0 0;
	}
	.p-information-challenged-beginning__lead {
		margin-top: 3rem;
	}
}

.p-information-challenged-interview {
	margin: 8rem 0;
}
.p-information-challenged-interview__list {
	display: flex;
	gap: 4rem;
	margin-top: 5rem;
}
.p-information-challenged-interview__item {
	flex: 1;
}
.p-information-challenged-interview__item a {
	display: block;
	color: var(--color-primary);
}
.p-information-challenged-interview__item h3 {
	margin: 2rem 0 2.5rem 0;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.4;
}
.p-information-challenged-interview__thumb {
	overflow: hidden;
	height: 28rem;
}
@media (any-hover: hover) {
	.p-information-challenged-interview a img {
		transition: transform 0.4s ease;
	}
	.p-information-challenged-interview a:hover img {
		transform: scale(1.08);
	}
}
@media screen and (max-width: 767px) {
	.p-information-challenged-interview {
		margin: 6rem 0;
	}
	.p-information-challenged-interview__list {
		display: block;
		margin-top: 3rem;
	}
	.p-information-challenged-interview__item:not(:last-child) {
		margin-bottom: 3rem;
	}
	.p-information-challenged-interview__item h3 {
		margin: 1.5rem 0 2rem 0;
		font-size: 2rem;
	}
	.p-information-challenged-interview__thumb {
		height: 21.6rem;
	}
}

.p-information-challenged-interview-list {
	margin-top: 8rem;
}
.p-information-challenged-interview-list__item {
	margin-bottom: 5rem;
}
.p-information-challenged-interview-list__head {
	display: flex;
}
.p-information-challenged-interview-list__portrait {
	flex-shrink: 0;
}
.p-information-challenged-interview-list__portrait img {
	width: 9rem;
	height: 9rem;
}
.p-information-challenged-interview-list__portrait--sp {
	display: none;
}
.p-information-challenged-interview-list__info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-left: 3rem;
	line-height: 1.3;
}
.p-information-challenged-interview-list__info h3 {
	flex-basis: 100%;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.4;
	color: var(--color-primary);
}
.p-information-challenged-interview-list__name {
	display: flex;
	align-items: center;
}
.p-information-challenged-interview-list__name dl {
	display: flex;
	align-items: center;
}
.p-information-challenged-interview-list__name dt {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
	font-size: 2.8rem;
}
.p-information-challenged-interview-list__name dd {
	margin-top: 0.5rem;
	padding-left: 0.5em;
	text-indent: -0.5em;
	font-size: 1.2rem;
}
.p-information-challenged-interview-list__detail {
	margin-top: 2rem;
}
.p-information-challenged-interview-list__detail h4 {
	margin-bottom: 1rem;
	font-weight: 700;
}
.p-information-challenged-interview__note {
	font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
	.p-information-challenged-interview-list {
		margin-top: 6rem;
	}
	.p-information-challenged-interview-list__item {
		margin-bottom: 4rem;
	}
	.p-information-challenged-interview-list__head {
		display: block;
	}
	.p-information-challenged-interview-list__portrait {
		display: none;
	}
	.p-information-challenged-interview-list__portrait--sp {
		display: block;
	}
	.p-information-challenged-interview-list__portrait--sp img {
		width: 8rem;
		height: 8rem;
	}
	.p-information-challenged-interview-list__info {
		padding-left: 0;
	}
	.p-information-challenged-interview-list__info h3 {
		margin-bottom: 2rem;
		font-size: 2rem;
	}
	.p-information-challenged-interview-list__name {
		padding-left: 1.5rem;
	}
	.p-information-challenged-interview-list__name dl {
		display: block;
		padding-bottom: 0.5rem;
	}
	.p-information-challenged-interview-list__name dt {
		font-size: 2.4rem;
	}
	.p-information-challenged-interview-list__name dd {
		margin-top: 1rem;
		padding: 0;
		text-indent: -0.5em;
		font-size: 1.2rem;
	}
	.p-information-challenged-interview-list__detail h4 {
		font-size: 1.6rem;
	}
}

.p-information-challenged-support {
	padding: 8rem 0;
	background-color: #E2EFFF;
}
.p-information-challenged-support .c-heading-primary {
	margin-bottom: 4rem;
}
.p-information-challenged-support__list {
	display: flex;
	flex-wrap: wrap;
	margin: -2rem;
}
.p-information-challenged-support__item {
	flex-basis: 50%;
	padding: 2rem;
}
.p-information-challenged-support__detail {
	padding: 3rem;
	height: 100%;
	background-color: #FFF;
}
.p-information-challenged-support__detail h3 {
	position: relative;
	margin-bottom: 2rem;
	padding-left: 5rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
.p-information-challenged-support__detail h3 i {
	position: absolute;
	top: 50%;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -1.8rem;
	width: 3.6rem;
	height: 3.6rem;
	background-color: #8DAAD6;
	border-radius: 50%;
	font-family: "Source Sans 3", sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	color: #FFF;
}
@media screen and (max-width: 767px) {
	.p-information-challenged-support {
		padding: 6rem 0;
	}
	.p-information-challenged-support .c-heading-primary {
		margin-bottom: 3rem;
	}
	.p-information-challenged-support__list {
		display: block;
		margin: 0;
	}
	.p-information-challenged-support__item {
		padding: 0;
	}
	.p-information-challenged-support__item:not(:last-child) {
		margin-bottom: 2rem;
	}
	.p-information-challenged-support__detail {
		padding: 2.5rem 1.8rem;
		height: auto;
	}
	.p-information-challenged-support__detail h3 {
		font-size: 2rem;
	}
	.p-information-challenged-support__detail h3 i {
		font-size: 2rem;
	}
}

.p-information-challenged-culture {
	padding: 8rem 0;
	background-color: #F7F7F8;
}
.p-information-challenged-culture__list {
	margin-top: 4rem;
}
.p-information-challenged-culture__item {
	display: flex;
	padding: 3rem;
	background-color: #FFF;
}
.p-information-challenged-culture__item:not(:last-child) {
	margin-bottom: 2rem;
}
.p-information-challenged-culture__image {
	flex-basis: 24rem;
}
.p-information-challenged-culture__image span {
	display: block;
	height: 16rem;
}
.p-information-challenged-culture__detail {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	padding-left: 4rem;
}
.p-information-challenged-culture__detail h3 {
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: var(--color-primary);
}
.p-information-challenged-culture__detail small {
	display: block;
	margin-top: 0.5rem;
	font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
	.p-information-challenged-culture {
		padding: 6rem 0;
	}
	.p-information-challenged-culture__list {
		margin-top: 3rem;
	}
	.p-information-challenged-culture__item {
		display: block;
		padding: 2rem 1.5rem;
	}
	.p-information-challenged-culture__image span {
		height: 20.2rem;
	}
	.p-information-challenged-culture__detail {
		display: block;
		margin-top: 1.5rem;
		padding: 0;
	}
}

.p-information-challenged-recruitment {
	margin: 8rem 0 0 0;
}
.p-information-challenged-recruitment__list {
	display: flex;
	gap: 4rem;
	margin-top: 5rem;
}
.p-information-challenged-recruitment__item {
	flex: 1;
}
.p-information-challenged-recruitment__item a {
	display: block;
	color: var(--color-primary);
}
.p-information-challenged-recruitment__item h3 {
	margin: 2rem 0 2.5rem 0;
	font-weight: 700;
	line-height: 1.5;
}
.p-information-challenged-recruitment__item h3 span {
	display: block;
	font-size: 1.8rem;
}
.p-information-challenged-recruitment__item h3 em {
	display: block;
	font-size: 2.4rem;
}
.p-information-challenged-recruitment__thumb {
	overflow: hidden;
	height: 36rem;
}
@media (any-hover: hover) {
	.p-information-challenged-recruitment a img {
		transition: transform 0.4s ease;
	}
	.p-information-challenged-recruitment a:hover img {
		transform: scale(1.04);
	}
}
@media screen and (max-width: 767px) {
	.p-information-challenged-recruitment {
		margin: 6rem 0 0 0;
	}
	.p-information-challenged-recruitment__list {
		display: block;
		margin-top: 3rem;
	}
	.p-information-challenged-recruitment__item:not(:last-child) {
		margin-bottom: 3rem;
	}
	.p-information-challenged-recruitment__item h3 {
		margin: 2rem 0;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-information-challenged-recruitment__item h3 span {
		font-size: 1.2rem;
	}
	.p-information-challenged-recruitment__item h3 em {
		font-size: 2rem;
	}
	.p-information-challenged-recruitment__thumb {
		height: 24rem;
	}
}

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

	[ PROJECT ] KEYFRAMES

*/
@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);
	}
}