/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
}

a {
  text-decoration: none;
  outline: none;
}

a:hover,
a.selected {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 0;
  vertical-align: top;
}


/*
* Base
*/

:root {
  --primary-color: #ED1C24;
  --bg-color: #F6F4F3;
  --border-color: #E6E6E6;
  --base-color: #353535;
  --fs-base: 1.8rem; /* 18px */
  --fs-heading1: 3.6rem;
  --fs-heading2: 2.8rem;
  --fs-heading3: 2.4rem;
  --fs-heading4: 2.2rem;
  --fs-heading5: 2.0rem;
  --LinearColor-Primary: linear-gradient(90deg, #ED1C24 0%, #ED1C24 52.5%, #E56203 100%);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.layout_main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-size-adjust: 100%;
  color: var(--base-color);
}

.layout_main * {
  box-sizing: border-box;
}

.inner {
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .layout_main {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

/* Layout */
.layout_section {
  padding: 100px min(2.77777777%, 40px) 120px;
  background: #F1F1F1;
}

.layout_column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media screen and (min-width: 961px) {
  .for-tb {
    display: none;
  }
}

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

@media screen and (max-width: 599px) {
  .for-pc {
    display: none;
  }

  .inner {
    margin: 0 min(7.179487179%,28px);
  }

  .layout_section {
    padding: 68px 0 80px;
  }

  .layout_column {
    gap: 50px;
  }
}

/*
* Contents
*/

/* headline */
.headline {
  font-size: var(--fs-heading1);
  font-weight: 700;
  line-height: 1.6;
  & span {
    font-size: 4.8rem;
    color: var(--primary-color);
  }

  &.-center {
    text-align: center;
  }
}

.headline-2 {
  font-size: var(--fs-heading2);
  font-weight: 700;
  line-height: 1.6;
}

.sub-headline {
  gap: 16px;
  font-size: var(--fs-heading3);
  font-weight: 700;
  line-height: 1.6;
  padding: 0 0 0 23px;
  position: relative;
  margin: 0 0 36px;
  &::before {
    content: "";
    display: block;
    width: 7px;
    height: calc(100% - 12px);
    background: var(--base-color);
    position: absolute;
    top: 8px;
    left: 0;
  }
}

@media screen and (max-width: 599px) {
  .headline {
    font-size: var(--fs-heading2);
    & span {
      font-size: var(--fs-heading1);
    }
  }
  .sub-headline {
    font-size: var(--fs-heading5);
    margin: 0 0 28px;
    padding: 0 0 0 19px;
    &::before {
      height: calc(100% - 8px);
      top: 3px;
    }
  }
}

/* ボタン */
.button {
  display: block;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
  padding: 1px;
  background: var(--LinearColor-Primary);
  border-radius: 4px;

  &.-secondary {
    & span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      background: #fff;
      color: var(--primary-color);
      border-radius: 3px;
    }
  }

  &.-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 15px 30px;
  }
}

@media screen and (min-width: 600px) {
  .button {
    &.-secondary {
      &:hover {
        span {
          background: #FFEEEF;
        }
      }
    }
    &.-primary {
      &:hover {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, #E56203 0%, #ED1C24 52.5%, #ED1C24 100%);
      }
    }
  }
}

@media screen and (max-width: 599px) {
  .button {
    &.-primary {
      font-size: 1.5rem;
      line-height: 1.4;
      padding: 9px 30px;
      text-align: center;
    }
    &.-secondary {
      & span {
        padding: 11px 20px;
      }
    }
  }
}

/* リンク */
.link {
  color: var(--primary-color);
  border-bottom: solid 1px;
}

/* リスト */
.list {
  & li {
    padding: 0 0 0 16px;
    position: relative;
    & + li {
      margin-top: 8px;
    }
    &::before {
      content: "";
      display: block;
      width: 4px;
      height: 4px;
      background: var(--base-color);
      border-radius: 50%;
      position: absolute;
      top: 13px;
      left: 0;
    }
  }
}

/* テーブル */
.table {
  width: 100%;
  margin: 0 0 12px;
  & span.-label {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    padding: 0 8px;
    background: #fff;
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    margin: 0 0 0 8px;
  }
}

.table th {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  background: #5C5C5C;
  border: solid 1px #e4e4e4;
  color: #fff;
  padding: 19px 40px;
  & > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  &:first-child {
    width: 215px;
  }

  & span.-label {
    margin: 0;
  }
}

.table thead th {
  text-align: center;
}

.table td {
  padding: 19px 40px;
  background: #fff;
  border: solid 1px #e4e4e4;
  font-size: 1.6rem;
  line-height: 1.75;
}

@media screen and (max-width: 599px) {
  .table th {
    font-size: 1.4rem;
    padding: 9px 10px;
    text-align: center;
    &:first-child {
      width: 80px;
    }
  }
  .table td {
    padding: 18px 24px 20px 20px;
    & span.-label {
      margin: 0;
    }
  }
}

/* 箱 */
.box {
  padding: 27px 40px 22px;
  background: var(--bg-color);
  border: solid 1px var(--border-color);
}

/* 注釈 */
.note {
  display: flex;
  gap: 4px;
  font-size: 1.4rem;
  line-height: 1.6;
  &::before {
    content: "※";
  }
}


/*
* Page
*/

/* hero */
.hero {
  padding: 80px min(2.77777777%, 40px);
  background: #000;
  color: #fff;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
}

.hero__content {
  width: 510px;
  position: relative;
  z-index: 1;
}

.hero__headline {
  line-height: 0;
  margin: 0 0 32px;
  & img {
    width: 265px;
  }
  & span {
    position: relative;
  }

  & sup {
    font-size: 1.3rem;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
}

.hero__copy {
  font-size: var(--fs-base);

  & + .hero__copy {
    margin-top: 8px;
  }
}

.hero__cta  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--base-color);
  border-radius: 8px;
  margin: 43px 0 0;
}

.hero__cta-text {
}

.hero__cta-label {
  display: inline-flex;
  padding: 0 10px;
  border: solid 1px var(--primary-color);
  border-radius: 2px;
  color: var(--primary-color);
  margin: 0 0 10px;
}

.hero__cta-title {
  display: block;
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--primary-color);
  & span {
    letter-spacing: -0.04em;
  }
}

.hero__cta-sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 7px;
  & span {
    letter-spacing: -0.04em;
  }
}

.hero__cta-term {
  display: block;
  font-size: 1.3rem;
}

.hero__cta-arrow {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--LinearColor-Primary);
  color: #fff;

  & span {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: rgba(255, 255, 255, .9);
    &::before {
      content: "";
      display: block;
      width: 16px;
      height: 18px;
      background: url('data:image/svg+xml;charset=utf-8,<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 1C9 0.447715 8.55228 2.41411e-08 8 0C7.44772 -2.41411e-08 7 0.447715 7 1L9 1ZM7.29289 17.7071C7.68342 18.0976 8.31658 18.0976 8.70711 17.7071L15.0711 11.3431C15.4616 10.9526 15.4616 10.3195 15.0711 9.92893C14.6805 9.53841 14.0474 9.53841 13.6569 9.92893L8 15.5858L2.34315 9.92893C1.95262 9.53841 1.31946 9.53841 0.928932 9.92893C0.538407 10.3195 0.538407 10.9526 0.928932 11.3431L7.29289 17.7071ZM7 1L7 17L9 17L9 1L7 1Z" fill="white"/></svg>') no-repeat center center;
      background-size: 100% 100%;
    }
  }
}

.hero__image {
  margin: 0 -90px 0 0;
  position: relative;
  &::before {
    content: "";
    display: block;
    width: 1356px;
    height: 1370px;
    background: url(../images/bg_hero.svg) no-repeat center center;
    background-size: cover;
    position: absolute;
    top: -300px;
    right: -400px;
  }
  & img {
    position: relative;
  }
}

@media screen and (min-width: 600px) {
  .hero__cta  {
    &:hover {
      opacity: .8;
    }
  }
}

@media screen and (max-width: 599px) {
  .hero {
    padding: 80px 28px 0;
    position: relative;
    overflow: visible;
  }

  .hero__inner {
    flex-direction: column;
  }

  .hero__content {
    width: 100%;
  }

  .hero__headline {
    margin: 0 0 26px;
    & img {
      width: 243px;
    }
  }

  .hero__copy {
    font-size: 1.6rem;
    & + .hero__copy {
      margin-top: 6px;
    }
  }

  .hero__cta  {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 24px 7.185628742%;
    font-size: 1.2rem;
    margin: 80px 0 -20px;
  }

  .hero__cta-label {
    padding: 0 8px;
    margin: 0 0 6px;
  }

  .hero__cta-title {
    font-size: min(4.358974358vw,1.7rem);
    line-height: 1.6;
    margin: 0 0 5px;
  }

  .hero__cta-sub {
    font-size: min(3.076923076vw,1.2rem);
    line-height: 1;
    margin: 0 0 14px;
  }

  .hero__cta-term {
    font-size: 1.2rem;
    line-height: 1.45;
  }

  .hero__cta-arrow {
    width: 100%;
    height: auto;
    border-radius: 4px;

    & span {
      gap: 0;
      height: 100%;
      font-size: 1.5rem;
      line-height: 1;
      padding: 17px 0;
      &::before {
        display: none;
      }
    }
  }

  .hero__image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    height: 100%;
    padding: 32px 28px 0;
    overflow: hidden;
    &::before {
      width: 100%;
      height: 100%;
      background-image: url(../images/bg_hero_sp.svg);
      top: 0;
      right: 0;
    }
    & img {
      opacity: .16;
    }
  }

}

/* 課題 */
.problem {
  padding: 120px min(2.77777777%, 40px) 140px;
  background: var(--base-color);
  color: #fff;
  text-align: center;

  & .headline {
    & span {
      font-size: 4.4rem;
      line-height: 1.6;
    }
  }
}

.problem__list {
  display: flex;
  gap: 0 3.4375%;
  margin: 84px 0 110px;
  & li {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 24px;
    font-size: var(--fs-heading5);
    line-height: 1.6;
  }
  & span {
    border-bottom: solid 1px;
    font-size: var(--fs-heading4);
  }
}

.problem__copy {
  margin: 0;
  &::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    border-top: 30px solid #fff;
    border-bottom: 0;
    margin: 0 auto 60px;
  }
}

@media screen and (max-width: 599px) {
  .problem {
    padding: 92px 0;

    & .headline {
      font-size: var(--fs-heading3);
      & span {
        font-size: var(--fs-heading1);
        line-height: 1.5;
      }
    }
  }

  .problem__list {
    flex-direction: column;
    gap: 50px;
    margin: 50px 0 82px;
    & li {
      & img {
        height: 160px;
      }
    }
  }

  .problem__copy {
    margin: 0;
    &::before {
      border-right-width: 15px;
      border-left-width: 15px;
      border-top-width: 20px;
      margin: 0 auto 50px;
    }
  }
}

/*  */
.section_head {
  padding: 108px min(2.77777777%, 40px) 158px;
  background: #1D1D1D;
  position: relative;
  overflow: hidden;
  & .headline {
    color: #fff;
    text-align: center;
    margin: 0 0 60px;
  }
}

.section__bg {
  & img {
    position: absolute;
    top: 0;
    &:nth-child(1) {
      left: 56px;
      top: 434px;
    }
    &:nth-child(2) {
      right: 65.5px;
      top: 716px;
    }
    &:nth-child(3) {
      left: 49px;
      top: 998px;
    }
    &:nth-child(4) {
      right: 48px;
      top: 1270px;
    }
    &:nth-child(5) {
      left: 73px;
      top: 1552px;
    }
  }
}

@media screen and (max-width: 599px) {
  .section_head {
    padding: 90px 0 75px;
  }

  .section__lead {
    margin: 0 auto 56px;
  }

  .section__bg {
    & img {
      position: absolute;
      top: 0;
      &:nth-child(1) {
        left: -17px;
        top: 473px;
      }
      &:nth-child(2) {
        right: -14.5px;
        top: 750px;
      }
      &:nth-child(3) {
        left: -6px;
        top: 1026px;
      }
      &:nth-child(4) {
        right: -18px;
        top: 1273px;
      }
      &:nth-child(5) {
        left: -3px;
        top: 1550px;
      }
    }
  }
}

.reason {
  margin: 0 0 120px;
}

.reason__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.reason__item {
  display: flex;
  align-items: center;
  margin: 0 0 0 165px;
  padding: 40px 60px;
  background: #fff;
  border-radius: 12px;
  &:nth-child(even) {
    margin: 0 165px 0 0;
  }

  &.-reason01 {
    &::before {
      background-image: url(../images/icon-01.svg), var(--LinearColor-Primary);
      background-size:  64px 76px, 100%;
    }
  }

  &.-reason02 {
    &::before {
      background-image: url(../images/icon-02.svg), var(--LinearColor-Primary);
      background-size:  84px 69px, 100%;
    }
  }

  &.-reason03 {
    &::before {
      background-image: url(../images/icon-03.svg), var(--LinearColor-Primary);
      background-size:  72px 71px, 100%;
    }
  }

  &.-reason04 {
    &::before {
      background-image: url(../images/icon-04.svg), var(--LinearColor-Primary);
      background-size:  68px 69px, 100%;
    }
  }

  &.-reason05 {
    &::before {
      background-image: url(../images/icon-05.svg), var(--LinearColor-Primary);
      background-size:  84px 74px, 100%;
    }
  }

  &::before {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 132px;
    height: 132px;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    border-radius: 50%;
  }
}

.reason__text {
  padding: 7px 40px 10px;
  & p {
    & + p {
      margin-top: 8px;
    }
  }
}

.reason__title {
  color: var(--primary-color);
  margin: 0 0 14px;
}

@media screen and (max-width: 599px) {

  .reason {
    margin: 0 0 62px;
  }

  .reason__list {
    gap: 48px;
  }

  .reason__item {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 20px 24px 32px;
    &:nth-child(even) {
      margin: 0;
    }

    &.-reason01 {
      &::before {
        background-size:  20px 24px, 100%;
      }
    }

    &.-reason02 {
      &::before {
        background-size:  26px 21px, 100%;
      }
    }

    &.-reason03 {
      &::before {
        background-size:  22px 22px, 100%;
      }
    }

    &.-reason04 {
      &::before {
        background-size:  21px 21px, 100%;
      }
    }

    &.-reason05 {
      &::before {
        background-size:  26px 23px, 100%;
      }
    }

    &::before {
      width: 40px;
      height: 40px;
      margin: 0 0 10px;
    }
  }

  .reason__text {
    padding: 0;
  }

  .reason__title {
    font-size: var(--fs-heading4);
    margin: 0 0 6px;
  }
}

/* ステップ */
.step__list {
  display: flex;
  gap: 33px;
}

.step__item {
  flex: 1;
  color: #E4E4E4;
  font-size: 1.6rem;
  line-height: 1.75;
  counter-increment: number;
  position: relative;
  padding: 32px 0 0;
  &::before {
    content: "STEP "counter(number,decimal-leading-zero);
    display: block;
    background: var(--primary-color);
    border-radius: 4px;
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    padding: 6px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
  }
  &::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 10px solid var(--primary-color);
    border-bottom: 0;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.step__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  background: #000;
  margin: 0 0 23px;
  & img {
    width: 82px;
  }
}

.step__title {
  font-size: var(--fs-heading4);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 10px;
}

.step__note {
  display: flex;
  gap: 4px;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 15px 0 0;
  &::before {
    content: "※";
  }
}

@media screen and (max-width: 599px) {
  .step {
    & .headline {
      font-size: var(--fs-heading3);
      margin: 0 0 48px;
    }
  }
  .step__list {
    flex-direction: column;
    gap: 50px;
  }

  .step__item {
    padding: 28px 0 0;
    &::before {
      font-size: 1.6rem;
      padding: 5px 20px;
    }
    &::after {
      top: 35px;
    }
  }

  .step__image {
    width: 100%;
    height: 120px;
    & img {
      width: 60px;
    }
  }
}

/* ユースケース */
.usecase {
  padding: 100px min(2.77777777%, 40px) 150px;
  background: #353535;
  color: #F1F1F1;
}

.usecase__headline {
  color: #fff;
  margin: 0 0 65px;
}

.usecase__list {
  display: flex;
  gap: 33px;
}

.usecase__item {
  flex: 1;
}

.usecase__title {
  font-size: var(--fs-heading3);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 23px;
  &::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 0 30px;
  }
}

.usecase__image {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  margin: 0 0 25px;
}

.usecase__text {
  font-size: 1.6rem;
  line-height: 1.75;
  & + .usecase__text {
    margin-top: 8px;
  }
}

@media screen and (max-width: 599px) {
  .usecase {
    padding: 68px 0 70px;
  }

  .usecase__headline {
    margin: 0 0 48px;
  }

  .usecase__list {
    flex-direction: column;
    gap: 72px;
  }

  .usecase__title {
    &::before {
      margin: 0 0 18px;
    }
  }

  .usecase__image {
    margin: 0 0 23px;
  }

}

/* 料金・仕様 */
.price .table td {
  color: var(--primary-color);
  text-align: center;
  & strong {
    font-size: var(--fs-heading1);
    font-weight: 700;
  }
  & span {
    display: block;
    font-size: 1.4rem;
  }
}

.price__image {
  margin: 35px 0 0;
}

@media screen and (max-width: 599px) {
  .price .table th {
    & span.-label {
      font-size: 1.2rem;
    }
  }
  .price .table td {
    padding: 18px 16px 20px 16px;
    font-size: 1.4rem;
    & strong {
      font-size: var(--fs-heading5);
    }
    & span {
      font-size: 1.2rem;
    }
  }

  .price__image {
    margin: 32px 0 0;
  }
}

/* サービス */
.service__row {
  display: flex;
  justify-content: space-between;
}

.service__item {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 40px;
  width: 48.333333%;
  font-size: 1.6rem;
  background: #fff;
  &.-lab {
    .service__title {
      &::before {
        background-image: url(../images/icon-lab.svg);
        background-size: 31px 30px;
      }
    }
  }
  &.-strage {
    .service__title {
      &::before {
        background-image: url(../images/icon-strage.svg);
        background-size: 33px 33px;
      }
    }
  }
}

.service__title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: var(--fs-heading3);
  font-weight: 700;
  & .sub-title {
    display: block;
    margin: 0;
    line-height: 1;
    font-size: 1.8rem;
  }
  &::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    border: solid 1px #E4E4E4;
    border-radius: 4px;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

.service__text {
  & p {
    & + p {
      margin-top: 8px;
    }
    & + .note {
      margin-top: 12px;
    }
  }
}

.service__button {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  margin: auto 0 0;
}

@media screen and (max-width: 599px) {
  .service__row {
    flex-direction: column;
    gap: 32px;
  }

  .service__item {
    gap: 0;
    padding: 32px 24px;
    width: 100%;
    &.-lab {
      .service__title {
        &::before {
          background-size: 20px 20px;
        }
      }
    }
    &.-strage {
      .service__title {
        &::before {
          background-size: 20px 20px;
        }
      }
    }
  }

  .service__title {
    gap: 12px;
    align-items: center;
    font-size: var(--fs-heading5);
    margin: 0 0 16px;
    & .sub-title {
      font-size: 1.6rem;
    }
    &::before {
      width: 38px;
      height: 38px;
    }
  }

  .service__text {
    margin: 0 0 34px;
  }

  .service__button {
    font-size: 1.5rem;
  }

}

.flow {
  background: #1D1D1D;
  padding: 100px min(2.77777777%, 40px) 120px;
  position: relative;
  overflow: hidden;
  & .headline {
    color: #fff;
    margin: 0 0 70px;
  }

  & .section__bg {
    & img {
      &:nth-child(1) {
        top: 206px;
      }
      &:nth-child(2) {
        top: 698px;
      }
      &:nth-child(3) {
        top: 1262px;
      }
    }
  }
}

.flow__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.flow__item {
  display: flex;
  background: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  position: relative;
  &::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 32px solid #fff;
    border-bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -32px;
    margin: 0 auto;
  }

  &:last-child {
    &::after {
      display: none;
    }
  }
}


.flow__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: solid 1px #E4E4E4;
  padding: 0 60px 0 40px;
}

.flow__text {
  padding: 0 60px;
  font-size: 1.6rem;
  line-height: 1.75;
  flex: 1;

  & .button {
    margin: 34px 0 0;
    text-align: center;
  }

  & .note {
    & + .note {
      margin-top: 8px;
    }
  }
}

.flow__label {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--primary-color);
  background: #F1F1F1;
  padding: 0 16px;
  margin: 0 0 18px;
}

.flow__title {
  margin: 0 0 15px;
}

.flow__lead {
  margin: 0 0 13px;
}

@media screen and (max-width: 599px) {
  .flow {
    padding: 68px 0 80px;
    & .headline {
      margin: 0 0 48px;
    }
    & .section__bg {
      & img {
        &:nth-child(1) {
          left: -15px;
          top: 140px;
        }
        &:nth-child(2) {
          right: 10.5px;
          top: 704px;
        }
        &:nth-child(3) {
          left: -12px;
          top: 1382px;
        }
      }
    }
  }

  .flow__list {
    gap: 60px;
  }

  .flow__item {
    flex-direction: column;
    padding: 24px 24px 32px;
    &::after {
      border-right-width: 30px;
      border-left-width: 30px;
      border-top-width: 28px;
      bottom: -28px;
    }
  }


  .flow__icon {
    border-right: none;
    padding: 0;
    width: 48px;
    margin: 0 auto 20px;
  }

  .flow__text {
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.75;

    & .button {
      margin: 32px 0 0;
    }

    & .note {
      & + .note {
        margin-top: 8px;
      }
    }
  }

  .flow__label {
    margin: 0 0 10px;
  }

  .flow__title {
    font-size: var(--fs-heading5);
    margin: 0 0 16px;
  }
}

.faq {
  & .headline {
    margin: 0 0 80px;
  }
  & dl {
    padding: 40px 60px 32px;
    border-bottom: solid 1px #E4E4E4;
    &:first-of-type {
      padding-top: 0;
    }
    & dt {
      gap: 20px;
      font-size: var(--fs-heading4);
      font-weight: 700;
      margin: 0 0 20px;
      padding: 6px 0 6px 72px;
      position: relative;
      &::before {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        content: "Q";
        width: 52px;
        height: 52px;
        background: var(--primary-color);
        border-radius: 50%;
        font-family: "Roboto", sans-serif;
        font-size: 2.4rem;
        line-height: 1.6;
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
      }
    }
    & dd {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      font-size: 1.6rem;
      line-height: 1.75;
      position: relative;
      & div {
        padding: 12px 0 0;
      }
      &::before {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        content: "A";
        width: 50px;
        height: 50px;
        background: #fff;
        border: solid 1px var(--primary-color);
        border-radius: 50%;
        font-family: "Roboto", sans-serif;
        font-size: 2.4rem;
        line-height: 1.6;
        color: var(--primary-color);
        margin: 0 0 10px;
      }
      & p {
        & + p {
          margin-top: 8px;
        }
      }
    }
  }
}

.faq__button {
  max-width: 320px;
  margin: 80px auto 0;
  & span {
    height: 60px;
  }
}
@media screen and (min-width: 600px) {
  .faq {
    padding-top: 120px;
  }
}
@media screen and (max-width: 599px) {
  .faq {
    & .headline {
      margin: 0 0 46px;
    }
    & dl {
      padding: 28px 0;
      & dt {
        font-size: 1.8rem;
        line-height: 1.8;
        margin: 0 0 20px;
        padding: 0 0 0 44px;
        &::before {
          width: 32px;
          height: 32px;
          font-size: 1.6rem;
        }
      }
      & dd {
        position: relative;
        gap: 10px;
        & div {
          padding: 3px 0 0;
        }
        &::before {
          width: 30px;
          height: 30px;
          font-size: 1.6rem;
        }
      }
    }
  }

  .faq__button {
    margin: 60px auto 0;
    & span {
      height: auto;
      font-size: 1.6rem;
    }
  }
}


.contact {
  background: #1D1D1D;
  padding: 80px min(2.77777777%, 40px) 100px;
  & .headline {
    color: #fff;
    margin: 0 0 25px;
  }
}

.contact__lead {
  color: #E4E4E4;
  text-align: center;
  margin: 0 0 70px;
}

.contact__row {
  display: flex;
  justify-content: space-between;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 48.333333%;
  padding: 40px;
  background: #fff;
  text-align: center;
  position: relative;
  &::before,
  &::after {
    content: "";
    display: block;
    width: 52px;
    height: 52px;
    position: absolute;
    top: 0;
    right: 0;
  }

  &::before {
    background: var(--LinearColor-Primary);
  }

  &::after {
      background:
        linear-gradient(to bottom left, rgba(255,255,255,0) 50%, #fff 50.5%) no-repeat top left/100% 100%
  }

  & .button {
    margin: auto 0 0;
    font-size: 1.6rem;
    height: 52px;
  }
}

.contact__text {
  & p {
    padding: 0 42px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.contact__title {
  font-size: var(--fs-heading4);
  font-weight: 700;
  margin: 0 0 12px;
  & span {
    display: block;
    width: 48px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 599px) {
  .contact {
    padding: 68px 0 80px;
    & .headline {
      margin: 0 0 16px;
    }
  }

  .contact__lead {
    margin: 0 0 53px;
  }

  .contact__row {
    flex-direction: column;
    gap: 60px;
  }

  .contact__item {
    gap: 32px;
    width: 100%;
    padding: 24px 24px 32px;
    &::before,
    &::after {
      width: 36px;
      height: 36px;
    }

    & .button {
      margin: auto 0 0;
      height: 48px;
      font-size: 1.5rem;
    }
  }

  .contact__text {
    & p {
      padding: 0;
    }
  }

  .contact__title {
    font-size: var(--fs-heading5);
    line-height: 1.6;
    margin: 0 0 16px;
    & span {
      width: 40px;
      margin: 0 auto 23px;
    }
  }
}

.others {
  background: var(--base-color);
  padding: 80px min(2.77777777%, 40px) 100px;
  & .headline {
    color: #fff;
    text-align: center;
    margin: 0 0 48px
  }
}

.others__list {
  display: flex;
  border-radius: 12px;
  background: #1D1D1D;
  padding: 40px 8px;
}

.others__item {
  flex: 1;
  color: #E4E4E4;
  padding: 0 32px;
  font-size: 1.4rem;
  line-height: 1.7;
  border-right: solid 1px rgba(255, 255, 255, .1);
  &:last-child {
    border: none;
  }
}

.others__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 52px;
  margin: 0 0 24px;
}

.others__button {
  margin: 32px 0 0;
  font-size: 1.6rem;
  line-height: 1.7;
}

@media screen and (max-width: 599px) {
  .others {
    padding: 68px 0 80px;
    & .headline {
      margin: 0 0 48px
    }
  }

  .others__list {
    flex-direction: column;
    padding: 32px 24px;
  }

  .others__item {
    flex: 1;
    color: #E4E4E4;
    padding: 40px 0;
    border-right: none;
    border-bottom: solid 1px rgba(255, 255, 255, .1);
    &:first-child {
      padding-top: 0;
    }
    &:last-child {
      padding-bottom: 0;
      border: none;
    }
  }

  .others__title {
    margin: 0 0 28px;
  }

  .others__button {
    margin: 36px 0 0;
    font-size: 1.5rem;
  }
}