@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
}

/* --------------------------------------------------------------- */
/* 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);
}

@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: none;
	}
}

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);
}

sup,
sub{
	font-size: 0.75em;
}
sub{
	vertical-align: baseline;
}

/* --------------------------------------------------------------- */
/* 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;

	@media screen and (min-width: 767.01px) and (max-width: 1919.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;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}

img {
	display: inline-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: 0.1rem;
}

.deve body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 0.1rem;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
	overflow: clip;
}

.menu-active {
	overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */

.fixed {
	#header {
		opacity: 0;
	}

	&.scroll {
		#header {
			opacity: 1;
			background: rgba(255, 255, 255, 0.8);
		}
	}
}


#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;

	width: 100%;
	height: 9.1rem;
	transition: ease 0.25s opacity, ease 0.25s background;

	@media screen and (max-width: 767px) {
		height: 6rem;
	}

	.inner {
		width: 100%;
	}

	/* position */
	.logomark,
	.nav-list,
	.entry-btn {
		position: absolute;
		z-index: 1;
	}

	@media screen and (max-width: 767px) {

		.nav-list,
		.entry-btn {
			position: static;
		}
	}

	.logomark {
		top: 2.3rem;
		left: 3.6rem;

		@media screen and (max-width: 767px) {
			top: 1.7rem;
			left: 2rem;
		}
	}

	.nav-list {
		left: 68rem;
		top: 3.4rem;
	}

	.entry-btn {
		top: 2.2rem;
		right: 4.4rem;
	}

	.logomark {
		width: 53rem;

		@media screen and (max-width: 767px) {
			z-index: 1000;
			width: 26rem;
		}
	}

	/* メニューボタン */
	.menu-btn {
		position: absolute;
		display: none;
		top: 1rem;
		right: 1rem;
		z-index: 9999;

		@media screen and (max-width: 767px) {
			display: block;
		}

		&:after {
			/* content: "MENU"; */
			content: "";
			position: absolute;
			left: 50%;
			bottom: 1.1rem;
			color: #e90000;
			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: 4rem;
				height: 4rem;
				border: 0.2rem solid #000;
				border-radius: 0.8rem;
			}

			& span {
				position: absolute;
				left: 50%;
				top: 50%;
				display: block;
				margin-left: -1.8rem;
				width: 3.4rem;
				height: 0.2rem;
				background: #000;
				border-radius: 0.3rem;

				@media screen and (max-width: 767px) {
					margin-left: -0.8rem;
					width: 1.6rem;
					height: 0.2rem;
				}

				&:before,
				&:after {
					content: "";
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: #000;
					border-radius: 0.3rem;
					transition: ease 0.25s all;
				}

				&:before {
					margin-top: -1.1rem;
				}

				@media screen and (max-width: 767px) {
					&:before {
						margin-top: -0.4rem;
					}
				}

				&:after {
					margin-top: 1.1rem;
				}

				@media screen and (max-width: 767px) {
					&:after {
						margin-top: 0.4rem;
					}
				}
			}
		}
	}

	.nav {
		@media screen and (max-width: 767px) {
			position: fixed;
			left: 100%;
			z-index: 999;
			padding: 0 0 4rem;
			width: 100%;
			height: 100dvh;
			pointer-events: none;
			background: #0033b3;
			opacity: 0;
			transition: ease 0.25s left, ease 0.25s opacity;
			overflow-y: scroll;
		}

		.nav-list {
			display: flex;
			flex-wrap: wrap;
			gap: 4.7rem;

			@media screen and (max-width: 767px) {
				margin: 6.6rem 0 3.7rem;
				flex-direction: column;
				gap: 0;
			}

			& li {
				@media screen and (max-width: 767px) {
					border-top: 0.1rem solid #fff;
				}
			}

			>li {
				position: relative;

				@media screen and (max-width: 767px) {
					&:first-child {
						border-top: none;
					}

					&:last-child {
						border-bottom: 0.1rem solid #fff;
					}

					& li {
						& a {
							padding-left: 3.8rem;
						}
					}
				}

				& span,
				& a {
					font-weight: 500;
					letter-spacing: 0.05em;
					color: #000;
					text-decoration: none;
					cursor: pointer;

					@media (hover: hover) and (pointer: fine) {
						&:hover {
							text-decoration: underline;
						}
					}

					@media screen and (max-width: 767px) {
						position: relative;
						display: block;
						padding: 2.4rem 4rem 2.4rem 2rem;
						font-size: 1.6rem;
						color: #fff;

						&:after {
							content: "";
							position: absolute;
							right: 2rem;
							top: 50%;
							transform: translateY(-50%);
							display: block;
							width: 0.8rem;
							height: 1.5rem;
							background: url(../img/parts/icon_arrow02_white.svg) no-repeat center center / 100% auto;
						}
					}
				}

				& span {
					@media screen and (max-width: 767px) {

						&:before,
						&:after {
							content: "";
							position: absolute;
							right: 2rem;
							top: calc(50% - 0.1rem);
							transform: none;
							z-index: 1;
							display: block;
							width: 1.5rem;
							height: 0.2rem;
							background: #FFF;
						}

						&:after {
							transform: rotate(90deg);
							transition: ease 0.25s transform;
						}
					}
				}

				&:hover {
					& span+.child-list {
						opacity: 1;
						pointer-events: auto;
					}
				}

				@media screen and (max-width: 767px) {

					& span+.child-list {
						display: none;
					}

					&.active {
						>span {
							&:after {
								transform: rotate(0);
							}
						}
					}
				}
			}


			@media print,
			screen and (min-width: 767.01px) {
				.child-list {
					position: absolute;
					left: 0;
					top: calc(100% + 1.3rem);
					z-index: 1;
					display: flex;
					flex-direction: column;
					gap: 1.2rem;
					padding: 2rem 3.2rem;
					background: linear-gradient(120.28deg, #000000 2.66%, #140470 24.18%, #0638bb 58.35%, #2691d7 84.07%);
					border-radius: 0.9rem;
					opacity: 0;
					pointer-events: none;
					transition: ease 0.25s opacity;

					&:after {
						content: "";
						position: absolute;
						left: 0;
						bottom: 100%;
						z-index: 1;
						display: block;
						width: 100%;
						height: 1.3rem;
					}

					& li {
						& a {
							position: relative;
							padding-left: 1.6rem;
							font-weight: 500;
							letter-spacing: 0.05em;
							color: #ffffff;
							white-space: nowrap;

							&:before {
								content: "";
								position: absolute;
								left: 0;
								top: 0.9rem;
								z-index: 1;
								display: block;
								width: 0.9rem;
								height: 0.2rem;
								background: #ffffff;
							}
						}
					}
				}
			}
		}

		.entry-btn {
			& a {
				position: relative;
				display: inline-flex;
				align-items: center;
				justify-content: center;
				width: 12.5rem;
				height: 4.6rem;
				font-weight: 700;
				font-size: 1.4rem;
				text-align: center;
				letter-spacing: 0.05em;
				color: #ffffff;
				text-decoration: none;

				background: linear-gradient(90deg, #d51d05 0%, #ed5300 100%);
				border-radius: 0.4rem;
				overflow: hidden;

				@media screen and (max-width: 767px) {
					margin: 0 auto;
					display: flex;
					width: calc(100% - 4rem);
					height: 4.6rem;
					font-size: 1.6rem;
				}

				& span {
					position: relative;
					z-index: 2;
				}

				&:after {
					content: "";
					position: absolute;
					left: 0;
					top: 0;
					z-index: 1;
					display: block;
					width: 100%;
					height: 100%;
					background: linear-gradient(90deg, #051dd5 0%, #0053ed 100%);
					transition: ease 0.25s opacity;
					opacity: 0;
				}

				@media (hover: hover) and (pointer: fine) {
					transition: ease 0.25s background-color;

					&:hover {
						&:after {
							opacity: 1;
						}
					}
				}
			}
		}
	}
}

.menu-active {
	#header {

		.logomark {
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				z-index: 1000;
				width: 100%;
				height: 100%;
				background: url(../img/header/logomark_white.png) no-repeat 0 0 / 100% auto;
				pointer-events: none;
			}

			& img {
				opacity: 0;
			}
		}

		.menu-btn {

			/* position: fixed; */
			& a {
				// background-color: #fff;
				border-color: #FFF;

				& span {
					background-color: transparent;

					&:after,
					&:before {
						background: #FFF;
					}

					&: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;
				opacity: 1;
				pointer-events: auto;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* 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: 0.1rem;
			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 {
	position: relative;
	z-index: 1;

	&:before {
		content: "";
		position: absolute;
		left: 0;
		top: -17.5rem;
		z-index: 1;
		display: block;
		width: 100%;
		height: 59.2rem;
		background: url(../img/footer/footer_bg01.svg) no-repeat center top / 100% auto;
	}

	@media screen and (max-width: 767px) {
		&:before {
			top: -5.5rem;
			height: 28rem;
			background-image: url(../img/footer/footer_bg01_sp.svg);
		}
	}

	&:after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 0;
		width: 100%;
		height: 50%;
		background: #000;
	}

	.entry-area {
		padding: 5rem 0 8.9rem;

		@media screen and (max-width: 767px) {
			padding: 1.7rem 0 2.7rem;
		}

		.inner {
			display: flex;
			flex-wrap: wrap;
			align-items: flex-end;

			@media screen and (max-width: 767px) {
				flex-direction: column;
				align-items: flex-start;
				gap: 2.8rem;
			}
		}

		.entry-title {
			width: calc(100% - 78.8rem);

			@media screen and (max-width: 767px) {
				width: 100%;
			}

			.title-main {
				margin-bottom: 2.7rem;
				font-family: "Roboto Flex";
				font-weight: 600;
				font-size: 15rem;
				line-height: 1.17;
				letter-spacing: 0.04em;
				color: #ffffff;

				@media screen and (max-width: 767px) {
					margin-bottom: 1.5rem;
					font-size: 4.2rem;
					line-height: 1;
				}
			}

			.title-text {
				font-weight: 700;
				font-size: 2.5rem;
				line-height: 1.44;
				letter-spacing: 0.14em;
				color: #ffffff;

				@media screen and (max-width: 767px) {
					font-weight: 500;
					font-size: 1.4rem;
					line-height: 1.857;
					letter-spacing: 0.08em;
				}
			}
		}

		.entry-list {
			display: flex;
			flex-direction: column;
			gap: 2rem;
			width: 78.8rem;

			@media screen and (max-width: 767px) {
				flex-direction: row-reverse;
				justify-content: space-between;
				width: 100%;
				gap: 1.1rem;
			}

			& li {
				@media screen and (max-width: 767px) {
					width: calc(50% - 0.55rem);
				}

				& a {
					position: relative;
					display: flex;
					align-items: center;
					justify-content: flex-start;
					width: 100%;
					height: 10.4rem;
					padding: 0 8.8rem;
					font-weight: 700;
					font-size: 2.8rem;
					letter-spacing: 0.08em;
					color: #ffffff;
					text-decoration: none;
					border-radius: 5.2rem;
					background: linear-gradient(90deg, #d51d05 0%, #ed5300 100%);

					@media (hover: hover) and (pointer: fine) {
						transition: ease 0.25s opacity;

						&:hover {
							opacity: 0.8;
						}
					}

					@media screen and (max-width: 767px) {
						padding: 0 1.4rem;
						height: 5.4rem;
						font-weight: 700;
						font-size: 1.4rem;
						border-radius: 1rem;
					}

					&:after {
						content: "";
						position: absolute;
						right: 2.4rem;
						top: 50%;
						z-index: 0;
						transform: translateY(-50%);
						display: block;
						width: 5.5rem;
						height: 5.8rem;
						background: url(../img/parts/icon_arrow01_white.svg) no-repeat center center / 100% auto;
					}

					@media screen and (max-width: 767px) {
						&:after {
							right: 1.4rem;
							width: 1.5rem;
							height: 1.5rem;
						}
					}
				}

				&.rikunabi {
					& a {
						background: #fff;

						& img {
							width: 25.5rem;

							@media screen and (max-width: 767px) {
								width: 9.6rem;
							}
						}

						&:after {
							background-image: url(../img/parts/icon_arrow01.svg);
						}
					}
				}
			}
		}
	}

	.footer-body-cover {
		position: relative;
		z-index: 1;
		padding: 0 5rem;
		background: #000;

		@media screen and (max-width: 767px) {
			padding: 0 1rem;
		}
	}
}

/* ----- FooterBody ----- */
#footer .FooterBody {
	padding: 3rem 5rem 5rem;
	border-top: 0.1rem solid #707070;
}

@media screen and (max-width: 1080px) {
	#footer .FooterBody {
		display: block;
		padding: 2.5rem 2.5rem 5rem;
		border: none;
	}
}

@media screen and (max-width: 767px) {
	#footer .FooterBody {
		padding: 2.5rem 1rem;
	}
}

@media print,
screen and (min-width: 768px) {

	/* footer-grouplist */
	.footer-group_list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.footer-group_list dt {
		width: 18.6rem;
	}

	.footer-group_list dd {
		border-left: 0.1rem solid #707070;
		padding-left: 3rem;
		width: calc(100% - 18.6rem - 30px);
		box-sizing: border-box;
	}

	.footer-group_list dd .row-set {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.footer-group_list dd .row-set:first-child>div {
		margin-top: 0;
	}

	.footer-group_list dd .row-set>div {
		margin-top: 2rem;
		margin-right: 3rem;
	}

	.footer-group_list dd .row-set>div a {
		display: inline-flex;
		align-items: center;
	}

	.footer-group_list dd .row-set>div:last-child {
		margin-right: 0;
	}

	.footer-group_list .footer-group_hd {}

	.footer-group_list .footer-group_noe {}

	.footer-group_list .footer-group_nex {}

	.footer-group_list .footer-group_nmm {}

	.footer-group_list .footer-group_pow {}

	.footer-group_list .footer-group_ene {}

	/* footer-copyright */
	.footer-copyright {
		position: absolute;
		right: 5rem;
		bottom: 1rem;
		text-align: right;
		margin-top: 1rem;
	}

	.footer-copyright_label {
		display: block;
		font-size: 1.5rem;
		color: #cbcbcb;
		line-height: 2rem;
	}
}

@media screen and (max-width: 767px) {

	/* ----- FooterBody ----- */
	.FooterBody {
		margin-top: 1.5rem;
		padding-top: 2rem;
		border-top: 0.1rem solid #1a1a1a;
	}

	/* footer-grouplist */
	.footer-group_list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-items: center;
		align-items: center;
		margin-bottom: 2rem;
	}

	.footer-group_list dt {
		margin-bottom: 0.5rem;
	}

	.footer-group_list dd .row-set>div {
		margin-top: 0.6rem;
		line-height: 1;
		text-align: center;
	}

	.footer-group_list dd a {
		display: inline-flex;
		align-items: center;
		line-height: 1;
	}

	.footer-group_nex img {
		width: auto;
		height: 1.3rem;
		vertical-align: bottom;
	}

	.footer-group_list dd .row-set>.footer-group_nex {
		margin-top: 0.9rem;
	}

	.footer-group_list dd .row-set>.footer-group_nmm {
		margin-top: 0.4rem;
	}

	.footer-group_hd img,
	.footer-group_noe img,
	.footer-group_nmm img,
	.footer-group_mat img,
	.footer-group_pow img,
	.footer-group_ene img {
		width: auto;
		height: 1.1rem;
		vertical-align: bottom;
	}

	.footer-group_hd .a-blank::after,
	.footer-group_noe .a-blank::after,
	.footer-group_nex .a-blank::after,
	.footer-group_nmm .a-blank::after {
		margin: 0 0 0 0.4rem;
	}

	/* footer-copyright */
	.footer-copyright {
		margin-top: 0.9rem;
		text-align: center;
	}

	.footer-copyright_label {
		font-size: 1rem;
		color: #cbcbcb;
		line-height: 1;
	}
}

#footer .footer-group_hd .a-blank:after,
#footer .footer-group_noe .a-blank:after,
#footer .footer-group_nex .a-blank:after,
#footer .footer-group_nmm .a-blank:after,
#footer .footer-group_mat .a-blank:after,
#footer .footer-group_pow .a-blank:after,
#footer .footer-group_ene .a-blank:after {
	content: "";
	display: inline-block;
	border: none !important;
	-webkit-transform: rotate(0) !important;
	transform: rotate(0) !important;
	vertical-align: -0.1rem;
	width: 12px !important;
	height: 12px !important;
	background: url(../images/com_ic01.png) no-repeat 0 0;
	margin-left: 0.8rem;
	vertical-align: -0.1rem;
}

#footer .footer-group_list dt img {
	width: auto;
	height: 2.2rem;
}

@media screen and (max-width: 767px) {
	#footer .footer-group_list dt img {
		height: 1.5rem;
	}
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 4rem);
	}
}

.w890 {
	max-width: 89rem;
}

.w1200 {
	max-width: 120rem;
}

.w1440 {
	max-width: 144rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* common-wave */
.common-wave01 {
	position: relative;
	padding-top: 12.2rem;
	background: #e5ebf0;

	@media screen and (max-width: 767px) {
		padding-top: 4rem;
	}
	/* &:after {
		content: "";
		position: absolute;
		bottom: calc(100% - 2px);
		left: -2px;
		z-index: -1;
		width: 300%;
		height: 18.3rem;
		background: url(../img/parts/object_wave01.svg) repeat-x left bottom / auto 100%;
		pointer-events: none;
		animation: wave01 200s linear infinite;
	}

	@media screen and (max-width: 767px) {
		&:after {
			height: 4.5rem;
		}
	} */
	.wave-svg{
		position: absolute;
		bottom: calc(100% - 2px);
		left: 0;
		width: 100%;
		height: 24.3rem;
		@media screen and (max-width: 767px) {
			height: 5rem;
		}
	}
}


@keyframes wave01 {
	0% {
		background-position: 0 0;
	}

	50% {
		background-position: 2000% 0;
	}
}

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {

	/* type01 */
	&.type01 {

		&.center {
			.inner {
				align-items: center;
				text-align: center;
			}
		}

		.inner {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			justify-content: center;
			padding-top: 9rem;
			height: 55.6rem;

			@media screen and (max-width: 767px) {
				width: 100%;
				padding-top: 3rem;
				height: 25rem;
				align-items: center;
			}
		}

		.title-en {
			padding-bottom: 5rem;
			font-family: "Roboto Flex";
			font-weight: 600;
			font-size: 10rem;
			letter-spacing: 0.04em;
			background: linear-gradient(120.28deg, #000000 2.66%, #140470 24.18%, #0638bb 58.35%, #2691d7 84.07%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			text-fill-color: transparent;

			@media screen and (max-width: 767px) {
				padding-bottom: 1rem;
				font-size: 3.8rem;
				text-align: center;
			}
		}

		.title-jp {
			font-weight: 700;
			font-size: 2.8rem;
			letter-spacing: 0.04em;
			color: #000000;

			@media screen and (max-width: 767px) {
				font-size: 1.6rem;
			}
		}
	}

	&.type02 {
		margin-bottom: 10rem;

		@media screen and (max-width: 767px) {
			margin-bottom: 4rem;
		}

		.title-en {
			margin-bottom: 1.6rem;
			font-family: "Roboto Flex";
			font-weight: 600;
			font-size: 9.4rem;
			letter-spacing: 0.04em;

			@media screen and (max-width: 767px) {
				margin-bottom: 1rem;
				font-size: 3.4rem;
			}
		}

		.title-jp {
			font-weight: 700;
			font-size: 3rem;
			letter-spacing: 0.04em;
			color: #0033b3;

			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
			}
		}
	}
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
	&.type01 {
		&.color01 {
			.cover {
				color: #000;
				border-color: #000;

				@media (hover: hover) and (pointer: fine) {
					&:hover {
						background-color: rgba(0, 0, 0, 0.05);
					}
				}

				&:after {
					background-image: url(../img/parts/icon_arrow01_black.svg);
				}
			}
		}

		&.color02 {
			.cover {
				color: #fff;
				background: #000;

				@media (hover: hover) and (pointer: fine) {
					&:hover {
						background-color: #0033b3;
					}
				}
			}
		}

		.cover {
			position: relative;

			display: inline-flex;
			align-items: center;
			justify-content: flex-start;
			padding: 0 6.4rem 0 2.1rem;
			min-width: 30.7rem;
			height: 7rem;
			font-weight: 700;
			letter-spacing: 0.05em;
			color: #ffffff;
			border: 0.2rem solid #ffffff;
			border-radius: 3.5rem;
			text-decoration: none;
			cursor: pointer;

			@media (hover: hover) and (pointer: fine) {
				transition: ease 0.25s background-color;

				&:hover {
					background-color: rgba(255, 255, 255, 0.2);
				}
			}

			@media screen and (max-width: 767px) {
				width: 21rem;
				height: 4.7rem;
				font-size: 1.2rem;
				border-width: 0.1rem;
			}

			&:after {
				content: "";
				position: absolute;
				right: 1.6rem;
				top: 50%;
				z-index: 1;
				transform: translateY(-50%);
				display: block;
				width: 3.6rem;
				height: 3.6rem;
				background: url(../img/parts/icon_arrow01_white.svg) no-repeat center center / 100% auto;
			}

			@media screen and (max-width: 767px) {
				&:after {
					right: 0.8rem;
					width: 2.4rem;
					height: 2.4rem;
				}
			}
		}
	}
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
	&.dot {
		margin-bottom: 1.6rem;
		letter-spacing: 0.05em;

		&:last-child {
			margin-bottom: 0;
		}

		& li {
			position: relative;
			padding-left: 1.8rem;

			@media screen and (max-width: 767px) {
				padding-left: 1.6rem;
			}

			&:before {
				content: "・";
				position: absolute;
				left: 0;
			}
		}
	}
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;

	& p {
		margin-bottom: 2rem;

		&:last-child {
			margin-bottom: 0;
		}
	}
}

/* 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 {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

.object-circle {
	position: relative;

	&:after {
		content: "";
		position: absolute;
		left: -33.5rem;
		top: -28.1rem;
		z-index: 1;
		width: 109.2rem;
		height: 109.2rem;
		border-radius: 50%;
		background: linear-gradient(122.96deg, #000000 2.55%, #140470 23.23%, #0638bb 42.79%, #2691d7 62.72%, #bcedea 80.77%) border-box border-box;
		border: 0.2rem solid transparent;

		mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
		-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
		-webkit-mask-composite: destination-out;
		mask-composite: exclude;
		animation: rotate 10s linear infinite;
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* --------------------------------------------------------------- */
/*  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;
}

@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;
	}
}

.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;
	}
}


@media print {
	#header {
		position: absolute;
	}
}
