@charset "UTF-8";
/*
Theme Name: Tinuviel Therapeutics
Author: Eizner Design & exMedia
Version: 1.0
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "RiformaLL";
  src: url(assets/fonts/RiformaLL-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "RiformaLL";
  src: url(assets/fonts/RiformaLL-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "RiformaLL";
  src: url(assets/fonts/RiformaLL-Medium.otf) format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "RiformaMonoLL";
  src: url(assets/fonts/RiformaMonoLLTrialTT-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexMono";
  src: url(assets/fonts/IBMPlexMono-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "RiformaLL", "sans-serif";
  font-weight: 400;
  font-size: 16px;
  color: #000;
  background-color: transparent;
  -webkit-print-color-adjust: exact;
}
body.no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

* {
  box-sizing: border-box;
}

.bg-white {
  background-color: white;
}

h1.page-title {
  font-size: 35px;
  line-height: 1.2em;
}

h4 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 500;
}

p {
  font-size: 15px;
  line-height: 1.3em;
  margin-bottom: 1em;
}

ul {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 0.8em;
  list-style-type: "- ";
}

ul li {
  font-size: 15px;
  line-height: 1.3em;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

a {
  color: #000;
  text-decoration: none;
}

a.linkedin-link {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: no-repeat center/cover url(assets/images/LinkedIn-black.svg);
}
a.linkedin-link:hover {
  background-image: url(assets/images/LinkedIn-green.svg);
}

a.email-link {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: no-repeat center/cover url(assets/images/email-black.svg);
}
a.email-link:hover {
  background-image: url(assets/images/email-green.svg);
}

.tablet-display {
  display: none;
}

.desktop-display {
  display: none;
}

@media screen and (min-width: 768px) {
  h1.page-title {
    font-size: 58px;
  }
  .container {
    padding: 0 40px;
  }
  .mobile-display {
    display: none;
  }
  .tablet-display {
    display: block;
  }
}
@media screen and (min-width: 1091px) {
  h1.page-title {
    font-size: 64px;
  }
  .mobile-tablet-display {
    display: none;
  }
  .desktop-display {
    display: block;
  }
}
@media screen and (min-width: 1701px) {
  h1.page-title {
    font-size: 77px;
  }
  h4 {
    font-size: 21px;
  }
  p {
    font-size: 19px;
  }
  ul li {
    font-size: 19px;
  }
  .container {
    max-width: 1920px;
    padding: 0 50px;
  }
  a.linkedin-link {
    width: 32px;
    height: 32px;
  }
  a.email-link {
    width: 32px;
    height: 32px;
  }
}
.header.header-home {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 90px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.header .logo-area {
  padding-left: 12px;
}
.header .logo-area .site-logo {
  display: inline-block;
}
.header .logo-area .site-logo img {
  height: 38px;
  width: auto;
  max-width: 60vw;
}

.site-logo-scrolled {
  position: fixed;
  z-index: 8000;
  display: none;
  left: 12px;
  top: 25px;
  width: auto;
  mix-blend-mode: difference;
  margin-left: 12px;
  aspect-ratio: 160/150;
}
.site-logo-scrolled img {
  height: 35px;
  width: auto;
}

.desktop-nav-menu-area {
  display: none;
}

.nav-menu-button {
  z-index: 9999;
  right: 12px;
  top: 25px;
  width: 43px;
  height: 37px;
  background: transparent;
  border: 1px solid #000;
  border-radius: 5px;
  margin-right: 12px;
  cursor: pointer;
}
.nav-menu-button.top {
  position: absolute;
}
.nav-menu-button.scrolled {
  position: fixed;
  display: none;
}
.nav-menu-button > span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000;
  transition: transform 0.4s, top 0.4s, left 0.4s;
}
.nav-menu-button > span:first-child {
  top: 9px;
}
.nav-menu-button > span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-menu-button > span:last-child {
  bottom: 9px;
}
.nav-menu-button.nav-menu-button-close {
  display: block !important;
  position: fixed;
  top: 25px;
}
.nav-menu-button.nav-menu-button-close > span:first-child {
  left: 6px;
  top: 17px;
  transform: rotateZ(-45deg);
}
.nav-menu-button.nav-menu-button-close > span:nth-child(2) {
  display: none;
}
.nav-menu-button.nav-menu-button-close > span:last-child {
  left: 6px;
  bottom: 17px;
  transform: rotateZ(45deg);
}

.home .nav-menu-button.top:not(.nav-menu-button-close) {
  border: 1px solid #fff;
}
.home .nav-menu-button.top:not(.nav-menu-button-close) > span {
  background-color: #fff;
}

.drawer-nav {
  display: none;
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #98b5d9;
  overflow-y: auto;
}
.drawer-nav .drawer-nav-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}
.drawer-nav .drawer-nav-image {
  position: relative;
  flex-grow: 1;
  background: no-repeat center center/75% auto url(assets/images/TT_for_the_Footer.svg);
  overflow: hidden;
}
.drawer-nav .drawer-nav-image::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: no-repeat center bottom/100% auto url(assets/images/Pixel_Graphic_Footer_Mobile.svg);
  content: "";
}
.drawer-nav .drawer-nav-inner {
  position: relative;
  background-color: #a0f2cb;
}
.drawer-nav .drawer-nav-header {
  position: fixed;
  width: 100%;
  z-index: 9000;
  top: 0;
  left: 0;
  padding-left: 12px;
  background-color: #a0f2cb;
}
.drawer-nav .drawer-nav-content {
  margin-top: 100px;
  padding: 0 12px;
  overflow-y: auto;
}
.drawer-nav a.linkedin-link:hover {
  background-image: url(assets/images/LinkedIn-white.svg);
}
.drawer-nav a.email-link:hover {
  background-image: url(assets/images/email-white.svg);
}

@media screen and (min-width: 768px) {
  .header .logo-area {
    padding-left: 15px;
  }
  .header .logo-area .site-logo img {
    height: 55px;
    width: auto;
  }
  .header .header-inner {
    height: 105px;
  }
  .site-logo-scrolled {
    top: 25px;
    left: 40px;
    margin-left: 15px;
  }
  .site-logo-scrolled img {
    height: 50px;
    width: auto;
  }
  .nav-menu-button {
    right: 40px;
    top: 25px;
    margin-right: 15px;
    width: 66px;
    height: 45px;
  }
  .nav-menu-button > span {
    width: 35px;
  }
  .nav-menu-button > span:first-child {
    top: 13px;
  }
  .nav-menu-button > span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-menu-button > span:last-child {
    bottom: 13px;
  }
  .nav-menu-button.nav-menu-button-close > span:first-child {
    left: 15px;
    top: 21px;
  }
  .nav-menu-button.nav-menu-button-close > span:nth-child(2) {
    display: none;
  }
  .nav-menu-button.nav-menu-button-close > span:last-child {
    left: 15px;
    bottom: 21px;
  }
  .nav-menu-button.scrolled .nav-menu-button.nav-menu-button-close {
    top: 24px;
  }
  .drawer-nav .drawer-nav-image {
    width: calc(100% - 30px);
    margin: 0 auto;
    background-repeat: repeat-x;
    background-size: 50% auto;
    background-position: center center;
  }
  .drawer-nav .drawer-nav-image::before {
    width: 100vw;
    left: -15px;
    background-repeat: repeat;
    background-size: 50% auto;
    background-position: center center;
  }
  .drawer-nav .drawer-nav-header {
    padding-left: 40px;
  }
  .drawer-nav .drawer-nav-content {
    margin-top: 150px;
    padding: 0 15px;
  }
}
@media screen and (min-width: 1091px) {
  .drawer-nav {
    background-size: 50% auto;
    background-position: left center;
    background-repeat: repeat-x;
  }
  .drawer-nav .drawer-nav-wrapper {
    width: 100%;
    height: 100%;
    flex-direction: row;
  }
  .drawer-nav .drawer-nav-wrapper > div {
    width: 50%;
    margin: 0;
  }
  .drawer-nav .drawer-nav-wrapper .drawer-nav-image {
    order: 1;
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: center center;
  }
  .drawer-nav .drawer-nav-wrapper .drawer-nav-image::before {
    width: 100vw;
    left: 0;
    background-repeat: repeat;
    background-size: auto 100%;
    background-position: center top -10vh;
  }
  .drawer-nav .drawer-nav-wrapper .drawer-nav-inner {
    order: 2;
  }
  .drawer-nav .drawer-nav-wrapper .drawer-nav-header {
    position: relative;
    top: unset;
    left: unset;
    padding-left: 0;
  }
  .drawer-nav .drawer-nav-wrapper .drawer-nav-content {
    margin-top: 50px;
  }
  .drawer-nav .drawer-nav-wrapper .nav-menu-inner {
    height: calc(100vh - 180px);
    height: calc(100dvh - 180px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1701px) {
  .header .logo-area {
    padding-left: 22px;
  }
  .site-logo-scrolled {
    left: calc(50% - min(50%, 960px) + 50px);
    margin-left: 22px;
  }
  .site-logo-scrolled img {
    height: 50px;
    width: auto;
  }
  .nav-menu-button {
    right: calc(50% - min(50%, 960px) + 50px);
    margin-right: 22px;
  }
  .nav-menu-button.nav-menu-button-close {
    right: calc(50% - min(50%, 960px) + 50px);
  }
  .drawer-nav .drawer-nav-wrapper .drawer-nav-image {
    order: 1;
    background-repeat: no-repeat;
    background-size: min(960px, 70%) auto;
    background-position: center center;
  }
  .drawer-nav .drawer-nav-wrapper .drawer-nav-image::before {
    width: 100vw;
    left: 0;
    background-repeat: repeat;
    background-size: auto 60%;
    background-position: center top -10vh;
  }
  .drawer-nav .drawer-nav-wrapper .drawer-nav-inner > .container {
    max-width: 960px;
    margin: 0;
  }
}
.footer {
  position: relative;
  height: max(600px, 100vh);
  height: max(600px, 100dvh);
  padding-top: 50px;
  background-color: #98b5d9;
  overflow: hidden;
}
.footer > .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
.footer .footer-inner {
  position: relative;
  height: 100%;
  padding: 0 12px;
  background: no-repeat center bottom 50px/calc(100% - 24px) auto url(assets/images/TT_for_the_Footer.svg);
}
.footer .footer-inner .background-image-area {
  position: absolute;
  width: 100vw;
  height: 50vh;
  height: 50dvh;
  bottom: 0;
  left: -12px;
  z-index: 0;
  background: no-repeat center bottom/100% auto url(assets/images/Pixel_Graphic_Footer_Mobile.svg);
}
.footer .footer-inner .footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.footer .copyright-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 30px;
  font-size: 12px;
  line-height: 1.5em;
}
.footer .copyright-area a {
  transition: opacity 0.4s;
}
.footer .copyright-area a:hover {
  opacity: 0.6;
}
.footer .copyright-area > div:first-child {
  width: 100%;
  margin-bottom: 20px;
}
.footer .copyright-area > div:nth-child(2) {
  width: 50%;
  padding-right: 2em;
}
.footer .copyright-area > div:last-child {
  width: 50%;
  padding-right: 2em;
}
.footer > div > div a {
  display: block;
}
.footer > div > div p {
  display: block;
}
.footer .nav-menu-area .nav-menu li {
  background-color: #98b5d9;
}

@media screen and (min-width: 768px) {
  .footer {
    padding-top: 50px;
    height: max(800px, 100vh);
    height: max(800px, 100dvh);
  }
  .footer .footer-inner {
    padding: 0;
    margin: 0 auto;
    width: calc(100% - 30px);
    background-repeat: repeat-x;
    background-size: 50% auto;
    background-position: center bottom 100px;
  }
  .footer .footer-inner .background-image-area {
    width: 100%;
    left: -14px;
    height: 50vh;
    height: 50dvh;
    bottom: 80px;
    background: no-repeat center bottom/100% auto url(assets/images/Pixel_Graphic_Footer_Desktop.svg);
  }
  .footer .footer-inner .footer-logo-area {
    margin-bottom: 50px;
  }
  .footer .footer-inner .footer-logo-area img {
    width: 273px;
    height: auto;
  }
  .footer .footer-inner .copyright-area {
    padding-bottom: 30px;
    font-size: 12px;
    line-height: 1.5em;
  }
  .footer .footer-inner .copyright-area > div:first-child {
    width: 25%;
    margin-bottom: 0;
    padding-right: 2em;
    order: 2;
  }
  .footer .footer-inner .copyright-area > div:nth-child(2) {
    width: 50%;
    padding-right: 2em;
    order: 1;
  }
  .footer .footer-inner .copyright-area > div:last-child {
    width: 25%;
    padding-right: 2em;
    order: 3;
  }
}
@media screen and (min-width: 1091px) {
  .footer {
    padding-top: 100px;
  }
  .footer .footer-inner {
    width: 100%;
    padding: 0 15px;
    background-repeat: no-repeat;
    background-size: 40% auto;
    background-position: left 15px center;
  }
  .footer .footer-inner .background-image-area {
    width: min(50vw, 960px);
    height: 100vh;
    height: 100dvh;
    bottom: 0;
    left: -80px;
    background-size: 100% 100%;
    background-position: center right 1vw;
  }
  .footer .footer-inner .footer-content > div {
    display: flex;
  }
  .footer .footer-inner .footer-content > div > div {
    width: 50%;
  }
  .footer .footer-inner .footer-content > div > div:first-child {
    padding-right: 15px;
  }
  .footer .footer-inner .footer-content > div > div:last-child {
    padding-left: 15px;
  }
  .footer .copyright-area {
    padding-bottom: 40px;
  }
  .footer .copyright-area > div:first-child {
    padding-left: 15px;
  }
}
@media screen and (min-width: 1701px) {
  .footer .footer-inner {
    padding: 0 22px;
    background-repeat: no-repeat;
    background-size: min(780px, 40%) auto;
    background-position: left 22px center;
  }
  .footer .footer-inner .footer-content > div > div:first-child {
    padding-right: 22px;
  }
  .footer .footer-inner .footer-content > div > div:last-child {
    padding-left: 22px;
  }
  .footer .copyright-area {
    padding-bottom: 50px;
  }
  .footer .copyright-area > div:first-child {
    padding-left: 22px;
  }
}
@media screen and (min-width: 1921px) {
  .footer .footer-inner .background-image-area {
    background-image: url(assets/images/Pixel_Graphic_Footer_Large_Desktop.svg);
  }
}
.nav-menu-area .nav-menu {
  margin-top: 0;
  padding-left: 0;
  counter-reset: nav-counter;
}
.nav-menu-area .nav-menu li {
  position: relative;
  border-top: 1px solid #000;
  list-style-type: none;
  padding: 3px 0;
}
.nav-menu-area .nav-menu li::before {
  display: block;
  position: absolute;
  left: 0;
  top: 17px;
  padding: 2px 4px 1px;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 12px;
  line-height: 12px;
  counter-increment: nav-counter;
  content: counter(nav-counter, decimal-leading-zero); /* 0埋め表示 */
}
.nav-menu-area .nav-menu li:last-child {
  border-bottom: 1px solid #000;
}
.nav-menu-area .nav-menu li a {
  display: flex;
  width: 100%;
}
.nav-menu-area .nav-menu li a::before {
  display: block;
  width: 50%;
  content: "";
}
.nav-menu-area .nav-menu li a span {
  display: block;
  width: 50%;
  min-width: 160px;
  font-size: min(8.3vw, 25px);
  font-weight: 500;
  line-height: 38px;
}
.nav-menu-area .info-area {
  margin-top: 30px;
  padding-bottom: 30px;
  display: flex;
}
.nav-menu-area .info-area > div {
  width: 50%;
}
.nav-menu-area .info-area > div:first-child p > span {
  display: block;
  font-size: min(5vw, 15px);
  width: 100%;
}
.nav-menu-area .info-area > div:first-child p > span span {
  display: inline;
  white-space: nowrap;
}
.nav-menu-area .info-area > div:last-child {
  display: flex;
  align-items: flex-end;
}
.nav-menu-area .info-area > div:last-child a.linkedin-link {
  margin-right: 10px;
}
.nav-menu-area .info-area > div:last-child {
  /*
    &:hover {
      background-image: url(assets/images/LinkedIn-white.svg);
    }
  }

   a.email-link {
    &:hover {
      background-image: url(assets/images/email-white.svg);
    }
  }
    */
}

@media screen and (min-width: 768px) {
  .nav-menu-area .nav-menu li {
    padding: 5px 0;
  }
  .nav-menu-area .nav-menu li a span {
    font-size: 35px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1701px) {
  .nav-menu-area .nav-menu li {
    padding: 10px 0;
  }
  .nav-menu-area .nav-menu li::before {
    top: 24px;
    padding: 4px 6px 3px;
    font-size: 15px;
    line-height: 15px;
  }
  .nav-menu-area .nav-menu li:last-child {
    border-bottom: 1px solid #000;
  }
  .nav-menu-area .nav-menu li a span {
    font-size: 43px;
    line-height: 50px;
  }
  .nav-menu-area .info-area > div:first-child p span {
    font-size: 17px;
  }
}
body .cky-consent-container {
  font-family: "RiformaLL", "sans-serif";
  bottom: 12px;
  right: 12px;
  width: calc(100vw - 24px);
  max-width: 373px;
}
body .cky-consent-container .cky-consent-bar {
  padding: 15px 0;
}
body .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper {
  padding: 0;
}
body .cky-consent-container .cky-consent-bar > div {
  display: none;
}
body .cky-consent-container .cky-consent-bar > div.cky-notice-content-wrapper, body .cky-consent-container .cky-consent-bar > div.cky-notice {
  display: block;
}
body .cky-notice .cky-title {
  padding: 0 20px;
  color: #000 !important;
  font-size: 16px;
  font-weight: 500;
}
body .cky-notice .cky-notice-des {
  margin-top: 15px;
  padding: 0 20px 20px;
  color: #000 !important;
  border-bottom: 0.5px solid #000;
  font-size: 15px;
  line-height: 19px;
}
body .cky-notice .cky-notice-des a {
  display: inline-block;
  margin-top: 0.5em;
  color: #000 !important;
  font-size: 12px;
  text-decoration: underline;
  text-decoration-color: #000 !important;
}
body .cky-notice .cky-notice-btn-wrapper {
  margin-top: 5px;
  padding: 0 20px 4px;
}
body .cky-notice .cky-notice-btn-wrapper .cky-btn {
  width: 100%;
  border: none !important;
  background-color: #87fec5 !important;
  margin: 0;
  margin-top: 12px;
  color: #000 !important;
  border-radius: 5px;
  font-weight: 500;
  font-size: 13px;
}
body .cky-notice .cky-notice-btn-wrapper .cky-btn.cky-btn-reject {
  order: 3;
}

@media screen and (min-width: 1701px) {
  body .cky-consent-container {
    bottom: 18px;
    right: 18px;
    max-width: 495px;
  }
  body .cky-consent-container .cky-consent-bar {
    padding: 26px 0;
  }
  body .cky-notice .cky-title {
    padding: 0 26px;
    font-size: 21px;
  }
  body .cky-notice .cky-notice-des {
    margin-top: 25px;
    padding: 0 35px 26px 26px;
    font-size: 19px;
    line-height: 27px;
  }
  body .cky-notice .cky-notice-des a {
    font-size: 15px;
  }
  body .cky-notice .cky-notice-btn-wrapper {
    margin-top: 10px;
    padding: 0 26px 0px;
  }
  body .cky-notice .cky-notice-btn-wrapper .cky-btn {
    margin-top: 12px;
    padding: 15px;
    font-size: 18px;
  }
}
.home h2 {
  font-size: 35px;
  line-height: 1.2em;
  font-weight: 500;
}
.home h3 {
  font-size: 23px;
  line-height: 1.3em;
  font-weight: 500;
}
.home h4 {
  font-size: 19px;
  line-height: 1.6em;
  font-weight: 400;
}
.home p {
  font-size: 15px;
  line-height: 1.3em;
  margin-bottom: 0;
}
.home .head-text-area p {
  font-size: 20px;
  text-indent: 2.2em;
}
.home section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.home section h2 span {
  color: #a0f2cb;
  transition: color 0.8s;
}
.home section h2 span.color-changed {
  color: #000;
}
.home section.technology h2 span, .home section.contact h2 span {
  color: #fff;
}
.home section.technology h2 span.color-changed, .home section.contact h2 span.color-changed {
  color: #000;
}
.home section .background-image-area {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.home section > .container {
  position: relative;
  z-index: 2;
}
.home .main-visual-area {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 320px;
  overflow: hidden;
}
.home .main-visual-area .main-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 101%;
  min-width: 101%;
  aspect-ratio: 1280/720;
}
.home .main-visual-area .main-visual video {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
}
.home .main-visual-area .catchphrase-area {
  z-index: 2;
  margin-bottom: min(5vh, 40px);
}
.home .main-visual-area .catchphrase-area > div {
  border-left: 1px solid #fff;
}
.home .main-visual-area .catchphrase-area .catchphrase h2 {
  color: #fff;
  font-size: min(10vw, 35px);
  line-height: min(13vw, 43px);
}
.home .main-visual-area .catchphrase-area .catchphrase h2 span {
  display: block;
}
.home .main-visual-area .catchphrase-area .scroll-down {
  margin-top: min(5vh, 40px);
}
.home .main-visual-area .catchphrase-area .scroll-down > div {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  padding: 0.5em 3em 0.5em 1em;
  border: 1px solid #fff;
  border-radius: 5px;
  background: no-repeat right 1em center/8px 9px url(assets/images/arrow-down-white.svg);
}
.home .vision {
  background-color: #98b5d9;
}
.home .vision .background-image-area {
  height: 50vh;
  height: 50dvh;
  background: no-repeat center center/120% auto url(assets/images/Pixel_Graphic_Vision_Section_Mobile.svg);
}
.home .vision .section-inner {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
  margin: 0 auto;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.home .vision .section-inner > div:first-child {
  flex-grow: 1;
  padding-bottom: 40px;
}
.home .vision .section-inner > div:first-child h2 span {
  display: block;
}
.home .vision .section-inner > div:last-child {
  min-height: 50%;
}
.home .vision-catchphrase {
  position: relative;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
}
.home .vision-catchphrase .background-image-wrapper {
  position: absolute;
  width: 100%;
  z-index: 1;
  height: 100%;
  min-width: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: no-repeat left center/100% auto url(assets/images/Photo_Tablet_Mobile.jpg);
}
.home .vision-catchphrase .background-image-wrapper > div {
  height: 50%;
  background: no-repeat center/cover url(assets/images/Digital_Microbiome_Tablet_Mobile.svg);
}
.home .vision-catchphrase .section-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}
.home .vision-catchphrase .section-inner h2 {
  padding-left: 0.5em;
  border-left: 1px solid #000;
}
.home .platform .section-inner {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  margin-bottom: min(100px, 30vw);
}
.home .platform .section-inner h2 span {
  display: block;
}
.home .platform .section-inner .head-text-area {
  margin-top: min(100px, 30vw);
}
.home .platform .section-inner img {
  display: block;
  margin: 0 auto;
  width: 85%;
  max-width: 300px;
}
.home .platform .section-inner h3 {
  margin-top: 20px;
}
.home .platform .section-inner h4 {
  margin-top: 10px;
  margin-bottom: 25px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  text-decoration-color: #87fec5;
}
.home .platform .section-inner .implementation-areas {
  margin-top: 30px;
}
.home .platform .section-inner .implementation-areas .label {
  padding: 1px 3px 2px;
  font-size: 12px;
  border: 1px solid #000;
  border-radius: 5px;
}
.home .platform .section-inner .implementation-areas p {
  margin-top: 10px;
}
.home .platform .section-inner .implementation-areas p span {
  display: block;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
}
.home .platform .section-inner:nth-child(3) > div:last-child {
  margin-top: -40px;
}
.home .platform .section-inner:nth-child(4) {
  margin-bottom: 30px;
}
.home .platform .section-inner:nth-child(4) > div:last-child {
  margin-top: -60px;
}
.home .technology {
  background: no-repeat center top 90vh/100% auto url(assets/images/Pixel_Graphic_Technology_Section_2_Mobile.svg);
  background-color: #a0f2cb;
}
.home .technology .background-image-area {
  height: 40vh;
  background: no-repeat center top -2vh/100% auto url(assets/images/Pixel_Graphic_Technology_Section_Mobile.svg);
}
.home .technology .section-inner {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.home .technology .section-inner:first-child h2 span {
  display: block;
}
.home .technology .section-inner:first-child > div:first-child {
  padding-bottom: min(170px, 30vw);
}
.home .technology .section-inner:first-child > div:nth-child(2) > p:last-child {
  margin-top: 30px;
  text-align: right;
}
.home .technology .section-inner:first-child > div:nth-child(2) > p:last-child img {
  display: inline-block;
  width: 25px;
  height: 25px;
}
.home .technology .section-inner:first-child > div:last-child img {
  margin: 0 auto;
  width: 85%;
}
.home .technology .section-inner:nth-child(2) {
  margin-top: 48px;
}
.home .technology .technology-item > div:first-child {
  padding: 40px 0;
  border-top: 1px solid #000;
}
.home .technology .technology-item > div:first-child img {
  height: min(137px, 38vw);
}
.home .technology .technology-item > div:last-child {
  border-top: 1px solid #000;
  padding: 10px 0 25px;
}
.home .technology .technology-item > div:last-child .label {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.2em;
  max-width: 100px;
  font-family: "RiformaMonoLL", "sans-serif";
}
.home .technology .technology-item > div:last-child img {
  width: auto;
  height: min(100vw, 370px);
  margin: 0 auto;
}
.home .technology .technology-item:nth-child(2) > div:last-child img {
  transform: translateY(-2%);
}
.home .technology .technology-item:last-child > div:last-child {
  border-bottom: 1px solid #000;
}
.home .technology .technology-item:last-child > div:last-child img {
  transform: translateY(-5%);
}
.home .about {
  background-color: #98b5d9;
}
.home .about .background-image-area {
  height: 50vh;
  height: 50dvh;
  background: no-repeat center top -20vw/min(100%, 500px) auto url(assets/images/Pixel_Graphic_About_Section_Mobile.svg);
}
.home .about .section-inner {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.home .about > .container > .section-inner {
  position: relative;
}
.home .about > .container > .section-inner h2 span {
  display: block;
}
.home .about > .container > .section-inner > div:first-child {
  padding-bottom: min(150px, 25vw);
}
.home .about .section-inner-wrapper {
  margin-top: min(170px, 30vw);
}
.home .about .section-inner-wrapper h4 {
  font-weight: 500;
  margin-bottom: 0.2em;
}
.home .about .section-inner-wrapper p {
  margin-bottom: 1em;
}
.home .about .section-inner-wrapper .position {
  display: inline-block;
  font-size: 13px;
  line-height: 1.1em;
  padding: 2px 4px;
  border: 1px solid #000;
  border-radius: 5px;
  margin-bottom: 25px;
}
.home .about .section-inner-wrapper .link-area {
  text-align: right;
  margin-top: 25px;
}
.home .about .section-inner-wrapper > div:first-child {
  padding-bottom: 40px;
}
.home .about .section-inner-wrapper > div:last-child {
  margin-top: min(50px, 20vw);
}
.home .contact {
  background-color: #a0f2cb;
}
.home .contact .background-image-area {
  height: 30vh;
  height: 30dvh;
  background: no-repeat left 25% top 28%/100% auto url(assets/images/Pixel_Graphic_Contact_Section_Mobile.svg);
}
.home .contact .section-inner {
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.home .contact .section-inner > div:first-child h2 span {
  display: block;
}
.home .contact .section-inner > div:first-child > div:first-child > div:first-child {
  padding-bottom: min(150px, 25vw);
}
.home .contact .head-text-area p {
  font-size: 27px;
}
.home .contact .link-area {
  margin-top: 30px;
}
.home .contact a.linkedin-link:hover {
  background-image: url(assets/images/LinkedIn-white.svg);
}
.home .contact form {
  margin-top: 45px;
  background-color: #a0f2cb;
}
.home .contact form .form-item {
  border-top: 1px solid #000;
  padding: 3px 0 5px;
}
.home .contact form .form-item label {
  display: inline-block;
  font-size: 12px;
  line-height: 1em;
  margin-bottom: 4px;
}
.home .contact form .form-item.acceptance {
  padding-top: 20px;
  border-top: none;
}
.home .contact form .form-item.acceptance span {
  margin-left: 0;
}
.home .contact form .form-item.acceptance a {
  text-decoration: underline;
}
.home .contact form input[type=text],
.home .contact form input[type=email],
.home .contact form textarea {
  position: relative;
  z-index: 2;
  font-family: "IBMPlexMono", "sans-serif";
  width: 100%;
  background-color: transparent;
  border: none;
}
.home .contact form input[type=text]:-webkit-autofill, .home .contact form input[type=text]:-webkit-autofill:focus, .home .contact form input[type=text]:-webkit-autofill:active, .home .contact form input[type=text]:autofill, .home .contact form input[type=text]:autofill:focus, .home .contact form input[type=text]:autofill:active,
.home .contact form input[type=email]:-webkit-autofill,
.home .contact form input[type=email]:-webkit-autofill:focus,
.home .contact form input[type=email]:-webkit-autofill:active,
.home .contact form input[type=email]:autofill,
.home .contact form input[type=email]:autofill:focus,
.home .contact form input[type=email]:autofill:active,
.home .contact form textarea:-webkit-autofill,
.home .contact form textarea:-webkit-autofill:focus,
.home .contact form textarea:-webkit-autofill:active,
.home .contact form textarea:autofill,
.home .contact form textarea:autofill:focus,
.home .contact form textarea:autofill:active {
  background-color: transparent !important;
}
.home .contact form textarea {
  width: 100%;
  height: 100px;
}
.home .contact form input[type=submit] {
  padding: 8px 35px 7px 15px;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background: no-repeat right 1em center/9px 8px url(assets/images/arrow-right-black.svg);
  background-color: #fff;
  cursor: pointer;
}
.home .contact form input[type=submit]:disabled {
  color: #bbb;
  background-image: url(assets/images/arrow-right-gray.svg);
  cursor: auto;
}
.home .contact form .acceptance-submit-area {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.home .contact form .acceptance-submit-area > div:first-child {
  order: 2;
}
.home .contact form .acceptance-submit-area > div:last-child {
  order: 1;
}
.home .contact form .wpcf7-form-control-wrap {
  font-family: "IBMPlexMono", "sans-serif";
  position: relative;
}
.home .contact form .form-item.acceptance .wpcf7-form-control-wrap {
  font-family: "RiformaLL", "sans-serif";
}
.home .contact form .wpcf7-not-valid-tip {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  color: #ff006c;
  font-size: min(4vw, 15px);
}
.home .contact form .wpcf7 form .wpcf7-response-output {
  display: none;
}

@media screen and (min-width: 768px) {
  .home h2 {
    font-size: 58px;
  }
  .home h3 {
    font-size: 23px;
  }
  .home h4 {
    font-size: 19px;
  }
  .home p {
    font-size: 15px;
    line-height: 1.3em;
  }
  .home .head-text-area p {
    font-size: 22px;
  }
  .home section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .home .container .container {
    padding: 0 15px;
  }
  .home .main-visual-area .catchphrase-area {
    z-index: 2;
    margin-bottom: 67px;
  }
  .home .main-visual-area .catchphrase-area .catchphrase h2 {
    font-size: 64px;
    line-height: 67px;
  }
  .home .main-visual-area .catchphrase-area .catchphrase h2 span {
    display: inline;
  }
  .home .main-visual-area .catchphrase-area .scroll-down {
    margin-top: 40px;
  }
  .home .main-visual-area .catchphrase-area .scroll-down > div {
    font-size: 13px;
    padding: 0.5em 3em 0.5em 1em;
    background-size: 11px 12px;
  }
  .home .vision {
    padding-top: 80px;
    padding-bottom: 80px;
    background: no-repeat left -60vw center/120% auto url(assets/images/Pixel_Graphic_Vision_Section_Desktop.svg);
    background-color: #98b5d9;
    min-height: unset;
  }
  .home .vision .section-inner {
    flex-direction: row;
    min-height: unset;
  }
  .home .vision .section-inner > div:first-child {
    width: 50%;
    padding-right: 15px;
  }
  .home .vision .section-inner > div:last-child {
    width: 50%;
    border-left: 1px solid #000;
    padding-left: 15px;
    min-height: unset;
  }
  .home .vision-catchphrase {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
  }
  .home .vision-catchphrase .background-image-wrapper {
    background: none;
  }
  .home .vision-catchphrase .background-image-wrapper::before {
    display: block;
    width: 100%;
    height: 50%;
    background: no-repeat left center/101vw auto url(assets/images/Photo_Tablet_Mobile_2.jpg);
    content: "";
  }
  .home .vision-catchphrase .section-inner {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .home .vision-catchphrase .section-inner h2 {
    padding-left: 15px;
    font-size: 64px;
    line-height: 64px;
  }
  .home .platform .section-inner {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin-bottom: min(100px, 30vw);
  }
  .home .platform .section-inner .head-text-area {
    margin-top: 0;
  }
  .home .platform .section-inner img {
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 580px;
  }
  .home .platform .section-inner h3 {
    margin-top: 0;
  }
  .home .platform .section-inner h4 {
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .home .platform .section-inner .implementation-areas {
    margin-top: 0;
    transform: translateY(-100%);
    padding: 0 15px;
  }
  .home .platform .section-inner:first-child {
    display: flex;
    flex-direction: row;
  }
  .home .platform .section-inner:first-child > div:first-child {
    width: 50%;
    padding-right: 15px;
  }
  .home .platform .section-inner:first-child > div:last-child {
    width: 50%;
    padding-left: 15px;
    border-left: 1px solid #000;
  }
  .home .platform .section-inner:not(:first-child) {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 80px;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child {
    width: 100%;
    display: flex;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child > div {
    width: 50%;
    padding: 0 15px;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child > div:first-child {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child > div:nth-child(2) {
    border-right: 1px solid #000;
  }
  .home .platform .section-inner:not(:first-child):nth-child(2) img {
    margin-bottom: 40px;
  }
  .home .platform .section-inner:not(:first-child):nth-child(3) > div:nth-child(2) {
    margin-top: 0;
  }
  .home .platform .section-inner:nth-child(3) > div:last-child {
    margin-top: -40px;
  }
  .home .platform .section-inner:nth-child(4) {
    margin-bottom: 30px;
  }
  .home .platform .section-inner:nth-child(4) > div:last-child {
    margin-top: -60px;
  }
  .home .technology {
    background: no-repeat left -40vw top -10vw/120% auto url(assets/images/Pixel_Graphic_Technology_Section_Desktop.svg);
    background-color: #a0f2cb;
  }
  .home .technology .section-inner:first-child {
    display: flex;
    flex-direction: row;
  }
  .home .technology .section-inner:first-child > div {
    width: 50%;
  }
  .home .technology .section-inner:first-child > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 15px;
    padding-bottom: 0;
  }
  .home .technology .section-inner:first-child > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid #000;
    padding-left: 15px;
  }
  .home .technology .section-inner:nth-child(2) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 100px;
  }
  .home .technology .technology-item {
    width: 50%;
  }
  .home .technology .technology-item:nth-child(2n+1) {
    padding-right: 15px;
  }
  .home .technology .technology-item:nth-child(2n) {
    border-left: 1px solid #000;
    padding-left: 15px;
  }
  .home .technology .technology-item:nth-child(3) > div:last-child {
    border-bottom: 1px solid #000;
  }
  .home .technology .technology-item > div:first-child {
    padding: 40px 0;
    border-top: 1px solid #000;
  }
  .home .technology .technology-item > div:first-child img {
    height: min(137px, 38vw);
  }
  .home .technology .technology-item > div:last-child {
    border-top: 1px solid #000;
    padding: 10px 0 25px;
    height: 470px;
  }
  .home .technology .technology-item > div:last-child .label {
    font-size: 12px;
  }
  .home .technology .technology-item:last-child > div:last-child {
    border-bottom: 1px solid #000;
  }
  .home .about {
    background-color: #98b5d9;
  }
  .home .about .section-inner {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
  .home .about > .container > .section-inner {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    border-left: 0;
  }
  .home .about > .container > .section-inner > div {
    width: 50%;
    z-index: 3;
  }
  .home .about > .container > .section-inner > div:first-child {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
    border-left: 1px solid #000;
  }
  .home .about > .container > .section-inner > div:last-child {
    border-left: 1px solid #000;
    padding-left: 15px;
  }
  .home .about > .container > .section-inner::before {
    display: block;
    position: absolute;
    left: -20vw;
    bottom: 0;
    height: calc(100% + 100px);
    width: 100%;
    z-index: 0;
    background: no-repeat left -10vw bottom/80% auto url(assets/images/Pixel_Graphic_About_Section_Tablet.svg);
    content: "";
  }
  .home .about .section-inner-wrapper {
    margin-top: 60px;
  }
  .home .about .section-inner-wrapper h4 {
    margin-top: 0;
    line-height: 1.2em;
  }
  .home .about .section-inner-wrapper > div:first-child {
    width: 100%;
    border-right: none;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div {
    width: 50%;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div:first-child {
    padding-right: 15px;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 15px;
    border-left: 1px solid #000;
  }
  .home .contact {
    background: no-repeat left -20vw center/120% auto url(assets/images/Pixel_Graphic_Contact_Section_Desktop.svg);
    background-color: #a0f2cb;
  }
  .home .contact .section-inner {
    min-height: calc(100vh - 200px);
    min-height: calc(100dvh - 200px);
    border-left: none;
    border-right: none;
    padding: 0;
  }
  .home .contact .section-inner > div > div:first-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0 15px;
  }
  .home .contact .section-inner > div > div:first-child > div {
    width: 50%;
  }
  .home .contact .section-inner > div > div:first-child > div:first-child {
    padding-right: 15px;
    padding-bottom: 0;
  }
  .home .contact .section-inner > div > div:first-child > div:nth-child(2) {
    padding-left: 15px;
    border-left: 1px solid #000;
  }
  .home .contact .link-area {
    margin-top: -25px;
  }
  .home .contact form {
    margin-top: min(100px, 15vw);
    padding: 0 15px;
  }
  .home .contact form input[type=submit] {
    padding: 8px 50px 7px 15px;
  }
  .home .contact form .acceptance-submit-area {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
  }
  .home .contact form .acceptance-submit-area > div:first-child {
    order: 1;
    padding: 0;
  }
  .home .contact form .acceptance-submit-area > div:last-child {
    order: 2;
  }
  .home .contact form .submit-area {
    position: relative;
  }
  .home .contact form .submit-area .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    right: 0;
  }
}
@media screen and (min-width: 1091px) {
  .home h2 {
    font-size: 64px;
    line-height: 64px;
  }
  .home h3 {
    font-size: 23px;
  }
  .home h4 {
    font-size: 19px;
  }
  .home p {
    font-size: 15px;
    line-height: 1.3em;
  }
  .home .head-text-area p {
    font-size: 24px;
  }
  .home section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .home .container .container {
    padding: 0 15px;
  }
  .home .main-visual-area .catchphrase-area > div {
    border-left: none;
    display: flex;
    flex-direction: row;
  }
  .home .main-visual-area .catchphrase-area .catchphrase {
    width: 75%;
    padding-left: 15px;
    border-left: 1px solid #fff;
    order: 2;
  }
  .home .main-visual-area .catchphrase-area .catchphrase h2 {
    font-size: 64px;
    line-height: 67px;
  }
  .home .main-visual-area .catchphrase-area .scroll-down {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 25%;
    margin-top: 0;
  }
  .home .main-visual-area .catchphrase-area .scroll-down > div {
    font-size: 13px;
    padding: 0.5em 3em 0.5em 1em;
    background-size: 11px 12px;
  }
  .home .vision {
    background-size: 70%, auto;
    background-position: left -10vw bottom;
  }
  .home .vision-catchphrase .background-image-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background: no-repeat left center/cover url(assets/images/Photo_Desktop_Large_Desktop.jpg);
  }
  .home .vision-catchphrase .background-image-wrapper > div {
    width: 50%;
    height: 100%;
    background: no-repeat left 75% center/cover url(assets/images/Digital_Microbiome_Desktop_Large_Desktop.svg);
  }
  .home .vision-catchphrase .background-image-wrapper::before {
    display: none;
  }
  .home .vision-catchphrase .section-inner h2 {
    max-width: min(80vw, 1200px);
  }
  .home .platform .section-inner {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin-bottom: min(100px, 30vw);
  }
  .home .platform .section-inner .head-text-area {
    margin-top: 0;
  }
  .home .platform .section-inner img {
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 580px;
  }
  .home .platform .section-inner h3 {
    margin-top: 0;
  }
  .home .platform .section-inner h4 {
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .home .platform .section-inner .implementation-areas {
    margin-top: 0;
    transform: translateY(0);
  }
  .home .platform .section-inner:first-child {
    display: flex;
    flex-direction: row;
  }
  .home .platform .section-inner:first-child > div:first-child {
    width: 50%;
    padding-right: 15px;
  }
  .home .platform .section-inner:first-child > div:last-child {
    width: 50%;
    padding-left: 15px;
    border-left: 1px solid #000;
  }
  .home .platform .section-inner:not(:first-child) {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 80px;
  }
  .home .platform .section-inner:not(:first-child) > div {
    width: 50%;
  }
  .home .platform .section-inner:not(:first-child) > div:first-child {
    order: 2;
    width: 50%;
    border-left: 1px solid #000;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child {
    width: 100%;
    flex-direction: column;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child > div {
    width: 100%;
    max-width: calc((100% - 90px) / 6 * 4 + 105px);
    padding: 0 15px;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child > div:first-child {
    border-left: none;
    border-right: none;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child > div:nth-child(2) {
    border-right: none;
  }
  .home .platform .section-inner:not(:first-child):nth-child(2) img {
    margin-bottom: 40px;
  }
  .home .platform .section-inner:not(:first-child):nth-child(3) > div:nth-child(2) {
    margin-top: 0;
  }
  .home .platform .section-inner:nth-child(3) > div:last-child {
    margin-top: 0;
  }
  .home .platform .section-inner:nth-child(4) {
    margin-bottom: 0;
  }
  .home .platform .section-inner:nth-child(4) > div:last-child {
    margin-top: 0;
  }
  .home .technology {
    background-position: left -10vw top -20vw;
    background-size: 80% auto;
  }
  .home .technology .section-inner:first-child {
    display: flex;
    flex-direction: row;
  }
  .home .technology .section-inner:first-child > div {
    width: 50%;
  }
  .home .technology .section-inner:first-child > div:first-child img {
    width: 70%;
  }
  .home .technology .section-inner:first-child > div:nth-child(2) > p:last-child img {
    width: 30px;
    height: 30px;
  }
  .home .technology .section-inner:nth-child(2) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 100px;
    padding: 0;
  }
  .home .technology .technology-item {
    width: 25%;
    padding: 0 15px;
  }
  .home .technology .technology-item:not(:first-child) {
    border-left: 1px solid #000;
  }
  .home .technology .technology-item > div:last-child {
    border-bottom: 1px solid #000;
  }
  .home .technology .technology-item > div:first-child {
    padding: 30px 0;
    border-top: 1px solid #000;
  }
  .home .technology .technology-item > div:first-child img {
    height: 102px;
  }
  .home .technology .technology-item > div:last-child {
    height: min(34vw, 440px);
  }
  .home .technology .technology-item > div:last-child img {
    height: min(25vw, 350px);
  }
  .home .technology .technology-item > div:last-child .label {
    font-size: 12px;
  }
  .home .about .section-inner {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
  .home .about > .container > .section-inner::before {
    left: -20vw;
    height: calc(100% + 100px);
    background: no-repeat left -10vw bottom/min(80%, 1200px) auto url(assets/images/Pixel_Graphic_About_Section_Tablet.svg);
  }
  .home .about .section-inner-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
  }
  .home .about .section-inner-wrapper h3 {
    font-size: 43px;
  }
  .home .about .section-inner-wrapper > div:first-child {
    width: 100%;
    border-right: none;
    padding-bottom: 60px;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div {
    width: 50%;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div:first-child {
    padding-right: 15px;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 15px;
    border-left: 1px solid #000;
  }
  .home .about .section-inner-wrapper > div:last-child {
    margin-top: 0;
    border-left: none;
  }
  .home .contact {
    background-size: 80% auto;
    background-position: center top;
  }
  .home .contact .head-text-area p {
    font-size: 19px;
    text-indent: 0;
    max-width: calc((100% - 90px) / 6 * 4 + 105px);
  }
  .home .contact .section-inner {
    min-height: calc(100vh - 200px);
    min-height: calc(100dvh - 200px);
    border-left: none;
    border-right: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home .contact .section-inner > div:first-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-left: 1px solid #000;
    padding: 0;
  }
  .home .contact .section-inner > div:first-child > div {
    width: 50%;
  }
  .home .contact .section-inner > div:first-child > div:first-child {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-left: none;
    border-right: none;
    padding: 0 15px;
    padding-bottom: 0;
  }
  .home .contact .section-inner > div:first-child > div:first-child > div:first-child {
    padding-bottom: 30px;
  }
  .home .contact .section-inner > div:first-child > div:first-child > div:nth-child(2) {
    padding-left: 0;
    padding-right: 15px;
    border-left: none;
  }
  .home .contact .section-inner > div:first-child > div:first-child > div {
    width: 100%;
  }
  .home .contact .section-inner > div:first-child > div:nth-child(2) {
    padding-left: 15px;
    border-left: none;
  }
  .home .contact .link-area {
    position: absolute;
    bottom: 0;
    left: 15px;
    margin-top: 0;
  }
  .home .contact form {
    margin-top: 0;
    padding: 0;
    padding-right: 15px;
    border-left: 0;
  }
}
@media screen and (min-width: 1701px) {
  .home h2 {
    font-size: 77px;
    line-height: 77px;
  }
  .home h3 {
    font-size: 32px;
  }
  .home h4 {
    font-size: 27px;
  }
  .home p {
    font-size: 19px;
  }
  .home .head-text-area p {
    font-size: 37px;
  }
  .home section {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .home .container .container {
    padding: 0 22px;
  }
  .home .main-visual-area .catchphrase-area > div {
    border-left: none;
    display: flex;
    flex-direction: row;
  }
  .home .main-visual-area .catchphrase-area .catchphrase {
    width: 75%;
    padding-left: 22px;
    border-left: 1px solid #fff;
    order: 2;
  }
  .home .main-visual-area .catchphrase-area .catchphrase h2 {
    font-size: min(3.93vw, 75px);
    line-height: min(4.35vw, 84px);
  }
  .home .main-visual-area .catchphrase-area .scroll-down > div {
    font-size: 15px;
    padding: 0.5em 3em 0.5em 1em;
    background-size: 13px 14px;
  }
  .home .vision {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .home .vision-catchphrase {
    background-image: url(assets/images/front-page-background-2-medium-desktop.jpg);
  }
  .home .vision-catchphrase .section-inner h2 {
    max-width: 1350px;
    padding-left: 22px;
    max-width: 1320px;
    font-size: 77px;
    line-height: 77px;
  }
  .home .platform .section-inner {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin-bottom: min(100px, 30vw);
  }
  .home .platform .section-inner .head-text-area {
    margin-top: 0;
  }
  .home .platform .section-inner img {
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 580px;
  }
  .home .platform .section-inner h3 {
    margin-top: 0;
  }
  .home .platform .section-inner h4 {
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .home .platform .section-inner .implementation-areas {
    padding: 0 22px;
  }
  .home .platform .section-inner .implementation-areas .label {
    padding: 2px 5px 4px;
    font-size: 15px;
  }
  .home .platform .section-inner .implementation-areas p {
    margin-top: 20px;
  }
  .home .platform .section-inner .implementation-areas p span {
    font-size: 21px;
  }
  .home .platform .section-inner:first-child {
    display: flex;
    flex-direction: row;
  }
  .home .platform .section-inner:first-child > div:first-child {
    padding-right: 22px;
  }
  .home .platform .section-inner:first-child > div:last-child {
    padding-left: 22px;
  }
  .home .platform .section-inner:not(:first-child) {
    margin-bottom: 130px;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child {
    max-width: 565px;
  }
  .home .platform .section-inner:not(:first-child) > div:nth-child(2) > div:first-child > div {
    width: 100%;
    max-width: 568px;
    padding: 0 22px;
  }
  .home .platform .section-inner:not(:first-child):nth-child(2) img {
    margin-bottom: 40px;
  }
  .home .platform .section-inner:not(:first-child):last-child {
    margin-bottom: 0;
  }
  .home .technology .section-inner:first-child {
    display: flex;
    flex-direction: row;
  }
  .home .technology .section-inner:first-child > div {
    width: 50%;
  }
  .home .technology .section-inner:first-child > div:first-child {
    padding-right: 22px;
  }
  .home .technology .section-inner:first-child > div:first-child img {
    width: 70%;
  }
  .home .technology .section-inner:first-child > div:nth-child(2) {
    padding-left: 22px;
  }
  .home .technology .section-inner:first-child > div:nth-child(2) > p:last-child img {
    width: 32px;
    height: 32px;
  }
  .home .technology .section-inner:nth-child(2) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 100px;
    padding: 0;
  }
  .home .technology .technology-item {
    width: 25%;
    padding: 0 22px;
  }
  .home .technology .technology-item:nth-child(2n+1) {
    padding-right: 22px;
  }
  .home .technology .technology-item:nth-child(2n) {
    padding-left: 22px;
  }
  .home .technology .technology-item > div:first-child {
    padding: 50px 0;
  }
  .home .technology .technology-item > div:first-child img {
    height: 170px;
  }
  .home .technology .technology-item > div:last-child {
    height: min(34vw, 550px);
  }
  .home .technology .technology-item > div:last-child img {
    height: min(25vw, 430px);
  }
  .home .technology .technology-item > div:last-child .label {
    font-size: 13px;
  }
  .home .about > .container > .section-inner > div:first-child {
    padding-left: 22px;
    padding-right: 22px;
  }
  .home .about > .container > .section-inner > div:last-child {
    padding-left: 22px;
  }
  .home .about > .container > .section-inner::before {
    left: -20vw;
    height: calc(100% + 130px);
    background: no-repeat left -10vw bottom 0/100% auto url(assets/images/Pixel_Graphic_About_Section_Desktop.svg);
  }
  .home .about .section-inner-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 150px;
  }
  .home .about .section-inner-wrapper .position {
    font-size: 15px;
    line-height: 1.1em;
    padding: 3px 6px;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .home .about .section-inner-wrapper > div:first-child {
    width: 100%;
    border-right: none;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div {
    width: 50%;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div:first-child {
    padding-right: 22px;
  }
  .home .about .section-inner-wrapper > div:not(:first-child) > div:last-child {
    padding-left: 22px;
  }
  .home .about .section-inner-wrapper > div:last-child {
    margin-top: 0;
    border-left: none;
  }
  .home .contact .head-text-area p {
    font-size: 27px;
    text-indent: 0;
    max-width: calc((100% - 132px) / 6 * 4 + 264px);
  }
  .home .contact .section-inner {
    min-height: calc(100vh - 200px);
    min-height: calc(100dvh - 200px);
    padding: 0;
  }
  .home .contact .section-inner > div:first-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-left: 1px solid #000;
    padding: 0;
  }
  .home .contact .section-inner > div:first-child > div {
    width: 50%;
  }
  .home .contact .section-inner > div:first-child > div:first-child {
    padding: 0 22px;
    padding-bottom: 0;
  }
  .home .contact .section-inner > div:first-child > div:first-child > div:first-child {
    padding-bottom: 65px;
  }
  .home .contact .section-inner > div:first-child > div:first-child > div:nth-child(2) {
    max-width: 565px;
  }
  .home .contact .section-inner > div:first-child > div:first-child > div {
    width: 100%;
  }
  .home .contact .section-inner > div:first-child > div:nth-child(2) {
    padding-left: 22px;
    border-left: none;
  }
  .home .contact .link-area {
    position: absolute;
    bottom: 0;
    left: 15px;
    margin-top: 0;
  }
  .home .contact form {
    margin-top: 0;
    padding-right: 22px;
    border-left: 0;
  }
  .home .contact form .form-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
  }
  .home .contact form .form-item:nth-child(6) {
    align-items: flex-start;
  }
  .home .contact form .form-item label {
    width: 100px;
    font-size: 15px;
  }
  .home .contact form .form-item > div {
    flex-grow: 1;
  }
  .home .contact form .form-item.acceptance label {
    width: auto;
    font-size: 12px;
  }
}
@media screen and (min-width: 1921px) {
  .home .vision {
    background-image: url(assets/images/Pixel_Graphic_Vision_Section_Large_Desktop.svg);
  }
  .home .technology {
    background-image: url(assets/images/Pixel_Graphic_Technology_Section_Large_Desktop.svg);
  }
  .home .about > .container > .section-inner::before {
    left: max(-20vw, -500px);
    background-position: left bottom;
  }
  .home .contact .background-image-area {
    background-image: url(assets/images/Pixel_Graphic_Contact_Section_Large_Desktop.svg);
  }
}
.page-template-page-template-privacy-policy-terms-and-conditions .main-content {
  padding-top: 100px;
}
.page-template-page-template-privacy-policy-terms-and-conditions .content-wrapper {
  padding: 0 12px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  margin-bottom: 40px;
}
.page-template-page-template-privacy-policy-terms-and-conditions .modified-date-area {
  margin-top: 20px;
}
.page-template-page-template-privacy-policy-terms-and-conditions .modified-date-area > span {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.page-template-page-template-privacy-policy-terms-and-conditions .modified-date-area > span.date {
  font-size: 15px;
  font-weight: 400;
}
.page-template-page-template-privacy-policy-terms-and-conditions .content-area {
  margin-top: 30px;
}
.page-template-page-template-privacy-policy-terms-and-conditions .content-area a {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .page-template-page-template-privacy-policy-terms-and-conditions .main-content {
    padding-top: 150px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions h1.page-title {
    max-width: 600px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-wrapper {
    display: flex;
    padding: 0 15px;
    margin-bottom: 55px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-wrapper > div {
    width: 50%;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-wrapper > div:first-child {
    padding-right: 15px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-wrapper > div:last-child {
    border-left: 1px solid #000;
    padding-left: 15px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .modified-date-area {
    margin-top: 20px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .modified-date-area > span {
    display: block;
    font-size: 16px;
    font-weight: 500;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .modified-date-area > span.date {
    font-size: 15px;
    font-weight: 400;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-area {
    margin-top: 0;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-area a {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1701px) {
  .page-template-page-template-privacy-policy-terms-and-conditions .main-content {
    padding-top: 200px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-wrapper {
    padding: 0 22px;
    margin-bottom: 75px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-wrapper > div:first-child {
    padding-right: 22px;
  }
  .page-template-page-template-privacy-policy-terms-and-conditions .content-wrapper > div:last-child {
    padding-left: 22px;
  }
}
.error404 .main-content {
  padding: 150px 12px;
  min-height: 100vh;
}
.error404 .main-content h2 {
  font-size: 35px;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .error404 .main-content {
    padding: 200px 15px;
  }
  .error404 .main-content h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1701px) {
  .error404 .main-content {
    padding: 250px 22px;
  }
  .error404 .main-content h2 {
    font-size: 50px;
  }
}/*# sourceMappingURL=style.css.map */