@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #09342f;
  /* フォントのアンチエイリアスを滑らかに表示（主にMac向け） */
  -webkit-font-smoothing: antialiased;
  /* Chrome, Safari（WebKit系） */
  -moz-osx-font-smoothing: grayscale;
  /* Firefox on macOS */
}

:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
    /* `px`などの単位が必要 */
  }
}

a[href^="tel:"] {
  pointer-events: auto;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: inherit;
  cursor: pointer;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  /* デフォルトで非表示 */
}

body:not(.using-mouse) a:focus-visible,
body:not(.using-mouse) button:focus-visible,
body:not(.using-mouse) input:focus-visible,
body:not(.using-mouse) select:focus-visible {
  outline: 2px solid #14c9b6;
  /* キーボード操作時に表示 */
  outline-offset: 3px;
}

body:not(.using-mouse) textarea:focus-visible {
  outline: 2px solid #14c9b6;
  outline-offset: -1px;
}

iframe {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.ie-warning {
  background-color: #ffcc00;
  color: #000;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.splide__slide {
  -webkit-text-size-adjust: 100%;
}

html.is-fixed,
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.inner {
  max-width: 40.625rem;
  padding-inline: 0.9375rem;
  margin-inline: auto;
}

.hide-xl2 {
  display: block;
}

.hide-lg {
  display: block;
}

.show-lg {
  display: none;
}

.hide-md {
  display: block;
}

.show-md {
  display: none;
}

.lg-md-only {
  display: none;
}

.md-sm-none {
  display: none;
}

.hide-xl {
  display: block;
}

.hide-sm {
  display: block;
}

.hide-sp {
  display: block;
}

.title-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}

.title-text .title-top {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #14c9b6;
}

.title-text .title-bottom {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1428571429;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  margin-inline: auto;
  padding: 0.875rem 1.25rem 0;
  z-index: 9999;
}

.header.is-active .header__logo svg {
  color: #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 6.24375rem;
  aspect-ratio: 99.9/15.955;
  display: grid;
  place-items: center;
}

.header__logo a {
  display: block;
}

.header__logo svg {
  width: 100%;
  display: block;
  color: #14c9b6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding-block: 0.9375rem;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__nav-button {
  width: 100%;
  background-color: #fff;
  border-radius: 2rem;
}

.header__nav-button .button {
  padding: 0.6875rem 1.625rem 0.8125rem;
  font-weight: 700;
}

.header.is-inverted .header__logo svg {
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header.is-inverted .header__nav-button .button.--green {
  background-color: #fff;
  color: #14c9b6;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.header--other {
  background-color: #fff;
  padding: 0.9375rem 0.9375rem;
  width: 100%;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.header--other.is-active {
  background-color: #14c9b6;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hamburger {
  position: relative;
  width: 1.375rem;
  height: 1rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 0.075rem;
  background-color: #14c9b6;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.hamburger.is-active {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hamburger.is-active span {
  background-color: #fff;
  position: absolute;
}

.hamburger.is-active span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger.is-inverted span {
  background-color: #fff;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #14c9b6;
  z-index: 9998;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  overflow-y: auto;
}

.drawer.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.drawer__inner {
  padding: 7.5rem 1.25rem;
}

.drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
}

.drawer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.drawer__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1875rem;
  color: #fff;
}

.drawer__nav-link .en {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.drawer__nav-link .ja {
  font-size: 1rem;
  font-weight: 700;
}

.drawer__nav-button {
  margin-top: 1rem;
}

.drawer__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 15rem;
  color: #14c9b6;
  background-color: #fff;
  border-radius: 1.875rem;
  padding: 0.3125rem 1.25rem 0.5rem;
}

.drawer__button .en {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.drawer__button .ja {
  font-size: 0.875rem;
  font-weight: 700;
}

body.drawer-open {
  overflow: hidden;
}

.footer {
  padding-block: 2.1875rem 0.9375rem;
  background-color: #14c9b6;
  color: #fff;
  overflow-x: clip;
}

.footer__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-left: 1.5625rem;
  margin-left: 0.3125rem;
}

.footer__info-logo {
  color: #fff;
  width: 7.5rem;
  display: block;
}

.footer__info-logo svg {
  width: 100%;
  display: block;
}

.footer__info-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
}

.footer__info-text > span {
  display: block;
  text-wrap: nowrap;
}

.footer__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem 2.5rem;
  max-width: 18.4375rem;
}

.footer__nav-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__nav-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-weight: 500;
  position: relative;
  font-size: 0.875rem;
  line-height: 1;
}

.footer__nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.footer__bottom {
  margin-top: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 0.9375rem;
  max-width: 600px;
  gap: 0.625rem;
  margin-inline: auto;
}

.footer__privacy-link {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.3125rem 0.9375rem;
  border-radius: 1.875rem;
  gap: 0.625rem;
}

.button.--green {
  background-color: #14c9b6;
  color: #fff;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid transparent;
}

.button.--yellow-green {
  background-color: #2acc76;
  color: #fff;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid transparent;
}

.button > span {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.6923076923;
}

.button .mail-icon {
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#7decd9), to(#1ba48f));
  background: linear-gradient(to bottom, #7decd9 0%, #1ba48f 100%);
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loading__inner {
  position: relative;
  width: 18.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.loading__logo {
  position: absolute;
  width: 9.4375rem;
  opacity: 0;
  visibility: hidden;
}

.loading__logo-title {
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 13.5953125rem;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.loading__logo-title svg {
  width: 100%;
  height: auto;
}

.page-fv {
  height: 9.375rem;
  margin-top: 2.875rem;
  overflow-x: clip;
}

.page-fv--contact,
.page-fv--privacy-policy {
  position: relative;
  background-image: url(../img/contact-fv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-fv--contact::after,
.page-fv--privacy-policy::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  background-image: url(../img/contact-fv-green.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-fv--privacy-policy::after {
  width: 120%;
}

.page-fv--recruit,
.page-fv--recruit-info {
  position: relative;
  background-image: url(../img/recruit-fv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-fv--recruit::after,
.page-fv--recruit-info::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  background-image: url(../img/recruit-fv-green.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-fv__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-inline: 0.9375rem;
}

.page-fv__title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2.1875rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2083333333;
  color: #fff;
}

.contact-form {
  padding: 1.875rem 0 3.125rem;
}

.contact-form__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.contact-form__sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #14c9b6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}

.contact-form__note {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0.4375rem;
}

.contact-form__note--privacy-policy {
  margin-left: 0;
}

.contact-form__form {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.contact-form__form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.contact-form__form-label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.contact-form__form-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: default;
}

.contact-form__form-label--mt {
  margin-top: 0.625rem;
}

.contact-form__form-label--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.125rem;
}

.contact-form__form-label-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.contact-form__form-required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #14c9b6;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.125rem 0.25rem;
  line-height: 1.5;
}

.contact-form__form-optional {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #e0e0e0;
  color: #666;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  line-height: 1.5;
}

.contact-form__form-input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.contact-form__form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #9e9e9e;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  background-color: #fff !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.contact-form__form-input:focus {
  outline: none;
  border-color: #14c9b6;
}

.contact-form__form-input::-webkit-input-placeholder {
  color: #9e9e9e;
  font-weight: 400;
}

.contact-form__form-input::-moz-placeholder {
  color: #9e9e9e;
  font-weight: 400;
}

.contact-form__form-input:-ms-input-placeholder {
  color: #9e9e9e;
  font-weight: 400;
}

.contact-form__form-input::-ms-input-placeholder {
  color: #9e9e9e;
  font-weight: 400;
}

.contact-form__form-input::placeholder {
  color: #9e9e9e;
  font-weight: 400;
}

.contact-form__form-textarea {
  width: 100% !important;
  padding: 0.75rem 1rem;
  border: 1px solid #9e9e9e;
  font-size: 0.875rem;
  line-height: 1.4;
  resize: vertical;
  font-family: inherit;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  min-height: 7.5rem !important;
  background-color: #fff !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.contact-form__form-textarea:focus {
  outline: none;
  border-color: #14c9b6;
}

.contact-form__form-textarea::-webkit-input-placeholder {
  color: #999;
}

.contact-form__form-textarea::-moz-placeholder {
  color: #999;
}

.contact-form__form-textarea:-ms-input-placeholder {
  color: #999;
}

.contact-form__form-textarea::-ms-input-placeholder {
  color: #999;
}

.contact-form__form-textarea::placeholder {
  color: #999;
}

.contact-form__form-checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.contact-form__form-checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}

.contact-form__form-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form__form-checkbox ~ .contact-form__form-checkbox-text::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #9e9e9e;
  margin-right: 0.4375rem;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 0.75rem;
}

.contact-form__form-checkbox:checked ~ .contact-form__form-checkbox-text::before {
  border-color: #14c9b6;
  background-image: url("../img/icon-check.svg");
}

.contact-form__form-checkbox:focus ~ .contact-form__form-checkbox-text::before {
  outline: 2px solid #14c9b6;
  outline-offset: 2px;
}

.contact-form__form-checkbox-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form__form-privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form__form-privacy-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}

.contact-form__form-privacy-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form__form-privacy-checkbox ~ .contact-form__form-privacy-text::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #9e9e9e;
  margin-top: 0.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 0.75rem;
}

.contact-form__form-privacy-checkbox:checked ~ .contact-form__form-privacy-text::before {
  border-color: #14c9b6;
  background-image: url("../img/icon-check.svg");
}

.contact-form__form-privacy-checkbox:focus ~ .contact-form__form-privacy-text::before {
  outline: 2px solid #14c9b6;
  outline-offset: 2px;
}

.contact-form__form-privacy-text {
  font-size: 0.875rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-form__form-privacy-text a {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

.contact-form__form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.contact-form__submit-button {
  width: 18.75rem;
  padding: 0.75rem 2.1875rem;
  position: relative;
  border-radius: 1.25rem;
  background: #14c9b6 !important;
}

.contact-form__submit-button .contact-form__submit-button-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.contact-form__submit-button:hover {
  background-color: #fff !important;
  color: #14c9b6 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #14c9b6 !important;
}

.contact-form__submit-button:hover .contact-form__submit-button-arrow {
  -webkit-filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(1174%) hue-rotate(131deg) brightness(92%) contrast(89%);
          filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(1174%) hue-rotate(131deg) brightness(92%) contrast(89%);
}

.contact-form__form-button-group {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form__back-button span {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  font-weight: 500;
}

.contact-form__back-button {
  margin-top: 0.625rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0;
}

.contact-form__thanks-content {
  margin-top: 0.625rem;
}

.contact-form__thanks-text,
.contact-form__confirm-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  text-align: justify;
}

.contact-form__thanks-text + .contact-form__thanks-text {
  margin-top: 0.75rem;
}

.contact-form__submit-button--thanks {
  margin-top: 1.25rem;
}

.contact-form__confirm-text {
  margin-top: 0.625rem;
}

.contact-form__form--confirm {
  margin-top: 1.875rem;
}

form#mailformpro label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

form#mailformpro {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

form#mailformpro label.mfp_checked {
  padding: 0 !important;
  border: none !important;
  background-color: #fff !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

form#mailformpro label.mfp_not_checked {
  padding: 0 !important;
  border: none !important;
  background-color: #fff !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.contact-form__submit-button > span {
  color: transparent;
}

.contact-form__submit-button:hover > span {
  color: #14c9b6;
}

.contact-form__submit-button > span.white {
  color: #fff;
}

.contact-form__submit-button:hover > span.white {
  color: #14c9b6;
}

#mfp_confirm_table #td_message {
  position: relative;
  max-height: 300px;
  overflow-y: scroll;
  display: block;
  -webkit-overflow-scrolling: touch;
}

.privacy-policy {
  padding: 1.875rem 0 3.125rem;
}

.privacy-policy__inner {
  max-width: 50rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.privacy-policy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}

.privacy-policy__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #14c9b6;
  line-height: 1.5555555556;
}

.privacy-policy__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8571428571;
}

.privacy-policy__text + .privacy-policy__text {
  margin-top: 0.75rem;
}

.privacy-policy__list {
  margin-top: 0.75rem;
  margin-left: 0.5rem;
  padding-left: 1em;
  text-indent: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
  list-style: disc;
}

.privacy-policy__list-item {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}

.privacy-policy__list-item::marker {
  color: #14c9b6;
}

.privacy-policy__contact {
  margin-top: 0.9375rem;
  padding: 0.9375rem;
  background-color: #f8f9fa;
  border-left: 0.25rem solid #14c9b6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}

.privacy-policy__contact-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
}

.privacy-policy__contact-item {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}

.privacy-policy__contact-item--indent {
  padding-left: 3em;
  text-indent: -3em;
}

.fv {
  width: 100%;
  height: 200svh;
}

.fv__inner {
  position: relative;
  height: 100svh;
  width: 100%;
  z-index: 1;
}

.fv__content-first {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 1;
}

.fv__image-wrapper {
  position: relative;
  height: 100svh;
  overflow: hidden;
  border-radius: 0 0 0 6.25rem;
}

.fv__image-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 23.3125rem;
  width: 100%;
  border-radius: 0 0 0 6.25rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, rgba(59, 207, 178, 0)), to(#18ac96));
  background: linear-gradient(to bottom, rgba(59, 207, 178, 0) 15%, #18ac96 100%);
  z-index: 1;
}

.fv__image-wrapper img {
  aspect-ratio: 375/600;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: absolute;
  bottom: 6.0625rem;
  left: 2.4375rem;
  z-index: 2;
}

.fv__logo {
  width: 4.515625rem;
  display: grid;
  place-items: center;
  aspect-ratio: 72.25/73.07;
}

.fv__logo img {
  width: 100%;
  display: block;
}

.fv__title {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.fv__title-text {
  display: block;
  background-color: #fff;
  color: #14c9b6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 0rem 0.3125rem 0.3125rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.fv__title-text .kerning {
  letter-spacing: -0.15em;
}

.fv__content-second {
  width: 100%;
  height: 80vh;
  height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  border-radius: 0 0 0 6.25rem;
  overflow: hidden;
  padding-block: 3.75rem;
}

.fv__content-second::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#7decd9), to(#1ba48f));
  background: linear-gradient(to bottom, #7decd9 0%, #1ba48f 100%);
}

.fv__content-second-item {
  width: 100%;
  max-width: 21.875rem;
  padding-inline: 0.9375rem;
  margin-inline: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
  color: #fff;
}

.fv__content-second-title {
  font-size: 1.5625rem;
  font-weight: 800;
  line-height: 1.44;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 18rem;
  margin-inline: auto;
}

.fv__content-second-title .text {
  position: relative;
  z-index: 1;
}

.fv__content-second-image {
  display: block;
  width: 5.0325rem;
  position: absolute;
  top: -2.1875rem;
  left: 0;
}

.fv__content-second-text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fv__content-second-text span + span {
  margin-top: 0.625rem;
}

/***************************************
introduction
****************************************/

.introduction {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-block: 5rem 2.5rem;
  overflow-x: clip;
}

.introduction__inner {
  width: 100%;
  max-width: 100%;
  padding-left: 1.25rem;
  position: relative;
}

.introduction__heading-wrapper {
  width: 10%;
  position: absolute;
  top: 0;
  left: 5%;
  z-index: 5;
}

.introduction__heading {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.introduction__content {
  width: 85%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.125rem;
}

.introduction__image-wrapper {
  width: 100%;
  position: relative;
  border-radius: 0 0 0 6.25rem;
}

.introduction__image-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: -6%;
  right: 0;
  width: 20%;
  aspect-ratio: 196/132;
  background-image: url(../img/gr-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}

.introduction__image-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8.5%;
  left: -5.5%;
  width: 25%;
  aspect-ratio: 219/209;
  background-image: url(../img/gr-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}

.introduction__text {
  width: 90%;
  margin-inline: auto;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  text-align: justify;
}

/***************************************
about
****************************************/

.about {
  width: 96%;
  padding-block: 7.5rem 6.25rem;
}

.about__inner {
  width: 100%;
  max-width: 100%;
  background-color: #dcf8f4;
  border-radius: 0 2.5rem 2.5rem 0;
  padding-block: 2.5rem;
  position: relative;
}

.about__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: -3%;
  left: 2%;
  width: 20%;
  aspect-ratio: 196/132;
  background-image: url(../img/gr-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}

.about__inner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2.5%;
  right: 2%;
  width: 18%;
  aspect-ratio: 219/209;
  background-image: url(../img/gr-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}

.about__content {
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 1.875rem;
}

.about__content-body {
  width: 100%;
}

.about__text {
  margin-top: 1.25rem;
}

.about__text .text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8571428571;
}

.about__text .text + .text {
  display: block;
  margin-top: 1rem;
}

.about__content-image {
  width: 100%;
}

.about__content-image--top {
  position: absolute;
  top: -13%;
  right: 2%;
  width: 40%;
  aspect-ratio: 280/360;
  border-radius: 2.6875rem;
  overflow: hidden;
}

.about__content-image--bottom {
  width: 70%;
  margin-inline: auto;
  aspect-ratio: 237/305;
  border-radius: 11.4666666667vw;
  overflow: hidden;
}

.business {
  padding: 5rem 0;
  background-color: #faf6b7;
  border-radius: 2.5rem 2.5rem 0 0;
  position: relative;
}

.business::before {
  content: "";
  display: block;
  position: absolute;
  top: -1%;
  right: 2%;
  width: 20%;
  aspect-ratio: 196/132;
  background-image: url(../img/gr-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.business::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.8%;
  left: 1%;
  width: 20%;
  aspect-ratio: 219/209;
  background-image: url(../img/gr-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.business__inner {
  width: 100%;
  padding-inline: 1.25rem;
}

.business__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.business__text {
  width: 92%;
  margin-inline: auto;
  font-weight: 500;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  color: #09342f;
  text-align: justify;
}

.business__text span {
  display: inline-block;
}

.business__content-list {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}

.business__content-item {
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business__content-image-wrapper {
  width: 80%;
  margin-inline: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #fdfde2;
  -webkit-box-shadow: 0px 2px 20px rgba(214, 222, 180, 0.16);
          box-shadow: 0px 2px 20px rgba(214, 222, 180, 0.16);
}

.business__content-image-wrapper img {
  width: 100%;
  max-width: 7.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.business__content-body {
  margin-top: 1.25rem;
}

.business__content-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
  text-align: center;
}

.business__content-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}

.office {
  padding-block: 3.75rem;
}

.office__inner {
  width: 100%;
  padding-inline: 1.25rem;
}

.office__heading {
  width: 100%;
}

.office__content {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.office__content-item--top {
  display: grid;
  grid-template-areas: "image-01 image-02" "image-03 image-03";
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 0.625rem;
}

.office__content-item--bottom {
  display: grid;
  grid-template-areas: "image-04 image-04" "image-05 image-06";
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 0.625rem;
}

.office__content-image--01 {
  grid-area: image-01;
}

.office__content-image--02 {
  grid-area: image-02;
}

.office__content-image--03 {
  grid-area: image-03;
}

.office__content-image--04 {
  grid-area: image-04;
}

.office__content-image--05 {
  grid-area: image-05;
}

.office__content-image--06 {
  grid-area: image-06;
}

.office__content-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 292/350;
  overflow: hidden;
  border-radius: 2.5rem;
}

.office__content-image--03,
.office__content-image--04 {
  aspect-ratio: 700/350;
}

.office__content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  width: 100%;
  padding: 4.25rem 1.5625rem;
  position: relative;
}

.contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/contact-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.contact__inner {
  width: 100%;
  padding: 1.875rem 0.625rem;
  background-color: #fff;
  border-radius: 2.5rem;
}

.contact__heading {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.contact__heading .title-top {
  padding-right: 0.125rem;
}

.contact__content {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 1.25rem;
  position: relative;
}

.contact__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.contact__content-item:first-child {
  border-bottom: 1px solid #14c9b6;
  padding-bottom: 1.875rem;
}

.contact__content-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.contact__content-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.contact__content-button {
  margin-top: -0.3125rem;
  width: 100%;
  margin-inline: auto;
}

.contact__content-button + .contact__content-text {
  margin-top: 0.9375rem;
}

.contact__content-button icon {
  width: 1.125rem;
}

.company {
  width: 100%;
  padding: 5rem 0;
}

.company__inner {
  width: 100%;
  max-width: 96%;
  background-color: #dcf8f4;
  border-radius: 0 5rem 5rem 0;
  padding: 2.5rem 0.875rem 5rem;
}

.company__content {
  width: 95%;
  margin-inline: auto;
  position: relative;
  padding-left: 0;
  padding-top: 2.5rem;
}

.company__content::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 5.545rem;
  aspect-ratio: 177/179;
  background-image: url(../img/company_logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.company__heading {
  position: relative;
  z-index: 2;
}

.company__list {
  margin-top: 1.875rem;
  border-top: 1px solid #14c9b6;
}

.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid #14c9b6;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}

.company__term {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.company__description {
  font-weight: 400;
  line-height: 1.5;
}

.company__description span {
  display: inline-block;
}

/* ==========================================
    スクロールインジケーター
   ========================================== */

.scroll-indicator {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  max-height: calc(100vh - 24.21875rem - 3.4375rem);
}

.scroll-indicator__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 2.3vh, 2rem);
  height: calc(100vh - 24.21875rem - 3.4375rem);
  max-height: 12.5rem;
  min-height: 5rem;
}

.scroll-indicator__text {
  font-size: clamp(0.75rem, 3vh, 1.25rem);
  font-weight: bold;
  letter-spacing: 0.3em;
  color: #14c9b6;
  -webkit-animation: flowDown 3s ease-in-out infinite;
          animation: flowDown 3s ease-in-out infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.scroll-indicator__line {
  width: 0.125rem;
  height: clamp(1.875rem, 8vh, 4.5rem);
  min-height: 1.875rem;
  background-color: rgba(20, 201, 182, 0.7);
  border-radius: 9999px;
  -webkit-animation: flowDown 3s ease-in-out 0.5s infinite;
          animation: flowDown 3s ease-in-out 0.5s infinite;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.scroll-indicator__arrow {
  color: #14c9b6;
  -webkit-animation: flowDown 3s ease-in-out 1s infinite;
          animation: flowDown 3s ease-in-out 1s infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.scroll-indicator__arrow svg {
  width: clamp(1.875rem, 5vh, 2.5rem);
  height: clamp(1.875rem, 5vh, 2.5rem);
}

@-webkit-keyframes flowDown {
  0% {
    -webkit-transform: translateY(-1.875rem);
            transform: translateY(-1.875rem);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
    opacity: 0;
  }
}

@keyframes flowDown {
  0% {
    -webkit-transform: translateY(-1.875rem);
            transform: translateY(-1.875rem);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
    opacity: 0;
  }
}

@media screen and (min-width: 414px) {
  .hide-sp {
    display: none;
  }
}

@media screen and (min-width: 524px) {
  .md-sm-none {
    display: block;
  }

  .hide-sm {
    display: none;
  }

  .footer__inner {
    margin-inline: auto;
    position: relative;
    left: 0.3125rem;
  }

  .footer__nav-list {
    max-width: initial;
  }

  .fv__logo {
    aspect-ratio: 181/183;
  }

  .fv__content-second {
    padding-block: 8.125rem;
  }

  .fv__content-second-text {
    text-align: center;
  }

  .introduction__heading-wrapper {
    top: 0;
    left: 7%;
  }

  .introduction__content {
    width: 80%;
  }

  .business__text {
    width: 87%;
  }

  .business__content-item {
    width: 87%;
  }
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .inner {
    max-width: 63.75rem;
    padding-inline: 1.25rem;
  }

  .hide-md {
    display: none;
  }

  .show-md {
    display: block;
  }

  .lg-md-only {
    display: block;
  }

  .md-sm-none {
    display: none;
  }

  .title-text .title-top {
    font-size: 1.25rem;
    line-height: 1.45;
  }

  .title-text .title-bottom {
    font-size: 2.5rem;
    line-height: 1.45;
  }

  .header {
    padding-top: 1.25rem;
  }

  .header__inner {
    height: 3.75rem;
    max-width: 76.25rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
  }

  .header__logo {
    width: 13.5625rem;
    aspect-ratio: 217/34;
  }

  .header__nav-list {
    gap: 1.25rem;
  }

  .header--other {
    padding: 0.9375rem 0;
  }

  .hamburger {
    display: none;
  }

  .drawer {
    display: none;
  }

  .footer {
    padding-block: 5rem 2.0625rem;
  }

  .footer__inner {
    max-width: 70rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.25rem;
    padding-inline: 1.25rem;
    margin-inline: auto;
    left: 0;
  }

  .footer__info {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .footer__info-logo {
    width: 13.5625rem;
    max-width: 217px;
    height: 2.125rem;
    margin-inline: 0;
  }

  .footer__info-text {
    margin-top: 1.75rem;
    font-size: 1rem;
    line-height: 1.6875;
  }

  .footer__nav-list {
    margin-top: -0.1875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5625rem;
    max-width: initial;
  }

  .footer__nav-link {
    font-size: 1rem;
  }

  .footer__bottom {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.9375rem;
    padding-inline: 1.25rem;
    max-width: 70rem;
    margin-inline: auto;
    gap: 0;
  }

  .footer__privacy-link-wrapper {
    margin-left: auto;
  }

  .footer__privacy-link {
    margin-left: auto;
    font-size: 0.875rem;
  }

  .footer__copyright {
    font-size: 1rem;
    line-height: 1.6875;
  }

  .button {
    padding: 0.90625rem 2.375rem;
    gap: 1.125rem;
  }

  .button.--green:hover {
    background-color: #fff;
    color: #14c9b6;
    border-color: #14c9b6;
  }

  .button.--green:hover .mail-icon {
    -webkit-filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(1174%) hue-rotate(131deg) brightness(92%) contrast(89%);
            filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(1174%) hue-rotate(131deg) brightness(92%) contrast(89%);
  }

  .button.--service {
    padding: 0.90625rem 1.5625rem;
  }

  .button.--yellow-green:hover {
    background-color: #fff;
    color: #2acc76;
    border-color: #2acc76;
  }

  .button.--yellow-green:hover .mail-icon {
    -webkit-filter: brightness(0) saturate(100%) invert(74%) sepia(34%) saturate(2159%) hue-rotate(96deg) brightness(93%) contrast(82%);
            filter: brightness(0) saturate(100%) invert(74%) sepia(34%) saturate(2159%) hue-rotate(96deg) brightness(93%) contrast(82%);
  }

  .button > span {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }

  .loading__logo {
    width: 9.4375rem;
  }

  .loading__logo-title {
    width: 15.625rem;
  }

  .page-fv {
    height: 23.125rem;
    margin-top: 5.625rem;
  }

  .page-fv--contact::after,
  .page-fv--privacy-policy::after {
    width: 87.1631944444%;
  }

  .page-fv--recruit,
  .page-fv--recruit-info {
    background-image: url(../img/recruit-fv.webp);
  }

  .page-fv--recruit::after,
  .page-fv--recruit-info::after {
    width: 67.0243055556%;
  }

  .page-fv__inner {
    max-width: 76.25rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
  }

  .page-fv__title {
    top: 12.375rem;
    -webkit-transform: none;
            transform: none;
    left: 1.25rem;
    font-size: 2.5rem;
    line-height: 1.45;
  }

  .contact-form {
    padding: 6.375rem 0 12.50625rem;
  }

  .contact-form__inner {
    max-width: 64.375rem;
  }

  .contact-form__header {
    gap: 0.75rem;
  }

  .contact-form__sub-title {
    font-size: 1.875rem;
    line-height: 1.4666666667;
  }

  .contact-form__note {
    font-size: 0.9375rem;
    line-height: 1.4;
    margin-left: -0.9375rem;
  }

  .contact-form__note--privacy-policy {
    margin-left: 0;
  }

  .contact-form__form {
    margin-top: 7.5625rem;
    gap: 1.875rem;
  }

  .contact-form__form-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.75rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .contact-form__form-label-wrap {
    min-width: 21.1875rem;
    padding-top: 0.75rem;
  }

  .contact-form__form-label {
    font-size: 0.9375rem;
    line-height: 1.875;
    min-width: 21.1875rem;
    gap: 12px;
  }

  .contact-form__form-label--mt {
    margin-top: 0;
  }

  .contact-form__form-label--column {
    gap: 0;
  }

  .contact-form__form-label-text {
    margin-bottom: -0.1875rem;
  }

  .contact-form__form-required {
    font-size: 0.75rem;
    padding: 0.1875rem 0.3125rem;
  }

  .contact-form__form-optional {
    font-size: 0.75rem;
    padding: 0.1875rem 0.625rem;
  }

  .contact-form__form-input-wrap {
    max-width: 37.5rem;
  }

  .contact-form__form-input {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.75rem 1.25rem;
  }

  .contact-form__form-textarea {
    margin-top: 1.875rem;
    min-height: 8.75rem !important;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.875rem 1.25rem;
  }

  .contact-form__form-checkbox-group {
    gap: 2.875rem;
  }

  .contact-form__form-checkbox ~ .contact-form__form-checkbox-text::before {
    width: 1.875rem;
    height: 1.875rem;
    background-size: 1rem 1rem;
  }

  .contact-form__form-checkbox:hover ~ .contact-form__form-checkbox-text::before {
    border-color: #14c9b6;
  }

  .contact-form__form-checkbox-text {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .contact-form__form-privacy {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 24.9375rem;
    padding-top: 1.875rem;
  }

  .contact-form__form-privacy-checkbox ~ .contact-form__form-privacy-text::before {
    width: 1.875rem;
    height: 1.875rem;
    background-size: 1rem 1rem;
  }

  .contact-form__form-privacy-checkbox:hover ~ .contact-form__form-privacy-text::before {
    border-color: #14c9b6;
  }

  .contact-form__form-privacy-text {
    font-size: 1rem;
    gap: 0.625rem;
  }

  .contact-form__form-button {
    margin-top: 1.875rem;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }

  .contact-form__submit-button {
    padding: 0.8125rem 3.125rem;
  }

  .contact-form__submit-button .contact-form__submit-button-arrow {
    right: 2.43125rem;
    width: 0.625rem;
  }

  .contact-form__form-button-group {
    margin-top: 1.25rem;
  }

  .contact-form__back-button {
    margin-top: 1.25rem;
    padding: 0;
  }

  .contact-form__thanks-content {
    margin-top: 1.25rem;
  }

  .contact-form__thanks-text,
  .contact-form__confirm-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .contact-form__thanks-text + .contact-form__thanks-text {
    margin-top: 1rem;
  }

  .contact-form__confirm-text {
    margin-top: 1.25rem;
  }

  .contact-form__form--confirm {
    margin-top: 3.125rem;
  }

  .contact-form__inner--thanks {
    max-width: 46.875rem;
  }

  .privacy-policy {
    padding: 6.25rem 0 8.75rem;
  }

  .privacy-policy__inner {
    padding-inline: 2.5rem;
  }

  .privacy-policy__content {
    gap: 3.125rem;
  }

  .privacy-policy__heading {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .privacy-policy__text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2;
  }

  .privacy-policy__text + .privacy-policy__text {
    margin-top: 1rem;
  }

  .privacy-policy__list {
    margin-top: 1rem;
    margin-left: 1rem;
    gap: 0.375rem;
  }

  .privacy-policy__list-item {
    font-size: 1rem;
    line-height: 1.75;
  }

  .privacy-policy__contact {
    margin-top: 1.5rem;
    padding: 1.25rem;
    gap: 0.5rem;
  }

  .privacy-policy__contact-title {
    font-size: 1rem;
    line-height: 1.5;
  }

  .privacy-policy__contact-item {
    font-size: 1rem;
    line-height: 1.75;
  }

  .fv {
    height: 220lvh;
  }

  .fv__content-first {
    min-height: 750px;
  }

  .fv__image-wrapper {
    height: 100svh;
    border-radius: 0 0 0 6.25rem;
  }

  .fv__image-wrapper::after {
    width: 100%;
    height: 66%;
  }

  .fv__image-wrapper img {
    aspect-ratio: 1440/818;
  }

  .fv__body {
    max-width: 72.5rem;
    bottom: 9.5625rem;
    left: 2.5rem;
  }

  .fv__logo {
    width: 11.3125rem;
  }

  .fv__title {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .fv__title-text {
    font-size: 3.75rem;
    padding: 0.75rem 0rem 0.9375rem 0.625rem;
    font-weight: 500;
    line-height: 1;
  }

  .fv__title-text .kerning {
    letter-spacing: -0.15em;
  }

  .fv__content-second {
    min-height: 750px;
    height: 56.25rem;
    height: 100svh;
    border-radius: 0 0 0 6.25rem;
  }

  .fv__content-second::before {
    min-height: 750px;
    height: 100%;
  }

  .fv__content-second::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/fv-overlay.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .fv__content-second-item {
    padding-top: 7.375rem;
    max-width: 41.875rem;
    padding-inline: 1.25rem;
    gap: 2.625rem;
    left: 1.6875rem;
  }

  .fv__content-second-title {
    font-size: 3.75rem;
    width: 100%;
  }

  .fv__content-second-image {
    width: 13.375rem;
    top: -5rem;
    left: 0;
  }

  .fv__content-second-text {
    font-size: 1.125rem;
    text-align: center;
    line-height: 2.2222222222;
  }

  .fv__content-second-text span + span {
    margin-top: 0;
  }

  .introduction {
    padding-block: 9.5625rem 6.875rem;
  }

  .introduction__inner {
    max-width: 78.75rem;
    margin-left: auto;
    max-width: 63.75rem;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .introduction__heading-wrapper {
    left: 10%;
  }

  .introduction__content {
    gap: 2.9375rem;
    margin-right: calc(50% - 50vw);
    width: 64.7916666667vw;
  }

  .introduction__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1rem;
    line-height: 2.1875;
    text-align: left;
    position: relative;
    left: 2rem;
  }

  .about {
    max-width: 94%;
    padding-block: 11.1375rem 10.8125rem;
  }

  .about__inner {
    max-width: 96.5%;
    border-radius: 0 5rem 5rem 0;
    padding-block: 5rem 7rem;
  }

  .about__inner::before {
    top: -3%;
    left: 2%;
  }

  .about__inner::after {
    bottom: -10%;
    right: 2%;
  }

  .about__content {
    width: 80%;
    width: 95%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875rem;
  }

  .about__content-body {
    width: 38.375rem;
  }

  .about__text {
    margin-top: 2.0625rem;
  }

  .about__text .text {
    font-size: 1rem;
    line-height: 2.5;
  }

  .about__text .text + .text {
    margin-top: 1.5rem;
  }

  .about__content-image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .about__content-image--top {
    top: -25%;
    right: -5.2%;
    width: 15.125rem;
  }

  .about__content-image--bottom {
    margin-top: 2.375rem;
    width: 18rem;
    margin-inline: 0;
    border-radius: 2.8125rem;
    width: 14.375rem;
  }

  .business {
    border-radius: 5rem 5rem 0 0;
    padding: 5.75rem 0 6.25rem;
  }

  .business__inner {
    max-width: 63.75rem;
    max-width: 72.75rem;
    margin-inline: auto;
  }

  .business__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 1.5625rem;
    font-size: 1rem;
    line-height: 2.5;
    text-align: center;
  }

  .business__content-list {
    margin-top: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 3.375rem 2.5rem;
  }

  .business__content-item {
    width: 18.75rem;
    width: 21.75rem;
    width: 20.75rem;
  }

  .business__content-item--wide {
    width: 21.875rem;
  }

  .business__content-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    width: 20.75rem;
  }

  .business__content-image-wrapper img {
    max-width: 9.375rem;
  }

  .business__content-title {
    margin-top: 0.6875rem;
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }

  .business__content-text {
    margin-top: 0.6875rem;
    font-size: 1rem;
    line-height: 2.5;
    text-align: left;
  }

  .business__content-text .show-md2 {
    display: inline-block;
  }

  .office {
    padding-block: 10.5rem 7.125rem;
  }

  .office__inner {
    padding-inline: 2.1875rem;
  }

  .office__heading {
    max-width: 61.25rem;
    margin-inline: auto;
  }

  .office__content {
    gap: 4.5rem;
    margin-top: 4.5rem;
  }

  .office__content-item--top {
    grid-template-columns: 1fr 1fr 2.39fr;
    grid-template-rows: 1fr;
    grid-template-areas: "image-01 image-02 image-03";
    gap: 2.625rem;
  }

  .office__content-item--bottom {
    grid-template-columns: 2.39fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "image-04 image-05 image-06";
    gap: 2.625rem;
  }

  .contact {
    padding: 6.125rem 0 4.5rem;
  }

  .contact__inner {
    border-radius: 4.375rem;
    padding: 2.9375rem 5rem 3.75rem;
    max-width: 61.25rem;
    margin-inline: auto;
  }

  .contact__heading .title-top {
    padding-right: 0;
    position: relative;
    left: -0.5rem;
  }

  .contact__content {
    grid-template-columns: 1fr 1fr;
    gap: 3.8125rem;
    margin-top: 2.5rem;
  }

  .contact__content::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #14c9b6;
    top: 50%;
    left: 48.5%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    width: 0.0625rem;
    height: 100%;
  }

  .contact__content-item {
    gap: 0.75rem;
  }

  .contact__content-item:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact__content-title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }

  .contact__content-text {
    font-size: 1rem;
    line-height: 2.1875;
    white-space: nowrap;
  }

  .contact__content-button {
    margin-top: 0;
    width: 23.125rem;
  }

  .contact__content-button + .contact__content-text {
    margin-top: 0.9375rem;
  }

  .contact__content-button icon {
    width: 1.27875rem;
  }

  .company__content {
    width: 82%;
    left: 3.125vw;
  }

  .company__content::before {
    top: 0.625rem;
    left: -6.1875rem;
    width: 11.0625rem;
  }

  .company__list {
    margin-top: 2.5rem;
  }

  .company__item {
    gap: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 2.1875rem 2.125rem;
    padding-left: 0.375rem;
  }

  .company__term {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 21.5%;
            flex: 0 0 21.5%;
    width: auto;
  }

  .scroll-indicator {
    max-height: calc(100vh - 51.125rem - 3.4375rem);
  }

  .scroll-indicator__container {
    height: calc(100vh - 51.125rem - 3.4375rem);
    max-height: 15.625rem;
    min-height: 7.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .hide-lg {
    display: none;
  }

  .show-lg {
    display: block;
  }

  .lg-md-only {
    display: none;
  }

  .button.--service {
    padding: 0.90625rem 2.375rem;
  }

  .about__content-image--top {
    width: 16.25rem;
  }

  .company {
    padding-block: 10.625rem;
  }

  .company__content {
    padding-top: 5rem;
  }
}

@media screen and (min-width: 1200px) {
  .header__nav {
    gap: 3.75rem;
  }

  .header__nav-list {
    gap: 2.5rem;
  }

  .footer__inner {
    gap: 6.25rem;
  }

  .footer__nav-list {
    gap: 2.5rem;
  }

  .fv__body {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }

  .introduction__heading-wrapper {
    top: 0;
    left: 2%;
    width: 11.25%;
  }

  .about__inner::before {
    top: -5.5%;
    left: 10.5%;
    width: 14.5%;
  }

  .about__inner::after {
    bottom: -10%;
    right: 1.2%;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    width: 16%;
  }

  .about__content {
    max-width: 67.75rem;
    position: relative;
    gap: clamp(85px, calc(85px + 72 * ((100vw - 1200px) / 187)), 157px);
    left: 6.1vw;
    gap: clamp(50px, calc(50px + 50 * ((100vw - 1200px) / 187)), 100px);
    padding-inline: 1.25rem;
  }

  .about__content-body {
    width: 443px;
    width: 614px;
  }

  .about__content-image--top {
    top: -40%;
    right: -3%;
  }

  .business::before {
    top: -2%;
    right: 2.5%;
    width: 14%;
  }

  .business::after {
    bottom: -2.5%;
    left: 1%;
    width: 15.2%;
  }
}

@media screen and (min-width: 1440px) {
  .hide-xl {
    display: none;
  }

  .loading__inner {
    width: 62.5rem;
  }

  .fv__body {
    max-width: 73.75rem;
  }

  .about__content {
    gap: 9.8125rem;
    gap: 6.25rem;
  }

  .about__content-body {
    width: 27.6875rem;
    width: 38.375rem;
  }

  .about__content-image--top {
    right: -8.2%;
    width: 17.625rem;
  }

  .company__inner {
    max-width: 90.8%;
    padding: 6.0625rem 5rem 8.125rem;
  }
}

@media screen and (min-width: 1601px) {
  .hide-xl2 {
    display: none;
  }

  .introduction__heading-wrapper {
    left: 0;
    width: 10%;
  }

  .business::before {
    width: 16%;
  }
}

@media screen and (min-width: 1920px) {
  .about__content-image--top {
    right: -15%;
  }
}

@media (min-width: 1921px) {
  html {
    font-size: min(0.8333333333vw, 19.2px);
  }
}

@media (max-width: 768px) {
  html {
    font-size: min(4.2666666667vw, 24px);
  }
}

@media only screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1020px) {
  html {
    font-size: 1.568627451vw;
  }
}

@media (min-width: 1020px) and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 400px) and (max-width: 524px) and (min-height: 750px) and (max-height: 1000px) {
  .scroll-indicator {
    bottom: 6.25rem;
  }
}

@media screen and (min-width: 800px) and (max-width: 1000px) and (min-height: 1050px) and (max-height: 1200px) {
  .scroll-indicator {
    bottom: 6.25rem;
  }
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }

  .header__nav-link:hover {
    color: #14c9b6;
    opacity: 1;
  }

  .header.is-inverted .header__nav-button .button.--green:hover {
    background-color: #14c9b6;
    color: #fff;
  }

  .footer__nav-link:hover {
    opacity: 1;
  }

  .footer__nav-link:hover::after {
    width: 100%;
  }

  .contact-form__back-button:hover {
    opacity: 0.7;
  }
}
/*# sourceMappingURL=style.css.map */