@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* --------------------------------------------------
	CSS Reset
-------------------------------------------------- */
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%;
	vertical-align: baseline;
	background: transparent;
}
html {
	scroll-behavior: smooth;
}
body {
	position: relative;
	line-height: 1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
}
ul,ol {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
a:link,
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover,
a:active {
	color: #000;
	text-decoration: underline;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
html {
	font-family: "Noto Sans JP", sans-serif;
}
h1,h2,h3,h4,h5,h6,
dt,dd,li,form,input,select,textarea,
p,address,pre,blockquote,th,td,div {
	font-size: 16px;
	line-height: 1.6;
	color: #000;
	font-feature-settings: "palt";
}
img {
	width: 100%;
	vertical-align: top;
}
a,
a img {
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
a:hover img { opacity: 0.7; }
sup {
	font-size: 60%;
	vertical-align: text-top;
}
sub {
	font-size: 60%;
	vertical-align: text-bottom;
}


/* --------------------------------------------------
	Clearfix
-------------------------------------------------- */
.clearfix:after {
	content: '';
	display: block;
	clear: both;
}
.clearfix { *zoom: 1; }

/* --------------------------------------------------
	.pc-only, .sp-only
-------------------------------------------------- */
@media screen and (min-width: 769px) {
	.sp-only { display: none; }
}
@media screen and (max-width: 768px) {
	.pc-only { display: none; }
}


/* --------------------------------------------------
	.anchor
-------------------------------------------------- */
.anchor { transform: translate(0,-100px); }
@media screen and (max-width: 768px) {
	.anchor { transform: translate(0,-2.6667vw); }
}

/* --------------------------------------------------
	.inner
-------------------------------------------------- */
.inner {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
}
@media screen and (max-width: 1240px) {
	.inner {
		margin: 0 20px;
	}
}
@media screen and (max-width: 768px) {
	.inner {
		margin: 0 auto;
	}
}

/* --------------------------------------------------
	.header
-------------------------------------------------- */
.header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	background-color: transparent;
}
.header .inner {
	padding-top: 45px;
	max-width: 1400px;
	height: 145px;
	box-sizing: border-box;
	transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.header h1 {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translate(0,-50%);
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	color: #fff;
	letter-spacing: 0.05em;
	text-shadow: 7px 0 9px #102b14, -7px 0 9px #102b14, 0 7px 9px #102b14, 0 -7px 9px #102b14;
	transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.scrolled .header {
  background: rgba(0, 160, 0, 0.8);
}
.scrolled .header .inner {
	padding-top: 22px;
	height: 100px;
}
.scrolled .header h1 {
	text-shadow: none;
}
@media screen and (max-width: 1440px) {
	.header .inner {
		margin-left: 20px;
		margin-right: 20px;
	}
	.header h1 {
		left: 0;
	}
}
@media screen and (max-width: 1320px) {
	.header h1 {
		font-size: 26px;
	}
}
@media screen and (max-width: 1250px) {
	.header .inner {
		padding-top: 22px;
		height: 100px;
	}
	.header h1 {
		font-size: 30px;
	}
}
@media screen and (max-width: 768px) {
	.header .inner {
		margin-left: 0;
		margin-right: 0;
		padding-top: 0;
		max-width: 100%;
		height: auto;
	}
	.header h1 {
		display: none;
	}
	.scrolled .header {
	  background: transparent;
	}
	.scrolled .header .inner {
		padding-top: 0;
		height: auto;
	}
}

/* --------------------------------------------------
	.gnav
-------------------------------------------------- */
.menu-bg,
.menu-btn {
	display: none;
	cursor: pointer;
}
.gnav {
	position: relative;
}
.gnav-parent {
	display: flex;
	justify-content: end;
	gap: 10px;
	margin-left: auto;
}
.gnav-parent > li {
	width: 180px;
	height: 55px;
}
.gnav-parent > li > a,
.gnav-parent > li > span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 28px;
  font-weight : 700;
  line-height : 1;
  letter-spacing : 0.05em;
  color: #00a000;
}
.gnav-parent > li:hover > a,
.gnav-parent > li:hover > span {
	background-color: #00a000;
	color: #fff;
	text-decoration: none;
	transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.gnav-parent > li > a > span,
.gnav-parent > li > span > span,
.gnav-child > li > a > span {
	position: relative;
	z-index: 2;
	padding-right: 1.3em;
	padding-left: 1.3em;
}
.gnav-parent > li > span > span,
.gnav-child > li > a > span {
	padding-left: 0;
}
.gnav-parent > li > a > span::after,
.gnav-child > li > a > span::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: 7px;
	height: 13px;
	background: url("../img/gnav_icon_arrow.svg") no-repeat;
	background-size: contain;
}
.gnav-parent > li > span > span::after,
.gnav-parent > li > span > span::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: 14px;
	height: 2px;
	background-color: #FFE800;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.gnav-parent > li > span > span::after {
	transform: translate(0,-50%) rotate(90deg);
}
.gnav-parent > li:hover > span > span::after {
	transform: translate(0,-50%) rotate(0);
}
.gnav-haschild {
	position: relative;
}
.gnav-haschild::before {
	content: '';
	position: absolute;
	left: 0;
	top: 28px;
	display: block;
	width: 100%;
	background-color: #00A000;
	height: calc(28px + 24px + 10px);
	opacity: 0;
	transform: translate(0,-20px);
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.gnav-haschild:hover::before {
	transform: none;
	opacity: 1;
}
.gnav-child {
	display: block;
	margin-top: 24px;
	padding: 20px 0;
	width: 380px;
	background-color: #00A000;
	border-radius: 10px;
	box-sizing: border-box;
	opacity: 0;
	transform: translate(0,-20px);
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	pointer-events: none;
}
.gnav-parent > li:hover > .gnav-child {
	transform: none;
	opacity: 1;
	pointer-events: auto;
}
.gnav-child > li > a {
	display: block;
	padding: 14px 30px;
  font-weight : 700;
  line-height : 1;
  letter-spacing : 0.05em;
  color: #fff;
}
.gnav-child > li > a:hover {
	text-decoration: none;
	opacity: 0.7;
}
@media screen and (max-width: 1250px) {
	body.gnav-open {
	}
	.menu-bg {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 9;
		display: block;
		width: 100%;
		height: 100%;
		background: #00a000;
		opacity: 0;
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
		cursor: pointer;
		pointer-events: none;
	}
	.gnav-open .menu-bg {
		opacity: 1;
		pointer-events: auto;
	}
	.menu-btn {
		display: block;
		position: absolute;
		right: 0;
		top: 20px;
		z-index: 11;
		width: 60px;
		height: 60px;
		border-radius: 4px;
		background: #00a000;
		cursor: pointer;
	}
	.menu-btn span {
		position: absolute;
		left: 50%;
		top: 50%;
		display: block;
		width: 45px;
		height: 4px;
		border-radius: 2px;
		background: #fff;
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	.menu-btn span:nth-child(1) { transform: translate(-50%,-18px); }
	.menu-btn span:nth-child(2) { transform: translate(-50%,-50%); }
	.menu-btn span:nth-child(3) { transform: translate(-50%,15px); }
	.gnav-open .menu-btn span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); background-color: #fff; width: 60px; }
	.gnav-open .menu-btn span:nth-child(2) { transform: translate(-50%,-50%) rotate(0); background-color: transparent; }
	.gnav-open .menu-btn span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); background-color: #fff; width: 60px; }
	.header nav {
		display: block;
		height: 100px;
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
		pointer-events: none;
	}
	.gnav-open .header nav {
		height: 100vh;
	}
	.header nav::-webkit-scrollbar {
		display: none;
	}
	.gnav-open .header nav {
		pointer-events: auto;
	}
	.gnav {
		z-index: 10;
		margin-top: 100px;
		margin-bottom: 200px;
		margin-left: auto;
		margin-right: auto;
		max-width: 800px;
	}
	.gnav-parent {
		position: relative;
		display: block;
		left: 150%;
		width: 100%;
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	.gnav-open .gnav-parent {
		left: 0;
	}
	.gnav-parent > li {
		width: 100%;
		height: auto;
	}
	.gnav-parent > li > a,
	.gnav-parent > li > span {
		display: block;
		padding: 20px;
		background-color: transparent;
		font-size: 26px;
	  color: #fff;
	}
	.gnav-parent > li > a > span,
	.gnav-parent > li > span > span,
	.gnav-child > li > a > span {
		padding-right: 2em;
		padding-left: 0;
	}
	.gnav-parent > li > a > span::after,
	.gnav-child > li > a > span::after {
		width: 10px;
		height: 20px;
	}
	.gnav-parent > li > span > span::after,
	.gnav-parent > li > span > span::before {
		display: none;
	}
	.gnav-haschild::before {
		display: none;
	}
	.gnav-child {
		margin-top: 0;
		padding: 0;
		width: 100%;
		background-color: transparent;
		border-radius: 0;
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}
	.gnav-child > li > a {
		padding-left: 2em;
		font-size: 26px;
	}
}
@media screen and (max-width: 768px) {
	.menu-btn {
		right: 5.3334vw;
		top: 5.3334vw;
		width: 10.6667vw;
		height: 10.6667vw;
		border-radius: 0.6667vw;
	}
	.menu-btn span {
		width: 7.3334vw;
		height: 0.8vw;
		border-radius: 0.4vw;
	}
	.menu-btn span:nth-child(1) { transform: translate(-50%,-3.0667vw); }
	.menu-btn span:nth-child(2) {}
	.menu-btn span:nth-child(3) { transform: translate(-50%,2.6667vw); }
	.gnav-open .menu-btn span:nth-child(1) { width: 13.3334vw; }
	.gnav-open .menu-btn span:nth-child(2) {}
	.gnav-open .menu-btn span:nth-child(3) { width: 13.3334vw; }
	.header nav {
		height: 22.6667vw;
	}
	.gnav-open .header nav {
		height: 100vh;
	}
	.gnav {
		margin-top: 22.6667vw;
		margin-bottom: 22.6667vw;
	}
	.gnav-parent {
		left: 100%;
	}
	.gnav-parent > li > a,
	.gnav-parent > li > span {
		padding: 4.6667vw 0 4.6667vw 8vw;
		font-size: 5.3334vw;
	}
	.gnav-parent > li > a > span,
	.gnav-parent > li > span > span,
	.gnav-child > li > a > span {
		padding-right: 7.3334vw;
	}
	.gnav-parent > li > a > span::after,
	.gnav-child > li > a > span::after {
		width: 1.7334vw;
		height: 3.4667vw;
	}
	.gnav-child > li > a {
		padding: 4.6667vw 0 4.6667vw 8vw;
		font-size: 4.4vw;
	}
}

/* --------------------------------------------------
	.main-contents
-------------------------------------------------- */
.main-contents {
	margin: 0 auto;
}
section h2 {
	margin-bottom: 50px;
  font-weight: 700;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0.24em;
	text-align: center;
}
section h2 span::after {
	content: '';
	display: block;
	margin: 13px auto 0;
	width: 60px;
	height: 3px;
	background: #ffe800;
}
@media screen and (max-width: 768px) {
	.main-contents {
		overflow: hidden;
	}
	section h2 {
		margin-bottom: 6.6667vw;
	  font-size: 6.2vw;
	}
	section h2 span::after {
		margin-top: 2.1334vw;
		width: 12vw;
		height: 0.6667vw;
	}
}

/* --------------------------------------------------
	.pagetop
-------------------------------------------------- */
.pagetop-wrap {
	position: relative;
	margin-bottom: -40px;
	width: 100%;
	height: 80px;
}
.btn-pagetop {
	position: absolute;
	right: 50px;
	bottom: 0;
	z-index: 7;
	width: 80px;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s linear;
}
.visible-pagetop .btn-pagetop {
	opacity: 1;
	pointer-events: auto;
}
.fixed-pagetop .btn-pagetop {
	position: fixed;
}
@media screen and (max-width: 768px) {
	.pagetop-wrap {
		margin-bottom: 1.6vw;
		height: 13.3334vw;
	}
	.btn-pagetop {
		right: 2vw;
		width: 13.3334vw;
	}
}

/* --------------------------------------------------
	.footer
-------------------------------------------------- */
.footer {
	background-color: #000;
}
.footer .inner {
	padding-top: 40px;
	padding-bottom: 10px;
}
.footer .companyname {
	margin-bottom: 40px;
	line-height: 1;
	color: #FFF;
	text-align: center;
}
.footer .copyright {
	font-size: 12px;
	font-weight: 300;
	line-height: 1;
	color: #FFF;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.footer .inner {
		padding-top: 6vw;
		padding-bottom: 2vw;
	}
	.footer .companyname {
		margin-bottom: 4.6667vw;
		font-size: 3.8667vw;
	}
	.footer .copyright {
		font-size: 2.4vw;
	}
}

/* --------------------------------------------------
	.kv
-------------------------------------------------- */
.kv {
	margin-bottom: 120px;
	height: 900px;
	background: url("../img/kv_pc.png") no-repeat;
	background-size: cover;
}
.kv .inner {
	display: flex;
	justify-content: end;
	align-items: end;
	padding: 80px 35px;
	max-width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.kv h1 {
	display: none;
}
.kv .inner p {
	text-align: left;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.43;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}
@media screen and (max-width: 768px) {
	.kv {
		margin-bottom: 20vw;
		height: 160vw;
		background-image: url("../img/kv_sp.png");
	}
	.kv .inner {
		justify-content: start;
		padding: 0 0 8.6667vw 9.3334vw;
	}
	.kv h1 {
		display: block;
		position: absolute;
		left: 4.6667vw;
		top: 8.6667vw;
		font-size: 4.4vw;
		font-weight: 900;
		line-height: 1;
		color: #fff;
		letter-spacing: 0.05em;
		text-shadow: 4px 0 5px #102b14, -4px 0 5px #102b14, 0 4px 5px #102b14, 0 -4px 5px #102b14;
	}
	.kv .inner p {
		text-align: left;
	  font-weight : 700;
	  font-size : 6.5334vw;
	  line-height : 1.55;
	  letter-spacing : 0.1em;
	  color: #fff;
	  text-shadow: 1px 1px 0 #000;
	}
}

/* --------------------------------------------------
	.company
-------------------------------------------------- */
.company { margin-bottom: 120px; }
.company table {
	margin: 0 auto;
	width: 460px;
}
.company table th {
	width: 125px;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
}
.company table td {
	font-size: 18px;
	font-weight: 300;
	line-height: 2;
}
@media screen and (max-width: 768px) {
	.company { margin-bottom: 18.6667vw; }
	.company table {
		width: 89.3334vw;
	}
	.company table th {
		width: 22vw;
		font-size: 3.6vw;
	}
	.company table td {
		font-size: 3.6vw;
	}
}

/* --------------------------------------------------
	.access
-------------------------------------------------- */
.access { margin-bottom: 140px; }
.access h2 {
	margin-bottom: 32px;
}
.access .map {
	margin: 0 auto 42px;
	width: 1200px;
	height: 420px;
}
.access .map iframe {
	width: 100%;
	height: 100%;
}
.access address {
	margin-bottom: 30px;
}
.access address p {
	font-size: 24px;
	font-style: normal;
	letter-spacing: 0.05em;
	text-align: center;
}
.access .guide {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.64;
	letter-spacing: 0.05em;
	text-align: center;
}
@media screen and (max-width: 1240px) {
	.access .inner {
		margin: 0 auto;
	}
	.access address {
		padding: 0 20px;
	}
	.access .guide {
		padding: 0 20px;
	}
}
@media screen and (max-width: 1200px) {
	.access .map {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.access { margin-bottom: 18.6667vw; }
	.access h2 {
		margin-bottom: 7.4667vw;
	}
	.access .map {
		margin-bottom: 4.6667vw;
		width: 86.6667vw;
		height: 86.6667vw;
	}
	.access address {
		margin-bottom: 4.6667vw;
		padding: 0;
	}
	.access address p {
		font-size: 4.8vw;
		line-height: 1.38;
	}
	.access .guide {
		margin: 0 auto;
		padding: 0;
		width: 86.6667vw;
		font-size: 3.4667vw;
	}
}

/* --------------------------------------------------
	.bg-white
-------------------------------------------------- */
.bg-white {
	padding: 85px 0 200px;
	background-color: #fff;
	border-radius: 20px;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.bg-white {
		padding: 8vw 0 19.4667vw;
		border-radius: 2vw;
		max-width: 90.6667vw;
	}
}

/* --------------------------------------------------
	.business-box
-------------------------------------------------- */
.business-box {
	margin: 0 8.3334%;
}
.business-box + .business-box {
	margin-top: 200px;
}
.business-box h2 {
	margin-bottom: 40px;
	padding: 8px;
	border-radius: 10px;
}
.business-box h2 span {
	font-size: 39px;
	line-height: 1.4;
	font-weight: 700;
	color: #fff;
}
.business-box h2 span::after {
	display: none;
}
.business-box h3 {
	margin-bottom: 30px;
	text-align: center;
}
.business-box h3 span {
	font-size: 42px;
	line-height: 1.4;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.business-box {
		margin: 0 auto;
		width: 80vw;
	}
	.business-box + .business-box {
		margin-top: 18.6667vw;
	}
	.business-box h2 {
		margin-bottom: 7.4667vw;
		padding: 4vw;
		border-radius: 2.6667vw;
	}
	.business-box h2 span {
		font-size: 7.7334vw;
		line-height: 1.2;
		letter-spacing: 0.05em;
	}
	.business-box h3 {
		margin-bottom: 6.1334vw;
	}
	.business-box h3 span {
		font-size: 7.28vw;
		line-height: 1.6;
	}
	.business-box .scroll-container {
		padding-bottom: 5.3334vw;
		width: 85.3334vw;
		overflow: auto;
	}
	.business-box .scroll-container-inner {
		padding: 5.3334vw 0;
	}
	.simplebar-wrapper::before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 1;
		display: block;
		width: 100%;
		height: 10px;
		background-color: #FFF;
	}
	.simplebar-track.simplebar-horizontal {
		height: 4px;
		border-radius: 2px;
		background: #f2f2f2;
	}
	.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
		border-radius: 2px;
		height: 4px;
		top: 0;
		right: 0;
	}
	.simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
		right: 0;
		left: 0;
		top: 0;
		background-color: #cccccc;
		border-radius: 2px;
		height: 4px;
		opacity: 1;
	}
	.business-box .scroll-container-inner figure {
		padding-right: 5.3334vw;
	}
}

/* --------------------------------------------------
	.business1
-------------------------------------------------- */
.business1 {
	padding-top: 150px;
	padding-bottom: 100px;
	background-color: #e6ece6;
}
.business1 .bg-white {
	box-shadow: 0 0 20px rgba(107, 132, 94, 0.3);
}
.business1 h2 {
	background-color: #00A000;
}
.business1 h3 span {
	border-bottom: #00a000 2px solid;
}
.business1-0 {}
.business1-0 p {
	margin-bottom: 1em;
	font-size: 20px;
	line-height: 1.5;
}
.business1-0 .green {
	margin-bottom: 0;
	color: #00a000;
	font-weight: 700;
}
.business1-0 .notes {
	margin-bottom: 45px;
}
.business1-0 .notes li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 14px;
}
.business1-0 .effect-list li {
	padding-left: 1.2em;
	text-indent: -1.2em;
	font-size: 20px;
	font-weight: 700;
}
.business1-0 .effect-list li span {
	display: inline-block;
	padding-left: 0;
	text-indent: 0;
	width: 1.2em;
	color: #00a000;
}
.business1-1-grid {
	display: grid;
	grid-template-columns: 59.5% 40.5%;
	gap: 30px 0;
	margin: 65px auto 50px;
	width: 100%;
	max-width: 1000px;
}
.business1-1-grid > div:nth-child(1) {
	display: flex;
	justify-content: end;
	align-items: center;
	padding-right: 40px;
}
.business1-1-grid > div:nth-child(2) figure {
	width: 77.7778%;
}
.business1-1-grid > div:nth-child(3) figure {
	width: 96.3026%;
}
.business1-1 p {
	font-size: 20px;
	line-height: 1.65;
}
.business1-1 p + p {
	margin-top: 1.5em;
}
.business1-2-flex {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}
.business1-2-flex p {
	font-size: 20px;
	line-height: 1.65;
}
.business1-2 figure {
	margin: 0 auto 35px;
	width: 93.5%;
}
.business1-2 figure figcaption {
	margin-bottom: 0.5em;
	font-size: 18px;
}
.business1-2-guide {
	display: flex;
	justify-content: center;
}
.business1-2-guide .text1 {
	margin-bottom: 0.8em;
	font-size: 20px;
	font-weight: 700;
}
.business1-2-guide .text2 span {
	position: relative;
	display: inline-block;
	padding: 0.2em 0.8em;
	background-color: #809e80;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}
.business1-2-guide .text2 span::after {
	content: '';
	position: absolute;
	right: -156px;
	top: -18px;
	width: 151px;
	height: 37px;
	background: url("../img/business_1_2_arrow_pc.svg") no-repeat right top;
	background-size: contain;
}
.business1-3 .text {
	margin-bottom: 2em;
	font-size: 20px;
	text-align: center;
}
.business1-3-grid {
	display: grid;
	grid-template-columns: 45% 55%;
	margin: 0 auto;
	width: 100%;
	max-width: 935px;
}
.business1-3-grid > div:nth-child(1) figure {
	width: 85.7143%;
}
.business1-3-grid > div:nth-child(1) p {
	margin-top: 0.5em;
}
.business1-3-grid > div:nth-child(2) p {
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 1.83;
}
.business1-4-flex {
	display: flex;
	align-items: center;
	margin: 0 auto 50px;
	width: 660px;
}
.business1-4-flex > div:nth-child(1) {
	width: 175px;
}
.business1-4-flex > div:nth-child(2) {
	position: relative;
	margin-left: 153px;
	width: 311px;
}
.business1-4-flex > div:nth-child(2)::before {
	content: '';
	position: absolute;
	left: -153px;
	top: 0;
	display: block;
	width: 153px;
	height: 47px;
	background: url("../img/business_1_4_arrow_pc.svg") no-repeat center center;
	background-size: 76.4706% auto;
}
.business1-4-flex figcaption {
	margin-top: 0.3em;
	margin-left: -10%;
	width: 120%;
	font-weight: 500;
	text-align: center;
}
.business1-4-list {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}
.business1-4-list p,
.business1-4-list li {
	font-size: 20px;
	line-height: 1.65;
}
.business1-4-list li span {
	color: #00a000;
}
.business1-4-graph {
	margin: 0 auto;
	width: 655px;
}
.business1-4-graph p {
	margin-top: 15px;
	text-align: center;
}
.business1-4-graph p span {
	display: inline-block;
	padding: 0.5em 1em;
	background-color: #809e80;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
	text-align: left;
}
.business1-5-flex {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.business1-5-flex > div:nth-child(1) {
	width: 42.2%;
}
.business1-5-flex > div:nth-child(2) {
	width: 50%;
}
.business1-5-flex > div:nth-child(1) ul {
	margin-bottom: 50px;
}
.business1-5-flex > div:nth-child(1) li {
	font-size: 20px;
	line-height: 1.65;
}
.business1-5-flex > div:nth-child(1) figcaption {
	margin-bottom: 0.5em;
	font-size: 18px;
}
.business1-5-flex > div:nth-child(2) figcaption {
	margin-bottom: 0.5em;
	font-size: 18px;
}
.business1-5-flex > div:nth-child(2) img + figcaption span {
	display: inline-block;
	margin-top: 30px;
	padding: 0.7em 1em;
	width: 100%;
	background-color: #809e80;
	box-sizing: border-box;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.business1 {
		padding-top: 4.8vw;
		padding-bottom: 12.8vw;
	}
	.business1 .bg-white {
		box-shadow: 0 0 1.4667vw rgba(107, 132, 94, 0.3);
	}
	.business1 h3 span {
		border-bottom: #00a000 1px solid;
	}
	.business1-0 p {
		font-size: 4.4vw;
	}
	.business1-0 .notes {
		margin-bottom: 8vw;
	}
	.business1-0 .notes li {
		font-size: 3.4667vw;
	}
	.business1-0 .effect-list li {
		padding-left: 1.2em;
		text-indent: -1.2em;
		font-size: 4.4vw;
	}
	.business1-1-grid {
		display: block;
		margin: 6.1334vw auto 14.1334vw;
	}
	.business1-1-grid > div:nth-child(1) {
		display: flex;
		justify-content: end;
		align-items: center;
		padding-right: 40px;
	}
	.business1-1-grid > div:nth-child(2),
	.business1-1-grid > div:nth-child(3) {
		margin-bottom: 13.3334vw;
	}
	.business1-1-grid > div:nth-child(2) figure {
		margin: 0 auto;
		width: 60vw;
	}
	.business1-1-grid > div:nth-child(3) figure {
		width: 101.6vw;
	}
	.business1-1-grid > div:nth-child(4) figure {
		width: 86.6667vw;
	}
	.business1-1 p {
		margin-bottom: 3.3334vw;
		font-size: 4.4vw;
		line-height: 1.65;
	}
	.business1-1 p span {
		display: inline-block;
		padding-left: 4em;
		text-indent: -4em;
	}
	.business1-2-flex {
		margin-bottom: 10.1334vw;
	}
	.business1-2-flex p {
		font-size: 4vw;
	}
	.business1-2 figure {
		margin: 0;
		width: 149.6vw;
	}
	.business1-2 figure figcaption {
		font-size: 4vw;
	}
	.business1-2-guide {
		margin-top: 8.5334vw;
		display: block;
	}
	.business1-2-guide .text1 {
		font-size: 4.4vw;
	}
	.business1-2-guide .text2 span {
		padding: 0.5em 0.8em;
		border-radius: 1.3334vw;
		font-size: 3.4667vw;
	}
	.business1-2-guide .text2 span::after {
		right: -10.1334vw;
		top: -2.8001vw;
		width: 9.4667vw;
		height: 6.8vw;
		background-image: url("../img/business_1_2_arrow_sp.svg");
	}
	.business1-3 .text {
		font-size: 4.4vw;
	}
	.business1-3-grid {
		display: block;
	}
	.business1-3-grid > div:nth-child(1) {
		margin-bottom: 12.8vw;
	}
	.business1-3-grid > div:nth-child(1) figure {
		margin: 0 auto;
		width: 60vw;
	}
	.business1-3-grid > div:nth-child(1) p {
		font-size: 4.4vw;
	}
	.business1-3-grid > div:nth-child(2) p {
		margin-bottom: 3.2vw;
		font-size: 3.8667vw;
		line-height: 1.34;
	}
	.business1-4-flex {
		display: block;
		margin-bottom: 11.3334vw;
		width: 100%;
	}
	.business1-4-flex > div:nth-child(1) {
		margin: 0 auto;
		width: 58vw;
	}
	.business1-4-flex > div:nth-child(2) {
		margin: 17.3334vw auto 0;
		width: 76.8vw;
	}
	.business1-4-flex > div:nth-child(2)::before {
		left: 0;
		top: -17.3334vw;
		display: block;
		width: 100%;
		height: 17.3334vw;
		background-image: url("../img/business_1_4_arrow_sp.svg");
		background-size: 4.8vw auto;
	}
	.business1-4-flex figcaption {
		font-size: 3.8667vw;
	}
	.business1-4-list {
		margin-bottom: 4.6667vw;
	}
	.business1-4-list p,
	.business1-4-list li {
		font-size: 4.4vw;
		line-height: 1.48;
	}
	.business1-4-list li {
		padding-left: 1.2em;
		text-indent: -1.2em;
	}
	.business1-4-graph {
		width: 100%;
	}
	.business1-4-graph figure {
		width: 112.6667vw;
	}
	.business1-4-graph p {
		margin-top: 3.6vw;
	}
	.business1-4-graph p span {
		border-radius: 1.3334vw;
		font-size: 3.6vw;
	}
	.business1-5-flex {
		display: block;
		margin-top: 5.3334vw;
	}
	.business1-5-flex > div:nth-child(1) {
		width: 100%;
	}
	.business1-5-flex > div:nth-child(2) {
		margin-top: 10vw;
		width: 100%;
	}
	.business1-5-flex > div:nth-child(1) ul {
		margin-bottom: 18.6667vw;
	}
	.business1-5-flex > div:nth-child(1) li {
		font-size: 4.1334vw;
	}
	.business1-5-flex > div:nth-child(1) figcaption {
		font-size: 3.8667vw;
	}
	.business1-5-flex > div:nth-child(2) figcaption {
		font-size: 3.8667vw;
	}
	.business1-5-flex > div:nth-child(2) img + figcaption span {
		margin-top: 4vw;
		border-radius: 8px;
		font-size: 3.6vw;
	}
}

/* --------------------------------------------------
	.business2
-------------------------------------------------- */
.business2 {
	margin-bottom: 150px;
	padding-top: 150px;
	padding-bottom: 100px;
	background-color: #e4eef0;
}
.business2 .bg-white {
	box-shadow: 0 0 20px rgba(121, 170, 170, 0.3);;
}
.business2 h2 {
	background-color: #449eb7;
}
.business2 h3 span {
	border-bottom: #449eb7 2px solid;
}
.business2-0 > p {
	font-size: 20px;
	line-height: 1.65;
}
.business2-0-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.business2-0-flex > div:nth-child(2) {
	display: flex;
	gap: 10px;
	width: 50%;
}
.business2-0-flex > div:nth-child(1) p {
	padding-left: 2.4em;
	text-indent: -2.4em;
	font-weight: 300;
	line-height: 1.43;
}
.business2-0-flex > div:nth-child(2) figcaption {
	margin-top: 0.2em;
	text-align: center;
}
.business-box + .business2-1 {
	margin-top: 170px;
}
.business2-1-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 55px auto 0;
	width: 100%;
	max-width: 990px;
}
.business2-1-flex > div:nth-child(1) {
	width: 46.8687%;
}
.business2-1-flex > div:nth-child(2) {
	width: 47.9798%;
}
.business2-1-flex > div:nth-child(2) p {
	font-size: 20px;
	line-height: 1.65;
}
.business2-1-flex > div:nth-child(2) p + p {
	margin-top: 2em;
}
.business-box + .business2-2 {
	margin-top: 130px;
}
.business2-2 p {
	margin-bottom: 0.5em;
	font-size: 20px;
	line-height: 1.65;
}
.business-box + .business2-3 {
	margin-top: 90px;
}
.business2-3 p {
	margin-bottom: 0.5em;
	font-size: 20px;
	line-height: 1.65;
}
.business2-3 .scroll-container + p {
	margin-top: 3em;
}
.business-box + .business2-4 {
	margin-top: 180px;
}
.business2-4-flex {
	display: flex;
	justify-content: space-between;
}
.business2-4-flex > div:nth-child(1) {
	width: 53.4%;
}
.business2-4-flex > div:nth-child(2) {
	width: 45.6%;
}
.business-box + .business2-5 {
	margin-top: 180px;
}
.business2-5 h3 {
	margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
	.business2 {
		margin-bottom: 20vw;
		padding-top: 4.8vw;
		padding-bottom: 12.8vw;
	}
	.business2 .bg-white {
		padding-bottom: 18vw;
		box-shadow: 0 0 1.4667vw rgba(121, 170, 170, 0.3);;
	}
	.business2 h3 span {
		border-bottom: #449eb7 1px solid;
	}
	.business2-0 > p {
		font-size: 4.4vw;
	}
	.business2-0-flex {
		display: block;
		margin-top: 5.3334vw;
	}
	.business2-0-flex > div:nth-child(2) {
		gap: 1.3334vw;
		width: 100%;
		margin-top: 9.3334vw;
	}
	.business2-0-flex > div:nth-child(1) p {
		font-size: 3.4667vw;
	}
	.business2-0-flex > div:nth-child(2) figcaption {
		font-size: 3.8667vw;
	}
	.business-box + .business2-1 {
		margin-top: 20vw;
	}
	.business2-1-flex {
		display: block;
		margin-top: 6.6667vw;
	}
	.business2-1-flex > div:nth-child(1) {
		width: 100%;
	}
	.business2-1-flex > div:nth-child(2) {
		margin-top: 6.6667vw;
		width: 100%;
	}
	.business2-1-flex > div:nth-child(2) p {
		font-size: 4.4vw;
	}
	.business2-1-flex > div:nth-child(2) p + p {
		margin-top: 1.2em;
	}
	.business-box + .business2-2 {
		margin-top: 20vw;
	}
	.business2-2 p {
		font-size: 4.4vw;
	}
	.business2-2 figure {
		width: 165.0667vw;
	}
	.business-box + .business2-3 {
		margin-top: 21.3334vw;
	}
	.business2-3 h3 {
		margin-left: -5%;
		width: 110%;
	}
	.business2-3 p {
		font-size: 4.4vw;
	}
	.business2-3 .graph1 figure {
		width: 139.3334vw;
	}
	.business2-3 .graph2 figure {
		width: 213.7334vw;
	}
	.business-box + .business2-4 {
		margin-top: 21.3334vw;
	}
	.business2-4-flex {
		display: block;
	}
	.business2-4-flex > div:nth-child(1) {
		width: 100%;
	}
	.business2-4-flex > div:nth-child(2) {
		margin-top: 3.3334vw;
		width: 100%;
	}
	.business-box + .business2-5 {
		margin-top: 20vw;
	}
	.business2-5 h3 {
		margin-bottom: 5.3334vw;
	}
	.business2-5 figure {
		width: 158.9334vw;
	}
}

/* --------------------------------------------------
	.contact
-------------------------------------------------- */
.contact {
	margin-bottom: 150px;
}
.contact address li {
	font-size: 22px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.contact {
		margin-bottom: 10.6667vw;
	}
	.contact address li {
		font-size: 4.4vw;
	}
}







