@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
	display: block;
}

ul,
li,
ol,
dl {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	display: inline-block;
	margin: 0;
	padding: 0;
	color: var(--default-text-color);
	text-decoration: none;
	transition: all 0.25s ease;

	&:hover {
		text-decoration: none;
		opacity: 0.8;
	}

}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 0.1rem dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:after,
*:before {
	-webkit-appearance: none;
	word-break: break-all;
	box-sizing: border-box;
}

video {
	filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media print,
screen and (min-width: 1080.01px) {
	.tab-off {
		display: none !important;
	}
}

/* PC(768px以上)のみ非表示 */
@media print,
screen and (min-width: 767.01px) {
	.pc-off {
		display: none !important;
	}
}

/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
	.sp-off {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--default-text-color);
	}
}

@media screen and (min-width: 767.01px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

html {
	font-size: 62.5%;
	letter-spacing: 0;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;
	/* scrollbar-gutter: stable; */


	@media screen and (min-width: 1080.01px) and (max-width: 1918.99px) {
		font-size: calc(10 / 1920 * 100 * 1vw);
	}

	/* あまりにも文字サイズが小さくなった場合 */
	@media screen and (min-width: 767.01px) and (max-width: 1080px) {
		font-size: calc(12 / 1920 * 100 * 1vw);
	}

	/* スマホ用（デザインサイズが375の場合） */
	@media screen and (max-width: 767px) {
		font-size: calc(10 / 375 * 100 * 1vw);
	}
}

body {
	font-size: 1.6rem;
	line-height: 1;
	overflow: auto;
	font-family: 'Zen Kaku Gothic New';

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		pointer-events: none;
	}
}


/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1920 * 100 * 14px);
	}

	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
}

@page {
	size: A4;
	margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
	--sb-track-color: #ddd;
	--sb-thumb-color: #000;
	--sb-size: 0;
	/* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
	overflow-x: hidden;
}

.deve body::-webkit-scrollbar {
	width: var(--sb-size);
}

.deve body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 1px;
}

.deve body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* common-parts */
/* --------------------------------------------------------------- */

.common-en-title {
	font-family: 'Outfit';
	font-style: normal;
	font-weight: 600;
	font-size: 2.8rem;
	letter-spacing: 0.08em;
	color: #1863C5;

	@media screen and (max-width: 767px) {
		font-size: 2rem;
	}
}

.common-jp-title {
	font-style: normal;
	font-weight: 700;
	font-size: 4.8rem;
	line-height: 164%;
	letter-spacing: 0.2em;
	font-feature-settings: 'palt' on;
	color: #242328;

	@media screen and (max-width: 767px) {
		font-size: 3.6rem;
		line-height: normal;
	}
}

.common-blue-btn {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.6rem;
	letter-spacing: 0.08em;
	color: #FFFFFF;
	width: 27.1rem;
	height: 5.5rem;
	background: #1863C5;
	border-radius: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	transition: background-color 0.3s ease, transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;

	@media screen and (max-width: 767px) {
		margin: 0 auto;
        width: 27.1rem;
        height: 5.5rem;
        font-size: 1.6rem;
	}

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: -100%;
		width: 50%;
		height: 100%;
		background: linear-gradient(to right,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0.3) 50%,
				rgba(255, 255, 255, 0) 100%);
		transform: skewX(-25deg);
		transition: left 0.6s ease;
		z-index: 1;
	}

	&::after {
		content: "";
		position: absolute;
		background: url(../../common/img/white-arrow.svg) no-repeat;
		background-size: 100%;
		width: 2rem;
		height: 2rem;
		top: 0;
		bottom: 0;
		right: 3rem;
		margin: auto;
		transition: all 0.25s ease;
		z-index: 2;
	}

	&:hover {
		transform: translateY(-3px);
		box-shadow: 0 10px 20px rgba(24, 99, 197, 0.35);

		&::before {
			left: 150%;
		}

		&::after {
			right: 2rem;
		}
	}
}

.common-list.article {
	& li a {
		display: flex;
		padding-bottom: 3.9rem;
		border-bottom: 1px solid #ACACAC;
		margin-bottom: 3.4rem;

		&:hover {
			border-bottom: 1px solid #1863C5;
		}

		@media screen and (max-width: 767px) {
			gap: 1rem;
			padding-bottom: 1.5rem;
			border-bottom: 1px solid #ACACAC;
			margin-bottom: 1.5rem;
			flex-direction: column;
		}

		.date-cate-container {
			display: flex;
			align-items: center;
		}

		.list-date {
			font-family: 'Outfit';
			font-style: normal;
			font-weight: 500;
			font-size: 1.6rem;
			line-height: 2.6rem;
			letter-spacing: 0.05em;
			color: #0367B3;
			padding-right: 2rem;
		}

		.list-category {

			& span {
				padding: 0.5rem 1rem;
				font-family: 'Noto Sans JP';
				font-style: normal;
				font-weight: 500;
				font-size: 1.4rem;
				line-height: 1.4rem;
				letter-spacing: 0.08em;
				color: #FFFFFF;
				border-radius: 0.3rem;
				margin-right: 3rem;

				@media screen and (max-width: 767px) {
					padding: 0.4rem 1.1rem;
					font-size: 1.4rem;
					line-height: 1.4rem;
				}
			}

			& .categori-1 {
				background: #1863C5;
			}

			& .categori-2 {
				background: #54A770;
			}
		}

		.list-title {
			font-family: 'Noto Sans JP';
			font-style: normal;
			font-weight: 500;
			font-size: 1.8rem;
			line-height: 1.8rem;
			letter-spacing: 0.08em;
			color: #242328;
			max-width: 79.5rem;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;

			@media screen and (max-width: 767px) {
				display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                height: 3.8rem;
                white-space: break-spaces;
                font-size: 1.4rem;
                line-height: 1.8rem;
			}
		}
	}
}

.top-page-banner-container {
	display: flex;
	justify-content: flex-end;
	margin-right: 7rem;
	margin-bottom: 7rem;
	transition: opacity 3s var(--ease-out-expo), transform 3s var(--ease-out-expo) !important;


	.banner-page {
		width: 131.2rem;
		height: 48.1rem;
		border-radius: 2.4rem;

		& img {
			width: 100%;
			height: 100%;
			object-fit: contain;
			border-radius: 2.4rem;

			@media screen and (max-width: 767px) {
				object-fit: cover;
				border-radius: 2.4rem 0rem 0rem 2.4rem;
			}
		}

		@media screen and (max-width: 767px) {
			width: 34.9rem;
            height: 23.1rem;
		}
	}

	@media screen and (max-width: 767px) {
		margin-right: -0.5rem;
	}
}

.common-table {
	.tb-row {
		padding-bottom: 3.6rem;
		border-bottom: 1px solid #ACACAC;
		margin-bottom: 3rem;
		display: flex;

		.tb-title {
			width: 19.4rem;
			font-family: 'Noto Sans JP';
			font-style: normal;
			font-weight: 700;
			font-size: 2rem;
			line-height: 2rem;
			letter-spacing: 0.1em;
			color: #1863C5;

			@media screen and (max-width: 767px) {
				font-size: 1.8rem;
				width: 100%;
			}
		}

		.tb-contents {
			max-width: 100.6rem;
			font-family: 'Noto Sans JP';
			font-style: normal;
			font-weight: 400;
			font-size: 1.8rem;
			line-height: 2.4rem;
			letter-spacing: 0.1em;
			color: #000000;

			@media screen and (max-width: 767px) {
				font-size: 1.6rem;
				width: 100%;
			}
		}

		@media screen and (max-width: 767px) {
			flex-direction: column;
			gap: 1rem;
			padding-bottom: 1.5rem;
			margin-bottom: 1.5rem;
		}
	}
}

.page-common-section-title {
	font-family: 'Zen Kaku Gothic New';
	font-style: normal;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 129%;
	text-align: center;
	letter-spacing: 0.2em;
	color: #242328;
	margin-bottom: 5rem;

	@media screen and (max-width: 767px) {
		font-size: 2.4rem;
		line-height: 3rem;
		margin-bottom: 2.5rem;
	}
}

/* --------------------------------------------------------------- */
/* download */
/* --------------------------------------------------------------- */

.top-download-banner {
	width: 100%;
	background: #1863C5;
	border-radius: 0 0 6rem 6rem;
	padding: 11rem 5rem 11rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: opacity 3s var(--ease-out-expo), transform 3s var(--ease-out-expo);

	@media screen and (max-width: 767px) {
		padding: 4rem 2rem 6rem;
		border-radius: 0 0 3rem 3rem;
	}


	.download-top-title {
		font-style: normal;
		font-weight: 700;
		font-size: 5rem;
		line-height: 164%;
		font-feature-settings: 'palt' on;
		color: #FFFFFF;
		margin-bottom: 5rem;
		text-align: center;

		@media screen and (max-width: 767px) {
			font-size: 2.6rem;
			margin-bottom: 2rem;
		}
	}

	.download-top-txt {
		font-family: 'Noto Sans JP';
		font-style: normal;
		font-weight: 400;
		font-size: 1.8rem;
		line-height: 2.4rem;
		letter-spacing: 0.1em;
		color: #FFFFFF;
		max-width: 100.6rem;

		@media screen and (max-width: 767px) {
			font-size: 1.4rem;
			line-height: 2rem;
		}
	}
}

.flex-center {
	display: flex;
	justify-content: center;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
	overflow: clip;
}

.menu-active {
	overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 999;
	padding: 1.5rem 4.3rem 1.4rem 4.2rem;
	display: flex;
	justify-content: space-between;
	background-color: rgba(255, 255, 255, 1);
	transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;

	@media screen and (max-width: 767px) {
		padding: 1.5rem;
	}
}

html.scroll-now #header {
	padding: 0.8rem 4.3rem 0.7rem 4.2rem;
	background-color: rgb(255 255 255 / 13%);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);

	@media screen and (max-width: 767px) {
		padding: 1.5rem;

	}
}

.logomark {
	width: 52.4rem;

	@media screen and (max-width: 767px) {
		width: 24.4rem;
	}
}

.list-top {
	display: flex;
	gap: 2.7rem;
	justify-content: flex-end;
	margin-bottom: 0.7rem;

	& a {
		font-style: normal;
		font-weight: 500;
		font-size: 1.3rem;
		line-height: 164%;
		text-align: right;
		letter-spacing: 0.08em;
		color: #242328;
		position: relative;
	}

	.download-btn {
		padding-right: 2.3rem;
		position: relative;

		&::after {
			content: "";
			position: absolute;
			background: url(../img/download-icon.svg) no-repeat;
			width: 1.8rem;
			height: 1.8rem;
			background-size: 100%;
			top: 0;
			bottom: 0;
			right: 0.2rem;
		}
	}

	.go-to-btn {
		padding-right: 2.3rem;
		position: relative;

		&::after {
			content: "";
			position: absolute;
			background: url(../img/go-to-icon.svg) no-repeat;
			width: 1.8rem;
			height: 1.8rem;
			background-size: 100%;
			top: 0;
			bottom: 0;
			right: 0.2rem;
		}
	}
}

.main-list-container {
	display: flex;
	gap: 5rem;
	align-items: center;

	.main-list {
		display: flex;
		gap: 4.4rem;

		& a {
			font-style: normal;
			font-weight: 500;
			font-size: 1.6rem;
			line-height: 164%;
			text-align: center;
			letter-spacing: 0.08em;
			color: #242328;
			position: relative;

			&::after {
				content: "";
				position: absolute;
				left: 0;
				bottom: -0.8rem;
				width: 0;
				height: 0.7rem;
				background-image: radial-gradient(circle, #1f66d1 0.23rem, transparent 2px);
				background-size: 0.7rem 0.7rem;
				background-repeat: repeat-x;
				transition: width 0.3s ease;
			}

			&:hover {
				text-decoration: dotted;
				text-decoration-color: #1863C5;
				color: #1863C5;

				@media screen and (max-width: 767px) {
					text-decoration: none;
					color: #242328;
				}
			}

			&:hover::after {
				width: 100%;

				@media screen and (max-width: 767px) {
					width: 0%;
				}
			}
		}
	}

	.contact-red-btn {
		font-family: 'Noto Sans JP';
		font-style: normal;
		font-weight: 600;
		font-size: 1.6rem;
		line-height: 164%;
		letter-spacing: 0.08em;
		color: #FFFFFF;

		display: flex;
		justify-content: center;
		align-items: center;
		width: 15.5rem;
		height: 4.2rem;
		background: #EA4921;
		border-radius: 3.6rem;
		border: 1px solid transparent;
		transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;

		&:hover {
			opacity: 1;
			background: #ffffff;
			color: #EA4921;
			border: 1px solid #EA4921;
			transform: translateY(-2px);
			box-shadow: 0 6px 15px rgba(234, 73, 33, 0.25);

			@media screen and (max-width: 767px) {
				color: #FFFFFF;
				background: #EA4921;
			}
		}
	}
}

/* メニューボタン */
.menu-btn {
	position: absolute;
	display: none;
	top: 0;
	right: 0;
	z-index: 9999;

	@media screen and (max-width: 767px) {
		display: block;
	}

	&:after {
		/* content: "MENU"; */
		content: "";
		position: absolute;
		left: 50%;
		bottom: 1.1rem;
		color: #1863C5;
		font-weight: 500;
		letter-spacing: 0.05em;
		font-size: 1.1rem;
		transform: translateX(-50%);
		white-space: nowrap;
	}

	& a {
		position: relative;
		width: 10rem;
		height: 10rem;
		vertical-align: top;
		transition: ease 0.25s all;

		@media screen and (max-width: 767px) {
			width: 6.2rem;
			height: 6.2rem;
		}

		& span {
			position: absolute;
			left: 50%;
			top: 50%;
			display: block;
			margin-left: -1.8rem;
			width: 3.4rem;
			height: 0.2rem;
			background: #1863C5;
			border-radius: 0.3rem;

			@media screen and (max-width: 767px) {
				margin-left: -1.4rem;
				width: 2.8rem;
				height: 0.2rem;
			}

			&:before,
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				background: #1863C5;
				border-radius: 0.3rem;
				transition: ease 0.25s all;
			}

			&:before {
				margin-top: -1.1rem;
			}

			@media screen and (max-width: 767px) {
				&:before {
					margin-top: -0.7rem;
				}
			}

			&:after {
				margin-top: 1.1rem;
			}

			@media screen and (max-width: 767px) {
				&:after {
					margin-top: 0.7rem;
				}
			}
		}
	}
}

@media screen and (max-width: 767px) {
	.nav {
		position: fixed;
		left: 100%;
		z-index: 999;
		width: 100%;
		pointer-events: none;
	}
}

.menu-active {
	#header {
		.menu-btn {

			/* position: fixed; */
			& a {
				background-color: #fff;

				& span {
					background-color: transparent;

					&:before {
						margin-top: 0;
						transform: rotate(45deg);
						-webkit-transform: rotate(45deg);
					}

					&:after {
						margin-top: 0;
						transform: rotate(-45deg);
						-webkit-transform: rotate(-45deg);
					}
				}
			}
		}

		@media screen and (max-width: 767px) {
			.nav {
				left: 0;
				pointer-events: auto;
				display: flex;
				flex-direction: column;
				align-items: center;
				background: white;
				top: 6rem;
				padding: 5rem 0 12rem;
				height: 100vh;
				overflow: scroll;

				.list-top {
					justify-content: center;
					margin-bottom: 1rem;
					flex-direction: column;
					align-items: center;
					gap: 0.5rem;
				}

				.main-list-container {
					gap: 2rem;
					align-items: center;
					flex-direction: column;

					.main-list {
						gap: 2rem;
						flex-direction: column;
					}
				}

				@media screen and (max-width: 767px) {
					top: 4rem;
					gap: 5rem;
				}
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
	padding: 2.4rem 0;

	@media screen and (max-width: 767px) {
		display: none;
	}

	& ol {
		display: flex;
		flex-wrap: wrap;
	}

	& li {
		position: relative;
		margin-right: 3.7rem;
		font-weight: 500;
		font-size: 1.2rem;
		letter-spacing: 0.1em;

		&:last-child {
			margin-right: 0;

			&:after {
				display: none;
			}
		}

		&:after {
			content: "";
			position: absolute;
			right: -2.7rem;
			top: 50%;
			z-index: 0;
			display: block;
			width: 1.4rem;
			height: 1px;
			background: #bcbcbc;

			&:last-child:after {
				display: none;
			}
		}
	}

	& a {
		text-decoration: underline;
		color: #7aa3c6;

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				text-decoration: none;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
	padding: 0 0 1.4rem;
	background-color: #242328;

	@media screen and (max-width: 767px) {
		background-color: #000;
    }

	.contact-section {
		background-color: #F0F0F0;
		padding-top: 9.3rem;
		padding-bottom: 9.4rem;
		position: relative;
		margin-bottom: 7.6rem;

		@media screen and (max-width: 767px) {
			.banner-sp-container {
				width: 100%;
				height: 20.9rem;
                z-index: 3;
                position: relative;

				& img {
					width: 100%;
					height: 100%;
				}
			}
    	}

		&::after {
			content: "";
			position: absolute;
			top: 0;
			bottom: 0;
			right: 0;
			background: url(../../img/top/contact-img01.jpg) no-repeat;
			background-size: 100% 100%;
			width: 85.7rem;

			@media screen and (max-width: 1080px) {
				width: 70rem;
			}

			@media screen and (max-width: 767px) {
				width: 75rem;
				left: -2rem;
				background: #F0F0F0;
			}
		}

		.left-side-contents {
			display: flex;
			flex-direction: column;
			gap: 1.7rem;

			@media screen and (max-width: 767px) {
				gap: 1.2rem;
				margin: 0 0 2.9rem;
            	width: 100%;
    		}
		}

		.box-container {
			max-width: 66.5rem;
			width: 100%;
			padding: 3.6rem 0 3.7rem;
			border-radius: 1rem;
			position: relative;

			.box-container-title {
				font-style: normal;
				font-weight: 700;
				font-size: 2.4rem;
				line-height: 164%;
				text-align: center;
				letter-spacing: 0.1em;
				padding-bottom: 1rem;

				@media screen and (max-width: 767px) {
					font-size: 1.6rem;
					line-height: 130%;
					text-align: left;
					padding-bottom: 0.8rem;
				}
			}

			.box-container-text {
				font-family: 'Zen Kaku Gothic New';
				font-style: normal;
				font-weight: 700;
				font-size: 1.8rem;
				line-height: 2.6rem;
				text-align: center;
				letter-spacing: 0.1em;

				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
					line-height: 1.8rem;
					text-align: left;
				}
			}

			&::after {
				content: "";
				position: absolute;
				width: 3rem;
				height: 3rem;
				top: 0;
				bottom: 0;
				right: 3rem;
				margin: auto;

				@media screen and (max-width: 767px) {
					width: 2rem;
					height: 2rem;
					right: 2rem;
				}
			}

			@media screen and (max-width: 767px) {
				padding: 2.2rem 2.1rem;
			}
		}

		.online-contents-container {
			background-color: #EA4921;
			border: 1px solid transparent;
			transition: all 0.25s ease;

			.box-container-title {
				color: #FFFFFF;
			}

			.box-container-text {
				color: #FFFFFF;
			}

			&::after {
				background: url(../../common/img/go-to-icon.svg) no-repeat;
				background-size: 100%;
				filter: brightness(9);
			}

			&:hover {
				background-color: #ffffff;

				.box-container-title {
					color: #EA4921;
				}

				.box-container-text {
					color: #EA4921;
				}

				&::after {
					filter: brightness(2) invert(1);
				}
			}
		}

		.contact-contents-container {
			background-color: #fff;
			border: 1px solid #EA4921;
			transition: all 0.25s ease;


			.box-container-title {
				color: #EA4921;
			}

			.box-container-text {
				color: #EA4921;
			}

			&::after {
				background: url(../../common/img/red-arrow.svg) no-repeat;
				background-size: 100%;
			}

			&:hover {
				background-color: #EA4921;

				.box-container-title {
					color: #ffffff;
				}

				.box-container-text {
					color: #ffffff;
				}

				&::after {
					filter: brightness(0) invert(1);
				}
			}
		}

		@media screen and (max-width: 767px) {
			padding: 4rem 0 6.4rem;
			margin-bottom: 4rem;
		}
	}

	.footer-container-bot {
		display: flex;
		justify-content: space-between;
		margin-bottom: 8rem;
		align-items: center;

		.left-container-footer {
			.footer-logo {
				width: 37.2rem;
				padding-bottom: 2rem;

				@media screen and (max-width: 767px) {
					width: 30.3rem;
					padding-bottom: 1.4rem;
				}
			}

			.left-text-footer {
				font-family: 'Noto Sans JP';
				font-style: normal;
				font-weight: 700;
				font-size: 1.6rem;
				line-height: 2.6rem;
				letter-spacing: 0.08em;
				color: #FFFFFF;

				& a {
					color: #ffffff;
				}


				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
                    line-height: 2rem;
                    font-weight: 500;
				}
			}
		}

		.right-container-footer {
			display: flex;
			gap: 11rem;
			margin-right: 5.6rem;

			@media screen and (max-width: 767px) {
				flex-direction: column;
				gap: 0;
            	margin-right: 0;
				margin-top: 4.9rem;
				width: 100%;
    		}

			.link-footer-column {
				font-family: 'Noto Sans JP';
				font-style: normal;
				font-weight: 700;
				font-size: 1.6rem;
				line-height: 4rem;
				letter-spacing: 0.08em;
				font-feature-settings: 'palt' on;

				@media screen and (max-width: 767px) {
					font-size: 1.6rem;
					line-height: 1.6rem;
    			}

				& a {
					color: #FFFFFF;
					display: block;
					
					@media screen and (max-width: 767px) {
						padding-bottom: 1.1rem;
						width: 100%;
						border-bottom: 1px solid #fff;
						margin-bottom: 3rem;
						position: relative;

						&::before {
							content: "";
                            position: absolute;
                            background: url(../img/arrow-footer.svg) no-repeat;
                            background-size: 100%;
                            width: 0.6rem;
                            height: 1.1rem;
                            right: 1rem;
                            top: -1rem;
                            bottom: 0;
                            margin: auto;
						}
    				}
				}

				.go-to-link-footer {
					position: relative;

					&::after {
						position: absolute;
						content: "";
						background: url(../../common/img/go-to-icon.svg) no-repeat;
						background-size: 100%;
						width: 1.8rem;
						height: 1.8rem;
						top: 0;
						bottom: 0;
						right: 3rem;
						margin: auto;
						filter: brightness(9999);

						@media screen and (max-width: 767px) {
							right: 19.5rem;
							bottom: 1rem;
    					}
					}
				}

				.download-link-footer {
					position: relative;

					&::after {
						position: absolute;
						content: "";
						background: url(../../common/img/download-icon.svg) no-repeat;
						background-size: 100%;
						width: 1.8rem;
						height: 1.8rem;
						top: 0;
						bottom: 0;
						right: -2.5rem;
						margin: auto;
						filter: brightness(999);

						@media screen and (max-width: 767px) {
							width: 2rem;
                        	height: 2rem;
							right: 13.7rem;
							top: -1rem;
    					}
					}
				}
			}
		}

		@media screen and (max-width: 767px) {
			margin-bottom: 5rem;
			flex-direction: column;
			align-items: flex-start;
		}
	}

	& small {
		display: block;
		font-family: 'Outfit';
		font-style: normal;
		font-weight: 400;
		font-size: 1.2rem;
		line-height: 164%;
		letter-spacing: 0.08em;
		color: #FFFFFF;
		text-align: center;
	}
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 3rem);
	}
}

.w960 {
	max-width: 96rem;
}

.w1080 {
	max-width: 108rem;
}

.w1200 {
	max-width: 120rem;
}

.w1520 {
	max-width: 152rem;
}

.w1440 {
	max-width: 144rem;
}

.w1800 {
	max-width: 180rem;
}

.w1920 {
	max-width: 192rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {

	&.search {

		margin: 4rem 0;

		.area-list {

			.list-label {}

			.list-value {
				width: calc(100% - 21.7rem);

				@media screen and (max-width: 767px) {
					width: 100%;
				}

				.value-list {
					display: flex;
					flex-wrap: wrap;
					font-weight: 400;
					line-height: 1.4;
					letter-spacing: 0.02em;

					& li {
						position: relative;
					}

					&.parent {
						flex-direction: column;

						>li {
							&:last-child {
								.child {
									margin-bottom: 0;
								}
							}
						}
					}

					&.free {
						gap: 3rem 4rem;

						@media screen and (max-width: 767px) {
							gap: 1rem 2rem;
						}

					}

					.child {
						margin: 3rem 0 4rem 3rem;
						gap: 1.5rem 3rem;

						@media screen and (max-width: 767px) {
							gap: 1rem 2rem;
							margin: 1.5rem 0 2.5rem 2rem;
						}


						& input {
							&[type="checkbox"] {
								+label {
									padding-left: 3rem;
									font-size: 1.5rem;

									@media screen and (max-width: 767px) {
										padding-left: 2rem;
										font-size: 1.4rem;
									}

									&:after {
										top: 0.1rem;
										width: 2rem;
										height: 2rem;
									}

									@media screen and (max-width: 767px) {
										&:after {
											top: 0.3rem;
											width: 1.4rem;
											height: 1.4rem;
										}
									}
								}

								&:checked {
									+label {
										&:after {
											background-size: 1.4rem auto;
										}

										@media screen and (max-width: 767px) {
											&:after {
												background-size: 1rem auto;
											}
										}
									}
								}
							}
						}

					}
				}

				.value-select {
					position: relative;
					display: inline-block;
					background: #FFFFFF;
					border: 1px solid #BCBCBC;
					border-radius: 0.4rem;
					overflow: hidden;

					&:after {
						content: '';
						display: block;
						position: absolute;
						top: calc(50% - 0.2rem);
						right: 1.5rem;
						margin-top: -0.4rem;
						width: 0.8rem;
						height: 0.8rem;
						border-top: 0.2rem solid #333;
						border-right: 0.2rem solid #333;
						box-sizing: border-box;
						transform: rotate(135deg);
						-webkit-transform: rotate(135deg);
					}

					& select {
						padding: 0 3rem 0 1.5rem;
						height: 4.3rem;
						border: 0;
						cursor: pointer;
					}
				}
			}
		}

		.btn-set {}

		& input {

			&[type="text"] {
				display: flex;
				align-items: center;
				padding: 0 1.5rem;
				width: 100%;
				height: 4.4rem;
				font-size: 1.6rem;
				font-weight: 400;
				letter-spacing: 0.02em;
				border: 1px solid #BCBCBC;
				border-radius: 0.4rem;

				@media screen and (max-width: 767px) {
					font-size: 1.2rem;
					height: 4rem;
				}
			}

			&[type="checkbox"] {
				position: absolute;

				+label {
					position: relative;
					display: inline-block;
					padding-left: 4.2rem;
					cursor: pointer;

					@media screen and (max-width: 767px) {
						padding-left: 2.8rem;
						font-size: 1.5rem;
					}

					&:after {
						content: "";
						position: absolute;
						left: 0;
						top: -0.3rem;
						z-index: 1;
						display: block;
						width: 2.8rem;
						height: 2.8rem;
						background: #FFFFFF;
						/* box-shadow: 0 0 0.5rem 0.1rem rgba(150, 150, 150, 0.13); */
						border: 1px solid #000;
						border-radius: 0.5rem;
						overflow: hidden;
					}

					@media screen and (max-width: 767px) {
						&:after {
							top: 0.2rem;
							width: 1.8rem;
							height: 1.8rem;
							border-radius: 0.3rem;
							box-shadow: 0 0 0.3rem 0.1rem rgba(150, 150, 150, 0.5);
						}
					}
				}

				&:checked {
					+label {
						&:after {
							/* background: #000 url(../img/parts/icon_check01_white.svg) no-repeat center center / 2.1rem auto; */
							background: #000;
						}

						@media screen and (max-width: 767px) {
							&:after {
								background-size: 1.2rem auto;
							}
						}
					}
				}
			}
		}
	}
}

/* ------------------------------------------- */
/* main */
/* ------------------------------------------- */

main {
	margin-top: 16.2rem;

	@media screen and (max-width: 767px) {
		margin-top: 8rem;
	}
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
	&.type01 {
		margin-bottom: 7.6rem;

		.title-main {
			font-family: 'Outfit';
			font-style: normal;
			font-weight: 600;
			font-size: 2.8rem;
			line-height: 164%;
			letter-spacing: 0.08em;
			font-feature-settings: 'palt' on;
			color: #1863C5;

			@media screen and (max-width: 767px) {
				font-size: 2rem;
				line-height: normal;
				margin-bottom: 0;
			}
		}

		.title-sub {
			font-style: normal;
			font-weight: 700;
			font-size: 5rem;
			line-height: 5rem;
			letter-spacing: 0.2em;
			color: #242328;

			@media screen and (max-width: 767px) {
				font-size: 3.6rem;
				line-height: normal;
			}
		}

		@media screen and (max-width: 767px) {
			margin-bottom: 4rem;
		}
	}
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
	&.archive-category {
		display: flex;
		gap: 1.4rem;
		margin-bottom: 7rem;

		@media screen and (max-width: 767px) {
			flex-wrap: wrap;
			margin-bottom: 4rem;
		}

		& li a {
			font-family: 'Noto Sans JP';
			font-style: normal;
			font-weight: 500;
			font-size: 1.8rem;
			line-height: 1.4rem;
			text-align: center;
			letter-spacing: 0.08em;
			color: #FFFFFF;
			flex: none;
			order: 0;
			flex-grow: 0;
			padding: 0.5rem 1rem;
			border-radius: 0.3rem;

			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
			}
		}

		& li .categori-0 {
			background-color: #1863C5;
		}

		& li .categori-1 {
			background-color: #1863C5;
		}

		& li .categori-2 {
			background-color: #54A770;
		}
	}
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {}

/* table-scroll */
@media screen and (max-width: 767px) {
	.table-scroll {
		position: relative;
		padding-bottom: 2rem;
		overflow-x: scroll;

		&:after {
			content: "←";
			position: absolute;
			right: 0;
			bottom: 0;
			z-index: 1;
			margin-left: -1.5rem;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			width: 3rem;
			height: 3rem;
			border-radius: 1.5rem;
			border: 0.1rem solid #000;
			animation: arrowtable 2s infinite forwards;
		}

		.common-table {
			width: 80rem;
		}
	}
}

@keyframes arrowtable {
	50% {
		opacity: 1;
		right: 0;
	}

	100% {
		opacity: 0;
		right: 100%;
	}
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
.moveFlag {
	opacity: 0;
	transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
	will-change: opacity, transform;
}

.moveFlag.fade-up {
	transform: translateY(40px);
}

.moveFlag.fade-left {
	transform: translateX(-40px);
}

.moveFlag.fade-right {
	transform: translateX(40px);
}

.moveFlag.zoom-in {
	transform: scale(0.95);
}

.moveFlag.on {
	opacity: 1;
	transform: translate(0) scale(1);
}

.moveFlag.delay-100 {
	transition-delay: 0.1s;
}

.moveFlag.delay-200 {
	transition-delay: 0.2s;
}

.moveFlag.delay-300 {
	transition-delay: 0.3s;
}

.moveFlag.delay-400 {
	transition-delay: 0.4s;
}

.moveFlag.delay-500 {
	transition-delay: 0.5s;
}

@media print {
	.moveFlag {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
	margin-bottom: 0rem !important;
}

.mb10 {
	margin-bottom: 1rem !important;
}

.mb20 {
	margin-bottom: 2rem !important;
}

.mb30 {
	margin-bottom: 3rem !important;
}

.mb40 {
	margin-bottom: 4rem !important;
}

.mb50 {
	margin-bottom: 5rem !important;
}

.mb60 {
	margin-bottom: 6rem !important;
}

.mb70 {
	margin-bottom: 7rem !important;
}

.mb80 {
	margin-bottom: 8rem !important;
}

.mb90 {
	margin-bottom: 9rem !important;
}

.mb100 {
	margin-bottom: 10rem !important;
}

.mb110 {
	margin-bottom: 11rem !important;
}

.mb120 {
	margin-bottom: 12rem !important;
}

@media screen and (max-width: 767px) {
	.mb10 {
		margin-bottom: 0.5rem !important;
	}

	.mb20 {
		margin-bottom: 1rem !important;
	}

	.mb30 {
		margin-bottom: 1.5rem !important;
	}

	.mb40 {
		margin-bottom: 2rem !important;
	}

	.mb50 {
		margin-bottom: 2.5rem !important;
	}

	.mb60 {
		margin-bottom: 3rem !important;
	}

	.mb70 {
		margin-bottom: 3.5rem !important;
	}

	.mb80 {
		margin-bottom: 4rem !important;
	}

	.mb90 {
		margin-bottom: 4.5rem !important;
	}

	.mb100 {
		margin-bottom: 5rem !important;
	}

	.mb110 {
		margin-bottom: 4.5rem !important;
	}

	.mb120 {
		margin-bottom: 4rem !important;
	}
}

.mt0 {
	margin-top: 0rem !important;
}

.mt10 {
	margin-top: 1rem !important;
}

.mt20 {
	margin-top: 2rem !important;
}

.mt30 {
	margin-top: 3rem !important;
}

.mt40 {
	margin-top: 4rem !important;
}

.mt50 {
	margin-top: 5rem !important;
}

.mt60 {
	margin-top: 6rem !important;
}

.mt70 {
	margin-top: 7rem !important;
}

.mt80 {
	margin-top: 8rem !important;
}

.mt90 {
	margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
	.mt10 {
		margin-top: 0.5rem !important;
	}

	.mt20 {
		margin-top: 1rem !important;
	}

	.mt30 {
		margin-top: 1.5rem !important;
	}

	.mt40 {
		margin-top: 2rem !important;
	}

	.mt50 {
		margin-top: 2.5rem !important;
	}

	.mt60 {
		margin-top: 3rem !important;
	}

	.mt70 {
		margin-top: 3.5rem !important;
	}

	.mt80 {
		margin-top: 4rem !important;
	}

	.mt90 {
		margin-top: 4.5rem !important;
	}

	.mt100 {
		margin-top: 5rem !important;
	}
}

.pb0 {
	padding-bottom: 0 !important;
}

.pb10 {
	padding-bottom: 1rem !important;
}

.pb20 {
	padding-bottom: 2rem !important;
}

.pb30 {
	padding-bottom: 3rem !important;
}

.pb40 {
	padding-bottom: 4rem !important;
}

.pb50 {
	padding-bottom: 5rem !important;
}

.pb60 {
	padding-bottom: 6rem !important;
}

.pb70 {
	padding-bottom: 7rem !important;
}

.pb80 {
	padding-bottom: 8rem !important;
}

.pb90 {
	padding-bottom: 9rem !important;
}

.pb100 {
	padding-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
	.pb10 {
		padding-bottom: 0.5rem !important;
	}

	.pb20 {
		padding-bottom: 1rem !important;
	}

	.pb30 {
		padding-bottom: 1.5rem !important;
	}

	.pb40 {
		padding-bottom: 2rem !important;
	}

	.pb50 {
		padding-bottom: 2.5rem !important;
	}

	.pb60 {
		padding-bottom: 3rem !important;
	}

	.pb70 {
		padding-bottom: 3.5rem !important;
	}

	.pb80 {
		padding-bottom: 4rem !important;
	}

	.pb90 {
		padding-bottom: 4.5rem !important;
	}

	.pb100 {
		padding-bottom: 5rem !important;
	}
}

.pt0 {
	padding-top: 0 !important;
}

.pt10 {
	padding-top: 1rem !important;
}

.pt20 {
	padding-top: 2rem !important;
}

.pt30 {
	padding-top: 3rem !important;
}

.pt40 {
	padding-top: 4rem !important;
}

.pt50 {
	padding-top: 5rem !important;
}

.pt60 {
	padding-top: 6rem !important;
}

.pt70 {
	padding-top: 7rem !important;
}

.pt80 {
	padding-top: 8rem !important;
}

.pt90 {
	padding-top: 9rem !important;
}

.pt100 {
	padding-top: 10rem !important;
}

@media screen and (max-width: 767px) {
	.pt10 {
		padding-top: 0.5rem !important;
	}

	.pt20 {
		padding-top: 1rem !important;
	}

	.pt30 {
		padding-top: 1.5rem !important;
	}

	.pt40 {
		padding-top: 2rem !important;
	}

	.pt50 {
		padding-top: 2.5rem !important;
	}

	.pt60 {
		padding-top: 3rem !important;
	}

	.pt70 {
		padding-top: 3.5rem !important;
	}

	.pt80 {
		padding-top: 4rem !important;
	}

	.pt90 {
		padding-top: 4.5rem !important;
	}

	.pt100 {
		padding-top: 5rem !important;
	}
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
/* navigation pagination */
.navigation.pagination {
	margin: 7rem 0 0;

	@media screen and (max-width: 767px) {
		margin: 3rem 0 0;
	}

	.disable {
		display: none;
	}

	.nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;

		@media screen and (max-width: 767px) {
			position: relative;
			padding-bottom: 5rem;
		}
	}

	.pager {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 0 0.4rem;
		width: 5.8rem;
		height: 5.6rem;
		font-family: 'Outfit';
		font-style: normal;
		font-weight: 500;
		font-size: 2rem;
		line-height: 2.5rem;
		text-align: center;
		letter-spacing: 0.05em;
		color: #1863C5;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		border-radius: 0.4em;
		border: 0.1rem solid #1863C5;

		@media screen and (max-width: 767px) {
			width: 4.5rem;
			height: 4.5rem;
			font-size: 1.6rem;
		}

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				color: #fff;
				background: #1863C5;
				border-color: #1863C5;
			}
		}
	}

	.pager.current {
		color: #fff;
		font-weight: bold;
		background: #1863C5;
		border-color: #1863C5;
	}

	.next,
	.prev {
		background-color: #1863C5;
		position: relative;

		&:after {
			content: "";
			position: absolute;
			background: url(../../common/img/pagination-arrow.svg) no-repeat;
			background-size: 100%;
			width: 0.9rem;
			height: 1.6rem;
			top: 0;
			bottom: 0;
			right: 0;
			left: 0;
			margin: auto;
		}

	}

	.prev {

		&:after {
			-webkit-transform: rotate(180deg);
			transform: rotate(180deg);
		}

		@media (hover: hover) and (pointer: fine) {
			&:hover:after {}
		}
	}

	.next {}
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
	padding: 100px 30px;
	line-height: 1.8;
	text-align: center;
}