@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
	--zenkaku: "Zen Kaku Gothic New", sans-serif;
	--robo: "Roboto", sans-serif;
	--obaby: "Oooh Baby", cursive;
}

/* --------------------------------------------------------------- */
/* 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: ease-in 0.3s all;
}
@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: none;
		opacity: 0.75;
	}
}

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;

	@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;
	}
}

/* WordPress WYSIWYG image alignment */
img.alignleft,
.alignleft img,
p.alignleft img,
p.alignleft a img {
	display: inline !important;
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
}

img.alignright,
.alignright img,
p.alignright img,
p.alignright a img {
	display: inline !important;
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

img.aligncenter,
.aligncenter img,
p.aligncenter img,
p.aligncenter a img {
	display: block !important;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}

.aligncenter,
p.aligncenter {
	display: block;
	text-align: center;
}

p.aligncenter a {
	display: block;
	text-align: center;
}

.alignleft,
.alignright,
p.alignleft,
p.alignright {
	max-width: 50%;
}

p.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
}

p.alignleft a {
	display: inline;
	float: left;
}

p.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

p.alignright a {
	display: inline;
	float: right;
}

p.aligncenter {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
	img.alignleft,
	img.alignright,
	.alignleft img,
	.alignright img,
	p.alignleft img,
	p.alignright img,
	p.alignleft a img,
	p.alignright a img {
		float: none;
		display: block !important;
		margin-left: auto;
		margin-right: auto;
	}

	.alignleft,
	.alignright,
	p.alignleft,
	p.alignright {
		max-width: 100%;
		text-align: center;
		float: none;
	}

	p.alignleft a,
	p.alignright a {
		display: block;
		float: 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;
}

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

.menu-active {
	overflow: hidden;
}

main {
	padding-top: 8.6rem;
	@media screen and (max-width: 767px) {
		padding-top: 6.8rem;
	}
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 8.6rem;
	padding-left: 3.9rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	background-color: #fff;
	@media screen and (max-width: 1080px) {
		padding-left: 2rem;
	}
	@media screen and (max-width: 767px) {
		height: 6.8rem;
	}
	.logomark {
		margin-right: 5.7rem;
		width: 21.3rem;
		@media screen and (max-width: 1080px) {
			margin-right: 3rem;
		}
		@media screen and (max-width: 767px) {
			margin-right: 0;
			width: 16rem;
		}
		& img {
			width: 100%;
			vertical-align: top;
		}
	}
	.nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		flex: 1;
		@media screen and (max-width: 767px) {
			background: #1b8b4f;
			padding: 7rem 2rem 4rem;
			flex-direction: column;
			top: 0;
			align-items: flex-start;
			width: 100%;
			height: 100vh;
			overflow-y: scroll;
			-webkit-overflow-scrolling: touch;
			justify-content: flex-start;
		}
		.main-list {
			display: flex;
			align-items: center;
			gap: 1.6rem;
			@media screen and (max-width: 1080px) {
				gap: 2rem;
			}
			@media screen and (max-width: 767px) {
				width: 100%;
				flex-direction: column;
				align-items: flex-start;
				margin-bottom: 2rem;
			}
			& li {
				position: relative;
				.dropdown-title,
				& a {
					cursor: pointer;
					transition: all 0.3s ease-in;
					font-style: normal;
					font-weight: 500;
					font-size: 1.6rem;
					line-height: 1.9rem;
					text-align: center;
					letter-spacing: 0.05em;
					color: #000000;
					@media screen and (max-width: 1080px) {
						font-size: 1.4rem;
					}
					@media screen and (max-width: 767px) {
						color: #fff;
					}
				}
				.dropdown-title:hover,
				& a:hover {
					color: #1b8b4f;
					@media screen and (max-width: 767px) {
						color: #fff;
						text-align: left;
					}
				}
				.dropdown-list {
					display: none;
					background-color: #f0f0f0;
					padding: 1.8rem 3.5rem 2rem 1.8rem;
					box-sizing: border-box;
					position: absolute;
					top: 3.1rem;
					@media screen and (max-width: 767px) {
						position: relative;
						background-color: unset;
						top: unset;
						padding: 1.4rem 1rem 1rem 0rem;
					}
					& li {
						margin-bottom: 2rem;
						@media screen and (max-width:767px){
						margin-bottom: 1rem;
						}
						& a {
							white-space: nowrap;
							font-style: normal;
							font-weight: 500;
							font-size: 1.6rem;
							line-height: 1.9rem;
							letter-spacing: 0.05em;
							text-decoration-line: underline;
							color: #1b8b4f;
							transition: all 0.3s ease-in;
							@media screen and (max-width: 767px) {
								color: #fff;
								font-size: 1.4rem;
								text-decoration: none;
							}
						}
						& a:hover {
							text-decoration: none;
							opacity: 0.75;
							transition: all 0.3s ease-in;
						}
					}
					& li:last-child {
						margin-bottom: 0;
					}
				}
			}
		}
		.sub-nav {
			display: flex;
			align-items: center;
			@media screen and (max-width: 767px) {
				flex-direction: column;
				align-items: flex-start;
				width: 100%;
			}
			.info-flex {
				display: flex;
				align-items: center;
				margin-right: 4rem;

				@media screen and (max-width: 767px) {
					margin-right: 0;
					flex-direction: column;
					width: 100%;
					margin-bottom: 2rem;
				}
				& a {
					display: flex;
					align-items: center;
					gap: 0.32rem;
					padding-right: 1.8rem;
					@media screen and (max-width: 767px) {
						margin-bottom: 1.6rem;
						width: 100%;
					}
					.text {
						font-family: "Roboto";
						font-style: normal;
						font-weight: 700;
						font-size: 3rem;
						line-height: 1;
						letter-spacing: 0.04em;
						color: #1b8b4f;
						@media screen and (max-width: 767px) {
							font-size: 2rem;
							color: #fff;
						}
					}
					& img {
						@media screen and (max-width: 767px) {
							width: 1.4rem;
							vertical-align: top;
							filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(349deg) brightness(104%) contrast(101%);
						}
					}
				}
				.schedule {
					font-style: normal;
					font-weight: 500;
					font-size: 1.4rem;
					line-height: 2rem;
					letter-spacing: 0.06em;
					color: #000000;
					padding-left: 1.8rem;
					box-sizing: border-box;
					position: relative;
					@media screen and (max-width: 767px) {
						color: #fff;
						padding-left: 0;
						width: 100%;
						padding-top: 1.6rem;
					}
					&:before {
						content: "";
						position: absolute;
						width: 1px;
						height: 3.7rem;
						left: 0;
						top: 50%;
						transform: translateY(-50%);
						background: #000000;
						@media screen and (max-width: 767px) {
							width: 100%;
							height: 1px;
							top: 0;
							left: 0;
							background-color: #fff;
							transform: none;
						}
					}
				}
			}
			.button {
				font-style: normal;
				font-weight: 700;
				font-size: 2rem;
				line-height: 1;
				text-align: center;
				letter-spacing: 0.05em;
				color: #ffffff;
				display: flex;
				justify-content: center;
				align-items: center;
				padding: 0 4rem;
				height: 8.6rem;
				@media screen and (max-width: 1080px) {
					padding: 0 2rem;
					font-size: 1.6rem;
				}
				@media screen and (max-width: 767px) {
					color: #1b8b4f;
					height: 6rem;
					width: 100%;
					margin-bottom: 2rem;
				}
			}
			.red-btn {
				background: #de4c27;
				@media screen and (max-width: 767px) {
					background: #fff;
				}
			}
			.green-btn {
				background: linear-gradient(180deg, #1c8c50 0%, #30af83 100%);
				@media screen and (max-width: 767px) {
					background: #fff;
				}
			}
		}
	}

	/* メニューボタン */
	.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: #1b8b4f;
			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: #1b8b4f;
				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: #1b8b4f;
					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;
		transition: ease-in-out 0.5s all;
	}
}

.menu-active {
	#header {
		z-index: 999;
		&:before {
			content: "";
			position: absolute;
			background-color: rgba(0, 0, 0, 90%);
			top: 0;
			left: 0;
			width: 100%;
			height: 100vh;
			z-index: 0;
		}
		.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;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* 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.4rem;
		letter-spacing: 0.1em;

		&:last-child {
			margin-right: 0;
			&:after {
				display: none;
			}
		}

		&:after {
			content: "";
			position: absolute;
			right: -2.4rem;
			top: 0.3rem;
			z-index: 3;
			display: block;
			width: 0.6rem;
			height: 1rem;
			background: url("../img/general/breadcrumb-arrow.png") no-repeat center / 100% auto;
			&:last-child:after {
				display: none;
			}
		}
	}
	& a {
		text-decoration: underline;
		color: #000;

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

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

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

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
	width: 100%;
	.contact {
		padding: 9rem 0;
		background: url("../img/footer/contact-bg.png") no-repeat center center / cover;
		@media screen and (max-width: 767px) {
			padding: 6rem 0;
		}
		.contact-contents {
			display: flex;
			flex-direction: column;
			align-items: center;
			.contact-header {
				margin-bottom: 3.4rem;
				font-style: normal;
				font-weight: 700;
				font-size: 4.2rem;
				line-height: 1;
				letter-spacing: 0.1em;
				color: #ffffff;
				@media screen and (max-width: 767px) {
					font-size: 2.2rem;
					line-height: 1.6;
				}
			}
			.description {
				margin-bottom: 5rem;
				font-style: normal;
				font-weight: 500;
				font-size: 1.8rem;
				line-height: 1.56;
				text-align: center;
				letter-spacing: 0.1em;
				color: #ffffff;
				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
					line-height: 1.6;
				}
			}
			.button-flex {
				display: flex;
				gap: 7.9rem;
				@media screen and (max-width: 767px) {
					gap: 2rem;
					flex-direction: column;
					width: 100%;
				}
				& a {
					width: 47.7rem;
					height: 13.3rem;
					background-color: #fff;
					border-radius: 8.55rem;
					display: flex;
					justify-content: center;
					align-items: center;
					@media screen and (max-width: 767px) {
						width: 100%;
						height: 9rem;
					}
					.phone-container {
						display: flex;
						flex-direction: column;
						align-items: center;
						.phone-flex {
							display: flex;
							margin-bottom: 0.6rem;
							align-items: center;
							& img {
								width: 3.9rem;
								vertical-align: middle;
								margin-bottom: -0.6rem;
								@media screen and (max-width: 767px) {
									width: 2.6rem;
									margin-bottom: -0.4rem;
								}
							}
							.text {
								font-family: var(--robo);
								font-style: normal;
								font-weight: 700;
								font-size: 4.6rem;
								line-height: 1;
								letter-spacing: 0.04em;
								color: #de4c27;
								@media screen and (max-width: 767px) {
									font-size: 2.6rem;
								}
							}
						}
						.info {
							font-style: normal;
							font-weight: 500;
							font-size: 2rem;
							line-height: 2.6rem;
							text-align: center;
							letter-spacing: 0.06em;
							color: #000000;
							@media screen and (max-width: 767px) {
								font-size: 1.4rem;
								line-height: 1.6;
							}
						}
					}
					.mail-flex {
						display: flex;
						align-items: center;
						gap: 0.6rem;
						& img {
							width: 3rem;
							vertical-align: middle;
							@media screen and (max-width: 767px) {
								width: 2rem;
							}
						}
						.text {
							font-style: normal;
							font-weight: 700;
							font-size: 2.4rem;
							line-height: 1;
							text-align: center;
							letter-spacing: 0.1em;
							color: #000000;
							@media screen and (max-width: 767px) {
								font-size: 1.6rem;
								line-height: 1.6;
							}
						}
					}
				}
			}
		}
	}
	.footer-main {
		width: 100%;
		background-color: #1b8b4f;
		padding-top: 7rem;
		padding-bottom: 2rem;
		@media screen and (max-width: 767px) {
			padding-top: 6rem;
			padding-bottom: 3rem;
		}
		.f-flex {
			margin-bottom: 5rem;
			display: flex;
			justify-content: space-between;
			@media screen and (max-width: 767px) {
				margin-bottom: 3rem;
				flex-direction: column;
			}
			.f-logo-txt {
				.f-logo {
					width: 24rem;
					margin-bottom: 2.4rem;
					@media screen and (max-width: 767px) {
						width: 16rem;
						margin-bottom: 1.6rem;
					}
					& img {
						width: 100%;
						vertical-align: top;
					}
				}
				.address {
					font-style: normal;
					font-weight: 700;
					font-size: 1.4rem;
					line-height: 2.2rem;
					letter-spacing: 0.1em;
					color: #ffffff;
					@media screen and (max-width: 767px) {
						font-size: 1.3rem;
						line-height: 1.6;
						margin-bottom: 2rem;
					}
				}
			}
			.nav-links {
				display: flex;
				gap: 5.8rem;
				@media screen and (max-width: 767px) {
					gap: 2rem 0;
					flex-wrap: wrap;
				}
				& ul {
					@media screen and (max-width: 767px) {
						width: 48%;
					}
					& li {
						margin-bottom: 2rem;
						@media screen and (max-width: 767px) {
							margin-bottom: 1rem;
						}
						& div,
						& a {
							font-style: normal;
							font-weight: 500;
							font-size: 1.6rem;
							line-height: 1;
							letter-spacing: 0.1em;
							text-transform: uppercase;
							color: #ffffff;
							@media screen and (max-width: 767px) {
								font-size: 1.4rem;
							}
						}
					}
				}
			}
		}
		.copyright-container {
			width: 100%;
			display: flex;
			justify-content: flex-end;
			.copyright {
				font-style: normal;
				font-weight: 400;
				font-size: 1.2rem;
				line-height: 1.45;
				letter-spacing: 0.1em;
				color: #ffffff;
				text-align: right;
				@media screen and (max-width: 767px) {
					font-size: 1rem;
					line-height: 1.45;
				}
			}
		}
	}
}

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

	@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;
}
.w1700 {
	max-width: 170rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* common page banner */
/* --------------------------------------------------------------- */
.page-banner-wrapper {
	width: 100%;
	position: relative;
	padding-bottom: 12rem;
	@media screen and (max-width: 767px) {
		padding-bottom: 5rem;
		margin-bottom: 5rem;
	}
	.business-title {
		font-style: normal;
		font-weight: 700;
		font-size: 2.8rem;
		line-height: 1;
		text-align: left;
		letter-spacing: 0.1em;
		color: #ffffff;
		margin-bottom: 0.4rem;
		position: relative;
		@media screen and (max-width: 767px) {
			font-size: 1.8rem;
			margin-bottom: 1.2rem;
		}
		&:after {
			content: "";
			width: 11.9rem;
			position: absolute;
			height: 0.2rem;
			background-color: #ffffff;
			left: 13.3rem;
			top: 50%;
			transform: translateY(-50%);
			@media screen and (max-width: 767px) {
				height: 0.1rem;
				left: 9.3rem;
				width: 7.9rem;
			}
		}
	}
	.common-banner-title {
		background-color: #1b8b4f;
		width: 60%;
		height: 31.2rem;
		padding: 10.2rem 24rem 0;
		box-sizing: border-box;
		margin-bottom: 11.4rem;
		@media screen and (max-width: 767px) {
			width: 30.9rem;
			height: 16.4rem;
			padding: 2.2rem 2rem;
			margin-bottom: 0;
		}
		.title-main {
			margin-bottom: 3rem;
			font-family: var(--zenkaku);
			font-style: normal;
			font-weight: 700;
			font-size: 8rem;
			line-height: 9.2rem;
			letter-spacing: 0.1em;
			color: #ffffff;
			white-space: nowrap;
			@media screen and (max-width: 767px) {
				font-size: 3rem;
				line-height: 1;
				margin-bottom: 1.3rem;
			}
		}
		.title-sub {
			font-style: normal;
			font-weight: 700;
			font-size: 3rem;
			line-height: 1;
			letter-spacing: 0.08em;
			color: #ffffff;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
			}
		}
	}
	.banner-img {
		width: 85.2rem;
		position: absolute;
		top: 6.3rem;
		left: 98.1rem;
		overflow: hidden;
		@media screen and (max-width: 767px) {
			position: absolute;
			width: 24.5rem;
			top: unset;
			left: unset;
			right: 0;
			bottom: 0;
		}
		& img {
			width: 100%;
			vertical-align: top;
			-webkit-animation: smooth-panning 5s ease-out both;
			animation: smooth-panning 5s ease-out both;
		}
	}
}

/* ------------------------------------------- */
/* banner image animation */
/* ------------------------------------------- */
@keyframes smooth-panning {
	0% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
		-webkit-transform-origin: 50% 84%;
		transform-origin: 50% 84%;
	}
	100% {
		-webkit-transform: scale(1.083) translateY(5px);
		transform: scale(1.083) translateY(5px);
		-webkit-transform-origin: bottom;
		transform-origin: bottom;
	}
}

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

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title001 {
	display: flex;
	align-items: baseline;
	gap: 2rem;
	margin-bottom: 6rem;
	@media screen and (max-width: 767px) {
		gap: 1rem;
		margin-bottom: 3rem;
	}
	.jp {
		font-style: normal;
		font-weight: 700;
		font-size: 3.2rem;
		line-height: 1;
		letter-spacing: 0.1em;
		color: #000000;
		@media screen and (max-width: 767px) {
			font-size: 2.2rem;
		}
	}
	.en {
		font-style: normal;
		font-weight: 700;
		font-size: 2rem;
		line-height: 1;
		letter-spacing: 0.08em;
		text-transform: capitalize;
		color: #1b8b4f;
		@media screen and (max-width: 767px) {
			font-size: 1.8rem;
		}
	}
}
/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

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

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* 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: 5rem;
		}
		& 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: #1b8b4f;
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: #1b8b4f;
				}
			}
			@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: 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.8rem;
		width: 5rem;
		height: 5rem;
		font-family: "Roboto", sans-serif;
		font-weight: bold;
		letter-spacing: 0.08em;
		color: #1b8b4f;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		/* border-radius: 0.4em; */
		border: 0.2rem solid #1b8b4f;

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

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

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

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

		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			width: 5rem;
			height: 5rem;
			font-size: 0;
			font-family: "Roboto", sans-serif;
			font-weight: bold;
			letter-spacing: 0.08em;
			text-decoration: none;
			color: #000;
			background: #fff;
			border: 0.1rem solid #1b8b4f;
			transition: ease 0.25s background, ease 0.25s color;

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

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					color: #fff;
					background-color: #1b8b4f;
					&:after {
						border-top-color: #fff;
					}
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.1rem solid #1b8b4f;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		@media screen and (min-width: 767.01px) {
			margin-right: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-right: 1rem;
		}
		& a {
			&:after {
				left: 50%;
				margin-left: -0.2rem;
				border-left: 0.1rem solid #1b8b4f;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-left-color: #fff;
				}
			}
		}
	}
	.next {
		@media screen and (min-width: 767.01px) {
			margin-left: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-left: 1rem;
			/*right: 0;*/
		}
		& a {
			&:after {
				right: 50%;
				margin-right: -0.2rem;
				border-right: 0.1rem solid #1b8b4f;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-right-color: #fff;
				}
			}
		}
	}
}

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

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

/* news */

.common-list.article {
	width: 100%;
	margin-bottom: 4rem;
	@media screen and (max-width: 767px) {
		margin-bottom: 3rem;
	}
	& li {
		& a {
			width: 100%;
			padding-bottom: 3rem;
			transition: ease-in 0.3s all;
			border-bottom: #acacac 1px solid;
			margin-bottom: 3rem;
			@media screen and (max-width: 767px) {
				padding-bottom: 1.6rem;
				margin-bottom: 1.6rem;
			}
			.date-cat-flex {
				display: flex;
				gap: 1.2rem;
				@media screen and (max-width: 767px) {
					gap: 1rem;
				}
				.list-date {
					font-family: var(--robo);
					font-style: normal;
					font-weight: 500;
					font-size: 1.6rem;
					line-height: 2.6rem;
					letter-spacing: 0.05em;
					color: #1b8b4f;
					@media screen and (max-width: 767px) {
						font-size: 1.4rem;
						line-height: 1.6;
					}
				}
				.list-category {
					display: flex;
					gap: 1rem;
					flex-wrap: wrap;
					margin-bottom: 1.8rem;
					@media screen and (max-width: 767px) {
						margin-bottom: 1rem;
					}
					& span {
						font-style: normal;
						font-weight: 700;
						font-size: 1.4rem;
						line-height: 1;
						letter-spacing: 0.05em;
						color: #ffffff;
						padding: 0.4rem 1.1rem;
						box-sizing: border-box;
						border-radius: 1.4rem;
						background-color: #1b8b4f;
						@media screen and (max-width: 767px) {
							font-size: 1.2rem;
							padding: 0.3rem 0.9rem;
						}
					}
				}
			}
			.list-title {
				font-style: normal;
				font-weight: 500;
				font-size: 1.8rem;
				line-height: 1.4;
				letter-spacing: 0.08em;
				color: #000000;
				transition: ease-in 0.3s all;
				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
					line-height: 1.6;
				}
			}
		}
		& a:hover {
			border-bottom: #1b8b4f 1px solid;
			.list-title {
				color: #1b8b4f;
			}
		}
	}
}

/* black-btn */

.black-btn-container {
	width: 100%;
	display: flex;
	justify-content: center;
}
.black-btn {
	background-color: #000;
	width: 35.2rem;
	height: 7.1rem;
	border-radius: 5.5rem;
	display: flex;
	align-items: center;
	padding-left: 4rem;
	position: relative;
	@media screen and (max-width: 767px) {
		width: 22rem;
		height: 5rem;
		padding-left: 2rem;
	}
	.text {
		font-style: normal;
		font-weight: 900;
		font-size: 2rem;
		line-height: 1;
		letter-spacing: 0.1em;
		color: #ffffff;
		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
		}
	}
	& img {
		position: absolute;
		width: 0.7rem;
		right: 2rem;
		top: 50%;
		transform: translateY(-50%);
	}
}

#works {
	width: 100%;
	padding-top: 11rem;
	padding-bottom: 11rem;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	.gray-box {
		background: #ebebeb;
		padding: 6rem 11.1rem;
		position: relative;
		margin-bottom: 6rem;
		@media screen and (max-width: 767px) {
			margin-bottom: 3rem;
			padding: 4rem 5rem;
		}
		.slider {
			.box {
				padding: 0 2.5rem;
				cursor: pointer;
				transition: all 0.3s ease-in-out;
				@media screen and (max-width: 767px) {
					padding: 0;
				}
				.img-container {
					width: 100%;
					margin-bottom: 1.4rem;
					@media screen and (max-width: 767px) {
						margin-bottom: 1rem;
					}
					& img {
						width: 100%;
						vertical-align: top;
					}
				}
				.green-label {
					font-style: normal;
					font-weight: 700;
					font-size: 2rem;
					line-height: 1;
					letter-spacing: 0.1em;
					color: #ffffff;
					background-color: #1b8b4f;
					padding: 0.5rem 1.45rem;
					box-sizing: border-box;
					margin-bottom: 1.2rem;
					display: inline-block;
					@media screen and (max-width: 767px) {
						font-size: 1.4rem;
						padding: 0.4rem 1rem;
						margin-bottom: 1rem;
					}
				}
				.description {
					font-style: normal;
					font-weight: 400;
					font-size: 1.8rem;
					line-height: 1;
					letter-spacing: 0.1em;
					color: #000000;
					@media screen and (max-width: 767px) {
						font-size: 1.4rem;
					}
				}
			}
			.box:hover {
				opacity: 0.7;
			}
		}
		.prev-btn {
			position: absolute;
			left: 2.5rem;
			top: 50%;
			transform: translateY(-50%);
			cursor: pointer;
			width: 6rem;
			transition: all 0.3s ease-in;
			@media screen and (max-width: 767px) {
				width: 3rem;
				left: 1rem;
			}
			& img {
				width: 100%;
				vertical-align: top;
			}
		}
		.next-btn {
			position: absolute;
			right: 2.5rem;
			top: 50%;
			transform: translateY(-50%);
			cursor: pointer;
			width: 6rem;
			transition: all 0.3s ease-in;
			@media screen and (max-width: 767px) {
				width: 3rem;
				right: 1rem;
			}
			& img {
				width: 100%;
				vertical-align: top;
			}
		}
		.prev-btn,
		.next-btn {
			&:hover {
				opacity: 0.7;
			}
		}
	}
}

/* ====================== */
/* Business pages common  */
/* ====================== */

.business-header {
	font-style: normal;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 138%;
	text-align: center;
	letter-spacing: 0.1em;
	color: #000000;
	position: relative;
	margin-bottom: 7.2rem;
	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
		margin-bottom: 5rem;
	}
	&:after {
		content: "";
		position: absolute;
		width: 9rem;
		height: 0.8rem;
		background-color: #1b8b4f;
		left: 50%;
		transform: translateX(-50%);
		bottom: -2.4rem;
		@media screen and (max-width: 767px) {
			width: 6.5rem;
			height: 0.4rem;
			bottom: -1.8rem;
		}
	}
}

#top-block {
	padding-bottom: 11rem;
	@media screen and (max-width: 767px) {
		padding-bottom: 5rem;
	}
	.green-header {
		font-style: normal;
		font-weight: 700;
		font-size: 3.2rem;
		line-height: 138%;
		text-align: center;
		letter-spacing: 0.1em;
		color: #1b8b4f;
		margin-bottom: 2.4rem;
		@media screen and (max-width: 767px) {
			font-size: 1.8rem;
			margin-bottom: 2rem;
			text-align: left;
		}
	}
	.description {
		font-style: normal;
		font-weight: 400;
		font-size: 1.6rem;
		line-height: 175%;
		text-align: center;
		letter-spacing: 0.06em;
		color: #000000;
		margin-bottom: 5rem;
		@media screen and (max-width: 767px) {
			margin-bottom: 2rem;
			font-size: 1.4rem;
			line-height: 160%;
			text-align: left;
		}
	}
	.ellipse-flex.maintenance {
		flex-wrap: wrap;
		width: 62rem;
		margin: 0 auto;
		@media screen and (max-width: 767px) {
			width: 100%;
		}
	}
	.ellipse-flex {
		display: flex;
		justify-content: center;
		gap: 2.4rem;
		@media screen and (max-width: 767px) {
			gap: 1rem;
			flex-wrap: wrap;
		}
		.ellipse {
			position: relative;
			width: 18.8rem;
			height: 18.8rem;
			border-radius: 18.8rem;
			background-color: #1b8b4f;
			font-style: normal;
			font-weight: 700;
			font-size: 2.2rem;
			line-height: 1;
			text-align: center;
			/* letter-spacing: 0.06em; */
			letter-spacing: 0;
			color: #ffffff;
			display: flex;
			justify-content: center;
			align-items: center;
			border: #c0e4d1 1rem solid;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
				width: 13rem;
				height: 13rem;
				border-radius: 13rem;
				border: #c0e4d1 0.8rem solid;
			}
		}
		.text {
			position: absolute;
			right: -6rem;
			bottom: 0;
			color: #000;
			font-style: normal;
			font-weight: 400;
			font-size: 1.6rem;
			line-height: 1;
			letter-spacing: 0.06em;
			@media screen and (max-width: 767px) {
				font-size: 1.3rem;
				right: -4rem;
			}
		}
	}
}

#the-work {
	background-color: #f0f0f0;
	padding-top: 10rem;
	padding-bottom: 8rem;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
		padding-bottom: 4rem;
	}
	.white-box {
		width: 100%;
		padding: 4rem 4.5rem;
		box-sizing: border-box;
		background-color: #ffffff;
		margin-bottom: 3rem;
		@media screen and (max-width: 767px) {
			padding: 3rem 2rem;
			margin-bottom: 2rem;
		}
		.title {
			font-style: normal;
			font-weight: 700;
			font-size: 2.4rem;
			line-height: 1;
			letter-spacing: 0.1em;
			color: #1b8b4f;
			margin-bottom: 1.2rem;
			@media screen and (max-width: 767px) {
				font-size: 1.8rem;
				margin-bottom: 1rem;
			}
		}
		.description {
			font-style: normal;
			font-weight: 400;
			font-size: 1.8rem;
			line-height: 1.5;
			letter-spacing: 0.06em;
			color: #000000;
			margin-bottom: 4rem;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
				margin-bottom: 2rem;
			}
		}
		& table {
			width: 100%;
			& tr {
				border-bottom: #fff 2.5rem solid;
				@media screen and (max-width: 767px) {
					border-bottom: #fff 2rem solid;
				}
			}
			& th {
				width: 18.8rem;
				font-style: normal;
				font-weight: 700;
				font-size: 1.8rem;
				line-height: 1;
				text-align: center;
				letter-spacing: 0.1em;
				color: #ffffff;
				background-color: #1b8b4f;
				padding: 0.7rem 1.4rem;
				box-sizing: border-box;
				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
					display: block;
					width: 100%;
					text-align: left;
				}
			}
			& td {
				width: calc(100% - 18.8rem);
				font-style: normal;
				font-weight: 400;
				font-size: 1.6rem;
				line-height: 1.8rem;
				letter-spacing: 0.06em;
				color: #000000;
				padding: 0.7rem 1.4rem;
				box-sizing: border-box;
				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
					display: block;
					width: 100%;
					line-height: 1.5;
				}
			}
			& tr:last-child {
				border-bottom: none;
			}
		}
	}
}

#features {
	padding-top: 11rem;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
	}
	.card-flex {
		width: 100%;
		display: flex;
		justify-content: space-between;
		@media screen and (max-width: 767px) {
			flex-direction: column;
		}
		.card {
			width: 38.1rem;
			padding: 4rem 3.4rem;
			box-sizing: border-box;
			background-color: #f0f0f0;
			@media screen and (max-width: 767px) {
				width: 100%;
				padding: 3rem 2rem;
				margin-bottom: 2rem;
			}
			.green-title {
				margin-bottom: 2rem;
				font-style: normal;
				font-weight: 700;
				font-size: 2.6rem;
				line-height: 131%;
				text-align: center;
				letter-spacing: 0.09em;
				color: #1b8b4f;
				min-height: 6.8rem;
				display: flex;
				align-items: center;
				justify-content: center;
				@media screen and (max-width: 767px) {
					margin-bottom: 1rem;
					font-size: 1.8rem;
					min-height: auto;
				}
			}
			.description {
				margin-bottom: 2.4rem;
				font-style: normal;
				font-weight: 400;
				font-size: 1.6rem;
				line-height: 150%;
				/* letter-spacing: 0.1em; */
				letter-spacing: 0.05em;
				color: #000000;
				min-height: 12rem;
				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
					margin-bottom: 1rem;
					min-height: auto;
				}
			}
			.thumbnail {
				width: 100%;
				& img {
					width: 100%;
					vertical-align: top;
				}
			}
		}
	}
}
