:root {
  --primary-font: "Noto Sans JP", sans-serif;
  --secondary-font: "Noto Serif JP", serif;
  --third-font: "Poppins", sans-serif;
  --primary-color: #42ad13;
  --secondary-color: #0c7443;
  --text-color: #000;
  --heading-color: #000;
  --muted-color: #444;
  --muted-hover-color: #000;
  --border-color: #ebe7e7;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

p {
  margin: 0 0 16px;
}

p:last-child {
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

html {
  margin: 0;
  padding: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-display: swap;
  overflow-x: hidden;
}

.container-full {
  max-width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.button {
  position: relative;
  cursor: pointer;
  margin: 0;
  border: 1px solid #000;
  overflow: visible;
  font: inherit;
  color: #000;
  background: #fff;
  text-transform: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 70px;
  box-sizing: border-box;
  padding: 0 25px;
  vertical-align: middle;
  font-family: var(--secondary-font);
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s all;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.16);
  min-width: 400px;
}

.button:hover {
  color: var(--secondary-color);
}

.button span.button__text {
  position: relative;
  overflow: hidden;
  display: -webkit-inline-box;
  display: inline-flex;
  pointer-events: none;
  gap: 0.5rem;
}

.button span.button__text span {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 0.625rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.button span.button__text span:last-child {
  position: absolute;
  left: 0;
  -webkit-transform: translateY(130%) translateZ(0);
  transform: translateY(130%) translateZ(0);
  pointer-events: none;
}

.button:hover span.button__text span:first-child {
  -webkit-transform: translateY(-130%) translateZ(0);
  transform: translateY(-130%) translateZ(0);
}

.button:hover span.button__text span:last-child {
  -webkit-transform: translateY(0) translateZ(0);
  transform: translateY(0) translateZ(0);
}

.button span.button__icon {
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#cf7-btn-back .button__icon{
  left: 21px;
  right: auto;
}

#cf7-btn-back .button__icon svg{
  transform: rotate(180deg);
}

.button span.button__icon svg {
  width: 20px;
  height: 16px;
}

.img-cover {
  position: relative;
  display: block;
}

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

.toogle-hover {
  position: relative;
  overflow: hidden;
}

.toogle-hover img {
  transition: all 0.3s;
}

.toogle-hover:hover img {
  transform: scale(1.1);
}

.toogle-hover:hover .news__title {
  color: var(--secondary-color);
}

.hidden {
  display: none !important;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

/* Form */

.form-contact {
  max-width: 660px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-label {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.8px;
}

.form-group.form-checkbox .form-label{
  margin-bottom: 10px;
}

.form-label span.required {
  color: red;
}

.form-input {
  -webkit-appearance: none;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
  background-color: #ededed;
  height: 40px;
  border: none;
  outline: none;
  color: #000;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  transition: all 0.3s;
}

textarea.form-input{line-height: 1.875}

.form-checkbox span.wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  outline: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  outline: none;
  background: #fff;
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.other__tx {
  font-size: 12px;
  line-height: 1.8;
  color: #b5b5b5;
  margin: 20px 0 10px !important;
}

textarea.form-input {
  padding: 15px;
  min-height: 100px;
}

.form-group.privacy .privacy-content {
  padding: 12px;
  border: 1px solid #b9b9b9;
  background: #f5f5f5;
  max-height: 130px;
  overflow: auto;
}

.form-group.privacy .privacy-content p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  margin: 0 0 5px;
}

.form-group .wpcf7-list-item {
  margin-left: 0 !important;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.form-group.form-submit {
  display: flex;
  justify-content: center;
}

#cf7-btn-submit{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

#cf7-btn-submit svg path{
  fill: #fff;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
}

.wpcf7-spinner {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1 !important;
  margin: 0 !important;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  margin: 2em auto 1em !important;
}

/* Header */

#ant-header {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  right: 0;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
}

#ant-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: all 0.3s;
  opacity: 1;
}

body.home #ant-header {
  position: fixed;
}

body.home #ant-header::before {
  height: 0;
}

body.home #ant-header.header--sticky::before {
  height: 100%;
}

.site-header__inner {
  position: relative;
  display: flex;
}

.header__left,
.header__right {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header__right {
  margin-left: auto;
}

.header__logo {
  display: flex;
  margin-left: 30px;
  position: relative;
}

.header__logo img {
  height: 60px;
  width: auto;
  object-fit: cover;
}

.header__actions {
  display: flex;
  align-items: center;
}

.header__actions .button {
  min-width: 150px;
  height: 80px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.8px;
  box-shadow: none;
}
a.disable.menu-item.menu-item-type-custom.menu-item-object-custom.footer__link,
a.button.disable {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.header__actions .button:first-child {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.header__actions .button:last-child {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

a.button.button--secondary.disable {
  background: grey !important;
  border-color: grey !important;
  cursor: not-allowed;
  pointer-events: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__link {
  position: relative;
  font-family: var(--secondary-font);
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.header__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
  opacity: 1;
}

.header__link:hover::before {
  width: 100%;
}

.header__link.current-menu-item::before,
.header__link.current-menu-parent::before {
  width: 100%;
}

.header__mobile-toggle {
  display: none;
}

@media (max-width: 600px) {
  .header__right {
    display: none;
  }

  .header__mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
    transition: 0.3s;
  }

  .header__mobile-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
  }

  /* Active state for hamburger animation */
  .header__mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header__mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header__inner {
    justify-content: space-between;
    align-items: center;
  }

  .header__logo {
    margin-left: 15px;
  }

  .header__logo img {
    height: 30px;
  }
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  transform: translateX(100%);
  transition: all 0.3s;
  visibility: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .header__mobile-menu {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

.mobile-menu__nav .header__link {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 300px;
}

.mobile-menu__actions .button {
  min-width: 100% !important;
  height: 60px !important;
  font-size: 16px !important;
  color: #fff !important;
}

.mobile-menu__actions .button--primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.mobile-menu__actions .button--secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

/* Home */

section {
  position: relative;
  display: block;
}

.section__header {
  position: relative;
  margin: 0 0 40px;
}

.section__title {
  color: var(--secondary-color);
  text-align: center;
  font-family: var(--third-font);
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 7px;
  text-decoration: underline;
  margin: 0 0 40px;
}

.section__subtitle {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin: 0;
}

.hero__bg {
  display: flex;
  width: 100%;
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.hero__title {
  margin: 0 0 47px;
}

.hero__title img {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  object-fit: cover;
}

.hero__description {
  color: #fff;
  text-align: center;
  font-family: var(--third-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.6px;
  opacity: 0.4;
}

/* Intro */
.intro {
  position: relative;
  padding: 100px 0 120px;
  background: url(../img/intro_bg.png) no-repeat bottom center/cover;
}

.intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro__line {
  width: 1px;
  height: 60px;
  background-color: var(--primary-color);
  margin-bottom: 36px;
}

.intro__text {
  margin: 0;
  color: #000;
  font-family: var(--secondary-font);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 4px;
}

.intro__highlight {
  background: linear-gradient(transparent 70%, #caff3b 70%);
}

/* Results */
.results {
  padding: 84px 0 80px;
  text-align: center;
  background: url(../img/result_bg.png) no-repeat center center/cover;
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 100px;
}

.results__card {
  height: 345px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.results__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.results__card-content {
  position: relative;
  font-family: var(--secondary-font);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.results__label {
  margin: 0 0;
  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

.results__label span {
  color: var(--primary-color);
}

.results__value {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
}

.results__value .first {
  color: #caff3b;
  font-size: 100px;
  letter-spacing: 5px;
}

.results__value .last {
  color: #fff;
  font-size: 60px;
  letter-spacing: 3px;
}

.results__btn {
  margin: 60px 0 0;
}

.results__btn img {
  width: 500px;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

/* About */
.about {
  padding: 124px 0 120px;
  color: #fff;
  text-align: center;
  background: url(../img/about_bg.png) no-repeat center center/cover;
}

.about__text {
  color: #fff;
  font-family: var(--secondary-font);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
  margin: 0 0 26px;
}

.about__visual {
  max-width: 685px;
  margin: 0 auto;
}

/* Comparison */

.comparison {
  padding: 126px 0 120px;
  background: url(../img/comparison_bg.png) no-repeat center center/cover;
}

.comparison .section__header {
  margin: 0 0 92px;
}

.comparison .section__subtitle {
  font-family: var(--secondary-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.667;
  letter-spacing: 1.5px;
}

.comparison__grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  max-width: 1336px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.16);
}

.comparison__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(45deg, #848484 50%, #ccc 100%);
  padding: 50px 50px 33px 50px;
}

.comparison__item--general {
  border-radius: 20px 0 0 20px;
}

.comparison__item--aitowa {
  border-radius: 0 20px 20px 0;
  background: linear-gradient(45deg, #a3ea84 50%, #caff3b 100%);
}

.comparison__item-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}

.comparison__item-body {
  width: 100%;
  margin-top: -36px;
}

.comparison__item-title {
  margin: 0 0;
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 2px;
}

.comparison__item--aitowa .comparison__item-title {
  color: #0c7443;
  font-size: 80px;
  line-height: normal;
  letter-spacing: 4px;
  line-height: 1;
}

.comparison__item-img {
  text-align: center;
  width: 100%;
  height: auto;
}

.comparison__item-img img {
  max-width: 250px;
  margin: 0 auto;
}

.comparison__item--aitowa .comparison__item-img img {
  max-width: 500px;
  margin: 0 auto;
}

.comparison__item-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison__item-list li:not(:last-child) {
  margin-bottom: 10px;
}

.comparison__item-list li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 1px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.16);
  padding: 13px 20px;
  background: #fff;
}

.comparison__item-list li::before {
  content: "";
  display: inline-block;
  background: url(../img/check.svg) no-repeat center center/cover;
  flex: 0 0 auto;
  width: 26px;
  height: 24px;
}

.comparison__item--aitowa .comparison__item-list li {
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: 1.2px;
}

.comparison__item--aitowa .comparison__item-list li::before {
  width: 32px;
  height: 28px;
  transform: translateY(3px);
}

.comparison__btn {
  margin: 60px 0 0;
  display: flex;
  justify-content: center;
}

/* Service */

.service {
  color: #fff;
  text-align: center;
  padding: 80px 0 82px;
  background: url(../img/service_bg.png) no-repeat center center/cover;
}

.service__card {
  display: block;
  max-width: 660px;
  margin: 0 auto;
  background: #fff;
}

.service__card-img {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 2;
}

.service__card-content {
  text-align: left;
  background-color: #fff;
  padding: 26px;
}

.service__card-title {
  margin: 0 0 10px;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.7px;
}

.service__card-text {
  font-family: var(--secondary-font);
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
}

.service__text {
  color: #fff;
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.666667;
  letter-spacing: 1.2px;
  margin: 54px 0 60px;
}

/* News */

.news {
  padding: 124px 0 130px;
  background: url(../img/result_bg.png) no-repeat center center/cover;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news__card {
  display: block;
  background: #fff;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.16);
  text-decoration: none;
  color: #000;
}

.news__card-img {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
}

.news__card-content {
  position: relative;
  padding: 20px;
}

.news__title {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.8px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__btn {
  margin: 40px 0 0;
  display: flex;
  justify-content: center;
}

/* Layout */

.page-hero {
  overflow: hidden;
  padding: 68px 0 62px;
}

.page-hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 761px;
  display: flex;
}

.page-hero__bottom img {
  width: 100%;
  height: auto;
}

.page-hero__inner {
  margin-left: 100px;
}

.page-hero__title {
  margin: 0 0 30px;
  color: #0c7443;
  font-family: var(--secondary-font);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 5px;
}

.page-hero__entitle{
  color: #777;
  font-weight: 400;
  letter-spacing: 0.28px;
  display: flex;
  align-items: center;
}

.sub-title-line {
  background-color: #777;
  height: 1px;
  position: relative;
  width: 16px;
  margin-right: 4px;
}

.page-hero__description {
  color: #000;
  font-family: var(--secondary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
  margin: 0 0 30px;
}

.single-news__title{
  font-size: 32px;
  margin: 0 0 46px;
}

.single-news__meta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}

.single-news__meta--item, .page-hero__meta--item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-news__meta--item ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.single-news__meta--item ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 7px 14px;
  background: #A7A7A7;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.single-news__eyeCatching{
  margin-bottom: 24px;
}

.single-news__eyeCatching img{
  width: 100%;
  height: auto;
}

.page-hero__banner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.page-hero__banner img {
  position: relative;
  z-index: 2;
  width: 1100px;
  height: auto;
}

.page-hero__banner .img-wrapper:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -16px;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transform: rotate(-2deg);
}

/* ContentBody */

.page-content {
  padding: 87px 0 120px;
}

.pagination {
  margin-top: 30px;
}

.pagination__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pagination__list li a,
.pagination__list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.8px;
  text-decoration: none;
}

.pagination__list li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination__list li a.current,
.pagination__list li span.current {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.ContentBody {
  letter-spacing: 0.8px;
  line-height: 1.625;
}

.ContentBody h1,
.ContentBody h2,
.ContentBody h3,
.ContentBody h4,
.ContentBody h5,
.ContentBody h6 {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 30px;
}

.ContentBody h1 {
  font-size: 34px;
}

.ContentBody h2 {
  font-size: 30px;
}

.ContentBody h3 {
  font-size: 24px;
}

.ContentBody blockquote,
.ContentBody code {
  background: #fdf8f8;
  padding: 20px 30px;
  font-size: 18px;
  font-style: normal;
  border-left: 5px solid var(--primary-color);
}

.ContentBody figure {
  margin: 0 auto;
  max-width: 100%;
}

.ContentBody figure figcaption {
  text-align: center;
  font-size: 95%;
  color: #000;
  max-width: 100%;
  margin: 12px auto 0 auto;
}

.ContentBody li:not(:last-child) {
  margin-bottom: 8px;
}

.ContentBody img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
}

.ContentBody img.wp-smiley {
  margin: 0;
  padding: 0;
  border: none;
}

.ContentBody img.aligncenter {
  margin: 0 auto 20px;
  display: block;
}

.ContentBody .wp-caption {
  max-width: 100%;
  margin: 0 auto 20px;
}

.ContentBody .wp-caption a {
  cursor: pointer;
}

.ContentBody .wp-caption img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.ContentBody .wp-caption .wp-caption-text,
.ContentBody .wp-caption-dd {
  font-size: 14px;
  padding: 8px 8px 8px 30px;
  text-align: left;
  color: #000;
  position: relative;
}

.ContentBody .wp-caption .wp-caption-text:before {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  top: 7px;
  left: 10px;
  content: "\2014";
  color: #000;
}

.ContentBody p {
  margin: 0 0 30px;
}

.ContentBody p:last-child {
  margin-bottom: 0 !important;
}

.ContentBody a {
  color: var(--secondary-color);
}

.ContentBody .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.ContentBody .gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ContentBody .gallery-icon,
.ContentBody .gallery img {
  height: 100%;
}

.ContentBody iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.ContentBody table {
  border-collapse: collapse;
  width: 830px;
  margin: 0 auto;
}

.ContentBody table tr td {
  color: #000;
  font-weight: 500;
  padding: 11px 0 11px;
}

.ContentBody table tr td:first-child {
  color: var(--secondary-color);
  width: 86px;
  padding-right: 20px;
}

.ContentBody table tr {
  border-bottom: 1px solid #d3d3d3;
}

/* CTA Split */

.cta-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cta-split__side {
  width: 50%;
  height: auto;
  aspect-ratio: 100 / 73;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.cta-split__side .section__header {
  margin: 0 0 10px;
}

.cta-split__side--contact {
  background: url(../img/ctacontact_bg.png) no-repeat center center/cover;
}

.cta-split__side--recruit {
  background: url(../img/ctarecruit_bg.png) no-repeat center center/cover;
}

.cta-split__side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-split__side--contact::before {
  opacity: 0.85;
  background: linear-gradient(45deg, #063a22 50%, #0c7443 100%);
}

.cta-split__side--recruit::before {
  opacity: 0.85;
  background: linear-gradient(45deg, #21570a 50%, #42ad13 100%);
}

.cta-split__content {
  position: relative;
  font-family: var(--secondary-font);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-split__content p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.8px;
}

/* Footer */

.footer {
  position: relative;
}

.footer__inner {
  background: rgba(0, 0, 0, 0.85);
  padding: 82px 0 71px;
  text-align: center;
}

.footer__logo {
  color: #fff;
  font-family: var(--third-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  margin: 0 0 34px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.footer__link {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.8px;
  text-decoration: none;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer_copy{
	color: #fff;
    font-family: var(--third-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    margin: 34px 0 0;
}

@media (min-width: 601px) {
  body {
    font-size: 1.0417vw;
  }

  .form-contact {
    max-width: 42.9688vw;
  }

  .form-group {
    margin-bottom: 2.0833vw;
  }

  .form-label {
    font-size: 1.0417vw;
  }

  .form-input {
    padding: 0 0.9766vw;
    height: 2.6042vw;
    font-size: 1.0417vw;
  }

  textarea.form-input {
    padding: 0.9766vw;
    min-height: 6.5104vw;
  }

  .form-group.privacy .privacy-content {
    padding: 0.7813vw;
    max-height: 8.4635416667vw;
  }

  .form-group.privacy .privacy-content p {
    font-size: 0.9115vw;
    margin: 0 0 0.3255vw;
  }

  .form-group .wpcf7-list-item {
    font-size: 0.9115vw;
  }

  .wpcf7-not-valid-tip {
    font-size: 0.9115vw !important;
  }

  .wpcf7 form .wpcf7-response-output {
    width: 42.9688vw;
  }

  .form-check input[type="checkbox"] {
    width: 1.3021vw;
    height: 1.3021vw;
  }

  .container {
    max-width: 65.1042vw;
    margin: 0 auto;
  }

  .button {
    gap: 0.5208vw;
    height: 4.5573vw;
    box-sizing: border-box;
    padding: 0 1.6276vw;
    font-size: 1.3021vw;
    min-width: 26.0417vw;
  }

  .button span.button__icon {
    right: 1.3672vw;
  }

  #cf7-btn-back .button__icon{
    left: 1.5625vw;
    right: auto;
  }

  .button span.button__icon svg {
    width: 1.3021vw;
    height: 1.0417vw;
  }

  /* Header */

  .header__left,
  .header__right {
    gap: 1.9531vw;
  }

  .header__logo {
    margin-left: 1.9531vw;
  }

  .header__logo img {
    height: 3.9062vw;
  }

  .header__actions .button {
    min-width: 9.7656vw;
    height: 5.2083vw;
    font-size: 1.0417vw;
  }

  .header__nav {
    gap: 1.9531vw;
  }

  .header__link {
    font-size: 1.0417vw;
  }

  /* Home */

  .section__header {
    margin: 0 0 2.6042vw;
  }

  .section__title {
    font-size: 4.5573vw;
    margin: 0 0 2.6042vw;
  }

  .section__subtitle {
    font-size: 1.5625vw;
  }

  .hero__title {
    margin: 0 0 3.0599vw;
  }

  .hero__title img {
    width: 78.125vw;
  }

  .hero__description {
    font-size: 0.7812vw;
  }

  /* Intro */
  .intro {
    padding: 6.5104vw 0 7.8125vw;
  }

  .intro__line {
    height: 3.9062vw;
    margin-bottom: 2.3438vw;
  }

  .intro__text {
    font-size: 2.6042vw;
  }

  /* Results */
  .results {
    padding: 5.4688vw 0 5.2083vw;
  }

  .results__grid {
    gap: 1.3021vw;
    margin: 0 6.5104vw;
  }

  .results__card {
    height: 22.4609vw;
    padding: 2.6042vw 0;
  }

  .results__card-content {
    gap: 2.0833vw;
  }

  .results__label {
    font-size: 1.9531vw;
  }

  .results__value {
    font-size: 1.5625vw;
  }

  .results__value .first {
    font-size: 6.5104vw;
  }

  .results__value .last {
    font-size: 3.9062vw;
  }

  .results__btn {
    margin: 3.9062vw 0 0;
  }

  .results__btn img {
    width: 32.5521vw;
    margin: 0 auto;
  }

  /* About */
  .about {
    padding: 8.0729vw 0 7.8125vw;
  }

  .about__text {
    font-size: 1.3021vw;
    margin: 0 0 1.6927vw;
  }

  .about__visual {
    max-width: 44.5964vw;
    margin: 0 auto;
  }

  /* Comparison */

  .comparison {
    padding: 8.2031vw 0 7.8125vw;
  }

  .comparison .section__header {
    margin: 0 0 5.9896vw;
  }

  .comparison .section__subtitle {
    font-size: 1.9531vw;
  }

  .comparison__grid {
    grid-template-columns: 33.8542vw 1fr;
    row-gap: 1.3021vw;
    max-width: 86.9792vw;
  }

  .comparison__item {
    padding: 3.2552vw 3.2552vw 2.1484vw 3.2552vw;
  }

  .comparison__item-body {
    margin-top: -2.3438vw;
  }

  .comparison__item-title {
    font-size: 2.6042vw;
  }

  .comparison__item--aitowa .comparison__item-title {
    font-size: 5.2083vw;
  }

  .comparison__item-img img {
    max-width: 16.276vw;
  }

  .comparison__item--aitowa .comparison__item-img img {
    max-width: 32.5521vw;
  }

  .comparison__item-list li:not(:last-child) {
    margin-bottom: 0.651vw;
  }

  .comparison__item-list li {
    gap: 0.7812vw;
    font-size: 1.3021vw;
    padding: 0.8464vw 1.3021vw;
  }

  .comparison__item-list li::before {
    width: 1.6927vw;
    height: 1.5625vw;
  }

  .comparison__item--aitowa .comparison__item-list li {
    font-size: 1.5625vw;
  }

  .comparison__item--aitowa .comparison__item-list li::before {
    width: 2.0833vw;
    height: 1.8229vw;
    transform: translateY(0.1953vw);
  }

  .comparison__btn {
    margin: 3.9062vw 0 0;
  }

  /* Service */

  .service {
    padding: 5.2083vw 0 5.3385vw;
  }

  .service__card {
    max-width: 42.9688vw;
  }

  .service__card-content {
    padding: 1.6927vw;
  }

  .service__card-title {
    margin: 0 0 0.651vw;
    font-size: 2.2135vw;
  }

  .service__card-text {
    font-size: 1.3021vw;
  }

  .service__text {
    font-size: 1.5625vw;
    margin: 3.5156vw 0 3.9062vw;
  }

  /* News */

  .news {
    padding: 8.0729vw 0 8.4635vw;
  }

  .news__grid {
    gap: 1.3021vw;
  }

  .news__card-content {
    padding: 1.3021vw;
  }

  .news__title {
    font-size: 1.0417vw;
  }

  .news__btn {
    margin: 2.6042vw 0 0;
  }

  /* Layout */

  .page-hero {
    padding: 4.4271vw 0 4.0365vw;
  }

  .page-hero__bottom {
    width: 49.5443vw;
  }

  .page-hero__inner {
    margin-left: 6.5104vw;
  }

  .page-hero__title {
    margin: 0 0 1.9531vw;
    font-size: 3.2552vw;
  }

  .page-hero__description {
    font-size: 1.5625vw;
    margin: 0 0 1.953vw;
  }

  .page-hero__banner img {
    width: 71.6146vw;
    height: auto;
  }

  .page-hero__banner .img-wrapper:before {
    left: -1.0417vw;
  }

  .page-hero__entitle{
    font-size: 1.0417vw;
  }

  .sub-title-line {
    width: 1.0417vw;
    margin-right: 0.2604vw;
  }

  .single-news__title{
    font-size: 2.084vw;
    margin: 0 0 3vw;
  }

  .single-news__meta{
    margin: 0 0 1.5625vw;
  }

  .single-news__meta--item ul li a {
    font-size: 0.9115vw;
    padding: 0.4568vw 0.9115vw;
  }

  .single-news__eyeCatching{
    margin-bottom: 1.5625vw;
  }

  .ContentBody table {
    width: 53%;
  }

  .ContentBody table tr td {
    padding: 0.7161vw 0 0.7161vw;
  }

  .ContentBody table tr td:first-child {
    width: 5.599vw;
    padding-right: 1.3021vw;
  }

  .page-content {
    padding: 5.6641vw 0 7.8125vw;
  }

  .pagination {
    margin-top: 1.9531vw;
  }

  .pagination__list {
    gap: 0.7813vw;
  }

  .pagination__list li a,
  .pagination__list li span {
    width: 3.125vw;
    height: 3.125vw;
    font-size: 1.0417vw;
  }

  /* CTA Split */

  .cta-split__side {
    padding: 2.6042vw;
  }

  .cta-split__side .section__header {
    margin: 0 0 0.651vw;
  }

  .cta-split__content p {
    font-size: 1.0417vw;
  }

  /* Footer */

  .footer__inner {
    padding: 5.3385vw 0 4.6224vw;
  }

  .footer__logo {
    font-size: 1.9531vw;
    margin: 0 0 2.2135vw;
  }
  
  .footer_copy{
  	font-size: 0.846vw;
    margin: 2.2135vw 0 0;
  }

  .footer__nav {
    gap: 1.9531vw;
  }

  .footer__link {
    font-size: 1.0417vw;
  }
}

@media (max-width: 600px) {
  .page-hero__banner .img-wrapper:before {
    left: -7px;
  }
  .button {
    min-width: 100%;
    height: 60px;
    font-size: 18px;
    letter-spacing: 0.9px;
  }

  .form-label {
    color: #000;
    font-size: 14px;
    letter-spacing: 0.7px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group.form-submit {
    margin: 53px 0 0;
  }

  .container-full {
    padding: 0 15px;
  }

  .section__header {
    margin: 0 0 30px;
  }

  .section__title {
    font-size: 45px;
    line-height: 133.333%;
    letter-spacing: 2.25px;
    margin: 0 0 30px;
  }

  .section__subtitle {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .hero__title--mb {
    text-align: center;
    margin: 0 0 30px;
  }

  .hero__title--mb .img2 {
    width: 225px;
  }

  .hero__content{
    top: 50%;
  }

  .hero__description {
    font-size: 8px;
    letter-spacing: 0.4px;
  }

  .intro {
    padding: 60px 0 69px;
  }

  .intro .container-full {
    padding: 0;
  }

  .intro__text {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .results__grid {
    margin: 0;
    grid-template-columns: 1fr;
  }

  .results__card {
    padding: 30px 15px 20px;
    height: 172px;
  }

  .results__card-content {
    gap: 20px;
  }

  .results__label {
    font-size: 15px;
    letter-spacing: 0.75px;
  }

  .results__value {
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  .results__value .first {
    font-size: 52px;
    letter-spacing: 2.6px;
  }

  .results__value .last {
    font-size: 31px;
    letter-spacing: 1.55px;
  }

  .results__btn {
    margin: 20px 0 0;
  }

  .results__btn img {
    max-width: 100%;
  }

  .about {
    padding: 82px 0 80px;
  }

  .about .container-full {
    padding: 0;
  }

  .about__text {
    font-size: 16px;
    line-height: 187.5%;
    letter-spacing: 0.8px;
  }

  .about__visual {
    padding: 0 15px;
  }

  .comparison {
    padding: 82px 0 75px;
    background: url(../img/comparison_bg_mb.png) no-repeat center center/cover;
  }

  .comparison .container-full {
    padding: 0;
  }

  .comparison .section__header {
    margin: 0 0 50px;
  }

  .comparison .section__subtitle {
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 1.1px;
  }

  .comparison__grid {
    grid-template-columns: 1fr;
    margin: 0 15px;
  }

  .comparison__item {
    padding: 30px 20px 20px;
  }

  .comparison__item--general {
    border-radius: 20px 20px 0 0;
  }

  .comparison__item--aitowa {
    border-radius: 0 0 20px 20px;
    padding: 40px 20px;
  }

  .comparison__item-title {
    font-size: 30px;
    letter-spacing: 1.5px;
  }

  .comparison__item-list li {
    font-size: 16px !important;
    letter-spacing: 0.8px !important;
    gap: 10px;
    padding: 10px;
  }

  .comparison__item-list li::before {
    width: 21px !important;
    height: 20px !important;
  }

  .comparison__item--aitowa .comparison__item-header {
    position: relative;
    left: 0;
    transform: none;
    margin: 0 0 10px;
  }

  .comparison__item--aitowa .comparison__item-title {
    font-size: 60px;
    letter-spacing: 3px;
  }

  .comparison__btn {
    margin: 45px 0 0;
    padding: 0 15px;
  }

  .service__card-content {
    padding: 24px 18px;
  }

  .service__card-title {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .service__card-text {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .service__card-text br {
    display: none;
  }

  .service__text {
    font-size: 19px;
    letter-spacing: 1px;
    margin: 30px 0 30px;
  }

  .news {
    padding: 82px 0 75px;
  }

  .news__grid {
    grid-template-columns: 1fr;
  }

  /* Layout */

  .page-content {
    padding: 40px 0 74px;
  }

  .ContentBody {
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 1.85;
  }

  .ContentBody p {
    margin: 0 0 20px;
  }

  .ContentBody table {
    width: 100%;
  }

  .ContentBody table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .ContentBody table tr td {
    padding: 0;
  }

  .page-hero {
    padding: 30px 0 24px;
  }

  .page-hero__inner {
    margin-left: 15px;
  }

  .page-hero__title {
    font-size: 30px;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
  }

  .page-hero__description {
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-bottom: 35px;
  }

  .page-hero__banner img {
    width: 305px;
  }

  .page-hero__bottom {
    width: 375px;
  }

  .cta-split {
    flex-wrap: wrap;
  }

  .cta-split__side {
    width: 100%;
    padding: 40px 15px;
    aspect-ratio: 388 / 375;
  }

  .cta-split__side > * {
    width: 100%;
  }

  .cta-split__content p {
    font-size: 14px;
    letter-spacing: 0.7px;
    margin: 0 0 27px;
  }

  .footer__inner {
    padding: 41px 0 33px;
  }

  .footer__logo {
    font-size: 24px;
    letter-spacing: 1.2px;
    margin: 0 0 30px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 20px;
  }

  .footer__link {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}