@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);
	text-decoration: none;
	transition: all 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	a: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;

	@media screen and (min-width: 1080.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;
	font-family: 'Noto Sans JP', sans-serif;

	@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: 1600px;
		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;
}

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

.menu-active {
	overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	padding: 3rem 2.4rem 2rem 4.7rem;
	align-items: center;
	display: flex;
	justify-content: space-between;
	transition: all 0.25s ease;

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

	.nav {
		display: flex;
		gap: 4.6rem;

		.main-links-logo {
			display: none;

			@media screen and (max-width: 767px) {
				display: block;
				width: 30.5rem;
				margin-bottom: 3rem;
			}
		}

		.main-links {
			display: flex;
			gap: 4rem;
			align-items: center;

			@media screen and (max-width: 767px) {
				flex-direction: column;
				align-items: flex-start;
				gap: 0;
			}

			.main-links-parents {
				font-style: normal;
				font-weight: 700;
				font-size: 1.8rem;
				line-height: 2.7rem;
				letter-spacing: 0.06em;
				color: #000000;
				height: 100%;
				display: flex;
				align-items: center;

				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
					line-height: 100%;
					padding: 2rem 0;
					border-top: 1px solid #EAEAEA;
					width: 100%;
				}

				&:hover {
					color: #D62328;
				}
			}

			.main-link-parent-child-container {
				position: absolute;
				display: none;
				left: -3rem;
				top: 5.5rem;
				width: 27rem;
				height: fit-content;
				background-color: #fff;
				flex-direction: column;
				gap: 1rem;
				padding: 2rem 3rem;
				/* background: rgba(255, 255, 255, 0.7); */
				background: #F1F1F1;
				box-shadow: 0px 0.2rem 0.4rem rgba(0, 0, 0, 0.15);
				border-radius: 0.8rem;

				@media screen and (max-width: 767px) {
					position: static;
					width: 100%;
					border: none;
					padding: 0 0 0 1rem;
					background: transparent;
					box-shadow: unset;
					border-radius: 0;
					gap: 0;
					left: 0;
				}

				& a {
					font-style: normal;
					font-weight: 500;
					font-size: 1.4rem;
					line-height: 100%;
					letter-spacing: 0.06em;
					color: #000000;
					padding-top: 1.6rem;
					border-top: 1px solid #EAEAEA;
					padding-bottom: 1.6rem;

					&:hover {
						color: #D62328;

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

				& a:last-child {
					border-bottom: 1px solid #EAEAEA;

					@media screen and (max-width: 767px) {
						border-bottom: unset;
					}
				}
			}

			.lil-main-link-parent-child-container {
				width: 15rem;

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

			.big-parent-container {

				position: relative;
				height: 100%;

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

				.main-links-parents-plus {
					display: flex;
					gap: 1rem;
					align-items: center;
					cursor: pointer;
					transition: all ease 0.25s;

					.plus {
						width: 1.4rem;
						height: 0.3rem;
						background-color: #D62328;
						position: relative;

						&:after {
							content: "";
							position: absolute;
							left: 50%;
							top: 50%;
							width: 0.3rem;
							height: 1.4rem;
							background: #D62328;
							transition: ease 0.25s all;
							transform: translate(-50%, -50%);
						}
					}

					&.open .plus:after {
						transform: translate(-50%, -50%) rotate(90deg);
					}

					&:hover {
						color: #D62328;

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

				}

				.no-link {
					cursor: inherit;

					&:hover {
						color: #000000;
					}
				}

				@media screen and (min-width: 768px) {
					&:hover {
						.main-link-parent-child-container {
							display: flex;
							flex-direction: column;
							gap: 0;
						}
					}
				}
			}


		}
	}

	.entry-informations-btn {
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: 16rem;
		height: 5.5rem;
		background: #FFFFFF;
		border: 0.2rem solid #323232;
		border-radius: 4.8rem;
		font-style: normal;
		font-weight: 700;
		font-size: 1.6rem;
		/* line-height: 30px; */
		color: #323232;

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

	.contact-btn {
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: 16rem;
		height: 5.5rem;
		background: #D62328;
		border-radius: 4.8rem;
		font-style: normal;
		font-weight: 700;
		font-size: 1.6rem;
		/* line-height: 30px; */
		color: #FFFFFF;

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

	.main-btns {
		display: flex;
		gap: 1rem;

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

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

	.logomark a span {
		font-style: normal;
		font-weight: 900;
		font-size: 3rem;
		letter-spacing: 0.04em;
		color: #000000;

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

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

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

		&:after {
			content: "MENU";
			position: absolute;
			left: 3.1rem;
			bottom: 3.6rem;
			color: #e90000;
			font-weight: 500;
			letter-spacing: 0.05em;
			font-size: 1rem;
			transform: translateX(-50%);
			white-space: nowrap;
			font-family: 'Jost';
		}

		& 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;
				background: #DBDBDB;
				border-radius: 50%;
			}

			& span {
				position: absolute;
				left: 50%;
				top: 50%;
				display: block;
				margin-left: -1.8rem;
				width: 3.4rem;
				height: 0.2rem;
				/* background: #e90000; */
				background: transparent;
				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.4rem;
					width: 100%;
					height: 100%;
					background: #e90000;
					border-radius: 0.3rem;
					transition: ease 0.25s all;
				}


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

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

.scroll-now #header,
.menu-active #header {
	&:after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.27);
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(0.8rem);
	}
}



@media screen and (max-width: 767px) {
	.nav {
		position: fixed;
		left: 100%;
		/* top: calc(100% + 2rem); */
		bottom: 0;
		z-index: 999;
		width: 33.5rem;
		/* height: calc(100vh - 7.3rem - 2rem); */
		padding: 3rem 2rem 13rem 3rem;
		border-radius: 1.6rem 0 0 0;
		pointer-events: none;
		flex-direction: column;
		transition: all 0.25s ease;
		overflow-y: auto;
		background: rgba(255, 255, 255, 0.95);
	}
}


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

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

				& span {
					background-color: transparent;

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

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

			&:after {
				content: "CLOSE";
			}
		}

		@media screen and (max-width: 767px) {
			.nav {
				left: 11%;
				pointer-events: auto;
			}
		}
	}
}

/* 404 */

.p404 {
	.common-btn {
		margin: 0 auto;
		gap: 6rem;
	}
}

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

	& 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;
			font-size: 1.4rem;
			color: #7D7D7D;
			font-weight: 400;

			&:after {
				display: none;
			}
		}

		&:after {
			content: "";
			position: absolute;
			right: -1.8rem;
			top: 0.3rem;
			z-index: 0;
			display: block;
			width: 0.5rem;
			height: 1.1rem;
			background: url(../../img/common/page/red-arrow-bread.svg) no-repeat;
			background-size: 100%;

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

	& a {
		text-decoration: none;
		color: #000000;
		font-size: 1.4rem;

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

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

		& ol {
			align-items: center;
			padding-bottom: 2rem;
		}

		& li {
			margin-right: 1.7rem !important;
			font-size: 1rem !important;

			&:after {
				right: -1.2rem;
				top: 0.2rem;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
	background-color: #F1F1F1;
}

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

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {

	.footer-top {
		background-color: #000;
		position: relative;
		padding: 13.9rem 24.3rem 11.2rem 23.8rem;
		width: 100%;

		&::before {
			content: "";
			position: absolute;
			top: 1.1rem;
			left: 1rem;
			background: url(../../img/common/footer/footer-bk.png) no-repeat;
			background-size: 100%;
			width: 192.3rem;
			height: 60.2rem;
			z-index: 0;
			mix-blend-mode: plus-lighter;
		}

		.flex-title-and-btn {
			display: flex;
			justify-content: space-between;
			align-items: center;
			z-index: 1;
			position: relative;
			padding-bottom: 10.4rem;

			.footer-top-txt-left {

				.footer-en-top {
					font-family: 'Jost';
					font-style: normal;
					font-weight: 700;
					font-size: 1.6rem;
					letter-spacing: 0.06em;
					color: #FFFFFF;
					padding-bottom: 0.5rem;
				}

				.footer-jp-top {
					font-style: normal;
					font-weight: 700;
					font-size: 4.4rem;
					line-height: 7.8rem;
					letter-spacing: 0.09em;
					color: #FFFFFF;
				}
			}

			.footer-top-btn {
				display: flex;
				gap: 2.6rem;
				align-items: center;

				.txt {
					font-style: normal;
					font-weight: 500;
					font-size: 2.6rem;
					/* line-height: 32px; */
					letter-spacing: 0.09em;
					color: #FFFFFF;
				}

				.btn-contaienr {
					width: 4.4rem;
				}
			}
		}

		.infos-flex-container {
			display: flex;
			gap: 4.6rem;
			z-index: 1;
			position: relative;

			.infos-box {
				width: 45rem;
				height: 15.9rem;
				border-right: 1px solid #ACACAC;
				padding-top: 2.1rem;

				.title {
					font-style: normal;
					font-weight: 700;
					font-size: 2rem;
					letter-spacing: 0.08em;
					color: #EEEEEE;
					padding-bottom: 3rem;
				}

				.txt {
					font-style: normal;
					font-weight: 500;
					font-size: 1.8rem;
					line-height: 3rem;
					letter-spacing: 0.05em;
					color: #EEEEEE;

					& a {
						color: #EEEEEE;
						text-decoration: none;
					}

					.spe-numb {
						@media screen and (max-width: 767px) {

							margin-left: 3.6rem;
						}
					}
				}
			}
		}
	}

	.footer-bottom {
		padding: 11.6rem 0 4rem;
		background-color: #F1F1F1;

		.footer-bottom-flex-container {
			display: flex;
			justify-content: space-between;
			position: relative;
			padding-bottom: 15.9rem;
		}

		.footer-logo-container {
			width: 31.4rem;
			padding-bottom: 3.7rem;
		}

		.left-text01 {
			font-style: normal;
			font-weight: 500;
			font-size: 1.8rem;
			line-height: 3.3rem;
			letter-spacing: 0.05em;
			color: #000000;
			padding-bottom: 1.9rem;
		}

		.footer-bot-right {
			display: flex;
			gap: 9rem;

			.footer-parents {
				display: block;
				font-style: normal;
				font-weight: 700;
				font-size: 1.8rem;
				/* line-height: 3.3rem; */
				letter-spacing: 0.05em;
				color: #000000;
				padding-bottom: 3rem;
			}

			.footer-child {
				display: block;
				font-style: normal;
				font-weight: 500;
				font-size: 1.6rem;
				/* line-height: 3.3rem; */
				letter-spacing: 0.05em;
				color: #626262;
				padding-bottom: 2rem;
			}
		}


		.pageup {
			position: absolute;
			right: -5rem;
			bottom: 3rem;
			display: flex;
			align-items: center;
			gap: 0.8rem;

			.text {
				font-family: 'Jost';
				font-style: normal;
				font-weight: 600;
				font-size: 1.9rem;
				color: #000000;
			}

			.arrow-pageup {
				width: 3.8rem;
				transform: rotate(272deg);
			}
		}
	}

	.copyrights {
		display: inline-block;
		font-style: normal;
		font-weight: 400;
		font-size: 1.4rem;
		line-height: 3.3rem;
		text-align: center;
		letter-spacing: -0.01em;
		color: #000000;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	#footer {
		.footer-top {
			padding: 8rem 2rem;

			.flex-title-and-btn {
				flex-direction: column;
				align-items: flex-start;
				padding-bottom: 4rem;

				.footer-top-txt-left {
					.footer-en-top {
						font-size: 1.2rem;
						padding-bottom: 0.5rem;
					}

					.footer-jp-top {
						font-size: 2.6rem;
						line-height: 150%;
					}
				}
			}

			.infos-flex-container {
				flex-direction: column;
				gap: 2.4rem;

				.infos-box {
					width: 33.5rem;
					border-right: none;
					padding-top: 0;
					height: auto;
					padding-bottom: 3.2rem;
					border-bottom: 1px solid #ACACAC;

					.title {
						font-size: 1.8rem;
						padding-bottom: 2.1rem;
					}

					.txt {
						font-size: 1.4rem;
						line-height: 2.6rem;
						max-width: 31.2rem;
					}
				}
			}

			.footer-top-btn {
				display: flex;
				gap: 1.6rem;
				align-items: center;
				justify-content: flex-end;
				margin-top: 5.5rem;

				.txt {
					font-style: normal;
					font-weight: 700;
					font-size: 1.4rem;
					/* line-height: 32px; */
					letter-spacing: 0.09em;
					color: #FFFFFF;
				}

				.btn-contaienr {
					width: 1.6rem;
				}
			}
		}

		.footer-bottom {
			padding: 4rem 0 10rem;

			.footer-bottom-flex-container {
				flex-direction: column;
				padding-bottom: 7rem;
			}

			.footer-logo-container {
				padding-bottom: 3rem;
				margin: 0 auto;
			}

			.left-text01 {
				font-size: 1.4rem;
				line-height: 150%;
				padding-bottom: 1.6rem;
			}

			.footer-bot-right {
				margin-top: 0.6rem;
				gap: 0;
				flex-direction: column;

				.footer-parents {
					font-size: 1.4rem;
					padding-bottom: 2rem;
					border-bottom: 1px solid #ACACAC;
					margin-bottom: 2rem;
				}

				.footer-parents-first {
					border-top: 1px solid #ACACAC;
					padding-top: 2rem;
				}

				.footer-child {
					font-size: 1.4rem;
					padding-bottom: 1.6rem;
					border-bottom: 1px solid #ACACAC;
					margin-bottom: 1.6rem;
					margin-left: 1.5rem;
				}

				.footer-child:last-child {
					margin-left: 0;
					padding-left: 1.5rem;
				}
			}

			.pageup {
				right: 1rem;
				bottom: 1rem;
			}

		}

		.copyrights {
			font-size: 1rem;
		}
	}
}

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

.w1440 {
	max-width: 144rem;
}

.w1450 {
	max-width: 145rem;
}

.w1600 {
	max-width: 160rem;
}

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

.tal {
	text-align: left;
}

.tac {
	text-align: center;
}

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

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

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {}

/* type01 */
.common-title.type01 {
	text-align: center;
	padding: 23.7rem 0 4rem;
	border-radius: 0 0 5rem 5rem;
	position: relative;
	box-shadow: 0px -0.9rem 3.8rem 0rem #0000001A;
	background-color: #fff;
	overflow: hidden;

	.title-main {
		font-family: 'Jost';
		font-style: normal;
		font-weight: 700;
		font-size: 1.6rem;
		letter-spacing: 0.06em;
		color: #D62328;
		padding-bottom: 1.6rem;
		text-align: left;
		text-transform: uppercase;
		padding-left: 0.6rem;
	}

	.title-sub {
		font-style: normal;
		font-weight: 700;
		font-size: 6.1rem;
		line-height: 7.8rem;
		letter-spacing: 0.09em;
		color: #000000;
		padding-bottom: 20rem;
		text-align: left;

	}

	#absolute-lottie-container {
		position: absolute;
		right: -45rem;
		bottom: -24rem;
		width: 113.4rem;
		height: 80rem;
		z-index: -1;
	}
}

@media screen and (max-width: 767px) {
	.common-title.type01 {
		padding: 8rem 0 0rem;
		border-radius: 0 0 1.6rem 1.6rem;

		.title-main {
			font-size: 1.2rem;
			padding-bottom: 0;
		}

		.title-sub {
			font-size: 2.6rem;
			line-height: 150%;
			padding-bottom: 5.3rem;
		}

		#absolute-lottie-container {
			position: absolute;
			right: -8rem;
			bottom: -3.3rem;
			width: 23.6rem;
			height: 18.5rem;
			z-index: -1;
		}
	}
}

.common-title-page {
	display: flex;
	align-items: center;
	gap: 1.6rem;

	.icon {
		width: 3.2rem;
		height: 2.7rem;
	}

	.text {
		font-style: normal;
		font-weight: 700;
		font-size: 3.2rem;
		line-height: 150%;
		letter-spacing: 0.08em;
		color: #D62328;
	}
}

@media screen and (max-width: 767px) {
	.common-title-page {
		gap: 0.8rem;
		align-items: baseline;

		.text {
			font-size: 2rem;
			max-width: 30.4rem;
		}

		.icon {
			width: 2rem;
			height: 1.6rem;
		}
	}
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 1.5rem 0 2.5rem;
	gap: 13.8rem;
	background: linear-gradient(90deg, #D62328 0%, #D62328 100%);
	border-radius: 4rem;
	width: 30rem;
	height: 7rem;
	transition: all 0.5s ease;

	.text {
		font-weight: 900;
		font-size: 1.6rem;
		/* line-height: 3rem; */
		letter-spacing: 0.05em;
		color: #FFFFFF;
	}

	.img-container {
		width: 2.8rem;
		transition: all 0.5s ease;
	}

	&:hover {
		background: linear-gradient(90deg, #D62328 0%, #ff2429 100%);
		opacity: 0.8;

		.img-container {
			transform: translateX(0.6rem);
		}

	}
}

@media screen and (max-width: 767px) {
	.common-btn {
		width: 19.3rem;
		height: 4rem;
		gap: 0;
		padding: 1.5rem 0.8rem 1.5rem 1.6rem;

		.text {
			font-size: 1.4rem;
		}

		.img-container {
			width: 1.6rem;
		}
	}
}

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

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
	display: flex;
	gap: 2.4rem;
	padding-bottom: 8rem;
	flex-wrap: wrap;

	& li a {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding: 0.8rem 2.4rem;
		background: #FFFFFF;
		border: 2px solid #D62328;
		border-radius: 5.6rem;
		box-sizing: border-box;
		font-style: normal;
		font-weight: 700;
		font-size: 1.8rem;
		/* line-height: 180%; */
		text-align: center;
		letter-spacing: 0.05em;
		color: #D62328;
	}

	.active a {
		color: #fff;
		background: #D62328;
	}
}

@media screen and (max-width: 767px) {
	.common-list {
		gap: 0.5rem;
		row-gap: 1.3rem;
		padding-bottom: 4rem;

		& li a {
			font-size: 1.4rem;
			padding: 0.4rem 1.2rem;
		}
	}
}

.common-list.article {
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: flex-start;

	& li a {
		display: flex;
		padding: 2.8rem 0 2.6rem 0;
		border-bottom: 1px solid #9F9F9F;
		border-left: none;
		border-right: none;
		border-radius: 0;
		font-size: inherit;
		font-weight: inherit;
		text-align: inherit;
		color: inherit;
		background: transparent;
		width: 75rem;
		justify-content: flex-start;
		border-top: inherit;

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

		.list-date {
			font-family: 'Jost';
			font-style: normal;
			font-weight: 500;
			font-size: 1.6rem;
			line-height: 3.3rem;
			letter-spacing: 0.01em;
			color: #000000;
			margin-right: 2.9rem;
		}

		.list-category-tag {
			font-style: normal;
			font-weight: 500;
			font-size: 1.4rem;
			/* line-height: 33px; */
			letter-spacing: 0.05em;
			color: #FFFFFF;
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;
			padding: 1rem 1.8rem;
			background: #9F9F9F;
			border-radius: 2.4rem;
			margin-right: 6.9rem;
		}

		.list-title {
			font-style: normal;
			font-weight: 500;
			font-size: 1.6rem;
			line-height: 3.3rem;
			text-decoration: underline;
			color: #000000;
			overflow: hidden;
			white-space: nowrap;
			text-overflow: ellipsis;
			max-width: 96rem;
		}

		.list-detail {
			display: none;
		}
	}
}

.common-list.article li:nth-child(1) {
	& a {

		border-top: 1px solid #9F9F9F;
	}

}

@media screen and (max-width: 767px) {

	.common-list.article {
		padding: 1.6rem 0 1.6rem 0;

		& li a {
			flex-direction: column;
			align-items: flex-start;
			gap: 0.8rem;

			.list-date {
				font-size: 1.2rem;
				line-height: normal;
				margin-right: 2.4rem;
				font-weight: 700;
			}

			.list-category-tag {
				font-size: 1rem;
				padding: 0.8rem 1.5rem;
			}

			.list-title {
				font-size: 1.4rem;
				line-height: 180%;
				font-weight: 700;
				max-width: 31rem;
				white-space: break-spaces;
			}
		}
	}
}

.table-container {
	width: 100%;

	.row {
		display: flex;
		align-items: center;
		border-top: 1px solid #DADADA;
		align-items: stretch;

		.th,
		.tx {
			padding: 1.6rem 3.2rem;
		}

		.th {
			background-color: #F1F1F1;
			width: 28rem;
			font-style: normal;
			font-weight: 700;
			font-size: 1.8rem;
			line-height: 180%;
			letter-spacing: 0.08em;
			color: #000000;
			display: flex;
			align-items: center;
		}

		.tx {
			background-color: #fff;
			width: 95rem;
			color: #000000;
			font-style: normal;
			font-weight: 500;
			font-size: 1.8rem;
			line-height: 180%;
			letter-spacing: 0.08em;

			& a {
				text-decoration: none;
			}

			.red {
				color: #D62328;
				font-weight: 700;
			}

			.list-style {
				color: #000000;

			}

			& small {
				display: inline-block;
				font-style: normal;
				font-weight: 400;
			}

			.bold {
				font-weight: 700;
			}
		}
	}

	.row:last-child {
		border-bottom: 1px solid #DADADA;
	}
}

@media screen and (max-width: 767px) {
	.table-container {
		.row {
			flex-direction: column;
			align-items: stretch;
			border-top: 1px solid #DADADA;

			.th,
			.tx {
				width: 100%;
				padding: 1.2rem 1.6rem;
				font-size: 1.4rem;
				line-height: 150%;
				letter-spacing: 0.05em;
			}

			.th {
				height: auto;
				background-color: #F1F1F1;
			}

			.tx {
				background-color: #fff;

				& a {
					display: inline-block;
					word-break: break-word;
				}

				.red {
					font-weight: 700;
				}

				.list-style {
					display: block;
				}

				& small {
					font-size: 1.2rem;
				}
			}
		}

		.row:last-child {
			border-bottom: 1px solid #DADADA;
		}
	}
}

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

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

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 7rem;

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

	.back {
		margin: 0 8.3rem;

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

	.prev,
	.next {
		width: 14rem;

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

		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			width: 100%;
			height: 4.6rem;
			font-weight: 500;
			text-decoration: underline;
			letter-spacing: 0.08rem;
			color: #000;
			box-sizing: border-box;

			@media screen and (max-width: 767px) {
				padding: 0;
				font-size: 0;
				color: transparent;
			}

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

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -2.3rem;
				display: block;
				width: 4.6rem;
				height: 4.6rem;
				border-radius: 2.3rem;
				background-color: #2987d9;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: #2987d9;
				}
			}

			@media screen and (max-width: 767px) {
				.&:after {
					width: 4.8rem;
					height: 4.8rem;
					margin-top: -2.4rem;
					border-radius: 0;
				}
			}

			&:before {
				content: "";
				position: absolute;
				top: 50%;
				z-index: 1;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.2rem solid #fff;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		& a {
			padding-left: 7.3rem;

			&:after {
				left: 0;
			}

			&:before {
				left: 2.2rem;
				border-left: 0.2rem solid #fff;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover:before {
					border-left-color: #fff;
				}
			}
		}
	}

	.next {
		& a {
			padding-right: 7.3rem;

			&:after {
				right: 0;
			}

			&:before {
				right: 2.2rem;
				border-right: 0.2rem solid #fff;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
		}
	}
}

/* navigation pagination */
.navigation.pagination {
	margin: 8rem 0 0;

	@media screen and (max-width: 767px) {
		margin: 4rem 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.8rem;
		width: 4.4rem;
		height: 4.4rem;
		border-radius: 50%;
		font-family: "Jost", sans-serif;
		font-weight: 500;
		font-size: 1.8rem;
		letter-spacing: 0.08em;
		color: #D62328;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		/* border-radius: 0.4em; */
		border: 0.1rem solid #D62328;

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

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

	.pager.current {
		color: #fff;
		background: #D62328;
		border-color: #D62328;
	}

	.next,
	.prev {
		@media screen and (max-width: 767px) {
			/*position: absolute;*/
			/*bottom: 0;*/
			/*width: 48%;*/
			/*height: 4rem;*/
		}

		& a {
			position: relative;
			background: url(../../img/common/arrow-pagination.svg) no-repeat;
			background-size: 100%;
			width: 4.4rem;
			height: 4.4rem;

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

	.prev {
		@media screen and (min-width: 767.01px) {
			margin-right: 0.8rem;
		}

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

		& a {
			transform: rotate(180deg);
		}
	}

	.next {
		@media screen and (min-width: 767.01px) {
			margin-left: 0.8rem;
		}

		@media screen and (max-width: 767px) {
			margin-left: 1rem;
			/*right: 0;*/
		}
	}
}

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

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

/* ------------------------------------------- */
/* animations */
/* ------------------------------------------- */

.fade-up {
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.show {
	opacity: 1;
	transform: translateY(0);
	animation: fadeUpFix 0.8s ease-out;
}

@keyframes fadeUpFix {
	from {
		opacity: 0;
		transform: translateY(3rem);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* print */

@media print {

	#header {
		position: relative !important;
	}

	.main-fv {
		height: 95rem !important;
	}

	.fade-up {
		opacity: 1 !important;
		transform: translateY(0) !important;
		transition: none !important;
	}

	.business-flex-container {
		position: relative !important;
	}

	#business {
		height: auto !important;
		padding-bottom: 5rem !important;
	}

	#product {
		margin-top: 0 !important;
		padding-top: 5rem !important;
		z-index: 2 !important;
		display: block !important;

		.product-titles-subcontainer {
			opacity: 1 !important;
			transform: translateY(0) !important;
		}
	}

	#sustainability {
		padding-top: 5rem !important;
	}

	.pc-off {
		display: none !important;
	}

	.sp-off {
		display: block !important;
	}

	.gom-presentation-container {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
	}

	.gom-container.swiper-wrapper {
		display: none !important;
	}
}