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

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe,
img,
svg,
video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	color: #ffffff;
	background-color: #7ab7a9;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #bcdbd4;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p:empty:before {
	content: none;
}
span.required {
	color: #7ab7a9;
}

/* en
-------------------------------------------------------------------------------- */

body.en {
	text-align: left;
	font-family: "Inter", sans-serif;
}


/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	outline: none;
	appearance: none;
}
body.en input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	font-family: "Inter", sans-serif;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #353535;
	border: none;
	background-color: #ffffff;
	border-radius: 5px;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 200px;
	height: 45px;
	text-align: center;
	font-size: 1.125rem;
	color: #353535;
	border: none;
	cursor: pointer;
	padding-left: 22.5px;
	background-color: #d9cba0;
	border-radius: 22.5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	color: #ffffff;
	background-color: #353535;
}
button {
	position: relative;
}
button i.icon-arrow {
	position: absolute;
	right: 15px;
	top: calc(50% - 0.5rem);
	line-height: 1rem;
}
input:where([type=radio], [type=checkbox]),
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:where([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:where([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	background-color: #ffffff;
}
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:where([type=radio], [type=checkbox]):checked::after,
label.alternate input:where([type=radio], [type=checkbox]):checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #353535;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #353535;
	border-bottom: 2px solid #353535;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input:where([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:where([type=radio], [type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #eae7e1;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow::before {
	content: "\e900";
}
i.icon-instagram::before {
	content: "\e901";
}
i.icon-language::before {
	content: "\e902";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #ffffff;
	margin: 20px 0px;
}
iframe:where([src*="youtube.com"], .wp-embedded-content),
video {
	width: 100%;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	height: auto;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #9bc9bf;
	border-radius: 5px;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
}
div#trigger {
	position: absolute;
	top: 50svh;
	pointer-events: none;
}
span.large {
	display: block;
}
span.small {
	display: none;
}
div.language {
	position: relative;
}
div.language,
p.instagram {
	width: 30px;
}
div.language p.icon,
p.instagram {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 45px;
	font-size: 1.75rem;
}
div.language p.icon {
	cursor: pointer;
	transition: 0.25s color ease;
}
div.language:hover p.icon {
	color: #bcdbd4;
}
div.language ul {
	position: absolute;
	width: 45px;
	height: 0px;
	left: calc(50% - 22.5px);
	top: 45px;
	overflow: hidden;
	transition: 0.25s height ease;
}
div.language.open ul {
	height: 55px;
}
div.language ul li {
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	line-height: 1.25rem;
}
div.language ul li:not(:last-child) {
	margin-bottom: 5px;
}
div.language ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 25px;
	color: #353535;
	border: 1px solid #bcdbd4;
	background-color: #bcdbd4;
	border-radius: 12.5px;
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
div.language ul li a:hover,
body:not(.en) div.language ul li.jp a,
body.en div.language ul li.en a {
	color: #ffffff;
	border-color: #ffffff;
	background-color: #7ab7a9;
}
p.button-default,
p.button-default a {
	display: flex;
	flex-wrap: wrap;
}
p.button-default {
	justify-content: center;
	text-align: center;
	line-height: 1.5rem;
}
p.button-default a {
	align-items: center;
	position: relative;
	width: 200px;
	height: 45px;
	font-size: 1.125rem;
	color: #353535;
	padding-left: 22.5px;
	background-color: #d9cba0;
	border-radius: 22.5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-default a:hover {
	color: #ffffff;
	background-color: #353535;
}
p.button-default i.icon-arrow {
	position: absolute;
	right: 15px;
	top: calc(50% - 0.5rem);
	line-height: 1rem;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.875);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 1;
	bottom: 20px !important;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: relative;
	z-index: 100;
}
header#header :where(*#logo, div.language),
header#header div#menu :where(nav#navi, p.button-contact, p.instagram) {
	position: absolute;
	top: 40px;
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 45px;
	left: 40px;
}
header#header *#logo img {
	width: 386px;
}
header#header *#logo svg {
	display: none;
}
header#header div.language {
	right: 40px;
}
header#header div#menu nav#navi {
	right: 365px;
}
header#header div#menu nav#navi ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 45px;
	padding: 0px 12.5px;
	background-color: #ffffff;
	border-radius: 22.5px;
}
header#header div#menu nav#navi ul li {
	font-size: 0.9375rem;
	margin: 0px 12.5px;
}
header#header div#menu nav#navi ul li a {
	color: #353535;
}
header#header div#menu nav#navi ul li a:hover {
	color: #7ab7a9;
}
header#header div#menu nav#navi ul li:where(.contact, .terms-of-use-privacy-policy) {
	display: none;
}
header#header div#menu p.button-contact {
	right: 145px;
	font-family: "Inter", sans-serif;
}
header#header div#menu p.instagram {
	right: 85px;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	position: relative;
	height: 100svh;
	min-height: 700px;
	padding: 125px 40px 40px 40px;
}
body.admin-bar div#cover {
	height: calc(100svh - 32px);
}
div#cover div.text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 100%;
	border: 1px solid #ffffff;
	padding: 0px 80px;
}
div#cover div.text div.inner-text {
	padding-bottom: 20px;
}
div#cover div.text div.headline {
	margin-bottom: 60px;
}
div#cover div.text div.headline h2 {
	font-size: 3.125rem;
	font-weight: 300;
	line-height: 5.5rem;
}
body.en div#cover div.text div.headline h2 {
	font-size: 3.375rem;
	line-height: 5.25rem;
}
body.en div#cover div.text div.headline h2:not(:last-child) {
	margin-bottom: 20px;
}
body.en div#cover div.text div.headline h3 {
	font-size: 2.25rem;
	font-weight: 300;
	line-height: 3.25rem;
}
div#cover div.text ul {
	display: flex;
	flex-wrap: wrap;
}
div#cover div.text ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 150px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	color: #7ab7a9;
	background-repeat: no-repeat;
	background-position: center;
}
div#cover div.text ul li:not(:last-child) {
	margin-right: 30px;
}
div#cover div.text ul li:not(:nth-child(2)) {
	background-size: auto 135px;
}
div#cover div.text ul li:nth-child(1) {
	width: 150px;
	background-image: url(../images/background-frame-01.svg);
}
div#cover div.text ul li:nth-child(2) {
	width: 135px;
	background-image: url(../images/background-frame-07.svg);
	background-size: auto 150px;
}
div#cover div.text ul li:nth-child(3) {
	width: 194px;
	background-image: url(../images/background-frame-03.svg);
}
div#cover div.text p.symbol {
	position: absolute;
	width: 600px;
	right: 0px;
	bottom: 0px;
}
div#cover div.text p.symbol img {
	width: 100%;
}
div#cover p.button-scroll {
	position: absolute;
	width: 20px;
	left: 10px;
	bottom: 40px;
	font-family: "Inter", sans-serif;
	font-size: 0.9375rem;
	line-height: 20px;
}
div#cover p.button-scroll a {
	display: block;
	position: relative;
	padding-bottom: 75px;
}
div#cover p.button-scroll a::before {
	position: absolute;
	width: 0px;
	height: 70px;
	left: calc(50% - 0.5px);
	bottom: 0px;
	border-right: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
}
div#cover p.button-scroll a:hover::before {
	border-color: #bcdbd4;
}
div#cover p.button-scroll span {
	writing-mode: vertical-rl;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.inner-section {
	width: 1200px;
	margin: 0px auto;
	padding: 80px 0px;
}
main section header {
	margin-bottom: 60px;
}
main section header p.sub {
	font-family: "Inter", sans-serif;
	font-size: 1.25rem;
	margin-bottom: 40px;
}
main section header h2 {
	font-size: 3.125rem;
	font-weight: 300;
	line-height: 4rem;
}
main ul.bullet li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
main ol.decimal {
	padding-left: 20px;
}
main ol.decimal li {
	list-style-type: decimal;
}

/* home
-------------------------------------------------------------------------------- */

main section#about-us::before {
	position: absolute;
	width: 1050px;
	height: 560px;
	left: calc(50% - calc(1050px * 0.325));
	top: 160px;
	background: url(../images/background-map.png) no-repeat center;
	background-size: 100% auto;
	content: "";
}
main section#about-us h3 {
	font-size: 2.125rem;
	line-height: 3.25rem;
	margin-bottom: 60px;
}
main section#about-us p.description {
	font-size: 1.25rem;
	line-height: 2.5rem;
}
main section#items-handled div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -60px 60px 0px;
	padding: 0px 60px;
}
main section#items-handled div.list div.row,
main section#items-handled div.list div.row div.inner-row {
	position: relative;
}
main section#items-handled div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 206 / 135;
	width: calc(33.33% - 60px);
	text-align: center;
	color: #7ab7a9;
	margin-right: 60px;
	background: url(../images/background-frame-04.svg) no-repeat center;
	background-size: auto 100%;
}
main section#items-handled div.list div.row::before {
	position: absolute;
	aspect-ratio: 62/ 58;
	width: 62px;
	right: 60px;
	bottom: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	content: "";
}
main section#items-handled div.list div.row:nth-child(1)::before {
	background-image: url(../images/icon-items-handled-01.svg);
}
main section#items-handled div.list div.row:nth-child(2)::before {
	background-image: url(../images/icon-items-handled-02.svg);
}
main section#items-handled div.list div.row:nth-child(3)::before {
	background-image: url(../images/icon-items-handled-03.svg);
}
main section#items-handled div.list div.row h3 {
	font-size: 2.125rem;
	font-weight: 500;
	line-height: 2.75rem;
}
body.en main section#items-handled div.list div.row h3 {
	font-size: 1.875rem;
	line-height: 2.5rem;
}
main section#items-handled div.list div.row h3:not(:last-child) {
	margin-bottom: 20px;
}
main section#items-handled div.list div.row p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
}
body.en main section#items-handled div.list div.row p.description {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.625rem;
}
main section#items-handled div.list ~ p.description {
	font-size: 1.375rem;
	line-height: 2.25rem;
}
main section#services div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#services div.block h3 {
	font-size: 3.125rem;
	font-weight: 300;
	line-height: 4rem;
	margin-bottom: 60px;
}
main section#services div.block div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #7ab7a9;
}
body.en main section#services div.block div.list div.row {
	display: block;
	aspect-ratio: auto;
	width: auto;
	text-align: left;
	color: #ffffff;
	margin: 0px;
	background-image: none;
}
body.en main section#services div.block div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
body.en main section#services div.block div.list div.row div.inner-row {
	position: relative;
	min-height: 90px;
	padding-left: 130px;
}
main section#services div.block div.list div.row p.number {
	font-family: "Inter", sans-serif;
	font-size: 1.125rem;
	margin-bottom: 10px;
}
body.en main section#services div.block div.list div.row p.number {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100px;
	height: 90px;
	left: 0px;
	top: 0px;
	color: #7ab7a9;
	background: url(../images/background-frame-01.svg) no-repeat center;
	background-size: auto 100%;
}
main section#services div.block div.list div.row h4 {
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 2.25rem;
}
body.en main section#services div.block div.list div.row h4 {
	font-size: 1.875rem;
	line-height: 2.5rem;
}
main section#services div.block div.list div.row h4:not(:last-child) {
	margin-bottom: 20px;
}
body.en main section#services div.block div.list div.row h4:not(:last-child) {
	margin-bottom: 10px;
}
body.en main section#services div.block div.list div.row p.description {
	font-size: 1.125rem;
}
main section#services div.block-01 div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
}
body.en main section#services div.block-01 div.list {
	display: block;
	margin: 0px;
}
main section#services div.block-01 div.list div.row {
	aspect-ratio: 206 / 135;
	width: calc(33.33% - 40px);
	margin: 0px 40px 40px 0px;
	background: url(../images/background-frame-04.svg) no-repeat center;
	background-size: auto 100%;
}
main section#services div.block-02 div.list {
	margin-bottom: 80px;
}
main section#services div.block-02 div.list div.row {
	aspect-ratio: 713 / 135;
	width: 960px;
	margin: 0px auto;
	background: url(../images/background-frame-06.svg) no-repeat center;
	background-size: auto 100%;
}
main section#services div.block-02 p.emphasis,
main section#services div.block-02 p.emphasis span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
body.en main section#services div.block-02 p.emphasis,
body.en main section#services div.block-02 p.emphasis span {
	justify-content: flex-start;
}
main section#services div.block-02 p.emphasis {
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 2.5rem;
}
main section#services div.block-02 p.emphasis span {
	margin-bottom: -20px;
}
main section#services div.block-02 p.emphasis span i {
	display: block;
	border-bottom: 2px solid #ffffff;
	margin-bottom: 20px;
	padding-bottom: 5px;
}
main section#case-studies div.list div.row {
	position: relative;
	padding-left: 50px;
}
main section#case-studies div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#case-studies div.list div.row p.number {
	position: absolute;
	left: 0px;
	top: 8px;
	font-family: "Inter", sans-serif;
	font-size: 1.125rem;
}
main section#case-studies div.list div.row h3 {
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 20px;
}
main section#case-studies div.list div.row ul li {
	font-size: 1.375rem;
	line-height: 2.25rem;
}
main section#case-studies div.list div.row ul li::before {
	width: 8px;
	height: 8px;
	top: 15px;
}
main section#contact {
	color: #353535;
	background-color: #eae7e1;
}

/* form
-------------------------------------------------------------------------------- */

main section.form div.form {
	padding: 0px 120px;
}
main section.form div.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
	font-size: 1.125rem;
}
main section.form div.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
main section.form div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #ffffff;
	margin-bottom: 0px;
	padding: 40px 0px;
}
main section.form div.mw_wp_form_preview div.form div.component:first-child {
	border-top: 1px solid #ffffff;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 240px;
	height: 50px;
}
main section.form div.form div.component-radio-checkbox p.label {
	height: auto;
}
main section.form div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section.form div.form div.component p.label span.require {
	margin-left: 5px;
}
main section.form div.mw_wp_form_preview div.form div.component p.label span.require {
	display: none;
}
main section.form div.form div.component div.body {
	width: calc(100% - 240px);
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -5px;
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body :where(input:where([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field),
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body span:where(.mwform-radio-field, .mwform-checkbox-field):not(:last-of-type) {
	margin-right: 40px;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	font-size: 0.875rem;
	line-height: 25px;
	color: #7ab7a9;
	padding-top: 5px;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	padding: 60px 40px 20px 40px;
}
footer#footer div.logo-misc,
footer#footer div.logo-misc div.misc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
footer#footer div.logo-misc {
	justify-content: space-between;
	margin-bottom: 40px;
}
footer#footer div.logo-misc p.logo img {
	width: 211px;
}
footer#footer div.logo-misc div.misc nav#navi-footer {
	margin-right: 40px;
}
footer#footer div.logo-misc div.misc nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.logo-misc div.misc nav#navi-footer ul li {
	font-size: 0.9375rem;
}
footer#footer div.logo-misc div.misc nav#navi-footer ul li:not(:last-child) {
	margin-right: 25px;
}
footer#footer div.logo-misc div.misc p.instagram {
	margin-right: 15px;
}
footer#footer p.copyright {
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	line-height: 1.25rem;
}
