@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* =====================================
	variables
===================================== */
:root {
	--color-dark-gray: #333333;/* k80 */
	--color-gray: #949494;/* k42 AA */
	--color-light-gray: #e8e8e8;/* k9 */
	--color-x-light-gray: #f8f8f8;/* k3 */
	--color-white: #ffffff;

	--color-red: #d50505;
	--color-light-red: #d6591c;

	--color-dark-orange: #c75300;
	--color-orange: #ff9928;
	--color-light-orange: #fff4e8;

	--color-yellow: #ffd836;

	--color-green: #7aa116;

	--color-dark-blue: #3678a1;
	--color-blue: #004d9f;/* link */
	--color-light-blue: #e7ecf2;

	--color-violet: #8847ff;

	--inner-width: 1080px;
	--inner-width-large: 1346px;
}
@media (max-width: 768px) {
	:root {
		--inner-padding: 20px;
	}
}
@media (min-width: 769px) {
	:root {
		--inner-padding: 30px;
	}
}
@media (max-width: 1024px) {
	:root {
		--header-height: 56px;
	}
}
@media (min-width: 1025px) {
	:root {
		--header-height: 115px;
	}
}


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

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

/* body */
body {
	overflow-wrap: break-word;
	color: var(--color-dark-gray);
	background-color: var(--color-white);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

/* hr */
hr {
	border: 0;
	border-top: 1px var(--color-gray) solid;
}

/* p */
p {
	margin: 20px 0;
}
p:empty {
	min-height: 1.6em;
}

/* list */
ol,
ul {
	padding-left: 20px;
}
ol:not(li > ol),
ul:not(li > ul),
dl {
	margin: 20px 0;
}

/* link */
a {
	overflow-wrap: anywhere;
	color: var(--color-blue);
}
a:visited {
	color: var(--color-violet);
}
@media (hover: hover) {
	a:hover {
		text-decoration: none;
	}
}

/* link icon */
a[target="_blank"]:not(.icon-none):not(:has(img)):not([class*="button"])::after {
	margin-left: 5px;
	content: url("../files/ico_blank_dark-gray_01.svg");
	vertical-align: middle;
}
a[href$=".pdf"]:not(.icon-none):not(:has(img)):not([class*="button"])::after {
	margin-left: 5px;
	content: url("../files/ico_pdf_01.svg");
	vertical-align: middle;
}
a[href$=".zip"]:not(.icon-none):not(:has(img)):not([class*="button"])::after {
	margin-left: 5px;
	content: url("../files/ico_zip_01.svg");
	vertical-align: middle;
}

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

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


/* =====================================
	contents
===================================== */
.contents__action {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	margin: 50px 0;
}


/* =====================================
	row
===================================== */
@media (min-width: 769px) {
	.row {
		display: grid;
		gap: 20px;
		margin: 20px 0;
	}
	.row--1-1 {
		grid-template-columns: 1fr 1fr;
	}
	.row--1-2 {
		grid-template-columns: 1fr 2fr;
	}
	.row--2-1 {
		grid-template-columns: 2fr 1fr;
	}
	.row--1-1-1 {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.row__col > :first-child {
		margin-top: 0;
	}
	.row__col > :last-child {
		margin-bottom: 0;
	}
}


/* =====================================
	box
===================================== */
/* box */
.box {
	margin: 20px 0;
	padding: 19px;
	border: 1px solid transparent;
	border-radius: 10px;
	background-color: var(--color-light-blue);
}
.box--caution {
	border-color: var(--color-dark-orange);
	background-color: var(--color-light-orange);
}
.box--notice {
	background-color: var(--color-x-light-gray);
}
.box > :first-child {
	margin-top: 0;
}
.box > :last-child {
	margin-bottom: 0;
}

/* box-stroke */
.box-stroke {
	margin: 20px 0;
	padding: 17px;
	border: 3px solid var(--color-light-gray);
	border-radius: 10px;
	background-color: var(--color-white);
}
.box-stroke--caution {
	border-color: var(--color-light-red);
}
.box-stroke > :first-child {
	margin-top: 0;
}
.box-stroke > :last-child {
	margin-bottom: 0;
}


/* =====================================
	table
===================================== */
/* table-scroll */
@media (max-width: 768px) {
	.table-scroll {
		overflow-x: auto;
		margin: 20px 0;
	}
	.table-scroll > table {
		width: 768px;
		margin: 0;
	}
}

/* table */
.table {
	overflow: hidden;
	width: 100%;
	margin: 20px 0;
	border-spacing: 0;
	border: 1px solid var(--color-gray);
	border-radius: 10px;
}
.table > :where(thead, tbody, tfoot) > tr > :where(td, th) {
	padding: 10px;
	text-align: left;
}
.table > :where(thead, tbody, tfoot) > tr > :not(:last-child) {
	border-right: 1px solid var(--color-gray);
}
.table > :where(thead, tbody, tfoot) > :not(:last-of-type) > :where(td, th) {
	border-bottom: 1px solid var(--color-gray);
}
.table > :where(thead, tbody, tfoot) > tr > td {
	background-color: var(--color-white);
}
.table > :where(tbody, tfoot) > tr > th {
	background-color: var(--color-x-light-gray);
}
.table > thead > tr > th {
	color: var(--color-white);
	border-right-color: var(--color-white) !important;
	background-color: var(--color-dark-blue);
}
.table > :where(thead, tbody, tfoot) > tr > :where(td, th) > :first-child {
	margin-top: 0;
}
.table > :where(thead, tbody, tfoot) > tr > :where(td, th) > :last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.table--responsive,
	.table--responsive > :where(thead, tbody, tfoot),
	.table--responsive > :where(thead, tbody, tfoot) > tr,
	.table--responsive > :where(thead, tbody, tfoot) > tr > :where(td, th) {
		display: block;
		width: 100%;
	}
	.table--responsive > :where(thead, tbody, tfoot) > tr > :where(td, th) {
		border-right: none !important;
	}
	.table--responsive > :where(thead, tbody, tfoot) > tr > :not(:last-child) {
		border-bottom: 1px solid var(--color-gray);
	}
}


/* =====================================
	list
===================================== */
/* list-arrow */
.list-arrow {
	display: grid;
	gap: 10px;
	padding-left: 0;
	list-style: none;
}
.list-arrow > li {
	position: relative;
	padding-left: 25px;
}
.list-arrow > li::before {
	position: absolute;
	top: calc(0.8em - 8px);
	left: 0;
	width: 16px;
	height: 16px;
	content: "";
	background: no-repeat url("../files/ico_circle-arrow_orange_01.svg");
}
.list-arrow > li > a {
	text-decoration: none;
}
.list-arrow > li > :where(ul, ol) {
	margin-top: 10px;
}
@media (hover: hover) {
	.list-arrow > li > a:hover {
		text-decoration: underline;
	}
}

/* list-anchor */
.list-anchor {
	display: flex;
	gap: 10px 20px;
	padding-left: 0;
	list-style: none;
}
.list-anchor:not(.list-anchor--horizontal) {
	flex-direction: column;
}
.list-anchor--horizontal {
	flex-wrap: wrap;
}
.list-anchor > li {
	position: relative;
	padding-left: 25px;
}
.list-anchor > li::before {
	position: absolute;
	top: calc(0.8em - 8px);
	left: 0;
	width: 16px;
	height: 16px;
	content: "";
	transform: rotate(90deg);
	background: no-repeat url("../files/ico_circle-arrow_orange_01.svg");
}
.list-anchor > li > a {
	text-decoration: none;
	color: var(--color-blue) !important;
}
@media (hover: hover) {
	.list-anchor > li > a:hover {
		text-decoration: underline;
	}
}

/* list-disc */
.list-disc {
	display: grid;
	gap: 5px;
	padding-left: 0;
	list-style: none;
}
.list-disc > li {
	padding-left: 20px;
	background: no-repeat url("../files/ico_disc_orange_01.svg") 5px calc(0.8em - 2.5px);
}
.list-disc > li > :where(ul, ol) {
	margin-top: 5px;
}

/* list-asterisk */
.list-asterisk {
	display: grid;
	gap: 5px;
	padding-left: 1.25em;
	list-style: "※ ";
}
.list-asterisk > li > :where(ul, ol) {
	margin-top: 5px;
}


/* =====================================
	heading
===================================== */
/* heading-2 */
.heading-2 {
	position: relative;
	margin: 80px 0 40px 0;
}
.heading-2::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 235px;
	height: 3px;
	content: "";
	background-color: var(--color-orange);
}
.heading-2 + * {
	margin-top: 0 !important;
}
@media (max-width: 768px) {
	.heading-2 {
		padding-bottom: 20px;
		font-size: 2.2rem;
	}
}
@media (min-width: 769px) {
	.heading-2 {
		padding-bottom: 28px;
		font-size: 3.0rem;
	}
}

/* heading-3 */
.heading-3 {
	margin: 60px 0 30px 0;
	padding: 20px;
	border-radius: 5px;
	background-color: var(--color-light-orange);
	font-size: 1.8rem;
}
.heading-3 + * {
	margin-top: 0 !important;
}

/* heading-4 */
.heading-4 {
	margin: 40px 0 20px 0;
	padding-left: 18px;
	border-left: 2px solid var(--color-orange);
	font-size: 1.6rem;
}
.heading-4 + * {
	margin-top: 0 !important;
}


/* =====================================
	button
===================================== */
/* button */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(250px, 100%);
	min-height: 62px;
	padding: 0 44px;
	transition: background-color 0.3s, border-color 0.3s;
	text-decoration: none;
	color: var(--color-dark-gray) !important;
	border: 3px solid var(--color-orange);
	border-radius: 31px;
	background: var(--color-white) no-repeat url("../files/ico_circle-arrow_gray_01.svg") right 18px center;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
	font-size: 1.4rem;
	font-weight: bold;
}
@media (hover: hover) {
	.button:hover {
		background-color: var(--color-orange);
	}
}


/* =====================================
	category
===================================== */
.category {
	display: inline-flex;
	justify-content: center;
	min-width: 100px;
	padding: 3px 10px;
	color: var(--color-dark-gray);
	border-radius: 3px;
	background-color: var(--color-light-gray);
	font-size: 1.1rem;
	font-weight: bold;
}


/* =====================================
	image
===================================== */
.mt-image-left,
.image-left {
	float: left;
	max-width: calc(50% - 10px);
	margin: 0 20px 20px 0;
}
.mt-image-center,
.image-center {
	display: block;
	margin: 0 auto 20px;
	text-align: center;
}
.mt-image-right,
.image-right {
	float: right;
	max-width: calc(50% - 10px);
	margin: 0 0 20px 20px;
}


/* =====================================
	utility
===================================== */
/* color */
.color-caution {
	color: var(--color-red);
}
.color-notice {
	color: var(--color-dark-orange);
}

/* mark */
.mark-caution {
	padding: 0 5px;
	background-color: var(--color-yellow);
}

/* font */
.font-x-large {
	font-size: 1.8rem;
}
.font-large {
	font-size: 1.6rem;
}
.font-medium {
	font-size: 1.4rem;
}
.font-small {
	font-size: 1.2rem;
}

/* margin */
.margin-top-none {
	margin-top: 0 !important;
}

.margin-bottom-large {
	margin-bottom: 40px !important;
}
.margin-bottom-medium {
	margin-bottom: 20px !important;
}
.margin-bottom-none {
	margin-bottom: 0 !important;
}
:where(.margin-bottom-large, .margin-bottom-medium, .margin-bottom-none) + * {
	margin-top: 0 !important;
}

/* clear */
.clear {
	clear: both;
}

/* clearfix */
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

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