@charset "utf-8";

/* =====================================
	normalize
===================================== */
:root {
	--color-black: #000000;
	--color-gray: #e5e5e5;
	--color-gray-light: #f6f6f6;
	--color-white: #ffffff;
	--color-blue: #036eb8;
	--color-blue-light: #f1f7fb;
	--gradient-blue: linear-gradient(#036eb8, #2ea7e0);
	--font-ja: "Noto Sans JP", sans-serif;
	--font-en: "Montserrat", sans-serif;
	--font-serif: "Noto Serif JP", serif;
	--weight-normal: 400;
	--weight-bold: 700;
	--inner-padding: max(calc(50% - 600px), 15px);
}
@media (max-width: 1024px) {
	:root {
		--header-height: 60px;
	}
}
@media (min-width: 1025px) {
	:root {
		--header-height: 100px;
	}
}

/* all */
*,
*::before,
*::after {
	box-sizing: border-box;
}

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

/* body */
body {
	text-align: left;
	overflow-wrap: break-word;
	color: var(--color-black);
	background-color: var(--color-white);
	font-family: var(--font-ja);
	font-optical-sizing: auto;
	font-size: 1.5rem;
	font-weight: var(--weight-normal);
	line-height: 2;
	-webkit-text-size-adjust: 100%;
}

/* p */
p {
	margin: 2.5rem 0;
}

/* list */
ol,
ul {
	padding-left: 1.5em;
}
ol,
ul,
dl {
	margin: 2.5rem 0;
}
li ol,
li ul {
	margin: 1em 0;
}

/* link */
a {
	text-decoration: underline dotted;
	text-underline-offset: 0.5em;
	color: var(--color-blue);
}
@media (hover: hover) {
	a:hover {
		text-decoration: none;
	}
}

/* img */
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* form */
input,
button,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
	cursor: pointer;
}


/* =====================================
	glare
===================================== */
.glare {
	position: relative;
}
.glare::before {
	position: absolute;
	z-index: -1;
	width: 300px;
	height: 300px;
	content: "";
	background-size: cover;
}


/* =====================================
	button
===================================== */
.button {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 100%;
	max-width: 345px;
	min-height: 50px;
	padding: 12px 50px;
	text-decoration: none;
	color: var(--color-white);
	font-size: 1.7rem;
	font-weight: var(--weight-bold);
	line-height: 1.5;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	content: "";
}
.button::before {
	transform: skewX(-12.5deg);
	background: var(--color-black);
}
.button::after {
	transition: background-position 0.5s;
	background: url("/files/ico_arrow_white_left_01.svg") no-repeat center right 25px;
}
@media (hover: hover) {
	.button:hover::after {
		text-decoration: none;
		background-position: center right 20px;
	}
}


/* =====================================
	heading
===================================== */
/* heading-1 */
.heading-1 {
	font-weight: var(--weight-bold);
	line-height: 1.5;
}
.heading-1__en {
	display: block;
	font-family: var(--font-en);
}
.heading-1__ja {
	display: block;
}
.heading-1 + * {
	margin-top: 0 !important;
}
@media (max-width: 1024px) {
	.heading-1 {
		margin: 75px 0 25px 0;
	}
	.heading-1__en {
		font-size: 2.5rem;
	}
	.heading-1__ja {
		font-size: 1.5rem;
	}
}
@media (min-width: 1025px) {
	.heading-1 {
		margin: 150px 0 50px 0;
	}
	.heading-1__en {
		font-size: 3.5rem;
	}
	.heading-1__ja {
		font-size: 1.7rem;
	}
}

/* heading-2 */
.heading-2 {
	position: relative;
	font-weight: var(--weight-bold);
	line-height: 1.75;
}
.heading-2::before {
	position: absolute;
	top: 0.875em;
	left: 0;
	width: 50px;
	height: 1px;
	content: "";
	background-color: var(--color-black);
}
.heading-2 + * {
	margin-top: 0 !important;
}
@media (max-width: 1024px) {
	.heading-2 {
		margin: 75px 0 25px 0;
		padding-left: 37px;
		font-size: 2.0rem;
	}
	.heading-2::before {
		width: 25px;
	}
}
@media (min-width: 1025px) {
	.heading-2 {
		margin: 100px 0 50px 0;
		padding-left: 75px;
		font-size: 2.5rem;
	}
	.heading-2::before {
		width: 50px;
	}
}


/* =====================================
	lead
===================================== */
.lead {
	font-weight: var(--weight-bold);
}
@media (max-width: 1024px) {
	.lead {
		font-size: 1.5rem;
	}
}
@media (min-width: 1025px) {
	.lead {
		font-size: 1.7rem;
	}
}


/* =====================================
	list
===================================== */
/* list-link */
.list-link {
	display: flex;
	gap: 15px 25px;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: var(--weight-bold);
	line-height: 1.5;
}
.list-link > li {
	border-bottom: 2px solid var(--color-gray);
}
.list-link > li > a {
	display: grid;
	align-items: center;
	height: 100%;
	padding: 15px 25px 15px 0;
	transition: transform 0.5s;
	text-decoration: none;
	color: inherit !important;
	background: url("/files/ico_arrow_black_left_01.svg") no-repeat right center;
}
.list-link--anchor > li > a {
	background-image: url("/files/ico_arrow_black_down_01.svg");
}
@media (hover: hover) {
	.list-link > li > a:not(.list-link--anchor > li > a):hover {
		transform: translateX(5px);
	}
	.list-link--anchor > li > a:hover {
		transform: translateY(5px);
	}
}
@media (min-width: 577px) {
	.list-link--anchor {
		flex-direction: initial;
		flex-wrap: wrap;
	}
	.list-link > li {
		width: calc(50% - 13px);
	}
}
@media (min-width: 769px) {
	.list-link--anchor {
		flex-wrap: initial;
		justify-content: center;
	}
	.list-link--anchor > li {
		width: calc(25% - 19px);
	}
}
@media (max-width: 1024px) {
	.list-link {
		font-size: 1.5rem;
	}
}
@media (min-width: 1025px) {
	.list-link {
		font-size: 1.7rem;
	}
}

/* list-description */
.list-description {
	display: grid;
	margin: 0;
}
.list-description__item {
	display: grid;
	padding-left: 25px;
	border-left: 2px solid var(--color-gray);
}
.list-description__term {
	font-weight: var(--weight-bold);
	line-height: 1.75;
}
.list-description__term-en {
	display: block;
	color: var(--color-blue);
	font-family: var(--font-en);
	font-size: 1.3rem;
}
.list-description__labels {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-left: 0;
}
.label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 75px;
	color: var(--color-white);
	background: var(--color-black);
	font-size: 1.1rem;
	font-weight: var(--weight-bold);
}
.list-description__details {
	margin-left: 0;
}
.list-description__details > :first-child {
	margin-top: 0 !important;
}
.list-description__details > :last-child {
	margin-bottom: 0 !important;
}
@media (max-width: 1024px) {
	.list-description {
		gap: 25px;
	}
	.list-description__item {
		gap: 10px;
	}
	.list-description__term {
		font-size: 1.7rem;
	}
}
@media (min-width: 1025px) {
	.list-description {
		gap: 50px;
	}
	.list-description__item {
		gap: 25px;
	}
	.list-description__term {
		font-size: 2.0rem;
	}
}

/* list-card */
.list-card {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
}
.list-card > li {
	display: grid;
	grid-template-rows: subgrid;
}
.card {
	display: grid;
	gap: 25px;
	grid-template-rows: subgrid;
	padding: 25px;
	transition: transform 0.5s, box-shadow 0.5s;
	text-decoration: none;
	color: inherit !important;
	background: var(--color-white);
}
.card__figure {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
	margin: 25px 0;
}
.card__heading {
	text-align: center;
	font-size: 1.7rem;
	font-weight: var(--weight-bold);
}
.card__heading-en {
	margin-top: -25px;
	text-align: center;
	color: var(--color-blue);
	font-family: var(--font-en);
	font-size: 1.3rem;
	font-weight: var(--weight-bold);
}
.card__more {
	padding-right: 40px;
	text-align: right;
	background: url("/files/ico_arrow_black_left_01.svg") no-repeat right center;
	font-family: var(--font-en);
	font-size: 1.7rem;
	font-weight: var(--weight-bold);
}
.card__note {
	font-size: 1.3rem;
}
@media (hover: hover) {
	a.card:hover {
		transform: scale(1.05);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	}
}
@media (max-width: 1024px) {
	.list-card {
		gap: 15px;
	}
	.list-card + .list-card {
		margin-top: 15px;
	}
}
@media (min-width: 1025px) {
	.list-card {
		gap: 25px;
	}
	.list-card + .list-card {
		margin-top: 25px;
	}
}


/* =====================================
	table
===================================== */
.table-line {
	width: 100%;
	border-collapse: collapse;
}
.table-line > :where(thead, tbody, tfoot) > tr > :where(td, th) {
	padding: 25px 0;
	text-align: left;
	vertical-align: top;
}
.table-line > :where(thead, tbody, tfoot) > tr > th {
	border-bottom: 2px solid var(--color-black);
}
.table-line > :where(thead, tbody, tfoot) > tr > td {
	padding-left: 25px;
	border-bottom: 2px solid var(--color-gray);
}
.table-line > :where(thead, tbody, tfoot) > tr > :where(td, th) > :first-child {
	margin-top: 0;
}
.table-line > :where(thead, tbody, tfoot) > tr > :where(td, th) > :last-child {
	margin-bottom: 0;
}
@media (max-width: 1024px) {
	.table-line--job > :where(thead, tbody, tfoot) > tr > th {
		width: 25%;
	}
}
@media (min-width: 1025px) {
	.table-line--job > :where(thead, tbody, tfoot) > tr > th {
		width: 17em;
	}
}


/* =====================================
	column
===================================== */
/* column */
.column {
	display: flex;
	gap: 25px 4.16%;
	margin: 25px 0;
}
.column__body {
	width: 100%;
}
.column__body > :first-child {
	margin-top: 0;
}
.column__body > :last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.column {
		flex-direction: column;
	}
}

/* column-flow */
.column-flow {
	background: var(--color-gray-light);
}
.column-flow__list {
	display: grid;
	grid-template-columns: auto 1fr;
	margin: 0;
	font-weight: var(--weight-bold);
}
.column-flow__item {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: subgrid;
	background: var(--color-white);
}
.column-flow__term {
	font-family: var(--font-en);
	line-height: 1.5;
}
.column-flow__definition {
	margin-left: 0;
}
.column-flow__definition-heading {
	display: block;
	margin-bottom: 5px;
	font-weight: inherit;
	line-height: 1.75;
}
@media (max-width: 1024px) {
	.column-flow {
		padding: 15px;
	}
	.column-flow__list {
		gap: 15px 25px;
	}
	.column-flow__item {
		padding: 15px;
	}
	.column-flow__term {
		font-size: 2.5rem;
	}
	.column-flow__definition {
		font-size: 1.3rem;
	}
	.column-flow__definition-heading {
		font-size: 2.0rem;
	}
}
@media (min-width: 1025px) {
	.column-flow {
		padding: 50px;
	}
	.column-flow__list {
		gap: 25px 50px;
	}
	.column-flow__item {
		padding: 25px;
	}
	.column-flow__term {
		font-size: 3.5rem;
	}
	.column-flow__definition-heading {
		font-size: 2.5rem;
	}
}


/* =====================================
	back-to-list
===================================== */
.back-to-list {
	display: grid;
	gap: 25px;
	justify-items: center;
}
@media (max-width: 1024px) {
	.back-to-list {
		margin: 75px 0;
	}
}
@media (min-width: 1025px) {
	.back-to-list {
		margin: 150px 0;
	}
}


/* =====================================
	cta
===================================== */
.cta {
	display: grid;
	gap: 25px;
	justify-items: center;
	margin: 50px 0;
	padding: 25px;
	background: var(--color-blue-light);
}
.cta__heading {
	margin: 0;
	font-size: 2.0rem;
	font-weight: var(--weight-bold);
}


/* =====================================
	utility
===================================== */
/* align */
.align-center {
	text-align: center;
}

/* font */
.font-en {
	font-family: var(--font-en);
}

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

/* visually-hidden */
.visually-hidden {
	position: absolute !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	white-space: nowrap !important;
	border: 0 !important;
}
